Support with hiding the Leaderboard

Hi, how do I disable the leaderboard with code? I found some code online but it disables the backpack as well as the chat.

1 Like

You can disable player list with this local script in StarterGui:

local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

You can also check out other Disabling the Game Interface just by changing the Enum of CoreGuiType.

13 Likes

Thanks so much! I was looking everywhere for this.