I am trying to make a typewriter effect similar to the one from Deepwoken.
Here is a clip attached, how I want it to look
I have the basics down of typewriting each letter, however I am un-sure on how to make the size of it go in-and-out like the clip shown above.
Here is what I have so far:
local textlabel = script.Parent
local function typewrite(object, text)
for i = 1, #text, 1 do
object.Text = string.sub(text, 1, i)
wait(0.05)
end
end
typewrite(textlabel, "Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi Hi ")