- published: 02 Aug 2009
- views: 41469100
'+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; })); }); -->
Geto Boys (originally spelled Ghetto Boys) is a rap group from Houston, Texas, currently consisting of Willie D and Bushwick Bill. The Geto Boys have earned notoriety for their lyrics which cover controversial topics such as misogyny, gore, psychotic experiences, and necrophilia.
About.com ranked them No. 10 on its list of the 25 Best Rap Groups of All-Time, describing them as "southern rap pioneers who paved the way for future southern hip-hop acts."
The original "Ghetto Boys" consisted first of Raheem, The Sire Jukebox, and Sir Rap-A-Lot. When Raheem and Sir Rap-A-Lot left, the group added DJ Ready Red, Prince Johnny C, and Little Billy (the dancer who later came to be known as Bushwick Bill). The first single the group released was "Car Freak" in 1986, which then followed with two LPs "You Ain't Nothin'/I Run This" in 1987, and "Be Down" in 1988. The group released their debut album in 1988 entitled, Making Trouble. With the release receiving very little attention, the group broke up shortly thereafter and a new line-up was put together with the inclusion of Scarface and Willie D, both aspiring solo artists. This new line-up recorded the 1989 album, Grip It! On That Other Level. The group's 1990 self-titled album, The Geto Boys, caused Def American Recordings, the label to which the group was signed at the time, to switch distributors from Geffen Records to Warner Bros. Records (with marketing for the album done by WB sister label Giant Records) because of controversy over the lyrics.
The Geto Boys is a remix album by the Geto Boys released in 1990. The album contains one track from the group’s debut album Making Trouble (1988), 10 from its previous album Grip It! On That Other Level (1989), and two new songs. All tracks on the album were rerecorded, remixed and revamped by acclaimed producer Rick Rubin with his protégé Brendan O'Brien. The cover of the album resembles The Beatles' album Let It Be, and the songs attracted much controversy upon the album’s release.
The original Def American pressing is the only WEA-distributed album with the following warning in addition to the standard explicit-lyrics sticker:
Due to the controversial nature of the lyrics, especially in the songs "Mind of a Lunatic" and "Assassins", the album's originally intended distributor, Geffen Records, and CD manufacturer Sony DADC, which manufactured Geffen's releases, refused to have any part in the release. After Geffen terminated its manufacturing and distributing deal with Def American, Rick Rubin arranged alternative distribution with Warner Bros. Records, which agreed to distribute the album and all subsequent Def American releases with product manufacturing by WEA Manufacturing. Marketing for the album was handled by Warner Bros. sister label Giant Records.
Geto Boys - Mind Playing Tricks On Me (Video) from the album 'We Can't Be Stopped' (1991) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx Scarface Twitter: https://twitter...
Geto Boys - Damn It Feels Good To Be A Gangsta (video) [Explicit] from 'Uncut Dope' (1992) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx Lyrics: [Verse 1: Scarface] Damn...
Provided to YouTube by The Orchard Enterprises My Mind Playin Tricks on Me · Geto Boys Uncut Dope ℗ 2013 RAP-A-LOT 2K RECORDS, INC. Released on: 2013-08-15 Auto-generated by YouTube.
Provided to YouTube by The Orchard Enterprises First Light of the Day · Geto Boys The Resurrection ℗ 2013 RAP-A-LOT 2K RECORDS, INC. Released on: 2013-08-15 Auto-generated by YouTube.
Provided to YouTube by The Orchard Enterprises When It Get's Gangsta · Geto Boys The Foundation ℗ 2013 RAP-A-LOT 2K RECORDS, INC. Released on: 2013-08-15 Auto-generated by YouTube.
Geto Boys - G Code (Official Video)
Provided to YouTube by The Orchard Enterprises Scarface · Geto Boys The Geto Boys ℗ 2013 RAP-A-LOT 2K RECORDS, INC. Released on: 2013-08-15 Auto-generated by YouTube.
From 1993 Album: "Till Death Do Us Part" Bushwick Bill's Myspace: http://www.myspace.com/therealbushwickbill Big Mike's Myspace: http://www.myspace.com/bigmikebcd Scarface's Myspace: http://www.myspace.com/scarface Get Geto Boys' Music: http://www.amazon.com/Geto-Boys/e/B000APWRDS/ref=ntt_mus_gen_pel & http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=42030221 Geto Boys (originally spelled Ghetto Boys) is a hip hop group from Houston, Texas, consisting of Scarface, Willie D and Bushwick Bill. The original Ghetto Boys consisted of the following members: Prince Jonny C, Sire Jukebox; DJ Reddy Red; and Little Billy, the dancer who later came to be known as Bushwick Bill. The group released a critically acclaimed album titled Making Trouble that contained songs ...
Atlanta Artist iRodGoHard follow on all platforms Albums: Smoke Tape, Fulton County to Decatur, Go Hard, Gemini Smoke Freestyles to promote streaming music if you have a beat request follow and dm iRodGoHard or Yo’ Kinda Music Group Follow on Instagram and TikTok for more exclusive content
From 1996 Soundtrack: "Original Gangstas". Also appeared on 1996 Geto Boys Album "The Resurrection"..... Bushwick Bill's Myspace: http://www.myspace.com/therealbushwickbill Willie D's Myspace: http://www.myspace.com/williedinfo Scarface's Myspace: http://www.myspace.com/scarface Get Geto Boys' Music: http://www.amazon.com/Geto-Boys/e/B000APWRDS/ref=ntt_mus_gen_pel & http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=42030221 Geto Boys (originally spelled Ghetto Boys) is a hip hop group from Houston, Texas, consisting of Scarface, Willie D and Bushwick Bill. The original Ghetto Boys consisted of the following members: Prince Jonny C, Sire Jukebox; DJ Reddy Red; and Little Billy, the dancer who later came to be known as Bushwick Bill. The group released a criti...
1990, Def American/ Warner Bros./ Rap-a-lot Records We do not make any money from this video.. We are merely sharing some music from our personal collection. #getoboys #thegetoboys #willied #williedee #scarface #bushwickbill #djreadyred #rapalotrecords #rapalot #90s #rap #music #hiphop #hiphopmusic #rapmusic #rickrubin #classic #fullalbum #timewarpx
00:00 - Rebel Rap Family 01:20 - We Can't Be Stopped 04:53 - Homie Don't Play That 08:38 - Another Nigger In The Morgue 11:50 - Chuckie 15:39 - Mind Playing Tricks On Me 20:37 - I'm Not A Gentleman 24:37 - Gota Let Your Nuts Hang 28:48 - Fuck a War 33:06 - Ain't With Being Broke 36:53 - Quickie 39:58 - Punk-Bitch Game 42:12 - The Other Level 48:13 - Trophy DISCLAIMER For educational purposes only. "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 use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use." No copyright intended. This is strictly ...
Geto Boys - Mind Playing Tricks On Me (Video) from the album 'We Can't Be Stopped' (1991) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx Scarface Twitter: https://twitter...
Artists-Geto Boys Album-The Geto Boys Year-1990 Label-Rap-A-Lot Records This is the full album upload of The Geto Boys self titled album with two new songs and song redone so with all that here we go and enjoy.... Song Tracklist 1.F**K Em 2.Size Ain't Shit 3.Mind Of A Lunatic 4.Gangsta Of Love 5.Trigga Happy Nigga 6.Life In The Fast Lane 7.Assassins 8.Do It Like A G.O. 9.Read These Nikes 10.Talkin' Loud Ain't Saying Nothing 11.Scarface 12.Let A Ho Be A Ho 13.City Under Siege
From 1996 Soundtrack: "Original Gangstas". Also appeared on 1996 Geto Boys Album "The Resurrection"..... Bushwick Bill's Myspace: http://www.myspace.com/therealbushwickbill Willie D's Myspace: http://www.myspace.com/williedinfo Scarface's Myspace: http://www.myspace.com/scarface Get Geto Boys' Music: http://www.amazon.com/Geto-Boys/e/B000APWRDS/ref=ntt_mus_gen_pel & http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=42030221 Geto Boys (originally spelled Ghetto Boys) is a hip hop group from Houston, Texas, consisting of Scarface, Willie D and Bushwick Bill. The original Ghetto Boys consisted of the following members: Prince Jonny C, Sire Jukebox; DJ Reddy Red; and Little Billy, the dancer who later came to be known as Bushwick Bill. The group released a criti...
From 1993 Album: "Till Death Do Us Part" Bushwick Bill's Myspace: http://www.myspace.com/therealbushwickbill Big Mike's Myspace: http://www.myspace.com/bigmikebcd Scarface's Myspace: http://www.myspace.com/scarface Get Geto Boys' Music: http://www.amazon.com/Geto-Boys/e/B000APWRDS/ref=ntt_mus_gen_pel & http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewArtist?id=42030221 Geto Boys (originally spelled Ghetto Boys) is a hip hop group from Houston, Texas, consisting of Scarface, Willie D and Bushwick Bill. The original Ghetto Boys consisted of the following members: Prince Jonny C, Sire Jukebox; DJ Reddy Red; and Little Billy, the dancer who later came to be known as Bushwick Bill. The group released a critically acclaimed album titled Making Trouble that contained songs ...
Artists-Geto Boys Album-Making Trouble Release Date-February,17,1988 Label-Rap-A-Lot Records
Geto Boys - Damn It Feels Good To Be A Gangsta (video) [Explicit] from 'Uncut Dope' (1992) 🔔 Subscribe to UPROXX Video and ring the bell to turn on notifications: https://uproxx.it/5rzazsh 🎙️ New Episodes of People’s Party with Talib Kweli every Monday 9AMet/6AMpt. Watch all the episodes here: https://uproxx.it/avxtjgf More Hip-Hop Heads Playlists: 90's Hip Hop ▶️ http://bit.ly/90sHipHopPlaylist 2000's Hip Hop ▶️ http://bit.ly/2000sHipHopPlaylist 90's R&B Hits ▶️ http://bit.ly/90sRBPlaylist The UPROXX Family 🎧 UPROXX Music https://youtube.com/uproxxmusic 🎥 UPROXX Studio https://youtube.com/uproxx FOLLOW ➕UPROXX.com: https://uproxx.com ➕Instagram: https://instagram.com/uproxx ➕Twitter: https://twitter.com/uproxx ➕Facebook: https://facebook.com/uproxx Lyrics: [Verse 1: Scarface] Damn...
Artist/Group: Geto Boys Album: We Can't Be Stopped Released: 1991 Label: Rap-A-Lot Records Watch the Official Video of this song https://www.youtube.com/watch?v=AyI7YoJ0jog -------------------------------------------------- Follow Us: https://www.hhbars.com https://www.facebook.com/realhhbars https://www.instagram.com/realhhbars https://www.tiktok.com/@realhhbars #getoboys #raplyrics #hiphoplyrics #lyrics
1990 - The Geto Boys
Geto Boys (originally spelled Ghetto Boys) is a rap group from Houston, Texas, currently consisting of Willie D and Bushwick Bill. The Geto Boys have earned notoriety for their lyrics which cover controversial topics such as misogyny, gore, psychotic experiences, and necrophilia.
About.com ranked them No. 10 on its list of the 25 Best Rap Groups of All-Time, describing them as "southern rap pioneers who paved the way for future southern hip-hop acts."
The original "Ghetto Boys" consisted first of Raheem, The Sire Jukebox, and Sir Rap-A-Lot. When Raheem and Sir Rap-A-Lot left, the group added DJ Ready Red, Prince Johnny C, and Little Billy (the dancer who later came to be known as Bushwick Bill). The first single the group released was "Car Freak" in 1986, which then followed with two LPs "You Ain't Nothin'/I Run This" in 1987, and "Be Down" in 1988. The group released their debut album in 1988 entitled, Making Trouble. With the release receiving very little attention, the group broke up shortly thereafter and a new line-up was put together with the inclusion of Scarface and Willie D, both aspiring solo artists. This new line-up recorded the 1989 album, Grip It! On That Other Level. The group's 1990 self-titled album, The Geto Boys, caused Def American Recordings, the label to which the group was signed at the time, to switch distributors from Geffen Records to Warner Bros. Records (with marketing for the album done by WB sister label Giant Records) because of controversy over the lyrics.
(all I have in this world)
(all I have in this world)
(all I have in)
(all I have in)
(all I have in this world)
(all I have in)
(all I have in)
(all I have in)
(all I have in)
(all I have in)
(all I have in this world)
(balls)
(balls)
(balls)
(balls)
[ verse 1: scarface ]
I started small time, dope game, cocaine
Pushin rocks on the block, I'm never broke, mayn
Sportin jewelry and the shit that came with rollin hard
You try to school me, you'll get fucked up with no regard
Boy, don't test me, cause I'm tired of teachin lessons
So muthafuck you and that bullshit that you're stressin
Cause it ain't nothin but the money flow in this camp
And if you fuck me, you'll forever wear a stamp
So watch your back and prepare for the hitman
Life of the black, and the ak won't take no shit, and
You'll be bumped off, bucked off, no trace
On the for realer, my nigga, just call me scarface
(crazy muthafucka from the street) --> mc ren
(all I have in this world)
(all I have in this world)
(balls)
(balls)
(balls)
(balls)
[ verse 2: scarface ]
I'm in the south park, night falls, over the streets
It's gettin dark, bill calls, he's been beat
Round up the posse, y'all, and bring the heat
And when it's over, all I want is bloody meat
Boy done fuckin with me, real man, and I done told him
So let's just step out on the block and pd-roll him
Load up the uzis, turn the village into a warzone
Make the hit, break quick, leave your cars on
Nobody crosses me, especially in this dope game
So raise up off of me, I show em I don't joke, mayn
Little bill, grab your piece, pick em out
Battle y'all in the street, let's put some head out
Caught my ride, hit the fry, and I step calm
Open fire like a lunatic from vietnam
Bullets fled to the head, bodies bled
Left for dead, I pumped these bitches full of led
Yo, they don't understand me, the yo, brad, bwoy
Fuck that, say goodbye to the bad guy
I shot my gun in the air as I left the place
You'll ask me why, but I don't care, just call me scarface
(don't) (don't) (don't) (don't) (don't)
(don't make me act a muthafuckin fool) --> ice cube
[ verse 3: scarface ]
Later on, all alone, sat around the house kickin it
My girl came home, I told her shit had been
Real fucked up, so girl, don't push me
She pulled her skirt up, and said, "he could need some pussy"
I just sat back, my legs started shakin
Now here's another stupid bitch that I be breakin
I grabbed the slimmy by her hand, and lead her upstairs
Threw her down on the bed, and she said, "fuck, yeah!"
I opened up her legs, prepared her for the stabbin
Like mike tyson in a brawl, boy, I was jabbin
The bitch was sweatin, but I guess she wasn't bothered
Cause all she said was, "fuck me harder, fuck me harder!"
I started bangin, I was bangin, dick was numbin
She wasn't hangin, she was singin, "brad, I'm comin!"
Up and down, side to side, perfect timin
I started stickin with the quickness, we were grindin
I was just about to nut, she got on top of me
I heard a (*shot*) now what the fuck? somebody shot at me
I took a look, the girl was cooked, her head exploded
Reached for the uzi at my foot, and I unloaded
Straight out the window I could hear the soldiers' footsteps
I'm a taker, not a faker, I ain't been took yet
So many hunters, dyin faces to the concrete
Although you try to take me out, you die in one beat
Of the heart, boy, how dare you suck on me?
And i'ma teach you and your boys not to fuck with me
Rolled out the backdoor, lookin for his bossman
I'll watch him bleedin, pour his blood in a saucepan
He's in his cadillac, starin at my frontdoor
I stood behind him, pulled my gun, said, "what you front for? "
He says, "i'm sorry, ak, don't kill me, I was jokin, griff"
That's why your boys are on my balcony and they're frozen stiff
The boy was shocked, then pulled up cops, he looked at me said, "you're a goner
Cause you shot and killed the boys who worked my corner"
Pulled back the hammer, put my gun up almost point blank
Shattered his dome, reached in the pocket, took the boy's bank
Got out the cadillac, the copper, he said, "stop it, freeze!"
I aim my pistol for his stomach, instead I pop his knees
Fell to the floor, he looked at me and he said, "akshun, please!"
I put my gun between his eyes, said, "don't breathe"
He took a breath, and he knew he'd breathe his last breath
That's 20 soldiers and copper, 21 shot to death
I had to leave everything I'd ever worked for
But best believe, I won't get sentenced for a drug war
But maybe one day in the future I can come back
But until then, I'm goin home, where I'm from, black
Nobody knows my name, they'll only know this face
And ask my posse, they say, "we call him scarface"
Hey conjo, mayn, listen to me, mayn
Now that we got texas fiendin, mayn
It's time to make the whole fuckin world start geekin
We expand across the whole muthafuckin world, mayn
And we get the dope out there, mayn
We fuck em up!
And you muthafuckas thought I wasn't gonna make a comeback, mayn
I'm gonna tell you somethin, mayn
I'm comin back, mayn
Geto boys
1990