scolen Posted May 30, 2023 Share Posted May 30, 2023 How to increase the shooting speed of a weapon ? Link to comment
DiSaMe Posted May 31, 2023 Share Posted May 31, 2023 You can do that using setWeaponProperty function. I haven't used it myself so I'm not familiar with it, but according to that page, you need to modify anim_loop_stop to increase the firing rate. Link to comment
FLUSHBICEPS Posted June 2, 2023 Share Posted June 2, 2023 On 31/05/2023 at 16:39, DiSaMe said: You can do that using setWeaponProperty function. I haven't used it myself so I'm not familiar with it, but according to that page, you need to modify anim_loop_stop to increase the firing rate. Pretty sure it just creates an illusion of a quicker firing speed and not actually increasing the fire rate you can make a rapid fire script you'd want to listen to the onClientPlayerWeaponFire event, and when it's fired, set a timer that triggers multiple shootings Link to comment
FallenGod Posted August 4, 2023 Share Posted August 4, 2023 Use Thats Code : --== Script By ErroR (FullOffeD) ==-- local weaponID = 24 local newFireRate = 250 -- This sets the weapon to fire every 250 milliseconds (4 shots per second) setWeaponProperty(weaponID, "poor", "fireRate", newFireRate) setWeaponProperty(weaponID, "std", "fireRate", newFireRate) setWeaponProperty(weaponID, "pro", "fireRate", newFireRate) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now