Marker::colour
Change the colour of the selected marker.
Syntax
```js marker.colour = colour; ```
Attribute Types
- colour: [0:255]
Examples
Changes the colour of the marker from white to red.
```js let testMarker = mp.markers.new(1, new mp.Vector3(-431.88, 1146.86, 325), 2.0);
testMarker.colour = [255, 0, 0, 255] ```