Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function weirdify(sound)
- coroutine.resume(coroutine.create(function()
- while wait() do
- for i=1,math.floor(15/3) do
- sound.Pitch = sound.Pitch + 0.3
- wait()
- end
- wait()
- for i=1,math.floor(15/3) do
- sound.Pitch = sound.Pitch - 0.3
- wait()
- end
- end
- end))
- end
- for i,v in pairs(workspace:GetDescendants()) do
- if v:IsA("Sound") then
- weirdify(v)
- end
- end
Add Comment
Please, Sign In to add comment