✨ Core Logo Hud - Simple information hud with server logo display

So the upper part to add in a job label and grade.

The citizen wait at the bottom is for F11

Do you want you hud to show only with pressing a button, then press it again to hide. Or hold to show, then on release it hides?

I want it always visible without the need for a button

Just remove that citizen wait at the bottom and your good

removed and cant enter server its crashed :slightly_smiling_face:

thanks you so much for adding this i just read this but i already did the grades but i was wondering if you can also guide in job money like IG police officers can see or any head of the job can see their funds they have in there job if you know what i mean again thank you so much for the blackmoney and job grade

Can anyone have it fixed for the other resolutions??

There isn’t a client.lua so i tried the main.lua within the client folder and it gave me this when i restarted it

I have a error when ever I start it start this on system Live console
[ script:es_extended] [WARNING] Server callback “core_logohud:getInfo” does not exist. Please Check The Server File for Errors!

How to fix this

here is my client file

local loaded = false

Citizen.CreateThread(
function()
while ESX == nil do
TriggerEvent(
“esx:getSharedObject”,
function(obj)
ESX = obj
end
)
Citizen.Wait(0)
end

    while ESX.GetPlayerData().job == nil do
        Citizen.Wait(10)
    end

    loaded = true
    Citizen.Wait(1000)
    SendNUIMessage(
        {
            type = "toggle",
            value = true
        }
    )
end

)

Citizen.CreateThread(

function()

while true do

    Citizen.Wait(100)

    if loaded and not IsPauseMenuActive() then

        ESX.TriggerServerCallback(

            "core_logohud:getInfo",

            function(job, money, bank, black_money)

                SendNUIMessage(

                    {

                        type = "update",

                        black_money = ("$" .. black_money) or "0",

                        id = GetPlayerServerId(PlayerId()) or 0,

                        money = ("$" .. money) or "0",

                        bank = ("$" .. bank) or "0",

                        job = string.upper(job) or ""

                    }

                )

            end

        )

    else

        SendNUIMessage(

            {

                type = "toggle",

                value = false

            }

        )

    end

end

end

)

and here is my Server side

ESX = nil

TriggerEvent(‘esx:getSharedObject’, function(obj) ESX = obj end)

ESX.RegisterServerCallback(‘core_logohud:getInfo’, function(source, cb)

local xPlayer = ESX.GetPlayerFromId(source)

cb(xPlayer.getJob().label,xPlayer.getMoney(),xPlayer.getAccount(‘bank’).money,xPlayer.getAccount(‘black_money’).money, GetNumPlayerIndices() )

end
)

Can you please Help

is it possible to have only the logo? what should i change?

anyone convert this to qbcore?

Hi I wanna add the society money to the hud , how I can do that? Can you please help me :slight_smile:

work for qb-core?

do you have money hud for qbcore for fre please

did it worked ?

do you got it ? i also want it

I like this HUD!!

Good UI