Player::socialClub

From RAGE Multiplayer Wiki
Revision as of 13:00, 30 April 2019 by RoboN1X (talk | contribs) (category)

This property returns players social club name.

Note: this property is read-only.

Example

Show socialClub

Server-Side
mp.events.add('playerJoin', player => {
    console.log(`[SERVER]: SocialClub: ${player.socialClub}`);
});

See Also