Quote from: Khris on Mon 01/04/2013 19:30:03Ups!
Did you put the line "bool down;" above the repeatedly_execute function?Code: ags bool down; function repeatedly_execute() { if (IsKeyPressed(32)) { if (!down) { down=true; // do stuff } } else down=false; }

Thank you again Khris!