I'am making an option button, and i want to change the color of a label that is in another scene, this is my actual code
extends HBoxContainer
export var node = ""
func _on_OptionBox_focus_entered():
get_node("OptionLabel").add_color_override("font_color", Color(1,1,0.3,0.8))
get_node("MinusButton").add_color_override("font_color", Color(1,1,0.3,0.8))
get_node("PlusButton").add_color_override("font_color", Color(1,1,0.3,0.8))
get_node(node).add_color_override("font_color", Color(1,1,0.3,0.8))