I put two hinge constraints on two different models. The constraints are facing the same way. It is set to servo. Angular velocity = 0.3 and max torque = 100,000,000. It is set so high because it is connected to two models high in parts. And this is how I'm trying to move it:
1 | local hinge = script.Parent |
2 |
3 | while true do |
4 | hinge.TargetAngle = 90 |
5 | wait( 2 ) |
6 | hinge.TargetAngle = 0 |
7 | wait( 2 ) |
8 | end |
And it won't work please help me.