private var IsReviving:boolean = true;
function Update(){
if (IsReviving){
IsReviving = false;
yield WaitForSeconds(10);
HealthScript.Health += 1;
IsReviving = true;
}
}
One too many close brackets, and a capital Y as mentioned by AlteredReality. As for all the other code, I know everyone has their own style, but I find variables starting with capital letters confusing. I reserve those for function names and classes - it makes things much more readable in my opinion.