MRobbin99

textingSim collectRewards

Jan 11th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. -- this script teleports you to all the reward chests on the map regardless of your prereqs
  2. plr = game.Players.LocalPlayer
  3. hum = plr.Character.HumanoidRootPart
  4. local modelList = game.Workspace.ObbyStuff.PrizeChests:GetChildren()
  5. for i = 1, #modelList do
  6. hum.CFrame = modelList[i].Ring.CFrame
  7. hum.CFrame = hum.CFrame + Vector3.new(-4.5,5,0)
  8. wait(1)
  9. end
  10. -- made by fleebmans
Add Comment
Please, Sign In to add comment