Alright so, I'm trying to make music for my loading screen, but the music keeps on repeating its previous sound. Also, when the loading screen is done, the music gets destroyed.
I've tried everything such as:
script.Parent.Parent.Parent["Star Wars - The Force Theme [ Remix ]"]:Destroy()
and...
script.Parent.Parent.Parent["Star Wars - The Force Theme [ Remix ]"]:Play()
but it won't work. Help!
Sound instances have a looped
property, set it to false like this
script.Parent.Parent.Parent["Star Wars - The Force Theme [ Remix ]"].Looped = false script.Parent.Parent.Parent["Star Wars - The Force Theme [ Remix ]"]:Play()