How to make this script do the opposite of what it is supposed to do?
This script is supposed to make wheels turn.. I tried making the wheels on the back of a bus go the opposite way.. but I couldn't figure out how.. the game on my profile shows the bus I was trying to do it with.
01 | local m = Instance.new( "Motor" ) |
03 | m.Part 0 = script.Parent |
04 | m.Part 1 = script.Parent.Parent.Part |
05 | m.Parent = script.Parent |
07 | local seat = script.Parent.Parent.Parent.VehicleSeat |
09 | seat.Changed:connect( function () |
10 | if seat.Steer = = 0 then |
12 | elseif seat.Steer = = 1 then |
14 | elseif seat.Steer = = - 1 then |
The bus is not finished..