Teams and players

Hello, I would like to know if it is possible to hide the right bar of teams, but specific only the red team bar and that no player of that team is seen in the bar, while in all other teams this bar and its players are visible, is this possible and how? :thinking:

Is this for some kind of game where a player needs to find out who’s on a certain team on their own? If so the client has access to that so it won’t be reliable.

1 Like

Use this in a LocalScript in StarterPlayerScripts:

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

Is there other way to get the same result but from a gui localscript to the server?

I think not, I could make a server-side folder that puts the names of the players.
Something like this:
Teams

1 Like