Creating a Working Music Playlist?
Asked by
4 years ago Edited 4 years ago
First of all a missive thank you for taking some time out of your life viewing this query. Without further delay, let's begin!
So I'm currently developing a game and I want to add a music playlist to it. I tried to this myself and it works fine in Studio, but after I published it and tested it out it got kinda bugged. So let me show you what I actually did.
https://drive.google.com/file/d/1-V4UcEan9PsujDYaemzjs-Zkd0PG3Q4o/view?usp=sharing
*If the link doesn't work, kindly copy and paste it into your browser.
So the above file shows all the things related to sound and music. You may also have noticed there is a script in there. The script is
02 | script.Parent:WaitForChild( "CoffinDance" ):Play() |
03 | wait(script.Parent:WaitForChild( "CoffinDance" ).TimeLength) |
04 | script.Parent:WaitForChild( "DoubleBox" ):Play() |
05 | wait(script.Parent:WaitForChild( "DoubleBox" ).TimeLength) |
06 | script.Parent:WaitForChild( "OkBoomer" ):Play() |
07 | wait(script.Parent:WaitForChild( "OkBoomer" ).TimeLength) |
08 | script.Parent:WaitForChild( "RainingTacos" ):Play() |
09 | wait(script.Parent:WaitForChild( "RainingTacos" ).TimeLength) |
I just don't know why it's running fine in Studio, but messing up when I publish the game.