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

# Integrate external impound script

> Hook your own impound script into Jobs Creator when a vehicle is impounded.

Triggered when a vehicle is impounded.

<CodeGroup>
  ```lua Event theme={null}
  AddEventHandler("jobs_creator:actions:vehicleImpounded", function(vehiclePlate, vehicleModel)
  end)
  ```

  ```lua Example theme={null}
  RegisterNetEvent("jobs_creator:actions:vehicleImpounded", function(vehiclePlate, vehicleModel)
      -- You can add your impound script exports here
      TriggerServerEvent("impound_script:impoundVehicle", vehiclePlate, vehicleModel)
  end)
  ```
</CodeGroup>

### Parameters

| Name           | Data Type | Description       |
| -------------- | --------- | ----------------- |
| `vehiclePlate` | string    | The vehicle plate |
| `vehicleModel` | string    | The vehicle model |


## Related topics

- [Actions](/jobs-creator/client/actions/index.md)
- [External deferrals](/easy-allowlist/external-deferrals.md)
- [FAQ](/jobs-creator/faq.md)
- [Actions in external menus](/jobs-creator/client/actions/using-the-actions-in-a-radial-external-menu.md)
- [Start a mission](/missions-creator/server/start-mission.md)
