Im new to JS and im trying to finish off a tutorial script, but i dont know what ive done wrong!
function OnGUI()
{
GUI.Box(Rect(10, 10, 300, 25), “RedCap” + “” redCapturePerc.ToString(“0”) + “” + “BlueCap” + “” + blueCapturePerc.ToString(“0”));
}
Ive gotten 4 errors:
-(99,54): expecting ), found ‘redCapturePerc’
-(99, 68): Unexpected token: "
-(99, 69): ‘;’ expected. Insert a semicolon at the end
-(99, 136): Unexpected token: )
Please help in any way you can!