> 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/add-sphere-zone.md).

# AddSphereZone

Creates a spherical interaction zone. Players see target options when looking at the area.

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

## Example

```lua
LT.Target.AddSphereZone('myZone', coords, 1.5, {
    { label = 'Open', icon = 'fas fa-box', onSelect = function() end },
})
```

See [Target Options](/ltbridge/game-systems/target/target-options.md) for the options array format.

## Parameters

| Name      | Required | Description |
| --------- | -------- | ----------- |
| `name`    | Yes      | Zone name   |
| `coords`  | Yes      | Zone coords |
| `radius`  | Yes      | Radius      |
| `options` | Yes      | Options     |
| `debug`   | No       | Debug mode  |
