Returns a table with the labels "x", "y" and "z" containing the coordinates of the vector.
local a = vector.new(1, 2, 3) print(a.x) print(a.y) print(a.z) //1 //2 //3