Advertisement
KHSora455

Sound Player

Jul 21st, 2015
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. script.ChildAdded:connect(function(childz)
  2. wait()
  3. if childz.className == "Sound" then
  4. local s = Instance.new("Sound", workspace)
  5. s.Name = "Soundzor"
  6. s.SoundId = childz.265404026
  7. s.Pitch = childz.1
  8. s.Volume = childz.5
  9. s.PlayOnRemove = false
  10. s:Play()
  11. game:GetService("Debris"):AddItem(s, 3)
  12. end
  13. childz:remove()
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement