create GUI.Label and then access to it..

Hi!
So need to create GUI.Label and then access to it…

first script :

test.js

var style : GUIStyle;
public var SCORE = "0";

function OnGUI () 
{
	style.fontSize=18;
	style.normal.textColor=Color.red;	
	GUI.Label (Rect (Screen.width*0.2, Screen.height*0.15, 100, 20), SCORE,style);
}

test_access.js

function Start()
{
	var LOAD : test;
	LOAD = GetComponent(test);
	LOAD.SCORE="1";
}

So this solution does not work…

is test.js of type instantiate?

sorry )) Fixed problem … script originally was instantiate.js, not test.js

So what i am doing wrong???

What doesn’t work about that solution? Are there errors or the score is just not updating?
Are test and test_access scripts both attached to the same game object?

test and test_access - both different object… error NullReferenceException: Object reference not set to an instance of an object