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