Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.23 KB | None | 0 0
  1. live_loop :melody do
  2.   oct = [-1, 1, 2].choose * 12
  3.   with_fx :reverb, amp: 2 do
  4.     16.times do
  5.       n = (scale 0, :minor_pentatonic).choose
  6.       sample :misc_burp, rpitch: n + 4 + oct
  7.       sleep 0.125
  8.     end
  9.   end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement