Instancing Team Color Help

So i am instancing a Team without the use of adding teams but i always get stuck when assigning team color to the team

local team = game:GetService("Teams")

local blueteam = Instance.new("Team")
blueteam.Name = "Blue"
blueteam.AutoAssignable = true
blueteam.TeamColor.Color = Color3.new(1, 0, 0) -- here is the problem.
blueteam.Parent = team

This is the entire script. Thnaks if anything helps.

1 Like

Change

to

blueteam.TeamColor = BrickColor.new(1, 0, 0)

Team colors are ONLY BrickColor values, meaning you can NOT use a color 3 value for it.

thanks you very much man it worked!

You’re very welcome! Let me know if you come across any more errors!

1 Like