
How do i connect an autoload signal with a function from a nother script?
i tried:
healthcontroller.connect("no_health", self, "_on_Player_respawn()")
func _on_Player_respawn():
queue_free()
and i tired:
healthcontroller.connect("no_health", self, "queue_free()")
with both i get the error Method not found.. but i don't know why