I need help trying to script to hide the Backpack and Health bar. I do not want to take FM's I just have a little trouble to script this. Please help.
(Use a local script here)
1 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false ) |
2 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false ) |
I think that should work.
In a LocalScript, use the SetCoreGuiEnabled method to hide the two CoreGuis like so:
1 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false ) |
2 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false ) |