GameObject.active won't enable a GUITexture?

Ugh. First, I just wanna say, to all those people who help programming noobs like me, thanks. You, all of you people who help others, thank you.

Now, onto the question. I am trying to create a very VERY simple script to where these are called in an animation. The cam looks to the left, hears breathing, looks to the right sees monster, then it is supposed to open a GUITexture with the games main Banner on it. But, sadly, it won’t load the texture AT ALL. I have tried Awake and Start, but it won’t do anything. I have tried Debug.Logging it. It is active when the animation calls it but it doesn’t show. I have tried all of my lacking knowledge of how to fix an otherwise working script, but it won’t show the GUI. Here is the script:
#pragma strict

var EBanner : GameObject;
var LevelNum : int;
var BreathingAudio : AudioSource;

function Start ()
{
	EBanner.active = false;
}

function Breathing ()
{
	BreathingAudio.Play();
}

function Banner ()
{
	EBanner.active = true;
}

Just a tip about the LevelNum variable, it is going to load the next scene after I fix this problem. I figure, that if this won’t work, I may do it via the animation window. Anyways, any tips?

A quick suggestion here, and I will go into unity and rewrite your script to confirm my information. I am no coding expert myself. But first your EBanner variable should be a Boolean because you’re asking the engine to identify true or false. Also you need more lines of code. All your doing is calling functions in your script. These functions need arguments. The compiler need to know if the camera is in this position then execute this function, if not then execute that function. In your breathing function, you are calling a script, but the compiler does not know what to do with that called function. Like I said I’m no expert and I will do my best to rewrite this into something working for you. But if you understood my suggestions maybe you can rewrite a solution before I am able to submit a working one to you. Also maybe a more seasoned veteran will come across this and give you better info. Good luck zany which way