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

# Get player allowed actions

> Retrieve the list of actions the player's current job is allowed to perform.

Retrieve the allowed actions from the player's job.

<CodeGroup>
  ```lua Export theme={null}
  exports["jobs_creator"]:getAllowedActions()
  ```

  ```lua Example theme={null}
  local actions = exports["jobs_creator"]:getAllowedActions()
  print(ESX.DumpTable(actions))
  --[[
      Example output

      {
          ["canHeal"] = false,
          ["canCheckDrivingLicense"] = false,
          ["canCheckWeaponLicense"] = false,
          ["canRevive"] = false,
          ["canCheckIdentity"] = false,
          ["canRepairVehicles"] = false,
          ["canHandcuff"] = true,
          ["enableBilling"] = true,
          ["canLockpickCars"] = false,
          ["canCheckVehicleOwner"] = false,
          ["canWashVehicles"] = false,
      }
  ]]
  ```
</CodeGroup>

### Return value

| Name      | Data Type | Description                                                                                                   |
| --------- | --------- | ------------------------------------------------------------------------------------------------------------- |
| `actions` | table     | Key-value table where the key is the action and the value is a boolean indicating whether it's allowed or not |


## Related topics

- [Actions](/jobs-creator/client/actions/index.md)
- [Action Buttons](/jaksam-inventory/guides/action-buttons.md)
- [Get a mission template](/missions-creator/client/get-mission-template.md)
- [Get what objects can be sold in shop ID](/shops-creator/server/get-what-objects-can-be-sold-in-shop-id.md)
