Heres the for loop I'm using
for(int i = 0; i < fullText[buttPress].Length; i++)
{
TalkBox.Text += fullText[buttPress][i];
System.Threading.Thread.Sleep(10);
}
the fullText variable is a string array and I'm taking each character and adding it to the text box and making it sleep but it isn't working, it just waits and then puts out the entire string.