Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
7,102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. --Auto Lift
  2. while true do
  3. wait()
  4. game.ReplicatedStorage.Events.Lift:FireServer("")
  5. end
  6.  
  7.  
  8.  
  9. --Auto Sell
  10. while true do
  11. wait()
  12. game.ReplicatedStorage.Events.Sell:FireServer("")
  13. end
  14.  
  15.  
  16. --AutoKill Boss!
  17. while true do
  18. wait()
  19. local oh1 = game:GetService("Workspace").Boss.Model.Boss
  20. game:GetService("ReplicatedStorage").Events.Damage:FireServer(oh1)
  21. end
  22.  
  23.  
  24. --AutoUpgrade Weights
  25. while true do
  26. wait()
  27. local oh1 = "Weights"
  28. game:GetService("ReplicatedStorage").Events["Buy All"]:FireServer(oh1)
  29. end
  30.  
  31.  
  32. --AutoUpgrade Morphs
  33. while true do
  34. wait()
  35. local oh1 = "Morphs"
  36. game:GetService("ReplicatedStorage").Events["Buy All"]:FireServer(oh1)
  37. end
  38.  
  39.  
  40.  
  41. --AutoUpgrade BackPacks
  42. while true do
  43. wait()
  44. local oh1 = "Bodies"
  45. game:GetService("ReplicatedStorage").Events["Buy All"]:FireServer(oh1)
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement