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

Is there a way to make this script shorter?

Asked by
nanaluk01 247 Moderation Voter
9 years ago

Is there a way to make this gui text script shorter? I just need an example of how to do it.

01while true do
02    script.Parent.TextColor3 = Color3.new(0, 0, 0)
03    script.Parent.Text = ""
04    wait(0.1)
05    script.Parent.Text = "T"
06    wait(0.1)
07    script.Parent.Text = "Th"
08    wait(0.1)
09    script.Parent.Text = "Tha"
10    wait(0.1)
11    script.Parent.Text = "Than"
12    wait(0.1)
13    script.Parent.Text = "Thank"
14    wait(0.1)
15    script.Parent.Text = "Thank "
View all 47 lines...

1 answer

Log in to vote
0
Answered by
M39a9am3R 3210 Moderation Voter Community Moderator
9 years ago

Yes, you can use a for loop and the sub function of strings.

For loops executes code for every interval provided. For instance for i=1,50 do for everything between 1 and 50 do the following lines of code.

Sub is used for strings to get certain sections of the string. Say I wanted to get the letters in between 4 and 8 in "Hello World!", I would use string.sub("Hello World!", 4, 8) and I would get "lo Wo".

For simplicity, we'll make your string "Thank you for playing!" a variable named Msg. Since the for loop needs two numbers, we'll have to use 1 and string.len() function on the Msg variable. string.len() will get the length of the string, however #"StringHere" will return the same result.

1local Msg = "Thank you for playing!"
2while true do
3    for i = 1, string.len(Msg) do
4        script.Parent.Text = string.sub(Msg,1,i) --Since i is always increasing until it gets to its final number, we'll use that as the third argument of string.sub()
5        wait(1/10) --We'll wait a tenth of a second before moving on.
6    end
7    wait(3) --We'll wait three seconds before doing the process over again.
8end

Hopefully this answer helped, if so hit the upvote button. If this answered your question, go ahead and hit the accept answer button. If you have any questions, feel free to comment below!
Ad

Answer this question