[How To] Hide Weapon Hud?

Please give more informations about what you’re looking for.
Do you need to hide the weapon wheel? Ammo hud ? Reticle ?

Hey @AvaN0x I want to hide the circle of the weapons

Hello, take a look at this native : HideHudComponentThisFrame - FiveM Natives @ Cfx.re Docs

  • 19 : WEAPON_WHEEL

It has to be called every frames so it should be something like that :

Citizen.CreateThread(function()
    while true do
        Wait(0)
        HideHudComponentThisFrame(19)
    end
end)

Good luck with it :slight_smile:
Don’t forget to mark this answer as solution for future readers. :smiley:

1 Like