Kudzo

Infinite Coins Script

Nov 12th, 2019
20,384
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  2. local Modules = ReplicatedStorage:FindFirstChild("Modules")
  3. local Network = require(Modules.Network_Module)
  4. local CandyToSell = 50000000000
  5.  
  6. function SellCandy()
  7. for index = 1, 100 do
  8. wait()
  9. Network:FireServer("SellCandy", CandyToSell)
  10. end
  11. end
  12.  
  13. local success, result = pcall(function()
  14. return SellCandy()
  15. end)
  16.  
  17. if (success) and (result) then
  18. return (result)
  19. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment