> For the complete documentation index, see [llms.txt](https://docs.storm-developments.com/welcome/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.storm-developments.com/welcome/st_notify/how-to-install.md).

# How to Install

{% hint style="info" %}
**If you face any issues, you can contact us on our Discord and we will help you to the utmost of our abilities.**
{% endhint %}

## Setup Guide

Follow the steps below:

1. Download the script from keymaster.fivem.net
2. Remove any existing notification scripts
3. Extract the provided files
4. Go to qb-core/client/functions.lua and replace QBCore.Functions.Notify to the one below:
   1\.

   ````
   ```lua
    function QBCore.Functions.Notify(text, texttype, length, icon)
       local message = {
           action = 'notify',
           type = texttype or 'server',
           length = length or 5000,
       }

       if type(text) == 'table' then
           message.text = text.text or 'Placeholder'
           message.caption = text.caption or 'Placeholder'
       else
           message.text = text
       end

       if icon then
           message.icon = icon
       end

       exports['st-notify']:sendNotification('Server', text, texttype, length)
      -- SendNUIMessage(message)
   end
   ```
   ````
5. After that, go ahead and save the file.
6. Restart and your server and enjoy the script.

If you face any difficulties, you can contact us anytime on our Discord by creating a support ticket.

Discord: <https://discord.gg/storm-dev>
