# 🛠️Installation

***

### 1️⃣ Download & Extract

* Download the script from Keymaster/assets page.
* Extract it into your server's `resources` folder.
* Suggested folder structure:

  ```
  resources/[ft-scripts]/ft_notification
  ```

***

## 2️⃣ Default ESX Notify Override <sup>Optional</sup>

1. **Open `es_extended/client/function.lua`**
2. Near line 60 search `ESX.ShowNotification`
3. Carefully change the notification export, or completely replace the entire function using the code below:

**Export:**

```
exports.ft_notifcation:ShowNotify(message, notifyType, length)
```

**Complete function:**

```
function ESX.ShowNotification(message, notifyType, length)
    if GetResourceState("ft_notifcation") ~= "missing" then
        return exports.ft_notifcation:ShowNotify(message, notifyType, length)
    end

    print("[^1ERROR^7] ^5 Notify Script ^7 is Missing!")
end
```

Find more exports and events in [📥Expots](/ft-scripts/recources/overview/notification/esx/expots.md) Section

***

### 3️ Ensure the script in your `server.cfg` file.

```
ensure es_extended
ensure ft_notification
```

***

### 6️⃣ Done

✅ Restart your server\
🎉 Enjoy the script!

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ftscripts.gitbook.io/ft-scripts/recources/overview/notification/esx/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
