Press F8 (or run) and watch it jiggle. Why does it jiggle? I want to make a car out of four of these wheel modules, so I need it to be very responsive and the torque to be quite high. I suspect it possibly has to do something with the alignment of the attachments?
This is a super simplified version from my car to just this module. It doesn’t jiggle initially, but when I change the value when I steer (either through a script or in this case just the properties tab) it starts to jiggle uncontrollably. Thanks!
You may need to increase the ServoMaxTorque or modify the physical properties of the wheel to be less dense. There might not be enough force to support the wheel’s mass
Add a NoCollisionConstraint between the wheel and the body of the vehicle to make sure Roblox’s collision physics aren’t potentially interfering with the servo.
I’m noticing a hinge for steering, so I suggest you try using a PrismaticConstraint instead of a HingeConstraint like the buggy uses in a recently added Studio template:
It might sound unrelated to your issue, but using a PrismaticConstraint might fix the jiggle problem
I looked into it, and the buggy is using a prismatic constraint to imitate a rack and pinion used in real life. This approach seems a bit too complicated for me… But thanks for the insight
In the model provided, the axels are welded together and connected to the chassis using RodConstraints (the spring is also helping, of course), so the hinge isn’t the only thing responsible for connecting the wheel to the chassis
However, in the main world (my game) it somehow works?!
The wheel and its children are all set to massless, and the servo settings are all the same, the parenting structure is the same… so why doesn’t it jiggle? There are no rod constraints holding anything together… so weird…
As far as I’m aware, they’re literally almost identical, apart from the attachments orientations, some of them have negative zeros instead of positive zeros. I’ve tried changing them to positive zeros, but they just go back to negative zeros. Otherwise, they’re exactly identical. Thanks!
But seriously, I’m trying to make my own chassis, specifically this way (for a multitude of reasons that I won’t go into because it’ll take too long), and I’m just trying to figure out why the wheel is vibrating. I’ll fix whatever issues I’ll have with the car crashing physics later, right now I’m more focused on actually being able to steer
I’ll mark this post as the solution. I reduced the wheel density to 0.01 and it worked. Sadly this isn’t the solution I was looking for, but it was my last resort after 7+ hours in the test world. Thank you