- published: 04 Sep 2022
- views: 2001927
'+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; })); }); -->
HIDDEN ERROR: Usage of "Occupation?s?" is not recognizedHIDDEN ERROR: Usage of "Birth date and age" is not recognizedHIDDEN ERROR: Usage of "Instruments" is not recognized
Peter Wadams, better known by his stage name P-Money, is a New Zealand hip-hop DJ and producer. His notable work includes the hit song "Everything" featuring New Zealand R&B singer Vince Harder, which reached number one on the New Zealand Singles Chart for three weeks in 2008, however he is best known for his recordings with Scribe including the 2003 smash hit "Not Many".
P-Money's initial entry into the music industry was via DJ competitions and student radio. In 2004 he released his second studio album Magic City which charted at #2 on the RIANZ New Zealand Singles Chart. His first single of the album, "Stop the Music", featuring New Zealand rapper Scribe, scored P-Money his first solo #1 single and also charted within the top 10 of the Australian ARIAnet singles chart in April 2005. The album included collaborations with local and international artists such as Akon, Skillz, Jatis, Aasim, Capone, Sauce Money, Bobby Creekwater, Grandmaster Roc Raida and Scribe. The second single off the album "Keep on Calling", featured rising American hip-hop star Akon and charted at #23 in New Zealand.
Paris Moore-Williams (born 8 April 1989), better known by his stage name P Money, is an English Grime MC from Lewisham, South London who is also active in the dubstep scene. He is best known his live performances as well as for songs such as Slang Like This, Anthemic and Round the Clock. He was a founding member of Lewisham based grime crew OGz and has released one album with the group entitled OGz Season Vol. 1. He also appeared on the sixth edition of highly popular grime DVD Lord of The Mics (LOTM 6) in a grime clash (battle). He is known for is skippy flow and lyricism.
P Money began his career within the crew Fatal Assassins along with MC's such as Little Dee and Blacks. During these times P Money was known for his fast, skippy flow which created plenty of hype when attending pirate radio shows. He attended many classic studio sets such as those from the Hazardous Sessions series and also Fuck Radio volume 5. He gained a lot of positive attention with the massive single "What Did He Say", which has since been released on Vinyl and digital download, as well as the title being used as a slogan for a line of T-shirts. He is currently a member of the crew OGs and was involved with the collective's first release, OG Season.
Aliaume Damala Badara Akon Thiam (born April 16, 1973) (pronounced /ˈeɪkɒn/), better known as Akon, is an American singer, rapper, songwriter, businessman, record producer and actor. He rose to prominence in 2004 following the release of "Locked Up", the first single from his debut album Trouble.
He has since founded two successful record labels, Konvict Muzik and Kon Live Distribution. His second album, Konvicted received three nominations for the Grammy Awards in two categories, Best Contemporary R&B Album for Konvicted album and Best Rap/Sung Collaboration for "Smack That" and "I Wanna Love You".
He is the first solo artist to hold both the number one and two spots simultaneously on the Billboard Hot 100 charts twice. Akon has had four songs certified as 3x platinum, three songs certified as 2x platinum, more than ten songs certified as 1x platinum and more than ten songs certified as gold in digital sales. Akon has sung songs in other languages including Tamil, Hindi, and Spanish. He was listed by the Guinness Book of World Records as the #1 selling artist for master ringtones in the world.
🚨 SUBSCRIBE: http://bit.ly/GRMsubscribe 📲 FOLLOW: @grmdaily 📰 VISIT: http://grmdaily.com/ 🎧 PLAYLISTS: https://grm.lnk.to/playlist
Buy or stream 'Buss The Red ' here: https://pmoneyxwhiney.ffm.to/bussthered.pbt Directed by P Money Visuals by Jedd Roberts Two champions of sound collide on Hospital Records as the infamous grime legend P Money joins forces with drum & bass innovator Whiney. Signing to the south London drum & bass authority for an exciting album project on the horizon, this fusion of sounds is set to ignite the world of bass music like never before. P Money and Whiney have carved out their own lane regardless of tempo or style. With P Money gaining legendary status within the grime community from starting out in the early 2000s, previously collaborating alongside Dizzee Rascal, Ocean Wisdom, Giggs, D Double E and Lady Leshurr. He has since been the mastermind behind countless hits including ‘Shook’, ‘...
LIKE, SUBSCRIBE AND TURN ON NOTIFICATIONS Watch it in 4k. Remember its all for RP. Catch me live Tuesdays, Wednesdays, Thursdays and some weekends here on Twtich -https://Twitch.tv/pmoney Love!! Shot & Edited by Hydoru Produced by There's actually too many lyrics to type them out. It's capped at 5000 and the lyrics are like 5100 or something lol I'll put them some where and a link soon.
Stream or download 'Where & When': https://orcd.co/pmoneywhereandwhen Tickets available for headline show on June 20th 2019 - http://gigst.rs/Pmoney
Follow Taiki Nulight https://www.instagram.com/taikinulightuk/ https://www.tiktok.com/@taikinulight https://soundcloud.com/taiki-nulight-uk Follow P Money https://www.instagram.com/kingpmoney/ https://www.tiktok.com/@pmoney https://soundcloud.com/pmoneyuk Follow Jolie P https://www.instagram.com/whoisjolie/ https://www.tiktok.com/@darlinbabygirl https://soundcloud.com/whoisjolie #TaikiNulight #StayInYourLane
Single available on iTunes NOW. http://bit.ly/2peAc1 Artist: P-Money Title: Everything ft. Vince Harder Label: Dirty Records Directed by Rebecca Gin & P-Money D.O.P.: Andrew Stroud Prod. Manager: Sonya Wickham Produced by Fish 'N' Clips www.pmoneymusic.com
Stream - https://pmoney.orcd.co/wagwarnmumsy Produced by Silencer Shot by Grade A productions 🚨 SUBSCRIBE: http://bit.ly/GRMsubscribe 📲 FOLLOW: @grmdaily 📰 VISIT: http://grmdaily.com/ 🎧 PLAYLISTS: https://grm.lnk.to/playlist
Taken from the latest P Money x Silencer project Untraditional EP out now - https://orcd.co/untraditionalep
💸 Purchase Link | Download Link: https://bsta.rs/xJRAf 🍯 Beatstore: https://www.beatstars.com/buferabeats/tracks ✔️ Subscribe: https://www.youtube.com/channel/UCxK3ljHoJDsqV94lOo4kiCA 📧 Email: [email protected] P Money x Grime Type Beat - "PRIME" | Grime Instrumental 2024 #pmoneytypebeat #jmetypebeat #grimetypebeat #grimetypebeat2024 #grimeinstrumental #ukgrimemusic #ukgrime #pmoneytypebeatfree #skeptatypebeat #jmetypebeat2024 #skeptajmetypebeat #skeptajme #pmoneyjme #grimeinstrumental2024 #buferabeats IMPORTANT: This beat is free for non-profit use only. For profit use you have to purchase a lease. You always have to credit (Prod. Bufera Beats) in the title. 👀 FOLLOW ● Instagram: https://www.instagram.com/buferabeats ● BeatStars: https://www.beatstars.com/buferabeats/tracks
Chang Gang Anthem - P Money feat. CG (Official Music Video) Chang Gang Music Video of NoPixel RP! --------------------------------------------------------------- More links! 🔗 ►For more videos like this follow me on Facebook at https://www.fb.gg/lordkebun ►I am LIVE every day at these times: 6:00pm EST/3:00pm PST ►Follow my Twitter https://twitter.com/LordKebun ►Follow my Instagram https://www.instagram.com/lordkebun/ #GTA #GTARP #GTARoleplay
Stream or download 'Where & When': https://orcd.co/pmoneywhereandwhen Tickets available for headline show on June 20th 2019 - http://gigst.rs/Pmoney
New single taken from the forthcoming mixtape ‘Money Over Everyone 3’ Listen / Buy: https://orcd.co/pmoneyshook Twitter - @kingpmoney Instagram - @kingpmoney
http://www.PyroRadio.com Blacks, P Money & Little Dee With Plastician B2B Spooky on PyroRadio. Show Date: November 19th 2019 Check out our website for all the latest news, upcoming shows and more http://www.PyroRadio.com Follow PyroRadio on social media: https://Twitter.com/PyroRadio https://www.Facebook.com/PyroRadioFM https://www.Instagram.com/PyroRadio https://www.MixCloud.com/PyroRadio https://TuneIn.com/Radio/PyroRadio-s266951 SUBSCRIBE to see our latest videos first! https://www.YouTube.com/user/PyroRadio #KeepItPyro
Wiley returns to SB once again delivering fire! Grab the track on iTunes - https://itunes.apple.com/gb/album/p-money-single/id1064904434 ---- Make sure to subscribe & never miss a video! http://bit.ly/NeverMissSBTV SBTV is the only place you need to be going to get the best in music, gaming, sport, comedy, fashion and business. Based in London, SBTV provides a platform to discover and break emerging artists, enjoy your favourite acts and unearth incredible talent. We’re constantly bringing you the exclusives so make sure to follow us on Facebook & Twitter to be in the loop with who we’ve been filming with! ---- ► Follow SBTV Twitter - http://twitter.com/SBTVonline Instagram - http://instagram.com/SBTVonline FaceBook - http://facebook.com/online.SBTV Website - http://www.SBTV.co.uk Soun...
Snake EP out now Music http://smarturl.it/SnakeEP Spotify http://smarturl.it/SpotifySnakeEP Twitter + Instagram - @Kingpmoney Snapchat - Pmoneyuk Facebook - Pmoneyofficial 1st track 'Liars In The Booth' Produced by MrVirgoofficial 2nd track ‘Mug' Produced by @RaseyeVII Filmed & Edited by @ItsofficialNA
True Tiger feat P Money 'Slang Like This'.. new single released 11th October 2010. Virgin Records newest signings, True Tiger, release their debut track for the label, 'Slang Like This' ft P Money on 11th October 2010 . True Tiger say "We're really excited to release 'Slang Like This', hopefully it will give people a taste of what's to come on the album!" True Tiger are a UK based production/DJ collective who have been producing and DJ'ing since 2004. They have their own record label, True Tiger Recordings, on which they have released over 20 singles. They recently produced 'Jungle'' one of the highlights from Professor Green's debut album As in demand producers they have also remixed a variety of artists from Taio Cruz, Tinchy Stryder and Kelly Rowland to Paloma Faith, Macy Gray ...
P Money drops an exclusive freestyle for MistaJam's BBC Radio 1Xtra show - Monday to Thursday 7 til 10pm More info & tracklist: http://www.bbc.co.uk/1xtra/mistajam
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 ...
CELEBRATING 1 BILLION VIEWS! 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 Official M...
#HappySongsPlaylist #HappySongs
REMASTERED IN HD! CELEBRATING 1 BILLION VIEWS!! Official Music Video for Lonely performed by Akon. 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/@ak...
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 #Beautiful #Remastered ...
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 Music video by Akon performing Don't Mat...
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 Music video by Akon performing Sorry, Bl...
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 Music video by Akon performing I Wanna L...
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...
HIDDEN ERROR: Usage of "Occupation?s?" is not recognizedHIDDEN ERROR: Usage of "Birth date and age" is not recognizedHIDDEN ERROR: Usage of "Instruments" is not recognized
Peter Wadams, better known by his stage name P-Money, is a New Zealand hip-hop DJ and producer. His notable work includes the hit song "Everything" featuring New Zealand R&B singer Vince Harder, which reached number one on the New Zealand Singles Chart for three weeks in 2008, however he is best known for his recordings with Scribe including the 2003 smash hit "Not Many".
P-Money's initial entry into the music industry was via DJ competitions and student radio. In 2004 he released his second studio album Magic City which charted at #2 on the RIANZ New Zealand Singles Chart. His first single of the album, "Stop the Music", featuring New Zealand rapper Scribe, scored P-Money his first solo #1 single and also charted within the top 10 of the Australian ARIAnet singles chart in April 2005. The album included collaborations with local and international artists such as Akon, Skillz, Jatis, Aasim, Capone, Sauce Money, Bobby Creekwater, Grandmaster Roc Raida and Scribe. The second single off the album "Keep on Calling", featured rising American hip-hop star Akon and charted at #23 in New Zealand.
(Phone dialing)
Hello, hello
I don't know what coulda started this
I know your telephone prolly needs to charge and shit
But uh, I really like to speak now, why you got me trippin
It's already been a week now, your call
I'm not usually the one to call
I, got a question miss know it all
Why, do you think I ever even gave a fuck
I'll give you space because you need it
And I know I fucked up done
But you can't look back it will never be the same
It aint hard to tell that, that I'm, I'm sorry girl
Can't look back cause everything change it aint hard to tell that
That I'm, I'm sorry girl (sorry girl)
I'll keep calling, I'll keep calling you, youou, youou
And I wont stop unless you tell me to, to, to, to
I should be allowed to just call you
Bring you back home but I know it will fall through
Who knew, nah, I aint even gonna think that
Cause you kept my song that you still have as your ring back
Damn near cry when you gave that ring back
Still got love though great cause I need that
Heres what I will say if I heard my cell rang
Kiss me through the phone cause I know that your lonely
If only
But you can't look back it will never be the same
It aint hard to tell that, that I'm, I'm sorry girl
Can't look back cause everything change it aint hard to tell that
That I'm, I'm sorry girl (sorry girl)
I'll keep calling, I'll keep calling you, (I will) youou, youou
And I wont stop unless you tell me to, (I wont) to, (I wont) to, (I wont) to
I'll keep calling, I'll keep calling you, (?) youou, youou
And I wont stop unless you tell me to, (maybe we an talk till the morning if you don't hang up) to, to, to
(Phone rings)
I'll keep calling, I'll keep calling you, youou, youou ( voicemail )
And I wont stop unless you tell me to, to, to, to