Advertisement
Totalxterror

Aimblox GunMod

Jun 15th, 2021
3,577
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. for i,v in next, getgc(true) do
  2.    if type(v) == "table" and rawget(v, "AK47") then
  3.        for _,gun in next, v do
  4.            if type(gun) == "table" and gun.States then
  5.                gun.Ammo = 9e9
  6.                for __,state in next, gun.States do
  7.                    state.RPM = 1500
  8.                    state.Range = 100000
  9.                    state.Recoil = 0
  10.                    state.BobInfo.bobIntensity = 0
  11.                end
  12.            end
  13.        end
  14.    end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement