Reset value in a dynamic textbar

hi! I’ve made a pong-game with score and stuff, but now I have to make so that if (ball._y>=450) {, I want to reset the score.

now the code looks like this:

if (ball._y>=450) {
ball._x=263;
ball._y=111;
xspeed=0;
yspeed=10;
}

And that just makes the ball go down from y111 if the ball crosses y450, but the score is still there!
I’m not good at explaining the problem, but I hope you get it…