The screenshot helps understand what I’m trying to do
How can I make it so that when the “FTB” Frame GUI (fade to black) transparency reaches 0, it disables the “Start+Logo” GUI?
I already have made a script where when you press a button on the home page, it makes the screen fade to black for 3 seconds and then unfade, and I am trying to disable the logo and the text that was previously on the screen before the screen fades back to normal.
How can I do this?
Any answers will help (:
local ScreenGui = script.Parent
local FTB = script.Parent.FTB
FTB:GetPropertyChangedSignal("BackgroundTransparency"):Connect(function()
if FTB.BackgroundTransparency == 0 then
ScreenGui.Enabled = false
end
end)