Advertisement
_Thanh_Thy_Cute_

Those Who Remain GUN MODS

Oct 16th, 2021
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. local Values = {
  2. NoRecoil = true,
  3. AutomaticWeapons = true,
  4. InfiniteBulletPunch = true,
  5. InfiniteRange = true, -- NOT TESTED ON THE FLAMETHROWER. USE THIS ON THE FLAMETHROWER AT YOUR OWN RISK!
  6. InfiniteAmmoPickup = true,
  7. FastAnimations = true
  8. }
  9.  
  10. for i,v in next, getgc(true) do
  11. if type(v) == "table" and rawget(v, "VerticleRecoil") then
  12. if Values.NoRecoil == true then
  13. v.RecoilShake = 0
  14. v.VerticleRecoil = math.rad(0)
  15. v.HorizontalRecoil = math.rad(0)
  16. end
  17.  
  18. if Values.AutomaticWeapons == true then
  19. v.Type = "Auto"
  20. end
  21.  
  22. if Values.InfiniteBulletPunch == true then
  23. v.MaxPen = 9999
  24. end
  25.  
  26. if Values.InfiniteRange == true then
  27. v.Distance = 9999
  28. end
  29.  
  30. if Values.InfiniteAmmoPickup == true then
  31. v.AmmoPickup = 9999
  32. end
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement