Hi guys I’m looking for the native who is used to make a notification like that

Who is above the player and who is visible to all the players around

thanks

so 3D text then?

20char

I do not know, I will see

This native does not exist

https://runtime.fivem.net/doc/reference.html#_0xCD015E5BB0D96A57

Hello men,
Thanks for your help but it’s not this native.

It is not a native

function DrawText3D(x,y,z, text) 



    local onScreen,_x,_y=World3dToScreen2d(x,y,z)
    local px,py,pz=table.unpack(GetGameplayCamCoords())
    local dist = GetDistanceBetweenCoords(px,py,pz, x,y,z, 1)
 
    local scale = (1/dist)*2
    local fov = (1/GetGameplayCamFov())*100
    local scale = scale*fov
   
    if onScreen then
        SetTextScale(0.0*scale, 1.1*scale)
        SetTextFont(0)
        SetTextProportional(1)
        -- SetTextScale(0.0, 0.55)
        SetTextColour(255, 255, 255, 255)
        SetTextDropshadow(0, 0, 0, 0, 255)
        SetTextEdge(2, 0, 0, 0, 150)
        SetTextDropShadow()
        SetTextOutline()
        SetTextEntry("STRING")
        SetTextCentre(1)
        AddTextComponentString(text)
        DrawText(_x,_y)
    end
end

Thank you for your help but a last question how do I do to put my text ?