Remove Default Health

Looking for a way to disable default healthbar and whatever’s to the right of it (without disabling the whole radar, although I’d like to know how to do that aswell), all help is appreciated.

Me and couple of people looked into it before, we couldn’t really find any way which didn’t bring issues

Mind sharing your progress? maybe I can work it out myself :slight_smile:

I think we requested the minimap scaleform, then set to bigmap and disable again to show the map

Then call the scaleform function HIDE_HEALTH_ARMOUR

(Also moved to #development as it’s not really esx related)

EDIT Minimap without Health & armour bar - #3 by glitchdetector

How can i make to disable the health/armour bar and the radar?

Citizen.CreateThread(function()
    while true do
        Wait(100)
        DisplayRadar(false)
    end
end)

where is that ?

where is that?

agreed, where is that found man?

Put the code into any client script you have on the server, simple

alright, sorry im still a little new at all this. what would any client script be?

Literally any client script in any resource…
Please read up on the very basics of resources so you get a better grip on it.

turns off the mini map altogether not just the health bar.

The thread is unnecessary and only adds addition work to the client just simply adding this anywhere in the client script is enough. then you can use true to open it back up. It doesn’t have to be called more than once, but it is the entire minimap with the health bar that this controls not just the health bar.