I don't know where I got this tune from, but it sounds kinda Jawsy.
Enjoy the music. Listen here on Strudel
///////////////////////////////////////////////////////////////////////////////////////////
// //
// Jaws in da Club //
// @license CC BY-NC-SA 4.0 https://creativecommons.org/licenses/by-nc-sa/4.0/ //
// @by Bitcoin Graffiti //
// @date Oct 22, 2025 //
// //
///////////////////////////////////////////////////////////////////////////////////////////
setcpm(126/4)
const bass = note("e [~ ~ <f eb> ~] ~ ".sub(24)).s("gm_synth_bass_2:6").color('purple').room(1)
const synth = note("<[a, c#, e] [g, b, d]>").s("gm_synth_brass_2:0").beat("0, <2.5 2>", 4).color('teal').room(3).slow(2).legato(.55)
const mel = note("e e4@3 d4!4 b g a ~!5".add("<0!5 12!2 5>")).s("gm_shamisen:5").slow(2).gain(2).lpf(2500).color("hotpink")
const mel2 = note("e e4@3 d4!4 b g a ~!5".add("<12!2 0!6>")).s("gm_shamisen:5").slow(2).gain(2).lpf(2500).color("hotpink")
//percussion
const sh = s("sh!8").almostNever(ply("2 | 4"))
const sd = s(" [~ sd]").bank("tr909")
const bd = s("bd [bd <bd ~> ~ <~ bd>]").bank("tr909")
const drums = stack(sh, sd, bd).color('gold')
arrange(
[4, stack(bass)],
[4, stack(bass, synth)],
[4, stack(bass, synth, mel)],
[8, stack(bass, synth, mel, drums)],
[4, stack(bass.fast(2), synth, mel, drums)],
[4, stack(bass.fast(4), synth, mel, drums)],
[2, stack(bass.fast("<8 16>"))],
[2, stack(synth)],
[4, stack(bass, mel2, drums, synth)],
[2, stack(mel, synth)],
[2, stack(mel)],
).pianoroll({labels:1})