Which function is faster ? [InvokeNative]

Hi,

which is better, which is faster and why ?

Citizen.InvokeNative or the other :

local blip = Citizen.InvokeNative(0x554d9d53f696d002, 1664425300, x, y, z)

VS

local blip = N_0x554d9d53f696d002(1664425300, x, y, z)

I don’t speak very well english but i can read yours answers.

Thank you.

use logic, 1 function invokes another function that uses the param to execute
and the other one is just executing the function with the param

thank you very much :wink: