Getting a Character from FText

Hello this should be a pretty simple question, but I am creating a text display and I want the text to show up character by character so in order to do that I need to get each character form a string. Ideally I could treat the string like an array, but any solution works of course.

You could try making a new FString. Iterate through the old one, appending each character to the new FString one at a time. On each iteration, convert your new FString to an FText to be displayed.