Is there a way to make the player list closed by default?

So yeah basically the title. I don’t want the leaderboard to be open by default because it gets in the way of some stuff.

1 Like

If you mean how do you remove the Player list core GUI then:

game.StarterGui:SetCoreGuiEnabled("PlayerList", false)

It has to run in a local script in StarterGUI.

2 Likes

That would work but I’d rather it just be closed by default so the player’s can check who is on the server. Would I have to make my own custom player list to accomplish this?

Unfortunately you are limited in what you can access concerning CoreGUI so I’m pretty sure that wouldn’t be possible (or at the very least I’m not aware of any way to access that functionality). The easiest way to do that would be to create your own Player List as you suggested.

1 Like