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

[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:

01-- get the specifications
02local speed         = script.speed.Value
03local accleration   = script.acceleration.Value
04local steeringspeed = script.steeringSpeed.Value
05local steeringangle = script.steeringAngle.Value
06 
07-- set up the shortcuts
08local vehicle   = script.Parent.Parent
09local seat      = script.Parent
10 
11-- find the tires
12local A         = vehicle.A     -- front left
13local AA        = vehicle.AA    -- front right
14local B         = vehicle.B     -- back left
15local BB        = vehicle.BB    -- back right
View all 47 lines...

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:

1local speed         = script.speed.Value
2local accleration   = script.acceleration.Value
3local steeringspeed = script.steeringSpeed.Value
4local steeringangle = script.steeringAngle.Value

1 answer

Log in to vote
1
Answered by 4 years ago

You can make the steer value to make it opposite

01while true do
02 
03    -- power the wheels
04    velocity = seat.Throttle * speed -- use the seat's throttle to determine the wheels' action (backward? forward? nothing?)
05    A.Motor.AngularVelocity     = velocity
06    AA.Motor.AngularVelocity    = velocity
07    B.Motor.AngularVelocity     = -velocity
08    BB.Motor.AngularVelocity    = -velocity
09 
10    wait()
11 
12    -- steering
13    steering = seat.Throttle * speed
14    steerA.AngularSpeed = steeringspeed
15        steerA.ServoMaxTorque = 100000000
16        steerA.TargetAngle = steeringangle*seat.Steer* -1
17    steerB.AngularSpeed = steeringspeed
18        steerB.ServoMaxTorque = 100000000
19        steerB.TargetAngle = steeringangle*seat.Steer * -1
20end
0
Thank You SO MUCH! This helped, but for steerA, you don't have to put -1, cause it will do the same thing. Thanks Anyway! Lightning_Game27 232 — 4y
Ad

Answer this question