Please help DrawMarker

RSNzacG - Imgur (1)
How do i make my marker look like this its not in Markers - Cfx.re Docs

DrawMarker has parameters with which you can rotate the markers, in this case, no. 6

do you have an example of code?

Hi you can take a look at this in the docs: DrawMarker - FiveM Natives @ Cfx.re Docs

You also have an example there mate.

image

Example Code

Citizen.CreateThread(function()
    while true do
        Citizen.Wait(0)
        local ped = PlayerPedId()
        local coords = GetEntityCoords(ped)
        DrawMarker(6, coords.x, coords.y, coords.z-0.95, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 1.0, 1.0, 1.0, 255, 0, 0, 100, false, true, 2, false, false, false, false)
    end
end)