Thanks for trying it! It’s a mix of different things i learned these last weeks with the Sam’s tutorials and these from @mrbombmusic ! Thanks to them too…There are probably some lines to improve so if you see something bad, I’ll read it with attention
with_fx :reverb, room: 0.9 do
live_loop :chords do
use_synth :piano
play_chord [:e4,:g4, :b4, :cs4,:fs5,:gs5,:as5],release: 8, pan: -1, amp: 1
sleep 4
end
live_loop :chords2 do
use_synth :bass_foundation
play_chord [:e2,:g2,:c3,:d4],release: 0.2, pan: rrand(-0.9,0.9), amp: 0.8
sleep 0.5
end
live_loop :mel do
sample :ambi_choir, onset: pick, rpitch: :e3, amp: 0.9
sleep 0.25
end
end
live_loop :bass1 do
with_fx :reverb, room: 0.9 do
with_fx :slicer, phase: 0.125 do
use_synth :bass_foundation
play 36,attack: 0,amp: 4, pan: rrand(-0.9,0.9)
sleep 8
end
end
end
with_fx :lpf, cutoff: 100 do
live_loop :basss2 do
use_synth :pluck
play (octs (knit :e1, 4, :g1, 4, :a1, 4, :b1, 4).tick, 2), amp: 2, release: 0.2
sleep 0.25
end
end
live_loop :arp do
with_fx :slicer, phase: 0.13 do
if one_in(2)
use_synth :pretty_bell
play chord(:e4, :m13).choose, amp: 0.4,pan: 1
sleep 1
else
use_synth :prophet if one_in(2)
play chord(:e4, :m11).choose, amp: 0.4, pan: -1
sleep 1
end
end
end
live_loop :ryth1 do
sample :drum_heavy_kick,amp: 3
sleep 1
end