This only works in studio...
It's a regular script.
game:GetService("StarterGui"):SetCoreGuiEnabled("PlayerList", false) game:GetService("StarterGui"):SetCoreGuiEnabled("Health", false) 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?
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList,false) game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health,false) game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack,false)