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
|