MADE BY Ozzf
FEATURE:
- INFINITE AMMO,
- INFINITE MAG
- .
- https://www.roblox.com/games/5307215810/Randomizer-V-0-2-1d
SCRIPTS: [2]
INFINITE\ MAG:
local freddy = math.huge
local glen = freddy
local mt = getrawmetatable(game);
make_writeable(mt);
local old_index = mt.__index;
mt.__index = function(alfred,gilbert)
if tostring(alfred) == "Mag" then
if tostring(gilbert) == "Value" then
return glen;
end
end
return old_index(alfred,gilbert);
end
INIFNITE AMMO:
local freddy = math.huge
local glen = freddy
local mt = getrawmetatable(game);
make_writeable(mt);
local old_index = mt.__index;
mt.__index = function(alfred,gilbert)
if tostring(alfred) == "Ammo" then
if tostring(gilbert) == "Value" then
return glen;
end
end
return old_index(alfred,gilbert);
end