> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nonefivem.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Notification

## Default Notification

<figure><img src="https://1876263925-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fozxk74pWmD6se2ngcbSg%2Fuploads%2Foj6j2VU9LHUfZm7BiYNg%2FEkran%20g%C3%B6r%C3%BCnt%C3%BCs%C3%BC%202023-08-15%20120947.png?alt=media&token=8ef74029-1081-4dcc-8170-8860717dbe44" alt="default notification" /><figcaption><p>Notification</p></figcaption></figure>

You can override default behavior from `no-base/configure/client/indicators.lua`

#### Parameters

* text: string
* err?: boolean
* icon?: string (Font awesome icon)
* timeout?: number

```lua theme={null}
Config.Indicators = {
    notification = function(text, err, icon, timeout)
        TriggerEvent("notification", text, err, icon, timeout)
    end
}
```
