i establish that self refer to this so in my case it the panel
can you explain why it not working and how to fix it
scene tree structure
Panel
label
Button
i attach this script to the button but it does not work
extends Button
func ready():
connect('pressed', self, 'performAction')
func _performAction():
$label.text='hey everyone!'