extends Control # Called when the node enters the scene tree for the first time. func _ready(): $Label.text = "Press me, senpai!" func _on_Button_pressed(): $Label.text = "HELLO!" $Timer.stop() $Timer.start() func _on_Timer_timeout(): $Label.text = "Press me, senpai!"