of     1   

thegoodpuppy
#183552493Sunday, February 14, 2016 1:55 AM GMT

How could I do something so I don't have to retype the whole thing every time, so it types it like you would search something on google, one letter every half seconds or something, etc. while true do print("H") wait(0.2) print("HE") wait(0.2) print("HEL") wait(0.2) print("HELL") wait(0.2) print("HELLO") wait(0.2) end
cofunction
#183552785Sunday, February 14, 2016 1:59 AM GMT

local text = "Hello" local num = 0 while wait(0.2) do num = num + 1 print(string.sub(text, 1, num)) if num > #text then num = 0 end end
ConfederateJesus
#183557454Sunday, February 14, 2016 3:02 AM GMT

local text = "Hello" local num = 0 while wait(0.2) do num = num + 1 print(string.sub(text, 1, num)) if num > #text then num = 0 end end Don't use AdvancedObject's script. It will run infinitely and the script will yield forever running that code. (basically it won't go on to run code written after it) local text = "Hello" for i = 1, string.len(text) do print(string.sub(text, 1, i) wait(0.2) end
Wrathsong
#183557557Sunday, February 14, 2016 3:03 AM GMT

...I actually just made a thread asking for this same thing...

    of     1