Advertisement
SubScripts

Untitled

Apr 18th, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. oofID = 12222242
  2. oof = Instance.new("Sound", script.Parent)
  3. oof.Name = "oof"
  4. oof.Volume = 10
  5. oof.SoundId = "rbxassetid://"..oofID
  6.  
  7. function oof(pitch)
  8. script.Parent.oof.PlaybackSpeed = pitch
  9. script.Parent.oof:Play()
  10. end
  11.  
  12. function megaOOF()
  13. oof(2)
  14. wait(.4)
  15. oof(1)
  16. wait(.4)
  17. oof(.7)
  18. wait(.4)
  19. oof(1)
  20. end
  21.  
  22. while wait(5) do
  23. megaOOF()
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement