'+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; })); }); -->

World's Greatest Dad

World's Greatest Dad is a 2009 American satirical black comedy film written and directed by Bobcat Goldthwait. It stars Robin Williams, Daryl Sabara, and Alexie Gilmore. The film was released on July 24, 2009 on video on demand providers before its limited theatrical release on August 21, 2009.

Plot

Lance Clayton (Williams) is a single father and high school English teacher. He dreams of becoming a famous writer, but his previous novels have all been rejected by publishers. His 15-year-old son, Kyle (Sabara), is a pornography-obsessed underachiever who despises everyone, especially his father. Kyle is a student at the school where Lance teaches an unpopular poetry class. His only friend is Andrew, a fellow student who spends his evenings at the Claytons' house trying to avoid his alcoholic mother. Kyle's consistently poor academic performance and vile behavior gain the attention of the school principal (Geoff Pierson), who advises Lance that Kyle should transfer to a special-needs school. Lance is in a non-committal relationship with a younger teacher named Claire (Gilmore), who is spending time with a fellow teacher named Mike (Henry Simmons), whose writing class is more successful than Lance's. On nights when Claire cancels their dates and he is alone, Lance bonds with his elderly neighbor Bonnie (Mitzi McCall).

Podcasts:

  • World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD

    World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt When his son's body is found in a humiliating accident, a lonely high school teacher inadvertently attracts an overwhelming amount of community and media attention after covering up the truth with a phony suicide note. Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests...

    published: 04 Dec 2013
  • Hell's Greatest Dad Sing-Along | Hazbin Hotel | Prime Video

    A Dueling Daddy Duet! Music and lyrics by Sam Haft and Andrew Underberg, performed by Jeremy Jordan and Amir Talai. » Watch Hazbin Hotel on Prime Video: https://amzn.to/47xogiW » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About Hazbin Hotel: Charlie Morningstar, the Princess of Hell, struggles to convince demons and angels alike that any soul can be redeemed. Sing and curse along in this adult animated musical comedy about second chances. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Over 150,000 movies and TV episodes, including thousands for Amazon Prime members at no additional cost. Get More Prime Vide...

    published: 26 Jan 2024
  • World's Greatest Dad - Kyle's Death

    Song: Don't Be Afraid, You're Already Dead - Akron/Family.

    published: 17 Oct 2009
  • Worlds Greatest Dad 2009 Full movie

    Robin williams movie

    published: 29 Sep 2023
  • World's Greatest Dad Official HD Trailer (Robin Williams) NOW ON VOD

    http://www.worldsgreatestdadfilm.com/ A thoughtful but outrageous comedy from Bobcat Goldthwait, WORLD'S GREATEST DAD is a story about a man that learns the things you want most may not be the things that make you happy, and that being lonely is not necessarily the same as being alone. Robin Williams stars as Lance Clayton, a man who has learned to settle. He dreamed of being a rich and famous writer, but has only managed to make it as a high school poetry teacher. His only son Kyle (Daryl Sabara) is an insufferable jackass who won't give his father the time of day. He is dating Claire (Alexie Gilmore), the school's adorable art teacher, but she doesn't want to get serious -- or even acknowledge publicly that they are dating. Then, in the wake of a freak accident, Lance suffers the worst t...

    published: 23 Jul 2009
  • Robin Williams suicide warning in "The World's Greatest Dad"

    Robin Williams, in his role as Lance Clayton, urges the audience to seek for help in times of depression.

    published: 14 Aug 2014
  • Robin Williams in last scene from World's Greatest Dad

    A clip from World's Greatest Dad!

    published: 10 Nov 2014
  • World's Greatest Dad

    Provided to YouTube by Ghostlight Records World's Greatest Dad · Sebastian Arcelus Elf: The Musical ℗ 2011 Elf Broadway, Inc. Producer: David Lai Producer: Matthew Sklar Vocals: Sebastian Arcelus Composer: Chad Beguelin Composer: Matthew Sklar Auto-generated by YouTube.

    published: 03 Nov 2017
  • The Hellcat Is The Worlds Greatest Muscle Car

    The race of building the fastest, the coolest, the loudest American muscle cars is over. Let’s go back in time to when some of the greatest cars of our generation were produced and experience them here in 2024. Which one of the big 3 was the best? Today we hop behind the wheel of the Challenger Hellcat to see how it stacked up against the legendary but now extinct Camaro & Mustang. Check out Apple Autos here! https://www.appleautos.com/ Want to buy this hellcat? Check it out here! https://www.appleautos.com/inventory/new-2023-dodge-challenger-srt-hellcat-jailbreak-rwd-2d-coupe-2c3cdzc91ph692263/ For business inquiries Performanceonwheels111@gmail.com Check us out on Instagram! https://instagram.com/performance_on_wheels?igshid=YmMyMTA2M2Y= Check us out on TikTok! tiktok.com/@perf...

    published: 14 Sep 2024
  • World's Greatest Dad Fight Scene

    I DO NOT own this...All credit goes to Darko Entertainment and the directors and producers Kyle Clayton fights the kid

    published: 06 Dec 2009
developed with YouTube
World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD
2:27

World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD

  • Order:
  • Duration: 2:27
  • Uploaded Date: 04 Dec 2013
  • views: 515230
World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt When his son's body is found in a humiliating accident, a lonely high school teacher inadvertently attracts an overwhelming amount of community and media attention after covering up the truth with a phony suicide note. Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests and we will do our best to hunt it down.
https://wn.com/World's_Greatest_Dad_(2009)_Official_Trailer_1_Robin_Williams_Movie_Hd
Hell's Greatest Dad Sing-Along | Hazbin Hotel | Prime Video
2:31

Hell's Greatest Dad Sing-Along | Hazbin Hotel | Prime Video

  • Order:
  • Duration: 2:31
  • Uploaded Date: 26 Jan 2024
  • views: 67306175
A Dueling Daddy Duet! Music and lyrics by Sam Haft and Andrew Underberg, performed by Jeremy Jordan and Amir Talai. » Watch Hazbin Hotel on Prime Video: https://amzn.to/47xogiW » SUBSCRIBE: http://bit.ly/PrimeVideoSubscribe About Hazbin Hotel: Charlie Morningstar, the Princess of Hell, struggles to convince demons and angels alike that any soul can be redeemed. Sing and curse along in this adult animated musical comedy about second chances. About Prime Video: Want to watch it now? We've got it. This week's newest movies, last night's TV shows, classic favorites, and more are available to stream instantly, plus all your videos are stored in Your Video Library. Over 150,000 movies and TV episodes, including thousands for Amazon Prime members at no additional cost. Get More Prime Video: Stream Now: http://bit.ly/WatchMorePrimeVideo Facebook: http://bit.ly/PrimeVideoFB Twitter: http://bit.ly/PrimeVideoTW Instagram: http://bit.ly/primevideoIG Hell's Greatest Dad Sing-Along | Hazbin Hotel | Prime Video https://youtu.be/jNUTxvki_d0 Prime Video https://www.youtube.com/PrimeVideo #HazbinHotel #PrimeVideo
https://wn.com/Hell's_Greatest_Dad_Sing_Along_|_Hazbin_Hotel_|_Prime_Video
World's Greatest Dad - Kyle's Death
5:08

World's Greatest Dad - Kyle's Death

  • Order:
  • Duration: 5:08
  • Uploaded Date: 17 Oct 2009
  • views: 548348
Song: Don't Be Afraid, You're Already Dead - Akron/Family.
https://wn.com/World's_Greatest_Dad_Kyle's_Death
Worlds Greatest Dad 2009 Full movie
1:38:42

Worlds Greatest Dad 2009 Full movie

  • Order:
  • Duration: 1:38:42
  • Uploaded Date: 29 Sep 2023
  • views: 5040
Robin williams movie
https://wn.com/Worlds_Greatest_Dad_2009_Full_Movie
World's Greatest Dad Official HD Trailer (Robin Williams) NOW ON VOD
2:34

World's Greatest Dad Official HD Trailer (Robin Williams) NOW ON VOD

  • Order:
  • Duration: 2:34
  • Uploaded Date: 23 Jul 2009
  • views: 268225
http://www.worldsgreatestdadfilm.com/ A thoughtful but outrageous comedy from Bobcat Goldthwait, WORLD'S GREATEST DAD is a story about a man that learns the things you want most may not be the things that make you happy, and that being lonely is not necessarily the same as being alone. Robin Williams stars as Lance Clayton, a man who has learned to settle. He dreamed of being a rich and famous writer, but has only managed to make it as a high school poetry teacher. His only son Kyle (Daryl Sabara) is an insufferable jackass who won't give his father the time of day. He is dating Claire (Alexie Gilmore), the school's adorable art teacher, but she doesn't want to get serious -- or even acknowledge publicly that they are dating. Then, in the wake of a freak accident, Lance suffers the worst tragedy and greatest opportunity of his life. He is suddenly faced with the possibility of all the fame, fortune and popularity he ever dreamed of, if he can only live with the knowledge of how he got there. Written and directed by Bobcat Goldthwait, WORLD'S GREATEST DAD stars Robin Williams, Alexie Gilmore, Daryl Sabara, Geoff Pierson, Henry Simmons and Mitzi McCall. The film was produced by Tim Perrell, Howard Gertler, Sean McKittrick and Richard Kelly and co-produced by Sarah de Sa Rego.
https://wn.com/World's_Greatest_Dad_Official_Hd_Trailer_(Robin_Williams)_Now_On_Vod
Robin Williams suicide warning in "The World's Greatest Dad"
0:25

Robin Williams suicide warning in "The World's Greatest Dad"

  • Order:
  • Duration: 0:25
  • Uploaded Date: 14 Aug 2014
  • views: 9047
Robin Williams, in his role as Lance Clayton, urges the audience to seek for help in times of depression.
https://wn.com/Robin_Williams_Suicide_Warning_In_The_World's_Greatest_Dad
Robin Williams in last scene from World's Greatest Dad
6:19

Robin Williams in last scene from World's Greatest Dad

  • Order:
  • Duration: 6:19
  • Uploaded Date: 10 Nov 2014
  • views: 136067
A clip from World's Greatest Dad!
https://wn.com/Robin_Williams_In_Last_Scene_From_World's_Greatest_Dad
World's Greatest Dad
3:36

World's Greatest Dad

  • Order:
  • Duration: 3:36
  • Uploaded Date: 03 Nov 2017
  • views: 228940
Provided to YouTube by Ghostlight Records World's Greatest Dad · Sebastian Arcelus Elf: The Musical ℗ 2011 Elf Broadway, Inc. Producer: David Lai Producer: Matthew Sklar Vocals: Sebastian Arcelus Composer: Chad Beguelin Composer: Matthew Sklar Auto-generated by YouTube.
https://wn.com/World's_Greatest_Dad
The Hellcat Is The Worlds Greatest Muscle Car
17:25

The Hellcat Is The Worlds Greatest Muscle Car

  • Order:
  • Duration: 17:25
  • Uploaded Date: 14 Sep 2024
  • views: 206
The race of building the fastest, the coolest, the loudest American muscle cars is over. Let’s go back in time to when some of the greatest cars of our generation were produced and experience them here in 2024. Which one of the big 3 was the best? Today we hop behind the wheel of the Challenger Hellcat to see how it stacked up against the legendary but now extinct Camaro & Mustang. Check out Apple Autos here! https://www.appleautos.com/ Want to buy this hellcat? Check it out here! https://www.appleautos.com/inventory/new-2023-dodge-challenger-srt-hellcat-jailbreak-rwd-2d-coupe-2c3cdzc91ph692263/ For business inquiries Performanceonwheels111@gmail.com Check us out on Instagram! https://instagram.com/performance_on_wheels?igshid=YmMyMTA2M2Y= Check us out on TikTok! tiktok.com/@performanceonwheels111 Check us out on Facebook! https://www.facebook.com/Performanceonwheels111 Performance on wheels makes videos for entertainment purposes. It is a consumer's responsibility to validate all information related to purchases.
https://wn.com/The_Hellcat_Is_The_Worlds_Greatest_Muscle_Car
World's Greatest Dad Fight Scene
2:01

World's Greatest Dad Fight Scene

  • Order:
  • Duration: 2:01
  • Uploaded Date: 06 Dec 2009
  • views: 57341
I DO NOT own this...All credit goes to Darko Entertainment and the directors and producers Kyle Clayton fights the kid
https://wn.com/World's_Greatest_Dad_Fight_Scene
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD

World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Like us on FACEBOOK: http://bit.ly/1QyRMsE Follow us on TWITTER: http://bit.ly/1ghOWmt When his son's body is found in a humiliating accident, a lonely high school teacher inadvertently attracts an overwhelming amount of community and media attention after covering up the truth with a phony suicide note. Welcome to the Fandango MOVIECLIPS Trailer Vault Channel. Where trailers from the past, from recent to long ago, from a time before YouTube, can be enjoyed by all. We search near and far for original movie trailer from all decades. Feel free to send us your trailer requests and we will do our best to hunt it down.
2:27
World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD
World's Greatest Dad (2009) Official Trailer #1 - Robin Williams Movie HD Subscribe to CLA...
published: 04 Dec 2013
Play in Full Screen
2:31
Hell's Greatest Dad Sing-Along | Hazbin Hotel | Prime Video
A Dueling Daddy Duet! Music and lyrics by Sam Haft and Andrew Underberg, performed by Jere...
published: 26 Jan 2024
Play in Full Screen
5:08
World's Greatest Dad - Kyle's Death
Song: Don't Be Afraid, You're Already Dead - Akron/Family.
published: 17 Oct 2009
Play in Full Screen
1:38:42
Worlds Greatest Dad 2009 Full movie
Robin williams movie
published: 29 Sep 2023
Play in Full Screen
2:34
World's Greatest Dad Official HD Trailer (Robin Williams) NOW ON VOD
http://www.worldsgreatestdadfilm.com/ A thoughtful but outrageous comedy from Bobcat Goldt...
published: 23 Jul 2009
Play in Full Screen
0:25
Robin Williams suicide warning in "The World's Greatest Dad"
Robin Williams, in his role as Lance Clayton, urges the audience to seek for help in times...
published: 14 Aug 2014
Play in Full Screen
6:19
Robin Williams in last scene from World's Greatest Dad
A clip from World's Greatest Dad!
published: 10 Nov 2014
Play in Full Screen
3:36
World's Greatest Dad
Provided to YouTube by Ghostlight Records World's Greatest Dad · Sebastian Arcelus Elf: ...
published: 03 Nov 2017
Play in Full Screen
17:25
The Hellcat Is The Worlds Greatest Muscle Car
The race of building the fastest, the coolest, the loudest American muscle cars is over. L...
published: 14 Sep 2024
Play in Full Screen
2:01
World's Greatest Dad Fight Scene
I DO NOT own this...All credit goes to Darko Entertainment and the directors and producers...
published: 06 Dec 2009
Play in Full Screen

World's Greatest Dad

World's Greatest Dad is a 2009 American satirical black comedy film written and directed by Bobcat Goldthwait. It stars Robin Williams, Daryl Sabara, and Alexie Gilmore. The film was released on July 24, 2009 on video on demand providers before its limited theatrical release on August 21, 2009.

Plot

Lance Clayton (Williams) is a single father and high school English teacher. He dreams of becoming a famous writer, but his previous novels have all been rejected by publishers. His 15-year-old son, Kyle (Sabara), is a pornography-obsessed underachiever who despises everyone, especially his father. Kyle is a student at the school where Lance teaches an unpopular poetry class. His only friend is Andrew, a fellow student who spends his evenings at the Claytons' house trying to avoid his alcoholic mother. Kyle's consistently poor academic performance and vile behavior gain the attention of the school principal (Geoff Pierson), who advises Lance that Kyle should transfer to a special-needs school. Lance is in a non-committal relationship with a younger teacher named Claire (Gilmore), who is spending time with a fellow teacher named Mike (Henry Simmons), whose writing class is more successful than Lance's. On nights when Claire cancels their dates and he is alone, Lance bonds with his elderly neighbor Bonnie (Mitzi McCall).

'); } 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(''); } } }); } } 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)); } }); }); }); // -->

Latest News for: world’s greatest dad

Edit

Top pickleball players take to the court in Boca Raton

WPTV 13 Jan 2025
BOCA RATON, Fla ... Six hundred of the top pickleball players are playing to win $30,000 in prize money ... WATCH BELOW ... Pickleball is the greatest sport in the history of man.". He admits in the pickleball world he's a big deal but at home he's just a dad ... .
Edit

Guy Sebastian suffers shocking injury during Japan family snow trip - forcing him to miss out ...

The Daily Mail 05 Jan 2025
She described him as 'the best Dad a daughter could ever hope for' and shared a photo from her wedding day that showed her father standing proudly by her side ... My Dad had time for everyone ... 'To say I loved my Dad is the world's greatest understatement.
Edit

Rihanna reveals she ‘didn’t drink all year’ as she rings in 2025: ‘New Year, New Me’

New York Post 01 Jan 2025
... Problems” rapper, 36, told W Magazine in October 2024 of the pair’s differing parenting styles before boasting that he is “the greatest dad in the whole wide world.”.
Edit

Drake Correct Adin Ross After He Says “Rap is Dead,” Gives Update on Collab Album ...

The Source 27 Dec 2024
Drake appeared on stream with Adin Ross and spoke about his album with PARTYNEXTDOOR but also corrected him on saying rap is dead ... He added, “It’ll never die. It was a wear NBA season ... Besides being a great dad, the world’s greatest dad ... .
Edit

Hear World’s Greatest Dad, Pronoun, & More Cover Hot 100 #1s On New Benefit Comp

Stereogum 20 Dec 2024
It features World’s Greatest Dad, Pronoun, and more. World’s Greatest Dad tackle “Escape (The Piña Colada Song)” by Rupert Holmes, while Pronoun does “She Drives Me Crazy” by Fine Young Cannibals.
Edit

Guy Sebastian's wife Jules gives top fashion tips as she reveals the best Christmas dress... ...

The Daily Mail 13 Dec 2024
She described him as 'the best Dad a daughter could ever hope for' and shared a photo from her wedding day that showed her father standing proudly by her side ... My Dad had time for everyone ... 'To say I loved my Dad is the world's greatest understatement.
Edit

Sam Taylor-Johnson and Aaron Taylor-Johnson step out for rare family outing with daughters

The Star - Shelby 12 Dec 2024
The origin story centers on Kraven's upbringing under a ruthless crime lord dad (Russell Crowe) and journey to become the world's greatest hunter, with Ariana DeBose as voodoo priestess Calypso and ...
Edit

Staff Picks: Our Other Favorite Songs Of 2024

Stereogum 04 Dec 2024
Sometimes, that meant sneaky emo bangers from Worlds Greatest Dad and Origami Angel, or tooth-shattering hardcore anthems from Speed and Spaced ... Worlds Greatest Dad – “Taking One For The Team”.
Edit

Stephen Colbert Says He’s Not Sure if Biden Was Right to Pardon Hunter, but He ...

The Wrap 03 Dec 2024
Stephen Colbert joked during his monologue on Monday that he doesn’t know if Joe Biden pardoning his son, Hunter, was “the right thing to do, but you certainly earned that world’s greatest dad mug.”.
Edit

Retail therapy: Jules Sebastian puts on a brave face at the shops with her sons ...

The Daily Mail 26 Nov 2024
'This week my beautiful Dad went to heaven to be with the angels.' ... 'When I think of my Dad, I think of the twinkle in his eye ... My Dad had time for everyone ... 'To say I loved my Dad is the world's greatest understatement.
Edit

Guy Sebastian's wife Jules shares devastating news: 'Our hearts are broken' | Daily Mail Online

The Daily Mail 24 Nov 2024
'This week my beautiful Dad went to heaven to be with the angels.' ... 'When I think of my Dad, I think of the twinkle in his eye ... My Dad had time for everyone ... 'To say I loved my Dad is the world's greatest understatement.
Edit

Tarzan star Ron Ely

The Daily Mail 21 Nov 2024
'The world has lost one of the greatest men it has ever known - and I have lost my dad,' Kristen began in her post ... This is how the world knew him,' she said about her dad ... 'My greatest comfort is knowing that my dad is with my momma and my brother.
Edit

‘Tarzan’ star Ron Ely’s cause of death revealed: report

New York Post 21 Nov 2024
“The world has lost one of the greatest men it has ever known – and I have lost my dad,” Kirsten captioned her post ... church when a trip to Hollywood gives her a glimpse of the world beyond.
Edit

Robin Williams' 10 best and 10 worst movies, according to critics

Business Insider 12 Nov 2024
Robin Williams ... But not all of his films were classics ... 17% ... 8 ... "World's Greatest Dad" (2009)"World's Greatest Dad." ... Like its maker, it staunchly defies the exigencies of reason to pursue a bigger vision of imagination," wrote Dennis King of Tulsa World.
Edit

Iconic Hollywood director, 67, becomes dad again for third time

Metro UK 11 Nov 2024
‘To watch you grow up and navigate this world will be the greatest gift, and your Dad and I will be there to guide you, celebrate you and have fun along the way! We love you!!!!’ ... He is also a dad to ...

Most Viewed

×