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?
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
local StarterGui = Game:GetService('StarterGui') StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
game.StarterGui:SetCoreGuiEnabled (0, false)
It's not as hard as it looks.
Here's my source: The Enum The Method
Put this in localscript in starterpack
game.StarterGui:SetCoreGuiEnabled("PlayerList", false)