> ## 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 if local player is handcuffed

> Check whether the local player is currently handcuffed.

Returns whether the **local** client/player is handcuffed.

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

  ```lua Example theme={null}
  -- This code will continuously check if the local (self) player is handcuffed
  -- If so, specified controls will be disabled
  Citizen.CreateThread(function()
      while true do
          Citizen.Wait(0)

          if(exports["jobs_creator"]:isPlayerHandcuffed())then
              DisableControlAction(0, 22, true) -- Disable jump
          end
      end
  end)
  ```
</CodeGroup>

### Return value

| Name           | Data Type | Description                                                                     |
| -------------- | --------- | ------------------------------------------------------------------------------- |
| `isHandcuffed` | boolean   | `true` if the player is handcuffed, `false` if the player is **not** handcuffed |

### Where to insert the code?

You can place the code in any client file of your scripts.


## Related topics

- [Actions](/jobs-creator/client/actions/index.md)
- [Get if local player owns a plate](/vehicles-keys/client/get-if-local-player-owns-a-plate.md)
- [Get if a player is on duty](/jobs-creator/server/duty/get-if-a-player-is-on-duty.md)
- [Get owned plates of local player](/vehicles-keys/client/get-owned-plates-of-local-player.md)
- [Get if player ID owns a plate](/vehicles-keys/server/get-if-player-id-owns-a-plate.md)
