Hi! My name is Richard I made a bumper car then added the joystick. It was pretty difficult to use it with the joystick. Then when I changed the input commands from sensor1 and sensor3 to counter1 and counter3, it worked! It took me a while but I finished it. The joystick worked but it was hard to make it go left and right because it turned too much. I fixed it by making the power number lower for the motors. Below you will see a picture of the bumper car and the procedures.
to right
a, thisway
c, thatway
ac, onfor 1
end
to left
a, thatway
c, thisway
ac, onfor 1
end
to forward
a, thisway
c, thisway
ac, onfor 5
end
to back
a, thatway
c, thatway
ac, onfor 5
end
to drive
resetc1
resetc3
ac, setpower 2
launch [joystick]
end
to joystick
loop [
if counter1 > 1 [forward]
if counter1 < -1 [back]
if counter3 > 1 [right]
if counter3 < -1 [left]
]
end