I've seen people have typing text labels, heres a game that has it: https://web.roblox.com/games/3723475719/unnamed?refPageId=e1c4a3ab-a8e3-40f2-9d01-53f3d52ac6d9
So yeah, how do I do that? I have no clue, but I do have the same clue has your grandmother on how to do that.
Thanks!
Continuously add characters to the TextLabel.Text property. In this example I've bound the typing text effect to a BindableEvent. You can change this if you like.
local final = "Hello World!" local label = script.Parent local event = Instance.new("BindableEvent") -- don't set the parent yet event.Name = "TypeLabel" event.Event:Connect(function () label.Text = "" for i = 1, string.len(label.Text) do wait(0.1) label.Text = label.Text .. string.sub(final, i, i) end end) event.Parent = label