Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local weaponSystem = require(game:service'ReplicatedStorage'.WeaponsSystem.Libraries.BaseWeapon)
- local oldGetConfigValue = weaponSystem.getConfigValue;
- function weaponSystem.getConfigValue(self, ...)
- local arguments = {...}
- if arguments[1] == 'FireMode' then
- return 'Automatic' -- Makes guns automatic
- end
- return oldGetConfigValue(self, unpack(arguments))
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement