I've been trying for a while now to make this script work, the code that i've wrote for it currently grabs a new instance of the "GridSizeUI.gd" script, but i want to make so that the Script grabs the actual "GridSizeUI.gd" script, because any updates that happen to the original script don't appear in the new instance
What could i do in the code to make that happen?
extends Label
var GridSizeUI_Script = load("res://Scripts/Grid_Size_UI.gd").new()
func _process(delta):
text = str(GridSizeUI_Script.NT)
print(text)