[FREE] [Standalone] Tactical Lite - Smooth Leaning & Quick Grenade Throw

Hi everyone! :wave:

I’m releasing a lightweight, standalone resource for servers that want modern tactical mechanics without the bloat. This script adds Tactical Leaning (Q/E) and Quick Grenade Throwing (G) using ox_lib and ox_inventory.

:movie_camera: Preview

showcase

:sparkles: Features

  • Tactical Leaning (Q/E):
    • Smooth camera interpolation (Lerp).
    • Works while standing and crouching.
    • TPV (Third Person) focused with wall collision detection.
    • Fully synced via State Bags.
  • Quick Throw (G):
    • Press one button to throw grenades instantly.
    • Auto-Prioritization: Checks inventory for the best available throwable (Grenade > Molotov > Sticky Bomb, etc.).
    • Configurable throw speed and cooldowns.
  • Optimized: Runs at 0.00ms when idle.

:clipboard: Dependencies

:gear: Configuration

Everything is configurable in config.lua. You can tweak camera angles, offsets, keybinds, and throwable item priority.

Config.QuickThrow = {
    Enabled = true,
    Cooldown = 1500,
    Key = 'G',
    Throwables = {
        { item = 'WEAPON_GRENADE', hash = `WEAPON_GRENADE`, speed = 35.0 },
        { item = 'WEAPON_MOLOTOV', hash = `WEAPON_MOLOTOV`, speed = 30.0 },
    }
}

:inbox_tray: Download

[GITHUB]

:clap: Credits & Assets

The custom animation clipsets are included in the download. Huge credits to the original creators of these poses:


24 Likes

wowlooks great

3 Likes

Could you add a license please?

Like MIT license or something? ACE permission?

Yes, add a license to the repository. Technically speaking a repository without a license is useless. No license means no one is permitted to do anything with it. (technically already downloading is not permitted :joy: )

1 Like

Ok, license add in github

2 Likes

Does this script cause visual errors? I would appreciate it if you could let me know.

from what i test in local server and in prod server.
if press Q or E too fast and too much, it will cause the freecam to stuck in Lean offset and not reset. to fix it just Aim and press Q or E again 1 time.

to answer your question.
“Does this script cause visual errors?”
answer is No

1 Like

real nice! :slight_smile:

1 Like

My only thing I see wrong with this script, if E is the flashlight button for GTA, if you could add compatibility for users to change their keybinds I think it would benefit a lot!

1 Like

It have keybind so you can change, i have it registered in client.lua file at line 299-300

RegisterKeyMapping(‘+lean_left’, ‘Tactical Lean Left’, ‘keyboard’, ‘Q’)
RegisterKeyMapping(‘+lean_right’, ‘Tactical Lean Right’, ‘keyboard’, ‘E’)

anyway thank you for suggestion, i have add it in config

Great Job :+1:

1 Like

can you block using that in a vehicle, a option in a config would be nice :smiley:

1 Like

if u maintain pressing E u just crash with some reliable network

How is that happen?, In my prod server with 64 players it can working fine and sync. Any error provide so can help looking into problem

Will do in next update.

1 Like