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

Podcasts:

  • The Haunted Sanitarium that Changed Us Forever

    Watch our terrifying night as we return to Sweet Springs Sanitarium... The haunted destination that scared us out of the building and changed us forever. How did the spirits remember us? Is this the night that we talked to demons? Enjoy our unexplainable night that we'll never forget... NEXT VIDEO: https://www.youtube.com/watch?v=20hCkJTwJVk Join The FEAR CLUB: https://www.thefearclub.com/ Fear Gear Merch: https://feargear.shop/ Edited by: Dakota Laden and Connor Stallings Instagram: @ProjectFearOfficial TikTok: @ProjectFearOfficial Twitter: @ProjectFearYT On this YouTube channel we will create haunted road trips, exploration videos, and go ghost hunting. We will explore abandoned asylums, USA's most haunted hotels, the real conjuring house, and demonic hauntings. Dakota Laden, Che...

    published: 23 Jun 2023
  • The NIGHT we ALMOST DIED in WAVERLY HILLS SANATORIUM (Very Scary)

    Twin Paranormal investigate on the most haunted places on earth! Waverly Hills Sanatorium has been said to be haunted for years, with a dark past and a lot of death on the property that’s no surprise. The guys venture inside to find out if these stories of ghosts and demons are true and to see what kind of paranormal activity will happen to them inside, this video is truly terrifying and one that they will never forget… New Limited TP Barbed Heart Patch Link: https://twin-paranormal-shop.myshopify.com/ Previous episode: https://www.youtube.com/watch?v=HXNW0XspSRY&t=2s LIKE AND SUBSCRIBE!!! JOIN THE GHOST GANG!!: https://www.youtube.com/c/TwinParanormal?sub_confirmation=1 Friends in the video: https://www.youtube.com/@SethBorden https://www.youtube.com/@ExploringWithJosh HELP US...

    published: 14 May 2023
  • Terrifying Shadow Man Captured at Haunted Sanatorium

    Our scariest capture on the thermal camera to date! We spent the night at the haunted Indiana State Sanatorium where we had an Extremely Terrifying encounter with a Shadow Man! LAST VIDEO: https://www.youtube.com/watch?v=HDzjls6fMcA For DELETED SCENES and EXCLUSIVE CONTENT join the FEAR CLUB: https://www.thefearclub.com/ Fear Gear Merch: https://feargear.shop/ Edited by: Connor Stallings Instagram: @ProjectFearOfficial TikTok: @ProjectFearOfficial Twitter: @ProjectFearYT On this YouTube channel we will create haunted road trips, exploration videos, and go ghost hunting. We will explore abandoned asylums, USA's most haunted hotels, the real conjuring house, and demonic destinations. Dakota Laden, Chelsea Laden, Tanner Wiseman, and Alex Schroeder have all been on Destination Fear, ...

    published: 18 Aug 2023
  • Welcome Home (Sanitarium) (Remastered)

    Provided to YouTube by Blackened Recordings Welcome Home (Sanitarium) (Remastered) · Metallica Master of Puppets (Remastered) ℗ 1986 Blackened Recordings Released on: 1986-03-03 Auto-generated by YouTube.

    published: 21 Jun 2022
  • Metallica - Welcome Home (Sanitarium)

    Welcome Home (Sanitarium) by Metallica of Master of Puppets Lyrics: Welcome to where time stands still No one leaves and no one will Moon is full, never seems to change Just labeled mentally deranged Dream the same thing every night I see our freedom in my sight No locked doors, no windows barred No things to make my brain seem scarred Sleep, my friend, and you will see That dream is my reality They keep me locked up in this cage Can't they see it's why my brain says "rage" Sanitarium, leave me be Sanitarium, just leave me alone Build my fear of what's out there Cannot breathe the open air Whisper things into my brain Assuring me that I'm insane They think our heads are in their hands But violent use brings violent plans Keep him tied, it...

    published: 29 Nov 2007
  • ROBLOX SANATORIUM

    ENTER THE SANATORIUM HERE: https://www.roblox.com/games/3374443152/De-Pride-Isle-Sanatorium Today I was invited to De Pride Isle Sanatorium, a very welcoming game.. where things become scary at night if you're not locked away safely in your room... -sees-

    published: 04 Sep 2019
  • {🕯} DE PRIDE ISLE SANATORIUM {🩸}//FULL GCMM//GACHA CLUB

    !!PLEASE DO NOT READ THIS UNTIL YOU HAVE FINISHED THE VIDEO, THIS HAS HUGE SPOILERS!! - - - Hello everyone! I hope you enjoyed this! It took me 2-3 months to finish this, so I’m hoping you enjoy! The rest of this description has links to songs I used, sound effects, and lore! ORIGINAL GAME: Okay, so I’d like to say that I created this lore all on my own. This has nothing to do with whatever lore the original game had. However, the origin/base of the idea is from the original De Pride Isle Sanatorium! Go check out the game, it’s fun! https://web.roblox.com/games/3522803956/NurseApp-De-Pride-Isle-Sanatorium BACKGROUND MUSIC I USED: This will not include all songs since I couldn’t find every single one ^^ also, these aren’t in any particular order! https://youtube.com/playlist?list=PLC32...

    published: 14 Jun 2023
  • Metallica: Welcome Home (Sanitarium) (Fresno, CA - December 9, 2018)

    Filmed at Save Mart Center in Fresno, CA on December 9, 2018 © 2018 Blackened Recordings Follow Metallica: http://www.metallica.com http://www.livemetallica.com http://www.facebook.com/metallica http://www.twitter.com/metallica http://www.instagram.com/metallica http://www.youtube.com/metallicatv

    published: 15 Jan 2019
  • Glitchy Worm Trolling Nurses (FUNNY MOMENTS)l Roblox - De Pride Isle Sanatorium #prank #troll #funny

    In this Roblox De Pride Isle Sanatorium video, I had come up with an elaborate prank/troll my friends within the Isolation area as the dreaded Mutant Worm, the most HATED delusion of them all by Nurse standards and point of view. Safe to say I got my friends GOOD here lol. Watch the 60 Second (Short) version here: https://www.youtube.com/shorts/fLCVl-cvTBM Game Link: https://www.roblox.com/games/3522803956/De-Pride-Isle-Sanatorium Inspired by Stalzie (Former DS YouTuber) and Jenna22M (Current DS YouTuber) Jenna's Channel: https://www.youtube.com/@UCohTNDgTV5fMFgWeF2h_i-g ------------------------------------------------------------------- Music provided by Kevin MacLeod -Gloom Horizon -Volatile Reaction -Movement Proposition Kevin MacLeod's music is licensed under a Creative Commons A...

    published: 17 Aug 2023
  • Metallica: Welcome Home (Sanitarium) (Gothenburg, Sweden - June 18, 2023)

    Catch the M72 World Tour live in cinemas worldwide this August. For more info and tickets, visit https://www.metallica.film. Filmed at the Ullevi in Gothenburg, Sweden, on June 18, 2023. Get the Full Audio Recording: https://metallica.lnk.to/LiveInGothenburg2023Night2 Subscribe for more videos: https://metallica.lnk.to/subscribe Listen to Metallica: https://metallica.lnk.to/listen Follow Metallica: Website & Store: https://www.metallica.com Official Live Recordings: https://www.nugs.net/metallica Instagram: https://www.instagram.com/metallica Facebook: https://www.facebook.com/metallica TikTok: https://www.tiktok.com/@metallica © 2023 Blackened Recordings #Metallica #WelcomeHomeSanitarium #M72Gothenburg

    published: 28 Jun 2023
The Haunted Sanitarium that Changed Us Forever
51:22

The Haunted Sanitarium that Changed Us Forever

  • Order:
  • Duration: 51:22
  • Uploaded Date: 23 Jun 2023
  • views: 757214
Watch our terrifying night as we return to Sweet Springs Sanitarium... The haunted destination that scared us out of the building and changed us forever. How did the spirits remember us? Is this the night that we talked to demons? Enjoy our unexplainable night that we'll never forget... NEXT VIDEO: https://www.youtube.com/watch?v=20hCkJTwJVk Join The FEAR CLUB: https://www.thefearclub.com/ Fear Gear Merch: https://feargear.shop/ Edited by: Dakota Laden and Connor Stallings Instagram: @ProjectFearOfficial TikTok: @ProjectFearOfficial Twitter: @ProjectFearYT On this YouTube channel we will create haunted road trips, exploration videos, and go ghost hunting. We will explore abandoned asylums, USA's most haunted hotels, the real conjuring house, and demonic hauntings. Dakota Laden, Chelsea Laden, Tanner Wiseman, and Alex Schroeder have all been on Destination Fear, Ghost Adventures, Ghost Hunters, and Discovery Channel. Witness our ghostly encounters. Subscribe to travel with us and explore the paranormal!
https://wn.com/The_Haunted_Sanitarium_That_Changed_US_Forever
The NIGHT we ALMOST DIED in WAVERLY HILLS SANATORIUM (Very Scary)
1:02:54

The NIGHT we ALMOST DIED in WAVERLY HILLS SANATORIUM (Very Scary)

  • Order:
  • Duration: 1:02:54
  • Uploaded Date: 14 May 2023
  • views: 842265
Twin Paranormal investigate on the most haunted places on earth! Waverly Hills Sanatorium has been said to be haunted for years, with a dark past and a lot of death on the property that’s no surprise. The guys venture inside to find out if these stories of ghosts and demons are true and to see what kind of paranormal activity will happen to them inside, this video is truly terrifying and one that they will never forget… New Limited TP Barbed Heart Patch Link: https://twin-paranormal-shop.myshopify.com/ Previous episode: https://www.youtube.com/watch?v=HXNW0XspSRY&t=2s LIKE AND SUBSCRIBE!!! JOIN THE GHOST GANG!!: https://www.youtube.com/c/TwinParanormal?sub_confirmation=1 Friends in the video: https://www.youtube.com/@SethBorden https://www.youtube.com/@ExploringWithJosh HELP US MAKE MORE CONTENT AND GO TO CRAZY PLACES! 🖤🖤 Patreon: https://www.patreon.com/TwinParanormal PayPal: https://www.paypal.com/paypalme/TwinParanormal GET OUR MERCH - https://www.bonfire.com/store/twin-paranormal/ About: Twin Paranormal face anything scary from demons to skin walkers and go to the most haunted and terrifying places, bringing you along for the ride. Places like the Washoe Club, the Devils Maze, Skinwalker cave, Asylum 49, Skinwalker valley, the Clown Motel and more! All evidence of paranormal activity that we capture on camera of demons, skin walkers, ghosts during our ghost hunts and paranormal investigations is real and some of the scariest videos on YouTube. The haunted locations we go to overnight are always creepy and we can’t wait to share them with you. _________________________________ Follow us on all our social media!! Instagram- @twinparanormal @wolfrees @riverghostrees @wyatt_k_hausman Twitter- @TwinParanormal @SPOOKYDOOKI3 @RiverRees @xRYANxREESx Twin Paranormal https://www.youtube.com/channel/UCvCD -~-~~-~~~-~~-~- Please watch: "SURVIVING a NIGHT in DIABLO'S ASYLUM | Scariest Demon Encounter" https://www.youtube.com/watch?v=0IDuH2LKSy4 -~-~~-~~~-~~-~-
https://wn.com/The_Night_We_Almost_Died_In_Waverly_Hills_Sanatorium_(Very_Scary)
Terrifying Shadow Man Captured at Haunted Sanatorium
42:48

Terrifying Shadow Man Captured at Haunted Sanatorium

  • Order:
  • Duration: 42:48
  • Uploaded Date: 18 Aug 2023
  • views: 197759
Our scariest capture on the thermal camera to date! We spent the night at the haunted Indiana State Sanatorium where we had an Extremely Terrifying encounter with a Shadow Man! LAST VIDEO: https://www.youtube.com/watch?v=HDzjls6fMcA For DELETED SCENES and EXCLUSIVE CONTENT join the FEAR CLUB: https://www.thefearclub.com/ Fear Gear Merch: https://feargear.shop/ Edited by: Connor Stallings Instagram: @ProjectFearOfficial TikTok: @ProjectFearOfficial Twitter: @ProjectFearYT On this YouTube channel we will create haunted road trips, exploration videos, and go ghost hunting. We will explore abandoned asylums, USA's most haunted hotels, the real conjuring house, and demonic destinations. Dakota Laden, Chelsea Laden, Tanner Wiseman, and Alex Schroeder have all been on Destination Fear, Ghost Adventures, Ghost Hunters, and Discovery Channel. Witness our demon encounters. Subscribe to travel with us and explore the paranormal!
https://wn.com/Terrifying_Shadow_Man_Captured_At_Haunted_Sanatorium
Welcome Home (Sanitarium) (Remastered)
6:28

Welcome Home (Sanitarium) (Remastered)

  • Order:
  • Duration: 6:28
  • Uploaded Date: 21 Jun 2022
  • views: 18490408
Provided to YouTube by Blackened Recordings Welcome Home (Sanitarium) (Remastered) · Metallica Master of Puppets (Remastered) ℗ 1986 Blackened Recordings Released on: 1986-03-03 Auto-generated by YouTube.
https://wn.com/Welcome_Home_(Sanitarium)_(Remastered)
Metallica - Welcome Home (Sanitarium)
6:26

Metallica - Welcome Home (Sanitarium)

  • Order:
  • Duration: 6:26
  • Uploaded Date: 29 Nov 2007
  • views: 35489810
Welcome Home (Sanitarium) by Metallica of Master of Puppets Lyrics: Welcome to where time stands still No one leaves and no one will Moon is full, never seems to change Just labeled mentally deranged Dream the same thing every night I see our freedom in my sight No locked doors, no windows barred No things to make my brain seem scarred Sleep, my friend, and you will see That dream is my reality They keep me locked up in this cage Can't they see it's why my brain says "rage" Sanitarium, leave me be Sanitarium, just leave me alone Build my fear of what's out there Cannot breathe the open air Whisper things into my brain Assuring me that I'm insane They think our heads are in their hands But violent use brings violent plans Keep him tied, it makes him well He's getting better, can't you tell? No more can they keep us in Listen, damn it, we will win They see it right, they see it well But they think this saves us from our hell Sanitarium, leave me be Sanitarium, just leave me alone Sanitarium Just leave me alone Fear of living on Natives getting restless now Mutiny in the air Got some death to do Mirror stares back hard kill is such a friendly word seems the only way for reaching out again
https://wn.com/Metallica_Welcome_Home_(Sanitarium)
ROBLOX SANATORIUM
22:12

ROBLOX SANATORIUM

  • Order:
  • Duration: 22:12
  • Uploaded Date: 04 Sep 2019
  • views: 8206405
ENTER THE SANATORIUM HERE: https://www.roblox.com/games/3374443152/De-Pride-Isle-Sanatorium Today I was invited to De Pride Isle Sanatorium, a very welcoming game.. where things become scary at night if you're not locked away safely in your room... -sees-
https://wn.com/Roblox_Sanatorium
{🕯} DE PRIDE ISLE SANATORIUM {🩸}//FULL GCMM//GACHA CLUB
59:08

{🕯} DE PRIDE ISLE SANATORIUM {🩸}//FULL GCMM//GACHA CLUB

  • Order:
  • Duration: 59:08
  • Uploaded Date: 14 Jun 2023
  • views: 10749
!!PLEASE DO NOT READ THIS UNTIL YOU HAVE FINISHED THE VIDEO, THIS HAS HUGE SPOILERS!! - - - Hello everyone! I hope you enjoyed this! It took me 2-3 months to finish this, so I’m hoping you enjoy! The rest of this description has links to songs I used, sound effects, and lore! ORIGINAL GAME: Okay, so I’d like to say that I created this lore all on my own. This has nothing to do with whatever lore the original game had. However, the origin/base of the idea is from the original De Pride Isle Sanatorium! Go check out the game, it’s fun! https://web.roblox.com/games/3522803956/NurseApp-De-Pride-Isle-Sanatorium BACKGROUND MUSIC I USED: This will not include all songs since I couldn’t find every single one ^^ also, these aren’t in any particular order! https://youtube.com/playlist?list=PLC32EFD96F3E72D4E https://youtube.com/playlist?list=PLyLvoov9sMWQM9U83aGuBYM39kdC8W6IO https://youtube.com/playlist?list=PLBx1sc5JMklwVwboponrNVAtIdMXF9Z_b https://youtu.be/LMAhXhRsRXA https://youtu.be/9E6b3swbnWg https://youtu.be/gPuAg_SDWAg https://youtu.be/WUqKZl-e_fo https://youtu.be/-Y9eoZHCcSc https://youtu.be/zbprH0tCqWQ https://youtu.be/uBBQ3HAUIWQ https://youtu.be/xYk3zBcuRpE SOUND EFFECTS I USED: https://youtu.be/VMj5wVhKC5E https://youtu.be/EUpkLsD9atc https://youtu.be/EgRvVq8mStE https://youtu.be/wzFvYA02pVs https://youtu.be/rboTM-rwtpE https://youtu.be/I6KMAxpqUw8 https://youtu.be/cpk5UyA2mSE https://youtu.be/P7bYqIuIH2A https://youtu.be/hcS-DAvsgyk https://youtu.be/k2CcrXtXa1E LORE: The Island was discovered in 1856 by two unknown travelers, and originally a small town meant to serve as a trade area or a port city. However, overtime more people who were professionals in medical services started to move to the island, and as a result more injured and sick people started arriving there. Later in 1905, the construction of the huge sanatorium was built on the top of the island, construction being finished at January 15th, 1908. Most people stopped living in the town and eventually left due to the amount of sick people , so the island had become a place for those in need of medical attention. However, in 1920, a virus started on the island that made people cannibals, it’s origins unknown. Many people there at the the time suspected it to have originated from an animal or chemical from far away, but there was no evidence for it. The people there didn’t want to spread it to the rest of the world, so they never allowed anyone who entered to leave. The sanatorium had become a place where they tried to control those who had the virus in order to possibly cure it, but it never seemed to work. Eventually in 1958, they managed to make a sort of cure. Before that, the process of neutralizing the virus was very time consuming and took a lot of resources, so the old methods had been forgotten and now holy water is used. Holy water didn’t fully get rid of the virus, but it neutralized it and made it so that the person who took it went 3 stages back out of the 6 in the virus, no matter which stage they were in. They named it “Holy Water”, as the people who had discovered the “cure” had been very religious. However, said religion is unknown. Around 1960, The nurses needed new people to test potential cures for the virus on. They started advertising the place as a beautiful place for those who wanted to give up their old life and start a new one, while in reality it was kept secret of what the sanatorium was actually about. Later on at around 1963, the people who had created the “cure” had become higher ups, and later even in charge of the whole Sanatorium. This is how the sanatorium went from a place for the sick to a holy home that takes care of patients. (As stated, those who had created the “cure” were religious.) They made the Sanatorium what it is now, and it has been running for many years. The series takes place in 2035, 95 years after the original sanatorium was first made. Nurses present such as Bethany and Reika had been born in 2010, meaning they are all around 25. CONCLUSION: Okay, once again, hope you guys enjoyed ! The description was meant to have a lot more, but it didn’t fit with the max youtube allows- I guess I could just link a Google drive or something?? Tell me what you guys think! #gacha #gachaclub #gachacommunity #gachakinemaster #gachalife #gachatrend #kinemaster #kinemasterediting #gachaibispaintx #gachaibispaint #ibispaintx #fyp #fypシ #gachaart #gachavideo #gachavideos #gachagcmm #gachaclubminimovie #gachaglmm #gachalifeminimovie #gachamovie #gachamovies #deprideislesanatorium #gachastory #gachaoriginal #gachaoc #gachatuber #gachacharacters #gachacharacter #gachameme #gachagacha #gachagachagacha
https://wn.com/🕯_De_Pride_Isle_Sanatorium_🩸_Full_Gcmm_Gacha_Club
Metallica: Welcome Home (Sanitarium) (Fresno, CA - December 9, 2018)
7:52

Metallica: Welcome Home (Sanitarium) (Fresno, CA - December 9, 2018)

  • Order:
  • Duration: 7:52
  • Uploaded Date: 15 Jan 2019
  • views: 4645601
Filmed at Save Mart Center in Fresno, CA on December 9, 2018 © 2018 Blackened Recordings Follow Metallica: http://www.metallica.com http://www.livemetallica.com http://www.facebook.com/metallica http://www.twitter.com/metallica http://www.instagram.com/metallica http://www.youtube.com/metallicatv
https://wn.com/Metallica_Welcome_Home_(Sanitarium)_(Fresno,_Ca_December_9,_2018)
Glitchy Worm Trolling Nurses (FUNNY MOMENTS)l Roblox - De Pride Isle Sanatorium #prank #troll #funny
4:46

Glitchy Worm Trolling Nurses (FUNNY MOMENTS)l Roblox - De Pride Isle Sanatorium #prank #troll #funny

  • Order:
  • Duration: 4:46
  • Uploaded Date: 17 Aug 2023
  • views: 76
In this Roblox De Pride Isle Sanatorium video, I had come up with an elaborate prank/troll my friends within the Isolation area as the dreaded Mutant Worm, the most HATED delusion of them all by Nurse standards and point of view. Safe to say I got my friends GOOD here lol. Watch the 60 Second (Short) version here: https://www.youtube.com/shorts/fLCVl-cvTBM Game Link: https://www.roblox.com/games/3522803956/De-Pride-Isle-Sanatorium Inspired by Stalzie (Former DS YouTuber) and Jenna22M (Current DS YouTuber) Jenna's Channel: https://www.youtube.com/@UCohTNDgTV5fMFgWeF2h_i-g ------------------------------------------------------------------- Music provided by Kevin MacLeod -Gloom Horizon -Volatile Reaction -Movement Proposition Kevin MacLeod's music is licensed under a Creative Commons Attribution 4.0 license. https://creativecommons.org/licenses/by/4.0/ Source: https://incompetech.com/music/royalty-free/music.html (Search for the song you want in the search box on this page) Artist: http://incompetech.com/
https://wn.com/Glitchy_Worm_Trolling_Nurses_(Funny_Moments)L_Roblox_De_Pride_Isle_Sanatorium_Prank_Troll_Funny
Metallica: Welcome Home (Sanitarium) (Gothenburg, Sweden - June 18, 2023)
6:47

Metallica: Welcome Home (Sanitarium) (Gothenburg, Sweden - June 18, 2023)

  • Order:
  • Duration: 6:47
  • Uploaded Date: 28 Jun 2023
  • views: 775801
Catch the M72 World Tour live in cinemas worldwide this August. For more info and tickets, visit https://www.metallica.film. Filmed at the Ullevi in Gothenburg, Sweden, on June 18, 2023. Get the Full Audio Recording: https://metallica.lnk.to/LiveInGothenburg2023Night2 Subscribe for more videos: https://metallica.lnk.to/subscribe Listen to Metallica: https://metallica.lnk.to/listen Follow Metallica: Website & Store: https://www.metallica.com Official Live Recordings: https://www.nugs.net/metallica Instagram: https://www.instagram.com/metallica Facebook: https://www.facebook.com/metallica TikTok: https://www.tiktok.com/@metallica © 2023 Blackened Recordings #Metallica #WelcomeHomeSanitarium #M72Gothenburg
https://wn.com/Metallica_Welcome_Home_(Sanitarium)_(Gothenburg,_Sweden_June_18,_2023)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Haunted Sanitarium that Changed Us Forever
    51:22
    The Haunted Sanitarium that Changed Us Foreverremove from playlist
  • The NIGHT we ALMOST DIED in WAVERLY HILLS SANATORIUM (Very Scary)
    1:02:54
    The NIGHT we ALMOST DIED in WAVERLY HILLS SANATORIUM (Very Scary)remove from playlist
  • Terrifying Shadow Man Captured at Haunted Sanatorium
    42:48
    Terrifying Shadow Man Captured at Haunted Sanatoriumremove from playlist
  • Welcome Home (Sanitarium) (Remastered)
    6:28
    Welcome Home (Sanitarium) (Remastered)remove from playlist
  • Metallica - Welcome Home (Sanitarium)
    6:26
    Metallica - Welcome Home (Sanitarium)remove from playlist
  • ROBLOX SANATORIUM
    22:12
    ROBLOX SANATORIUMremove from playlist
  • {🕯} DE PRIDE ISLE SANATORIUM {🩸}//FULL GCMM//GACHA CLUB
    59:08
    {🕯} DE PRIDE ISLE SANATORIUM {🩸}//FULL GCMM//GACHA CLUBremove from playlist
  • Metallica: Welcome Home (Sanitarium) (Fresno, CA - December 9, 2018)
    7:52
    Metallica: Welcome Home (Sanitarium) (Fresno, CA - December 9, 2018)remove from playlist
  • Glitchy Worm Trolling Nurses (FUNNY MOMENTS)l Roblox - De Pride Isle Sanatorium #prank #troll #funny
    4:46
    Glitchy Worm Trolling Nurses (FUNNY MOMENTS)l Roblox - De Pride Isle Sanatorium #prank #troll #funnyremove from playlist
  • Metallica: Welcome Home (Sanitarium) (Gothenburg, Sweden - June 18, 2023)
    6:47
    Metallica: Welcome Home (Sanitarium) (Gothenburg, Sweden - June 18, 2023)remove from playlist
PLAYLIST TIME: 0:00 / 4:30:43

The Haunted Sanitarium that Changed Us Forever

Watch our terrifying night as we return to Sweet Springs Sanitarium... The haunted destination that scared us out of the building and changed us forever. How did the spirits remember us? Is this the night that we talked to demons? Enjoy our unexplainable night that we'll never forget... NEXT VIDEO: https://www.youtube.com/watch?v=20hCkJTwJVk Join The FEAR CLUB: https://www.thefearclub.com/ Fear Gear Merch: https://feargear.shop/ Edited by: Dakota Laden and Connor Stallings Instagram: @ProjectFearOfficial TikTok: @ProjectFearOfficial Twitter: @ProjectFearYT On this YouTube channel we will create haunted road trips, exploration videos, and go ghost hunting. We will explore abandoned asylums, USA's most haunted hotels, the real conjuring house, and demonic hauntings. Dakota Laden, Chelsea Laden, Tanner Wiseman, and Alex Schroeder have all been on Destination Fear, Ghost Adventures, Ghost Hunters, and Discovery Channel. Witness our ghostly encounters. Subscribe to travel with us and explore the paranormal!
51:22
The Haunted Sanitarium that Changed Us Forever
Watch our terrifying night as we return to Sweet Springs Sanitarium... The haunted destina...
published: 23 Jun 2023
Play in Full Screen
1:02:54
The NIGHT we ALMOST DIED in WAVERLY HILLS SANATORIUM (Very Scary)
Twin Paranormal investigate on the most haunted places on earth! Waverly Hills Sanatorium ...
published: 14 May 2023
Play in Full Screen
42:48
Terrifying Shadow Man Captured at Haunted Sanatorium
Our scariest capture on the thermal camera to date! We spent the night at the haunted Ind...
published: 18 Aug 2023
Play in Full Screen
6:28
Welcome Home (Sanitarium) (Remastered)
Provided to YouTube by Blackened Recordings Welcome Home (Sanitarium) (Remastered) · Meta...
published: 21 Jun 2022
Play in Full Screen
6:26
Metallica - Welcome Home (Sanitarium)
Welcome Home (Sanitarium) by Metallica of Master of Puppets Lyrics: Welcome to where...
published: 29 Nov 2007
Play in Full Screen
22:12
ROBLOX SANATORIUM
ENTER THE SANATORIUM HERE: https://www.roblox.com/games/3374443152/De-Pride-Isle-Sanatoriu...
published: 04 Sep 2019
Play in Full Screen
59:08
{🕯} DE PRIDE ISLE SANATORIUM {🩸}//FULL GCMM//GACHA CLUB
!!PLEASE DO NOT READ THIS UNTIL YOU HAVE FINISHED THE VIDEO, THIS HAS HUGE SPOILERS!! - - ...
published: 14 Jun 2023
Play in Full Screen
7:52
Metallica: Welcome Home (Sanitarium) (Fresno, CA - December 9, 2018)
Filmed at Save Mart Center in Fresno, CA on December 9, 2018 © 2018 Blackened Recordings ...
published: 15 Jan 2019
Play in Full Screen
4:46
Glitchy Worm Trolling Nurses (FUNNY MOMENTS)l Roblox - De Pride Isle Sanatorium #prank #troll #funny
In this Roblox De Pride Isle Sanatorium video, I had come up with an elaborate prank/troll...
published: 17 Aug 2023
Play in Full Screen
6:47
Metallica: Welcome Home (Sanitarium) (Gothenburg, Sweden - June 18, 2023)
Catch the M72 World Tour live in cinemas worldwide this August. For more info and tickets,...
published: 28 Jun 2023
Play in Full Screen
'); } 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)); } }); }); }); // -->
×