Как вручную нажать кнопку Годо

func _ready():
    $Button.emit_signal("pressed")

func _on_Button_pressed():
    print("pressed")
Crazy Caracal