Is it possible to derive the speed of a part from its Velocity vector? If so, how would I go about doing this?
Also, I'm unsure of my knowledge on Velocity vectors. Does Vector3.new(0,50,0)
mean that that velocity is 50 studs per second on the Y axis?
"Does Vector3.new(0,50,0)mean that that velocity is 50 studs per second on the Y axis? "
No Vector3 is a position, not a speed.
if you want do do a speed you would have to do something like
while wait(1/50) do brick.CFrame = brick.CFrame+Vector3.new(0,50,0) end