📜  打字机效果 roblox - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:36.341000             🧑  作者: Mango

代码示例1
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