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
10 years ago

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

g = game.StarterGui.ScreenGui.Frame.TextLabel

while true do
    wait(1)
    g.Text = "White Eagle Cafe || By "
    wait(.1)
    g.Text = "White Eagle Cafe || By d"
    wait(.1)
    g.Text = "White Eagle Cafe || By dr"
    wait(.1)
    g.Text = "White Eaggle Cafe || By dre"
    wait(.1)
    g.Text = "White Eagle Cafe || By drea"
    wait(.1)
    g.Text = "White Eagle Cafe || By dream"
    wait(.1)
    g.Text = "White Eagle Cafe || By dreamy"
    wait(.1)
    g.Text = "White Eagle Cafe || By dreamy6"
    wait(.1)
    g.Text = "White Eagle Cafe || By dreamy67"
    wait(.5)
    g.Text = "White Eagle Cafe || By dreamy6"
    wait(.1)
    g.Text = "White Eagle Cafe || By dreamy"
    wait(.1)
    g.Text = "White Eagle Cafe || By dream"
    wait(.1)
    g.Text = "White Eagle Cafe || By drea"
    wait(.1)
    g.Text = "White Eagle Cafe || By dre"
    wait(.1)
    g.Text = "White Eagle Cafe || By dr"
    wait(.1)
    g.Text = "White Eagle Cafe || By "
    wait(1)
    g.Text = "White Eagle Cafe || By g"
    wait(.1)
    g.Text = "White Eagle Cafe || By gu"
    wait(.1)
    g.Text = "White Eagle Cafe || By gue"
    wait(.1)
    g.Text = "White Eagle Cafe || By gues"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest8"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest88"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest889"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest8899"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest88990"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest889908"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest8899088"
    wait(.5)
    g.Text = "White Eagle Cafe || By guest889908"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest88990"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest8899"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest889"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest88"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest8"
    wait(.1)
    g.Text = "White Eagle Cafe || By guest"
    wait(.1)
    g.Text = "White Eagle Cafe || By gues"
    wait(.1)
    g.Text = "White Eagle Cafe || By gue"
    wait(.1)
    g.Text = "White Eagle Cafe || By gu"
    wait(.1)
    g.Text = "White Eagle Cafe || By g"
    wait(.1)
    g.Text = "White Eagle Cafe || By "
    wait(1)
    g.Text = "White Eagle Cafe || By m"
    wait(.1)
    g.Text = "White Eagle Cafe || By ma"
    wait(.1)
    g.Text = "White Eagle Cafe || By mag"
    wait(.1)
    g.Text = "White Eagle Cafe || By magi"
    wait(.1)
    g.Text = "White Eagle Cafe || By magic"
    wait(.1)
    g.Text = "White Eagle Cafe || By magico"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicof"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicofb"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicofbu"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicofbun"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicofbunny"
    wait(.5)
    g.Text = "White Eagle Cafe || By magicofbunn"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicofbun"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicofbu"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicofb"
    wait(.1)
    g.Text = "White Eagle Cafe || By magicof"
    wait(.1)
    g.Text = "White Eagle Cafe || By magico"
    wait(.1)
    g.Text = "White Eagle Cafe || By magic"
    wait(.1)
    g.Text = "White Eagle Cafe || By magi"
    wait(.1)
    g.Text = "White Eagle Cafe || By mag"
    wait(.1)
    g.Text = "White Eagle Cafe || By ma"
    wait(.1)
    g.Text = "White Eagle Cafe || By m"
    wait(.1)
    g.Text = "White Eagle Cafe || By "
end

1 answer

Log in to vote
0
Answered by 10 years ago
local msg = "White Eagle Cafe || By magicofbunny"
local msg2= "White Eagle Cafe || By guest8899088"
local msg3="White Eagle Cafe || By dreamy67"

while true do
wait()
for i = 1, msg:len() do
script.Parent.Text = msg:sub(1, i)
wait(0.1)
end


wait(5)
for i = 1, #msg do
script.Parent.Text = msg:sub(1, #msg-(i-1))
wait(0.1)
end



for i = 1, msg2:len() do
script.Parent.Text = msg2:sub(1, i)
wait(0.1)
end


wait(5)
for i = 1, #msg2 do
script.Parent.Text = msg2:sub(1, #msg2-(i-1))
wait(0.1)
end



for i = 1, msg3:len() do
script.Parent.Text = msg3:sub(1, i)
wait(0.1)
end

wait(5)
for i = 1, #msg3 do
script.Parent.Text = msg3:sub(1, #msg3-(i-1))
wait(0.1)
end


end

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 — 10y
0
Ah let me get that for you Tempestatem 884 — 10y
0
I thought I knew how, it doesn't work. I will try to look into it as much as possible Tempestatem 884 — 10y
0
Here I think it works Tempestatem 884 — 10y
0
Thanks! dreamy67 135 — 10y
Ad

Answer this question