anonmods

Project Lazarus Script - New

Dec 17th, 2021 (edited)
1,533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. --BROUGHT TO YOU BY ANONMODS.COM!--
  2.  
  3. local Tables = {}
  4.  
  5. for i,v in next, getreg() do
  6. if typeof(v) == "table" then
  7. if v.Ammo then
  8. table.insert(Tables, v)
  9. end
  10. end
  11. end
  12.  
  13. local function Upload()
  14. for i,v in next, Tables do
  15. v.Ammo = 10000
  16. v.StoredAmmo = 10000
  17. v.MagSize = 10000
  18. v.MaxAmmo = 10000
  19. end
  20. end
  21.  
  22. while wait(15) do
  23. Tables = {}
  24.  
  25. for i,v in next, getreg() do
  26. if typeof(v) == "table" then
  27. if v.Ammo then
  28. table.insert(Tables, v)
  29. end
  30. end
  31. end
  32.  
  33. Upload()
  34. end
Add Comment
Please, Sign In to add comment