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

How do I make a team invisible on the leaderboard?

Asked by
iHavoc101 127
5 years ago
Edited 5 years ago

I am making a team for moderators in my game, can you make the team not show up on the leader boars?

This is what I have right now:

Leaderboard:

1Red
2 
3Blue
4 
5Admins

I want it to be:

1Red
2 
3Blue   

But still have the team, is it possible?

0
Why should it be invisible? User#24403 69 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

this is not possible to pinpoint a team being invisible, however you can disable the player list and no teams will show up. This is usually done from a local script in starter gui:

local StarterGui = game:GetService("StarterGui") StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

Ad

Answer this question