> For the complete documentation index, see [llms.txt](https://laot7490.gitbook.io/ltbridge/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://laot7490.gitbook.io/ltbridge/game-systems/target/remove-global-vehicle.md).

# RemoveGlobalVehicle

Remove specific global vehicle target options. Pass the same `options` array you used with `AddGlobalVehicle` — only entries whose `label` or `name` match are removed.

{% hint style="info" %}
**Side:** Client · **Category:** Target · **API:** `LT.Target.RemoveGlobalVehicle`
{% endhint %}

## Example

```lua
LT.Target.RemoveGlobalVehicle({
    { label = 'Open Trunk' },
})
```

## Parameters

| Name      | Required | Description                                      |
| --------- | -------- | ------------------------------------------------ |
| `options` | Yes      | Options to remove (matched by `label` or `name`) |
