Answers for "typewriter roblox"

2

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
Posted by: Guest on April-20-2020
0

roblox spell out text

local msg = "MONKE GOD"
for i = 1, #msg do
	-- script.Parent.Text = string.sub(msg,1,i)
	wait(.1)
end
Posted by: Guest on December-22-2020

Browse Popular Code Answers by Language