The Man with the Golden Gun song sliced down to its core elements: root chord (i - Bm), subdominant (iv - Em) and dominant (v - F#). Then mixed with the beat from previous bossa nova.
Listen here on strudel.
//////////////////////////////////////////////////////////////////////////////////////////
// //
// The Man with the Golden Gun //
// @license CC BY-NC-SA 4.0 https://creativecommons.org/licenses/by-nc-sa/4.0/ //
// @by Bitcoin Graffiti //
// @date Nov 12, 2025 //
// //
//////////////////////////////////////////////////////////////////////////////////////////
setcpm(160/8)
// harmonic
const synth = chord("<Bm Bm7 [Em7 Em] [F# F#7]>").voicing().s("gm_epiano2:6").legato(.7).lpf(1200).room(1).beat("1, 3, 4, 7, 8, 10, <13!3 ->, <15!3 ->", 16).color('teal')
// melody
const mel0 = note("[b a b a [b a] e] [a g a g [g a] c] [b!3 g e g e d] [e!3 eb e f]").s("pulse").slow(2).gain(1.2).color('purple')
//percussion
const bd = s("bd!4").bank("tr707")
const sd = s("[~ sd]!2").bank('tr626')
const hh = s("sh!16").legato(.3).gain(.6).room(.8).color('gold')
const rm = s("rim:0").bank("tr626").beat("0, 3, 6, 10, 13", 16).gain(2).color('gold')
const drums = stack(bd, sd, hh, rm).color('gold')
arrange(
[2, stack(drums)],
[8, stack(synth, drums)]
).pianoroll({labels:1})