I want teams to still function as normal but I want teams to not be visible on the leader board.
I placed a localscript in StarterGUI and this is what I’ve come up with so far from reading on difference sources. It doesn’t work and I need help. Any help is appreciated.
local TeamsService = game:FindService('Teams')
SetCoreGuiEnabled(Enum.CoreGuiType.Teams, false
Have you had any errors so far? Have you tried any other methods?
And , there is no CoreGuiType named “Teams”
--//Services
local StarterGui = game:GetService("StarterGui")
--//Variables
--?
--//Main
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Teams,false) -- there is no such thing as teams
Your last resort would be to completely disable the current Player List and make your own custom Player List, ignoring teams.
As Kensizo said, there’s no way to disable teams from appearing on the leaderboard. However, you could create a system where if there are no players in a team then remove the team from the service, this will then remove the team from the leaderboard and only create the team when there’s a player to be in it.