Yes using lua’s text function:
function Draw(text, r, g, b, alpha, x, y, width, height, ya, center, font)
SetTextColour(r, g, b, alpha)
SetTextFont(font)
SetTextScale(width, height)
SetTextWrap(0.0, 1.0)
SetTextCentre(center)
SetTextDropshadow(0, 0, 0, 0, 0)
SetTextEdge(1, 0, 0, 0, 205)
SetTextEntry("STRING")
AddTextComponentString(text)
Citizen.InvokeNative(0x61BB1D9B3A95D802, ya)
DrawText(x, y)
end
you will need to position it your self when calling this function. example of it:
Draw('Loaded? : '..tostring(done), 255, 255, 255, 255, 0.05, 0.08, 0.25, 0.38, 1, false, 0)