Player::hairHighlightColor

From RAGE Multiplayer Wiki

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