local function SetGcValue(str, val) local garbage = getgc(true) for i, Table in next, garbage do if type(Table) == "table" then if table.isfrozen(Table) then make_writeable(Table) end if rawget(Table, str) ~= nil then rawset(Table, str, val) print("SetGarbageCollectionValue - Method Completed " .. str .. " Set To " .. tostring(val)) end end end end SetGcValue("Ammo", 999) SetGcValue("HeadshotMultiplier", 1000) SetGcValue("MaxSpread", 0) SetGcValue("FireRate", 0) SetGcValue("AmmoPerMag", 999) SetGcValue("ReloadTime", 0)