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

# Are hotkeys enabled

> Returns whether the hotkeys are currently enabled or disabled.

Returns whether the hotkeys are currently enabled or disabled.

<CodeGroup>
  ```lua Export theme={null}
  exports['jaksam_inventory']:areHotkeysEnabled()
  ```

  ```lua Example theme={null}
  -- Check if hotkeys are enabled
  local enabled = exports['jaksam_inventory']:areHotkeysEnabled()

  if enabled then
      print('Hotkeys are enabled')
  else
      print('Hotkeys are disabled')
  end

  -- Toggle hotkeys
  local currentState = exports['jaksam_inventory']:areHotkeysEnabled()
  exports['jaksam_inventory']:setHotkeysEnabled(not currentState)
  ```
</CodeGroup>

### Parameters

None.

### Return value

| Name      | Data Type | Description                                    |
| --------- | --------- | ---------------------------------------------- |
| `enabled` | boolean   | True if hotkeys are enabled, false if disabled |


## Related topics

- [Client](/jaksam-inventory/functions/client/index.md)
- [Set hotkeys enabled](/jaksam-inventory/functions/client/set-hotkeys-enabled.md)
- [Manually start panic button](/trackers-creator/client/manually-start-panic-button.md)
- [Bypass start vehicle check](/vehicles-keys/client/bypass-start-vehicle-check.md)
- [Toggle hotwiring](/vehicles-keys/client/toggle-hotwiring.md)
