How can I disable one LocalScript/enable another in StarterPack via the transparency of a frame in Starter GUI?

Screen Shot 2021-12-21 at 5.08.44 PM

What I am trying to do is enable the “CameraPlay” LocalScript and disable the “CameraMain” LocalScript when the “FTB” (fade to black) frame in starter Gui reaches 0 transparency. How can I do this? I’ve been trying but I can’t seem to figure out how I can make the script go across multiple services.
Any help is much appreciated!

I’d say try this:

local Frame = script.Parent -- or where ever it is

if Frame.Transparency == 0 then
     game.StarterPack.Cameras.CameraMain.Disabled = false/true
end)

This may work, change what ever you need to change.