Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

What does "Vector3.new()" Mean?

Asked by 9 years ago

Ive Never understood what it meant, but ive always known how to use?

1 answer

Log in to vote
2
Answered by 9 years ago

To start, Vector3 is just a value with 3 numbers inside it. The 3 numbers represent the X,Y, and Z axises. When you say Vector3.new() you are creating 3 new numbers for the X,Y, and Z axises.

0
Ok ,now i understand, bc i use Vector3.new for many things to chang X, Y, And X, but i didnt know that thats all it could be. C4Motorbiker 10 — 9y
0
*axes grasheeno 70 — 9y
0
yea your right Octillerysnacker and if you want something to move in your game the code is local part = script.Parent for i = 1,50 do part.Position = part.Position + Vector3.new(0,0,1) wait(0.3) end ArsiaRulez 0 — 6y
Ad

Answer this question