Vehicle::getExtraColours
Syntax
```js vehicle.getExtraColours(pearlescentColor, wheelColor); ```
Required Arguments
- pearlescentColor: int
- wheelColor: int
Return value
- object: pearlescentColor, wheelColor
Example
```js let obj = mp.players.local.vehicle.getExtraColours(1, 1); mp.gui.chat.push(`${obj.pearlescentColor} ${obj.wheelColor}`); ```