I remeber that this used to be possible (only removing health Gui), but is that still possible and how is it possible if it's possible?
Use the SetCoreGuiEnabled
method of StarterGui in a LocalScript. For example, to remove the backpack and health GUIs, you would use:
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false) game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
For more information, check the documentation for SetCoreGuiEnabled.
Marked as Duplicate by ConnorVIII and User#2
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?