You can write your topic however you want, but you need to answer these questions: I need help to see if this is working as intended or it is not.
It works as a move an model up or down script.
Here is the script:
while true do
wait()
for i= 1, 50 do
script.Parent.CFrame = script.Parent.CFrame * CFrame.new(0,-0.3,0)
wait()
end
for i= 1, 50 do
script.Parent.CFrame = script.Parent.CFrame * CFrame.new(0,0.3,0)
wait()
end
end