- published: 30 Jul 2023
- views: 45228
'+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; })); }); -->
Right Now may refer to:
Right Now! is a 1966 studio album by Mel Tormé. Columbia followed up Tormé's 1965 album of standards with "an obvious bid to sell records by putting Tormé's voice on pre-sold hits of the mid-'60s." "The Velvet Fog's" descent on contemporary middle-of-the-road top-40 melodies from Paul Simon and the Bacharach-David catalogue leads some to emphasize the commercialism of the project and file this period of Tormé's career in the lounge music section of records stores, as evidenced by his appearances on compilations like the Ultra Lounge series. However, music critic Will Friedwald makes a strong case that the work of Tormé and arranger Mort Garson elevated the project above "an album of straight "covers"."
In 1997, Right Now! was treated to a CD reissue, with previously unreleased bonus tracks and liners notes.
Right Now! is one of Little Richard's lesser-known albums, released without much publicity on the United Records label. Despite this, the songs contained some of Richard's stronger material from his 70s period, including "Chain Chain Chain", more commonly known under the title "Chain of Fools."
Right Now! was recorded in January 1973 possibly in Muscle Shoals Sound Studio, Alabama, and issued with no publicity as a low-budget LP. Richard himself recalled that: We were about to start a tour and we needed some money. So Robert "Bumps" Blackwell and me got a deal for one album with an advance of ten thousand dollars from Kent Modern. We went into the studio and did it in one night. I did material we had worked out together. I prefer recording at night, my voice is in better shape then.
♫ Akon - I miss you much (Right Now Na Na Na) (Lyrics) 🔔Subscribe to see the latest song i upload🔔 "Help us reach 250k subscribers"! -- Submit your track on : 📩[email protected] 📩 ✨ Support Just team: ►Website: Justified radar: https://justifiedradar.com/ 💽 Stream/Download: ► https://sptfy.com/Thegoodtimemelodies 💚Subscribe: ► https://www.youtube.com/c/JustifiedMelody Follow JM on: ► Instagram: https://www.instagram.com/justifiedmelodie/ ►Twitter: https://twitter.com/JMofficia/ ⏯ Akon - I miss you much (Right Now Na Na Na) (Lyrics): [Verse 1] It's been so long (Long) That I haven't seen your face I'm tryna be strong (Strong) But the strength I have is washin' away It won't be long (Long) Before I get you by my side And just hold you, tease you, squeeze you Tell you what's ...
REMASTERED IN HD! Watch Akon’s official music videos remastered in HD: https://lnk.to/AkonRemasteredHDID Subscribe to the channel to never miss an update: https://lnk.to/AkonYTSubscribeID Stream Akon: Apple Music: https://Stream.lnk.to/AkonID/applemusic Spotify: https://Stream.lnk.to/AkonID/spotify Amazon: https://Stream.lnk.to/AkonID/amazonmusic Pandora: https://Stream.lnk.to/AkonID/pandora Tidal: https://Stream.lnk.to/AkonID/tidal Deezer: https://Stream.lnk.to/AkonID/deezer YouTube Music: https://Stream.lnk.to/AkonID/youtubemusic Follow Akon: Facebook: https://www.facebook.com/akon Instagram: https://www.instagram.com/akon Twitter: https://twitter.com/Akon TikTok: https://www.tiktok.com/@akon Akon Official Website: https://www.akon.com/ #Akon #RightNow #Remastered ...
One Direction - Right Now Stream/Download : https://1D.lnk.to/AppleMusic Follow One Direction: Website - https://1D.lnk.to/10YearsOf1DWebsite Facebook - https://www.facebook.com/onedirection/ Twitter - https://twitter.com/onedirection Instagram - https://www.instagram.com/onedirection/ (Lyrics): [Verse 1: Louis] Lights go down, and The night is calling to me, yeah I hear voices Singing songs in the street, and I know [Pre-Chorus: Niall] That we won't be going home For so long, for so long, but I know That I won't be on my own Yeah, I love this feeling and [Chorus: Zayn, Liam, All] Right now I wish you were here with me (Ooh) 'Cause right now, everything is new to me (Ooh) You know, I can't fight the feeling And every night I feel it Right now I wish you were here with me (Ooh) [Verse ...
One Direction - Right Now (Official Audio) Follow on Spotify - https://1D.lnk.to/Spotify Listen on Apple Music - https://1D.lnk.to/AppleMusic Listen on Amazon Music - https://1D.lnk.to/AmazonMusic Listen on Deezer - https://1D.lnk.to/Deezer Listen on YouTube Music - https://smarturl.it/OneDirection_YTMusic WATCH STORY OF MY LIFE MUSIC VIDEO ► https://smarturl.it/OneDirection_SOML WATCH WHAT MAKES YOU BEAUTIFUL MUSIC VIDEO ► https://smarturl.it/1D_WMYB WATCH DRAG ME DOWN MUSIC VIDEO ► https://smarturl.it/OneDirection_DMD WATCH HISTORY MUSIC VIDEO ► https://smarturl.it/OneDirection_H WATCH STEAL MY GIRL MUSIC VIDEO ► https://smarturl.it/OneDirection_SMG WATCH BEST SONG EVER MUSIC VIDEO ► https://smarturl.it/OneDirection_BSE Subscribe to the One Direction YouTube channel - https://smar...
I don't own anything. The rights belong to the owner.
Akon - Right Now (Na Na Na) (Lyrics) 🎵 Follow Cakes & Eclairs on Spotify: http://bit.ly/CakesEclairs "Right Now (Na Na Na)" : https://Stream.lnk.to/AkonID/spotify 🔔 Don't forget to subscribe and turn on notifications! Follow Akon https://www.instagram.com/akon/ https://twitter.com/Akon https://www.facebook.com/AKON "Akon - Right Now (Na Na Na)" Lyrics [Verse 1] It's been so long That I haven't seen your face I'm tryna be strong But the strength I have is washin' away It won't be long Before I get you by my side And just hold you, tease you, squeeze you Tell you what's been on my mind [Chorus] I wanna make up right now na na I wanna make up right now na na Wish we never broke up right now na na We need to link up right now na na I wanna make up right now na na I wanna make up right now...
Official Video for ”Right Now” by Korn Listen to Korn: https://KORN.lnk.to/listenYD Watch more videos by Korn: https://KORN.lnk.to/listenYD/youtube Subscribe to the official Korn YouTube channel: https://KORN.lnk.to/subscribeYD Follow Korn Facebook: https://KORN.lnk.to/followFI Instagram: https://KORN.lnk.to/followII Twitter: https://KORN.lnk.to/followTI Website: https://KORN.lnk.to/followWI Spotify: https://KORN.lnk.to/followSI YouTube: https://KORN.lnk.to/subscribeYD Ask your voice device to play Korn! Lyrics: Right now! (Can't find a way to get across the hate when I see you) Right now! (I feel it scratch inside, I wanna slash you and beat you) Right now! (I rip apart the things inside that excite you) Right now! (I can't control myself, I fucking hate you) #Korn #RightNow #Officia...
#rightnow #akon #lovelifelyrics Akon - Right Now Na Na Na (Lyric Video) 💌 Send us song submissions: [email protected] 🍰 Suggested Video: Dossi - Without You (Lyrics): https://youtu.be/A9P9SSQWoko Selin - Choose Love (Lyric Video): https://youtu.be/rwgWgxE4800 Summer 2023 playlist 🚗 Best summer songs 2023: https://youtu.be/3dQAlxnDfAg 📱 Download ringtones and wallpapers: https://bit.ly/LoveLifeLyrics_Ringtones https://bit.ly/LoveLifeLyrics_Wallpapers 📀Follow my Spotify playlist: https://sptlnk.com/TiktokViralsongs https://sptlnk.com/TiktokMashup2023 https://sptlnk.com/BestTiktokSongs https://sptlnk.com/TopHits2023 https://sptlnk.com/TodaysTopHits » Love Life Lyrics Socials: Spotify: https://sptlnk.com/LoveLifeLyrics Facebook: http://bit.ly/itslovelifefanpage Twitter: https:/...
This Video include 10 tracks of Mel Torme. Subscribe for free to stay connected to our channel and easily access our video updates! http://bit.ly/2rjga9v Tip: click on the time and listen your favorite song Track list: Mel Torme - Right Now (Full Album) --------------------------------- 1 | 00:00 | Mel Torme - Right Now 2 | 02:16 | Mel Torme - Whisper Not 3 | 05:04 | Mel Torme - Sing You Sinners 4 | 07:30 | Mel Torme - Walkin' 5 | 10:28 | Mel Torme - Comin' Home Baby! 6 | 13:12 | Mel Torme - Hi Fly 7 | 16:24 | Mel Torme - You Belong To Me 8 | 18:54 | Mel Torme - On Green Dolphin Street 9 | 21:48 | Mel Torme - Moanin' 10 | 24:50 | Mel Torme - Puttin' On The Ritz --------------------------------- Playlist #WikiJazz Timeless Jazz Music: https://goo.gl/haAaKc ------------------------------...
Provided to YouTube by Kontor New Media Right Now (Remastered) · Mel Tormé Comin' Home Baby! ℗ 2013 Vintage Cellar ℗ Pyramid 3 Ltd Released on: 2013-05-24 Artist: Mel Tormé Composer: Mann Lyricist: Sigman Music Publisher: Copyright Control Auto-generated by YouTube.
Provided to YouTube by Rhino Atlantic Right Now · Mel Torme Comin' Home Baby ℗ 1962 Atlantic Recording Corporation for the United States and WEA International for the world outside of the United States. Drums, Vocals: Mel Tormé Producer: Nesuhi Ertegun Writer: Carl Sigman Writer: Herbie Mann Auto-generated by YouTube.
Right Now by Mel Tormé from the album The Best Of Released 2017-04-28 on Not Now Music Download on iTunes: https://geo.itunes.apple.com/album/id-1?uo=6&app=itunes&at=10ldAw&ct=YTAT5060143496509 Download on Google Play: https://play.google.com/store/search?q=Mel+Torm%C3%A9+The+Best+Of&c=music&PAffiliateID=100l3VM Ultra-talented, Mel Tormé was one hell of a singer, he wrote hundreds of songs, acted in film and TV productions, wrote books and scripts, played piano and could handle a drum kit in a manner that made Gene Krupa smile! As all-encompassing as this compilation is, it can only provide a glimpse of the immense talent that was Mel Tormé, a performer of whom Bing Crosby once remarked: “He’s the most fantastic musical performer we’ve ever had ... the best musical entertainer I’ve ever s...
5 songs mixed from the 1966 album "Right Now!" by Mel Torme. Comin' Home Baby, Walk On By, Time, Dominique's Discotheque & Wait Until Dark. Share & Subscribe to MYOKOM Vault on YouTube to enjoy many more music mixes of all genres. Requests are welcome in comments. *I Do Not Own the Rights to This Music*. A $4 or more donation would be appreciated (so we can post more albums) paypal.me/MYOKOMVault or Venmo @MyokomVault
Mel Torme - Right Now (1966)
Right Now may refer to:
(Puff)
B.I.G,
Lil Cease
(Mr.Bristal)
Sipping Hansun
Got dough like the Hansons
Bitches come fast and out like Helly Hansen
Mister Bristal you will neva catch me dancing
Off the prancing
Only in a mansion
In a party high and drunk
I see you glancing
Never blow my cool even if its jammin
Is the bitch is a feed I got a cannon
Cock, Lick shots, Leave them where they standing
You can call the cops I never get ran in
Call Blake C. yall get the understanding
Who my man is, who the fam is
All that bullshit you talk, can it
We own the planet
Its a definite
Niggas go for money reppin it
Armagedding it
Everything we on we setting it
You delicate
Farr away in the country where you better get
Yall need to get with some veterans
Chorus: (Harve Pierre)
You don't wanna play around
You don't wanna play around
You don't wanna play around...with me
No more.....I'll kill you
You don't wanna play around
You don't wanna play around
You don't wanna play around...with me
No more.....I'll kill you
(Lil Cease)
Yo Yo Yo
Niggas wanna start shit
Push the button
See the dough flip from the carpet
Me and Brist about to lock down the market
Gats they spark it
Lie to
Got crips and bloods that pop ???
B.Rock I'm a die for you
Til this day I'm a ride for you
God forbid I die too
When you pull that gack
I'll be right besides you
To guide you
On who to hit and not to
If a niggas guilty he got to die to
Thats the reala
They talking to the roach killa
The most illa
About to upset New York like Reggie Miller
Plus they say you turn thug you turn killa
Its hard to turn back when a nigga feel ya
That's why they say don't nobody know you til sombody kill ya
That's why I say stay back, don't get to familiar
Cause if you get to close my niggas might fucking kill ya
Chorus: (Harve Pierre)
You don't wanna play around
You don't wanna play around
Lil Kim: another
You don't wanna play around...with me
Lil Kim: da queen b
No more.......I'll kill you
Lil Kim: the extraodinaire
You don't wanna play around
Lil Kim: Lil Cease
You don't wanna play around
Lil Kim: Coming at ya for the year 2000, the new millenium
You don't wanna play around...with me
Lil Kim: uh
No more.......I'll kill you
Lil Kim: uh
(Lil Kim)
Fuck all yall hoes I blows like suits
Bitches don't shake my hand
They salute, the leutinent
Rich men kiss the back of the hand of the royal heiness..pocanhantas..mafia behind this
Balling like Utah
Didn't think a ghetto bitch could come this far
From pushing buicks to candle apple red jaguars
Niggas think I'm rich
I could rock a fubu suit...a furry kangol and some cowboy boots
And still be the shit of the night
When I come through
You be on the side holding your cups like the bums do
Waiting for the queen to put some change in it
I pull out a g and drop it
With a hundred grand left in my pocket
I promoted this shit
So I got to make a profit
And all the ends I sends to my mens down in Scarfett
Me and Lil Cease in partuni partners
Laying niggas down like carpenters
So pardon us
Like Nikes, we just do it
We aint ameteurs to this shit
We used to it
And all the bodies I killed
I keep them on file
So when there anniversaries come
We pop Cristal
Ask Chrystal, the golden child Tow dow!
Take it how I give it
You talk shit
We live it
Don't forget it
(Puff)
Stop trying to sound like her too