then when i come on admin is visible
game:GetService("Teams") --Makes the teams accesible function PlayerAdded(player) if player.Name == "jls12345678" then team = Instance.new("Team", game.Teams) team.Name = "Admins" team.AutoAssignable = false team.TeamColor = BrickColor.new("Really Red") --Make any color you want player.TeamColor = team.TeamColor end end game.Players.PlayerAdded:connect(PlayerAdded)