Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a text that looks like it's typing? [closed]

Asked by
Xapelize 2658 Moderation Voter Community Moderator
4 years ago
Edited 1 year ago

Please note this is a old post, so the time when I posted this I was a young kid, please don't complain

So, I wanted to make a text that repeatedly gain word by word instead of replacing the whole text as the text. Is there any solutions?

Closed as Not Constructive by RubenKan

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 4 years ago

insert a gui, a frame and put a LocalScript inside the frame then type

local text = "Your Text"
for i = 1, #text do
    game.StarterGui.YourGui.Frame.TextLabel.Text = string.sub(text, 1, i)
    wait() -- The more the number, the slower the typing
end
0
did this help? AnasBahauddin1978 715 — 4y
0
Also, this is not alvinblox, you have to show the code and try yourself to script AnasBahauddin1978 715 — 4y
Ad