roblox text animation code example
Example 1: typewriter effect roblox
local text = "Whatever text you want this to be"
for i = 1, #text do
script.Parent.Parent.Dialog.TextLabel.Text = string.sub(text, 1, i)
wait(0.04) --This is the speed of the text
end
Example 2: roblox spell out text
local msg = "MONKE GOD"
for i = 1, #msg do
-- script.Parent.Text = string.sub(msg,1,i)
wait(.1)
end