im no pro myself, only being 13, but here's a code for jumping:
first, click 'event add' (asuming you're in the actor control menu)
second, click 'key down'
third, press 'up' (or whatever the jump key is)
fourth, choose 'script editor'
fifth, type
- Code: Select all
yvelocity=yvelocity-1;
sixth, click 'add' then 'immediate action'
----
That's for when the player holds the 'up' key down.
Next is for when they press up.
----
first, click 'event add'
second, click 'key up'
third, click 'script editor'
fourth, type:
- Code: Select all
yvelocity=yvelocity*(-1);
**Just make sure you have ground or something to land on.
if you dont know how to do this, see the tutorials.
I hope this works