Hey, just a quick question thing. How can you add two Vector3 values? Do you just do
Vector3.new(12, 0, 9) + Vector3.new(-9, 0, 19)
Add two vector3 in vars
local v = Vector3.new(12, 0, 9) + Vector3.new(-9, 0, 19)
Add vector3 to object's property
game.Workspace.Part.Position += Vector3.new(10,10,10)
Print added vector3s
print(Vector3.new(10,10,10) + Vector3.new(10,10,10))
don't use a + between Vector3.new(10,10,10) and Vector3.new(10,10,10) just use a double point, something like this
Print(Vector3.new(10,10,10)..Vector3.new(10,10,10))