'+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;
}));
});
-->
Eh La _ No Worry _ ( official mv )
published: 01 Nov 2023
Eh La _ No Worry _ ( official visualizer )
published: 17 Jul 2023
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ OFFICIAL MV ]
แอบรักไม่ทำให้ใครตาย (NO WORRIES) - LYKN
Lyrics - KANGSOMKS
Melody - KANGSOMKS
Arranged - Supachok Chuamuangphan Nittayah Maniwong
String - Bee ETC
Producer - KANGSOMKS
Mix&Mastered - StarBoy
Digital Download *1232323
Spotify | iTunes | JOOX | Apple Music
(Nut)เข้าใจในทันที ที่เธอบ่นแต่เรื่องเขา
ทำไมเขาไม่สน ต้องเป็นคนยังไง
เขาถึงจะหันมองและมาสนใจ
(Lego)เปลี่ยนตัวเองเท่าไหร่แต่สถานะก็เหมือนเดิม
(Tui)เธอบอกถ้าเขาไม่มีใจ เธอก็คงอยู่ไม่ไหว
ไม่เป็นไรมองตาฉันแล้วฟัง
(William, LYKN)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(Hong)เห็นเธอเป็นแบบนี้แล้วเหมือนเห็นตัวเอง
แต่ต่างกันที่ว่าฉันเป็นคนทนเก่ง
อยากให้เธอนั้นสบาย...
published: 01 Nov 2023
Lil Wayne - No Worries ft. Detail (Explicit)
Music video by Lil Wayne performing No Worries (Explicit). © 2012 Cash Money Records Inc.
published: 28 Nov 2012
D'Angel, Spice - No Worries
D'Angel and Spice official video for "No Worries"... Money Mix Riddim
http://vevo.ly/JLAwxk
published: 11 Sep 2017
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ SHORT FILM ]
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMusicTH
YouTube : https://www.youtube.com/@risermusicth
Instagram : https://www.instagram.com/risermusicth/
X : https://twitter.com/RiserMusic
TikTok : http://tiktok.com/@risermusicth
Subtitles
Japanese : @Ao2322024 (Twitter)
Vietnamese : LYKN's Home in Việt Nam (Facebook)
Chinese (Hong Kong) : @allforlykn.hk (Instagram)
Chinese (Taiwan) : LYKN Taiwanese Fanclub / lykntwfc (Instagram & Twitter)
Spanish (Latin America) : (LYKN Latinoamérica)
Burmese : @LYKYou_MM (X), @lykyou_myanmar (Instagram) @mynameisilpal : @mynameisilpal (X)
Spanish : (LYKN Latinoamérica)
Portuguese (Brazil) : @SupportLYKNBR (X/IG)
published: 30 Oct 2023
Simon Webbe - No Worries
Music video by Simon Webbe performing No Worries.
published: 25 Feb 2009
No Worries
Provided to YouTube by Universal Music Group
No Worries · Lil Wayne · Detail
I Am Not A Human Being II
℗ 2012 Cash Money Records Inc.
Released on: 2013-01-01
Producer: Detail
Studio Personnel, Recording Engineer: Michael “BANGER” Cadahia
Studio Personnel, Mixer: Fabian Marascuillo
Studio Personnel, Assistant Mixer: Alexander Dilliplane
Composer Lyricist: D. Carter
Composer Lyricist: N. Fisher
Composer Lyricist: B. Williams
Composer Lyricist: Jermaine Preyan
Composer Lyricist: R. Diaz
Auto-generated by YouTube.
published: 23 Jul 2018
Casual save the doge.no worries.#pleasesubscribe
published: 02 Dec 2024
No Worries (Official Video) | Sidhu Moose Wala & Raja Game Changerz | #punjabisong 2020
No Worries (Official Video) | Sidhu Moosewala & Raja Game Changerz | Punjabi Songs 2020
Insta Reel - https://www.instagram.com/reels/audio/1217167888622238/
Available On All Streaming Platforms:
Spotify: https://open.spotify.com/album/5zDfRTeRs6JSO6QAA0AGHU?si=dsG3tLpvTgGgsIVww5qWig
Apple Music: https://music.apple.com/us/album/no-worries-single/1526983015
YouTube Music: https://music.youtube.com/playlist?list=OLAK5uy_mmP9dxcpdOdCj_oyV3TwNDtCltK83LuTQ
Wynk: https://wynk.in/u/dIubFugJ7
Deezer: https://www.deezer.com/track/1046582032?utm_source=deezer&utm_content=track-1046582032&utm_term=3640033122_1597294513&utm_medium=web
Amazon Music:
Hungama:
Saavn: https://www.saavn.com/s/song/unknown/No-Worries/No-Worries/IiQzXUQIWFU
Resso: https://m.resso.app/ZSy7GtNG/
Song Credits:
Sarbjit Saro...
published: 13 Aug 2020
4:06
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ OFFICIAL MV ]
แอบรักไม่ทำให้ใครตาย (NO WORRIES) - LYKN
Lyrics - KANGSOMKS
Melody - KANGSOMKS
Arranged - Supachok Chuamuangphan Nittayah Maniwong
String - Bee ETC
Producer - ...
แอบรักไม่ทำให้ใครตาย (NO WORRIES) - LYKN
Lyrics - KANGSOMKS
Melody - KANGSOMKS
Arranged - Supachok Chuamuangphan Nittayah Maniwong
String - Bee ETC
Producer - KANGSOMKS
Mix&Mastered - StarBoy
Digital Download *1232323
Spotify | iTunes | JOOX | Apple Music
(Nut)เข้าใจในทันที ที่เธอบ่นแต่เรื่องเขา
ทำไมเขาไม่สน ต้องเป็นคนยังไง
เขาถึงจะหันมองและมาสนใจ
(Lego)เปลี่ยนตัวเองเท่าไหร่แต่สถานะก็เหมือนเดิม
(Tui)เธอบอกถ้าเขาไม่มีใจ เธอก็คงอยู่ไม่ไหว
ไม่เป็นไรมองตาฉันแล้วฟัง
(William, LYKN)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(Hong)เห็นเธอเป็นแบบนี้แล้วเหมือนเห็นตัวเอง
แต่ต่างกันที่ว่าฉันเป็นคนทนเก่ง
อยากให้เธอนั้นสบายใจ
ถ้าฉันเองยังไม่เป็นไร
เธอก็อยู่ได้สบาย
(Lego)อยู่ข้างนานเท่าไหร่แต่สถานะก็เหมือนเดิม
(Tui)เธอบอกถ้าเขาไม่มีใจ เธอก็คงอยู่ไม่ไหว
ไม่เป็นไรมองตาฉันแล้วฟัง
(William)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(William)ถ้าวันนึงเธอบอกเขาไป (Tui บอกเข้าไป ไม่มีใจ)
แล้วสุดท้ายเขาไม่มีใจ
เธอต้องเสียเขาไปตลอดกาล
แค่แอบรักฉันคงไม่ตาย
แต่ถ้าไม่มีเธอคงอยู่ไม่ไหว
ไม่พร้อม จะแลกอะไร กับการไม่มีเธอ
(Tui)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
(William, LYKN)ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(William)
แอบรักไม่ทำให้ใครตาย แต่แอบรักอาจทำให้เสียใจ
แต่แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
#แอบรักไม่ทำให้ใครตาย
#LYKN
#RISERMUSIC
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMusicTH
YouTube : https://www.youtube.com/@risermusicth
Instagram : https://www.instagram.com/risermusicth/
X : https://twitter.com/RiserMusic
TikTok : http://tiktok.com/@risermusicth
Subtitles
Chinese (Taiwan) : @lykntwfc (Instagram & Twitter)
Japanese : @Ao2322024 (Twitter)
Vietnamese : LYKN's Home in Việt Nam (Facebook)
Chinese (Hong Kong) : @allforlykn.hk (Instagram)
Spanish (Latin America) : (LYKN Latinoamérica)
Korean : @sihoir (Twitter)
Burmese : LYKYou - Myanmar (Facebook)
Malay : J.W.字幕: @j.w.sub (Instagram), @jwsub123 (Twitter)
Spanish : (LYKN Latinoamérica)
Portuguese (Brazil) : @SupportLYKNBR (X/IG)
https://wn.com/Lykn_แอบรักไม่ทำให้ใครตาย_(No_Worries)_Official_Mv
แอบรักไม่ทำให้ใครตาย (NO WORRIES) - LYKN
Lyrics - KANGSOMKS
Melody - KANGSOMKS
Arranged - Supachok Chuamuangphan Nittayah Maniwong
String - Bee ETC
Producer - KANGSOMKS
Mix&Mastered - StarBoy
Digital Download *1232323
Spotify | iTunes | JOOX | Apple Music
(Nut)เข้าใจในทันที ที่เธอบ่นแต่เรื่องเขา
ทำไมเขาไม่สน ต้องเป็นคนยังไง
เขาถึงจะหันมองและมาสนใจ
(Lego)เปลี่ยนตัวเองเท่าไหร่แต่สถานะก็เหมือนเดิม
(Tui)เธอบอกถ้าเขาไม่มีใจ เธอก็คงอยู่ไม่ไหว
ไม่เป็นไรมองตาฉันแล้วฟัง
(William, LYKN)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(Hong)เห็นเธอเป็นแบบนี้แล้วเหมือนเห็นตัวเอง
แต่ต่างกันที่ว่าฉันเป็นคนทนเก่ง
อยากให้เธอนั้นสบายใจ
ถ้าฉันเองยังไม่เป็นไร
เธอก็อยู่ได้สบาย
(Lego)อยู่ข้างนานเท่าไหร่แต่สถานะก็เหมือนเดิม
(Tui)เธอบอกถ้าเขาไม่มีใจ เธอก็คงอยู่ไม่ไหว
ไม่เป็นไรมองตาฉันแล้วฟัง
(William)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(William)ถ้าวันนึงเธอบอกเขาไป (Tui บอกเข้าไป ไม่มีใจ)
แล้วสุดท้ายเขาไม่มีใจ
เธอต้องเสียเขาไปตลอดกาล
แค่แอบรักฉันคงไม่ตาย
แต่ถ้าไม่มีเธอคงอยู่ไม่ไหว
ไม่พร้อม จะแลกอะไร กับการไม่มีเธอ
(Tui)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
(William, LYKN)ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(William)
แอบรักไม่ทำให้ใครตาย แต่แอบรักอาจทำให้เสียใจ
แต่แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
#แอบรักไม่ทำให้ใครตาย
#LYKN
#RISERMUSIC
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMusicTH
YouTube : https://www.youtube.com/@risermusicth
Instagram : https://www.instagram.com/risermusicth/
X : https://twitter.com/RiserMusic
TikTok : http://tiktok.com/@risermusicth
Subtitles
Chinese (Taiwan) : @lykntwfc (Instagram & Twitter)
Japanese : @Ao2322024 (Twitter)
Vietnamese : LYKN's Home in Việt Nam (Facebook)
Chinese (Hong Kong) : @allforlykn.hk (Instagram)
Spanish (Latin America) : (LYKN Latinoamérica)
Korean : @sihoir (Twitter)
Burmese : LYKYou - Myanmar (Facebook)
Malay : J.W.字幕: @j.w.sub (Instagram), @jwsub123 (Twitter)
Spanish : (LYKN Latinoamérica)
Portuguese (Brazil) : @SupportLYKNBR (X/IG)
published: 01 Nov 2023
views: 5057108
3:50
Lil Wayne - No Worries ft. Detail (Explicit)
Music video by Lil Wayne performing No Worries (Explicit). © 2012 Cash Money Records Inc.
Music video by Lil Wayne performing No Worries (Explicit). © 2012 Cash Money Records Inc.
https://wn.com/Lil_Wayne_No_Worries_Ft._Detail_(Explicit)
Music video by Lil Wayne performing No Worries (Explicit). © 2012 Cash Money Records Inc.
published: 28 Nov 2012
views: 77905928
3:12
D'Angel, Spice - No Worries
D'Angel and Spice official video for "No Worries"... Money Mix Riddim
http://vevo.ly/JLAwxk
D'Angel and Spice official video for "No Worries"... Money Mix Riddim
http://vevo.ly/JLAwxk
https://wn.com/D'Angel,_Spice_No_Worries
D'Angel and Spice official video for "No Worries"... Money Mix Riddim
http://vevo.ly/JLAwxk
published: 11 Sep 2017
views: 6551846
17:28
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ SHORT FILM ]
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMusicTH
YouTube : https://www.youtube.com/@risermusicth
Instagram : https...
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMusicTH
YouTube : https://www.youtube.com/@risermusicth
Instagram : https://www.instagram.com/risermusicth/
X : https://twitter.com/RiserMusic
TikTok : http://tiktok.com/@risermusicth
Subtitles
Japanese : @Ao2322024 (Twitter)
Vietnamese : LYKN's Home in Việt Nam (Facebook)
Chinese (Hong Kong) : @allforlykn.hk (Instagram)
Chinese (Taiwan) : LYKN Taiwanese Fanclub / lykntwfc (Instagram & Twitter)
Spanish (Latin America) : (LYKN Latinoamérica)
Burmese : @LYKYou_MM (X), @lykyou_myanmar (Instagram) @mynameisilpal : @mynameisilpal (X)
Spanish : (LYKN Latinoamérica)
Portuguese (Brazil) : @SupportLYKNBR (X/IG)
https://wn.com/Lykn_แอบรักไม่ทำให้ใครตาย_(No_Worries)_Short_Film
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMusicTH
YouTube : https://www.youtube.com/@risermusicth
Instagram : https://www.instagram.com/risermusicth/
X : https://twitter.com/RiserMusic
TikTok : http://tiktok.com/@risermusicth
Subtitles
Japanese : @Ao2322024 (Twitter)
Vietnamese : LYKN's Home in Việt Nam (Facebook)
Chinese (Hong Kong) : @allforlykn.hk (Instagram)
Chinese (Taiwan) : LYKN Taiwanese Fanclub / lykntwfc (Instagram & Twitter)
Spanish (Latin America) : (LYKN Latinoamérica)
Burmese : @LYKYou_MM (X), @lykyou_myanmar (Instagram) @mynameisilpal : @mynameisilpal (X)
Spanish : (LYKN Latinoamérica)
Portuguese (Brazil) : @SupportLYKNBR (X/IG)
published: 30 Oct 2023
views: 680264
3:39
Simon Webbe - No Worries
Music video by Simon Webbe performing No Worries.
Music video by Simon Webbe performing No Worries.
https://wn.com/Simon_Webbe_No_Worries
Music video by Simon Webbe performing No Worries.
published: 25 Feb 2009
views: 4220676
3:41
No Worries
Provided to YouTube by Universal Music Group
No Worries · Lil Wayne · Detail
I Am Not A Human Being II
℗ 2012 Cash Money Records Inc.
Released on: 2013-01-0...
Provided to YouTube by Universal Music Group
No Worries · Lil Wayne · Detail
I Am Not A Human Being II
℗ 2012 Cash Money Records Inc.
Released on: 2013-01-01
Producer: Detail
Studio Personnel, Recording Engineer: Michael “BANGER” Cadahia
Studio Personnel, Mixer: Fabian Marascuillo
Studio Personnel, Assistant Mixer: Alexander Dilliplane
Composer Lyricist: D. Carter
Composer Lyricist: N. Fisher
Composer Lyricist: B. Williams
Composer Lyricist: Jermaine Preyan
Composer Lyricist: R. Diaz
Auto-generated by YouTube.
https://wn.com/No_Worries
Provided to YouTube by Universal Music Group
No Worries · Lil Wayne · Detail
I Am Not A Human Being II
℗ 2012 Cash Money Records Inc.
Released on: 2013-01-01
Producer: Detail
Studio Personnel, Recording Engineer: Michael “BANGER” Cadahia
Studio Personnel, Mixer: Fabian Marascuillo
Studio Personnel, Assistant Mixer: Alexander Dilliplane
Composer Lyricist: D. Carter
Composer Lyricist: N. Fisher
Composer Lyricist: B. Williams
Composer Lyricist: Jermaine Preyan
Composer Lyricist: R. Diaz
Auto-generated by YouTube.
published: 23 Jul 2018
views: 1117587
3:26
No Worries (Official Video) | Sidhu Moose Wala & Raja Game Changerz | #punjabisong 2020
No Worries (Official Video) | Sidhu Moosewala & Raja Game Changerz | Punjabi Songs 2020
Insta Reel - https://www.instagram.com/reels/audio/1217167888622238/
A...
No Worries (Official Video) | Sidhu Moosewala & Raja Game Changerz | Punjabi Songs 2020
Insta Reel - https://www.instagram.com/reels/audio/1217167888622238/
Available On All Streaming Platforms:
Spotify: https://open.spotify.com/album/5zDfRTeRs6JSO6QAA0AGHU?si=dsG3tLpvTgGgsIVww5qWig
Apple Music: https://music.apple.com/us/album/no-worries-single/1526983015
YouTube Music: https://music.youtube.com/playlist?list=OLAK5uy_mmP9dxcpdOdCj_oyV3TwNDtCltK83LuTQ
Wynk: https://wynk.in/u/dIubFugJ7
Deezer: https://www.deezer.com/track/1046582032?utm_source=deezer&utm_content=track-1046582032&utm_term=3640033122_1597294513&utm_medium=web
Amazon Music:
Hungama:
Saavn: https://www.saavn.com/s/song/unknown/No-Worries/No-Worries/IiQzXUQIWFU
Resso: https://m.resso.app/ZSy7GtNG/
Song Credits:
Sarbjit Saroya & Planet Recordz presents:
Song: No Worries
Singer: Sidhu Moosewala & Raja Game Changerz
Music: Game Changerz
Lyrics: Sidhu Moosewala & Raja Game Changerz
Video: Inside Motion Pictures
Producer: Sarbjit Saroya
Assistant Director: Rahul Dhir
Project By; Meeru
Label: Planet Recordz Inc
Distribution: ABC Digital
Online Promotion - Planet Media Group
Mixing By: BPM Singh
Directed by - Himanshu Dhar
Edited by- Himanshu Dhar
DOP- Manvir Dhaliwal
VFX Director- Inside AKY
VFX by- Inside Motion Pictures
Production Manager- Samyanky
Graphics by - Ajay Cobra
Production team : Amit Negi, Abhishek
Actors : Jugbir, Surender
Special thanks : Nikhil
Follow Us:
Instagram: https://www.instagram.com/planetrecordz/
Facebook: https://www.facebook.com/planetrecordz/
http://www.planetrecordz.com/
LATEST PUNJABI SONGS 2020
NEW PUNJABI SONGS 2020
SIDHU MOOSEWALA
RAJA GAMECHANGERZ
https://wn.com/No_Worries_(Official_Video)_|_Sidhu_Moose_Wala_Raja_Game_Changerz_|_Punjabisong_2020
No Worries (Official Video) | Sidhu Moosewala & Raja Game Changerz | Punjabi Songs 2020
Insta Reel - https://www.instagram.com/reels/audio/1217167888622238/
Available On All Streaming Platforms:
Spotify: https://open.spotify.com/album/5zDfRTeRs6JSO6QAA0AGHU?si=dsG3tLpvTgGgsIVww5qWig
Apple Music: https://music.apple.com/us/album/no-worries-single/1526983015
YouTube Music: https://music.youtube.com/playlist?list=OLAK5uy_mmP9dxcpdOdCj_oyV3TwNDtCltK83LuTQ
Wynk: https://wynk.in/u/dIubFugJ7
Deezer: https://www.deezer.com/track/1046582032?utm_source=deezer&utm_content=track-1046582032&utm_term=3640033122_1597294513&utm_medium=web
Amazon Music:
Hungama:
Saavn: https://www.saavn.com/s/song/unknown/No-Worries/No-Worries/IiQzXUQIWFU
Resso: https://m.resso.app/ZSy7GtNG/
Song Credits:
Sarbjit Saroya & Planet Recordz presents:
Song: No Worries
Singer: Sidhu Moosewala & Raja Game Changerz
Music: Game Changerz
Lyrics: Sidhu Moosewala & Raja Game Changerz
Video: Inside Motion Pictures
Producer: Sarbjit Saroya
Assistant Director: Rahul Dhir
Project By; Meeru
Label: Planet Recordz Inc
Distribution: ABC Digital
Online Promotion - Planet Media Group
Mixing By: BPM Singh
Directed by - Himanshu Dhar
Edited by- Himanshu Dhar
DOP- Manvir Dhaliwal
VFX Director- Inside AKY
VFX by- Inside Motion Pictures
Production Manager- Samyanky
Graphics by - Ajay Cobra
Production team : Amit Negi, Abhishek
Actors : Jugbir, Surender
Special thanks : Nikhil
Follow Us:
Instagram: https://www.instagram.com/planetrecordz/
Facebook: https://www.facebook.com/planetrecordz/
http://www.planetrecordz.com/
LATEST PUNJABI SONGS 2020
NEW PUNJABI SONGS 2020
SIDHU MOOSEWALA
RAJA GAMECHANGERZ
published: 13 Aug 2020
views: 6309219
3:07
Eh La _ No Worry _ ( official mv )
Play in Full Screen
Eh La _ No Worry _ ( official mv )
Eh La _ No Worry _ ( official mv )
2:34
Eh La _ No Worry _ ( official visualizer )
Play in Full Screen
Eh La _ No Worry _ ( official visualizer )
Eh La _ No Worry _ ( official visualizer )
4:06
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ OFFICIAL MV ]
แอบรักไม่ทำให้ใครตาย (NO WORRIES) - LYKN
Lyrics - KANGSOMKS
Melody - KANGSOMKS
Arranged - ...
Play in Full Screen
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ OFFICIAL MV ]
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ OFFICIAL MV ]
แอบรักไม่ทำให้ใครตาย (NO WORRIES) - LYKN
Lyrics - KANGSOMKS
Melody - KANGSOMKS
Arranged - Supachok Chuamuangphan Nittayah Maniwong
String - Bee ETC
Producer - KANGSOMKS
Mix&Mastered - StarBoy
Digital Download *1232323
Spotify | iTunes | JOOX | Apple Music
(Nut)เข้าใจในทันที ที่เธอบ่นแต่เรื่องเขา
ทำไมเขาไม่สน ต้องเป็นคนยังไง
เขาถึงจะหันมองและมาสนใจ
(Lego)เปลี่ยนตัวเองเท่าไหร่แต่สถานะก็เหมือนเดิม
(Tui)เธอบอกถ้าเขาไม่มีใจ เธอก็คงอยู่ไม่ไหว
ไม่เป็นไรมองตาฉันแล้วฟัง
(William, LYKN)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(Hong)เห็นเธอเป็นแบบนี้แล้วเหมือนเห็นตัวเอง
แต่ต่างกันที่ว่าฉันเป็นคนทนเก่ง
อยากให้เธอนั้นสบายใจ
ถ้าฉันเองยังไม่เป็นไร
เธอก็อยู่ได้สบาย
(Lego)อยู่ข้างนานเท่าไหร่แต่สถานะก็เหมือนเดิม
(Tui)เธอบอกถ้าเขาไม่มีใจ เธอก็คงอยู่ไม่ไหว
ไม่เป็นไรมองตาฉันแล้วฟัง
(William)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(William)ถ้าวันนึงเธอบอกเขาไป (Tui บอกเข้าไป ไม่มีใจ)
แล้วสุดท้ายเขาไม่มีใจ
เธอต้องเสียเขาไปตลอดกาล
แค่แอบรักฉันคงไม่ตาย
แต่ถ้าไม่มีเธอคงอยู่ไม่ไหว
ไม่พร้อม จะแลกอะไร กับการไม่มีเธอ
(Tui)ก็แค่แอบรัก ไม่เห็นว่าจะเป็นเรื่องใหญ่
เพราะฉันเองก็ไม่พูดไปว่ารักเธอมากแค่ไหน
เก็บเอาไว้เธอไม่เคยรู้
(William, LYKN)ก็แค่แอบรัก อย่างน้อยเธอจะยังได้อยู่
ข้างๆคอยดูแลเขา ฉันผ่านมาแล้ว เชื่อเถอะฉันรู้
แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
(William)
แอบรักไม่ทำให้ใครตาย แต่แอบรักอาจทำให้เสียใจ
แต่แอบรักไม่ทำให้ใครต้องตายอยู่แล้ว
#แอบรักไม่ทำให้ใครตาย
#LYKN
#RISERMUSIC
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMusicTH
YouTube : https://www.youtube.com/@risermusicth
Instagram : https://www.instagram.com/risermusicth/
X : https://twitter.com/RiserMusic
TikTok : http://tiktok.com/@risermusicth
Subtitles
Chinese (Taiwan) : @lykntwfc (Instagram & Twitter)
Japanese : @Ao2322024 (Twitter)
Vietnamese : LYKN's Home in Việt Nam (Facebook)
Chinese (Hong Kong) : @allforlykn.hk (Instagram)
Spanish (Latin America) : (LYKN Latinoamérica)
Korean : @sihoir (Twitter)
Burmese : LYKYou - Myanmar (Facebook)
Malay : J.W.字幕: @j.w.sub (Instagram), @jwsub123 (Twitter)
Spanish : (LYKN Latinoamérica)
Portuguese (Brazil) : @SupportLYKNBR (X/IG)
3:50
Lil Wayne - No Worries ft. Detail (Explicit)
Music video by Lil Wayne performing No Worries (Explicit). © 2012 Cash Money Records Inc.
Play in Full Screen
Lil Wayne - No Worries ft. Detail (Explicit)
Lil Wayne - No Worries ft. Detail (Explicit)
Music video by Lil Wayne performing No Worries (Explicit). © 2012 Cash Money Records Inc.
3:12
D'Angel, Spice - No Worries
D'Angel and Spice official video for "No Worries"... Money Mix Riddim
http://vevo.ly/JLAw...
Play in Full Screen
D'Angel, Spice - No Worries
D'Angel, Spice - No Worries
D'Angel and Spice official video for "No Worries"... Money Mix Riddim
http://vevo.ly/JLAwxk
17:28
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ SHORT FILM ]
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMus...
Play in Full Screen
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ SHORT FILM ]
LYKN - แอบรักไม่ทำให้ใครตาย (NO WORRIES) [ SHORT FILM ]
ติดตามทุกความเคลื่อนไหวของ RISER MUSIC ได้ที่
Facebook : https://www.facebook.com/RiserMusicTH
YouTube : https://www.youtube.com/@risermusicth
Instagram : https://www.instagram.com/risermusicth/
X : https://twitter.com/RiserMusic
TikTok : http://tiktok.com/@risermusicth
Subtitles
Japanese : @Ao2322024 (Twitter)
Vietnamese : LYKN's Home in Việt Nam (Facebook)
Chinese (Hong Kong) : @allforlykn.hk (Instagram)
Chinese (Taiwan) : LYKN Taiwanese Fanclub / lykntwfc (Instagram & Twitter)
Spanish (Latin America) : (LYKN Latinoamérica)
Burmese : @LYKYou_MM (X), @lykyou_myanmar (Instagram) @mynameisilpal : @mynameisilpal (X)
Spanish : (LYKN Latinoamérica)
Portuguese (Brazil) : @SupportLYKNBR (X/IG)
3:39
Simon Webbe - No Worries
Music video by Simon Webbe performing No Worries.
Play in Full Screen
Simon Webbe - No Worries
Simon Webbe - No Worries
Music video by Simon Webbe performing No Worries.
3:41
No Worries
Provided to YouTube by Universal Music Group
No Worries · Lil Wayne · Detail
I Am Not A ...
Play in Full Screen
No Worries
No Worries
Provided to YouTube by Universal Music Group
No Worries · Lil Wayne · Detail
I Am Not A Human Being II
℗ 2012 Cash Money Records Inc.
Released on: 2013-01-01
Producer: Detail
Studio Personnel, Recording Engineer: Michael “BANGER” Cadahia
Studio Personnel, Mixer: Fabian Marascuillo
Studio Personnel, Assistant Mixer: Alexander Dilliplane
Composer Lyricist: D. Carter
Composer Lyricist: N. Fisher
Composer Lyricist: B. Williams
Composer Lyricist: Jermaine Preyan
Composer Lyricist: R. Diaz
Auto-generated by YouTube.
0:29
Casual save the doge.no worries.#pleasesubscribe
Play in Full Screen
Casual save the doge.no worries.#pleasesubscribe
Casual save the doge.no worries.#pleasesubscribe
3:26
No Worries (Official Video) | Sidhu Moose Wala & Raja Game Changerz | #punjabisong 2020
No Worries (Official Video) | Sidhu Moosewala & Raja Game Changerz | Punjabi Songs 2020
I...
Play in Full Screen
No Worries (Official Video) | Sidhu Moose Wala & Raja Game Changerz | #punjabisong 2020
No Worries (Official Video) | Sidhu Moose Wala & Raja Game Changerz | #punjabisong 2020
No Worries (Official Video) | Sidhu Moosewala & Raja Game Changerz | Punjabi Songs 2020
Insta Reel - https://www.instagram.com/reels/audio/1217167888622238/
Available On All Streaming Platforms:
Spotify: https://open.spotify.com/album/5zDfRTeRs6JSO6QAA0AGHU?si=dsG3tLpvTgGgsIVww5qWig
Apple Music: https://music.apple.com/us/album/no-worries-single/1526983015
YouTube Music: https://music.youtube.com/playlist?list=OLAK5uy_mmP9dxcpdOdCj_oyV3TwNDtCltK83LuTQ
Wynk: https://wynk.in/u/dIubFugJ7
Deezer: https://www.deezer.com/track/1046582032?utm_source=deezer&utm_content=track-1046582032&utm_term=3640033122_1597294513&utm_medium=web
Amazon Music:
Hungama:
Saavn: https://www.saavn.com/s/song/unknown/No-Worries/No-Worries/IiQzXUQIWFU
Resso: https://m.resso.app/ZSy7GtNG/
Song Credits:
Sarbjit Saroya & Planet Recordz presents:
Song: No Worries
Singer: Sidhu Moosewala & Raja Game Changerz
Music: Game Changerz
Lyrics: Sidhu Moosewala & Raja Game Changerz
Video: Inside Motion Pictures
Producer: Sarbjit Saroya
Assistant Director: Rahul Dhir
Project By; Meeru
Label: Planet Recordz Inc
Distribution: ABC Digital
Online Promotion - Planet Media Group
Mixing By: BPM Singh
Directed by - Himanshu Dhar
Edited by- Himanshu Dhar
DOP- Manvir Dhaliwal
VFX Director- Inside AKY
VFX by- Inside Motion Pictures
Production Manager- Samyanky
Graphics by - Ajay Cobra
Production team : Amit Negi, Abhishek
Actors : Jugbir, Surender
Special thanks : Nikhil
Follow Us:
Instagram: https://www.instagram.com/planetrecordz/
Facebook: https://www.facebook.com/planetrecordz/
http://www.planetrecordz.com/
LATEST PUNJABI SONGS 2020
NEW PUNJABI SONGS 2020
SIDHU MOOSEWALA
RAJA GAMECHANGERZ
');
} else {
var query = elem.find('.keywords').html();
$.ajax({
context: elem,
url: 'https://wn.com/api/upge/cheetah-search-adv/video',
cache: true,
data: {
'query': query
},
dataType: 'jsonp',
success: function(text) {
if (text.length > 0) {
video_id = text[0].id;
elem.find('.player').html('
VIDEO
');
}
}
});
}
}
var stopAllYouTubeVideos = function() {
var iframes = document.querySelectorAll('iframe');
Array.prototype.forEach.call(iframes, function(iframe) {
iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*');
});
}
jQuery(function() {
jQuery(".playVideo").live("click", function() {
if(!$(this).hasClass("played")){
stopAllYouTubeVideos();
var elem = $(this);
setTimeout(function(){
mouseOverMe(elem);
}, 1000);
}
});
jQuery(".description_box .expandContent").live("click", function() {
elem = $(this).parent().parent().parent().find('.descContent');
if(elem.height() > 51) {
elem.css('height', '44px');
$(this).html('Show More
');
}else{
elem.css('height', 'auto');
$(this).html('Hide
');
}
});
jQuery('.interview-play-off').click(function() {
$(".interview-play-off").hide();
$(".interview-play").show();
$(".videoplayer-control-pause").click();
});
jQuery(".video-desc .show_author_videos").live("click", function() {
query = $(this).attr('title');
container = $(this).parent().parent().parent().find('.video-author-thumbs');
$(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px');
jQuery.ajax({
url: '/api/upge/cheetah-photo-search/videoresults',
data: {'query': query},
success: function(text) {
if(!text) { text = i18n("No results"); }
container.html(jQuery(text));
}
});
});
});
// -->
No Worries
by:
McFly
We ran past strawberry fields and smelt the summertime When it gets dark I’ll hold your body close to mine And then we’ll find some wood and hell we’ll build a fire And then we’ll find some rope and make a swinging tyre Captivated by the way you look tonight The light is dancing in your eyes, your sweet eyes It’s times like these we’ll never forget Stayin out to watch the sunset I’m glad I shared this with you Cause you set me free Show me how good my life could be How could this happen to me? Yeahhhohhh And then I’ll swing you girl until you fall asleep But when you wake up you’ll be lyin next to me (ba ba ooo) We’ll go to Hollywood, make you a movie star (movie star) I want the world to know how beautiful you are Captivated buy the way you look tonight The light is dancing in your eyes, your sweet eyes yeah It’s times like these we’ll never forget Stayin out to watch the sunset I’m glad I shared this with you Cause you set me free Show me how good my life could be How did you happen to me? Yeahhhohhh There are no secrets to be told Nothing we don’t already know (bum bum bum) We got no fears of growin old We got no worries in the world Ba Ba Ba Da Ba Ba Da
Latest News for: no worries
Edit
NBC Bay Area
28 Jan 2025
Verified activity on Sunday created a flurry of social media warnings and worries ... Councilman Peter Ortiz , who is also a member of the Rapid Response Network , urged worried residents to stay indoors ... But he said he has no choice.
Edit
The Post-Standard
28 Jan 2025
After suffering two concussions in the matter of one week, there were plenty of people worried about Benford’s well-being ... He thanked everyone for their prayers before adding that there was no reason to worry ... No need to worry ... Buffalo ’s No.
Edit
This is Money
28 Jan 2025
Half of over-55s are worried their pension savings won’t last until they die, new research reveals ... However, 67 per cent were not worried about this, while 21 per cent didn't know. Just 5 per cent of those polled said they had no pensions at all.
Edit
The Daily Mail
28 Jan 2025
Half of over-55s are worried their pension savings won’t last until they die, new research reveals ... However, 67 per cent were not worried about this, while 21 per cent didn't know. Just 5 per cent of those polled said they had no pensions at all.
Edit
CyprusMail
28 Jan 2025
If you’ve never heard of an eSIM, don’t worry—this guide will break it all down ... No hidden fees or extra charges, which many users appreciate ... No more physical SIM cards . No more fumbling with tiny pieces of plastic or worrying about losing them.
Edit
New York Magazine
28 Jan 2025
The bishops wasted no time in responding to Vance , noting that the expenses associated with their care for refugees far outstrip the compensation they receive from the federal government.
Edit
Raw Story
28 Jan 2025
Eastern — roughly three hours after the email was received — immediately closing off access to all data sets, reports and analytical tools," which has some experts worried the Trump administration has no plans to restart the program. ALSO READ ... budget.
Edit
York News-Times
28 Jan 2025
... basketball game Linden remains solid at No ... She she said understood why Parry's husband asked why the court was worried about her instead of out catching drug dealers ... There's no question," she said.
Edit
New York Post
28 Jan 2025
Vivid Seats is the New York Post 's official ticketing partner. We may receive revenue from this partnership for sharing this content and/or when you make a purchase. Featured pricing is subject to change. Holy skinny jeans ... 31 ... VIP ... No need to worry ... • St.
Edit
New York Magazine
28 Jan 2025
You tell yourself that it’s too difficult, that you don’t have the time, or that nobody else seems to worry about being a good person, so why should you? But no matter how much these excuses seem to ...
Edit
The Tennessean
28 Jan 2025
Kehoe ran into her parents' room, and her mom said not to worry, it was just an earthquake — they had those often in their native New Zealand — and a hotel receptionist assured them that no other earthquakes were expected that day.
Edit
Grand Forks Herald
28 Jan 2025
ADVERTISEMENT ... However, some on the council felt like they need more information before agreeing to the letter of intent, no matter how preliminary the discussions are. “I do worry about the implications to what’s here currently,” Vein said ... Port ... Share .