- published: 08 Aug 2023
- views: 7717
'+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; })); }); -->
DeAndre Cortez Way (born July 28, 1990), better known by his stage name Soulja Boy Tell 'Em, or simply Soulja Boy, is an American rapper, record producer, actor, and entrepreneur born in Chicago, Illinois.
In September 2007, his single "Crank That (Soulja Boy)" reached number one on the US Billboard Hot 100. The single was initially self-published on the internet, and it later became a number-one hit in the United States for seven non-consecutive weeks starting in September 2007. On August 17 Way was listed at number 18 on the Forbes list of Hip-Hop Cash Kings of 2010 earning $7 million for that year.
Way has currently released three studio albums and one independent album: his debut studio album Souljaboytellem.com (2007) was certified platinum by the RIAA. However, his next two albums, iSouljaBoyTellem (2008) and The DeAndre Way (2010) did not match the commercial success of his debut, the latter only selling 100,000 copies, despite the success of several singles across both albums, such as "Kiss Me Thru the Phone" and "Turn My Swag On" (iSouljaBoyTellem) and "Pretty Boy Swag" (The DeAndre Way). Way digitally released his fifth studio album, Blessed, on July 28, 2015.
"Tell 'Em" is a song by American music duo Sleigh Bells from their debut album Treats. Written by Miller and sung by Alexis Krauss, the song is the album's opening track, and was released as its lead single.
Prior to the album's release, the track was available as a free download on April 28, 2010 via the Mom + Pop website. It was well received by critics, and frequently noted as a highlight of the album. The song was released to U.S. radio stations on April 28, 2010, but it failed to enter any charts.
In an interview with Drowned in Sound, Krauss referred to the song among others as "more collaborative in terms of me doing more work on melodies, harmonies and we plan on further explorations of this in the future." Miller, when asked about the duo's loud sound, referenced the song, stating, "It has this intense melody on it. I was afraid to do it for so long because I had abandoned heavy drone for a few years. But it was just there, always in the background and I was just craving it."
"Crank That (Soulja Boy)" is the debut single by American rapper Soulja Boy. It served as the lead single from his debut studio album souljaboytellem.com (2007) and accompanies the Soulja Boy dance. The song is recognized by its looping steelpan riff. It caused what has been called "the biggest dance fad since the [mid-1990s] Macarena", with an instructional YouTube video for the dance surpassing 27 million views by early 2008.
"Crank That (Soulja Boy)" spent seven weeks at number one on the U.S. Billboard Hot 100 in the fall of 2007, and was the number 21 on the Rolling Stone magazine's list of the 100 Best Songs of 2007. The song received a nomination for a Grammy Award for Best Rap Song at the 50th Grammy Awards but lost to Kanye West's song "Good Life". On January 6, 2008, it became the first song ever to sell 3 million digital copies in the US. In 2009 it was named the 23rd most successful song of the 2000s on the Billboard Hot 100 Songs of the Decade. It had sold 5,080,000 downloads in the US by February 2014.
Soulja or Souljah may refer to:
SoulJa (ソルジャ, Soruja, birth name: Johannes Marías Reijnders Zwan) is a Japanese hip-hop musician and songwriter. He is best known for his collaborations with singer Thelma Aoyama, "Koko ni Iru yo" and "Soba ni Iru ne" - the latter of which was the former Guinness World Records holder for the best selling digital single of all-time in Japan (until it was superseded by Greeeen's "Kiseki").
SoulJa's father is Japanese and his mother is from Belgium. He studied music, learning how to play the violin, cello and piano from a young age, due to the influence of his mother. During his childhood, he spent time in Belgium, Japan and America. At 15, he grew to love hip-hop music.
In 2003, he returned to Japan, and began creating music. He got his first big break when a song of his, "First Contact," was featured in a commercial for Men's Beauteen (featuring actor Joe Odagiri) in 2005. This led to several more offers to write commercial music for companies such as magazine Oggi, along with SoulJa's independent label debut. In late 2005, he released the EP First Contact under Rock & Hill Records.
Soulja Boy - Do You Got Money? (Music Video) Soulja World 3: https://souljaboy.ffm.to/souljaworld3 Soulja World Tour: https://linktr.ee/souljaworldtour Socials: http://www.twitter.com/souljaboy http://www.instagram.com/souljaboy http://www.facebook.com/souljaboy https://www.tiktok.com/@souljaboytv? Dir. By: Tra-V SODMG Records comment below what music video and content you want next. #souljaboy #souljaworld #sodmg
REMASTERED IN HD! Best of Soulja Boy Tell'em: https://goo.gl/V4M688 Subscribe here: https://goo.gl/k2s6xJ Music video by Soulja Boy Tell`em performing Crank That (Soulja Boy). (C) 2007 ColliPark Music/HHH/Interscope Records #SoulaBoyTellEm #CrankThat #Remastered
Music video by Soulja Boy Tell`em performing Kiss Me Thru The Phone. (C) 2008 ColliPark Music/Interscope Records
Full Article: https://hiphopdx.com/news/soulja-boy-net-worth-negative Subscribe to HipHopDX on Youtube for daily Hip Hop News: http://bit.ly/dxsubscribe Check out more of DX here on social media: http://www.hiphopdx.com https://twitter.com/hiphopdx https://www.facebook.com/hiphopdx http://instagram.com/hiphopdx Voice Over By: Ayeeedubb https://www.instagram.com/ayeeedubb/ Script Written By: Karan Singh Video Edit: CT https://www.instagram.com/goodluckct/ Video Manager: Jeremy Hecht http://www.instagram.com/jeremy_hecht Executive Producer: Sharath Cherian For over 21 years, HipHopDX has been at the forefront of Hip Hop culture, reaching over 3.2 million readers and 5 million followers per month. As one of the longest-standing Hip Hop digital publications, DX not only stays current on ...
Thanks to ExpressVPN for sponsoring this video. Go to https://expressvpn.com/jontron to take back your Internet privacy TODAY and find out how you can get 3 months free. FOLLOW ME ON INSTAGRAM HERE: http://www.instagram.com/jontronshow FOLLOW ME ON TWITTER HERE: http://www.twitter.com/jontronshow Cast: Jon Jafari - Himself Magical Living SouljaGame - Sergio Emilio Torres I'm tired - Yes I am Crew: Jon Jafari - Director/Lead Editor Mike Shayne - Director of Cinematography/Post Production Andrew Reynoso - Editor/Production Melanie Licata - Costume/Prop Designer Sergio Emilio Torres - Production
REMASTERED IN HD! Official Music Video for Turn My Swag On performed by Soulja Boy. Follow Soulja Boy: Instagram: https://www.instagram.com/souljaboy Facebook: https://www.facebook.com/souljaboy TikTok: https://www.tiktok.com/@souljaboytv #SouljaBoy #TurnMySwagOn #Remastered
Get ready for an exclusive tour of the luxurious Draco Mansion, featuring Big Draco himself! From the arcade machines to the swimming pool with outdoor TVs, witness the amazing life of Draco in this epic house tour! Don't miss it! Find REVOLT on TV here: https://revolt.tv/providers Stay connected with REVOLT here: Download our app for more exclusive content! https://revolt.onelink.me/7Lb8/e6zon0g1 + Subscribe now: http://bit.ly/REVOLT_Subscribe_Now Website: http://www.revolt.tv/?utm_source=YouTube&utm_medium=Organic_Referral (Surf) Instagram: http://Instagram.com/REVOLTTV (Follow) Twitter: http://twitter.com/REVOLTTV (Follow) Facebook: http://www.facebook.com/REVOLT (Like) Text Us! (404) 737-1393 Snapchat: Revolt.TV (Add) TikTok: REVOLT About REVOLT : Launched by Sean "Di...
Soulja Boy: The Biggest Liar in Rap History Click here to subscribe: https://tinyurl.com/SubHHC Soulja Boy became a superstar overnight when he dropped Crank That in 2007. But the buzz didn’t last for long and he ended up falling off just as fast as he blew up - and when he couldn’t keep the momentum up, he started lying for attention. Most rap fans have heard at least a couple of his wild made-up stories about himself, but today we’re breaking down how Soulja Boy is actually the biggest liar in rap history. Check out these videos too: Suge Knight Admits Killing Eazy-E? https://www.youtube.com/watch?v=m9sHOUG1bvY Why Suge Knight Tried To Kill Snoop Dogg https://www.youtube.com/watch?v=oAVHRmXvGos Everyone Drake Took Shots At On "Her Loss" https://www.youtube.com/watch?v=IHUFyLWPT...
Soulja Boy - Soulja Season (Official Video) NEW ALBUM "SOULJA SEASON" MAY 12 https://souljaboy.ffm.to/souljaseason https://souljaboy.ffm.to/souljaboy SOULJAWORLD Tour: https://www.livenation.com/artist/K8vZ917G6TV/soulja-boy-events #souljaboy #souljaseason
Music video by Soulja Boy Tell'em performing Blowing Me Kisses. (C) 2010 ColliPark Music/Interscope Records
REMASTERED IN HD! Best of Soulja Boy Tell'em: https://goo.gl/V4M688 Subscribe here: https://goo.gl/k2s6xJ Music video by Soulja Boy Tell`em performing Crank That (Soulja Boy). (C) 2007 ColliPark Music/HHH/Interscope Records #SoulaBoyTellEm #CrankThat #Remastered
🎧 Soulja Boy - Crank That (Lyrics) 🔔 Turn on notifications to stay updated with new uploads! Soulja Boy Tell'em - Crank That (Soulja Boy) (Official Music Video) https://www.youtube.com/watch?v=8UFIYGkROII 👉Soulja Boy https://twitter.com/SouljaBoy https://www.instagram.com/souljaboy/ https://music.apple.com/us/artist/soulja-boy-tell-em/251832454 https://open.spotify.com/artist/6GMYJwaziB4ekv1Y6wCDWS https://www.twitch.tv/souljaboy https://www.youtube.com/souljaboytv/about 👉Dave Lyrics https://www.facebook.com/SDaveFromYT Disclaimer: I do not own anything, the audio/track used in this video. Owners of songs earns on their own songs on this channel. And all credits going to them. No copyright infringement intended. Please support the original artist. © If any producer or label has an ...
Soulja Boy: https://music.apple.com/br/artist/soulja-boy-tell-em/251832454 https://www.facebook.com/souljaboy/ https://www.instagram.com/souljaboy/ https://soundcloud.com/souljaboymusic https://open.spotify.com/artist/6GMYJwaziB4ekv1Y6wCDWS https://www.tiktok.com/@souljaboytv https://twitter.com/SouljaBoy https://www.sodmg.shop/ https://www.youtube.com/user/SouljaBoyTellemVEVO "Crank That": https://music.apple.com/br/album/crank-that-soulja-boy/1443190317?i=1443190324 https://open.spotify.com/album/5wFQi4xOTXILQSKQr0Ft8s?highlight=spotify:track:66TRwr5uJwPt15mfFkzhbi https://www.youtube.com/watch?v=8UFIYGkROII Lyrics: Soulja boy off in this hoe Watch me crank it Watch me roll Watch me crank dat soulja boy Then super man dat hoe Now, watch me you (Crank dat soulja boy) Now, watch me you ...
yeah pretty much
Follow: http://twitter.com/souljaboy #sodmg
Never miss our update! Please subscribe to Happy Sing Lyrics channel here: https://bit.ly/2oYePpF CRANK DAT SOULJA BOY - SOULJA BOY (LYRICS) all rights belong to original artist and label. No copyright intended. Sing along online to your favorite songs with HappySingLyrics. Follow Artist on: Website : http://www.sodmg.com/ Twitter : https://twitter.com/souljaboy Facebook : https://www.facebook.com/souljaboy Instagram : https://www.instagram.com/souljaboy/ YouTube : https://www.youtube.com/user/SouljaBoyTellemVEVO Spotify : https://open.spotify.com/artist/6GMYJwaziB4ekv1Y6wCDWS -- Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a ...
Soulja Boy Tell'em - Crank That (Soulja Boy) (Lyrics) Stream/Download: https://lnk.to/CrankThat Follow our Spotify Playlist: https://loku.lnk.to/Spotify Soulja Boy Tell'em https://www.instagram.com/souljaboy/ https://www.facebook.com/souljaboy/ Follow Loku: https://bio.to/Loku Wallpaper: https://unsplash.com/ For business enquiries or anything else please reach out: [email protected] Lyrics [Intro] Yuuuuuuu Soulja Boy tell 'em Ayy, I got this new dance for y'all called the Soulja Boy You just gotta punch, then crank back three times from left to right [Chorus] Soulja Boy off in this ho Watch me crank it, watch me roll Watch me crank dat Soulja Boy Then Superman that ho Now watch me yuuuuuuu (Crank dat Soulja Boy) Now watch me yuuuuuuu (Crank dat Soulja Boy) Now watch me yuuuuuuu (...
DeAndre Cortez Way (born July 28, 1990), better known by his stage name Soulja Boy Tell 'Em, or simply Soulja Boy, is an American rapper, record producer, actor, and entrepreneur born in Chicago, Illinois.
In September 2007, his single "Crank That (Soulja Boy)" reached number one on the US Billboard Hot 100. The single was initially self-published on the internet, and it later became a number-one hit in the United States for seven non-consecutive weeks starting in September 2007. On August 17 Way was listed at number 18 on the Forbes list of Hip-Hop Cash Kings of 2010 earning $7 million for that year.
Way has currently released three studio albums and one independent album: his debut studio album Souljaboytellem.com (2007) was certified platinum by the RIAA. However, his next two albums, iSouljaBoyTellem (2008) and The DeAndre Way (2010) did not match the commercial success of his debut, the latter only selling 100,000 copies, despite the success of several singles across both albums, such as "Kiss Me Thru the Phone" and "Turn My Swag On" (iSouljaBoyTellem) and "Pretty Boy Swag" (The DeAndre Way). Way digitally released his fifth studio album, Blessed, on July 28, 2015.
Y'all done made me go back to the old me
I'm the last soldier standing and I will not lose
(All Ready, All Ready, These No Limit Boys All Ready
Tell 'em hoes I'm a pimp
Tell 'em niggaz I'm a pimp
I'm a country motherfucker
And I walk with a limp
Tell 'em hoes I'm a pimp
Tell 'em niggaz I'm a pimp
I'm a country motherfucker
And I walk with a limp
My momma jacked niggaz so I don't trust no chick
Put the gas up in the tank before I give it to a trick
I got syrup in my cup mayne straight out the freezer
Pass me a blunt then throw me a heater
I see a flea up in the club, hatin on a pimp
Put the collar on your dog before I leave him with a limp
Boz looked at me mayne said - I don't give a fuck
We got the whole fuckin club sayin THROW YO' HOOD UP!
I'm the only pro baller, without a contract
But a nigga got mo' cheddar than Kobe & Shaq
And it ain't trickin if you got it real players speed it up
And if they go quack quack put em in the truck
It's that time of the month, don't bring um home to papa
I'm a motherfuckin pimp, I ain't no motherfuckin doctor
I ain't the police lil one, I don't chase no tricks
I put em in the ville and we both get rich
See I taught yall the game and yall wanna know if I still got it
Who work on a 100 mil nigga still bout it bout it
Y'all young motherfuckers must be pussies
cause I'm at your baby mama's house havin Ice Cream & Cookies
I'm a grown ass man, I don't play with you mosquitos
A nigga still drunk and still loadin up them heaters
I got caught up in New York, you thought a nigga changed
I made it out the hood but I ain't sleepin in this game
All Ready, All Ready, These No Limit Boys All Ready
Excuse me Thelma, I'm lookin for JJ
The 1st and 15th, that's a pimp's payday
Got wheels on the caddy that stop and keep spinnin
Got ice on the grill cause pimps we keep grinnin
These pimps drink out of gold cups like ??
Chickenheads got dirty mouths washin out the soap