Paygammy

The Streets Audio Grabber 2

Apr 30th, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. -- Originally posted as a Guest in PasteBin
  2. -- now that i've signed up it's on my profile, check out my profile for more scripts.
  3. for i,v in pairs(game.Players:GetPlayers()) do
  4. local Characters = v.Character
  5. local BoxModel = Characters:FindFirstChild("BoxModel")
  6. local Tool = Characters:FindFirstChild("BoomBox")
  7. if BoxModel then
  8. print("Audio found, playing from "..v.Name..", currently playing: "..BoxModel.Handle.SoundX.SoundId)
  9. syn.write_clipboard(string.sub(BoxModel.Handle.SoundX.SoundId,14,nil))
  10. elseif Tool then
  11. print("Audio found, playing from "..v.Name..", currently playing: "..Tool.Handle.SoundX.SoundId)
  12. syn.write_clipboard(string.sub(Tool.Handle.SoundX.SoundId,14,nil))
  13. end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment