Advertisement
Honansik

Project Lazarus Infinite Ammo Script

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