how to create boolean Varibles ?

it's in the title.

like this :

var someBoolean : boolean = false;

then to change them :

function Start () {
     someBoolean = true;
}

In UnityScript -

var someVariable = true;

or

var someOtherVariable = false;

You can find all other types here: http://www.unifycommunity.com/wiki/index.php?title=Comparison_of_Programming_Languages#Other_Types

var theBooleanVariable : boolean;