Advertisement
InTesting

Simple song grabber v1

May 26th, 2019
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. game.DescendantAdded:Connect(function(de)
  2.     if pcall(de:IsA'Sound')then
  3.         local sid = de.SoundId
  4.         if string.find(sid,'id')~=nil then
  5.             print(sid)
  6.         end
  7.     end
  8. end)
  9. -- message chl for problems
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement