code students are using

🧩 Syntax:
<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";
        rel="stylesheet">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Google Classroom</title>
    <!-- <link> and <title> tags to disguise page as the Clever Portal when you go on a different tab to hide-->
    <link rel="icon" type="image/png"
        href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcStR3gp3oUAFMLiVjj7EnxHK5JBLgOjZqbJrw&s">;
    <style> /* Otherwise the site looks like a skeleton */
        body {
            margin: 0;
            padding: 0;
            background-image: url('https://www.ke.dafanews.com/wp-content/uploads/2020/10/wc3134748-1536x1244.jpg');
            background-color: #000;
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            color: #fff;
            font-family: Arial, sans-serif;
            text-align: center;
        }
        
        h1 {
            margin-top: 150px;
            font-size: 24px;
            font-weight: 700;
            font-family: Inter;
            background-image: url('https://st5.depositphotos.com/22224476/65196/i/450/depositphotos_651964962-stock-photo-modern-colorful-purple-yellow-gradient.jpg');
            border: 3px solid purple;
            box-shadow:2px yellow, 4px yellow, 6px yellow;
            border-radius: 10000px;
            padding: 5px 10.125px;
            color:yellow;
        }

        .button {
            display: inline-block;
            margin-top: 40px;
            margin-left: 2px;
            margin-right: 2px;
            padding: 10px 20px;
            background-color: yellow;
            color: purple;
            border: 2px solid purple;
            border-radius: 25px;
            /* Create rounded edges */
            font-weight: 900;
            font-family: Inter;
            /* Use the Raleway font imported from Google Fonts in the <head> for the buttons*/
            cursor: pointer;
            transition: all 0.3s ease;
            /* Smooth transition for the glow effect */
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
            /* Initial shadow effect */
        }

        .button-bl {
            top:0%; /* Position the button to the top left | Credits to Stack Overflow users on this thread https://stackoverflow.com/questions/63541670/how-to-position-a-button-on-website-using-html-css*/
            left:0%;
            width:200px;
            height:40px;
            position: absolute;
            z-index: 2; 
            display: inline-block;
            margin-top: 10px;
            margin-left: 2px;
            margin-right: 2px;
            padding: 10px 20px;
            background-color: yellow;
            color: purple;
            border: 2px solid purple;
            border-radius: 25px;
            /* Create rounded edges */
            font-weight: 900;
            font-family: Inter;
            /* Use the Raleway font imported from Google Fonts in the <head> for the buttons*/
            cursor: pointer;
            transition: all 0.3s ease;
            /* Smooth transition for the glow effect */
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
            /* Initial shadow effect */
        }

        .button-links {
            top: 0%; /* Position the button to the top right */
            right: 0%;
            width: 200px;
            height: 40px;
            position: absolute;
            z-index: 2; 
            display: inline-block;
            margin-top: 10px;
            margin-left: 2px;
            margin-right: 2px;
            padding: 10px 20px;
            background-color: yellow;
            color: purple;
            border: 2px solid purple;
            border-radius: 25px;
            /* Create rounded edges */
            font-weight: 900;
            font-family: Inter;
            /* Use the Raleway font imported from Google Fonts in the <head> for the buttons*/
            cursor: pointer;
            transition: all 0.3s ease;
            /* Smooth transition for the glow effect */
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
            /* Initial shadow effect */
        }

        .button:hover {
            background-color: purple;
            color: yellow;
            box-shadow: 15px yellow,
                /* Glow effect */
                0 0 30px rgba(255, 255, 255, 0.8);
            /* More intense glow effect */
        }

        .button-bl:hover {
            background-color: purple;
            color: yellow;
            box-shadow: 0 0 15px yellow,
                /* Glow effect */
                0 0 30px rgba(255, 255, 255, 0.8);
            /* More intense glow effect */
        }

        .button-links:hover {
            background-color: purple;
            color: yellow;
            box-shadow: 0 0 15px yellow,
                /* Glow effect */
                0 0 30px yellow;
            /* More intense glow effect */
        }

        #randomPhrase {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-weight: bold;
            background-color: black;
            border: 2px solid purple;
            border-radius: 6.5px;
            padding: 5px 10.0125px;
            color:yellow;
            box-shadow: 0 0 15px rgba(0, 0, 0, 1),
                /* Glow effect */
                0 0 30px rgb(48, 53, 79);
            /* More intense glow effect */
        }

        .hidden {
            display: none;
        }

        /* Updated styling for the BLOCKS message with white color */
        #blocksMessage {
            font-size: 18px;
            font-weight: bold;
            color: yellow;
            /* White color */
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        #movingText {
            position: absolute;
            top: 50px;
            /* Adjust according to your layout */
            left: -100%;
            /* Start off the screen on the left */
            font-size: 18px;
            /* Match the font size with the blocks message */
            font-weight: bold;
            /* Make it bold */
            color: #FFF;
            /* White color */
            text-transform: uppercase;
            /* Uppercase text for consistency */
            animation: moveAcross 10s linear infinite;
            /* Animation settings */
        }

        @keyframes moveAcross {
            0% {
                left: -100%;
                /* Starting position off the left */
            }

            100% {
                left: 100%;
                /* Ending position off the right */
            }
        }
    </style>
</head>

<body>
    <!-- New BL0CKS messages -->
	<div id="blocksMessage">Download Browser I Made</div>
  <a href="https://drive.google.com/uc?export=download&id=1-mcOQXwpIgq3a59lnSBfa3OQKwn-U65t"; download="Browser">Download</a>
 
	<!-- Moving Text -->
    <div id="movingText">"You can't be afraid to fail. It's the only way you succeed" - Lebron James</div>

    <h1>Lebron Web</h1>
    <h4 style="color:yellow; background-color:black"> OK so I made the font much better, and I'm trying my best to get everything to work offline (this can't be blocked so we have time) & the retrobowl issue is fixed. NOTE:The reason games don't save is that there's no cookies (what saves ur data, a example is liking something on tiktok and getting more of that), and it's not a real domian. Don't complain that smth is not working and 20,000 people have likely already told me about it. If it is a question like "Oh I think the browser not working because _______," that fine, but if u complain like "smth not working fix it please wahhhh", you're just a waste of time. Every update will have new phrases from now on.</h4>
    <button id="launchGames" class="button">Games</button>
    <button id="launchApps" class="button">Apps (New stuff)</button>
    <button id="launchBrowser" class="button">Browser</button>
    <button id="launchUltraviolet" class="hidden">Ultraviolet</button>
    <button id="lanschool" class="hidden">Search history byp@ss</button> <!--Search history bypass has been moved to tools/exploits-->
    <button id="exploits" class="button">Tools/Exploits</button>
    <button id="downloads" class="hidden">Downloads</button>
    <button id="openInAboutBlank" class="button-bl">About:blank Cloak</button>
    <button id="changelog" class="hidden">Changelog</button>
    <button id="links" class="button-links">Piston Motors</button>
    <!-- if any of the button classes are "hidden", they are likely useless or broken -->
    <div id="randomPhrase"></div>
    <div id="instructions" class="hidden">
        <div id="htmlCodeSection" class="hidden">
            <!-- Custom HTML code will go here -->
            <h2>Custom HTML Code</h2>
            <p>This is a placeholder for your custom HTML code. Replace this content as needed.</p>
            <p>Example: <strong>&lt;div&gt;Your HTML content here&lt;/div&gt;</strong></p>
        </div>
        <h2>READ THIS</h2>
        <p>This is a huge work in progress. If anything gets blocked, follow these
            steps:<br> Either rename file, and if still blocked, restart ur chromebook, don't restore tabs, and ur good to go. If it'd still blocked, just use games & apps.
        </p>
        <button id="continueButton" class="button">Continue</button>
    </div>
    <button id="ruffleButton" class="button hidden">Ruffle</button>
    <audio id="skibidi-toilet.mp3"
        src="file:///home/chronos/u-6250f6c9d926bae1c836b0d7f54beb805b0eeccd/MyFiles/Downloads/skibidi-toilet.mp3" loop></audio>

    <script>
        document.getElementById("launchBrowser").addEventListener("click", function() {
    var htmlSection = document.getElementById("htmlCodeSection");
    // Toggle visibility of the HTML section
    htmlSection.classList.toggle("hidden");
  });
    </script>
    <script>
        document.addEventListener("DOMContentLoaded", function() {
      var phrases = [
					 "Bruh",
						"Roblox is mid",
                        "Creator 2, School 0.5",
						"Lebron is my pookie",
						"Me saving my lebron stuffie from the fire (my girlfriend is still inside)",
						"Tickle my pickle for a nickle",
						"YEAGER",
						"Totally not a ripoff of chatty website",
						"Me 23 beers deep",
						"Erm skibidi sigma",
						"School lunches are probably made in a lab",
						"There's a bad rat problem in the rugby house at syracuse",
						"Deez Nuts",
						"Obama Hamburger Fortnite sussy balls - Kanye East",
						"I deleted fortnite",
						"For the emperor",
						"Warhammer 40K space marines II is a very fun game",
						"The way he play with balls they call him james harden",
						"Making Teachers Mad Since 2024",
						"Idk",
						"Kids would have more access to resources to get good grades if everything wasn't blocked",
						"Huh?",
						"Block Blast - NPC game of the year 2024",
						"Freaky-ahh bootleg",
						"There's a costco down the street!",
						"FUN FACT: Diddy had enough baby oil to fill a cuban missle cilo",
						"Glizzy Gobbler",
						"If you say freakybob off the fent 3 times he will tickle your toes until you get freaky with him",
						"Celcius shortens you life span & attention span",
						"Free Robux Here: https://ia802306.us.archive.org/20/items/NeverGonnaGiveYouUp/jocofullinterview41.mp3",
						"Could someone help me",
                        "Goofy Ahh Uncle Productions",
                        "إذا كنت لا تعتقد أنني صنعت هذا، فسأحضر لك ساعة غامضة ستقوم بالعد التنازلي.",
                        "I nice at ping-pong",
                        "Play Half-life in the bottom of games section and select uplink to play",
                        "Only in Ohio",
                        "Bro if u rat me out I finna clap ur cheecks fr",
                        "Lebron dih to yo name, Name three lacrosse players. Oh hell nah just slip it in",
                        "Please give the browser time & if it says blocked I know how to generate another link for it",
                        "when I walk into my sons room and I see his strong vainy ah dih gooning to LeBron James 2016 finals highlights then I realize it's LeBron James birthday so I join him and witness greatness",
                        "LeBron dih 2 yo crack name all 50 states. This the best day of my life 😭💔🤤",
                        "Low taper fade",
                        "Don't search up Megamind on the geen website",
                        "Oh crud muffins!",
                        "tickle my pickle for a nickle",
          
      ];

      var randomIndex = Math.floor(Math.random() * phrases.length);
      var randomPhrase = phrases[randomIndex];
      document.getElementById("randomPhrase").textContent = randomPhrase;
    });

    document.getElementById("launchGames").onclick = function() {
      document.body.innerHTML = "";
      setTimeout(function() {
        var games = [
      { name: "Skribbl.io", url: "https://skribbl.io" },
      { name: "Retro Bowl College", url: "https://ethonion10.neocities.org/"; },
      { name: "Retro Bowl", url: "https://sobloxsy.github.io/retro-bowl/"; },
      { name: "Android App Launcher", url: "https://nowgg.lol/apps/frogiee1/69420/custom-thingy-loader.html"; },
      { name: "Minecraft (1.5)", url: "https://eaglercraft.glitch.me/"; },
      { name: "Minecraft (1.8)", url: "https://eaglercraft-archive.github.io/Koneclient-1.8-web/"; },
      { name: "Eaglercraft Server List", url: "https://servers.eaglercraft.com/"; },
      { name: "Minecraft 1.8 (WASM, FPS BOOST)", url: "https://eaglercraft.com/mc/1.8.8-wasm/"; },
      { name: "Minecraft (1.9)", url: "https://html.cafe/x56360a59"; },
      { name: "Minecraft (1.9 Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/1-9.html"; },
      { name: "Minecraft (1.11)", url: "https://d272xss3wq00xu.cloudfront.net/1-11.html"; },
      { name: "Resent Client Eagler (1.8)", url: "https://reslauncher4.vercel.app" },
      { name: "Starlike Client Eagler (1.16- kinda)", url: "https://starlike.zumbiepig.dev/"; },
      { name: "Eaglercraft (1.20)", url: "https://dfs3rzq44v6as.cloudfront.net/?frame=fullscreen/#/lessons/964c4358-60a7-4121-908e-63f6ae6e5ef0"; },
      { name: "Eaglercraft Versions & Clients", url: "https://html.cafe/x7922b580"; },
      { name: "Block Blast", url: "https://reunbozdo.github.io/"; },
      { name: "Peter Ball", url: "https://tenor.com/view/peter-griffin-spin-sphere-spinnin-griffin-swagswo-gif-23628022"; },
      { name: "Roblox (Now.gg 2)", url: "https://dfs3rzq44v6as.cloudfront.net/?frame=fullscreen/#/lessons/550673cd-2d7e-437e-ab86-baa249b52dd0"; },
      { name: "Roblox (Now.gg 3)", url: "https://nowgg.lol/"; },
      { name: "Roblox (Now.gg 4)", url: "https://pathetic-roblox-main.vercel.app/"; },
      { name: "Roblox (Now.gg 5)", url: "https://html.cafe/x8bcb5934"; },
      { name: "Roblox (Now.gg 6)", url: "https://s2g3.onrender.com" },
      { name: "Tortilla Games", url: "https://dfs3rzq44v6as.cloudfront.net"},
      { name: "Ultraviolet", url: "https://dfs3rzq44v6as.cloudfront.net/#/prxy"; },
      { name: "Five Nights At Winston's", url: "https://g.deev.is/fnaw"; },
      { name: "1 (Reversed 2048)", url: "https://d272xss3wq00xu.cloudfront.net/2048/index.html"; },
      { name: "Bottle Flip 3D", url: "https://d272xss3wq00xu.cloudfront.net/bottle-flip-3d/index.html"; },
      { name: "Neal.fun", url: "https://neal.fun" },
      { name: "Subway Surfers", url: "https://dddavit.github.io/subway/"; },
      { name: "Slope", url: "https://mathadventure1.github.io/slope/slope/index.html"; },
      { name: "Slope 2", url: "https://d3rtzzzsiu7gdr.cloudfront.net/gameplayer/index.html?Slope%202"; },
      { name: "Slope 3", url: "https://slope3.com/"; },
      { name: "Cookie Clicker", url: "https://eli-schwartz.github.io/cookieclicker/"; },
      { name: "Drive Mad", url: "https://ubg365.github.io/drive-mad/play.html"; },
      { name: "Drive Mad (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/drivemad/index.html"; },
      { name: "Drive Mad Mod", url: "https://play.fancade.com/63BA239C20C40BF3"; }, 
      { name: "BitLife", url: "https://ubg365.github.io/bitlife-life-simulator/play.html"; },
      { name: "Ztype", url: "https://zty.pe" },
      { name: "3kh0.github.io (ad spammy)", url: "https://3kh0.github.io" },
      { name: "Hover Racer Drive", url: "https://ubg365.github.io/hover-racer-drive/"; },
      { name: "Monkey Mart", url: "https://ubg365.github.io/monkey-mart/play.html"; },
      { name: "Drift Boss", url: "https://ubg365.github.io/drift-boss/"; },
      { name: "Madalin Stunt Cars 2", url: "https://ubg100.github.io/games/Madalin/index.html"; },
      { name: "Breaking the bank", url: "https://mountain658.github.io/zbreakingthebank.html"; },
      { name: "Escaping the prison", url: "https://mountain658.github.io/zescapetheprison.html"; },
      { name: "Stealing the diamond", url: "https://mountain658.github.io/zstealingthediamond.html"; },
      { name: "Infiltrating the airship", url: "https://sz-games.github.io/games/Flash.html?game=/games/henry-airship/infiltratingtheairshipgame.swf"; },
      { name: "Fleeing the complex", url: "https://sz-games.github.io/games/Flash.html?game=https://sz-games.github.io/Games6/Henry%20Stickmin%20-%20Fleeing%20the%20Complex.swf?raw=true"; },
      { name: "Free Rider", url: "https://freeriderhd.com" },
      { name: "Run 3", url: "https://lekug.github.io/tn6pS9dCf37xAhkJv/"; },
      { name: "Bloxorz", url: "https://ad-freegames.github.io/flash/game/bloxorz.html"; },
      { name: "Drift Hunters", url: "https://htmlxm.github.io/h/drift-hunters/"; },
      { name: "Venge.io", url: "https://venge.io/"; },
      { name: "Highway Racer Pro", url: "https://unblocked-games.s3.amazonaws.com/highway-racer-pro.html"; }, 
      { name: "Hole.io", url: "https://hole-io.com/"; },
      { name: "Drift Hunters 2024", url: "https://unblocked-games.s3.amazonaws.com/drift-hunters-2024.html"; },
      { name: "Webcraft", url: "https://jesgran.is-a.dev/webcraft/"; }, 
      { name: "Sandspiel Studio", url: "https://studio.sandspiel.club" },
      { name: "Gamble", url: "https://www.yurk.com/games/black/"; },
      { name: "FNAF", url: "https://ubg77.github.io/fix/fnaf1/"; },
      { name: "Krunker.io", url: "https://krunker.io/"; },
      { name: "Tomb of the mask", url: "https://mountain658.github.io/g/tombofthemask/index.html"; },
      { name: "worldguessr", url: "https://www.worldguessr.com/"; },
      { name: "MinecraftSkins.net", url: "https://minecraftskins.net" },
      { name: "Now.gg", url: "https://now.gg/games.html"; },
      { name: "Skindex", url: "https://skindex.pro" },
      { name: "RadioStations", url: "https://radio.garden/"; },
      { name: "Windows93Emulator", url: "https://v1.windows93.net/"; },
      { name: "Mr. Bullet", url:"https://www.yurk.com/games/mrbullet/"; },
      { name: "Sandspiel", url: "https://sandspiel.club" },
      { name: "Slow Roads", url: "https://slowroads.io" },
      { name: "Slow Roads (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/slow-roads/index.html"; },
      { name: "Edys Car Simulator", url: "https://unblocked-games.s3.amazonaws.com/edys-car-simulator.html"; },
      { name: "Backrooms", url: "https://adfree3kh0.github.io/projects/backrooms/index.html"; },
      { name: "Impossible Quiz", url: "https://d3rtzzzsiu7gdr.cloudfront.net/gameplayer/index.html?Impossible%20Quiz"; },
      { name: "Impossible Quiz (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/impossiblequiz/index.html"; },
      { name: "Among Us Singleplayer", url: "https://adfree3kh0.github.io/projects/among-us/index.html"; }, 
      { name: "Windows XP Emulator", url: "https://winxp.vercel.app/"; },
      { name: "Eggy Car", url: "https://www.yurk.com/games/eggycar/"; },
      { name: "Eggy Car (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/eggy-car/index.html"; },
      { name: "Turbowarp Packager (Download Scratch Projects)", url: "https://packager.turbowarp.org" },
      { name: "Bad Piggies", url: "https://www.friv.cm/bad-piggies/fullscreen/"; },
      { name: "Cluster Rush",  url: "https://duckmath.org/g4m3s/cluster-rush.html"; },
      { name: "Crossy Road", url: "https://selenite.cc/semag/crossyroad/index.html"; },
      { name: "Crossy Road (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/crossyroad/index.html"; },
      { name: "1v1.lol", url: "https://selenite.cc/semag/1v1lol/index.html"; },
      { name: "Bloxd.io", url: "https://bloxd.io" },
      { name: "CubeRealm.io", url: "https://cuberealm.io/"; },
      { name: "Aim Trainer", url: "https://aimtrainer.io/"; },
      { name: "Scrap Metal 1", url: "https://www.gamearter.com/game/scrap-metal/"; },  
      { name: "Scrap Metal 2", url: "https://www.gamearter.com/game/scrap-metal-2/"; },
      { name: "Scrap Metal 3", url: "https://adfree3kh0.github.io/projects/scrapmetal/index.html"; },  
      { name: "Scrap Metal 4", url: "https://www.gamearter.com/game/scrap-metal-4/"; },
      { name: "Scrap Metal 5", url: "https://www.gamearter.com/game/scrap-metal-5/"; },
      { name: "Scrap Metal 6", url: "https://www.gamearter.com/game/scrap-metal-6/"; },
      { name: "GameArter", url: "https://www.gamearter.com/games"; },
      { name: "Obby Robby Only Up", url: "https://html.cafe/x3d7ef5a3"; },
      { name: "FreezeNova", url: "https://unblocked-games.s3.amazonaws.com/index.html"},
      { name: "Geometry Dash Lite", url: "https://selenite.cc/semag/gdlite/index.html"; },
      { name: "FNAF 2", url: "https://selenite.cc/semag/fnaf2/index.html"; },
      { name: "FNAF 3", url: "https://selenite.cc/semag/fnaf3/index.html"; },
      { name: "FNAF 4", url: "https://selenite.cc/semag/fnaf4/index.html"; },
      { name: "FNAF 4 (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/FNAF4/index.html"; },
      { name: "Selenite Minecraft", url: "https://selenite.cc/semag/eaglercraft/index.html"; },
      { name: "MEGA Client", url: "https://megaclient.vercel.app" },
      { name: "LittleBigSnake", url: "https://littlebigsnake.com" },
      { name: "Surviv.io", url: "https://surviv.io" },
      { name: "Spacebar Clicker", url: "https://unblocked-games.s3.amazonaws.com/spacebar-clicker.html"; },
      { name: "Deadshot.io", url: "https://deadshot.io" },
      { name: "Clicker", url: "https://elucidation.github.io/ClickerJs/"; },
      { name: "Smashkarts.io", url: "https://smashkarts.io" },
      { name: "Pixel Force", url: "https://www.yurk.com/games/pixelforce/"; },
      { name: "Happy Glass", url: "https://www.yurk.com/games/happyglass/"; },
      { name: "Selenite (fixed)", url: "https://selenite.cc/"; },
      { name: "Duck Life 1", url: "https://selenite.cc/semag/ducklife1/index.html"; },
      { name: "Duck Life 2", url: "https://selenite.cc/semag/ducklife2/index.html"; },
      { name: "Duck Life 3", url: "https://selenite.cc/semag/ducklife3/index.html"; },
      { name: "Duck Life 4", url: "https://selenite.cc/semag/ducklife4/index.html"; },
      { name: "Duck Life 5", url: "https://selenite.cc/semag/ducklife5/index.html"; },
      { name: "Duck Life 6", url: "https://selenite.cc/semag/ducklife6/index.html"; },
      { name: "Stick Running", url: "https://www.yurk.com/games/stickrunning/"; },
      { name: "Happy Filled Glass", url: "https://www.yurk.com/games/happyfilledglass/"; },
      { name: "Hypackel Games", url: "https://d3rtzzzsiu7gdr.cloudfront.net/settings.html"; },  
      { name: "Elastic Man", url: "https://d21u3ic0kp9e91.cloudfront.net/elasticman/0/index.html"; },
      { name: "Tunnel Rush", url: "https://ubg44.github.io/TunnelRush/"; },
      { name: "Cookie Clicker 2024 (Click link)", url: "https://d3rtzzzsiu7gdr.cloudfront.net/files/cookieclicker/game/index.html"; },
      { name: "Interactive Buddy", url: "https://d3rtzzzsiu7gdr.cloudfront.net/gameplayer/index.html?Interactive%20Buddy"; },
      { name: "Baldis Basics", url: "https://d3rtzzzsiu7gdr.cloudfront.net/files/baldisbasics/index.html"; },
      { name: "Minecraft Classic", url: "https://d3rtzzzsiu7gdr.cloudfront.net/files/minecraft-classic/index.html"; },
      { name: "Angry Birds", url: "https://d3rtzzzsiu7gdr.cloudfront.net/files/AngryBirdsWebGL/index.html"; },
      { name: "Minecraft 1.8", url: "https://d3rtzzzsiu7gdr.cloudfront.net/gameplayer/index.html?Eaglercraft%20(MC)#"; },
      { name: "Precision Client Eagler", url: "https://d3rtzzzsiu7gdr.cloudfront.net/files/projects/precision-client/index.html"; },
      { name: "2048", url: "https://2048game.com/"; },
      { name: "Flappy Bird", url: "https://d3rtzzzsiu7gdr.cloudfront.net/files/flappybird/index.html"; },
      { name: "1v1.lol", url: "https://d3rtzzzsiu7gdr.cloudfront.net/gameplayer/index.html?1v1.LOL%20[Needs%20Internet]"; },
      { name: "Win11 in React", url: "https://win11.blueedge.me" },
      { name: "Hypackel 2", url: "https://hypackel.com" },
      { name: "Hypackel 3", url: "https://hypackel.github.io" },
      { name: "Hypackel 4", url: "https://hypackellite.vercel.app/settings.html"; },
      { name: "1v1.lol Fortnite - Play at home", url: "https://1v1.lol" },
      { name: "Impossible Quiz 2", url: "https://archive.org/details/tiq2_swf"; },
      { name: "Now.gg Method 2", url: "https://web.archive.org/web/20241112154118/now.gg"; },
      { name: "Web Archive", url: "https://web.archive.org" },
      { name: "Astra Client Eagler", url: "https://barneycompiler.github.io/AstraClientEagler/javascript"; },
      { name: "Tetris", url: "https://tetris.com/play-tetris"; },
      { name: "Glitch Text Generator", url: "https://lingojam.com/GlitchTextGenerator"; },
      { name: "Barney's Website", url: "https://html.cafe/x715d6947"; },
      { name: "Stickman Swing", url: "https://www.yurk.com/games/stickmanswing"},
      { name: "Google Easter Egg Games", url: "https://elgoog.im" },
      { name: "Duck Math Games", url: "https://duckmath.org/index.html"; },
      { name: "Chill Radio", url: "https://www.chilltrax.com/"; },
      { name: "Tower of Treasure", url: "https://beinternetawesome.withgoogle.com/en_us/interland/landing/tower-of-treasure"; },
      { name: "Fancy Text Generator", url: "https://lingojam.com/FancyTextGenerator"; },
      { name: "Yurk.com", url: "https://yurk.com" },
      { name: "Australian Man Website", url: "https://html.cafe/xf91164ad"; },
      { name: "SigmaFart", url: "https://html.cafe/x4922b615"; },
      { name: "Bottle Flip 3D", url: "https://d3rtzzzsiu7gdr.cloudfront.net/play/index.html?Bottle%20Flip%203D"; },
      { name: "Friv.com", url: "https://friv.com" },
      { name: "Download British Man Website", url: "https://html.cafe/xf3b7d5cc"; },
      { name: "British Man Website (Roblox!)", url: "https://html.cafe/x8a3e2b9b"; },
      { name: "Helios Proxy (credits to Dinguschan-owo on github)", url: "https://helios-browser.vercel.app" },
      { name: "Dingus Proxy (credits to Dinguschan-owo on github)", url: "https://html.cafe/x40ceaed5"; },
      { name: "Infinite Tutoring Proxy", url: "https://infinitetutoring.com.au/history/textbook?historicalfigure=browser&type=local"; },
      { name: "Slither.io Ripoff", url: "https://gulper.io/"; },
      { name: "Infinite Craft", url: "https://infinite-craft.com/infinite-craft/"; },
      { name: "Baldis Basics Method 2", url: "https://igroutka.ru/loader/game/26471/"; },
      { name: "We Become what we Behold", url: "https://gnhustgames.github.io/wbwwb/"; },
      { name: "Time Shooter", url: "https://games.crazygames.com/en_US/time-shooter/index.html"; },
      { name: "Time Shooter 2", url: "https://games.crazygames.com/en_US/time-shooter-2/index.html"; },
      { name: "Time Shooter 3", url: "https://games.crazygames.com/en_US/time-shooter-3-swat/index.html"; },
      { name: "Chrome Dino", url: "https://htmlxm.github.io/h7/dinosaur-game/"; },
      { name: "Getting over it ( Scratch )", url: "https://turbowarp.org/389464290/embed?autoplay&addons=remove-curved-stage-border,pause,gamepad"; },
      { name: "1v1.lol Method 3", url: "https://player.work/1v1lol/index.html"; },
      { name: "HTML.cafe Gallery", url: "https://html.cafe/gallery"; },
      { name: "Eaglercraft Clients", url: "https://eaglercraftx1-8.github.io/"; },
      { name: "Slither.io", url: "http://slither.com/io"; },
      { name: "Easyfun.gg", url: "https://easyfun.gg" },
      { name: "Ballistic", url: "https://d272xss3wq00xu.cloudfront.net/ballistic/index.html"; },
      { name: "Minecraft Java Edition", url: "https://mcraft.fun" },
      { name: "Mood Tracker", url: "https://html.cafe/xb2c91b5a"; },
      { name: "Guess The Number Game", url: "https://html.cafe/x63aefeaa"; },
      { name: "HTML Editor", url: "https://spacenerd24.github.io/Online-HTML-Viewer/"; },
      { name: "Selenite Method 2", url: "https://selenite-copy.pages.dev" },
      { name: "Astroid.gg Games + Apps + Proxy", url: "https://astroid.gg/"; },
      { name: "Always Impostor", url: "https://html5.gamedistribution.com/9abe6af0fbb440b98a3e24bf7fb0636a/?gd_sdk_referrer_url=https://kevin.games/always-impostor"; },
      { name: "Infinite Tutoring Proxy", url: "https://infinitetutoring.com.au/history/src/browser/"; },
      { name: "2D kinda space shooting game", url: "https://html.cafe/x704e8436"; },
      { name: "WebMC (Eaglercraft Launcher)", url: "https://webmc.xyz/"; },
      { name: "Vex 3", url: "https://dfs3rzq44v6as.cloudfront.net/#/lessons/85266bc0-927a-4c24-b7b2-4dd34a0c1c6a"; },
      { name: "Vex 3 (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/vex3/index.html"; },
      { name: "Vex 4", url: "https://dfs3rzq44v6as.cloudfront.net/#/lessons/0f85cdc3-db02-4e24-8103-5190d86e63dc"; },
      { name: "Vex 4 (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/vex4/index.html"; },
      { name: "Vex 5", url: "https://dfs3rzq44v6as.cloudfront.net/#/lessons/7ce8df8b-a3f3-4887-bb7a-0c0b1f312bfb"; },
      { name: "Vex 6", url: "https://dfs3rzq44v6as.cloudfront.net/#/lessons/7ec8754e-65c7-45bf-90f3-b342c4e33cc4"; },
      { name: "Vex 6 (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/vex6/index.html"; },
      { name: "Vex 7", url: "https://dfs3rzq44v6as.cloudfront.net/#/lessons/a7abe0b4-e894-4799-89e8-b9806e7e33f6"; },
      { name: "Geometry dash ( Real )", url: "https://nowgg.lol/apps/robtop-games/1400/geometry-dash.html"; },
      { name: "Stumble guys ( Server 1 )", url: "https://www.stumbleguys.com/play"; },
      { name: "Stumble guys ( server 2 )", url: "https://nowgg.lol/apps/kitika-games/7999/stumble-guys.html"; },
      { name: "Cookie Clicker 2024 Method 2", url: "https://cookieclickerunblocked.github.io/games/cookie-clicker/index.html"; },
      { name: "Sandspiel Ripoff (Sandsaga)", url: "https://sandsaga.com" },
      { name: "BitLife (Server 2)", url: "https://geometryspot.help/bitlife/1.html"; },
      { name: "Bitlife (Server 3)", url: "https://d272xss3wq00xu.cloudfront.net/bitlife/index.html"; },
      { name: "Scrap Metal 3 (Server 2)", url: "https://d272xss3wq00xu.cloudfront.net/scrapmetal/index.html"; },
      { name: "GlacierOS", url: "https://learn.englishrealm.ca/"; },
      { name: "Rocket Bot Royale", url: "https://rocketbotroyale2.winterpixel.io" },
      { name: "Windows 10 Emulator", url: "https://dustinbrett.com/"; },
      { name: "AaronOS", url: "https://aaronos.dev/"; },
      { name: "Windows 96", url: "https://windows96.net/"; },
      { name: "Tinfoil Proxy & Games (About:blank cloak)", url: "https://assignment.jmwubg.com.au/"; },
      { name: "Soundboard", url: "https://sprintingsnail69.github.io/coolsounds/"; },
      { name: "Tortilla Minecraft Games", url: "https://dfs3rzq44v6as.cloudfront.net/#/lessons/ac150b87-7ba6-4b28-b18e-82d034bb521d"; },
      { name: "Shell Shockers", url: "https://shellshock.io/"; },
      { name: "Moto X3M", url: "https://ubg365.github.io/moto-x3m/play.html"; },
      { name: "Moto X3M 2", url: "https://slope-game.github.io/newgame/motox3m-2/"; },
      { name: "Moto X3M 3", url: "https://slope-game.github.io/newgame/motox3m-3/"; },
      { name: "Moto X3M Winter", url: "https://unblocked-games.s3.amazonaws.com/games/2024/gm/moto-x3m-winter/index.html"; },
      { name: "Moto X3M Pool Party", url: "https://unblocked-games.s3.amazonaws.com/games/2024/gm/moto-x3m-pool-party/index.html"; },
      { name: "Moto X3M Spooky Land", url: "https://unblocked-games.s3.amazonaws.com/games/2024/gm/moto-x3m-spooky-land/index.html"; },
      { name: "Death Run 3D", url: "https://ubg365.github.io/death-run-3d/"; },
      { name: "EggyCar", url: "https://ubg365.github.io/eggy-car/play.html"; },
      { name: "Stack", url: "https://ubg365.github.io/stack/"; },
      { name: "Super Mario 64", url: "https://downloads.retrostic.com/play.php?console_slug=n64&rom_url=https://downloads.retrostic.com/roms/Super%20Mario%2064%20%28U%29%20%5B%21%5D.zip"; },
      { name: "Asteroids ( 1986 )", url: "https://downloads.retrostic.com/play.php?console_slug=atari-7800&rom_url=https://downloads.retrostic.com/roms/Asteroids.zip"; },
      { name: "Asteroids ( 1979 )", url: "https://online-emulators.com/arcade/Asteroids_(rev_2)/asteroid"; },
      { name: "Bosconian", url: "https://www.retrogames.cc/embed/42458-bosconian-old-version.html"; },
      { name: "Doom", url: "https://bestdosgames.com/games/doom/play"; },
      { name: "Half-Life 1", url: "https://x8bitrain.github.io/webXash/"; },
      { name: "Tetris ( NES )", url: "https://downloads.retrostic.com/play.php?console_slug=nes&rom_url=https://downloads.retrostic.com/roms/Tetris%20%28USA%29.zip"; },
      { name: "EarthBound", url: "https://downloads.retrostic.com/play.php?console_slug=snes&rom_url=https://downloads.retrostic.com/roms/EarthBound%20%28USA%29.zip"; },
      { name: "Pac Man", url: "https://downloads.retrostic.com/play.php?console_slug=mame&rom_url=https://downloads.retrostic.com/roms/pacman.zip"; },
      { name: "New rally x", url: "https://www.retrogames.cc/embed/9312-new-rally-x.html"; },
      { name: "Super Mario Bros", url: "https://downloads.retrostic.com/play.php?console_slug=nes&rom_url=https://downloads.retrostic.com/roms/Super%20Mario%20Bros%20%28E%29.zip"; },
      { name: "Entertopia", url: "https://html.cafe/x92c3d890"; },
      { name: "Fake Hacking Prank", url: "https://geektyper.com/"; },
      { name: "test", url: "https://www.haleyschool.com/rammerhead-proxies/"; },  
    

      

        ];
        var container = document.createElement("div");
        container.setAttribute("id", "gamesContainer");
        document.body.appendChild(container);

        var lowestButtonPosition = 0; // Initialize with 0

        games.forEach(function(game) {
            var button = document.createElement("button");
            button.textContent = game.name;
            button.className = "button";
            button.onclick = function() {
                // Hide all buttons
                document.querySelectorAll('.button').forEach(function(element) {
                    element.style.display = "none";
                });

                document.getElementById("gamesContainer").innerHTML = '<object id="' + game.name.replace(/ /g, "") + 'Frame" type="text/html" data="' + game.url + '" style="width: 100%; height: 100vh;"></object>';
            };
            container.appendChild(button);

            // Update lowestButtonPosition
            var buttonPosition = button.offsetTop + button.offsetHeight;
            if (buttonPosition > lowestButtonPosition) {
                lowestButtonPosition = buttonPosition;
            }
        });

       

    }, 1000);
};

document.getElementById("launchApps").onclick = function() {
    document.body.innerHTML = "";
    setTimeout(function() {
        var apps = [
            { name: "Youtube ( no restrictions :D )", url: "https://www.edu-apps.org/lti_public_resources#/youtube/search"; },
            { name: "ChatGPT", url: "https://dfs3rzq44v6as.cloudfront.net/apps/27ca35c4-2604-4054-b790-b9436b00d06b/?usr-img=../../assets/img/user.webp"; },
            { name: "DeepAI", url: "https://deepai.org/"; },
            { name: "Appetize.io Android Phone", url: "https://appetize.io/embed/xc1w6f1krd589zhp22a0mgftyw?autoplay=false&debug=true&device=pixel4&embed=true&launchUrl=exp%3A%2F%2Fexp.host%2F%40snack%2Fsdk.46.0.0-ghV0%21Qgb8N&scale=65&screenOnly=false&xDocMsg=true&xdocMsg=true&params=%7B&osVersion=11.0&deviceColor=black"; },
            { name: "HTML Website Extractor", url: "https://codebeautify.org/source-code-viewer"; },
            { name: "Snapchat alt", url: "https://towhidkashem.github.io/snapchat-clone/"; },
            { name: "Virtual Machine 3 mins", url: "https://www.browserling.com/virtual-browser"; },
            { name: "Gauth Math Helper", url: "https://gauthmath.com" },
            { name: "ChatGPT With Sources (signup needed)", url: "https://popai.pro/"; },
            { name: "Ps2 Emulator", url: "https://playjs.purei.org/"; },
            { name: "Tv shows", url : "https://tvseries.click/"; },
            { name: "AI Images", url: "https://nuelink.com/tools/ai-image-generator"; },
            { name: "Global Image URL Generator", url: "https://html.cafe/x2a36ad24"},
            { name: "ChatGPT Alt", url: "https://talkai.info/"; },
            { name: "YT to mp3", url: "https://ezmp3.cc" },
            { name: "HTML Editor and Downloader", url: "https://html.cafe/x978c906e"; },
            { name: "Goku (movies)", url: "https://gokutv.pics/"; },
            { name: "TikTok alt", url: "https://proxitok.pussthecat.org/"; },
            { name: "Discord (for all u weird mf's out there)", url: "https://discord.com/"; },
            { name: "Better Youtube", url: "https://www.youtubeunblocked.live/"; },
            { name: "Instagram alt", url: "https://imginn.com/"; },
            { name: "Screen Recorder", url: "https://html.cafe/xf7a71dd8"; },
            { name: "Image URL Generator 2", url: "https://www.imghippo.com/"; },
            { name: "JMW AI Chat", url: "https://infinitetutoring.com.au/history/src/AI"; },
            { name: "Notepad in JS", url: "https://notepad.js.org/index.html"; },
            { name: "Proxy Link Creator", url: "https://censordodge.com" },
            { name: "Make a proxy link with Koyeb", url: "https://html.cafe/x7836dbf6"; },
            { name: "Bypass Ad Links", url: "https://bypass.city" },
            { name: "Message Encoder/Decoder (Credits to Dinguschan-owo on Github)", url: "https://encoder-decoder-nine.vercel.app/"; },
            { name: "EmulatorJS", url: "https://demo.emulatorjs.org/"; },
            { name: "Syntaxmeets", url: "https://syntaxmeets.vercel.app/"; },
            { name: "Totally works :333", url: "https://artclass.site/"; },
            { name: "Ruffle ( flash games emulator )", action: function() {
                document.body.innerHTML = '<object id="ruffleFrame" type="text/html" data="https://ruffle.rs/demo/"; style="width: 100%; height: 100vh;"></object>';
            }}
        ];

        var container = document.createElement("div");
        container.setAttribute("id", "appsContainer");
        document.body.appendChild(container);

        apps.forEach(function(app) {
            var button = document.createElement("button");
            button.textContent = app.name;
            button.className = "button";
            button.onclick = function() {
                if (app.url) {
                    document.body.innerHTML = '';
                    var messageText = document.createElement("p");
                    messageText.textContent = app.message;
                    messageText.style.color = "#fff";
                    messageText.style.marginTop = "20px";
                    document.body.appendChild(messageText);
                    document.body.innerHTML = '<object id="appsFrame" type="text/html" data="' + app.url + '" style="width: 100%; height: 100vh;"></object>';
                } else if (app.action) {
                    app.action();
                }
            };
            container.appendChild(button);
        });
    }, 1000);
};
// main menu button functions go here! :D
    document.getElementById("openInAboutBlank").onclick = function() {
      var newTab = window.open('about:blank', '_blank');
      newTab.document.open();
      newTab.document.write(document.documentElement.outerHTML);  // Embed the current HTML content
      newTab.document.close();
    };

    document.getElementById("continueButton").onclick = function() {
      document.querySelectorAll('.button, h1, #randomPhrase, #instructions').forEach(function(element) {
        element.classList.add('hidden');
      });
      document.body.innerHTML = '<object id="unblockerFrame" type="text/html" data="https://bing.com/"; style="width: 100%; height: 100vh;"></object>';
    };

  document.getElementById("ruffleButton").onclick = function() {
    document.body.innerHTML = '<object id="ruffleFrame" type="text/html" data="https://ruffle.rs/demo/"; style="width: 100%; height: 100vh;"></object>';
  };

document.getElementById("launchBrowser").onclick = function() {
  document.body.innerHTML = '<object id="browserFrame" type="text/html" data="https://html.cafe/x7148fe1f"; style="width: 100%; height: 100vh;"></object>';
};

document.getElementById("launchUltraviolet").onclick = function() {
  document.body.innerHTML = '<object id="UltravioletFrame" type="text/html" data="https://dfs3rzq44v6as.cloudfront.net/#/prxy"; style="width: 100%; height: 100vh;"></object>';
};

document.getElementById("downloads").onclick = function() {
  document.body.innerHTML = '<object id="browserFrame" type="text/html" data="https://html.cafe/xa841843c"; style="width: 100%; height: 100vh;"></object>';
};
document.getElementById("exploits").onclick = function() {
  document.body.innerHTML = '<object id="browserFrame" type="text/html" data="https://html.cafe/x7c581b64"; style="width: 100%; height: 100vh;"></object>';
};
    document.getElementById("links").onclick = function() { /*Change Link Here if you need too CODENAME: Omega*/
  document.body.innerHTML = '<object id="linksFrame" type="text/html" data="https://5.161.68.227/"; style="width: 100%; height: 100vh;"></object>';
};
 
// Button scripts no longer in use
// document.getElementById("ai").onclick = function() {
//   document.body.innerHTML = '<object id="aiFrame" type="text/html" data="https://html.cafe/x2029431d"; style="width: 100%; height: 100vh;"></object>';
// };
// document.getElementById("chat").onclick = function() {
//   document.body.innerHTML = '<object id="chatFrame" type="text/html" data="https://html.cafe/x1b3f9111"; style="width: 100%; height: 100vh;"></object>';
// };
// document.getElementById("lanschool").onclick = function() {
//   document.body.innerHTML = '<object id="browserFrame" type="text/html" data="https://html.cafe/x88b1c570"; style="width: 100%; height: 100vh;"></object>';
// };
// document.getElementById("newestver").onclick = function() {
//   document.body.innerHTML = '<object id="browserFrame" type="text/html" data="" style="width: 100%; height: 100vh;"></object>';
// };
// document.getElementById("changelog").onclick = function() {
//   document.body.innerHTML = '<object id="changelogFrame" type="text/html" data="https://html.cafe/x0ccfcfe7"; style="width: 100%; height: 100vh;"></object>';
// };
    </script>
  </body>
</html>