Advertisement
Honansik

Base Battles Infinite Ammo Script

Nov 29th, 2021
907
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. local ammo = 999
  2.  
  3. local old
  4. old = hookfunction(require(game:GetService("ReplicatedStorage").Libraries.Weapon).new, function(...)
  5.     local ret = old(...)
  6.     ret["maxAmmo"] = ammo
  7.     ret["ammo"] = ammo
  8.     return ret
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement