
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Printscreen : MonoBehaviour {
// Use this for initialization
void Start () {
print("Welcome to Go Home");
print("Your going to have an exciting Adventure");
}
// Update is called once per frame
void Update () {
}
}
Excellent work. Thank you for taking the time to share this with others.

using UnityEngine;
using System.Collections;
public class ConsolePrinter : MonoBehaviour {
// Use this for initialization
void Start () {
print ("Hello and welcome to Adaptivity");
print ("Thank you for joining us");
print ("You can click on the button below to continue");
}
// Update is called once per frame
void Update () {
}
}