> ## 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.

# Actions in external menus

> Trigger Jobs Creator actions from any external or radial menu using client-side events.

You can use the actions in any external menu. Here are the triggers you can use from external scripts.

<Warning>
  Make sure the job has the actions enabled in the Jobs Creator settings of that job to avoid issues. You can enable the actions themselves while disabling **"Can open actions menu"**.
</Warning>

## Check identity

```lua theme={null}
-- Trigger to start check identity action
TriggerEvent("jobs_creator:actions:checkIdentity")
```

## Check vehicle owner

```lua theme={null}
-- Trigger to start check vehicle owner action
TriggerEvent("jobs_creator:actions:checkVehicleOwner")
```

## Create billing

```lua theme={null}
-- Trigger to start billing action
TriggerEvent("jobs_creator:actions:createBilling")
```

## Drag player

```lua theme={null}
-- Trigger to start drag action
TriggerEvent("jobs_creator:actions:drag")
```

## Handcuff player

```lua theme={null}
-- Trigger to start soft handcuff action
TriggerEvent("jobs_creator:actions:softHandcuff")
-- Trigger to start hard handcuff action
TriggerEvent("jobs_creator:actions:hardHandcuff")
```

## Heal big

```lua theme={null}
-- Trigger to start heal big action
TriggerEvent("jobs_creator:actions:healBig")
```

## Heal small

```lua theme={null}
-- Trigger to start heal small action
TriggerEvent("jobs_creator:actions:healSmall")
```

## Impound

```lua theme={null}
-- Trigger to start impound action
TriggerEvent("jobs_creator:actions:impoundVehicle")
```

## Licenses menu

```lua theme={null}
-- Trigger to view licenses menu action
TriggerEvent("jobs_creator:actions:checkLicenses")
```

## Lockpick car

```lua theme={null}
-- Trigger to start lockpick car action
TriggerEvent("jobs_creator:actions:lockpickCar")
```

## Put in car

```lua theme={null}
-- Trigger to start put in car action
TriggerEvent("jobs_creator:actions:putInCar")
```

## Take from car

```lua theme={null}
-- Trigger to start take from car action
TriggerEvent("jobs_creator:actions:takeFromCar")
```

## Repair vehicle

```lua theme={null}
-- Trigger to start repair vehicle action
TriggerEvent("jobs_creator:actions:repairVehicle")
```

## Revive

```lua theme={null}
-- Trigger to start revive action
TriggerEvent("jobs_creator:actions:revive")
```

## Search

```lua theme={null}
-- Trigger to start search action
TriggerEvent("jobs_creator:actions:search")
```

## Wash vehicle

```lua theme={null}
-- Trigger to start wash vehicle action
TriggerEvent("jobs_creator:actions:washVehicle")
```

## Open placeable objects menu

```lua theme={null}
-- Trigger to open placeable objects menu
TriggerEvent("jobs_creator:actions:placeObject")
```


## Related topics

- [Actions](/jobs-creator/client/actions/index.md)
- [Action Buttons](/jaksam-inventory/guides/action-buttons.md)
- [Integrate external impound script](/jobs-creator/client/actions/integrate-external-impound-script.md)
- [External deferrals](/easy-allowlist/external-deferrals.md)
- [Context Actions](/jaksam-inventory/guides/context-actions.md)
