So I want to make a BodyVelocity not be so… strengthy, what I mean is that I want to move right and left. How would I do that?
Here, change the MaxForce depending on the direction, so you want the player not to be able to move forwards?
The Velocity moves the player forwards, I want the player to be able to move right and left.
Ah I see, if it’s directly X or Y then MaxForce is the thing for you, otherwise it’s near impossible! Edit: To do it with Body Velocity. There are other methods.
What MaxForce should I set it to?
Basically it controls how much force can be applied to each vector, if you want it to set all movement except for left and right, and make the character move forwards on the Z axis, then set the max force to Vector3.new(0,math.huge,math.huge) While setting the velocity to 0,0,2
Oh! I got it! Thank you very much!
1 Like