How do you make a part face the direction it's going (bezier curves)

Baseplate - Roblox Studio (gyazo.com)

I’m just trying to figure out how to make the part I create move in the direction it’s going while it’s travelling through points.

1 Like

I haven’t tried bezier yet, but you can try something like setting the part’s CFrame to the next point it will reach (If that’s how it works).

Or you can just do something like

projectile.CFrame = CFrame.new(PROJECTILE_POSITION, TargetPosition)

I tried that, but it’s not really working out that well. I know it’s probably something along the lines of that though.