Tween Question (Moving Object Between Nodes)

So, I have an object that I am tweening. It uses the red node parts as a path.
Can anyone guide me in the direction of what calculation I need to make for it to always go the same speed no matter how far each node is from eachother.

For example, from the first node on the left to the second, should take 5 seconds. But the 3rd and 4th one should take longer so it matches the speed of the 1st to 2nd.

Hopefully that makes sense.


Set the tween time to the magnitude of distance divided by speed, or if you are using Humanoids you can simply do Humanoid:MoveTo()

2 Likes

Thank you. Not able to use humanoids with what I am doing, so this worked perfectly.