Gui text

Hey im trying to have a gui text apear when all gameobjects of a certian tag are destroyed any ideas? i have no clue how to begin or even were to put the script

One way you can do this is by storing the amount of that gameobject in a variable. everytime one is destroyed, subtract one from the variable and when it is 0, display your gui. For the gui text (label), i recommend reading the documentation, it is pretty well documented and relatively easy to understand, here is a link:

http://unity3d.com/support/documentation/Components/GUI%20Scripting%20Guide.html

thanks ill take a look

how would the script look?

are you using javascript? if so, something like this:

var amount:int;

function OnGui()
{
if (amount<1)
{
…do your gui stuff here…
}
}

thank you