How to make a proper lunge/ dash ability

So, im trying to make a slam down onto the ground ranged abiltiy type thing.
problem is. i dont want the player to tp there, which is what i would do, however its not how i want this to go.
i want to smoothly move the player there, however i tried tweening, and it well. gave me some weird results.

should i be doing this someway else?

1 Like

You should use a LinearVelocity instead of manually tweening the player’s position.

Also, to avoid the player bouncing around, you should raycast in front of the player to see if they’re about to hit the ground. If they are, you should cancel the linearvelocity and teleport the player.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.