- published: 16 Oct 2020
- views: 8260699
'+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; })); }); -->
Paul Michael Slayton (born March 11, 1981), better known by his stage name Paul Wall, is an American rapper. He is affiliated with Swishahouse Records. He has released several albums under the label and collaborating with other rappers signed to the label. He was musical partners with rapper Chamillionaire with whom he released several albums including the independently released Get Ya Mind Correct. In 2005, he was signed to Atlantic Records and became successful with his major-label debut The Peoples Champ. Get Money, Stay True followed in 2007.
Wall attended Jersey Village High School and studied mass communications at the University of Houston for three years. After proposing to do promotions for Michael "5000" Watts' company, Swishahouse, Chamillionaire and Paul Wall came to Watts' studio, KBXX. Paul and Chamillionaire convinced Watts to let them rap on his radio show and put the verses on one of his mixtapes. That mixtape was titled Choppin Em Up Part 2, which was released in mid-1999. The freestyle became so popular in the streets that Chamillionaire and Paul Wall became regular staples on Houston's mixtape circuit, appeared on several of Watts' mixtapes and became permanent members of Swishahouse.
Riding shotgun refers to the practice of sitting alongside the driver in a moving vehicle. The phrase has been used to mean giving actual or figurative support or aid to someone in a situation or project.
The expression "riding shotgun" is derived from "shotgun messenger", a colloquial term for "express messenger", in the days of stagecoach travel the person in the position next to the driver. However, apparently the phrase "riding shotgun" was not coined until 1919. It was later used in print and especially film depiction of stagecoaches and wagons in the Old West in danger of being robbed or attacked by bandits. A special armed employee of the express service using the stage for transportation of bullion or cash would sit beside the driver, carrying a short shotgun (or alternatively a rifle), to provide an armed response in case of threat to the cargo, which was usually a strongbox. Absence of an armed person in that position often signaled that the stage was not carrying a strongbox, but only passengers.
Riding shotgun refers to the practice of sitting alongside the driver in a moving vehicle, or next to the front right door if there are more than two front passengers.
Riding Shotgun may also refer to:
Riding Shotgun is a 1954 western film directed by André De Toth, starring Randolph Scott, Wayne Morris and Joan Weldon.
Stagecoach guard Larry Delong is ambushed by a gang of outlaws associated with a man he's searching for, Dan Marady, who murdered Delong's sister and nephew. But when he returns to the town of Deep Water, nearly everyone there believes that Delong was involved in the holdup, in which the stage driver was killed.
With no townspeople other than Orissa Flynn, his sweetheart, and Doc Winkler heeding his warnings that Marady's men are coming to rob the town, Delong is forced to take refuge in a casino. A lynch mob forms, with deputy Tub Murphy trying to hold them off until the sheriff's posse returns.
Marady's men, including an accomplice, Pinto, rob the bank while the villagers are distracted. Delong escapes through an attic and sabotage the getaway horses of Malady's gang. A shootout results in Marady mistakenly believing, fatally, that Delong is out of bullets.
Repo Men - Is She Worth It?: Jake (Forest Whitaker) and Frank (Liev Schreiber) walk in on Remy (Jude Law) and Beth (Alice Braga) scanning their artificial organs. BUY THE MOVIE: https://www.fandangonow.com/details/movie/repo-men-2010/1MV5f3db01ab424e0f494370a409b583a57?cmp=Movieclips_YT_Description Watch the best Repo Men scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqpYQy3BetiL1I0SPIc9oLdb FILM DESCRIPTION: In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy (Jude Law) is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in th...
A saw is a cutting tool. This video is targeted to blind users. Attribution: Article text available under CC-BY-SA Creative Commons image source in video
Magnus Carlsen vs Hikaru Nakamura in Magnus Carlsen Invitational 2021. ♜ Visit our deals page for our limited time offers!: https://events.chess24.com/deals/?utm_source=youtube.com&utm_medium=owned_social&utm_campaign=chess24.5 ♜ Become a Premium member to get access to everything chess24 has to offer: https://explore.chess24.com/premium?utm_source=youtube.com&utm_medium=owned_social&utm_campaign=chess24.5 ► Watch live and on-demand shows: https://chess24.com/en/live/video/?utm_source=youtube.com&utm_medium=owned_social&utm_campaign=chess24.5 ► Follow top tournaments with our state-of-the-art broadcast system: https://chess24.com/en/watch/live-tournaments?utm_source=youtube.com&utm_medium=owned_social&utm_campaign=chess24.5 ► Play chess in our playzone: https://chess24.com/en/play/che...
Get some cool drag & drop VFX here! ► https://www.famefocus.com/go/getvfx/ ◄ The Mask is a classic movie that surprisingly still holds up incredibly well even by today's standards, and even though the movie was a great success, it has never really received all the credit it is due. Maybe this is because it was released in 1994, alongside films like Shawshank Redemption, Pulp Fiction, Forrest Gump, or True Lies, or perhaps it is because of its light-hearted comedic screenplay, but The Mask just wasn't taken seriously even though it pushed the limits of what was possible with VFX and became the first film to have a photo-real 3-D cartoon character using computer animation. Like the music in this video? I made it! Support me by getting it on any of these sites :P Get it on iTunes: ► https://...
Can Remy (Jude Law) and Beth (Alice Braga) successfully break into the Union's headquarters and clear their accounts of artiforg debt? They'll have to fight their way through a hallway full of security to even try. Buy/Rent Repo Men! Amazon: https://www.amazon.com/Repo-Men-Unrated-Jude-Law/dp/B003T9P9M8/ iTunes: https://itunes.apple.com/us/movie/repo-men/id375600368 YouTube Movies: https://www.youtube.com/watch?v=W0HggAQPmlM Google Play: https://play.google.com/store/movies/details/Repo_Men_Unrated?id=W0HggAQPmlM Fandango Now: https://www.fandangonow.com/details/movie/repo-men-unrated-2010/MMV049CCDEED6A81CC9556841F216B26C375 VUDU: https://www.vudu.com/content/movies/details/Repo-Men-Unrated-/177211 Universal Pictures Home Entertainment: https://www.uphe.com/movies/repo-men Remy (Jude La...
From Wikipedia, the free encyclopedia "Cow" and "Cows" redirect here. For other uses, see Cattle (disambiguation) and Cow (disambiguation). Scientific classification Kingdom: Animalia Phylum: Chordata Class: Mammalia Order: Artiodactyla Family: Bovidae Subfamily: Bovinae Genus: Bos Species: B. taurus Binomial name Bos taurus Linnaeus, 1758 Synonyms Bos primigenius taurus Bos longifrons Cattle (Bos taurus) are large, domesticated, cloven-hooved herbivores. They are a prominent modern member of the subfamily Bovinae and the most widespread species of the genus Bos. Adult females are referred to as cows and adult males are referred to as bulls. Cattle are commonly raised as livestock for meat (beef or veal, see beef cattle), for milk (see dairy cattle), and for hides, which are used to m...
Please consider supporting my work on: http://www.patreon.com/CaptainDisillusion A dangerously detailed thrill ride through the VFX techniques of the 'Playing With Time' viral video (https://www.youtube.com/watch?v=gooWdc6kb80)
These are the moments that absolutely destroyed brilliant TV shows. For this list, we’ll be taking a look at TV shows events that either ruined programs or marked a point where the series declined in quality. Naturally, there will be spoilers ahead.Our countdown includes Cousin Oliver from "The Brady Brunch" (1969-74), Eric's Departure in "That '70s Show" (1998-2006), the Literal Cork from "Lost" (2004-10), Winning the Lottery from "Roseanne" (1988-97, 2018), and more! If you think our list was spoiled by not including some moments, be sure to tell us which ones in the comments! Watch more great TV videos here: Top 10 TV Shows Ruined by Fans: https://youtu.be/BtVuBN4GZDo Top 10 Celeb Impressions Done On The Simpsons: https://youtu.be/qrEl3wdnzn0 Top 10 Times South Park Roasted TV Shows: h...
Subscribe to this channel for more! Top 10 Movies on Hulu: Palm Springs The Dark Knight Border The Guilty Hell or High Water Parasite Apollo 11 Shoplifters Honeyland Nomadland #Hulu #Movie #Film #Video #Best_Movie #Best_Film #What_To_Watch #Binge_Watching #Series #Shows #Drama #Sitcom #Comedy #Dramedy #Action #Thriller #Movie_Night #Fiction #Mystery #Satire #TVSeries #TV_Series #Ray_Donovan #Shameless #Patrick_Melrose #Episodes #The_Affair #Billions #Your_Honor #Homeland #The_Chi #Escape_At_Dannemora #Dexter #Showtime_Original_Series #Showtime_TV #Original_Shows #Top_10 #Top_Series #Best_Shows #Best_Hulu_Shows #Showtime_Original #TV_Shows #TVShows #Tom_Films #Best_Series #Streaming #HD #Movies #Best_On_Hulu #Showtime_Top_Ten #Hulu_Top_Ten #Nomadland #Oscar #Oscar_Nominee #Oscar_Winner #H...
Looking for the very best thriller movies on HBO Max? Let's count down the Top 5 Best Thriller Movies on Thriller Movies on HBO Max Right Now. All recent movies, all guaranteed to keep you on the edge of your seat. Give us your own Top 5 Thriller Movies list in the comments below. What thriller movies should HBO add? What are your favorite HBO movies of all time? Cinegold brings you weekly videos that help you find the best movies to watch on Netflix, Amazon Prime and more! Check out our channel for more videos like this one. https://www.youtube.com/channel/UCOwPmPSglv5ix8iXM1vYZkA Posting new videos every week! Be sure to subscribe so you don’t miss anything! https://www.youtube.com/channel/UCOwPmPSglv5ix8iXM1vYZkA?sub_confirmation=1 Also check out our other videos for more! Top 5 T...
Paul Michael Slayton (born March 11, 1981), better known by his stage name Paul Wall, is an American rapper. He is affiliated with Swishahouse Records. He has released several albums under the label and collaborating with other rappers signed to the label. He was musical partners with rapper Chamillionaire with whom he released several albums including the independently released Get Ya Mind Correct. In 2005, he was signed to Atlantic Records and became successful with his major-label debut The Peoples Champ. Get Money, Stay True followed in 2007.
Wall attended Jersey Village High School and studied mass communications at the University of Houston for three years. After proposing to do promotions for Michael "5000" Watts' company, Swishahouse, Chamillionaire and Paul Wall came to Watts' studio, KBXX. Paul and Chamillionaire convinced Watts to let them rap on his radio show and put the verses on one of his mixtapes. That mixtape was titled Choppin Em Up Part 2, which was released in mid-1999. The freestyle became so popular in the streets that Chamillionaire and Paul Wall became regular staples on Houston's mixtape circuit, appeared on several of Watts' mixtapes and became permanent members of Swishahouse.
I'm in town, girl, for just one night
You're so fine, girl, you're just my type
You just might make me miss my flight
Lemme lay your body down tonight
We gonna spend time, you name your price
I don't trip but for you, I might
Tryna get deep, girl, don't make me fight
Lemme lay your body down tonight
Open up ya eyes and ya see quite clear
No more crying, no more tears 'cause ya champion is here
I'm the superman you seek, I sweep ya off ya feet
From the moment our eyes meet, girl, you in for a treat
The attraction is so unique, the conversation is sweet
Love making under the sheets, it'll make the mission complete
Your body language is loud, girl, you speaking it well
But maybe I do the fool, put you under my spell
I'm suave and debonair, you sexy with long hair
This chemistry's so rare, just kick back and chill
Let the moment take control, ya Prada goes my gold?
But baby, let's take it slow, lemme show ya I'm real
If them looks could kill, ya be wanted in every state
Ya body shape is great, collaboratin' is fake
When you open up the gates, be ready to love make
I'm ready to back break, girl, you wet as a lake, I can't wait
I'm in town, girl, for just one night
You're so fine, girl, you're just my type
You just might make me miss my flight
Lemme lay your body down tonight
We gonna spend time, you name your price
I don't trip but for you, I might
Tryna get deep, girl, don't make me fight
Lemme lay your body down tonight
Go on and let ya hair down, you in the midst of a playa
I'm the answer to ya prayers, we make a perfect pair
I handle with great care, I'm packing, girl, beware
Go on, come back to my lair and I'll make you believe
Some slow jams and candle light, make the mood right
I do it just like ya like it, sweat ya out of ya weave
From the second you arrived to the moment you leave
I'll have you huffin' and puffin' but please don't forget to breathe
Ain't no tricks up my sleeve but I know you still debatin'
But baby, no more waitin', it's time for Mr. Slayton
Them other clowns been fakin' but I'm here for the takin'
No worries of baby makin' 'cause I pack a Gary Payton
Me and you layin' naked in them birthday suits
Is reserved in body rockin', baby, knockin' them boots
Now you know you lookin' cute but it's time to decide
All playing games aside, you gon' ride, baby
I'm in town, girl, for just one night
You're so fine, girl, you're just my type
You just might make me miss my flight
Lemme lay your body down tonight
We gonna spend time, you name your price
I don't trip but for you, I might
Tryna get deep, girl, don't make me fight
Lemme lay your body down tonight
Get closer, baby, tonight, I'll give you what you need
From the moment that our eyes met
Girl, I knew that you were meant for me
You and me and chemistry
So what you wanna do tonight?
I'm tryna be with you tonight
'Cause you're lookin' so nice
So nice
A bowl of strawberries and some ol' wet rose
Some ya sweet talkin' in ya ear, make ya come out them clothes
When the moon light reflect off the sweat of your skin
I'ma demonstrate, then separate the boys from the men
Lemme swim inside ya ocean, ya body is smooth as lotion
Let's get full of that potion and leave ya head full of grouse
Baby, it ain't no jokin' when I tell ya it's real
So baby, tell me how ya feel, what's the deal, baby?
We gonna spend time, you name your price
I don't trip but for you, I might
Tryna get deep, girl, don't make me fight
And lay your body down tonight