Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function scan(p)
- for i,v in pairs(p:GetChildren()) do
- if v:IsA("Sound") then
- print(tostring(v.Name..", "..v.SoundId))
- end
- scan(v)
- end
- end
- scan(game.ReplicatedStorage)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement