Advertisement
ScriptingGuy

Jumping Simulator Script

Mar 9th, 2020
1,751
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. The Game Link : https://www.roblox.com/games/4626543163/Jumping-Simulator-Simulator-Simulator-Simulator
  2. Discord Link : https://discordapp.com/channels/686554761901768721/686664520596324435
  3.  
  4. --AutoFarm
  5. _G.LULU = true--change to true or false
  6. while _G.LULU do
  7. wait()--change time if you want
  8. game:GetService("ReplicatedStorage").Events.RequestJump:FireServer()
  9. end
  10.  
  11.  
  12.  
  13. --AutoOrbs
  14. _G.LULU = true--change to true or false
  15. while _G.LULU do
  16. wait()--change time if you want
  17. for i, v in pairs(game:GetService("Workspace").Orbs:GetChildren()) do
  18. for d=1,8 do
  19. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  20. end
  21. end
  22. end
  23.  
  24.  
  25. --AutoChest
  26. _G.LULU = true--change to true or false
  27. while _G.LULU do
  28. wait()--change time if you want
  29. for i, v in pairs(game:GetService("Workspace").Chests:GetChildren()) do
  30. for d=1,8 do
  31. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  32. end
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement