US Trends

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 StarterPlayerScripts with:
    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

  1. Open Roblox Studio.
  2. Go to StarterPlayer.
  3. Open StarterPlayerScripts.
  4. Insert a LocalScript.
  5. 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

[8][2] [5][9] [3]
Method Result Best for
Hide PlayerList with a LocalScript Leaderboard disappears for that player Removing the default UI
Custom leaderboard You control who appears Selective hiding or special rules
JJS-specific glitch/trick May hide the player in that game Game-specific behavior, not reliable
TL;DR: the normal Roblox way is to hide the whole player list with `SetCoreGuiEnabled`, and the only solid way to hide one person specifically is to use a custom leaderboard.