extends Label onready var MAIN = find_parent("MAIN") func update(): text = str(MAIN.beta) func _process(delta): update() func _ready(): update()