How to get the unnormalized linear velocity?

So when I get my linear velocity vector, the values are normalized. I need them non-normalized. How should I go about getting it?

I basically want to set a specific max speed limit, so this way if the linear vel is bigger than x, I won’t increase it. If there’s another way to do it, please tell me.

You can get the vector length from the Linear Velocity output, and that will return your speed in cm/s. You can then do your check towards the actual speed instead of having to deal with direction and magnitude.