[SOLVED] My car's wheels are not working properly! What should I do?
Asked by
4 years ago Edited 4 years ago
So I was making a car chassis with good physics and I completed the model of the car. Then I created a vehicle seat and put the following script inside:
02 | local speed = script.speed.Value |
03 | local accleration = script.acceleration.Value |
04 | local steeringspeed = script.steeringSpeed.Value |
05 | local steeringangle = script.steeringAngle.Value |
08 | local vehicle = script.Parent.Parent |
09 | local seat = script.Parent |
18 | local steerA = vehicle.SteeringA.Servo |
19 | local steerB = vehicle.SteeringB.Servo |
23 | A.Motor.MotorMaxTorque = accleration |
24 | AA.Motor.MotorMaxTorque = accleration |
25 | B.Motor.MotorMaxTorque = accleration |
26 | BB.Motor.MotorMaxTorque = accleration |
31 | velocity = seat.Throttle * speed |
32 | A.Motor.AngularVelocity = velocity |
33 | AA.Motor.AngularVelocity = velocity |
34 | B.Motor.AngularVelocity = -velocity |
35 | BB.Motor.AngularVelocity = -velocity |
40 | steering = seat.Throttle * speed |
41 | steerA.AngularSpeed = steeringspeed |
42 | steerA.ServoMaxTorque = 100000000 |
43 | steerA.TargetAngle = steeringangle*seat.Steer |
44 | steerB.AngularSpeed = steeringspeed |
45 | steerB.ServoMaxTorque = 100000000 |
46 | steerB.TargetAngle = steeringangle*seat.Steer |
What happens when I run the game is that the steering wheels turn the opposite direction when I turn right or left. This means that I cannot control the car!
The vehicle seat also has number values that represent the following from the above code:
1 | local speed = script.speed.Value |
2 | local accleration = script.acceleration.Value |
3 | local steeringspeed = script.steeringSpeed.Value |
4 | local steeringangle = script.steeringAngle.Value |