- MusicHub - https://musichub.greensparkstudio.com/ -

Moment Of Truth by FM Static

[Intro]

C Am F G   x2
 

[Verse]

C      Am              F           G

Here we are, in the best years of our lives.

C                      Am

With no way of knowing, when the

                     F

whee’ll stop spinning cause we don’t

                 G

know where we’re going

    C       Am           F              G

and here we are, on the best day of our lives.

            C                        Am

And it’s a go, lets make it last, so cheers you

                        F                      G

all to that, ’cause this moment’s never comin’ back

 

[Pre-Chorus]

C                           F

I used to know her brother, but I never

                  Am

knew I loved her, ’till the day she laid her

        G           C

eyes on me. Now I’m jumpin’ up and down,

F                          Am

she’s the only one around, and she means

                     G

every little thing to me

 

[Chorus]

              C             Am

I’ve got your picture in my wallet, and your

F                G             C

Phone number to call it, and I miss you more,

Am          F          G

Whenever I think about you.I’ve got

      C               Am

your mixed tape in my Walkman, been so

F                     G                C

long since we’ve been talkin’ and in a few

           Am                  F           G

more days, we’ll both hook up, forever and ever

 

[Verse]

    C      Am           F

And here I am, on the west coast of

G            C             Am             F

America and I’ve been tryin’ to think for weeks of

            G            C

all the ways to ask you, And now

     Am                 F

I’ve brought you to the place, Where I’ve

      G               C                 Am

poured my heart out, a million times, for a million

         F         G

reasons, To offer it to you

 

[Pre-Chorus]

C                           F

I used to know her brother, but I never

                  Am

knew I loved her, ’till the day she laid her

        G           C

eyes on me. Now I’m jumpin’ up and down,

F                          Am

she’s the only one around, and she means

                     G

every little thing to me

 

[Chorus]

              C             Am

I’ve got your picture in my wallet, and your

F                G             C

Phone number to call it, and I miss you more,

Am          F          G

Whenever I think about you,. I’ve got

      C               Am

your mixed tape in my Walkman, been so

F                     G                C

long since we’ve been talkin’ and in a few

           Am                  F           G

more days, we’ll both hook up, forever and ever

 

[Pre-Chorus]

C                           F

I used to know her brother, but I never

                  Am

knew I loved her, ’till the day she laid her

        G           C

eyes on me. Now I’m jumpin’ up and down,

F                          Am

she’s the only one around, and she means

                     G

every little thing to me

 

[Chorus]

              C             Am

I’ve got your picture in my wallet, and your

F                G             C

Phone number to call it, and I miss you more,

Am          F          G

Whenever I think about you,. I’ve got

      C               Am

your mixed tape in my Walkman, been so

F                     G                C

long since we’ve been talkin’ and in a few

           Am                  F           G

more days, we’ll both hook up, forever and ever

 

Video(s)

Guitar Chords Tutorial with Lyrics - Doc OTEP Studio

Guitar Cover With Lyrics & Chords - Twofacedman X

.auto-scroll { position: fixed; left: 20px; top: 60%; transform: translateX(-60%); z-index: 1000; width: 35px; text-align:center; } .auto-scroll button { font-size: 14px; padding:0px; margin-bottom:5px; border: none; background-color: #992600; border-radius: 50px; cursor: pointer; box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; transition: all 0.3s ease; width: 30px; height: 30px; } .auto-scroll button.active { background-color: #2196F3; color: #fff; } .auto-scroll button i { font-size: 18px; display: block; } .auto-scroll button i.fa-pause-circle { font-size: 18px; }
var scrollInterval; var currentSpeed = 1; function startScroll(speed) { var scrollSpeed = 1; if (speed === 2) { scrollSpeed = 2; } else if (speed === 3) { scrollSpeed = 3; } currentSpeed = speed; document.querySelectorAll(".auto-scroll button").forEach(function(btn) { btn.classList.remove("active"); }); document.getElementById("speed-" + speed + "x").classList.add("active"); scrollInterval = setInterval(function() { window.scrollBy(0, scrollSpeed); if ((window.innerHeight + window.pageYOffset) >= document.body.offsetHeight) { stopScroll(); resetScroll(); } }, 50); } function stopScroll() { clearInterval(scrollInterval); } function resetScroll() { document.getElementById("start-stop").innerHTML = ''; document.querySelectorAll(".auto-scroll button:not(#start-stop)").forEach(function(btn) { btn.setAttribute("disabled", true); btn.classList.remove("active"); }); } document.getElementById("start-stop").addEventListener("click", function() { if (this.innerHTML === '') { startScroll(1); this.innerHTML = ''; document.querySelectorAll(".auto-scroll button:not(#start-stop)").forEach(function(btn) { btn.removeAttribute("disabled"); }); } else { stopScroll(); resetScroll(); } }); document.getElementById("speed-1x").addEventListener("click", function() { if (currentSpeed !== 1) { stopScroll(); startScroll(1); } }); document.getElementById("speed-2x").addEventListener("click", function() { if (currentSpeed !== 2) { stopScroll(); startScroll(2); } }); document.getElementById("speed-3x").addEventListener("click", function() { if (currentSpeed !== 3) { stopScroll(); startScroll(3); } });