Advertisement
MRobbin99

textingSim getAllGems

Jan 11th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. -- this scripts teleports you to all the gems on the map
  2. -- sometimes you get kicked but its rare, if you want it to go faster change the wait speed at the bottom
  3. plr = game.Players.LocalPlayer
  4. hum = plr.Character.HumanoidRootPart
  5. local modelList = game.Workspace.Gems:GetChildren()
  6. for i = 1, #modelList do
  7. hum.CFrame = modelList[i].CFrame
  8. hum.CFrame = hum.CFrame + Vector3.new(0,1,0)
  9. wait(.2)
  10. end
  11. -- made by fleebmans
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement