Advertisement
ElectronUser

War Simulator Gun Mod [For Slow Devices]

Oct 21st, 2020 (edited)
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. for i, v in pairs(getgc(true)) do
  2. if type(v) == 'table' then
  3. if rawget(v, 'mag') and rawget(v, 'recoil') then
  4. v.mag = 100; --change the number to how much ammo you want
  5. v.fire_rate = 1600; --change the number to how fast you want the gun to fire
  6. v.fire_mode = "auto";
  7. v.pellets = 2;
  8. v.fire_distance = 300;
  9. v.spread = 1
  10. v.recoil = function() end
  11. end
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement