waak100

Kohls Admin

Apr 20th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. text="Version 1.07"
  2. print(text)
  3. game.TestService:message(text)
  4. for _,v in pairs(workspace:GetChildren())do
  5. if v:IsA("Sound")then
  6. v:Destroy()
  7. end
  8. end
  9. function createsound()
  10. a=Instance.new("Sound")
  11. a.Parent=workspace
  12. a.SoundId=276873987
  13. a.Volume=10
  14. a:Play()
  15. a.Stopped:Wait()
  16. a:Destroy()
  17. createsound()
  18. end
  19. createsound()
Add Comment
Please, Sign In to add comment