Constructors

Vector3.new(x, y, z)

x, y and z must be integers! An example:

local vector3 = Vector3.new(2, 4, 6)
printl(vector3.x) -- prints 2

Properties

x

The property x component of the Vector3

y

The property y component of the Vector3

z

The property z component of the Vector3

Methods