Pisano
|
  |
| Joined: 25 Dec 2010 |
| Total Posts: 251 |
|
|
| 20 Aug 2011 01:52 PM |
The introduction gui doesn't disappear after it's finished!! This is the script: local Screen = script.Parent local Config = Screen.Config local Filter = Screen.Filter local Content = Screen.Content
function FilterFade(start,finish,step) for i = start,finish,0.03/step do Filter.BackgroundTransparency = i wait() end Filter.BackgroundTransparency = finish end
Filter.Visible = true for _,image in pairs(Content:GetChildren()) do image.Visible = false end wait(Config.Padding_Time.Value) for _,image in pairs(Content:GetChildren()) do image.Visible = true FilterFade(0,1,Config.Fade_Time.Value) wait(Config.Display_Time.Value) FilterFade(1,0,-Config.Fade_Time.Value) image.Visible = false wait(Config.Display_Time.Value) end wait(Config.Padding_Time.Value) Screen.Background.Visible = false FilterFade(0,1,Config.Fade_Time.Value)
Screen:Remove()
Notice how there's a "Screen:Remove()" at the end. Is that written correctly? Is there something missing? Thanks for any reply in advance |
|
|
| Report Abuse |
|