Hi! I am wanting to
Make a “tween” position between point a and point b in this fashion. I just want to the player’s position to move smoothly between point a / b in that arc. Thank you - BMWLux.
You can do it with a Bezier curve.
Bézier curve - Wikipedia
Also see Help with bezier curves - Help and Feedback / Scripting Support - DevForum | Roblox
Bezier Curves really help when creating smooth curves!
The curves work by creating polynomials with multiple linear interpolations. Linear interpolations are basically going from point 0 to point 1. This creates a straight line between the two points. Then linearly interpolate (lerp) from point 1 to point 2. This creates a straight line between Point B and Point C. Finally, lerp between the two points, creating a smooth curve! Here are some extra resources in case if you are still confused.