Advertisement
Guest User

assa

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