> For the complete documentation index, see [llms.txt](https://if-developments.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://if-developments.gitbook.io/docs/resources/hud-v3.md).

# HUD V3

<details>

<summary>Notifications Implementation</summary>

Types: `error`, `success`, `info`.

* Export: `exports["if-hudv3"]:notify(label, time, type, title)`
* Event: `TriggerEvent("if-hudv3:notify", label, time, type, title)`

```lua
exports["if-hudv3"]:notify("Pay attention!", 3000, "info", "SERVER")
```

</details>

<details>

<summary>Progressbar Implementation</summary>

* Export: `exports["if-hudv3"]:setProgress(label, time, ellipsisAnim, cb)`

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

</details>
