Advertisement
DarionBoy

Business Simulator

Jun 28th, 2018
1,269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. _G.FarmEnable = true -- change to false then execute to stop
  2.  
  3. while _G.FarmEnable do
  4. wait(0.01)
  5. local A_1 = "Rusty Machinery"
  6. local A_2 = -math.huge
  7. local Event = game:GetService("ReplicatedStorage").Events.BuyItem
  8. Event:InvokeServer(A_1, A_2)
  9. wait(0.1)
  10. local rebirthevent = game:GetService("ReplicatedStorage").Events.Rebirth
  11. rebirthevent:InvokeServer()
  12. end
  13.  
  14.  
  15. local A_1 = "Explosive Computer"
  16.  
  17. local A_2 = -1234567890 -- change to the amount you want
  18.  
  19. local sapphire = game:GetService("ReplicatedStorage").Events.BuyItem
  20.  
  21. sapphire:InvokeServer(A_1, A_2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement