Please help me. It says that the problem is on line 39.
Line 39:
GUI.Label (new Rect(Screen.width / 2 - 150, 200, 2000, 1000, “PLAYER ONE WINS”));
Please help. Thank You.
Please help me. It says that the problem is on line 39.
Line 39:
GUI.Label (new Rect(Screen.width / 2 - 150, 200, 2000, 1000, “PLAYER ONE WINS”));
Please help. Thank You.
Closing bracket of rect in the wrong place. Correct code as follows
GUI.Label (new Rect(Screen.width / 2 - 150, 200, 2000, 1000), "PLAYER ONE WINS");