making a sign

im making a simple sign for a project and i want a script that will print text on the sign when the game starts but im not quite sure how to set it up any suggestions?

Add a text mesh to the sign.

public var text:String;

void Start(){
    GetComponent(TextMesh).text = text;
}

You can change the value of text in the in the inspector.