今週からはじめた超初心者です。
入門の本を読みながらやっていますが、
NullReferenceException: Object reference not set to an instance of an object
UnityEngine.GUI.Label (Rect position, UnityEngine.GUIContent content, UnityEngine.GUIStyle style)
UnityEngine.GUI.Label (Rect position, System.String text, UnityEngine.GUIStyle style)
DeathCounter.OnGUI () (at Assets/script/DeathCounter.js:21)
というのが大量に出てきました。ver4.6です。
コードは下のところになにかあるらしいのですが、よくわかりません。
どうしたら消せますか><

function OnGUI () {
if( deathCount >= 20 )
{
GUI.Label( Rect ( Screen.width / 2 -100, 250, 200, 80) , "GAME OVER" , style );←ここ
if( GUI.Button(Rect ( Screen.width / 2 -100, 200, 200, 30), "Go title" ))
{
Application.LoadLevel("title");
}
}
}