- published: 05 Jul 2018
- views: 416104277
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Bad Boy may refer to:
"Bad Boy" is a song composed and recorded by Larry Williams. The song was recorded at Radio Recorders in Hollywood, California on August 14, 1958. The musicians on the recording included Williams on vocals and piano, Earl Palmer on drums, René Hall on guitar, Jewell Grant on baritone sax, Plas Johnson on tenor sax, and Ted Brinson on bass. The record did not break the Top 40 charts in the United States.
"She Said Yeah" was originally the B-side of the Larry Williams single, and has been covered by the Rolling Stones and the Animals, amongst others. The Beatles loved the song and almost certainly performed it on stage and fully intended to record it. Paul McCartney in the liner notes to his album Run Devil Run said "Me and John [Lennon] particularly loved Larry Williams...Bony Moronie...John did Slow Down...I was always going to do She Said Yeah". Roy Young (who was invited to join The Beatles) recorded a cover version in 1959. Paul McCartney finally recorded it in 1999.
"Bad Boy" is a song by The Adicts released in May 1983. It was released as a standard black vinyl 7-inch single and also as a 7-inch picture disc with one additional track. The single was the band's biggest hit, reaching number 75 on the UK Singles Chart and number four on the UK Independent Chart. This brought major label interest to the band, which led to their next single being released by the Warner imprint Sire Records. "Bad Boy" was included on the band's next studio album Smart Alex, while both b-sides originally appeared on Sound of Music.
Shaquan Ian Lewis, also known as Skillz (formerly Mad Skillz), is an American rapper known for his acclaimed 1996 album From Where???, a reference to his origins in Virginia, not the stereotypical New York City or Los Angeles rapper, and he's also known for his yearly "Rap Ups," which he has done annually since 2002 (except in 2013).
Skillz was born in Detroit, Michigan, and after spending his early childhood in Fayetteville, North Carolina he then moved to Richmond, Virginia at a young age. He credits Run DMC for getting him involved in hip hop as a child. He fell in love with the culture and immediately began to practice all four elements religiously. He first made a name for himself by finishing in second place (Losing to MC Supernatural) in a national freestyle competition, which eventually resulted in a recording contract with Atlantic Records. At this time he went by the stage name Mad Skillz rather than just Skillz. Mad Skillz' Atlantic debut album, From Where???, and its single, "The Nod Factor", were released in 1996, but neither received much commercial or critical attention. The album's title was a reference to the regionalism in hip-hop, and at the time the state of Virginia did not have a large hip-hop scene. In the late-1990s more of a Virginia scene emerged, and he allied himself with fellow Virginia natives Missy Elliott, Timbaland, and The Neptunes. He made appearances on Timbaland's albums Tim's Bio in 1998, and Indecent Proposal in 2001; Timbaland made plans to sign Skillz to the Blackhand label he was developing; however, this label failed to materialize. He along with Danja Mowf, Lonnie B, and Kalonji The Immortal, members of Skillz' Supafriendz collective, also appeared on a remix of Aaliyah's hit single "Are You That Somebody" in 1998.
Marwa Loud - "Bad Boy" Check out "Bad Boy" on TikTok and make your move : https://marwaloud.lnk.to/tiktokbadboyYo Listen to the track here: https://marwaloud.lnk.to/badboyYo Directed by Charly Clodion Follow Marwa Loud on Socials: Facebook: https://www.facebook.com/Marwaloud/ Instagram: https://www.instagram.com/marwa_loud/ Snapchat : MarwaLoud 2018 Purple Money distribué par Because Music #MarwaLoud #BadBoy ↓ LYRICS ↓ On n’a pas, pas d’bol T’as que des bad girls ouais t’es qu’un bad boy Le but d’une vie c’est d’faire d’la monnaie C’est pas ton équipe ils t’ont racolé Toutes tes copines ouais on les connaît À force de zoner ouais on les a rodées J’suis abattue je perds le fil Et t’as pas un euro, fais pas de deal Et t’as pas un kilo fais pas le dealer J’prends pas ça au sérieux O...
Lyrical Lemonade Presents: Juice WRLD - Bad Boy featuring Young Thug (Official Music Video) In Loving Memory of Jarad Higgins Directed & Edited by: Cole Bennett Song Produced by Pi'erre Bourne VFX: Cole Bennett & Nocturnal FX Colorist: Loren White & Cole Bennett Director of Photography: Taylor Randall Steadicam: Renard Cheren 1st AC: Olivia Aquilina 2nd AC: Paige Hochstatter Gaffer: Christian Meijia Key Grip: Salvador Torrison Grip: Jonathan Lopez Grip: Alex Halsted Electric: Lars Moede Set Build: DreDayDesignz Art Asst: Conrad Edmonds Key Makeup: Michelle Echevarria 1st AD: Bernard Niyonzima PA: Anthony Alvarado PA: George Hammond PA: Blayne Parker PA: Jake Wilson PA: Lance Rowland PA: Faisal A.Omar Production Company: Lyrical Lemonade Executive Producer: Cole B...
Visualiser by Lasmid performing "BadBoy" Stream now on all stores https://onerpm.link/Lasmid-Bad-Boy Follow Lasmid https://www.facebook.com/lasmidofficial1?mibextid=LQQJ4d https://instagram.com/lasmidofficial1 https://twitter.com/lasmidofficial?s=21&t=OCb12_MEUuhcbVMm9d038A #Lasmid #Badboy
♫ Marwa Loud - Bad Boy Stream/Download: https://marwaloud.lnk.to/badboyYo • Marwa Loud • • https://www.facebook.com/Marwaloud/ • https://www.instagram.com/marwa_loud/ (Lyrics): [Intro] On n’a pas, pas d’bol T’as que des bad girls ouais t’es qu’un bad boy [Couplet 1] Le but d’une vie c’est d’faire d’la monnaie C’est pas ton équipe ils t’ont racolé Toutes tes copines ouais on les connaît À force de zoner ouais on les a rodées J’suis abattue je perds le fil Et t’as pas un euro, fais pas de deal Et t’as pas un kilo fais pas le dealer J’prends pas ça au sérieux Ouais ça fait des leurres, eh, eh La go se dandine, eh, eh, elle veut tous vos num’, eh, eh Pourtant c’est qu’une gamine Mais comme elle s’ennuie ce monde la fascine [Pré-refrain] Moi j’voulais m’en aller (m'en aller) Et ce, de...
5TH MINI ALBUM [ALIVE] Available on iTunes @ http://smarturl.it/BigbangAlive #BIGBANG #빅뱅 #BADBOY #ALIVE More about BIGBANG @ http://ygbigbang.com/ http://www.facebook.com/bigbang http://www.youtube.com/BIGBANG http://iTunes.com/BIGBANG http://sptfy.com/BIGBANG http://weibo.com/bigbangasia http://twitter.com/ygent_official
Music video by Bad Boy Chiller Crew, French The Kid, MIST performing BMW (French The Kid x MIST x Bugsey Malone Remix - Official Video).(P) 2022 Relentless Records and Sony Music Entertainment UK Limited under exclusive license from House Anxiety
➜ Instagram: https://instagram.com/tungevaag ➜ Facebook: https://facebook.com/tungevaag ➜ Spotify: https://spoti.fi/2Zc2dOS Director: Henry Lipatov Producer: Nika Finch Starring: Tungevaag, Raaban, Marusya Fox, Emily England, Henry Lipatov, Jason Cho, Johny D., Bogdan Yansen Director of Photography: Artur Gubin FameCubePost VFX lead: Ivan Druzhinin ColorCorrection: Nikita Mamaev VFX Supervizer: Henry Lipatov Makeup Artist: Marusya Fox BTS: Maksym Chervinskyi PA: Hector Ricardo Kron AC: Bogdan Yansen C.Department: Sergii Levchenko L.Department: Katya Gorobets
Alexandra Burke - Bad Boys (ft. Flo Rida) (Official Video) Stream Alexandra Burke here: https://AlexandraBurke.lnk.to/OvercomeAY Subscribe to Alexandra Burke's YouTube Channel: https://AlexandraBurke.lnk.to/YouTubeAY WATCH HALLELUJAH MUSIC VIDEO ► https://AlexandraBurke.lnk.to/VideosAY/youtube WATCH ALL NIGHT LONG MUSIC VIDEO ► https://AlexandraBurke.lnk.to/VideosAY/youtube3 WATCH START WITHOUT YOU MUSIC VIDEO ► https://AlexandraBurke.lnk.to/VideosAY/youtube4 WATCH LET IT GO MUSIC VIDEO ► https://AlexandraBurke.lnk.to/VideosAY/youtube5 Follow Alexandra Burke: Website - https://alexandraburkeofficial.com/ Facebook - https://www.facebook.com/alexandraburke Twitter - https://twitter.com/alexandramusic Instagram - https://www.instagram.com/alexandraburke/ #AlexandraBurke #BadBoys #Alexand...
Official Music Video for P. Diddy [feat. Black Rob & Mark Curry] - "Bad Boy 4 Life" directed by Chris Robinson from 'The Saga Continues...' (2001) Subscribe to the channel https://lnk.to/BadBoyYTSubID Watch more Bad Boy videos Craig Mack – Flava In Your Ear (Remix) ▶️ https://lnk.to/YTFlavaInYaEarID Puff Daddy & The Family – It’s All About The Benjamins (Remix)▶️ https://lnk.to/YTAllAboutTheBenjaminsID Puff Daddy feat. Faith Evans & 112 - I'll Be Missing You ▶️ https://lnk.to/YTIllBeMissingYouID Mase – Welcome Back ▶️ https://lnk.to/YTWelcomeBackID P. Diddy – I Need A Girl Part 2 ▶️ https://lnk.to/YTINeedAGirlPt2ID Bad Boy Certified Playlists Bad Boy Classics 🎬 https://lnk.to/YTBadBoyGreatestHitsID The Bad Girls 🎬 https://lnk.to/YTBadGirlsID The Puff Daddy Videography 🎬 https://lnk.to/YT...
Red Velvet's 2nd Album Repackage "The Perfect Red Velvet" has been released. Listen and download on iTunes & Apple Music, Spotify, and Google Play Music http://smarturl.it/ThePerfectRedVelvet [Tracklist] 01 Bad Boy 02 All Right 03 피카부 (Peek-A-Boo) 04 봐 (Look) 05 I Just 06 Kingdom Come 07 Time To Love 08 두 번째 데이트 (My Second Date) 09 Attaboy 10 Perfect 10 11 About Love 12 달빛 소리 (Moonlight Melody) Red Velvet Official http://www.youtube.com/redvelvet http://www.facebook.com/RedVelvet http://www.instagram.com/redvelvet.smtown https://twitter.com/RVsmtown Red Velvet 레드벨벳 'Bad Boy' MV ℗ S.M.Entertainment
Title says it all.
Provided to YouTube by Anagram Bad Boy · The Adicts Razor Records: The Punk Singles Collection ℗ 1982 Anagram Records Auto-generated by YouTube.
cheggars play pop
Provided to YouTube by The Orchard Enterprises Bad Boy · The Adicts Rockers Into Orbit ℗ 1990 Fall Out/Jungle Records Released on: 1988-01-01 Auto-generated by YouTube.
The Adicts live at The Manhatten Club (1983). 12a song of 15 on total. Song: BAD BOY. http://www.bucvideos.com.br/index1.php http://www.bucvideos.com.br/forum/
The Adicts-Bad Boy Live in Bielefeld Part8 May16Th & 17Th 2009
Video from UK punk band Adicts "Bad Boy" from Cheggers Plays Pop show..
#theadicts, #badboy, smartalex,
Provided to YouTube by Anagram Bad Boy · The Adicts Joker in the Pack ℗ 2004 Anagram Records Auto-generated by YouTube.
Bad Boy may refer to:
I'm just a bad boy
All dressed up in fancy clothes
I'm taking the trouble
To blow my bubbles away
Bad boy
Life is just a bowl of cherries
I'm taking the trouble
To turn my night into day
The hot blazing sun
Won't hurt my head
'Cause you'll always find me
Right there in the shade
I can see all the folks
They're laughing at me
'Cause I'm just a naturally, crazy, lazy
Bad boy
Life is just a bowl of cherries
I'm taking the trouble
To turn my night into day
The hot blazing sun
Won't hurt my head
'Cause you'll always find me
Right there in the shade
I can see all you folks
You're laughing at me
'Cause I'm just a naturally, crazy, lazy
Bad boy
All dressed up in these fancy clothes
And I'm taking the trouble
To blow my bubbles away