How do I stop Y axis disrupting the gravity

So I got this dashing script and I’m using key inputs and HumanoidRootPart’s velocity changing, and the script works but the issue is that when the script changes the velocity it also changes the velocity of the y axis which you can see is supposed to retain itself and not change but it bugs out the gravity so when I dash while jumping or just while being in the air, instead of dashing me like in the strongest battlegrounds:

Like you see it dashes me with normal gravity because you can see it taking me down after but
It dashes me like this in my game:

I think the reason is that the RunService just resets it over and over and that’s why The Y axis can’t hold the normal gravity , but I just have no clue how to fix it or if it’s even the reason. Here is my code:

tsb most likely uses LinearVelocity, I don’t know why your doing run service for this

  1. pls put your services at the top of the script
  2. just use linear velocity…
  3. NEVER do :WaitForChild in remote event server scripts, always do :FindFirstChild

I mostly use it cuz when I tried to use linear velocity I couldn’t make the player turn while dashing so this is the only idea I got

I’ll try to figure out something with LinearVelocity

you can make the linear velocity push the player towards an attachment (That you can create and put into the humanoid’s root part)

whenever the player rotates, the attachment does aswell, that means the velocity will push in a different direction

That’s actually a good idea, I’ll try that thx

Linearvelocity can cause physics issues sometimes, and can be slow to respond, i find that repeatedly setting velocity to humanoidrootpart.cframe.rightvector or it’s negative is much more consistent and less likely to cause a physics freakout.

The section at the bottom is a bit of a mess, you might wanna use something like this:

aside from that, i’ve done this kind of thing before, and i’m not sure why it isn’t working. my only idea is something to do with the use of velocity instead of assemblylinearvelocity.
(note that i can’t get the second video to play due to a ‘network error’ that persists when refreshing. The first video works fine. Try reuploading?)