# Holograms\_Move()

### Full Function

Holograms\_Move(id: text, x: integer, y: integer, z: integer)

### Parameters

<table><thead><tr><th width="150">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>id</td><td>text/string</td><td>ID of target hologram</td></tr><tr><td>x</td><td>integer/number</td><td>How far the hologram should move on the X axis</td></tr><tr><td>y</td><td>integer/number</td><td>How far the hologram should move on the Y axis<br><br>Make this negative to make the hologram move down, or positive to move up</td></tr><tr><td>z</td><td>integer/number</td><td>How far the hologram should move on the Z axis</td></tr></tbody></table>

### Return Values

{% tabs %}
{% tab title="0" %}
{% hint style="success" %}
Success
{% endhint %}
{% endtab %}

{% tab title="1" %}
{% hint style="danger" %}
Error - Chunk at requested new location is not loaded
{% endhint %}
{% endtab %}

{% tab title="2" %}
{% hint style="danger" %}
Error - Hologram is not loaded
{% endhint %}
{% endtab %}
{% endtabs %}

### Usage

```python
Hologram_Move("id", 5, -5, 0)
# will move left 5 (+5 on the X axis), 5 down (-5 on the y axis),
# and not at all on the z axis (+0 on the Z axis)
```
