How to make only the custom health bar appear for NPCs

Hello there!

I haven’t made a post on the forums for a while, but here we go…

I was planning on adding a custom health bar script to show above NPCs, and was successful. The problem I am having lies with the default roblox health bar which seems to overlap with my custom one, and I have tried changing the HealthDisplayDistance and the NameDisplayDistance to 0, and it still hasn’t worked. How can I dispose of the default roblox health bars?

1 Like

Nevermind, I was able to figure it out after changing “HealthDisplayType” to AlwaysOff.

Apologies, and thank you.

1 Like

You could try something like this 1. local StarterGui = game:GetService(“StarterGui”)
2. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)
whoops nevermind did not see the post that you posted right before mine

2 Likes