Weapon Fire Mode Changer | Standalone

Tired of constant full-auto firing from your gun? Give semi-automatic mode a try to shoot one bullet at a time, or switch your gun to safety mode to prevent accidental shots altogether

Features :star:
  • Standalone Script
  • Open Source Code
  • Firing Modes - Semi-Auto, Automatic, Safety
  • Optimized [0.00 - 0.01ms]
  • Detailed Config

  1. Full-Auto Mode: In this mode, your gun will continuously fire rounds as long as the trigger is held down. [GTA Default].

  2. Semi-Automatic Mode: When set to semi-automatic mode, your gun will fire one bullet with each pull of the trigger. This mode provides better control over the rate of fire and is useful for precise aiming and conserving ammunition.

  3. Safety Mode: Activating safety mode ensures that your gun cannot fire accidentally. It effectively locks the trigger mechanism to prevent any shots from being fired, providing an extra layer of safety when the gun is not in use or during handling and storage.

Config Preview :star:



Script Preview
Download [ Use this to Support Us, Receive Script Support & Future Updates ]
Github Link

You are not allowed to sell this script
This is a free script, so support is not free. Use Tebex for script support



OTHER TOP RESOURCES :1st_place_medal:

Intro Cutscene with AI Taxi [FREE]
Air Suspension Changer [FREE]
Steal Fuel [FREE]
Documents [FREE]
AI NPC Doctor [FREE]
HH Vehicle Extras [FREE]
Secret Car Stash System [FREE]
Discord2FiveM 2.0 - Control your FiveM Server with Discord
Car Boosting [Leveling System]
License Plate Changer V2
Advanced Vehicle Control Menu
iPod Personal Music Player
Modern FiveM Radio
Grapple Gun
Multi Job Selection System
Best Car Radio
Unique Multi Level Crafting
New Drug Sell UI+Level
Advanced Badge + ID Card | Create Unlimited ID
Portable Meth Cooking Lab | Levels
Drunk System + Alcohol Tester
Fingerprint Scanner
New Radial Menu
Ambulance Hub | Ultimate Script For All
Police Hub | Group Chat | Callsigns | Status
Advanced Notification
Advanced Job Application System
Advanced Gang & Boss Menu

8 Likes

nice sript

1 Like

Nice, but if the script is free, it should be free. Your site is forcing a 1 dollar purchase to get what is listed for free. I have no issues paying for things, but not things listed as free. XD

If you read, we listed the Tebex option for users who want support for a nominal amount of $1. If you don’t want to go there, we also listed the script for free on GitHub, so there is no issue.

I just use my index finger on the mouse to choose too hold down or tap the button tbf

1 Like

Not all guns are so controllable. We really got a useful script here

2 Likes

Any plans to make certain weapons semi-auto only? for example non-full auto pistols.
just a preference thing for me.
have tested so far and its a solid script otherwise, can recommend.

So there is a Way you Can stop your character from Pulling out another Weapon Once you have selected The safety Mode.

All you need to do Is Add a Line of code into the client.Lua then it will stop your character pulling out Another weapon.

FROM THIS

local function setSafety(ped, weapon)
    Safety = true
    ammoCount = GetAmmoInPedWeapon(ped, weapon)
    SetPedAmmo(ped, weapon, 0)
end

TO THIS

local function setSafety(ped, weapon)
    Safety = true
    ammoCount = GetAmmoInPedWeapon(ped, weapon)
    SetPedAmmo(ped, weapon, 0)
    SetWeaponsNoAutoswap(true)
end

Under ** SetPedAmmo(ped, weapon, 0)** You are Adding a A line of code to stop Your Character from Pulling out A different weapon.

If you need any further help i will try and Help the Best I can.