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?
insert a gui, a frame and put a LocalScript inside the frame then type
1 | local text = "Your Text" |
2 | for i = 1 , #text do |
3 | game.StarterGui.YourGui.Frame.TextLabel.Text = string.sub(text, 1 , i) |
4 | wait() -- The more the number, the slower the typing |
5 | end |
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?