HUD V1
ESX / QB | Fully Customizable | 0.02ms (Best Optimize) | Full Responsive UI (4k Supported) | Car Nitro System | Notifications System
Notifications Implementation
Export: exports["if-hud"]:SendNotification(message, duration, type)
Event: TriggerEvent("if-hud:SendNotification", message, duration, type)
exports["if-hud"]:SendNotification("Pay attention!", 3000, "info")
Progressbar Implementation
Export: exports["if-hud"]:ProgressStart(Message, Duration, Options)
exports["if-hud"]:ProgressStart("Performing an action", 3000, {
FreezePlayer = true,
footerMessage = "Searching a sandwich...",
animation = {
type = "anim",
dict = "anim@mp_player_intmenu@key_fob@",
lib ="fob_click"
-- or scenario:
-- type = "scenario",
-- Scenario = "PROP_HUMAN_BUM_BIN",
},
onFinish = function()
--Code here
end, onCancel = function()
--Code here
end
})