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

Gui text changer not working?

Asked by
dreamy67 135
11 years ago

This script does not work in online mode, only offline. How do I fix this?

001g = game.StarterGui.ScreenGui.Frame.TextLabel
002 
003while true do
004    wait(1)
005    g.Text = "White Eagle Cafe || By "
006    wait(.1)
007    g.Text = "White Eagle Cafe || By d"
008    wait(.1)
009    g.Text = "White Eagle Cafe || By dr"
010    wait(.1)
011    g.Text = "White Eaggle Cafe || By dre"
012    wait(.1)
013    g.Text = "White Eagle Cafe || By drea"
014    wait(.1)
015    g.Text = "White Eagle Cafe || By dream"
View all 130 lines...

1 answer

Log in to vote
0
Answered by 11 years ago
01local msg = "White Eagle Cafe || By magicofbunny"
02local msg2= "White Eagle Cafe || By guest8899088"
03local msg3="White Eagle Cafe || By dreamy67"
04 
05while true do
06wait()
07for i = 1, msg:len() do
08script.Parent.Text = msg:sub(1, i)
09wait(0.1)
10end
11 
12 
13wait(5)
14for i = 1, #msg do
15script.Parent.Text = msg:sub(1, #msg-(i-1))
View all 47 lines...

Put this in the TextLabel

0
It works well but I want it to type then baskspace itself then type the next name. dreamy67 135 — 11y
0
Ah let me get that for you Tempestatem 884 — 11y
0
I thought I knew how, it doesn't work. I will try to look into it as much as possible Tempestatem 884 — 11y
0
Here I think it works Tempestatem 884 — 11y
0
Thanks! dreamy67 135 — 11y
Ad

Answer this question