Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Originally posted as a Guest in PasteBin
- -- now that i've signed up it's on my profile, check out my profile for more scripts.
- for i,v in pairs(game.Players:GetPlayers()) do
- local Characters = v.Character
- local BoxModel = Characters:FindFirstChild("BoxModel")
- local Tool = Characters:FindFirstChild("BoomBox")
- if BoxModel then
- print("Audio found, playing from "..v.Name..", currently playing: "..BoxModel.Handle.SoundX.SoundId)
- syn.write_clipboard(string.sub(BoxModel.Handle.SoundX.SoundId,14,nil))
- elseif Tool then
- print("Audio found, playing from "..v.Name..", currently playing: "..Tool.Handle.SoundX.SoundId)
- syn.write_clipboard(string.sub(Tool.Handle.SoundX.SoundId,14,nil))
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment