Advertisement
DatRobloxPlayer

Roblox Moving Model Script

May 22nd, 2020
6,600
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. -- SCRIPT UPLOADED BY WVONDERER
  2. -- RENAME MOVINGPLATFORM TO THE GROUP THAT THE PARTS ARE IN
  3. start = game.Workspace.movingplatform.startpart -- RENAME STARTPART TO THE PART THAT BLOCK GOES TO FIRST
  4. finish = game.Workspace.movingplatform.finishpart -- RENAME FINISHPART TO THE PART THE BLOCK GOES TO LAST
  5. bodyposition = game.Workspace.movingplatform.movingpart.BodyPosition
  6.  
  7. while true do
  8.     bodyposition.Position = start.Position
  9.     wait(2)
  10.     bodyposition.Position = finish.Position
  11.     wait(2)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement