'+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; })); }); -->

E-40

Earl Stevens (born November 15, 1967) better known by his stage name E-40, is an American rapper, entrepreneur, and investor from Vallejo, California. He is a founding member of the rap group The Click, and the founder of Sick Wid It Records. He has released twenty-two studio albums to date, appeared on numerous movie soundtracks, and has also done guest appearances on a host of other rap albums. Initially an underground artist, his 1995 solo album In a Major Way opened him up to a wider audience. Beginning in 1998, he began collaborating with more mainstream rappers outside of the Bay Area. He rose to even higher mainstream popularity in 2006 with his single "Tell Me When to Go" which was produced by Lil Jon.

Music career

1986–99

This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/E-40

E40

E40 may refer to:

  • Nimzo-Indian Defense, Encyclopaedia of Chess Openings code
  • European route E40, a road extending from France to Kazakhstan
  • E-40, a rapper
  • GE E40, a locomotive
  • a name for the fuel blend of 40% ethanol and 60% gasoline
  • E40 screw, a type of Edison screw
  • HMS E40, a British E class submarine
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/E40

    Podcasts:

    E-40

    • E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)

      The official WorldStarHipHop premiere of E-40’s "Choices (Yup)" music video off his 'Sharp On All 4 Corners' album. Purchase the album here on iTunes: https://goo.gl/xEqeyM. The single, "Choices (Yup)", is also available on iTunes: https://goo.gl/iLw6w6. Follow E-40: https://twitter.com/e40 https://instagram.com/e40 Sick Wid' It Records SUBSCRIBE to the Official WorldStarHipHop Channel for more original WorldStar material, music video premieres, and more: http://goo.gl/jl4las More WorldStarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar (Follow) https://fb.com/worldstarhiphop (Like) http://instagram.com/realwshh (Photos) http://shop.worldstarhiphop.com (Shop)

      published: 22 Jun 2015
    • E-40 "My Shit Bang"

      Revenue Retrievin Graveyard Shift

      published: 12 Mar 2013
    • E-40 - Tell Me When To Go (Official Music Video) | Warner Records

      Tell Me When To Go by E-40 from the album My Ghetto Report Card © 2006 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Lyrics: Tell me when to go Tell me when to go Tell me when to go Tell me when to go Go [Dumb x8] Jesus Christ had dreads So shake 'em I ain't got none But I'm planning on growing some Imagine all the Hebrews going dumb Dancing on top of chariots and turning tight one Ooh, tell me when to go Talking on my ghettro on the way to the sto' My 2nd or 3rd trip Some Henny Some Swishers And some Listerine Strips Dr. Greenthumb lift Just to ease my thoughts Not just the cops But the homies you got to watch The moon is full Look at the dark clouds Sitting in my scraper Watching Oakland go wild Ta-dow! I don't bump mainstream I knock underground All that other ...

      published: 27 Oct 2009
    • E-40 - U And Dat (Featuring T. Pain & Kandi Girl) [HD]

      Official music video for U And Dat by E-40 from the album 'My Ghetto Card Report' - remastered in HD! 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Lyrics: Girl, I been shaking, sticking, and moving tryin' to get you and that booty Tryin' to get to you and that booty Tryin' to get to you and that booty Girl, I been shaking and acting a donkey tryin' to get you and that monkey Tryin' to get to you and that monkey Tryin' to get to you and that monkey Girl, he simpin' (Simpin') I walk up in the club with a limpin' (limpin') God listen, what you gonna do with this pimpin'? What you gonna do with this pimpin'? Girl, I'm a call ya (call ya) Later on tonight or tomorrow ('morrow), now follow What you gonna do with this baller? What you gonna do with this baller? What yo...

      published: 27 Oct 2009
    • E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)

      Add this song to your Spotify playlist: https://spoti.fi/2MW9rmL Directed by @JaeSynth Produced by Traxamillion

      published: 15 Mar 2021
    • Richie Rich ft @E40TV & @VWhiteent "We Different" | (Official Music Video)

      Richie Rich❗️ Richie Rich’s "We Different," featuring E-40 and V White, is a laid-back track that reflects on growth and evolution, moving from the streets to a more elevated lifestyle. Produced by JPZ with a smooth 83 BPM beat, it’s perfect for cruising while listening to seasoned bars from three Bay Area legends. Richie Rich starts the song with a declaration of change—leaving the old hustle behind for a healthier, more refined way of life: "Heavy on the veggies, only Za’s never Reggie’s." He keeps it grounded with lines like, "I slid the corner in my seven deuce, these niggas think that thing a 442," blending Oakland pride with a love for the finer things. V White follows with his signature smooth delivery, mixing street talk with moments of luxury. From Pappadeaux’s to boat shows, h...

      published: 17 Jan 2025
    • E-40 - Sprinkle Me ft. Suga-T

      E-40's official music video for 'Sprinkle Me'. Click to listen to E-40 on Spotify: http://smarturl.it/E40Spot?IQid=E40SM As featured on The Best of E-40: Yesterday, Today & Tomorrow. Click to buy the track or album via iTunes: http://smarturl.it/E40BOiTunes?IQid=E40SM Google Play: http://smarturl.it/E40SMPlay?IQid=E40SM Amazon: http://smarturl.it/E40BOAm?IQid=E40SM More From E-40 Rapper's Ball: https://youtu.be/aqkxWMxaBOU Automatic: https://youtu.be/DZiPcTehbXs Nah, Nah…:https://youtu.be/mLlQmrGYHLE More great Classic Hip Hop Videos here: http://smarturl.it/CHHPlaylist?IQid=E40SM Follow E-40 Facebook: https://www.facebook.com/e40 Twitter: https://twitter.com/e40 Instagram: https://instagram.com/e40/?hl=en Myspace: https://myspace.com/e40 Subscribe to E-40 on YouTube: http://smartur...

      published: 25 Oct 2009
    • U and Dat - E-40 ft T-pain

      u and dat best song

      published: 16 Aug 2008
    • E-40 Snap Yo Fingers Feat. Lil Jon ( ZeniBeat Remix )

      🔥 E-40 Snap Yo Fingers Feat. Lil Jon (ZeniBeat Remix) 🔥 💥 Follow me for more remixes and beats 🔥 🎧 Subscribe so you don’t miss the next drop!🎧 ◾️ Instagram https://www.instagram.com/zeni.beat/ ◾️ Facebook https://www.facebook.com/zenibeat/ ◾️ Spotify https://open.spotify.com/intl-it/artist/1ejuCgzRBx7q88rsFyfsiM?si=KUbi5zv4QKq6dDsRsxa2qg&nd=1&dlsi=909606b0b32a4204 #ZeniBeat #SnapYoFingers #LilJon #Remix #Techno #TrapRemix #HipHop2025 #BassBoosted #MusicVideo #DanceChallenge #TrapNation #BeatDrop #ViralRemix #PartyMusic #DJMix #TikTokMusic #ClubHits

      published: 25 Jan 2025
    • E-40 - Captain Save A Hoe (Official Video) ft. The Click, D-Shot, B-Legit, Suga T

      E-40's official music video for 'Captain Save A Hoe'. Click to listen to E-40 on Spotify: http://smarturl.it/E40Spot?IQid=E40CS As featured on The Best of E-40: Yesterday, Today & Tomorrow. Click to buy the track or album via iTunes: http://smarturl.it/E40BOiTunes?IQid=E40CS Google Play: http://smarturl.it/E40CSPlay?IQid=E40CS Amazon: http://smarturl.it/E40BOAm?IQid=E40CS More From E-40 Rapper's Ball: https://youtu.be/aqkxWMxaBOU Automatic: https://youtu.be/DZiPcTehbXs Nah, Nahâ ¦:https://youtu.be/mLlQmrGYHLE More great Classic Hip Hop Videos here: http://smarturl.it/CHHPlaylist?IQid=E40CS Follow E-40 Facebook: https://www.facebook.com/e40 Twitter: https://twitter.com/e40 Instagram: https://instagram.com/e40/?hl=en Myspace: https://myspace.com/e40 Subscribe to E-40 on YouTube: http:/...

      published: 25 Oct 2009
    developed with YouTube
    E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)
    4:54

    E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)

    • Order:
    • Duration: 4:54
    • Uploaded Date: 22 Jun 2015
    • views: 14366727
    The official WorldStarHipHop premiere of E-40’s "Choices (Yup)" music video off his 'Sharp On All 4 Corners' album. Purchase the album here on iTunes: https://goo.gl/xEqeyM. The single, "Choices (Yup)", is also available on iTunes: https://goo.gl/iLw6w6. Follow E-40: https://twitter.com/e40 https://instagram.com/e40 Sick Wid' It Records SUBSCRIBE to the Official WorldStarHipHop Channel for more original WorldStar material, music video premieres, and more: http://goo.gl/jl4las More WorldStarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar (Follow) https://fb.com/worldstarhiphop (Like) http://instagram.com/realwshh (Photos) http://shop.worldstarhiphop.com (Shop)
    https://wn.com/E_40_Choices_(Yup)_(Wshh_Exclusive_Official_Music_Video)
    E-40 "My Shit Bang"
    4:17

    E-40 "My Shit Bang"

    • Order:
    • Duration: 4:17
    • Uploaded Date: 12 Mar 2013
    • views: 15143725
    Revenue Retrievin Graveyard Shift
    https://wn.com/E_40_My_Shit_Bang
    E-40 - Tell Me When To Go (Official Music Video) | Warner Records
    4:30

    E-40 - Tell Me When To Go (Official Music Video) | Warner Records

    • Order:
    • Duration: 4:30
    • Uploaded Date: 27 Oct 2009
    • views: 25467399
    Tell Me When To Go by E-40 from the album My Ghetto Report Card © 2006 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Lyrics: Tell me when to go Tell me when to go Tell me when to go Tell me when to go Go [Dumb x8] Jesus Christ had dreads So shake 'em I ain't got none But I'm planning on growing some Imagine all the Hebrews going dumb Dancing on top of chariots and turning tight one Ooh, tell me when to go Talking on my ghettro on the way to the sto' My 2nd or 3rd trip Some Henny Some Swishers And some Listerine Strips Dr. Greenthumb lift Just to ease my thoughts Not just the cops But the homies you got to watch The moon is full Look at the dark clouds Sitting in my scraper Watching Oakland go wild Ta-dow! I don't bump mainstream I knock underground All that other shit Sugar-coated and watered down I'm from the Bay where we hyphy and go dumb From the soil where them rappers be getting they lingo from Tell me when to go [x4] Go [Dumb x8] Tell me when to go [x4] Go [Dumb x8] I'm off that 18 purple juice Like a man Labeled the Black Zeus King of the Super Duper (Hyphy x5) And your wifey She don't (Like me x5) From the Bay to the A Put me in the back wood Swisha sweet buds Go to the sto' Bitches wish I wrote I said they couldn't be saved by (John Doe x2) I slid past on the gas Bitches looking at me It's good x2 Like the granddaddy Cross game You get flipped like a burger patty Or zig-zagged Pass me a big old fatty I drink white with a snow bunny Talking big shit in the scraper Goin hella dummy 1800 Jose Cuervo Yaddadamean Know I'm saying, though? Tell me when to go [x4] Go [Dumb x8] Tell me when to go [x4] Go [Dumb x8] Ghost-ride the whip [x8] Now Scrape [x4] Put your stunnin' shades on [x2] Now, gas, brake, dip, dip [x4] Shake them dreads [x4] Let me see you show ya grill [x4] Now Thizz-Face [x4] Doors open, man. [x4] Now... Watch em swang Tell me when to go [x4] Go [Dumb x8] Tell me when to go [x4] Go [Dumb x8] Stream & download the song here: *** Subscribe to the Warner Records channel: https://bit.ly/Subscribe_Warner_Records Follow E-40 https://twitter.com/e40?lang=en https://www.instagram.com/e40/?hl=en https://www.facebook.com/e40/ About Warner Records: Warner Bros. Records opened for business on March 19, 1958, above the film studio's machine shop at 3701 Warner Blvd. in Burbank. Among the artists who have found a home at the company: Frank Sinatra, Duke Ellington, The Kinks, Joni Mitchell, Jimi Hendrix, Randy Newman, Black Sabbath, The Grateful Dead, Van Morrison, Neil Young, Alice Cooper, Captain Beefheart, James Taylor, Richard Pryor, Rod Stewart, George Harrison, Prince, Van Halen, The Sex Pistols, Talking Heads, The Who, Eric Clapton, Madonna, Wale, Common, Faith Hill, John Fogerty, Kimbra, R.E.M., Red Hot Chili Peppers, Michelle Branch, Green Day, Jane's Addiction, Muse, Seal, Jason Derulo, Tom Petty and countless others. Follow Warner Records: Instagram: https://www.instagram.com/warnerrecords/ Facebook: https://www.facebook.com/WarnerRecords/ Twitter: https://twitter.com/warnerrecords Homepage: http://www.warnerrecords.com/ 00:00 Lyrics in the description 00:05 E-40 - Tell Me When To Go #E40 #TellMeWhenToGo #WarnerRecords
    https://wn.com/E_40_Tell_Me_When_To_Go_(Official_Music_Video)_|_Warner_Records
    E-40 - U And Dat (Featuring T. Pain & Kandi Girl) [HD]
    3:32

    E-40 - U And Dat (Featuring T. Pain & Kandi Girl) [HD]

    • Order:
    • Duration: 3:32
    • Uploaded Date: 27 Oct 2009
    • views: 32863980
    Official music video for U And Dat by E-40 from the album 'My Ghetto Card Report' - remastered in HD! 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Lyrics: Girl, I been shaking, sticking, and moving tryin' to get you and that booty Tryin' to get to you and that booty Tryin' to get to you and that booty Girl, I been shaking and acting a donkey tryin' to get you and that monkey Tryin' to get to you and that monkey Tryin' to get to you and that monkey Girl, he simpin' (Simpin') I walk up in the club with a limpin' (limpin') God listen, what you gonna do with this pimpin'? What you gonna do with this pimpin'? Girl, I'm a call ya (call ya) Later on tonight or tomorrow ('morrow), now follow What you gonna do with this baller? What you gonna do with this baller? What you gonna do when I bend the block (bend the block)? Pull up on that ass in a brand new drop (brand new drop)? Speakers on blast with tremendous knock ('mendous knock)? TV's in the dash, rims just won't stop You need to be down with a pimp like me I ain't turning down nothing but my collar, you see I'm a leave you with my number; you should holler at me 'Cause I'm a baller; can't nobody hustle harder than me, oh Oh, your ass is right I ain't tryin' to let that pass me tonight I'm a put my bid in and tell you something slick Whisper in your ear while I'm holding my dick I don't mean no harm, it's the hood in me (hood in me) Sipping on that Renshaw Hennessy (Hennessy) Psychedelic colors in my jewelry (jewelry) Suckers hella jealous 'cause you digging me, oh Now what you gonna do, mama? I'm tryin' to dip later on, me and you, mama I like the way that you groove and you move, mama You know the women love me; I'm the forty water (forty water) Popping my P's 'cause I'm laced with game Nothin' but the Yay flowing through my vein She wear Miss Sixty, can't fit in the Gucci 'Cause her ass big enough to sit a cup on her booty (goodness!) Yeah, I see you looking (looking) But my ass in these jeans got you shook, and (shook, and) I don't think you know what to do with this pussy What you gonna do with this pussy? Yeah, I know you want this (want this) Tryin' to chase me through the club for this good shit (good shit) But I don't think you can handle this pussy What you gonna do with this pussy? You looking like you got that good gooshy, gooshy Fucking 'round with me, I beat the brakes off that pussy Have your ass cumming like a porn star movie Tell your friends, and I bet they all wanna do me Hos know me, I'm E-Fo-Oh (E-Fo-Oh) They recognize pimping when I step in the door (step in the door) Higher than a satellite full of that dro (full of that dro) Holla at a playa when you ready to go, oh Subscribe to the Warner Records channel: https://bit.ly/Subscribe_Warner_Records Follow E-40 https://twitter.com/e40?lang=en https://www.instagram.com/e40/?hl=en https://www.facebook.com/e40/ About Warner Records: Warner Bros. Records opened for business on March 19, 1958, above the film studio's machine shop at 3701 Warner Blvd. in Burbank. Among the artists who have found a home at the company: Frank Sinatra, Duke Ellington, The Kinks, Joni Mitchell, Jimi Hendrix, Randy Newman, Black Sabbath, The Grateful Dead, Van Morrison, Neil Young, Alice Cooper, Captain Beefheart, James Taylor, Richard Pryor, Rod Stewart, George Harrison, Prince, Van Halen, The Sex Pistols, Talking Heads, The Who, Eric Clapton, Madonna, Wale, Common, Faith Hill, John Fogerty, Kimbra, R.E.M., Red Hot Chili Peppers, Michelle Branch, Green Day, Jane's Addiction, Muse, Seal, Jason Derulo, Tom Petty and countless others. Follow Warner Records: Instagram: https://www.instagram.com/warnerrecords/ Facebook: https://www.facebook.com/WarnerRecords/ Twitter: https://twitter.com/warnerrecords Homepage: http://www.warnerrecords.com/ 00:00 Lyrics in the description 00:05 E-40 - U And Dat #E40 #UAndDat #WarnerRecords
    https://wn.com/E_40_U_And_Dat_(Featuring_T._Pain_Kandi_Girl)_Hd
    E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)
    4:54

    E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)

    • Order:
    • Duration: 4:54
    • Uploaded Date: 15 Mar 2021
    • views: 34400030
    Add this song to your Spotify playlist: https://spoti.fi/2MW9rmL Directed by @JaeSynth Produced by Traxamillion
    https://wn.com/E_40_I_Stand_On_That_Ft._Joyner_Lucas_T.I._(Music_Video)
    Richie Rich  ft @E40TV & @VWhiteent  "We Different" | (Official Music Video)
    3:51

    Richie Rich ft @E40TV & @VWhiteent "We Different" | (Official Music Video)

    • Order:
    • Duration: 3:51
    • Uploaded Date: 17 Jan 2025
    • views: 321052
    Richie Rich❗️ Richie Rich’s "We Different," featuring E-40 and V White, is a laid-back track that reflects on growth and evolution, moving from the streets to a more elevated lifestyle. Produced by JPZ with a smooth 83 BPM beat, it’s perfect for cruising while listening to seasoned bars from three Bay Area legends. Richie Rich starts the song with a declaration of change—leaving the old hustle behind for a healthier, more refined way of life: "Heavy on the veggies, only Za’s never Reggie’s." He keeps it grounded with lines like, "I slid the corner in my seven deuce, these niggas think that thing a 442," blending Oakland pride with a love for the finer things. V White follows with his signature smooth delivery, mixing street talk with moments of luxury. From Pappadeaux’s to boat shows, his verses keep things light yet remind listeners of the constant hustle. E-40 brings his unmistakable style and wordplay, reflecting on his journey from the streets in 1986 to a life of success and lessons learned: "Stay ready, ain’t got to get ready, that’s what legends say." His verse ties the themes of grind and rewards together seamlessly. "We Different" is more than a success story—it’s about growth, loyalty, and the mindset that separates real hustlers from the rest. The beat by JPZ keeps the vibe smooth, letting each artist shine while reinforcing the track’s powerful message. This song is a testament to the longevity and influence of these Bay Area icons, celebrating their evolution while staying true to their roots. Contact: richierichmgmts@gmail.com | https://linktr.ee/richierrich 📌Dont Forget To Tap Notification Bell ☞🛎◃ For Live Updates🔻 https://linktw.in/ymvatO ► Subscribe to Richie Rich’s YouTube🔻 https://linktw.in/ymvatO ►Connect With Richie Rich TikTok | https://www.tiktok.com/@tharealrichierich Instagram | https://www.instagram.com/tharealrichierich/ Spotify | https://open.spotify.com/artist/4hSGrfIm5xRloHXESKxrFd Website | https://dubbleworldwide.com/ Facebook | https://www.facebook.com/tharealrichierich ► Official YouTube Channel Of Richie Rich Subscribe For The Latest music videos, performances, and more👇❗️❗️ https://linktw.in/ymvatO ► Richie Rich | Booking Information🔻 Email: richierichmgmts@gmail.com | Booking Inquiry: https://forms.gle/bHagUEdi5qtx7gE18 🔻if You Haven't Subscribed Richie Rich’s YouTube Channel ⬅ 📺Hit Link 🔗 Below 🔻 https://linktw.in/ymvatO Follow Richie Rich on ALL streaming and social platforms now. Email: richierichmgmts@gmail.com | Booking Inquiry: https://forms.gle/bHagUEdi5qtx7gE18 | https://linktw.in/ymvatO #richierich #oaklandrichierich #richierichrichard #richardalbum #evenbiz #empire
    https://wn.com/Richie_Rich_Ft_E40Tv_Vwhiteent_We_Different_|_(Official_Music_Video)
    E-40 - Sprinkle Me ft. Suga-T
    4:07

    E-40 - Sprinkle Me ft. Suga-T

    • Order:
    • Duration: 4:07
    • Uploaded Date: 25 Oct 2009
    • views: 11225242
    E-40's official music video for 'Sprinkle Me'. Click to listen to E-40 on Spotify: http://smarturl.it/E40Spot?IQid=E40SM As featured on The Best of E-40: Yesterday, Today & Tomorrow. Click to buy the track or album via iTunes: http://smarturl.it/E40BOiTunes?IQid=E40SM Google Play: http://smarturl.it/E40SMPlay?IQid=E40SM Amazon: http://smarturl.it/E40BOAm?IQid=E40SM More From E-40 Rapper's Ball: https://youtu.be/aqkxWMxaBOU Automatic: https://youtu.be/DZiPcTehbXs Nah, Nah…:https://youtu.be/mLlQmrGYHLE More great Classic Hip Hop Videos here: http://smarturl.it/CHHPlaylist?IQid=E40SM Follow E-40 Facebook: https://www.facebook.com/e40 Twitter: https://twitter.com/e40 Instagram: https://instagram.com/e40/?hl=en Myspace: https://myspace.com/e40 Subscribe to E-40 on YouTube: http://smarturl.it/E40Sub?IQid=E40SM --------- Lyrics: I be more hipper than a hippopotamus Get off in your head like a neurologist Pushin more weight than Atlas Got a partner by the name of 2Pacalypse The seven-oh-seven my roots go hella far back to Flor Terrace I pull a forty out of my ballcap and den I flush it down my esopha-garus The group that I'm with The Click Suga, D-Shot, Legit Family orientated Game related, it's the shit Killing motherfuckers off crucial Sittin em down mutual Running through these lyrics as if I was fibered like Metamucil Suga Suga (ahh yeah that's me) Suga Suga That's my sista (you know my name!) Sprinkle me girl, sprinkle me girl (ahaha) Sprinkle me girl, sprinkle me girl Suga Suga (that's what they call me) Dat's my sista (I ain't right!) Sprinkle me girl, sprinkle me girl, sprinkle me girl, sprinkle me girl
    https://wn.com/E_40_Sprinkle_Me_Ft._Suga_T
    U and Dat - E-40 ft T-pain
    3:25

    U and Dat - E-40 ft T-pain

    • Order:
    • Duration: 3:25
    • Uploaded Date: 16 Aug 2008
    • views: 8535326
    u and dat best song
    https://wn.com/U_And_Dat_E_40_Ft_T_Pain
    E-40 Snap Yo Fingers Feat. Lil Jon ( ZeniBeat Remix )
    3:13

    E-40 Snap Yo Fingers Feat. Lil Jon ( ZeniBeat Remix )

    • Order:
    • Duration: 3:13
    • Uploaded Date: 25 Jan 2025
    • views: 294
    🔥 E-40 Snap Yo Fingers Feat. Lil Jon (ZeniBeat Remix) 🔥 💥 Follow me for more remixes and beats 🔥 🎧 Subscribe so you don’t miss the next drop!🎧 ◾️ Instagram https://www.instagram.com/zeni.beat/ ◾️ Facebook https://www.facebook.com/zenibeat/ ◾️ Spotify https://open.spotify.com/intl-it/artist/1ejuCgzRBx7q88rsFyfsiM?si=KUbi5zv4QKq6dDsRsxa2qg&nd=1&dlsi=909606b0b32a4204 #ZeniBeat #SnapYoFingers #LilJon #Remix #Techno #TrapRemix #HipHop2025 #BassBoosted #MusicVideo #DanceChallenge #TrapNation #BeatDrop #ViralRemix #PartyMusic #DJMix #TikTokMusic #ClubHits
    https://wn.com/E_40_Snap_Yo_Fingers_Feat._Lil_Jon_(_Zenibeat_Remix_)
    E-40 - Captain Save A Hoe (Official Video) ft. The Click, D-Shot, B-Legit, Suga T
    4:50

    E-40 - Captain Save A Hoe (Official Video) ft. The Click, D-Shot, B-Legit, Suga T

    • Order:
    • Duration: 4:50
    • Uploaded Date: 25 Oct 2009
    • views: 10583255
    E-40's official music video for 'Captain Save A Hoe'. Click to listen to E-40 on Spotify: http://smarturl.it/E40Spot?IQid=E40CS As featured on The Best of E-40: Yesterday, Today & Tomorrow. Click to buy the track or album via iTunes: http://smarturl.it/E40BOiTunes?IQid=E40CS Google Play: http://smarturl.it/E40CSPlay?IQid=E40CS Amazon: http://smarturl.it/E40BOAm?IQid=E40CS More From E-40 Rapper's Ball: https://youtu.be/aqkxWMxaBOU Automatic: https://youtu.be/DZiPcTehbXs Nah, Nahâ ¦:https://youtu.be/mLlQmrGYHLE More great Classic Hip Hop Videos here: http://smarturl.it/CHHPlaylist?IQid=E40CS Follow E-40 Facebook: https://www.facebook.com/e40 Twitter: https://twitter.com/e40 Instagram: https://instagram.com/e40/?hl=en Myspace: https://myspace.com/e40 Subscribe to E-40 on YouTube: http://smarturl.it/E40Sub?IQid=E40CS --------- Lyrics: Ah is a, Ah is a, Should I save her? I want to be saved!!!! It's 1993 and niggas need to miss me be savin' these hoes You know how these tricks we be buyin' 'em clothes Wanna taxi hoes on vogues with the beat And have 'em sittin' next to 'em in the front seat But not B see I'm a hog up out the V And my motto is fuck a hoe and hit the throttle To the smoke talkin' on my Okie doe World wide I got a clydes up in Tokoyo
    https://wn.com/E_40_Captain_Save_A_Hoe_(Official_Video)_Ft._The_Click,_D_Shot,_B_Legit,_Suga_T
    • E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)

      Add this song to your Spotify playlist: https://spoti.fi/2MW9rmL Directed by @JaeSynth Produced by Traxamillion

      published: 15 Mar 2021
    • E-40 "MOB" OFFICIAL MUSIC VIDEO

      From the new album Terms & Conditions! Pre-order here https://music.empi.re/shortand40

      published: 18 Dec 2020
    • E-40 - Chase The Money ft. Quavo, Roddy Ricch, A$AP Ferg, ScHoolboy Q

      E-40 - Chase The Money listen: https://E-40.lnk.to/ChaseTheMoney Pre-order the new album "Practice Makes Paper": https://E-40.lnk.to/PracticeMakesPaper Music video by E-40 performing Chase The Money. © 2019 Heavy On The Grind Entertainment http://vevo.ly/lCYBks

      published: 18 Jun 2019
    • E-40 - Tell Me When To Go (Official Music Video) | Warner Records

      Tell Me When To Go by E-40 from the album My Ghetto Report Card © 2006 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Lyrics: Tell me when to go Tell me when to go Tell me when to go Tell me when to go Go [Dumb x8] Jesus Christ had dreads So shake 'em I ain't got none But I'm planning on growing some Imagine all the Hebrews going dumb Dancing on top of chariots and turning tight one Ooh, tell me when to go Talking on my ghettro on the way to the sto' My 2nd or 3rd trip Some Henny Some Swishers And some Listerine Strips Dr. Greenthumb lift Just to ease my thoughts Not just the cops But the homies you got to watch The moon is full Look at the dark clouds Sitting in my scraper Watching Oakland go wild Ta-dow! I don't bump mainstream I knock underground All that other ...

      published: 27 Oct 2009
    • E-40 "My Shit Bang"

      Revenue Retrievin Graveyard Shift

      published: 12 Mar 2013
    • E-40 - You And That Booty

      Original song from e-40.

      published: 16 Sep 2009
    • E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)

      The official WorldStarHipHop premiere of E-40’s "Choices (Yup)" music video off his 'Sharp On All 4 Corners' album. Purchase the album here on iTunes: https://goo.gl/xEqeyM. The single, "Choices (Yup)", is also available on iTunes: https://goo.gl/iLw6w6. Follow E-40: https://twitter.com/e40 https://instagram.com/e40 Sick Wid' It Records SUBSCRIBE to the Official WorldStarHipHop Channel for more original WorldStar material, music video premieres, and more: http://goo.gl/jl4las More WorldStarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar (Follow) https://fb.com/worldstarhiphop (Like) http://instagram.com/realwshh (Photos) http://shop.worldstarhiphop.com (Shop)

      published: 22 Jun 2015
    • U and Dat - E-40 ft T-pain

      u and dat best song

      published: 16 Aug 2008
    • Big Sean - I Don't Fuck With You (Official Music Video) ft. E-40

      D A R K S K Y P A R A D I S E AVAILABLE NOW! Deluxe: http://smarturl.it/DarkSkyParadiseDex?IQid=vevo Standard: http://smarturl.it/DarkSkyParadiseS?IQid=vevo Stream On Spotify: http://smarturl.it/DSPDSpotify?IQid=vevo

      published: 06 Nov 2014
    developed with YouTube
    E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)
    4:54

    E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)

    • Order:
    • Duration: 4:54
    • Uploaded Date: 15 Mar 2021
    • views: 34400030
    Add this song to your Spotify playlist: https://spoti.fi/2MW9rmL Directed by @JaeSynth Produced by Traxamillion
    https://wn.com/E_40_I_Stand_On_That_Ft._Joyner_Lucas_T.I._(Music_Video)
    E-40 "MOB" OFFICIAL MUSIC VIDEO
    2:50

    E-40 "MOB" OFFICIAL MUSIC VIDEO

    • Order:
    • Duration: 2:50
    • Uploaded Date: 18 Dec 2020
    • views: 10307940
    From the new album Terms & Conditions! Pre-order here https://music.empi.re/shortand40
    https://wn.com/E_40_Mob_Official_Music_Video
    E-40 - Chase The Money ft. Quavo, Roddy Ricch, A$AP Ferg, ScHoolboy Q
    4:46

    E-40 - Chase The Money ft. Quavo, Roddy Ricch, A$AP Ferg, ScHoolboy Q

    • Order:
    • Duration: 4:46
    • Uploaded Date: 18 Jun 2019
    • views: 31243744
    E-40 - Chase The Money listen: https://E-40.lnk.to/ChaseTheMoney Pre-order the new album "Practice Makes Paper": https://E-40.lnk.to/PracticeMakesPaper Music video by E-40 performing Chase The Money. © 2019 Heavy On The Grind Entertainment http://vevo.ly/lCYBks
    https://wn.com/E_40_Chase_The_Money_Ft._Quavo,_Roddy_Ricch,_A_Ap_Ferg,_Schoolboy_Q
    E-40 - Tell Me When To Go (Official Music Video) | Warner Records
    4:30

    E-40 - Tell Me When To Go (Official Music Video) | Warner Records

    • Order:
    • Duration: 4:30
    • Uploaded Date: 27 Oct 2009
    • views: 25467399
    Tell Me When To Go by E-40 from the album My Ghetto Report Card © 2006 🔔 Subscribe & Turn on notifications to stay updated with new uploads! Lyrics: Tell me when to go Tell me when to go Tell me when to go Tell me when to go Go [Dumb x8] Jesus Christ had dreads So shake 'em I ain't got none But I'm planning on growing some Imagine all the Hebrews going dumb Dancing on top of chariots and turning tight one Ooh, tell me when to go Talking on my ghettro on the way to the sto' My 2nd or 3rd trip Some Henny Some Swishers And some Listerine Strips Dr. Greenthumb lift Just to ease my thoughts Not just the cops But the homies you got to watch The moon is full Look at the dark clouds Sitting in my scraper Watching Oakland go wild Ta-dow! I don't bump mainstream I knock underground All that other shit Sugar-coated and watered down I'm from the Bay where we hyphy and go dumb From the soil where them rappers be getting they lingo from Tell me when to go [x4] Go [Dumb x8] Tell me when to go [x4] Go [Dumb x8] I'm off that 18 purple juice Like a man Labeled the Black Zeus King of the Super Duper (Hyphy x5) And your wifey She don't (Like me x5) From the Bay to the A Put me in the back wood Swisha sweet buds Go to the sto' Bitches wish I wrote I said they couldn't be saved by (John Doe x2) I slid past on the gas Bitches looking at me It's good x2 Like the granddaddy Cross game You get flipped like a burger patty Or zig-zagged Pass me a big old fatty I drink white with a snow bunny Talking big shit in the scraper Goin hella dummy 1800 Jose Cuervo Yaddadamean Know I'm saying, though? Tell me when to go [x4] Go [Dumb x8] Tell me when to go [x4] Go [Dumb x8] Ghost-ride the whip [x8] Now Scrape [x4] Put your stunnin' shades on [x2] Now, gas, brake, dip, dip [x4] Shake them dreads [x4] Let me see you show ya grill [x4] Now Thizz-Face [x4] Doors open, man. [x4] Now... Watch em swang Tell me when to go [x4] Go [Dumb x8] Tell me when to go [x4] Go [Dumb x8] Stream & download the song here: *** Subscribe to the Warner Records channel: https://bit.ly/Subscribe_Warner_Records Follow E-40 https://twitter.com/e40?lang=en https://www.instagram.com/e40/?hl=en https://www.facebook.com/e40/ About Warner Records: Warner Bros. Records opened for business on March 19, 1958, above the film studio's machine shop at 3701 Warner Blvd. in Burbank. Among the artists who have found a home at the company: Frank Sinatra, Duke Ellington, The Kinks, Joni Mitchell, Jimi Hendrix, Randy Newman, Black Sabbath, The Grateful Dead, Van Morrison, Neil Young, Alice Cooper, Captain Beefheart, James Taylor, Richard Pryor, Rod Stewart, George Harrison, Prince, Van Halen, The Sex Pistols, Talking Heads, The Who, Eric Clapton, Madonna, Wale, Common, Faith Hill, John Fogerty, Kimbra, R.E.M., Red Hot Chili Peppers, Michelle Branch, Green Day, Jane's Addiction, Muse, Seal, Jason Derulo, Tom Petty and countless others. Follow Warner Records: Instagram: https://www.instagram.com/warnerrecords/ Facebook: https://www.facebook.com/WarnerRecords/ Twitter: https://twitter.com/warnerrecords Homepage: http://www.warnerrecords.com/ 00:00 Lyrics in the description 00:05 E-40 - Tell Me When To Go #E40 #TellMeWhenToGo #WarnerRecords
    https://wn.com/E_40_Tell_Me_When_To_Go_(Official_Music_Video)_|_Warner_Records
    E-40 "My Shit Bang"
    4:17

    E-40 "My Shit Bang"

    • Order:
    • Duration: 4:17
    • Uploaded Date: 12 Mar 2013
    • views: 15143725
    Revenue Retrievin Graveyard Shift
    https://wn.com/E_40_My_Shit_Bang
    E-40 - You And That Booty
    3:24

    E-40 - You And That Booty

    • Order:
    • Duration: 3:24
    • Uploaded Date: 16 Sep 2009
    • views: 13216970
    Original song from e-40.
    https://wn.com/E_40_You_And_That_Booty
    E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)
    4:54

    E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)

    • Order:
    • Duration: 4:54
    • Uploaded Date: 22 Jun 2015
    • views: 14366727
    The official WorldStarHipHop premiere of E-40’s "Choices (Yup)" music video off his 'Sharp On All 4 Corners' album. Purchase the album here on iTunes: https://goo.gl/xEqeyM. The single, "Choices (Yup)", is also available on iTunes: https://goo.gl/iLw6w6. Follow E-40: https://twitter.com/e40 https://instagram.com/e40 Sick Wid' It Records SUBSCRIBE to the Official WorldStarHipHop Channel for more original WorldStar material, music video premieres, and more: http://goo.gl/jl4las More WorldStarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar (Follow) https://fb.com/worldstarhiphop (Like) http://instagram.com/realwshh (Photos) http://shop.worldstarhiphop.com (Shop)
    https://wn.com/E_40_Choices_(Yup)_(Wshh_Exclusive_Official_Music_Video)
    U and Dat - E-40 ft T-pain
    3:25

    U and Dat - E-40 ft T-pain

    • Order:
    • Duration: 3:25
    • Uploaded Date: 16 Aug 2008
    • views: 8535326
    u and dat best song
    https://wn.com/U_And_Dat_E_40_Ft_T_Pain
    Big Sean - I Don't Fuck With You (Official Music Video) ft. E-40
    5:48

    Big Sean - I Don't Fuck With You (Official Music Video) ft. E-40

    • Order:
    • Duration: 5:48
    • Uploaded Date: 06 Nov 2014
    • views: 389646832
    D A R K S K Y P A R A D I S E AVAILABLE NOW! Deluxe: http://smarturl.it/DarkSkyParadiseDex?IQid=vevo Standard: http://smarturl.it/DarkSkyParadiseS?IQid=vevo Stream On Spotify: http://smarturl.it/DSPDSpotify?IQid=vevo
    https://wn.com/Big_Sean_I_Don't_Fuck_With_You_(Official_Music_Video)_Ft._E_40
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • E-40
      4:54
      E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)remove from playlist
    • E-40 - Tell Me When To Go (Official Music Video) | Warner Records
      4:30
      E-40 - Tell Me When To Go (Official Music Video) | Warner Recordsremove from playlist
    • E-40 - U And Dat (Featuring T. Pain & Kandi Girl) [HD]
      3:32
      E-40 - U And Dat (Featuring T. Pain & Kandi Girl) [HD]remove from playlist
    • E-40
      4:54
      E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)remove from playlist
    • Richie Rich  ft @E40TV & @VWhiteent
      3:51
      Richie Rich ft @E40TV & @VWhiteent "We Different" | (Official Music Video)remove from playlist
    • E-40 - Sprinkle Me ft. Suga-T
      4:07
      E-40 - Sprinkle Me ft. Suga-Tremove from playlist
    • E-40 Snap Yo Fingers Feat. Lil Jon ( ZeniBeat Remix )
      3:13
      E-40 Snap Yo Fingers Feat. Lil Jon ( ZeniBeat Remix )remove from playlist
    • E-40 - Captain Save A Hoe (Official Video) ft. The Click, D-Shot, B-Legit, Suga T
      4:50
      E-40 - Captain Save A Hoe (Official Video) ft. The Click, D-Shot, B-Legit, Suga Tremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)

    The official WorldStarHipHop premiere of E-40’s "Choices (Yup)" music video off his 'Sharp On All 4 Corners' album. Purchase the album here on iTunes: https://goo.gl/xEqeyM. The single, "Choices (Yup)", is also available on iTunes: https://goo.gl/iLw6w6. Follow E-40: https://twitter.com/e40 https://instagram.com/e40 Sick Wid' It Records SUBSCRIBE to the Official WorldStarHipHop Channel for more original WorldStar material, music video premieres, and more: http://goo.gl/jl4las More WorldStarHipHop: http://worldstarhiphop.com https://twitter.com/worldstar (Follow) https://fb.com/worldstarhiphop (Like) http://instagram.com/realwshh (Photos) http://shop.worldstarhiphop.com (Shop)
    4:54
    E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)
    The official WorldStarHipHop premiere of E-40’s "Choices (Yup)" music video off his 'Sharp...
    published: 22 Jun 2015
    Play in Full Screen
    4:17
    E-40 "My Shit Bang"
    Revenue Retrievin Graveyard Shift
    published: 12 Mar 2013
    Play in Full Screen
    4:30
    E-40 - Tell Me When To Go (Official Music Video) | Warner Records
    Tell Me When To Go by E-40 from the album My Ghetto Report Card © 2006 🔔 Subscribe & Turn...
    published: 27 Oct 2009
    Play in Full Screen
    3:32
    E-40 - U And Dat (Featuring T. Pain & Kandi Girl) [HD]
    Official music video for U And Dat by E-40 from the album 'My Ghetto Card Report' - remast...
    published: 27 Oct 2009
    Play in Full Screen
    4:54
    E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)
    Add this song to your Spotify playlist: https://spoti.fi/2MW9rmL Directed by @JaeSynth Pro...
    published: 15 Mar 2021
    Play in Full Screen
    3:51
    Richie Rich ft @E40TV & @VWhiteent "We Different" | (Official Music Video)
    Richie Rich❗️ Richie Rich’s "We Different," featuring E-40 and V White, is a laid-back tr...
    published: 17 Jan 2025
    Play in Full Screen
    4:07
    E-40 - Sprinkle Me ft. Suga-T
    E-40's official music video for 'Sprinkle Me'. Click to listen to E-40 on Spotify: http://...
    published: 25 Oct 2009
    Play in Full Screen
    3:25
    U and Dat - E-40 ft T-pain
    u and dat best song
    published: 16 Aug 2008
    Play in Full Screen
    3:13
    E-40 Snap Yo Fingers Feat. Lil Jon ( ZeniBeat Remix )
    🔥 E-40 Snap Yo Fingers Feat. Lil Jon (ZeniBeat Remix) 🔥 💥 Follow me for more remixes and b...
    published: 25 Jan 2025
    Play in Full Screen
    4:50
    E-40 - Captain Save A Hoe (Official Video) ft. The Click, D-Shot, B-Legit, Suga T
    E-40's official music video for 'Captain Save A Hoe'. Click to listen to E-40 on Spotify: ...
    published: 25 Oct 2009
    Play in Full Screen

    E-40

    Earl Stevens (born November 15, 1967) better known by his stage name E-40, is an American rapper, entrepreneur, and investor from Vallejo, California. He is a founding member of the rap group The Click, and the founder of Sick Wid It Records. He has released twenty-two studio albums to date, appeared on numerous movie soundtracks, and has also done guest appearances on a host of other rap albums. Initially an underground artist, his 1995 solo album In a Major Way opened him up to a wider audience. Beginning in 1998, he began collaborating with more mainstream rappers outside of the Bay Area. He rose to even higher mainstream popularity in 2006 with his single "Tell Me When to Go" which was produced by Lil Jon.

    Music career

    1986–99

    This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/E-40
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)

    Add this song to your Spotify playlist: https://spoti.fi/2MW9rmL Directed by @JaeSynth Produced by Traxamillion
    4:54
    E-40 "I STAND ON THAT" FT. JOYNER LUCAS & T.I. (MUSIC VIDEO)
    Add this song to your Spotify playlist: https://spoti.fi/2MW9rmL Directed by @JaeSynth Pro...
    published: 15 Mar 2021
    Play in Full Screen
    2:50
    E-40 "MOB" OFFICIAL MUSIC VIDEO
    From the new album Terms & Conditions! Pre-order here https://music.empi.re/shortand40
    published: 18 Dec 2020
    Play in Full Screen
    4:46
    E-40 - Chase The Money ft. Quavo, Roddy Ricch, A$AP Ferg, ScHoolboy Q
    E-40 - Chase The Money listen: https://E-40.lnk.to/ChaseTheMoney Pre-order the new album...
    published: 18 Jun 2019
    Play in Full Screen
    4:30
    E-40 - Tell Me When To Go (Official Music Video) | Warner Records
    Tell Me When To Go by E-40 from the album My Ghetto Report Card © 2006 🔔 Subscribe & Turn...
    published: 27 Oct 2009
    Play in Full Screen
    4:17
    E-40 "My Shit Bang"
    Revenue Retrievin Graveyard Shift
    published: 12 Mar 2013
    Play in Full Screen
    3:24
    E-40 - You And That Booty
    Original song from e-40.
    published: 16 Sep 2009
    Play in Full Screen
    4:54
    E-40 "Choices (Yup)" (WSHH Exclusive - Official Music Video)
    The official WorldStarHipHop premiere of E-40’s "Choices (Yup)" music video off his 'Sharp...
    published: 22 Jun 2015
    Play in Full Screen
    3:25
    U and Dat - E-40 ft T-pain
    u and dat best song
    published: 16 Aug 2008
    Play in Full Screen
    5:48
    Big Sean - I Don't Fuck With You (Official Music Video) ft. E-40
    D A R K S K Y P A R A D I S E AVAILABLE NOW! Deluxe: http://smarturl.it/DarkSkyParadise...
    published: 06 Nov 2014
    Play in Full Screen
    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×