[ad_1]
Created by Tr4nt
Features:
run after joining the game:
also works on planes’ guns
local gmt = getrawmetatable(game)
setreadonly(gmt, false)
local gindex = gmt.__index
local gnindex = gmt.__newindex
gmt.__index = function(tbl, idx)
if tostring(tbl) == "Ammo" or tostring(tbl) == "Mag" then
return 9999
end
return gindex(tbl, idx)
end
gmt.__newindex = function(tbl, idx, val)
if (tostring(tbl) == "Ammo") or (tostring(tbl) == "Mag") then
return gnindex(tbl, idx, 9999)
end
return gnindex(tbl, idx, val)
end
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]