Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why isn't the constraint I put on these two parts working?

Asked by 6 years ago

I have two servo hinge constraints to act like a drawbridge is going down. The constraints are facing the same way and the AngularSpeed = 0.3 and ServoMaxTorque = 10,000,000 because the model that is moving has a lot of parts. Here is the script that makes it move:

local hinge = script.Parent

while true do
    hinge.TargetAngle = -90
    wait(2)
    hinge.TargetAngle = 180
    wait(2)
end

This isn't making the bridge move and I don't know why. Please help me if you can and thanks in advance:).

~rilgundam

0
If the bridges are heavy, then you may want to set MotorMaxTorque (and maybe the other properties) to a higher value. XAXA 1569 — 6y
0
I tried that and it still didn't work rilgundam 65 — 6y
0
The current value never changes even when the target value changes rilgundam 65 — 6y
0
Please help me rilgundam 65 — 6y

Answer this question