Page cover

πŸ–ΌοΈHUD V3

ESX / QB | Fully Customizable | 0.03ms (Best Optimize) | Full Responsive UI (4k Supported) | Car Nitro System | Notifications System | 2 Car Speedometers | 6 Player Status Models

Notifications Implementation

Types: error, success, info.

  • Export: exports["if-hudv3"]:notify(label, time, type, title)

  • Event: TriggerEvent("if-hudv3:notify", label, time, type, title)

exports["if-hudv3"]:notify("Pay attention!", 3000, "info", "SERVER")
Progressbar Implementation
  • Export: exports["if-hudv3"]:setProgress(label, time, ellipsisAnim, cb)

exports["if-hudv3"]:setProgress("Performing an action", 3000, true, function(canceled)
    if (canceled) then
        print("Progress Canceled!")
    else
        print("Progress Done!")
    end
end)

Last updated

Was this helpful?