Typewriter Effect

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 ")

Hi! So far, your code would make it type character by character, but no cool animation. You’ll have to use tweening and create multiple taxtlabels for each character, preferably with another function.

Someone previously asked that question and got an answer, you can modify the script yourself to make the effect exactly the same.
Link: How do i animate letters like this? - #2 by DrKittyWaffles