GUI HELP!!!!!

Hello everyone, this is FastMountainStudios and I need some help. I am currently making and RTS game and I need some help, the thing I need help with is how do I make a Gui Text when I click it lets me place down a certain bulding. Please help if you can, thanks

In this case you should be using GUI.button instead of gui text. like this

function OnGUI()
{
   if(GUI.Button(Rect(10,50,100,100),"Your text",GUIStyle.none))
   {
     // instantiate the building and move it with mouse, on mouse click  place the building at tht position.
     //the script is a bit complicated to give unless i knw about the game
   }
}

this would let you click the text. I hope this is what you are looking for, if not please comment your requirement below