Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is it possible to remove yourself from the in-game leaderboard?

Asked by 5 years ago

When I join my game I don't want people to know I have joined, so I was wondering if it was possible to remove myself from the in-game leaderboard?

0
I don't think ROBLOX's default CoreGui can be altered to ignore a specific player, so you might have to create your own leaderboard GUI. Rheines 661 — 5y

1 answer

Log in to vote
0
Answered by
Rheines 661 Moderation Voter
5 years ago

After a bit of researching I think you can do this, but it is not recommended as some scripts will no longer interact with you.

Insert a LocalScript into StarterCharacterScripts.

--Get the player service.
local PlayerService = game:GetService("Players")

--Locally destroy a specific player from the player service.
PlayerService:WaitForChild("PLAYERNAME"):Destroy()

It will remove that player from the leaderboard, but it isn't really the best way.

0
According to the API, that is the only way, and you are also right that you should never do this. SteamG00B 1633 — 5y
Ad

Answer this question