Whenever I try to set the Humanoid Root Part's velocity it just doesn't do anything.
1 | local SpeedLimit = 13 |
2 | while true do |
3 | wait( 0.01 ) |
4 | local VX = math.clamp(HumanoidRootPart.Velocity.X, -SpeedLimit, SpeedLimit) |
5 | local VY = math.clamp(HumanoidRootPart.Velocity.Y, -SpeedLimit, SpeedLimit) |
6 | local VZ = math.clamp(HumanoidRootPart.Velocity.Z, -SpeedLimit, SpeedLimit) |
7 | HumanoidRootPart.Velocity = Vector 3. new(VX, VY, VZ) |
8 | end |
It just doesn't set the velocity for some unknown reason.
Usually when trying to cause motion in parts you may want to use BodyMovers you can read about them here In this case BodyVelocity is what you want Using local BV = Instance.new('BodyVelocity')
Now how to directly apply this to your code
01 | local SpeedLimit = 13 |
02 | Using local BV = Instance.new( 'BodyVelocity' ) |
03 | BV.Parent = HumanoidRootPart --Assuming you declared HumanoidRootPart in your full code based on the code you proved |
04 | while true do |
05 | wait( 0.01 ) |
06 | local VX = math.clamp(HumanoidRootPart.Velocity.X, -SpeedLimit, SpeedLimit) |
07 | local VY = math.clamp(HumanoidRootPart.Velocity.Y, -SpeedLimit, SpeedLimit) |
08 | local VZ = math.clamp(HumanoidRootPart.Velocity.Z, -SpeedLimit, SpeedLimit) |
09 | BV.Velocity = Vector 3. new(VX, VY, VZ) |
10 | end |
This should work if you have any further questions I please comment further