Im trying to make it so my score stops when the ball hits the goal
How are you increasing the score? Can you show some events?
the score decreases every second
You’ll need to add a condition. I’d use a boolean variable to indicate whether the game was playing, and only decrease the score if that variable is true. Initially set that boolean variable to true, and set it to false once the ball hit the goal.
Also, swap your actions round. Decrease the scene variable Score, then change the text. I’t more accurate.