Recently I made this plugin to make a typewriter effect in Roblox easier. I have since decided to make it public!
How do I use it?
Open the plugin and press Insert
Then put this code in whatever you want to use the effect for.
local effect = require(game.ReplicatedStorage:WaitForChild("typewriteEffect"))
local text = "Lorem ipsum dolor sit amet, consectetur adipiscing."
effect:startType(script.Parent, text)
Change the value of text
to what you want to animate.
How to configure it:
Just insert this line
effect.config({delayTime = 0.05, extraDelayOnSpace = false})
The delayTime
is how long it should take to continue on to the next letter.
The extraDelayOnSpace
will make it wait for x2 the amount on a space
And that’s it, I hope you enjoy it!
If you find any bugs, just reply to this with the bug!