> For the complete documentation index, see [llms.txt](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gocomedyfunstoredocs.gitbook.io/gocomedyfun-store/scripts-paid/notif-fun/english/setup.md).

# Setup

To install all Notif\_Fun exports, Please install the latest version of  `es_extended`, namely version 1.13.4

Please open `es_extended`, then the file `client/functions.lua` Next, look for lines 153 to 161, which look like this :                            &#x20;

```
---@param message string The message to show
---@param notifyType? string The type of notification to show
---@param length? number The length of the notification
---@param title? string The title of the notification
---@param position? string The position of the notification
---@return nil
function ESX.ShowNotification(message, notifyType, length, title, position)
	return IsResourceFound('esx_notify') and exports['esx_notify']:Notify(notifyType or "info", length or 5000, message, title, position)
end

```

Replace with this :&#x20;

```
---@param message string The message to show
---@param notifyType? string The type of notification to show
function ESX.ShowNotification(Text, Type)
    if Type == nil or Type == "info" then
        exports["Notif_Fun"]:GCF(nil, Text, 5000, "info")
    elseif Type == "success" then
        exports["Notif_Fun"]:GCF(nil, Text, 5000, "success")
    elseif Type == "warning" then
        exports["Notif_Fun"]:GCF(nil, Text, 5000, "warning")
    elseif Type == "error" then
        exports["Notif_Fun"]:GCF(nil, Text, 5000, "error")
    end
end
```

Restart the server to ensure the changes are properly applied to your system `es_extended`
