I'm trying to get my music to change and my gui change but it doesn't change. Here is the script:
abcd = game.StarterGui.ScreenGui.Frame while true do wait() script.a:Play() abcd.a.TextTransparency = 0 wait(101.041) abcd.a.TextTransparency = 1 wait(1) script.b:Play() abcd.b.TextTransparency = 0 wait(59.9239999999999) abcd.b.TextTransparency = 1 wait(1) script.c:Play() abcd.c.TextTransparency = 0 wait(73.76900000000005) abcd.c.TextTransparency = 1 wait(1) end
Anything wrong?
The GUI isn't changing because your configuring the GUI in StarterGui. People would basically have to reset to see the change in startergui. You need to configure it in the player's PlayerGui. You could just do script.Parent (Assuming its directly in the ScreenGui) Never EVER configure GUI's in StarterGui. You should always configure the GUI from a player's playergui.
Hope this helped! Give this an upvote and accept the answer if it helped!