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

# Replace default notifications

> Use a custom notification system instead of the default one by listening to the notify event.

Triggered after notifying the player client side.

```lua Event theme={null}
AddEventHandler("doors_creator:notify", function(message, uncoloredMessage)

end)
```

### Parameters

| Name               | Data Type | Description                                                |
| ------------------ | --------- | ---------------------------------------------------------- |
| `message`          | string    | Message of the notification                                |
| `uncoloredMessage` | string    | Message of the notification but without `~r~`, `~g~`, etc. |

## Example

```lua theme={null}
RegisterNetEvent("doors_creator:framework:ready", function()
    -- Disables the default script notification (otherwise there would be 2 notifications)
    exports["doors_creator"]:disableScriptEvent("doors_creator:notify")
end)

RegisterNetEvent("doors_creator:notify", function(message, uncoloredMessage)
    TriggerEvent("external_script:notify", message)
end)
```

<Note>
  Place this code in the file `integrations/cl_integrations.lua` of the script, at the bottom of the file on new lines.
</Note>


## Related topics

- [Replace default notifications](/missions-creator/client/notifications/replace-default-notifications.md)
