Vector3
Object that represents a 3D position.
Constructors
V3(number X, number Y, number Z)
Properties
number x | X component of the vector |
number y | Y component of the vector |
number z | Z component of the vector |
Static properties
Vector3 zero | Shorthand for writing V3(0, 0, 0) |
Examples
local position = V3(3, 2, 5);
local zero = Vector3.zero;