Healthbar Script Help

Alright so Basically I got this small error and im not sure how I would end up fixing it.
Assets/Player Scripts/PlayerHealthScript.cs(19,118): error CS1525: Unexpected symbol }', expecting )‘, or `,’

Below is the full code I used

using UnityEngine;
using System.Collections;

public class PlayerHealth : MonoBehaviour {
	public int maxHealth = 100;
	public int curHealth = 100;

	// Use this for initialization
	void Start () {
	
	}
	
	// Update is called once per frame
	void Update () {
	
	}

	void OnGUI() {
		GUI.Box(new Rect(10, 10, Screen.width / 4 / (maxHealth / curHealth), 20), curHealth + "/" + maxHealth ;
	}
}

On line 19 in the posted code, you’re missing a close paren.

So, at the end of the line, change

maxHealth ;

to

maxHealth);

You missed out 2 closing bracket for GUI.Box at the end.

Hey man thanks for the help. Really helped a lot.
You wouldn’t have any clue how Id be able to change the color?
Would it go something like
Color color = new Color (r, r, r,) ?

Check out GUI.Color.

Be careful as it will change all the other GUI to the same color. You can however, revert the color back to the original (white), after changing the color of the gui that you want.