of     1   

Beekeeper928
#213389517Monday, April 03, 2017 2:28 AM GMT

How would I make text look like some one is typing it?
Mister_Manakin
#213389810Monday, April 03, 2017 2:31 AM GMT

message = "hello world" for i = 1, string.len(message) do textbox.Text = (string.sub(message, 1, i).."_") end
Mister_Manakin
#213389873Monday, April 03, 2017 2:31 AM GMT

oops, forgot to add a wait() in there

    of     1