Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- SCRIPT UPLOADED BY WVONDERER
- -- RENAME MOVINGPLATFORM TO THE GROUP THAT THE PARTS ARE IN
- start = game.Workspace.movingplatform.startpart -- RENAME STARTPART TO THE PART THAT BLOCK GOES TO FIRST
- finish = game.Workspace.movingplatform.finishpart -- RENAME FINISHPART TO THE PART THE BLOCK GOES TO LAST
- bodyposition = game.Workspace.movingplatform.movingpart.BodyPosition
- while true do
- bodyposition.Position = start.Position
- wait(2)
- bodyposition.Position = finish.Position
- wait(2)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement