Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I change the name and color of a team with a script?

Asked by 4 years ago

My script duplicates the default team and edits some properties, this works in the explorer, however, in game it shows that there is another white team called default.

here is my script:

01local input = script.Parent
02local button = input.Parent
03local place = button.Parent.ScrollingFrame
04local team = place.TextButton
05local default = game.Teams.Default
06 
07button.MouseButton1Up:Connect(function()
08    local addedteam = team:Clone()
09    addedteam.Visible = true
10    addedteam.Text = input.Text
11    addedteam.Parent = place
12    local teamteam = default:Clone()
13    teamteam.Parent = game.Teams
14    teamteam.Name = input.Text
15    teamteam.TeamColor = BrickColor.new("Bright bluish green")
16end)
0
Did you do all this in a local script? If so that might be the problem realchricrocgamer 15 — 4y
0
Also is there any errors in the output? realchricrocgamer 15 — 4y

1 answer

Log in to vote
1
Answered by
SynnDC 8
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:

01local function guestTeamJoin(player)
02 
03    local guestTeam = Instance.new("Team")
04    guestTeam.Parent = game:GetService("Teams")
05 
06    guestTeam.Name = "Guest"
07 
08    guestTeam.AutoAssignable = true
09    guestTeam.TeamColor = BrickColor.new("Really red")
10 
11    player.Team = guestTeam
12 
13    local guestSpawnLocation = Instance.new("SpawnLocation")
14    guestSpawnLocation.Parent = workspace
15    guestSpawnLocation.Parent = game:GetService("Teams")
View all 22 lines...
Ad

Answer this question