How can I make a Frame's Features disable a GUI?

Screen Shot 2021-12-21 at 3.12.59 PM
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 (:

You can do something like that:

local ScreenGui = script.Parent
local FTB = script.Parent.FTB
FTB:GetPropertyChangedSignal("BackgroundTransparency"):Connect(function()
	if FTB.BackgroundTransparency == 0 then
		ScreenGui.Enabled = false
	end
end)

Alright, I will be sure to try this. I will update you on how it works!

Works - Thank you very much for the help!

1 Like