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

How do I hide the Health and PlayerList UI? [SOLVED]

Asked by 10 years ago

I need help trying to HIDE the Health bar and PlayerList/Stat UI. I am making a RPG, and I need to hide the playerlist, stats, and health. Because I got A GUI that shows the Health, Stats, and walkspeed. Any help?

2 answers

Log in to vote
1
Answered by
TofuBytes 500 Moderation Voter
10 years ago

This is a LocalScript in the StarterGui

local StarterGui = Game:GetService('StarterGui')

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)--Disables Everything But Backpack and Chat
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
Ad
Log in to vote
0
Answered by
HexC3D 830 Moderation Voter
10 years ago
game.StarterGui:SetCoreGuiEnabled(0,false)
game.StarterGui:SetCoreGuiEnabled(1,false)

Make this a local script and put in startergear that should leave Chat Gui and backpack.

Answer this question