how to dissapear from roblox leaderboard in jjs
If you mean the default Roblox player list leaderboard in JJS, you generally can’t make one specific player “disappear” from it as a normal gameplay feature. The usual safe workaround is to hide the whole leaderboard on the client, or use a custom leaderboard instead.
What works
- To hide the default leaderboard UI for a player, use a LocalScript in
StarterPlayerScriptswith:
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false).
- If you want a player not to show up at all in the visible list for some game mode, the cleaner approach is to build your own leaderboard and control who appears there.
- In some JJS clips, people also talk about joining a team or using a glitch so they vanish from the leaderboard, but that’s more of a game-specific trick than a reliable Roblox Studio method.
Simple setup
- Open Roblox Studio.
- Go to
StarterPlayer. - Open
StarterPlayerScripts. - Insert a
LocalScript. - Add this line:
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false).
That hides the built-in leaderboard for that client, which is the standard method shown in multiple Roblox guides.
Important note
If your goal is to hide only one player from everyone else, that is not how the default Roblox leaderboard is designed. A custom leaderboard is the practical route if you need selective visibility rules.
HTML version
| Method | Result | Best for |
|---|---|---|
| Hide PlayerList with a LocalScript | [8][2]Leaderboard disappears for that player | Removing the default UI |
| Custom leaderboard | [5][9]You control who appears | Selective hiding or special rules |
| JJS-specific glitch/trick | [3]May hide the player in that game | Game-specific behavior, not reliable |