I am getting this error when im clicking the button and im not sure why
btnClickHandler.gd:5 @ _ready(): Node not found: "root/Control/clickLabelBox/clickLabel"
extends TextureButton
var clicks = 0
@onready var textlabel = get_node("root/Control/clickLabelBox/clickLabel")
func _pressed():
print("I WAS CLICKED")
clicks = clicks + 1
textlabel.text = str(clicks)