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
4 years ago
Edited 4 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:

    Red

    Blue

    Admins

I want it to be:

    Red 

    Blue    

But still have the team, is it possible?

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

1 answer

Log in to vote
0
Answered by 4 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