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

Animated Text + Visible Help. Can not get the Gui to disappear Help?

Asked by
Aqu_ia 39
5 years ago

I am trying to get rid of the text label and my frame. I have an animated text script along with a script that could possibly make it go, but it doesn't work.

Script:

local Text1 = "Welcome to Ancient Roman Simulator!"
local Text2 = "Developers: Aquarius_Raverus - Scripter and      Coder | MaciBoss1950 - Animator and Owner | crogamer1610 - Co-Owner"

local Text3 = "Note from the developers: This game is currently a work in progress. Report any bugs by joining the discord in the description."

local Text4 = "We hope you enjoy the game!"



for i = 1, #Text1 do

script.Parent.TextLabel.Text = string.sub(Text1, 0.5, i)

wait()

end

wait(1)



for i = 1, #Text2 do

script.Parent.TextLabel.Text = string.sub(Text2, 0.5, i)

wait()

end

wait(1)

for i = 1, #Text3 do
script.Parent.TextLabel.Text = string.sub(Text3, 0.5, i)
wait()
end
    wait(1)
for i = 1, #Text4 do
script.Parent.TextLabel.Text = string.sub(Text4, 0.5, i)
end
wait()
local textlabel = game.StarterGui.loadingscreen.Frame.TextLabel
textlabel.Visible = false
wait(2)
for loop = 1,10 do
script.Parent.BackgroundTransparency = loop/10
game:GetService("RunService").Stepped:Wait()
end 

Answer this question