Advertisement
C-H-4-0-S

Auto Shoot

Sep 7th, 2024 (edited)
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. local weaponSystem = require(game:service'ReplicatedStorage'.WeaponsSystem.Libraries.BaseWeapon)
  2. local oldGetConfigValue = weaponSystem.getConfigValue;
  3.  
  4. function weaponSystem.getConfigValue(self, ...)
  5. local arguments = {...}
  6. if arguments[1] == 'FireMode' then
  7. return 'Automatic' -- Makes guns automatic
  8. end
  9. return oldGetConfigValue(self, unpack(arguments))
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement