well ok maby i didnot ask my question right i made a platform that you can jump on in game mode you can land on it but when you press the jump button you do not jump you fall through it
send me the .ged file and data just coppy the .ged and the data file in a zip file and upload here. ill have a look then tell ya what to do its probly one of those simple mystakes that are overlooked
OK here is the tutorial =Click on Script menubar,then add an actor variable called "canjump". On your players events, add a collision event (relating to the ground) with a script editor that says: "canjump = 1;" On your players keydown event (for whatever your jump button is)make the script say: if(canjump==1) { yvelocity = -8; canjump=0; }