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

Why won't this script work?

Asked by 10 years ago

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)

1local Intro = game.StarterGui.IntroGui:Clone()
2game.Players.PlayerAdded:connect(function(player)
3    player.CharacterAdded:wait()
4    Intro:Clone().Parent = player.PlayerGui
5end)

Program (The script inside of the Gui)

01local Screen = script.Parent
02local Config = Screen.Config
03local Filter = Screen.Filter
04local Content = Screen.Content
05 
06function FilterFade(start,finish,step)
07    for i = start,finish,0.03/step do
08        Filter.BackgroundTransparency = i
09        wait()
10    end
11    Filter.BackgroundTransparency = finish
12end
13 
14Filter.Visible = true
15for _,image in pairs(Content:GetChildren()) do image.Visible = false end
View all 29 lines...
0
Bump? SoccerPhysics 20 — 10y

Answer this question