Player not flipping(SOLVED)

so here is my code

Screenshot 2026-01-01 12.27.49 PM

You set both of them to be -1.

You also need to change if("left") to if(isKeyDown('left')) because the string ‘left’ will always be true. Same for the right.

1 Like