How do I successfully play sounds in a part?
Asked by
4 years ago Edited 4 years ago
Hey, so I am trying to make this code emit a random sound from a part. I also want it to play another sound after the other is done playing. These sounds are children of the part. I wrote this script but it's not playing the sound, I guess it sees 'randomItem' as a number.
01 | local items = script.Parent:GetChildren() |
03 | for _, v in ipairs (script.Parent:GetChildren()) do |
04 | if v.ClassName = = "Sound" then |
06 | local randomItem = math.random(#items) |
08 | randomItem.Playing = true |
Are there any other methods of doing this better? Please let me know if there are, thanks!