okay, sorry it took so long to reply but: on the draw actor event have this script
- Code: Select all
yvelocity += 1;
if(yvelocity > 10)yvelocity = 10;
(or whatever you want the max speed to be)
and on the key down event of space, have this script
- Code: Select all
yvelocity -= 5;
or put a greater yvelocity depending on how high you want to jump
if you want to know how to jump without repeating just tell me