AutoColorCharacters (Property)
From Legacy Roblox Wiki
AutoColorCharacters | |
Type | bool |
Description | A value that sets whether players on the team wear the team colors automatically. This property has no effect because the Animate script (which colors the characters) does not check it. |
Member of | Team |
Example
This should leave the character colors unchanged:
local Teams = game:GetService("Teams")
Teams.Team.AutoColorCharacters = false
This should cause the character limbs to change to Black, their Heads to change to Bright yellow, and their Torsos to change to their TeamColor:
local Teams = game:GetService("Teams")
Teams.Team.AutoColorCharacters = true