Answered by
4 years ago Edited 4 years ago
First I would start off saying that I did not make this script, ScriptLocalize did.
I recommend using this script as it works and is great to learn off of.
Link to the script: https://devforum.roblox.com/t/how-change-player-team-color-and-name
Make a script in ServerScriptService then insert this script inside the script:
01 | local function guestTeamJoin(player) |
03 | local guestTeam = Instance.new( "Team" ) |
04 | guestTeam.Parent = game:GetService( "Teams" ) |
06 | guestTeam.Name = "Guest" |
08 | guestTeam.AutoAssignable = true |
09 | guestTeam.TeamColor = BrickColor.new( "Really red" ) |
11 | player.Team = guestTeam |
13 | local guestSpawnLocation = Instance.new( "SpawnLocation" ) |
14 | guestSpawnLocation.Parent = workspace |
15 | guestSpawnLocation.Parent = game:GetService( "Teams" ) |
17 | guestSpawnLocation.BrickColor = BrickColor.new( "Really red" ) |
18 | guestSpawnLocation.Neutral = true |
19 | guestSpawnLocation.TeamColor = BrickColor.new( "Really red" ) |
22 | game.Players.PlayerAdded:Connect(guestTeamJoin) |