├── README.md ├── calculator.css ├── slopegame.html ├── cartoon.html ├── suriviv.html ├── wrestler.html ├── bookmarklet.js ├── calculator.html ├── script.js ├── exploit.css ├── exploits.html ├── games.css ├── games.html ├── style.css └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # orbitgames -------------------------------------------------------------------------------- /calculator.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #303030; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /slopegame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /cartoon.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /suriviv.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /wrestler.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /bookmarklet.js: -------------------------------------------------------------------------------- 1 | javascript:document.body.innerHTML = " 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- 1 | function Execute() { 2 | document.title = "Classes"; 3 | 4 | document.getElementById("change").innerHTML = "Tab Name changed"; 5 | } 6 | 7 | 8 | 9 | Execute() 10 | 11 | 12 | function Execute2() { 13 | document.title = "Google Docs"; 14 | 15 | document.getElementById("change").innerHTML = "Tab Name changed"; 16 | } 17 | 18 | 19 | 20 | Execute2() 21 | 22 | function inspect() { 23 | document.body.contentEditable = true; void 0; 24 | } 25 | 26 | 27 | inspect() 28 | -------------------------------------------------------------------------------- /exploit.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #303030; 3 | } 4 | 5 | .gamesSection { 6 | box-shadow: 0px 0px 0px 2px #9fb4f2; 7 | background:linear-gradient(to bottom, #7892c2 5%, #8bb1e0 100%); 8 | background-color:#7892c2; 9 | border-radius:10px; 10 | border:1px solid #4e6096; 11 | display:inline-block; 12 | cursor:pointer; 13 | color:#ffffff; 14 | font-family:Verdana; 15 | font-size:19px; 16 | font-weight:bold; 17 | padding:12px 37px; 18 | text-decoration:none; 19 | text-shadow:0px 1px 0px #283966; 20 | } 21 | 22 | h1 { 23 | font-family:Verdana; 24 | } 25 | -------------------------------------------------------------------------------- /exploits.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Exploits - Orbit 7 | 8 | 9 | 10 |

Exploits

11 | 12 |
13 | 14 | Unblocked Youtube 15 |
16 | 17 | 18 | Unblocked Disney+ 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /games.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #303030; 3 | } 4 | 5 | h1 { 6 | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 7 | } 8 | 9 | 10 | 11 | .gamesSection { 12 | box-shadow: 0px 0px 0px 2px #9fb4f2; 13 | background:linear-gradient(to bottom, #7892c2 5%, #8bb1e0 100%); 14 | background-color:#7892c2; 15 | border-radius:10px; 16 | border:1px solid #4e6096; 17 | display:inline-block; 18 | cursor:pointer; 19 | color:#ffffff; 20 | font-family:Verdana; 21 | font-size:19px; 22 | font-weight:bold; 23 | padding:12px 37px; 24 | text-decoration:none; 25 | text-shadow:0px 1px 0px #283966; 26 | } 27 | 28 | .holder{ 29 | text-align: center; 30 | border: 5px solid #555; 31 | 32 | 33 | } 34 | -------------------------------------------------------------------------------- /games.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Games - Orbit 8 | 9 | 10 | 11 | 12 |
13 |

Games

14 |
15 | 16 |
17 | 18 | Slope 19 |
20 | 21 |
22 | 23 | Surviv.io 24 |
25 | 26 |
27 | Cartoon Strike 28 |
29 | 30 |
31 | Octagon 32 |
33 |
34 | 35 | Paper.io 36 |
37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #303030; 3 | } 4 | 5 | .gamesSection { 6 | box-shadow: 0px 0px 0px 2px #9fb4f2; 7 | background:linear-gradient(to bottom, #7892c2 5%, #8bb1e0 100%); 8 | background-color:#7892c2; 9 | border-radius:10px; 10 | border:1px solid #4e6096; 11 | display:inline-block; 12 | cursor:pointer; 13 | color:#ffffff; 14 | font-family:Verdana; 15 | font-size:19px; 16 | font-weight:bold; 17 | padding:12px 37px; 18 | text-decoration:none; 19 | text-shadow:0px 1px 0px #283966; 20 | } 21 | 22 | ul { 23 | list-style-type: none; 24 | margin: 0; 25 | padding: 0; 26 | overflow: hidden; 27 | background-color: purple; 28 | background-image: linear-gradient(to right, blue , purple); 29 | opacity: 0.5 30 | } 31 | 32 | li { 33 | float: left; 34 | } 35 | 36 | li a { 37 | display: block; 38 | color: white; 39 | text-align: center; 40 | padding: 14px 16px; 41 | text-decoration: none; 42 | } 43 | 44 | footer { 45 | font-family:Verdana; 46 | color: #7892c2; 47 | } 48 | 49 | 50 | .lined { 51 | border-top: 1px solid #333; 52 | padding-top: 0.15em; 53 | padding-bottom: 0.15em; 54 | } 55 | 56 | 57 | p { 58 | font-family: Verdana; 59 | font-weight: 200; 60 | font-size: 1.7em; 61 | line-height: 1.7em; 62 | padding-bottom: 1.5em; 63 | } 64 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Orbit Hub 6 | 7 | 9 | 10 | 11 | 12 |
13 |
14 | 15 | 16 | 31 | 32 | 33 | 34 | 35 | 36 | 37 |
38 | 39 |

Change Tab Name (won't work if using orbit bookmark):

40 | 41 | 42 | 43 |

44 | 45 |

Inspect Element (Refresh page to close it):

46 | 47 |
48 |
49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | --------------------------------------------------------------------------------