> For the complete documentation index, see [llms.txt](https://documentation.jaksam-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.jaksam-scripts.com/jobs-creator/client/actions/integrate-external-impound-script.md).

# Integrate external impound script

Triggered when a vehicle is impounded

## Event

```lua
AddEventHandler("jobs_creator:actions:vehicleImpounded", function(vehiclePlate, vehicleModel)

end)
```

### Parameters

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

## Example

```lua
RegisterNetEvent("jobs_creator:actions:vehicleImpounded", function(vehiclePlate, vehicleModel)
    -- You can add your impound script exports here
    TriggerServerEvent("impound_script:impoundVehicle", vehiclePlate, vehicleModel)
end)
```
