Want to add notice bar in my scene like this image, what should i use to achieve it?

See the bottom of the image

Direct link of image if needed - Imgur: The magic of the Internet

I want to make something similar, i want little guidance as what exactly should i use so that there is no time waste

Pretty much depends on how you’re putting your GUI together. You’d use whatever you’re using for the rest of the GUI.

For Arrow Button you can use Button like This: GUILayout.Button(“Arrow left”); For arrow sign you can use Texture2D. here Arrow left is the name of Texture for Arrow sign. In start() you can import Texture2d Like This : Texture2D Arrowleft = Resources.Load (“Arrowleft”, typeof(Texture2D)) as Texture2D;

so you mean, i should use texture2D for this…ok got it and how do i make this kind of semi transparent ? i mean the background ???

For background also you need to import an Tecture2D The you can use this code :

GUI.DrawTexture(Rect(0,0,Screen.width,Screen.height),Home_Background);
You need to learn one thing when we draw any thing in OnGUI Method the thing which written 1st draw 1st . so please try this :

function OnGUI()
	{ 
         GUI.DrawTexture(Rect(0,0,Screen.width,Screen.height),Home_Background);

         GUI.Button(Rect(50,50,100,100)"Arrow left");
      }

got it, thanks

Your Always Welcome :slight_smile: