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.