Why my timer isn't working?

Hii, everyone! Greetings!
I'm new to programming and I'm learning the basics with the help of MIT! I'm making a stopwatch with basic blocks, where you can start, pause, restart and set it to increase or decrease the timer. I think everything is okay, but when I go to test the stopwatch, the minutes only go up to 59, the hours don't change (they stay at 0) and the seconds loop from 0 to 60. Could someone help me figure out what I did wrong, if possible? (if anything, I'm sorry for my bad english!
Here are the main blocks:


(segundos = seconds, minutos = minutes, horas = hours) if any more stuff are confused, please tell me!

When clock timer
Set second = get second +1
If the the second >=60
Set second =0
Set min = get min +1

If the min >=60
Set min =0
Set hr =get hr +1

Thats all my friend

1 Like