This is how I would achieve the typewriting effect:
local TestText = "Hello, welcome!" -- This is what we started with
local SplitText = string.split(TestText, "") -- Split it
local StartText = "" -- This is what we will add our text too
for i = 1, #TestText, 1 do -- Loop through the total letters
task.wait(0.1) -- Wait how ever long you want between letters
StartText = StartText..SplitText[i] -- Add on to the last text.
print(StartText) -- Set it to a text and it will appear as if it was being typed
end
Well no… even just try to make the effect occur and well I want this to occur in a TextLabel inside a frame that activates a tween that takes the gui up and then returns down I want the effect of typewrite