Image appear when i click on a model

ok…so i know that to get something to happen when you click on an object you have to use “OnMouseDown” i also know that to make something appear on your gui is “OnGUI” and that picture is ShowPicture = true…can someone just write the code…i admit i am a noob at this.

I’m not going to write the entire code for you, but I can guide you in the right direction.

To know if an object is clicked, you will need to use raycast to send a ray from screen point to the object.

Raycast

In the raycast, you should check if the ray hits the game object.

If it does, then you can set a bool var ShowPicture = true;

Inside OnGUI(), you should check if ShowPicture = true, if it is, then draw a texture.

GUI.DrawTexture