"local part = Instance.new("Part")
part.Anchored = false
part.Size = Vector3.new(2, 2, 2)
part.Color = Color3.fromRGB(255, 0, 0)
local position = Vector3.new(10, 10, 10)
part.Position = position
part.Parent = workspace
local function movePart()
position = position + Vector3.new(0, 1, 0)
part.Position = position
end
while true do --move in a loop
movePart()
wait(0.1)
end"