#How to make a backwards typewriter effect?
6 messages · Page 1 of 1 (latest)
wrote this function for you ```lua
local function backwardType(obj, text, speed)
local fulltext = text
for i = 1, string.len(text) do
obj.Text = string.sub(fulltext, 1, string.len(text)-i)
task.wait(speed)
end
end