Как мне напечатать что -то в консоли в начале игры.

void Start() {
	Debug.Log("Hello world!")
}

// This code will print in the console "Hello world!" at the start of the game
ThePokedNoob