Advertisement
Adel987654321

Fitness Sinulator | Auto Farm

Feb 19th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. --AutoFarm AutoSell
  2. _G.LULU = true--change to true or false
  3. while _G.LULU do
  4. wait()--change time if you want
  5. game:GetService("ReplicatedStorage").Events.Lift:FireServer()
  6. game:GetService("ReplicatedStorage").Events.Sell:FireServer()
  7. end
  8.  
  9. --AutoKill Boss
  10. _G.LULU = true--change to true or false
  11. while _G.LULU do
  12. wait()--change time if you want
  13. local A_1 = game:GetService("Workspace").Boss.Model.Boss
  14. game:GetService("ReplicatedStorage").Events.Damage:FireServer(A_1)
  15. end
  16.  
  17. --All AutoUpgrade
  18. _G.LULU = true--change to true or false
  19. while _G.LULU do
  20. wait(0,3)--change time if you want
  21. local A_1 = "Tiers"
  22. game:GetService("ReplicatedStorage").Events["Buy All"]:FireServer(A_1)
  23. local A_1 = "Bodies"
  24. game:GetService("ReplicatedStorage").Events["Buy All"]:FireServer(A_1)
  25. local A_1 = "Weights"
  26. game:GetService("ReplicatedStorage").Events["Buy All"]:FireServer(A_1)
  27. local A_1 = "Morphs"
  28. game:GetService("ReplicatedStorage").Events["Buy All"]:FireServer(A_1)
  29. local A_1 = "Auras"
  30. game:GetService("ReplicatedStorage").Events["Buy All"]:FireServer(A_1)
  31. end
  32.  
  33.  
  34. --AutoCoin
  35. _G.LULU = true--change to true or false
  36. while _G.LULU do
  37. wait(1)
  38. for i, v in pairs(game:GetService("Workspace").Powerups:GetChildren()) do
  39. if v.Name == "Coin" then
  40. v.Main.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  41. end
  42. end
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement