var score = 0while (score <= 50){ if (IsKeyPressed("Up")) { score = score + 1 } if (IsKeyPressed("Down")) { score = score – 1 } if (IsKeyPressed("b")) { break }}