How to show "Loading message" and "loading icon"

Hello!
I would like to know how to make the “loading” message appear in the lower right corner, for when my server loading a template.

1 Like

can you attach screenshots of what you’re talking about?

1 Like

Something like this message loading during gameplay

1 Like

Umm, I Don’t know where that’s coming from, that could be anything from a custom script to the client script download progress. Although here is a script that will spawn the camera in the clouds like gta:o Flying Cam [GTA: Online Camera in Clouds]

You’re looking for the “busyspinner”, here is an example:

AddTextEntry("CUSTOMLOADSTR", "Look ma! I'm loading!")

Citizen.CreateThread(function()
    BeginTextCommandBusyspinnerOn("CUSTOMLOADSTR")
    EndTextCommandBusyspinnerOn(4)

    Citizen.Wait(3000)

    -- Finished loading!
    BusyspinnerOff()
end)
2 Likes

Thanks! That was what I was looking for!