[Doubt] How to call a scene through an object

Fish Galera first apologize for the English, because I’m Brazilian and not mastered the English language, so I’m new to comunindade and would like to know how to draw a scene through a click on an object type has a book where it appears when you click a new scene or a message containing his information (author, year, etc.) …

It would be interesting to a tutorial or a practical example …

I thank the help …

This script would be attached to your book object, and you would have a level named “Author Information Ian Fleming” and set the m_authorName member variable to “Ian Fleming”.

public class BookInfo
{
    public string m_authorName;
    void OnMouseDown()
    {
            if (Input.GetMouseButtonDown(0))
            {
                        Application.LoadLevel("Author Information " + m_authorName);
            }

        }

    }
}