- published: 19 Mar 2022
- views: 26055651
'+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; })); }); -->
Do or Die may refer to:
Do or Die is a 1991 action film starring Cynthia Brimhall, Pat Morita and Erik Estrada. It was directed, written and produced by Andy Sidaris.
Do or Die is the second album by rapper Tim Dog. The album represented Tim's shift of focus, away from confrontation with the West Coast and concentrated on hardcore East Coast rap. The album contained a shout-out to Tupac Shakur whom Tim thanked for assisting him when involved in a potentially violent situation when touring in California.
All tracks by Tim Dog except were noted
Do or Die is the first album released by Boston's Irish-American punk band, Dropkick Murphys. It was released in 1998. A music video for the single "Barroom Hero" was released. This is the only album that featured original lead vocalist, Mike McColgan who went on to become a fireman before forming his own band, the Street Dogs.
Allmusic gave Do or Die a rating of three stars out of five, and said that the album was "an interesting blend of hardcore-style punk with traditional Irish inflections."
A Do or Die poster appears on the wall of John Connor's bedroom in the pilot episode of Terminator: The Sarah Connor Chronicles. "Barroom Hero" was used in the final credits of the documentary "Restrepo." "Never Alone" was featured in the Extreme sports video game Dave Mirra Freestyle BMX.
Many songs were a collaborative effort.
Do or Die is the second album released by Gospel Gangstaz. It was released on November 28, 1995 for Holy Terra Records and featured production from Mr. Solo, Tik Tokk, DMG, Aaron Connor, Paul Andris, Sean Freehill and Steve Good. Do or Die peaked at 24 on the Top Christian Albums Billboard chart, but again no charting singles were released.
Do or Die is an American rap trio originally from the Westside of Chicago, consisting of group members Belo Zero, N.A.R.D. and AK. The group experienced mainstream success with the platinum single "Po Pimp", which peaked at #22 on the Billboard Hot 100.
Do or Die gained a hit with their first single, "Po Pimp". Released on a tiny Chicago label, the track became a local hit and sparked the group's signing by Houston's Rap-A-Lot Records. Given a wide release in the summer of 1996, the single hit number 22, increasing the buzz for a full-length from the group. In September of that year, Picture This was released on Rap-A-Lot. The album was certified Gold, and launched the group, as well as fellow Chicago rapper Twista, who was featured on the track, into superstardom.
In 1998, the group released their sophomore album, "Headz or Tailz". Like the group's previous album, Headz or Tailz was a success, peaking at #13 on the Billboard 200 and #3 on the Top R&B/Hip-Hop Albums, producing the successful single, "Still Po Pimpin", which featured Twista and Johnny P, and peaked at #62 on the Billboard Hot 100 and #16 on the Hot Rap Singles.
Dream, GeorgeNotFound, Sapnap, BadBoyHalo, Antfrost, and Awesamdude fight to the death in this Minecraft animated song by Cubical. Stream Do or Die!! - Spotify: https://open.spotify.com/album/6iuxFvWYIJePJx4J4E1urU - iTunes / Apple Music: https://music.apple.com/us/album/do-or-die-single/1591829892 Rendered with FOX Renderfarm : https://www.foxrenderfarm.com/ Production Supervision: https://www.youtube.com/c/QCAnimations Production Direction: https://twitter.com/sweeepr This is a Minecraft song animation is similar to the previous animated videos by Cubical and ZAMination, where the song was created by CG5, TryHardNinja, JT Music, etc, but this time we created the song! This isn't a Poppy Playtime song, or a Bendy and the Ink Machine song. But a Five Nights at Freddy's security breach ...
DPR ARTIC - Do or Die Feat. DPR IAN (Official Music Video) https://radi.al/dprartic-presave _DPR ARTIC Instagram: https://www.instagram.com/dprartic/ Twitter: http://twitter.com/DPR_ARTIC _ DPR IAN Instagram: http://instagram.com/DPRIAN Twitter: http://twitter.com/DPRIAN_ TikTok: https://www.tiktok.com/@mito.is.real _ DPR Instagram: http://instagram.com/dpr_official Facebook: https://www.facebook.com/dreamperfectregime Youtube: @DreamPerfectRegime
Shop Mars merch: http://bit.ly/MarsStore http://www.thirtysecondstomars.com A Message from JARED LETO: I’m sitting in the dark writing this having just finished this little film and although I don’t feel quite done yet it’s time to let it go. This is a story about an incredible adventure that we all shared together this summer. A summer that we will never forget. It’s also a reminder (for myself as well) to LIVE LIFE NO MATTER WHAT. But ultimately it’s a love letter to you all. The believers. Even before I started shooting I thought of it as a companion piece to Closer To The Edge, a sequel of sorts, the next chapter. I knew it had to be special as Closer is held in such high regard by you all. So we worked hard. And then worked even harder. Sharing this journey with you all has been the...
Available:https://linktr.ee/biumurati -------------------------------------------------------- Directed by 2PAC Produced by 2PAC Recorded by Biu Murati Mix Master by Biu Murati Cinematographer Skin 2018 Video: New Russian Rap & Biu Murati -------------------------------------------------------- Connect with Biu Murati Instagram https://www.instagram.com/biumurati Twitter https://twitter.com/biumurati YouTube https://www.youtube.com/@biumurati SoundCloud https://soundcloud.com/biumurati Spotify https://open.spotify.com/artist/40dpHMOftBJoSc7SbnE5ll iTunes https://music.apple.com/us/artist/biu-murati/1523176974 Deezer https://www.deezer.com/us/artist/100549732 Mixcloud https://www.mixcloud.com/biumurati -------------------------------------------------------- Lyrics: [Intro] Get money nigga...
#임영웅 #LimYoungWoong #DoOrDie 임영웅 웅튜브 구독♡좋아요♡알람설정 열심히 할게요/당신도 누를 수 있도록 Lim Young Woong [I'm HERO] Youtube Channel Subscribe Like Alert Setting Thank You♡ 공식 팬카페 [영웅시대] http://cafe.daum.net/hero0616
Provided to YouTube by The Orchard Enterprises DO OR DIE · Dxrk ダーク DO OR DIE ℗ 2021 Black 17 Media, LLC. Released on: 2021-07-16 Producer: Dxrk ダーク Auto-generated by YouTube.
Provided to YouTube by The Orchard Enterprises Do U? · Do or Die Pimpin Ain't Dead ℗ 2013 RAP-A-LOT 2K RECORDS, INC. Released on: 2013-08-15 Auto-generated by YouTube.
[HOUSE OF TRICKY : HOW TO PLAY] Release Date : 2023. 08. 02 6PM (KST) iTunes ▶ https://apple.co/3ZqCPRi Spotify ▶ https://spoti.fi/3KokwHQ YouTube Music ▶ https://bit.ly/3rTthDa Melon ▶ http://kko.to/QJ8ZPgpeNv genie ▶ http://genie.co.kr/1JUHJ0 VIBE ▶ https://bit.ly/3Kqk63o ▶ xikers Official Platform https://xikers.kr ▶ xikers Official Twitter: https://twitter.com/xikers_official ▶ xikers Official Instagram: https://instagram.com/xikers_official/ ▶ xikers Official TikTok: https://tiktok.com/@xikers_official/ ▶ xikers Official Facebook: https://facebook.com/xikersKQ/ ▶ KQ Official Homepage: http://kqent.com ▶ KQ Official Facebook: https://facebook.com/kqent ▶ KQ Official Twitter: https://twitter.com/kqent ▶ KQ Official Instagram: https://instagram.com/kqent #xikers #싸이커스 #DOorDIE ...
Stream AleXa's "Do Or Die" ⇢ https://lnk.to/alexa_200306digital “Do Or Die,” the dark continuation to “Bomb,” is a groovy dance track combining Brazilian funk, electro and EDM. Set to a choreography that stands out for being one of the most difficult in K-Pop, “Do or Die” is a fight song that speaks with an all-or-nothing attitude. "Bomb"에 이어 "“Do Or Die” 브라질 펑크, 일렉트로, EDM을 결합한 그루비한 댄스 음악입니다. K-POP중 가장 격렬하고 난이도 높은 안무 중 하나이며 어려움 앞에 섰을 때, 포기하지 말고 싸워 이기라는 메시지를 담은 곡이다. Subscribe to AleXa on YouTube (Bell on!): ⇢ https://www.youtube.com/channel/UCWWzmRMh6BPcEt46XlTyp1w?sub_confirmation=1 Stream AleXa's Best Hits: ⇢ Spotify: https://spoti.fi/32hmAK8 ⇢ Apple Music: http://bit.ly/AleXaOnAppleMusic ⇢ Melon: http://bit.ly/AleXaOnMelon ⇢ genie: http://bit.ly/AleXaOnGenie About AleXa: The daughte...
Check out my channel for future releases. Please subscribe if you like what you hear. Ripped from my personal CD collection. 01. I Don't Give a Fuck 02. Grab Your Gat 03. I Get Wrecked (feat. KRS-One) 04. Timberlands 05. If I Was a Cop 06. Hardcore 07. Game 08. Skip to My Loot 09. Silly Bitch 10. Maddog 11. Make Room 12. Breakin North
Provided to YouTube by Ruffhouse/Columbia Game · Tim Dog Do Or Die ℗ 1993 Columbia Records, a division of Sony Music Entertainment Released on: 1993-04-13 Composer, Lyricist: T. Blair Auto-generated by YouTube.
Provided to YouTube by Ruffhouse/Columbia I Don't Give a Fuck · Tim Dog Do Or Die ℗ 1993 Columbia Records, a division of Sony Music Entertainment Released on: 1993-04-13 Composer, Lyricist: T. Blair Auto-generated by YouTube.
Provided to YouTube by Ruffhouse/Columbia If I Was a Cop · Tim Dog Do Or Die ℗ 1993 Columbia Records, a division of Sony Music Entertainment Released on: 1993-04-13 Composer, Lyricist: T. Blair Auto-generated by YouTube.
"Music video by Tim Dog;KRS-One performing I Get Wrecked. (C) 1993 Ruffhouse Records LP"
Provided to YouTube by Ruffhouse/Columbia Silly Bitch · Tim Dog Do Or Die ℗ 1993 Columbia Records, a division of Sony Music Entertainment Released on: 1993-04-13 Composer, Lyricist: T. Blair Auto-generated by YouTube.
Artist-Tim Dog Album-Do Or Die Year-1993 Label-Ruffhouse Records
Tim Dog & KRS-One - I Get Wrecked Video- http://www.youtube.com/watch?v=7BCvDXRyPoE Tim Dog - Hardcore Video- http://www.youtube.com/watch?v=94KSer7hDiU Tim Dog - Hardcore (Album Version)- http://www.youtube.com/watch?v=JeXnllDTpTc Tim Dog Having Fun With A Royal Guard at Buckingham Palace -1993- http://www.youtube.com/watch?v=T2xQmQotEIA Tim Dog Source Interview Back in '93 Part 1- http://babylonfalling.tumblr.com/search/tim+dog Tim Dog Source Interview Back in '93 Part 2- http://babylonfalling.com/images/tumblr/timdogday2_small.jpg Music Played: 1.Dilated Peoples- Third Degree 2.Kool G Rap & DJ Polo- I Aint Trickin' 3.The Juggaknots- Loosifa Starvin Art Clique- Keep Pushin On
Artist/Group: Tim Dog Album: Do or Die Released: 1993 Label: Ruffhouse/Columbia -------------------------------------------------- "I Don't Give a Fuck" is a dissing towards Dj Quik -------------------------------------------------- Follow Us: https://www.hhbars.com https://www.facebook.com/realhhbars https://www.instagram.com/realhhbars https://www.tiktok.com/@realhhbars #timdog #raplyrics #hiphoplyrics #lyrics
Do or Die may refer to:
The last thing that I saw was when he cried
Shot him in the face and walked away before he died
I'm pacin the flo' with the fo'-pound
Visualizin graphics while he talkin, givin me the low down
My nigga went away in ninety-three and died instantly
Now I'ma show the nigga you kilt and what he meant to me
I put his photos in my fo'-do'
I know where the nigga be kickin it at
Me at him poppin it at the same hoe
My conversation be on royalties
She loyal to me, and I'ma get her to kill the nigga for me
Uhh, it seems his life is in my hands
And I don't plan to let it slip through the way you kilt him
I'ma kill you
Despite the fact that I've been shot before
As long as I get this bitch-ass nigga I don't mind, dyin, so
Take the lock off the pound like a pro
Grab an extra clip make sure I don't come short
Pull up and mad dog his whole crib
Hocus pocus motherfucker I'm in your face with this hot steel
The thrill to kill is unbearable
I told the bitch to close her eyes
Send up the roots give something terrible
The ultimate payback is revenge
TNT and cement shoes, plus the way he went was cool!
Seventeen shots, top hip-hop
Fuck, the world, cause the world fuckin you
That's how we serves on this late night
Pump pump chump chump rump pump fools stay tight
Now who the fuck I suppose to follow?
Is it them honkies in the White House
Or that nigga drinkin out that forty bottle?
Either way it goes, I'm eager to bloodshed
I'm catchin one plus one equals two to the forehead
Career was callin alcohol was chemically made to wrap us
So when I swab, the neighborhood crab is where he left us
On the street, the mud was wiped from who survived
He wanted me dead, cold red and blood he had to die
Slapped that ass with this Mac-10
It's just so hard when you depart, make that chest do a backbend
Bend back easy to the liquor sto'
Cut me a four-oh, and up a four-five on this Korean hoe
Cuff the loot and bit one slowly
Reverse my coat plus half a block I done some dirt
Dem a knows me
There's no endin for this madness
I had the situation turnin till I started drinkin this mad shit
Now there's a hole in this bucket (in this bucket)
In the chick I had to stick for the lick, fuck it
Crack the fo' and drunk it boldly
All the boys was tailin behind me, but they didn't even knows me
So then they hit the blue lights, I bent the U right
Zipped past the red light, and it became a motherfuckin street fight
Altitude, a level where a nigga show no gratitude
More like attitude
Hands on pumps, bodies in trunks
Victim face down, in that trunk rum-pum, pum pum
My mission to decease individuals
When night falls I crawl like black widows
With barrels in the middle
Blaow, cause I like to move the crowd
Watch em turn cold as they bodies pile
Evaporate like lightning as fast as fuck
A small armed tec hit like an eighteen wheeler truck
Put his head in his hands, cause I don't give no fuck
Ashes to ashes and bust when I must
Cackling these bodies, that I've turned to dust
Six million ways to die, one more is a plus
I revolve like revolvers, and answer all challenge