Marker::getColour
Retrieves the color of the selected marker
Syntax
```js marker.getColor(); ```
Returned Values
- colour:
Example
Retrieves the color of the marker and outputs the result in the console.
```js let testMarker = mp.markers.new(1, new mp.Vector3(-441.88, 1156.86, 325), 2.0, {
color: [255, 255, 0, 255]
});
let col = testMarker.getColor(); console.log("Colour: " + col) ```