'+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;
}));
});
-->
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
ต้นฉบับ : https://www.youtube.com/watch?v=Yr7TisEjduY
เพลง : โสดไม่ได้ตั้งใจ
ศิลปินต้นฉบับ : จอย ศิริลักษณ์
ศิลปิน cover : FLI:P
#โสดไม่ได้ตั้งใจFLIP
#โสดไม่ได้ตั้งใจ #จอยศิริลักษณ์
#โสดไม่ได้ตั้งใจFLIP_OUTNOW
#FLIP_FROMNO1R
#NO1R_OFFICIAL
------------------------------------------------------------
เนื้อเพลง
เนื้อเพลง : โสดไม่ได้ตั้งใจ
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
That’s crazy ไม่ได้ตั้งจะ Lonely
Baby,I don’t wanna sadly
Yeah!! Why I’m single lady
รอนานๆก็เริ่มเฉาละ
Sorry, เพราะดวงความรักไม่ค่อยมี
Who want to be my honey
อ๊ะ so bad so sad
รักใคร ชอบใครต้องกินแห้วทุกที
โอม ชยะ ศรี...
published: 06 Dec 2024
มองนานๆ - Vitamin A | Covered by FLI:P [Special Video]
มองนานๆ - Vitamin A | Cover by FLI:P [Special Video]
ต้นฉบับ : https://youtu.be/mtu0nawdYV0
เพลง : มองนานๆ
ศิลปิน : Vitamin A
#มองนานๆ #VitaminA #FLI:P
------------------------------------------------------------
เนื้อเพลง
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
Lets' go
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
เธอมองมาทำให้ ตามันซนจนต้องมองคนสวย น่ารัก
ใจมันอยากจะบอกรัก ตามองตารู้ว่าเธอนั้นคิด
เหมือนกับใจของฉันที่มันคึกนึกแล้วอยากจะบอกรัก
คนสวยต้องมองกันหน่อย ไม่สวยไม่มองให้กร่อย
เห็นทุกวันเธอเดินมาเดินมาทำอะไร อยู่ตรงนั้นนะ
ฉันนั่งฝันนอนเพ้อพอนึกถึงเธอแล้วใจมันสั่น
อยากรู้จักเธอสักนิด เรื่องอื่นไม่ต้องไปคิด
ไม...
published: 08 Apr 2023
Thaitanium - MV FLIP ( Audio MV )
FLIP เพลงที่ทุกคนชอบ ถูกนำกลับมาเป็น Audio MV ไว้ให้แฟนๆได้ฟังกัน
published: 14 Dec 2017
10 Coolest Ways to Flip a Bottle!
published: 04 Oct 2024
Same flip, Different year 🥱
published: 15 Apr 2023
The Most Insane Flips
#shorts #fitness #gym
This Yaya and he can do really cool flips
published: 02 Jul 2023
Flip!
#shorts #lucasandmarcus #acrobatics
📲 DOWNLOAD & PLAY DOBRE DUEL!
https://dobreduel.com/
WE POST THURSDAY, SATURDAY & SUNDAY!
TURN OUR POST NOTIFICATIONS ON FOR A SHOUTOUT!
SUBSCRIBE TO THE LUCAS AND MARCUS CHANNEL!
https://www.youtube.com/user/TwiNboTzVids
SUBSCRIBE TO THE DOBRE BROTHERS CHANNEL!
https://www.youtube.com/channel/UCC3OGYxHwV8pB5yLobw9KdA
LUCAS’S SOCIAL MEDIA
Instagram - @lucas_dobre
Twitter - @Dobrelucas
Snapchat - @lucas_dobre
TikTok - @dobretwins
MARCUS’S SOCIAL MEDIA
Instagram - @Marcusdobre
Twitter - @Dobremarcus
Snapchat - @marcusdobre1
TikTok - @dobretwins
FOLLOW THE DOBRE BROTHERS!
Instagram - http://instagram.com/dobrebrothers
Snapchat - https://www.snapchat.com/discover/Dobre_Brothers/5255767112
Facebook - https://www.facebook.com/dobrebrothers/
BIZ - d...
published: 01 Apr 2023
Secret Coin Flip Hack
published: 16 Dec 2024
He Can Do Some Crazy Flips
#shorts #fitness #sports
This guy has some really impressive flips
published: 28 Jun 2023
50 Ways to Flip a Bottle
We landed bottle flips in as many ways as possible...
published: 13 Sep 2020
3:27
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
ต้นฉบับ : https://www.youtube.com/watch?v=Yr7TisEjduY
เพลง : โสดไม่ได้ตั้...
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
ต้นฉบับ : https://www.youtube.com/watch?v=Yr7TisEjduY
เพลง : โสดไม่ได้ตั้งใจ
ศิลปินต้นฉบับ : จอย ศิริลักษณ์
ศิลปิน cover : FLI:P
#โสดไม่ได้ตั้งใจFLIP
#โสดไม่ได้ตั้งใจ #จอยศิริลักษณ์
#โสดไม่ได้ตั้งใจFLIP_OUTNOW
#FLIP_FROMNO1R
#NO1R_OFFICIAL
------------------------------------------------------------
เนื้อเพลง
เนื้อเพลง : โสดไม่ได้ตั้งใจ
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
That’s crazy ไม่ได้ตั้งจะ Lonely
Baby,I don’t wanna sadly
Yeah!! Why I’m single lady
รอนานๆก็เริ่มเฉาละ
Sorry, เพราะดวงความรักไม่ค่อยมี
Who want to be my honey
อ๊ะ so bad so sad
รักใคร ชอบใครต้องกินแห้วทุกที
โอม ชยะ ศรี ลักษมี มาตา
โอม ให้เธอรัก ให้เธอหลงวาจา
โอม พระเเม่ขา ให้เนื้อคู่จงมา
โอม
เพี้ยง !
โอม
เพี้ยง !
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
(Let’s go)
ด้อม ด้อม มอง มอง
ก็ไม่ยอมเข้ามาทักสักที
Eyes on me, fallin me love me
Lemme …yeah i don’t wanna play play play
Look at my face face face
(Hold up aey)
ไม่ได้ตั้งใจ โสดนานจนป่านเนี้ยะ
ตัวแม่จะแคร์ไร ใครก็บอก so pretty
Too sweet like a Candy muffin
Too hot like kim kardashian
ไหนใครโสดโปรดมาทางนี้
( come on )
โอ๊ย โอย โอย โอ๊ย โอ้ย
เอ้ามาละเหวยเอ๋ยมาละหว่า
หากใครหัวใจตรงกัน
อยากเป็นแฟนฉัน เอ้ามาเชิญมา
เอาความรักจากดวงใจยื่นสมัครไว้
ไม่นานหรอกหนา
เทใจให้ฉันพิสูจน์ รักบริสุทธิ์ผุดผ่องดังทองทา
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
--------------------------------------------------------------
Music credits
Produced by Krittithee sangdee (TZILA)
Arranged by Krittithee sangdee (TZILA)
Mixed : Krittithee (TZILA)
Mastered : Rawee Kangsanarak
Lyrics & Melody by Navasu Akharaphirat (N Akhara)
Lyrics Rap by Jantaralak buranatarvonsom (J JAZZSPER)
Vocal Director by Kru P : Prapruet Tongthanee
Kru Oui : Nathnarong Khongkhwan
Choreographed by KDC Station (3Tuamae)
--------------------------------------------------------------
Music video credits
HAPPY SEQUENCE
--------------------------------------------------------------
Executive Producer
Pongsiri Hetrakul
Creative Director
TOTOXCOYOTE
Project coordinator
Thiwaporn Singthong
Nitiphat Wanitmethiwong
Content creator
Panisara Tarin
Montalee Rattanasoi
Graphic Designer
Weerayut Ponsa
--------------------------------------------------------------
Stylist
Narawit Pengboontoo (basnara)
Assist Stylist
SIRIMON CHAOWALIT
WALAILAK WONGMAN
MUA
Warapasr Nootchaona (MKorn Makeup)
Hair Stylist
Sittikorn Ru-arn
Still Photographer
Parin Songwattana
Extra : Leadnitade.bu
--------------------------------------------------------------
Follow Artist
Meepooh
Instagram: https://www.instagram.com/my_name_is_mee.pb
TikTok: https://www.tiktok.com/@meebilsalem
Meiji
Instagram: https://www.instagram.com/meijimilkyy
TikTok: https://www.tiktok.com/@meijujii
Bell
Instagram: https://www.instagram.com/lilbell__
TikTok: https://www.tiktok.com/@lilbell__
--------------------------------------------------------------
Follow FLI:P
Twitter: https://twitter.com/FLIP_FROMNO1R
Instagram: https://www.instagram.com/flip_fromno1r/
TikTok: https://www.tiktok.com/@flip_fromno1r
Fanpage: https://www.facebook.com/flip.fromno1r
Youtube: https://www.youtube.com/@UC_2AFcNY35QwKLnFt0KJKHQ
--------------------------------------------------------------
ติดตามความเคลื่อนไหว NO1R
Twitter: https://twitter.com/No1rOfficial
TikTok: https://www.tiktok.com/@no1rofficial
Instagram: https://www.instagram.com/no1r_official/
Fanpage: https://www.facebook.com/No1rOfficial
--------------------------------------------------------------
📨 Contact us:
[email protected]
https://wn.com/โสดไม่ได้ตั้งใจ_(Register_Now_)_จอย_ศิริลักษณ์_|_Covered_By_Fli_P_Special_Video
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
ต้นฉบับ : https://www.youtube.com/watch?v=Yr7TisEjduY
เพลง : โสดไม่ได้ตั้งใจ
ศิลปินต้นฉบับ : จอย ศิริลักษณ์
ศิลปิน cover : FLI:P
#โสดไม่ได้ตั้งใจFLIP
#โสดไม่ได้ตั้งใจ #จอยศิริลักษณ์
#โสดไม่ได้ตั้งใจFLIP_OUTNOW
#FLIP_FROMNO1R
#NO1R_OFFICIAL
------------------------------------------------------------
เนื้อเพลง
เนื้อเพลง : โสดไม่ได้ตั้งใจ
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
That’s crazy ไม่ได้ตั้งจะ Lonely
Baby,I don’t wanna sadly
Yeah!! Why I’m single lady
รอนานๆก็เริ่มเฉาละ
Sorry, เพราะดวงความรักไม่ค่อยมี
Who want to be my honey
อ๊ะ so bad so sad
รักใคร ชอบใครต้องกินแห้วทุกที
โอม ชยะ ศรี ลักษมี มาตา
โอม ให้เธอรัก ให้เธอหลงวาจา
โอม พระเเม่ขา ให้เนื้อคู่จงมา
โอม
เพี้ยง !
โอม
เพี้ยง !
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
(Let’s go)
ด้อม ด้อม มอง มอง
ก็ไม่ยอมเข้ามาทักสักที
Eyes on me, fallin me love me
Lemme …yeah i don’t wanna play play play
Look at my face face face
(Hold up aey)
ไม่ได้ตั้งใจ โสดนานจนป่านเนี้ยะ
ตัวแม่จะแคร์ไร ใครก็บอก so pretty
Too sweet like a Candy muffin
Too hot like kim kardashian
ไหนใครโสดโปรดมาทางนี้
( come on )
โอ๊ย โอย โอย โอ๊ย โอ้ย
เอ้ามาละเหวยเอ๋ยมาละหว่า
หากใครหัวใจตรงกัน
อยากเป็นแฟนฉัน เอ้ามาเชิญมา
เอาความรักจากดวงใจยื่นสมัครไว้
ไม่นานหรอกหนา
เทใจให้ฉันพิสูจน์ รักบริสุทธิ์ผุดผ่องดังทองทา
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
--------------------------------------------------------------
Music credits
Produced by Krittithee sangdee (TZILA)
Arranged by Krittithee sangdee (TZILA)
Mixed : Krittithee (TZILA)
Mastered : Rawee Kangsanarak
Lyrics & Melody by Navasu Akharaphirat (N Akhara)
Lyrics Rap by Jantaralak buranatarvonsom (J JAZZSPER)
Vocal Director by Kru P : Prapruet Tongthanee
Kru Oui : Nathnarong Khongkhwan
Choreographed by KDC Station (3Tuamae)
--------------------------------------------------------------
Music video credits
HAPPY SEQUENCE
--------------------------------------------------------------
Executive Producer
Pongsiri Hetrakul
Creative Director
TOTOXCOYOTE
Project coordinator
Thiwaporn Singthong
Nitiphat Wanitmethiwong
Content creator
Panisara Tarin
Montalee Rattanasoi
Graphic Designer
Weerayut Ponsa
--------------------------------------------------------------
Stylist
Narawit Pengboontoo (basnara)
Assist Stylist
SIRIMON CHAOWALIT
WALAILAK WONGMAN
MUA
Warapasr Nootchaona (MKorn Makeup)
Hair Stylist
Sittikorn Ru-arn
Still Photographer
Parin Songwattana
Extra : Leadnitade.bu
--------------------------------------------------------------
Follow Artist
Meepooh
Instagram: https://www.instagram.com/my_name_is_mee.pb
TikTok: https://www.tiktok.com/@meebilsalem
Meiji
Instagram: https://www.instagram.com/meijimilkyy
TikTok: https://www.tiktok.com/@meijujii
Bell
Instagram: https://www.instagram.com/lilbell__
TikTok: https://www.tiktok.com/@lilbell__
--------------------------------------------------------------
Follow FLI:P
Twitter: https://twitter.com/FLIP_FROMNO1R
Instagram: https://www.instagram.com/flip_fromno1r/
TikTok: https://www.tiktok.com/@flip_fromno1r
Fanpage: https://www.facebook.com/flip.fromno1r
Youtube: https://www.youtube.com/@UC_2AFcNY35QwKLnFt0KJKHQ
--------------------------------------------------------------
ติดตามความเคลื่อนไหว NO1R
Twitter: https://twitter.com/No1rOfficial
TikTok: https://www.tiktok.com/@no1rofficial
Instagram: https://www.instagram.com/no1r_official/
Fanpage: https://www.facebook.com/No1rOfficial
--------------------------------------------------------------
📨 Contact us:
[email protected]
published: 06 Dec 2024
views: 250228
3:45
มองนานๆ - Vitamin A | Covered by FLI:P [Special Video]
มองนานๆ - Vitamin A | Cover by FLI:P [Special Video]
ต้นฉบับ : https://youtu.be/mtu0nawdYV0
เพลง : มองนานๆ
ศิลปิน : Vitamin A
#มองนานๆ #VitaminA #FLI:P
-----...
มองนานๆ - Vitamin A | Cover by FLI:P [Special Video]
ต้นฉบับ : https://youtu.be/mtu0nawdYV0
เพลง : มองนานๆ
ศิลปิน : Vitamin A
#มองนานๆ #VitaminA #FLI:P
------------------------------------------------------------
เนื้อเพลง
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
Lets' go
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
เธอมองมาทำให้ ตามันซนจนต้องมองคนสวย น่ารัก
ใจมันอยากจะบอกรัก ตามองตารู้ว่าเธอนั้นคิด
เหมือนกับใจของฉันที่มันคึกนึกแล้วอยากจะบอกรัก
คนสวยต้องมองกันหน่อย ไม่สวยไม่มองให้กร่อย
เห็นทุกวันเธอเดินมาเดินมาทำอะไร อยู่ตรงนั้นนะ
ฉันนั่งฝันนอนเพ้อพอนึกถึงเธอแล้วใจมันสั่น
อยากรู้จักเธอสักนิด เรื่องอื่นไม่ต้องไปคิด
ไม่ว่าคุณจะเป็นใครไปยังไงมายังไง
แฟนคุณจะมีหรือไม่มีผมไม่เกี่ยว
คุณชื่ออะไรไปยัง ไงมายังไง สวยออกอย่างนี้
ไหงมาเดินคนเดียว ถ้าไม่รังเกียจก็ยินดีที่ได้รู้จัก
มองคุณมานานผมก็เลยอยากทัก
ถ้าไม่รังเกียจก็ยินดีที่จะไปส่ง
เดินตามมาเลยไม่ต้องทำเป็นงง
นา นา นา เอ๊
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
เธอมองมาทำให้ตามันซนจนต้องมองคนสวยน่ารัก
ใจมันอยากจะบอกรักตามองตารู้ว่าเธอนั้นคิด
เหมือนกับใจของฉันที่มันคึกนึกแล้วอยากจะบอกรัก
ถึงเธอไม่รวยไม่หล่อ แค่ใจข้างในไม่ฟ่อ
คบกันหน่อยรับรอง ไม่ทำๆให้เธอต้องผิดหวัง
ยังนั่งฝันนอนเพ้อพอนึกถึงเธอแล้วใจมันหวั่น
แค่เธอยิ้มให้สักนิด ให้ใจได้เก็บไปคิด
ไม่ว่าคุณจะเป็นใครไปยังไงมายังไง
แฟนคุณจะมีหรือไม่มีผมไม่เกี่ยว
คุณชื่ออะไรไปยัง ไงมายังไง สวยออกอย่างนี้
ไหงมาเดินคนเดียว ถ้าไม่รังเกียจก็ยินดีที่ได้รู้จัก
มองคุณมานานผมก็เลยอยากทัก
ถ้าไม่รังเกียจก็ยินดีที่จะไปส่ง
เดินตามมาเลยไม่ต้องทำเป็นงง
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
--------------------------------------------------------------
MUSIC CREDITS
Produced by : Phusana Treeburut (Armphusana)
Compose : Ittiponthanin Detrerkpan
Arranged by : Phusana Treeburut (Armphusana)
Vocal Director: Prapruet Tongthanee (Kru P.)
Mix & Mastered by : Nuttaphon Lerswanuswong
--------------------------------------------------------------
MUSIC VIDEO CREDITS
MEAWOAM
Choreographed by KRUFRAMES
--------------------------------------------------------------
Follow Artist
Meepooh
Instagram: https://www.instagram.com/my_name_is_mee.pb
TikTok: https://www.tiktok.com/@meebilsalem
Meiji
Instagram: https://www.instagram.com/meijimilkyy
TikTok: https://www.tiktok.com/@meijujii
Bell
Instagram: https://www.instagram.com/lilbell__
TikTok: https://www.tiktok.com/@lilbell__
--------------------------------------------------------------
Follow FLI:P
Instagram: https://www.instagram.com/flip_fromno1r
TikTok: https://www.tiktok.com/@flip_fromno1r
Fanpage: https://www.facebook.com/flip.fromno1r
Youtube: https://www.youtube.com/@FLIPfromNO1R
--------------------------------------------------------------
ติดตามความเคลื่อนไหว NO1R
Twitter : https://twitter.com/No1rOfficial
TikTok : http://www.tiktok.com/@no1rofficial
Instagram : https://www.instagram.com/no1r_official
Fanpage : https://www.facebook.com/No1rOfficial
--------------------------------------------------------------
📨 Contact us:
[email protected]
☎️ ติดต่องาน 097-050-3943
#FLIP_FROMNO1R #NO1R_OFFICIAL #VitaminA #มองนานๆ
https://wn.com/มองนานๆ_Vitamin_A_|_Covered_By_Fli_P_Special_Video
มองนานๆ - Vitamin A | Cover by FLI:P [Special Video]
ต้นฉบับ : https://youtu.be/mtu0nawdYV0
เพลง : มองนานๆ
ศิลปิน : Vitamin A
#มองนานๆ #VitaminA #FLI:P
------------------------------------------------------------
เนื้อเพลง
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
Lets' go
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
เธอมองมาทำให้ ตามันซนจนต้องมองคนสวย น่ารัก
ใจมันอยากจะบอกรัก ตามองตารู้ว่าเธอนั้นคิด
เหมือนกับใจของฉันที่มันคึกนึกแล้วอยากจะบอกรัก
คนสวยต้องมองกันหน่อย ไม่สวยไม่มองให้กร่อย
เห็นทุกวันเธอเดินมาเดินมาทำอะไร อยู่ตรงนั้นนะ
ฉันนั่งฝันนอนเพ้อพอนึกถึงเธอแล้วใจมันสั่น
อยากรู้จักเธอสักนิด เรื่องอื่นไม่ต้องไปคิด
ไม่ว่าคุณจะเป็นใครไปยังไงมายังไง
แฟนคุณจะมีหรือไม่มีผมไม่เกี่ยว
คุณชื่ออะไรไปยัง ไงมายังไง สวยออกอย่างนี้
ไหงมาเดินคนเดียว ถ้าไม่รังเกียจก็ยินดีที่ได้รู้จัก
มองคุณมานานผมก็เลยอยากทัก
ถ้าไม่รังเกียจก็ยินดีที่จะไปส่ง
เดินตามมาเลยไม่ต้องทำเป็นงง
นา นา นา เอ๊
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
เธอมองมาทำให้ตามันซนจนต้องมองคนสวยน่ารัก
ใจมันอยากจะบอกรักตามองตารู้ว่าเธอนั้นคิด
เหมือนกับใจของฉันที่มันคึกนึกแล้วอยากจะบอกรัก
ถึงเธอไม่รวยไม่หล่อ แค่ใจข้างในไม่ฟ่อ
คบกันหน่อยรับรอง ไม่ทำๆให้เธอต้องผิดหวัง
ยังนั่งฝันนอนเพ้อพอนึกถึงเธอแล้วใจมันหวั่น
แค่เธอยิ้มให้สักนิด ให้ใจได้เก็บไปคิด
ไม่ว่าคุณจะเป็นใครไปยังไงมายังไง
แฟนคุณจะมีหรือไม่มีผมไม่เกี่ยว
คุณชื่ออะไรไปยัง ไงมายังไง สวยออกอย่างนี้
ไหงมาเดินคนเดียว ถ้าไม่รังเกียจก็ยินดีที่ได้รู้จัก
มองคุณมานานผมก็เลยอยากทัก
ถ้าไม่รังเกียจก็ยินดีที่จะไปส่ง
เดินตามมาเลยไม่ต้องทำเป็นงง
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
--------------------------------------------------------------
MUSIC CREDITS
Produced by : Phusana Treeburut (Armphusana)
Compose : Ittiponthanin Detrerkpan
Arranged by : Phusana Treeburut (Armphusana)
Vocal Director: Prapruet Tongthanee (Kru P.)
Mix & Mastered by : Nuttaphon Lerswanuswong
--------------------------------------------------------------
MUSIC VIDEO CREDITS
MEAWOAM
Choreographed by KRUFRAMES
--------------------------------------------------------------
Follow Artist
Meepooh
Instagram: https://www.instagram.com/my_name_is_mee.pb
TikTok: https://www.tiktok.com/@meebilsalem
Meiji
Instagram: https://www.instagram.com/meijimilkyy
TikTok: https://www.tiktok.com/@meijujii
Bell
Instagram: https://www.instagram.com/lilbell__
TikTok: https://www.tiktok.com/@lilbell__
--------------------------------------------------------------
Follow FLI:P
Instagram: https://www.instagram.com/flip_fromno1r
TikTok: https://www.tiktok.com/@flip_fromno1r
Fanpage: https://www.facebook.com/flip.fromno1r
Youtube: https://www.youtube.com/@FLIPfromNO1R
--------------------------------------------------------------
ติดตามความเคลื่อนไหว NO1R
Twitter : https://twitter.com/No1rOfficial
TikTok : http://www.tiktok.com/@no1rofficial
Instagram : https://www.instagram.com/no1r_official
Fanpage : https://www.facebook.com/No1rOfficial
--------------------------------------------------------------
📨 Contact us:
[email protected]
☎️ ติดต่องาน 097-050-3943
#FLIP_FROMNO1R #NO1R_OFFICIAL #VitaminA #มองนานๆ
published: 08 Apr 2023
views: 43402267
5:00
Thaitanium - MV FLIP ( Audio MV )
FLIP เพลงที่ทุกคนชอบ ถูกนำกลับมาเป็น Audio MV ไว้ให้แฟนๆได้ฟังกัน
FLIP เพลงที่ทุกคนชอบ ถูกนำกลับมาเป็น Audio MV ไว้ให้แฟนๆได้ฟังกัน
https://wn.com/Thaitanium_Mv_Flip_(_Audio_Mv_)
FLIP เพลงที่ทุกคนชอบ ถูกนำกลับมาเป็น Audio MV ไว้ให้แฟนๆได้ฟังกัน
published: 14 Dec 2017
views: 4703771
0:20
The Most Insane Flips
#shorts #fitness #gym
This Yaya and he can do really cool flips
#shorts #fitness #gym
This Yaya and he can do really cool flips
https://wn.com/The_Most_Insane_Flips
#shorts #fitness #gym
This Yaya and he can do really cool flips
published: 02 Jul 2023
views: 22302283
0:10
Flip!
#shorts #lucasandmarcus #acrobatics
📲 DOWNLOAD & PLAY DOBRE DUEL!
https://dobreduel.com/
WE POST THURSDAY, SATURDAY & SUNDAY!
TURN OUR POST NOTIFICATIONS ON...
#shorts #lucasandmarcus #acrobatics
📲 DOWNLOAD & PLAY DOBRE DUEL!
https://dobreduel.com/
WE POST THURSDAY, SATURDAY & SUNDAY!
TURN OUR POST NOTIFICATIONS ON FOR A SHOUTOUT!
SUBSCRIBE TO THE LUCAS AND MARCUS CHANNEL!
https://www.youtube.com/user/TwiNboTzVids
SUBSCRIBE TO THE DOBRE BROTHERS CHANNEL!
https://www.youtube.com/channel/UCC3OGYxHwV8pB5yLobw9KdA
LUCAS’S SOCIAL MEDIA
Instagram - @lucas_dobre
Twitter - @Dobrelucas
Snapchat - @lucas_dobre
TikTok - @dobretwins
MARCUS’S SOCIAL MEDIA
Instagram - @Marcusdobre
Twitter - @Dobremarcus
Snapchat - @marcusdobre1
TikTok - @dobretwins
FOLLOW THE DOBRE BROTHERS!
Instagram - http://instagram.com/dobrebrothers
Snapchat - https://www.snapchat.com/discover/Dobre_Brothers/5255767112
Facebook - https://www.facebook.com/dobrebrothers/
BIZ -
[email protected]
THANKS FOR WATCHING!
https://wn.com/Flip
#shorts #lucasandmarcus #acrobatics
📲 DOWNLOAD & PLAY DOBRE DUEL!
https://dobreduel.com/
WE POST THURSDAY, SATURDAY & SUNDAY!
TURN OUR POST NOTIFICATIONS ON FOR A SHOUTOUT!
SUBSCRIBE TO THE LUCAS AND MARCUS CHANNEL!
https://www.youtube.com/user/TwiNboTzVids
SUBSCRIBE TO THE DOBRE BROTHERS CHANNEL!
https://www.youtube.com/channel/UCC3OGYxHwV8pB5yLobw9KdA
LUCAS’S SOCIAL MEDIA
Instagram - @lucas_dobre
Twitter - @Dobrelucas
Snapchat - @lucas_dobre
TikTok - @dobretwins
MARCUS’S SOCIAL MEDIA
Instagram - @Marcusdobre
Twitter - @Dobremarcus
Snapchat - @marcusdobre1
TikTok - @dobretwins
FOLLOW THE DOBRE BROTHERS!
Instagram - http://instagram.com/dobrebrothers
Snapchat - https://www.snapchat.com/discover/Dobre_Brothers/5255767112
Facebook - https://www.facebook.com/dobrebrothers/
BIZ -
[email protected]
THANKS FOR WATCHING!
published: 01 Apr 2023
views: 3522128
0:19
He Can Do Some Crazy Flips
#shorts #fitness #sports
This guy has some really impressive flips
#shorts #fitness #sports
This guy has some really impressive flips
https://wn.com/He_Can_Do_Some_Crazy_Flips
#shorts #fitness #sports
This guy has some really impressive flips
published: 28 Jun 2023
views: 13041601
2:30
50 Ways to Flip a Bottle
We landed bottle flips in as many ways as possible...
We landed bottle flips in as many ways as possible...
https://wn.com/50_Ways_To_Flip_A_Bottle
We landed bottle flips in as many ways as possible...
published: 13 Sep 2020
views: 232737434
3:27
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
ต้น...
Play in Full Screen
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
โสดไม่ได้ตั้งใจ (Register Now!) - จอย ศิริลักษณ์ | covered by FLI:P [Special Video]
ต้นฉบับ : https://www.youtube.com/watch?v=Yr7TisEjduY
เพลง : โสดไม่ได้ตั้งใจ
ศิลปินต้นฉบับ : จอย ศิริลักษณ์
ศิลปิน cover : FLI:P
#โสดไม่ได้ตั้งใจFLIP
#โสดไม่ได้ตั้งใจ #จอยศิริลักษณ์
#โสดไม่ได้ตั้งใจFLIP_OUTNOW
#FLIP_FROMNO1R
#NO1R_OFFICIAL
------------------------------------------------------------
เนื้อเพลง
เนื้อเพลง : โสดไม่ได้ตั้งใจ
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
That’s crazy ไม่ได้ตั้งจะ Lonely
Baby,I don’t wanna sadly
Yeah!! Why I’m single lady
รอนานๆก็เริ่มเฉาละ
Sorry, เพราะดวงความรักไม่ค่อยมี
Who want to be my honey
อ๊ะ so bad so sad
รักใคร ชอบใครต้องกินแห้วทุกที
โอม ชยะ ศรี ลักษมี มาตา
โอม ให้เธอรัก ให้เธอหลงวาจา
โอม พระเเม่ขา ให้เนื้อคู่จงมา
โอม
เพี้ยง !
โอม
เพี้ยง !
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
(Let’s go)
ด้อม ด้อม มอง มอง
ก็ไม่ยอมเข้ามาทักสักที
Eyes on me, fallin me love me
Lemme …yeah i don’t wanna play play play
Look at my face face face
(Hold up aey)
ไม่ได้ตั้งใจ โสดนานจนป่านเนี้ยะ
ตัวแม่จะแคร์ไร ใครก็บอก so pretty
Too sweet like a Candy muffin
Too hot like kim kardashian
ไหนใครโสดโปรดมาทางนี้
( come on )
โอ๊ย โอย โอย โอ๊ย โอ้ย
เอ้ามาละเหวยเอ๋ยมาละหว่า
หากใครหัวใจตรงกัน
อยากเป็นแฟนฉัน เอ้ามาเชิญมา
เอาความรักจากดวงใจยื่นสมัครไว้
ไม่นานหรอกหนา
เทใจให้ฉันพิสูจน์ รักบริสุทธิ์ผุดผ่องดังทองทา
โสดแต่ไม่ได้ตั้งใจ
จะทำยังไงฉันไม่ได้ตั้งใจโสด
เมียงมองหาคนจ้องตา
ไม่มีใครมาเกาะเกี่ยวเลี้ยวลด
ฉันไม่ได้ตั้งใจโสด
แต่ที่ฉันโสดโสดไม่ได้ตั้งใจ
--------------------------------------------------------------
Music credits
Produced by Krittithee sangdee (TZILA)
Arranged by Krittithee sangdee (TZILA)
Mixed : Krittithee (TZILA)
Mastered : Rawee Kangsanarak
Lyrics & Melody by Navasu Akharaphirat (N Akhara)
Lyrics Rap by Jantaralak buranatarvonsom (J JAZZSPER)
Vocal Director by Kru P : Prapruet Tongthanee
Kru Oui : Nathnarong Khongkhwan
Choreographed by KDC Station (3Tuamae)
--------------------------------------------------------------
Music video credits
HAPPY SEQUENCE
--------------------------------------------------------------
Executive Producer
Pongsiri Hetrakul
Creative Director
TOTOXCOYOTE
Project coordinator
Thiwaporn Singthong
Nitiphat Wanitmethiwong
Content creator
Panisara Tarin
Montalee Rattanasoi
Graphic Designer
Weerayut Ponsa
--------------------------------------------------------------
Stylist
Narawit Pengboontoo (basnara)
Assist Stylist
SIRIMON CHAOWALIT
WALAILAK WONGMAN
MUA
Warapasr Nootchaona (MKorn Makeup)
Hair Stylist
Sittikorn Ru-arn
Still Photographer
Parin Songwattana
Extra : Leadnitade.bu
--------------------------------------------------------------
Follow Artist
Meepooh
Instagram: https://www.instagram.com/my_name_is_mee.pb
TikTok: https://www.tiktok.com/@meebilsalem
Meiji
Instagram: https://www.instagram.com/meijimilkyy
TikTok: https://www.tiktok.com/@meijujii
Bell
Instagram: https://www.instagram.com/lilbell__
TikTok: https://www.tiktok.com/@lilbell__
--------------------------------------------------------------
Follow FLI:P
Twitter: https://twitter.com/FLIP_FROMNO1R
Instagram: https://www.instagram.com/flip_fromno1r/
TikTok: https://www.tiktok.com/@flip_fromno1r
Fanpage: https://www.facebook.com/flip.fromno1r
Youtube: https://www.youtube.com/@UC_2AFcNY35QwKLnFt0KJKHQ
--------------------------------------------------------------
ติดตามความเคลื่อนไหว NO1R
Twitter: https://twitter.com/No1rOfficial
TikTok: https://www.tiktok.com/@no1rofficial
Instagram: https://www.instagram.com/no1r_official/
Fanpage: https://www.facebook.com/No1rOfficial
--------------------------------------------------------------
📨 Contact us:
[email protected]
3:45
มองนานๆ - Vitamin A | Covered by FLI:P [Special Video]
มองนานๆ - Vitamin A | Cover by FLI:P [Special Video]
ต้นฉบับ : https://youtu.be/mtu0nawdY...
Play in Full Screen
มองนานๆ - Vitamin A | Covered by FLI:P [Special Video]
มองนานๆ - Vitamin A | Covered by FLI:P [Special Video]
มองนานๆ - Vitamin A | Cover by FLI:P [Special Video]
ต้นฉบับ : https://youtu.be/mtu0nawdYV0
เพลง : มองนานๆ
ศิลปิน : Vitamin A
#มองนานๆ #VitaminA #FLI:P
------------------------------------------------------------
เนื้อเพลง
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
Lets' go
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
เธอมองมาทำให้ ตามันซนจนต้องมองคนสวย น่ารัก
ใจมันอยากจะบอกรัก ตามองตารู้ว่าเธอนั้นคิด
เหมือนกับใจของฉันที่มันคึกนึกแล้วอยากจะบอกรัก
คนสวยต้องมองกันหน่อย ไม่สวยไม่มองให้กร่อย
เห็นทุกวันเธอเดินมาเดินมาทำอะไร อยู่ตรงนั้นนะ
ฉันนั่งฝันนอนเพ้อพอนึกถึงเธอแล้วใจมันสั่น
อยากรู้จักเธอสักนิด เรื่องอื่นไม่ต้องไปคิด
ไม่ว่าคุณจะเป็นใครไปยังไงมายังไง
แฟนคุณจะมีหรือไม่มีผมไม่เกี่ยว
คุณชื่ออะไรไปยัง ไงมายังไง สวยออกอย่างนี้
ไหงมาเดินคนเดียว ถ้าไม่รังเกียจก็ยินดีที่ได้รู้จัก
มองคุณมานานผมก็เลยอยากทัก
ถ้าไม่รังเกียจก็ยินดีที่จะไปส่ง
เดินตามมาเลยไม่ต้องทำเป็นงง
นา นา นา เอ๊
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
มอง แบบนั้นทำไมเธอทำให้ใจฉันกลัว
มองตอนที่ไม่รู้ตัวตาเธอช่างเจ้าชู้จัง
เธอมองมาทำให้ตามันซนจนต้องมองคนสวยน่ารัก
ใจมันอยากจะบอกรักตามองตารู้ว่าเธอนั้นคิด
เหมือนกับใจของฉันที่มันคึกนึกแล้วอยากจะบอกรัก
ถึงเธอไม่รวยไม่หล่อ แค่ใจข้างในไม่ฟ่อ
คบกันหน่อยรับรอง ไม่ทำๆให้เธอต้องผิดหวัง
ยังนั่งฝันนอนเพ้อพอนึกถึงเธอแล้วใจมันหวั่น
แค่เธอยิ้มให้สักนิด ให้ใจได้เก็บไปคิด
ไม่ว่าคุณจะเป็นใครไปยังไงมายังไง
แฟนคุณจะมีหรือไม่มีผมไม่เกี่ยว
คุณชื่ออะไรไปยัง ไงมายังไง สวยออกอย่างนี้
ไหงมาเดินคนเดียว ถ้าไม่รังเกียจก็ยินดีที่ได้รู้จัก
มองคุณมานานผมก็เลยอยากทัก
ถ้าไม่รังเกียจก็ยินดีที่จะไปส่ง
เดินตามมาเลยไม่ต้องทำเป็นงง
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
มองนานนาน คนสวยต้องมองนานนาน
--------------------------------------------------------------
MUSIC CREDITS
Produced by : Phusana Treeburut (Armphusana)
Compose : Ittiponthanin Detrerkpan
Arranged by : Phusana Treeburut (Armphusana)
Vocal Director: Prapruet Tongthanee (Kru P.)
Mix & Mastered by : Nuttaphon Lerswanuswong
--------------------------------------------------------------
MUSIC VIDEO CREDITS
MEAWOAM
Choreographed by KRUFRAMES
--------------------------------------------------------------
Follow Artist
Meepooh
Instagram: https://www.instagram.com/my_name_is_mee.pb
TikTok: https://www.tiktok.com/@meebilsalem
Meiji
Instagram: https://www.instagram.com/meijimilkyy
TikTok: https://www.tiktok.com/@meijujii
Bell
Instagram: https://www.instagram.com/lilbell__
TikTok: https://www.tiktok.com/@lilbell__
--------------------------------------------------------------
Follow FLI:P
Instagram: https://www.instagram.com/flip_fromno1r
TikTok: https://www.tiktok.com/@flip_fromno1r
Fanpage: https://www.facebook.com/flip.fromno1r
Youtube: https://www.youtube.com/@FLIPfromNO1R
--------------------------------------------------------------
ติดตามความเคลื่อนไหว NO1R
Twitter : https://twitter.com/No1rOfficial
TikTok : http://www.tiktok.com/@no1rofficial
Instagram : https://www.instagram.com/no1r_official
Fanpage : https://www.facebook.com/No1rOfficial
--------------------------------------------------------------
📨 Contact us:
[email protected]
☎️ ติดต่องาน 097-050-3943
#FLIP_FROMNO1R #NO1R_OFFICIAL #VitaminA #มองนานๆ
5:00
Thaitanium - MV FLIP ( Audio MV )
FLIP เพลงที่ทุกคนชอบ ถูกนำกลับมาเป็น Audio MV ไว้ให้แฟนๆได้ฟังกัน
Play in Full Screen
Thaitanium - MV FLIP ( Audio MV )
Thaitanium - MV FLIP ( Audio MV )
FLIP เพลงที่ทุกคนชอบ ถูกนำกลับมาเป็น Audio MV ไว้ให้แฟนๆได้ฟังกัน
0:23
10 Coolest Ways to Flip a Bottle!
Play in Full Screen
10 Coolest Ways to Flip a Bottle!
10 Coolest Ways to Flip a Bottle!
0:28
Same flip, Different year 🥱
Play in Full Screen
Same flip, Different year 🥱
Same flip, Different year 🥱
0:20
The Most Insane Flips
#shorts #fitness #gym
This Yaya and he can do really cool flips
Play in Full Screen
The Most Insane Flips
The Most Insane Flips
#shorts #fitness #gym
This Yaya and he can do really cool flips
0:10
Flip!
#shorts #lucasandmarcus #acrobatics
📲 DOWNLOAD & PLAY DOBRE DUEL!
https://dobreduel.com/...
Play in Full Screen
Flip!
Flip!
#shorts #lucasandmarcus #acrobatics
📲 DOWNLOAD & PLAY DOBRE DUEL!
https://dobreduel.com/
WE POST THURSDAY, SATURDAY & SUNDAY!
TURN OUR POST NOTIFICATIONS ON FOR A SHOUTOUT!
SUBSCRIBE TO THE LUCAS AND MARCUS CHANNEL!
https://www.youtube.com/user/TwiNboTzVids
SUBSCRIBE TO THE DOBRE BROTHERS CHANNEL!
https://www.youtube.com/channel/UCC3OGYxHwV8pB5yLobw9KdA
LUCAS’S SOCIAL MEDIA
Instagram - @lucas_dobre
Twitter - @Dobrelucas
Snapchat - @lucas_dobre
TikTok - @dobretwins
MARCUS’S SOCIAL MEDIA
Instagram - @Marcusdobre
Twitter - @Dobremarcus
Snapchat - @marcusdobre1
TikTok - @dobretwins
FOLLOW THE DOBRE BROTHERS!
Instagram - http://instagram.com/dobrebrothers
Snapchat - https://www.snapchat.com/discover/Dobre_Brothers/5255767112
Facebook - https://www.facebook.com/dobrebrothers/
BIZ -
[email protected]
THANKS FOR WATCHING!
0:19
He Can Do Some Crazy Flips
#shorts #fitness #sports
This guy has some really impressive flips
Play in Full Screen
He Can Do Some Crazy Flips
He Can Do Some Crazy Flips
#shorts #fitness #sports
This guy has some really impressive flips
2:30
50 Ways to Flip a Bottle
We landed bottle flips in as many ways as possible...
Play in Full Screen
50 Ways to Flip a Bottle
50 Ways to Flip a Bottle
We landed bottle flips in as many ways as possible...
');
} 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));
}
});
});
});
// -->
Flip It
by:
Joey Moe
All of my ladies Everybody, get on the dancefloor I want you Straight up Nexus Joey Moe Ohhhh shit This is Joey Moe Nexus What time is it? It's time to flip it She got a nass and it's world class She got a style and it's crazy wild She got the legs and it's all so fresh That's what i'll make it for She has the look and it's awesome dude She has a smile and I love that smile She moves on the street and she makes me weak That's why I need her Hey, Look pretty thing you're bringin' me to my knees now Oh oh, Sweep me off my feet Hey, Look pretty thing you're sure bringin' the heat now Oh oh, now let me see you Flip it like a DJ, like a DJ Flip it like a DJ, eoh oh Put it on a replay, on a replay Put it on a replay eoh oh Flip it like a DJ, like a DJ Flip it like a DJ, eoh oh Put it on a replay, on a replay Put it on a replay eoh oh She got the dimonds with the gucchi friends Beautiful theighs and perfect signs She got flavor and I wanna taste her That's what I'll make it for She got the sexy shapes I apriciate So low cut, so super hot She has a sign that's just same as mine That's why I need her Hey look pretty thing You bringin' me to my knees now Oh, oh Slippin up my feet Hey look pretty thing You sure bring in the heat now Woaouw (Oh, oh) Now let me see you Flip it like a DJ, like a DJ Flip it like a DJ, eoh oh Put it on a replay, on a replay Put it on a replay eoh oh Flip it like a DJ, like a DJ Flip it like a DJ, eoh oh Put it on a replay, on a replay Put it on a replay eoh oh Just gotta let her know She's so beautiful I've never seen a girl like this before And no My got she's overtageous Unbelievable Outrageous 'Cuz all the luring joints lead to the floor Flip it like a dj Like a dj Flip it like a dj Eyoh, eyoh Put it on a replay (Show it once again) On a replay Put it on a replay (Time to flip it) Eyoh, eyoh (Oh) Flip it like a dj (Yeeeaaahhheeyy) Like a dj Flip it like a dj Eyoh, eyoh Put it on a replay On a replay Put it on a replay Eyoh, eyoh Flip it like a dj Like a dj Flip it like a dj Eyoh, eyoh Put it on a replay On a replay Put it on a replay