This only works in studio...
It's a regular script.
1 | game:GetService( "StarterGui" ):SetCoreGuiEnabled( "PlayerList" , false ) |
2 | game:GetService( "StarterGui" ):SetCoreGuiEnabled( "Health" , false ) |
3 | game:GetService( "StarterGui" ):SetCoreGuiEnabled( "Backpack" , false ) |
Put the script inside of a LocalScript.
I guess you have to use a enum to get through security?
1 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false ) |
2 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false ) |
3 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false ) |