displaying text typed in

How do you display each word that was typed into a text box on the screen?

When you call GUI.TextField you’ll get back whatever the user typed in as a string. You can do whatever you want with this string. I don’t remember how to break a string into words in Unity, but Javascript has a split() function. I’d probably try using that. Once you have that then use Debug.Log to display each word, or any other Unity string display routine.