- published: 19 May 2022
- views: 30583473
'+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; })); }); -->
Clifford Smith (born March 2, 1971), better known by his stage name Method Man, is an American rapper, record producer, and actor. He took his stage name from the 1979 film Method Man. He is perhaps best known as a member of the East Coast hip hop collective Wu-Tang Clan. He is also one half of the hip hop duo Method Man & Redman. In 1996, he won a Grammy Award for Best Rap Performance by a Duo or Group, for "I'll Be There for You/You're All I Need to Get By", with American R&B singer-songwriter Mary J. Blige.
Method Man has appeared in films such as Belly, How High, Garden State, The Wackness, Venom, Red Tails and The Cobbler. On television, he and frequent collaborator, fellow East Coast rapper Redman, co-starred on the short-lived Fox sitcom Method & Red. He also had a recurring role as Tug Daniels on HBO's Oz and Calvin "Cheese" Wagstaff on the HBO's The Wire.
In 2012, The Source placed him on their list of the Top 50 Lyricists of All Time.
Born on March 2, 1971, in Staten Island, New York, Smith divided his childhood between his father's Long Island residence and his mother's home in the Park Hill section of Staten Island (colloquially known as Killa Hill). He has two sisters, Terri and Missy.
Method Man, AKA The Fearless Young Boxer, AKA "Avenging Boxer" is a martial arts film directed by Jimmy Shaw starring Casanova Wong.
Wu Pa Feng (Casanova Wong) kills one of his former gang members (Lung Fei) in a duel. Before the duel Fei Lung gives his son Shao Lung (Peter Chen) a golden plate that the gang is looking for. Shao Lung joins his uncles' travelling kung fu show to improve his fighting skills and escape the gang of killers.
Rapper Method Man got the name from this film. Method Man was given the name Method Man by RZA because he smoked a lot of weed and Method is another term for weed. This is described in the book The Wu-Tang Manual.
Method Man may refer to:
Music:
Film:
"Method Man" is the B-side to the single "Protect Ya Neck" from critically acclaimed debut album by the Wu-Tang Clan titled Enter the Wu-Tang (36 Chambers). It was a solo track for the first successful solo star of the Wu-Tang Clan, Method Man. The song was chosen for The Source magazine 100 best rap singles. The refrain of the song (M-E-T-H-O-D) draws from the 1984 Hall & Oates hit "Method of Modern Love" from Big Bam Boom.
It is featured on The RZA Hits compilation. The remix is featured on Method Man's debut album, Tical.
Music video for M.E.T.H.O.D Man can be found in citation.
Within the songs lyrics, Method Man references many notable quotes from popular culture.
Method Man, Jadakiss, Nas - Who Do We Trust? ft. Jadakiss, Immortal Technique & R.A. The Rugged Man (2022) (Remix) Method Man's New Album "Meth Lab Season 3 : The Rehab": https://onerpm.link/methlab3-rehab Inspiration from R.A. the Rugged Man's Song "Who Do We Trust?" https://naturesoundsmusic.com/amhad/ Inspiration from Berner's Album "Gotti" Apple Music: https://music.apple.com/us/album/gotti/1594489683 Spotify: https://open.spotify.com/album/37y72XuNwuPyzfB9kk2uIc Follow South Central Channel Instagram: https://www.instagram.com/westcoast.90s/ Facebook: https://www.facebook.com/90sHipHopEvolution/ Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Prod. by Dextah Beats YouTube: https://www.youtube.com/channel/UC8mO_IAsnQCfyKP7L0yXd5Q Website: https://dextah.beatstar...
Method Man & Nas - In The End ft. Coast Contra (2022 / 2023) (Remix by DJ Exodus & Prod. DEXTAH) Nas New Album "King's Disease III": https://nas.lnk.to/kd3 Method Man's New Album "Meth Lab Season 3 : The Rehab": https://onerpm.link/methlab3-rehab Follow South Central Channel Instagram: https://www.instagram.com/hiphopunderw0rld/ Facebook: https://www.facebook.com/90sHipHopEvolution/ Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Prod. by Dextah Beats YouTube: https://www.youtube.com/@dextah Website: https://dextah.beatstars.com/ Remix by DJ Exodus: Instagram: https://www.instagram.com/djexodusofficial ______________________________ Follow Method Man From Wu-Tang Clan Instagram: https://www.instagram.com/methodmanofficial Facebook: https://www.facebook.com/methodma...
Method Man & Nas - "Lyrical Legacy" ft. Dave East, Jadakiss (2023) (Prod. Lethal Needle) | Tribute dedicated to ODB Dave East's New Album "Book of David" 2023 https://music.apple.com/us/album/book-of-david/1653620268 https://open.spotify.com/album/0TCbEBrufEVNfgThlJooIo Nas New Album "King's Disease III": https://nas.lnk.to/kd3 Method Man's New Album "Meth Lab Season 3 : The Rehab": https://onerpm.link/methlab3-rehab Follow South Central Channel Instagram: https://www.instagram.com/hiphopunderw0rld/ Facebook: https://www.facebook.com/OldschoolEra/ Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Prod. by Lethal Needle YouTube:https://www.youtube.com/@lethalneedle Website: https://lethalneedle.beatstars.com/music/tracks ______________________________ Follow Method Man...
Jazzy speaks to Wu-Tang Clan members RZA & Method and asks is Wu-Tang really for the children. Make sure you subscribe for more interviews and follow Jazzy's World TV on social media: http://www.instagram.com/jazzysworldtv https://www.tiktok.com/@iamjazzysworldtv
Method Man, Jadakiss, Nas - Smooth Criminal ft. Jadakiss, Immortal Technique (2022) (Remix) Method Man's New Album "Meth Lab Season 3 : The Rehab": https://onerpm.link/methlab3-rehab Thumbnail from D.Chamberz - Rap with a Legend ft. Method Man https://youtu.be/fmACi4vkFmc Method Man & Nas - Who Do We Trust? ft. Jadakiss, Immortal Technique, Rugged Man - https://youtu.be/DdAi7K2L9qM Follow South Central Channel Instagram: https://www.instagram.com/hiphopunderw0rld/ Facebook: https://www.facebook.com/90sHipHopEvolution/ Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Prod. by Dextah Beats YouTube: https://www.youtube.com/channel/UC8mO_IAsnQCfyKP7L0yXd5Q Website: https://dextah.beatstars.com/ Remix by DJ Exodus: Instagram: @djexodusofficial __________________________...
Official HD Video for ”Method Man” by Wu-Tang Clan Listen to Wu-Tang Clan: https://Wu-TangClan.lnk.to/listenYD Watch more videos by Wu-Tang Clan: https://Wu-TangClan.lnk.to/listenYD/youtube Subscribe to the official Wu-Tang Clan YouTube channel: https://Wu-TangClan.lnk.to/subscribe_YD Follow Wu-Tang Clan Facebook: https://Wu-TangClan.lnk.to/followFI Instagram: https://Wu-TangClan.lnk.to/followII Twitter: https://Wu-TangClan.lnk.to/followTI Website: https://Wu-TangClan.lnk.to/followWI Spotify: https://Wu-TangClan.lnk.to/followSI YouTube: ttps://Wu-TangClan.lnk.to/subscribe_YD Lyrics: M-E-T-H-O-D Man M-E-T-H-O-D Man M-E-T-H-O-D Man M-E-T-H-O-D Man #WuTangClan #MethodMan #OfficialVideo #HDRemastered
Method Man & Redman - How High Part 2 (Official Video) from the soundtrack 'How High' (2002) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx Lyrics: [Intro: Redman + Meth...
DMX, Nas, Method Man, Rakim Long Time ft. Jadakiss (2021) (Remix) HD | Inspired by DMX Exodus Album 2021 DMX - Exodus (Full Album) Out Now! ► Stream: https://DMX.lnk.to/EXODUS ► Playlist: https://www.youtube.com/playlist?list=PLCk9xy9nZ8GZxD9U2w_9VFJGdn9U3o1Aj DMX Exodus Tracklist: 1. That's My Dog ft. The Lox & Swizz Beats 2. Bath Salts ft. Jay-Z & Nas 3. Dog's Out ft. Lil Wayne & Swizz Beatz 4. Money Money Money 5. Hold Me Down ft. Alicia Keys 6. Skyscrapers 7. Male Stick Up Skit 8. Hood Blues ft. Conway, Benny 9. Walking In The Rain ft. Nas, Exodus Simmons 10. Take Control ft. Snoop Dogg 11. Exodus Skit 12. Letter To My Son (Call Your Father) ft. Usher 13. Prayer DMX - Bath Salts (Audio) ft. JAY-Z, Nas https://youtu.be/q-V7JiF6oMI Nas, JAY-Z & DJ Khaled - SORRY NOT SORRY (Officia...
Method Man & Redman - "Heavy" ft. Dave East (2023) (Mix by DJ Exodus & Prod. Lethal Needle) Method Man's New Album "Meth Lab Season 3 : The Rehab": https://onerpm.link/methlab3-rehab Dave East's New Album "Book of David" 2023 https://music.apple.com/us/album/book-of-david/1653620268 https://open.spotify.com/album/0TCbEBrufEVNfgThlJooIo Follow South Central Channel Instagram: https://www.instagram.com/hiphopunderw0rld/ Facebook: https://www.facebook.com/OldschoolEra/ Spotify: https://open.spotify.com/playlist/5BoMzGlwqsF88ndf0SpTgg Prod. by Lethal Needle YouTube:https://www.youtube.com/@lethalneedle Website: https://lethalneedle.beatstars.com/music/tracks Remix by DJ Exodus: Instagram: https://www.instagram.com/djexodusofficial ______________________________ Follow Method Man From Wu-T...
Clifford Smith (born March 2, 1971), better known by his stage name Method Man, is an American rapper, record producer, and actor. He took his stage name from the 1979 film Method Man. He is perhaps best known as a member of the East Coast hip hop collective Wu-Tang Clan. He is also one half of the hip hop duo Method Man & Redman. In 1996, he won a Grammy Award for Best Rap Performance by a Duo or Group, for "I'll Be There for You/You're All I Need to Get By", with American R&B singer-songwriter Mary J. Blige.
Method Man has appeared in films such as Belly, How High, Garden State, The Wackness, Venom, Red Tails and The Cobbler. On television, he and frequent collaborator, fellow East Coast rapper Redman, co-starred on the short-lived Fox sitcom Method & Red. He also had a recurring role as Tug Daniels on HBO's Oz and Calvin "Cheese" Wagstaff on the HBO's The Wire.
In 2012, The Source placed him on their list of the Top 50 Lyricists of All Time.
Born on March 2, 1971, in Staten Island, New York, Smith divided his childhood between his father's Long Island residence and his mother's home in the Park Hill section of Staten Island (colloquially known as Killa Hill). He has two sisters, Terri and Missy.
Expect the unexpected, motherfucker, let's go, come on
Yeah, M-E-F, hahahaha, special guest
(Fuck you, fuck you, fuck you, fuck)
Hahahaha.. yeah..
Yo, you don't wanna ride with Dirt, you still stuck in coach
You don't wanna fly in first, yo, I can spit
One verse, and leave in a new Benz-er
Take a trip down south and put some hoes to work, you hear me
Dirt McGirt, you niggaz gon' respect it
I'm drunk and crunk so don't come in my direction
I'm ready to thump, and get the whole crew arrested
Bail 'em out, and laugh about it in Texas, yo
And get with Rome, down in Caki-Lac
And hit the spot, in the hood where the happenings at
Where the shootin' and the fightings and the stabbings at
Where the Lincolns and the Chevys and the Cadi's at, shit
Them down south niggaz been loved Dirt
Take a shot to the head, if you been through the worse
Show respect to your niggaz, who been doin' it first
And be comin' with that shit, I'm just doin' the worse
Yo, you don't wanna ride with Dirt, you still stuck in coach
You don't wanna fly in first, yo, I can spit
(Yo, you don't wanna ride with Meth, we still sniffing coke
Even if you tried your best, yo, I can spit)
Yeah, damn, I'm just like Dirt in the booth
I'm the truth, I don't need to go to church in a suit
Each verse is the proof, I drink a 100 Proof
Cop searching the coup, I got some herb in my boot
When Wu is coming through, the outcome: critical
Fucking with this style, the outcome: get physical
Meth get lyrical, and y'all can get my genitals
Don't forget them aid essentials, vitamins & minerals
Heh, ya'meen, I'm taking one for the team
Like Martin Luther King, taking one for a dream
I'm dope, to many fiends, live by many means
If you don't stand for nothing, you'll fall for anything
That's real shit, let's get this money real quick
Dirt Dog, I'm feeling this, but I'd rather feel rich
I mean filthy rich, I'm corporate now
Big Meth, the label's Def, that's why I talk so loud, nigga
Fuck you, fuck you, fuck you, fuck you