- published: 14 Nov 2009
- views: 77118844
'+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; })); }); -->
Three 6 Mafia, also known as Triple 6 Mafia and Da Mafia 6ix, is an American hip hop group originally from Memphis, Tennessee, signed to Sony Music Entertainment under the Columbia Records imprint. The group was formed by DJ Paul, Lord Infamous, and Juicy J in 1991 and was at first known as Triple 6 Mafia. During the group's earlier years they were known as Backyard Posse before becoming known as Triple 6 Mafia and often worked with members of the Prophet Posse and the Gimisum Family. Koopsta Knicca joined the group in 1994. Crunchy Black was at first added to the group as a dancer in 1995 and Gangsta Boo became a full member of the group after the release of the debut album Mystic Stylez.
The group released their debut album Mystic Stylez in 1995 through Prophet Entertainment, a record label they created but have since relinquished control of. Their musical style—which initially featured dark, menacing beats with equally gritty lyrics—has since moved to a less dark style. The group has also had numerous lineup changes, and now (due to contract disputes) performs under the group name of Da Mafia 6ix. Two of their albums are RIAA-rated platinum: When the Smoke Clears: Sixty 6, Sixty 1 (2000) and Most Known Unknown (2005), the latter featured their well-known single "Stay Fly", which is said to have kick-started their rise to fame and the mainstream. The group's worldwide album sales stand at 5.5 million. In 2005 the group won an award for Best Original Song at the 78th Academy Awards. Three 6 Mafia have been described as horrorcore, crunk and gangsta rap. Founding member Lord Infamous and long-time member Koopsta Knicca died in 2013 and 2015, respectively.
Hakeem Seriki (born November 28, 1979), better known by his stage name Chamillionaire, (/ˈkəmɪljənɛər/) is an American rapper and entrepreneur from Houston, Texas. He is the CEO of Chamillitary Entertainment. Chamillionaire was also the founder and an original member of The Color Changin' Click until the group split in 2005.
He began his career independently with local releases in 2002, including collaboration album Get Ya Mind Correct with fellow Houston rapper and childhood friend Paul Wall. He signed to Universal Records in 2005 and released The Sound of Revenge under Universal. It included hit singles "Turn It Up" featuring Lil' Flip and the number-one, Grammy-winning hit "Ridin'" featuring Krayzie Bone of Bone Thugs-n-Harmony. Ultimate Victory followed in 2007, which was notable for not containing any profanity. Chamillionaire is also known for his most anticipated Mixtape Messiah series, which came to a halt in 2009.
In early 2011, he left Universal Records, which led to his would-be third album, Venom, going unreleased. Chamillionaire released his first independent extended play Ammunition in March 2012 and was noted as his first major release since he left the label. Another EP, Elevate, was released on February 17, 2013. He said it is going to be one of several to be released before his third studio album, and shortly after his third EP Reignfall was released on July 23, 2013. He is working on his third studio album, Poison.
Official Video for ”Stay Fly” by Three 6 Mafia feat. 8Ball & MJG and Young Buck Listen to Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Watch more videos by Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD/youtube Subscribe to the official Three 6 Mafia YouTube channel: https://Three6Mafia.lnk.to/subscribeYD Three 6 Mafia, otherwise known as Triple 6 or da Mafia, is an iconic, GRAMMY award winning, American hip hop group from Memphis, Tennessee. The group's membership varied from album to album, the constant duo being Juicy J and DJ Paul. Other members included Gangsta Boo, Crunchy Black, Lord Infamous, and Koopsta Knicca. Since beginning their career in 1991, the group achieved worldwide fame with their distinctive style of Memphis crunk, characterized by choppy, shouted lyrics a...
”Half On A Sack” by Three 6 Mafia Listen to Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Watch more videos by Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD/youtube Subscribe to the official Three 6 Mafia YouTube channel: https://Three6Mafia.lnk.to/subscribeYD Follow Three 6 Mafia Facebook: https://Three6Mafia.lnk.to/followFI Instagram: https://Three6Mafia.lnk.to/followII Spotify: https://Three6Mafia.lnk.to/followSI YouTube: https://Three6Mafia.lnk.to/subscribeYD Ask your voice device to play Three 6 Mafia! Lyrics: Ayy, nigga, get your weed, get your blow Get your drank together 'Cause we 'bout to get high Half on a sack of some blow Half on a s—, half-half on a sack of some blow Half on a s—, half-half on a sack of some blow Half on a s—, half-half on a sack of some— Brin...
Lil Jon ft. Three 6 Mafia - Act a Fool (Anbroski Remix) Anboski Instagram: https://www.instagram.com/anbroski DL: https://soundcloud.com/anbroski/lil-jon-ft-three-6-mafia-act-a-fool-anbroski-edit 🎧 Follow TrapMusicHD 🎧 Facebook: https://www.facebook.com/TrapMusicHD Twitter: https://twitter.com/TrapMusicHD Soundcloud: https://soundcloud.com/trapmusichd Instagram: http://instagram.com/trapmusichdtv VK: http://vk.com/trapmusichdtv Snapchat: TrapMusicHD Musical.ly: TrapMusicHD 💎 Follow Anbroski 💎 Soundcloud: https://soundcloud.com/anbroski Instagram: http://instagram.com/anbroski 🎶 HD Family 🎶 RapMusicHD: https://goo.gl/J1Noub BassMusicHD: https://goo.gl/0RN70B ChillMusicHD: https://goo.gl/EXAoAh HouseMusicHD: https://goo.gl/l51Abz EDMMusicHD: https://goo.gl/iGNNwY GanjaMusicHD: https://go...
Official video for ”Side 2 Side (Screwed & Chopped)” by Three 6 Mafia Listen to Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Watch more videos by Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Subscribe to the official Three 6 Mafia’s YouTube channel: https://Three6Mafia.lnk.to/subscribeYD Three 6 Mafia, otherwise known as Triple 6 or da Mafia, is an iconic, GRAMMY award winning, American hip hop group from Memphis, Tennessee. The group's membership varied from album to album, the constant duo being Juicy J and DJ Paul. Other members included Gangsta Boo, Crunchy Black, Lord Infamous, and Koopsta Knicca. Since beginning their career in 1991, the group achieved worldwide fame with their distinctive style of Memphis crunk, characterized by choppy, shouted lyrics and drum machin...
Official video for "Poppin' My Collar” by Three 6 Mafia feat. Project Pat Listen to Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Watch more videos by Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Subscribe to the official Three 6 Mafia’s YouTube channel: https://Three6Mafia.lnk.to/subscribeYD Three 6 Mafia, otherwise known as Triple 6 or da Mafia, is an iconic, GRAMMY award winning, American hip hop group from Memphis, Tennessee. The group's membership varied from album to album, the constant duo being Juicy J and DJ Paul. Other members included Gangsta Boo, Crunchy Black, Lord Infamous, and Koopsta Knicca. Since beginning their career in 1991, the group achieved worldwide fame with their distinctive style of Memphis crunk, characterized by choppy, shouted lyrics and drum mac...
Three 6 Mafia - Half On a Sack (Lyrics) | we gon f it in the back of the bus fill her nose up full of dust three 6 mafia wild on tour: https://spoti.fi/2nMhW6J MERCH: https://www.tiktoktunes.shop ⭐Follow TikTokTunes MERCH: https://www.tiktoktunes.shop Instagram: https://www.instagram.com/itstiktoktunes Spotify: https://spoti.fi/2nMhW6J TikTok: https://www.tiktok.com/@itstiktoktunes TikTok Spotify Playlist: https://sptfy.com/4Pdl Stream Three 6 Mafia Half On a Sack Lyrics we gon f it in the back of the bus fill her nose up full of dust three 6 mafia wild on tour: https://www.youtube.com/watch?v=PS6H13nI2c0 ⭐Three 6 Mafia https://www.youtube.com/user/Three6Mafia/ _____________________ [intro: juicy j] ayy, nigga, get your weed, get your blow get your drank together 'cause we 'bout to ...
Official video for ”Stay Fly (Screwed & Chopped)” by Three 6 Mafia Listen to Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Watch more videos by Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Subscribe to the official Three 6 Mafia’s YouTube channel: https://Three6Mafia.lnk.to/subscribeYD Three 6 Mafia, otherwise known as Triple 6 or da Mafia, is an iconic, GRAMMY award winning, American hip hop group from Memphis, Tennessee. The group's membership varied from album to album, the constant duo being Juicy J and DJ Paul. Other members included Gangsta Boo, Crunchy Black, Lord Infamous, and Koopsta Knicca. Since beginning their career in 1991, the group achieved worldwide fame with their distinctive style of Memphis crunk, characterized by choppy, shouted lyrics and drum machine ...
Provided to YouTube by The Orchard Enterprises Late Night Tip · Three 6 Mafia · Jordan Houston · Paul Beauregard The End ℗ 1997 Prophet Entertainment Released on: 1997-03-11 Producer: DJ Paul Producer: Juicy J Auto-generated by YouTube.
ig: hnzcma #suicideboys #g #scrim #rubydacherry #ftp #lilpeep #grey #ghostemane #s #records #rap #yungxrist #pouya #suicideleopard #slicksloth #trap #greyfivenine #music #fuckthepopulation #hiphop #yungplague #family #oddynuff #tillthegrave #suicideboysedit #soundcloud #xxxtentacion #bones #yungmutt #yungscarecrow#phonk #youngdolph #memphismusic #hiphopmusic #ripkoopstaknicca #life #shiphop #hiphopculture #verzuztv #trap #producer #suicideboys #horrorcore #hypnotizedminds #hypnotizedmindz #bizzybone #undergroundrap #krayziebone #beats #indog #hiphopnews #ix #memphisundergroundrap #dirtysouth #timbaland #hypnotizemindsproductions #s #mrdel #layziebone #g
Official video for "Tear da Club Up '97” by Three 6 Mafia Listen to Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Watch more videos by Three 6 Mafia: https://Three6Mafia.lnk.to/listenYD Subscribe to the official Three 6 Mafia’s YouTube channel: https://Three6Mafia.lnk.to/subscribeYD Three 6 Mafia, otherwise known as Triple 6 or da Mafia, is an iconic, GRAMMY award winning, American hip hop group from Memphis, Tennessee. The group's membership varied from album to album, the constant duo being Juicy J and DJ Paul. Other members included Gangsta Boo, Crunchy Black, Lord Infamous, and Koopsta Knicca. Since beginning their career in 1991, the group achieved worldwide fame with their distinctive style of Memphis crunk, characterized by choppy, shouted lyrics and drum machine beats. Th...
Three 6 Mafia, also known as Triple 6 Mafia and Da Mafia 6ix, is an American hip hop group originally from Memphis, Tennessee, signed to Sony Music Entertainment under the Columbia Records imprint. The group was formed by DJ Paul, Lord Infamous, and Juicy J in 1991 and was at first known as Triple 6 Mafia. During the group's earlier years they were known as Backyard Posse before becoming known as Triple 6 Mafia and often worked with members of the Prophet Posse and the Gimisum Family. Koopsta Knicca joined the group in 1994. Crunchy Black was at first added to the group as a dancer in 1995 and Gangsta Boo became a full member of the group after the release of the debut album Mystic Stylez.
The group released their debut album Mystic Stylez in 1995 through Prophet Entertainment, a record label they created but have since relinquished control of. Their musical style—which initially featured dark, menacing beats with equally gritty lyrics—has since moved to a less dark style. The group has also had numerous lineup changes, and now (due to contract disputes) performs under the group name of Da Mafia 6ix. Two of their albums are RIAA-rated platinum: When the Smoke Clears: Sixty 6, Sixty 1 (2000) and Most Known Unknown (2005), the latter featured their well-known single "Stay Fly", which is said to have kick-started their rise to fame and the mainstream. The group's worldwide album sales stand at 5.5 million. In 2005 the group won an award for Best Original Song at the 78th Academy Awards. Three 6 Mafia have been described as horrorcore, crunk and gangsta rap. Founding member Lord Infamous and long-time member Koopsta Knicca died in 2013 and 2015, respectively.
Yeah, Hypnotize Minds, Three 6 Mafia
Academy Award winners, what?
Chamillionaire, we stronger then ever, for real
The last 2 off, goin', it's goin' down
I stay doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Another day, another dollar, another night to make a hoe holler
I pop her cherry, then I pop my collar
Pop brand new tags off a brand new clothes
Brush my hair back and kick the hoe out the door
Flip a quarter, see which ride I'm pullin' out the garage
While it's transmitters in the bump of my barge
Pull a pack out as if my body ever sinned
10 o'clock at night but my day just begin
07 Murcielago with the wings out
I usually never drive it but I heard the hoes out
Fresher than a mint leaf, smellin' like a coca leaf
Center of attention, hoe smilin' 'coz they posted
I stay doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Man, these kids know how I get my grands
Tryna snatch it? Better switch ya plans
Pull a stack out my Dickies pants
And slap a hater with my business hand
Keep a spare for that clip that jams
Money like Mike and a pimp like can
Put some chromes under that big sedan
And I'm pimpin' better than Xzibit can
And then you're impressed of how my hair lookin' Aquafina clear
If you don't like it, come dispute it, do your best to disappear
Yeah, you know what it is, don't call me Chamillionaire
Now the world gotta address me as the 'Hustla of the Year'
I demand some respect, I'm demandin' respect
Or I'm commandin' that canon through that dam, that's the chest
Ain't no hustler or another on the planet as fresh
So when I lift up my royal hand, my pinky ring shake your pecks
I stay doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
My cars inside peanut butter, outside jelly
Flicker 26 is drankin', drankin' with my celly
We takin' real orders, talkin' coke in that telly
We choppin' up the doe like a butcher in the deli
You know that purple kush leave your clothes all smelly
But if you slangin' pounds, then your pockets should be swelly
I'm ballin' 'til I'm fallin' just like that movie 'Belly'
I'm always stayin' strapped for you niggas that be petty
Toe the 9, 9, 9, on the grind, grind, grind
I shine, shine, shine, jewelry blind, blind, blind
The time, time, time, yes, it's prime, prime, prime
I'm takin' no retracts 'coz it's mine, mine, mine, nigga
I stay doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
Doe boy, doe, doe, doe boy fresh
Yeah, now what it is, boy?
I stay fresh, fresh, fresh, fresh
I stay fresh, fresh, fresh
I stay fresh, fresh, fresh, fresh
I stay fresh, fresh, fresh
I stay fresh, fresh, fresh, fresh
I stay fresh, fresh, fresh