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

How to hide leaderboard?

Asked by 10 years ago

How do you hide the leaderboard,I still want the teams,I just don't to see the ugly team leaderboard Does anybody know how to remove it?

4 answers

Log in to vote
0
Answered by 10 years ago

There is a roblox wiki tutorial on this. You can find it here http://wiki.roblox.com/index.php?title=Disabling_parts_of_the_game_interface

Ad
Log in to vote
0
Answered by
woodengop 1134 Moderation Voter
10 years ago
local StarterGui = Game:GetService('StarterGui')

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
Log in to vote
0
Answered by
Maxomega3 106
10 years ago

game.StarterGui:SetCoreGuiEnabled (0, false)

It's not as hard as it looks.

Here's my source: The Enum The Method

Log in to vote
0
Answered by 10 years ago

Put this in localscript in starterpack

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

Answer this question