-- Radio Power On local song1 = game.Workspace.Radio.Song1 local song2 = game.Workspace.Radio.Song2 local radioPower = script.Parent local radioPowerOff = script.Parent.Parent.RadioPowerOff local radioChangeSong = script.Parent.Parent.ChangeSong script.Parent.MouseButton1Click:Connect(function() radioPower.Visible = false radioPowerOff.Visible = true radioChangeSong = true if song1:Play() then song2:Play() else song1:Play() end end)
How come the GUI for "Change Song" won't become Visible when radioPowerOff.Visible is set to true? I have other scripts that should make this work. I am so close and this is the last step to me finishing it. These are BillBoardGUIs and they work perfectly fine, just Change Song will not become visible when the Radio is powered on.. Thanks in Advance!