Advertisement
haloguy51

Pitch script

Jul 23rd, 2015
610
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. s = Instance.new("Sound",game.Players.haloguy51.Character.Head)
  2. s.SoundId = "rbxassetid://238770234"
  3. s.Looped = true
  4. s.Pitch = 1
  5. s:Play()
  6. while true do
  7. for i = 1,20 do
  8. s.Pitch = s.Pitch - 0.02
  9. wait()
  10. end
  11. for i = 1,20 do
  12. s.Pitch = s.Pitch + 0.02
  13. wait()
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement