Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Credits: Made By Kaeden!
- How To Use: Join Game, Deploy, Execute, Shoot Once
- ]]
- _G.LoopEnabled = true -- true = ON, false = OFF
- local WaitTime = 5 -- Time In-Between Re-Executing Automatically
- function ModifyAmmo(ammount)
- for i,v in pairs(getgc()) do
- if type(v) == "function" then
- if getinfo(v).name == "fireround" then
- setupvalue(v, 1, ammount)
- end
- end
- end
- end
- ModifyAmmo(9e9)
- while _G.LoopEnabled == true do
- ModifyAmmo(9e9)
- wait(tonumber(WaitTime))
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement