1 2 3 4 5 6 7 8 9
extends Label func _ready(): $Timer.start() text = "Time: " + str($Timer.time_left) func _process(delta): text = "Time: " + str($Timer.time_left)