Advertisement
anphu04

ROBLOX Audio Steal Script

Mar 28th, 2018
2,809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function scan(p)
  2. for i,v in pairs(p:GetChildren()) do
  3. if v:IsA("Sound") then
  4. print(tostring(v.Name..", "..v.SoundId))
  5. end
  6. scan(v)
  7. end
  8. end
  9.  
  10. scan(game.ReplicatedStorage)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement