How do I make a character jump in mobile + bugs showing up

Beginner here, I’m using the mobile app because I’m looking forward to making simple games.

How do I makey character jump, I tried that event in the screenshot, but there’s a strange bug where I can’t make the character jump more than once, unless I move the joystick. If I move the character again, I can jump again.
Is there a better way to code that?

Welcome. By default, when using a device with a touch screen, the cursor moves to the location that is touched and stays there. So, when you touch the jump button it’s like holding the button down. By default, the character can only jump once per press. If you add the condition that checks for touches or mouse clicks, you should be fine. The jump will only be triggered when the screen is touched on the jump button.

1 Like

Hi, I’ve finally gotten time to test you advice, and it worked! Thanks!

1 Like