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

How do you remove the default leaderboard?

Asked by
Yeevivor4 155
9 years ago

I was wondering, how do you remove the default leaderboard. I was making a game and the default leaderboard is getting in the way. I have tried the free model scripts and it doesn't work.

0
CoreGui: http://wiki.roblox.com/index.php?title=API:Class/StarterGui/SetCoreGuiEnabled Enums: http://wiki.roblox.com/index.php?title=CoreGuiType Use these reference links to help you disable other elements of the player's default UI. Redbullusa 1580 — 9y

2 answers

Log in to vote
2
Answered by 9 years ago

Requests are against the rules, but I'll let it slide.

Create a new LocalScript in StarterGui and insert:

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

To restore it, use:

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, true)
0
Well, since you teach me, I'll spread the knowledge. Sorry, I just couldn't find it on the website and if anyone is looking for this question, I'm sure they'll be glad to find you answered it. :) Yeevivor4 155 — 9y
Ad
Log in to vote
-1
Answered by
woodengop 1134 Moderation Voter
9 years ago

Try Learning more about Disabling and Enabling CoreGuis on the ROBLOX Wiki

Answer this question