; Expected Insert a semicolon at the end. HELP!

Heres my script: im getting an error HELP!

#pragma strict

var currentHealth : float = 100.0;
var maxHealth : int = 100;

var currentThirst : float = 100.0;
var maxThirst : int = 100;

var currentHunger : float = 100.0;
var maxHunger : int 100;

private var barLength = 0.0;

function Start()
{
    barLength = Screen.width / 8;
}

function OnGUI()
{
    //Icons
    GUI.Box(new Rect(5, 30, 50, 23), "Health");
    GUI.Box(new Rect(5, 55, 50, 23), "Thirst");
    GUI.Box(new Rect(5, 80, 50, 23), "Hunger");

    //Health / Hunger / Thirst bars
    GUI.Box(new Rect( 55, 30, barLength, 23), currentHealth.ToString("0") + "/" + maxHealth);
    GUI.Box(new Rect( 55, 55, barLength, 23), currentThirst.ToString("0") + "/" + maxThirst);
    GUI.Box(new Rect( 55, 80, barLength, 23), currentHunger.ToString("0") + "/" + maxHunger);

}

Next time post the error message too.
Its probably because of this line.

private var barLength = 0.0;
//should be
private var barLength : float = 0.0;

You’re missing an equal sign.

var maxHunger : int 100;

Should be:

var maxHunger : int = 100;