MRobbin99

textingSim getAll5XGems

Jan 11th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. -- this scripts teleports you to all of the 5x(vip) gems
  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. if modelList[i]:FindFirstChild("Bonus") ~= nil then
  8. if modelList[i].Bonus.Value == 5 then
  9. hum.CFrame = modelList[i].CFrame
  10. hum.CFrame = hum.CFrame + Vector3.new(0,1,0)
  11. wait(.2)
  12. end
  13. end
  14. end
  15. -- made by fleebmans
Add Comment
Please, Sign In to add comment