So me and my friend are working on a game. And we wanted to make the leaderboard and the health gui get removed. Is it possible? And how can i do it?
Using the SetCoreGuiEnabled
function of StarterGui
will do the trick:
--In a LocalScript game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false) game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)