AOP Display on HUD?

Does anybody know what script TXDPS uses for AOP as my friend would like it for his server, Thanks!
Screenshot_35

The exact script no, but it should be just a simple lua script using a draw 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

Thanks :slight_smile: ((20 Char))

well u would have to sync it

@Revulver