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

"Visible" Property Help?

Asked by 9 years ago

My gui wont go invisible, here's my script:

wait(1) -- 1
script.Parent.GameLoading.Text = "Loading."
wait(1) -- 2
script.Parent.GameLoading.Text = "Loading.."
wait(1) -- 3
script.Parent.GameLoading.Text = "Loading..."
wait(1) -- 4
script.Parent.GameLoading.Text = "Loading"
wait(1) -- 5
script.Parent.GameLoading.Text = "Loading."
wait(1) -- 6
script.Parent.GameLoading.Text = "Loading.."
wait(1) -- 7
script.Parent.GameLoading.Text = "Loading..."
wait(2) -- 9
script.Parent.GameLoading.Text = "Loading Complete!"
script.Parent.GameLoadingSubMsg = "Enjoy the game!"
wait(8)
script.Parent.GameLoading.Visible = false
script.Parent.GameLoadingSubMsg.Visible = false

1 answer

Log in to vote
0
Answered by 9 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.

Try this:

wait(1) -- 1
script.Parent.GameLoading.Text = "Loading."
wait(1) -- 2
script.Parent.GameLoading.Text = "Loading.."
wait(1) -- 3
script.Parent.GameLoading.Text = "Loading..."
wait(1) -- 4
script.Parent.GameLoading.Text = "Loading"
wait(1) -- 5
script.Parent.GameLoading.Text = "Loading."
wait(1) -- 6
script.Parent.GameLoading.Text = "Loading.."
wait(1) -- 7
script.Parent.GameLoading.Text = "Loading..."
wait(2) -- 9
script.Parent.GameLoading.Text = "Loading Complete!"
script.Parent.GameLoadingSubMsg.Text = "Enjoy the game!"
wait(8)
script.Parent.GameLoading.Visible = false
script.Parent.GameLoadingSubMsg.Visible = false
  • This is just a guess.... But it should work!
0
It didn't look like you changed anything, but it worked! Thanks abunch! And, do you mind pointing out what you changed? SchonATL 15 — 9y
0
script.Parent.GameLoadingSubMsg.Text = "Enjoy the game!", You never had a .Text NovusTheory 133 — 9y
0
Ohh, really? I feel stupid. SchonATL 15 — 9y
Ad

Answer this question