# sm.cell.getInteractablesByAnyUuid

Returns a table of [Interactables](../Game-Script-Environment/Userdata/Interactable.md) which matches any of the given [Uuids](../Game-Script-Environment/Userdata/Uuid.md) for a cell coordinate.

**Kind:** Function

**Environments:** Game

## Game

``` { .lua .api-signature }
sm.cell.getInteractablesByAnyUuid( x, y, uuids )
```

[Open the full Game reference](../Game-Script-Environment/Static-Functions/sm.cell.md#getinteractablesbyanyuuid)

**Availability:** Server only

> **Note:**
> Can only be used in a server_onCellLoaded callback.

**Parameters:**

| Name | Type | Description |
| --- | --- | --- |
| `x` | integer | The X-coordinate. |
| `y` | integer | The Y-coordinate. |
| `uuids` | table | A table \{[Uuid](../Game-Script-Environment/Userdata/Uuid.md), ...\} of uuids to match interactables against. |

**Returns:**

| Type | Description |
| --- | --- |
| table | A table \{[Interactable](../Game-Script-Environment/Userdata/Interactable.md)\} of found interactables with matching uuid. |
