SupremoSG

play all sounds

Jun 9th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function GetSoundsAP(s)
  2. for i,v in pairs(s:GetChildren()) do
  3. if (v ~= nil) then
  4. if (v:IsA("Sound")) then
  5. v.Playing = true
  6. else
  7. GetSoundsAP(v)
  8. end
  9. end
  10. end
  11. end
  12. GetSoundsAP(workspace)
Add Comment
Please, Sign In to add comment