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)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false) 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:
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false) game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)