I've already made a custom health bar, but I can't find a way to disable the ROBLOX health bar. Any help please?
game.StarterGui:SetCoreGuiEnabled("Health",false)
game.StarterGui:SetCoreGuiEnabled('Health',false)
There is an enum for this also,
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health,false)
It is prefered to use the enum.