Sup home slice? I'm the Number Wizard. KACHOW!

void Start () {

    Debug.Log("Sup home slice? I'm the Number Wizard. KACHOW!");
    Debug.Log("Pick a number and I will guess what it is.");
    Debug.Log("The Lowest number you can choose is: " + min);
    Debug.Log("The Highest number you can choose is: " + max);
    Debug.Log("is your number higher or Lower than 500?");
    Debug.Log("Press Up = Higher, Press Down = Lower, Press Enter = Correct.");

if (Input.GetKeyDown(KeyCode.UpArrow))
{
Debug.Log(“Que?”);

else if (Input.GetKeyDown(KeyCode.DownArrow))
{
Debug.Log(“How can this be!?”);

else if (Input.GetKeyDown(KeyCode.Return))
{
Debug.Log(“HAHAHAHA! I’m so Wizard. Let’s Play Again!”);

Privacy & Terms