Advertisement
tyridge77

Untitled

Jul 22nd, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. function s(p)
  2. for _,v in pairs(p:GetChildren()) do
  3. pcall(function()
  4. if v:isA("Sound") then
  5. print(v:GetFullName()) v:Stop();
  6. else
  7. s(v);
  8. end
  9. end)
  10. end
  11. end
  12. while wait() do
  13. s(game);
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement