> 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/blip/get-all.md).

# GetAll

Returns every blip handler created by this resource so you can iterate or clean up.

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

## Example

```lua
for _, blip in pairs(LT.Blip.GetAll()) do
    if blip then blip:delete() end
end
```

{% hint style="warning" %}
Returns an internal array that may contain `nil` holes after individual blips are deleted. Use `pairs`, not `#`.
{% endhint %}

## Returns

* `table` Sparse array of blip handlers
