Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to remove ROBLOX health and inventory Gui? [closed]

Asked by
Tiranin 45
10 years ago

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?

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?

1 answer

Log in to vote
3
Answered by 10 years ago

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.

Ad