|
| 22 May 2014 08:50 AM |
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.02/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.BackgroundVisible = false FilterFade(0,1,Config.Fade_Time.Value)
Screen:Remove()
I want to know how to lengthing the time you see each frame because when i go to the game its done in less than a second. |
|
|
| Report Abuse |
|
|
| 22 May 2014 08:51 AM |
| No, I did not make this script nor do I take any credit for it. |
|
|
| Report Abuse |
|
|
| 22 May 2014 08:55 AM |
| This is the script I used http://www.roblox.com/Intro-Gui-New-One-MAY-WORK-OR-MAY-NOT-item?id=56930464 |
|
|
| Report Abuse |
|