Player::hairHighlightColor

From RAGE Multiplayer Wiki
Revision as of 05:26, 31 May 2019 by Micaww (talk | contribs) (Created page with "This property returns the player's secondary hair color. '''Note: This property is read-only.''' == Getter == * {{RageType|number}} The player's hair highlight color == Exa...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This property returns the player's secondary hair color.

Note: This property is read-only.

Getter

  • number The player's hair highlight color

Example

Server-Side
const player = mp.players.at(0);

player.setHairColor(5, 3);

const highlightColor = player.hairHighlightColor; // highlightColor is 3

See Also