> For the complete documentation index, see [llms.txt](https://documentation.jaksam-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.jaksam-scripts.com/blips-creator/client/open-menu-manually.md).

# Open menu manually

## Event

```lua
TriggerEvent("blips_creator:openBlipsMenu")
```

## Description

You can use this event from anywhere **client side** to open the menu

## Example

You can open the menu with a command with the following example

```lua
RegisterCommand("blipscreator", function() 
    TriggerEvent("blips_creator:openBlipsMenu")
end)
```
