When I tried Make 2 audios play at the same time, By using this:
1 | Game.Workspace.Sound:Play() |
2 | then |
3 | Game.Workspace.Sound:Play() |
4 |
5 | end |
It didn't work. Please Reply back.
Remove the "then" statement.
This is my own way of playing two Audios at once. :P
1 | wait( 0 ) |
2 | c = workspace:children() |
3 | for i = 1 ,#c do |
4 | if c [ i ] .className = = "Sound" then |
5 | if c [ i ] .Name = = "NAME" or c [ i ] .Name = = "NAME" then |
6 | c [ i ] :Play() |
7 | end end end |