> ## 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("missions_creator:notify", function(message, coloredMessage)

end)
```

### Parameters

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

## Example

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

RegisterNetEvent("missions_creator:notify", function(message, coloredMessage)
    TriggerEvent("external_script:notify", message)
end)
```

<Note>
  Place this code in the file `jaksam_core/config/cl_config.lua`, at the bottom of the file on new lines.
</Note>


## Related topics

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