Why won't this script work?
Please make your question title relevant to your question content. It should be a one-sentence summary in question form.
Here's a few things you should know before I tell you the script:
There's a script and a Gui, the script is called IntroGui and it's in ServerStorage, it acts as a local Gui (or is supposed too).
The Gui is named Intro inside of StarterGui, there's two scripts and here it is, but I can't get the intro Gui too end after it's finished.
IntroGui (The Script inside of ServerStorage)
1 | local Intro = game.StarterGui.IntroGui:Clone() |
2 | game.Players.PlayerAdded:connect( function (player) |
3 | player.CharacterAdded:wait() |
4 | Intro:Clone().Parent = player.PlayerGui |
Program (The script inside of the Gui)
01 | local Screen = script.Parent |
02 | local Config = Screen.Config |
03 | local Filter = Screen.Filter |
04 | local Content = Screen.Content |
06 | function FilterFade(start,finish,step) |
07 | for i = start,finish, 0.03 /step do |
08 | Filter.BackgroundTransparency = i |
11 | Filter.BackgroundTransparency = finish |
15 | for _,image in pairs (Content:GetChildren()) do image.Visible = false end |
16 | wait(Config.Padding_Time.Value) |
17 | for _,image in pairs (Content:GetChildren()) do |
19 | FilterFade( 0 , 1 ,Config.Fade_Time.Value) |
20 | wait(Config.Display_Time.Value) |
21 | FilterFade( 1 , 0 ,-Config.Fade_Time.Value) |
23 | wait(Config.Display_Time.Value) |
25 | wait(Config.Padding_Time.Value) |
26 | Screen.Background.Visible = false |
27 | FilterFade( 0 , 1 ,Config.Fade_Time.Value) |