Holograms_Move()

Align a hologram on its X, Y, and/or Z axis.

Full Function

Holograms_Move(id: text, x: integer, y: integer, z: integer)

Parameters

Name
Type
Description

id

text/string

ID of target hologram

x

integer/number

How far the hologram should move on the X axis

y

integer/number

How far the hologram should move on the Y axis Make this negative to make the hologram move down, or positive to move up

z

integer/number

How far the hologram should move on the Z axis

Return Values

Usage

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)

Last updated