I am not very experienced with i,v pairs but i want to be able to start using them. It makes scripting easier and more organized. This is what i tried and it doesn't work, can someone tell me exactly what I'm doing wrong
01 | songs = { "rbxassetid://236764932" , "rbxassetid://145154345" , "rbxassetid://202376551" } |
02 |
03 | local folder = Instance.new( "Folder" ,player.PlayerGui) |
04 |
05 | for i,v in pairs (songs) do |
06 | print (v) |
07 | song = Instance.new( "Sound" ) |
08 | song.Parent = folder |
09 | song.Volume = 1 |
10 | song.SoundId = v |
11 | song:Play() |
12 | wait(song.TimeLength) |
13 | song:Destroy() |
14 | wait() |
15 | end |
plz help me................................
There are two issues with your script. The first is you never defined what/who player
was. Secondly, you can not call on song.TimeLength
. as it returns 0. To test this, just do wait(song.TimeLegth), it returns as 0. Here is the fixed script that plays the music in the folder.
01 | game.Players.PlayerAdded:connect( function (player) |
02 | local songs = { "rbxassetid://236764932" , "rbxassetid://145154345" , "rbxassetid://202376551" } |
03 | local folder = Instance.new( "Folder" , player.PlayerGui) |
04 |
05 | for i,v in pairs (songs) do |
06 | wait() |
07 | print (v) |
08 | local song = Instance.new( "Sound" , folder) |
09 | song.SoundId = v |
10 | song.Volume = 1 |
11 | song:Play() |
12 | wait( 90 ) --Because you can't wait the TimeLength, you just have to wait 90 seconds (the Length of the first song played) |
13 | song:Destroy() |
14 | wait() |
15 | end |
16 | end ) |