> ## 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 help notifications

> Replace the default 'Press E to ...' help notification with your own.

Used to show the usual `Press E to ...` text at the top left of the player's screen.

```lua Export theme={null}
exports["missions_creator"]:replaceShowHelpNotification(customFunction)
```

### Parameters

| Name             | Data Type | Description                                                                                                                         |
| ---------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| `customFunction` | function  | A function that replaces the default `ESX.ShowHelpNotification` method. **Requires** the message parameter and is called each frame |

## Example

```lua theme={null}
local function myCustomHelpNotification(message)
    -- Customize your function to fit your needs
    print(message)

    ExternalScript.showHelpNotification(message)
end

RegisterNetEvent("missions_creator:framework:ready", function()
    -- This will replace the base function with the one you want
    exports["missions_creator"]:replaceShowHelpNotification(myCustomHelpNotification)
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 help notifications](/vehicles-keys/client/notifications/replace-default-help-notifications.md)
- [Notifications](/missions-creator/client/notifications/index.md)
