AutoColorCharacters (Property)

From Legacy Roblox Wiki
Revision as of 21:41, 9 June 2024 by GuestIsJustBest (talk | contribs) (Added the reason why this does nothing)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
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