Hello, I am a very new Scripter and I tried to make a script that has a "Mover" move back and fourth from brick to brick but it doesn't seem to do anything.. Help?
local Platform = game.Workspace.Model local Finish = Platform.finish local Mover = Platform.mover local Start = Platform.start local bodyPosition = Platform.mover.BodyPosition while true do bodyPosition.position = Start.Position wait(1) bodyPosition.position = Finish.Position wait(1) end