for i = 1,4,1 do
print("Text is changing")
wait(.2)
AddLoadScreen.Container.Loading.Text = "Loading."
wait(.2)
AddLoadScreen.Container.Loading.Text = "Loading.."
wait(.2)
AddLoadScreen.Container.Loading.Text = "Loading..."
wait(.2)
wait(1)
end
wait(5)
Fade.FadeOut(AddLoadScreen.Container.GameText, .5)
Fade.FadeOut(AddLoadScreen.Container.Loading, .5)
Fade.FadeOut(AddLoadScreen.Container.Background, .5)
AddLoadScreen.Container.GameText.Visible = false
AddLoadScreen.Container.Loading.Visible = false
AddLoadScreen.Container.Background.Visible = false
This is what I got so for a loading screen pops up then I make it invisible. Then I want to make it where you click anywhere to play than everything goes invisible and the player allowed to enter the game. How would I be able to do this?