Auto Walk[Key 1], Jump[Key 2], Dodge[Key 3], Melee[Key 4] Mod For Shell Shockers

Combined auto-actions script triggers different actions (auto-walk, auto-jump, auto-dodge, auto-whisk) based on key presses (1, 2, 3, 4). Each action toggles on/off independently.

სკრიპტის ინსტალაცია?
ავტორის შემოთავაზებული სკრიპტი

შეიძლება მოგეწონოს 🔥 TigerTech Client for Shell Shockers Aimbot, CrossHair Mod, Auto-Move, Ping Monitor and MOAR!🔥.

სკრიპტის ინსტალაცია
  1. // ==UserScript==
  2. // @name Auto Walk[Key 1], Jump[Key 2], Dodge[Key 3], Melee[Key 4] Mod For Shell Shockers
  3. // @namespace
  4. // @description Combined auto-actions script triggers different actions (auto-walk, auto-jump, auto-dodge, auto-whisk) based on key presses (1, 2, 3, 4). Each action toggles on/off independently.
  5. // @match *://algebra.best/*
  6. // @match *://algebra.vip/*
  7. // @match *://biologyclass.club/*
  8. // @match *://deadlyegg.com/*
  9. // @match *://deathegg.world/*
  10. // @match *://eggcombat.com/*
  11. // @match *://egg.dance/*
  12. // @match *://eggfacts.fun/*
  13. // @match *://egghead.institute/*
  14. // @match *://eggisthenewblack.com/*
  15. // @match *://eggsarecool.com/*
  16. // @match *://geometry.best/*
  17. // @match *://geometry.monster/*
  18. // @match *://geometry.pw/*
  19. // @match *://geometry.report/*
  20. // @match *://hardboiled.life/*
  21. // @match *://hardshell.life/*
  22. // @match *://humanorganising.org/*
  23. // @match *://mathdrills.info/*
  24. // @match *://mathfun.rocks/*
  25. // @match *://mathgames.world/*
  26. // @match *://math.international/*
  27. // @match *://mathlete.fun/*
  28. // @match *://mathlete.pro/*
  29. // @match *://overeasy.club/*
  30. // @match *://scrambled.best/*
  31. // @match *://scrambled.tech/*
  32. // @match *://scrambled.today/*
  33. // @match *://scrambled.us/*
  34. // @match *://scrambled.world/*
  35. // @match *://shellshockers.club/*
  36. // @match *://shellshockers.site/*
  37. // @match *://shellshockers.us/*
  38. // @match *://shellshockers.world/*
  39. // @match *://softboiled.club/*
  40. // @match *://violentegg.club/*
  41. // @match *://violentegg.fun/*
  42. // @match *://yolk.best/*
  43. // @match *://yolk.life/*
  44. // @match *://yolk.rocks/*
  45. // @match *://yolk.tech/*
  46. // @match *://shellshock.io/*
  47. // @match *://zygote.cafe/*
  48. // @discord https://discord.gg/Szy5vGhWwQ/*
  49. // @version 4.0.0
  50. // @grant none
  51. // @icon https://t3.ftcdn.net/jpg/06/21/52/32/240_F_621523283_93JNEJ1v1X2OjTRnN31vNUVIwivyyOx9.jpg
  52. // @run-at document-start
  53. // @require https://cdn.jsdelivr.net/npm/babylonjs@3.3.0/babylon.min.js
  54. // @namespace https://greasyfork.org/users/1228152
  55. // ==/UserScript==
  56.  
  57. (function() {
  58. const addScript = () => {
  59. document.title = ' ঔৣƗNĐƗȺ»Official Mod in Use!';setTimeout(function(){
  60. document.getElementById("logo").innerHTML = "<img src='https://t3.ftcdn.net/jpg/06/21/52/32/240_F_621523283_93JNEJ1v1X2OjTRnN31vNUVIwivyyOx9.jpg'>";
  61. }, 4000);
  62. let style = document.createElement('link');
  63. style.rel = 'stylesheet';
  64. style.href = 'https://t3.ftcdn.net/jpg/06/21/52/32/240_F_621523283_93JNEJ1v1X2OjTRnN31vNUVIwivyyOx9.jpg';
  65. document.head.appendChild(style);
  66. };
  67. document.body ? addScript() : document.addEventListener("DOMContentLoaded", e => addScript());
  68. })();
  69.  
  70. (function() {
  71. setTimeout(()=>{document.getElementById("chatOut").style.userSelect="text"},5e3);
  72. })();
  73.  
  74. (function() {
  75. 'use strict';
  76.  
  77. let autoDodgeInterval;
  78. const keySequence = ['a', 'w', 'd', ' '];
  79. let currentIndex = 0;
  80.  
  81. function triggerKey(key) {
  82. document.dispatchEvent(new KeyboardEvent('keydown', {'key': key}));
  83. setTimeout(() => {
  84. document.dispatchEvent(new KeyboardEvent('keyup', {'key': key}));
  85. }, 500);
  86. }
  87.  
  88. function autoDodge() {
  89. triggerKey(keySequence[currentIndex]);
  90. currentIndex = (currentIndex + 1) % keySequence.length;
  91. }
  92.  
  93. let autoWhiskInterval;
  94.  
  95. function autoWhisk() {
  96. document.dispatchEvent(new KeyboardEvent('keydown', {'key': 'f'})); // W key
  97. setTimeout(() => {
  98. document.dispatchEvent(new KeyboardEvent('keyup', {'key': 'f'}));
  99. }, 100);
  100. }
  101.  
  102. let autoJumpInterval;
  103.  
  104. function autoJump() {
  105. document.dispatchEvent(new KeyboardEvent('keydown', {'key': ' '})); // W key
  106. setTimeout(() => {
  107. document.dispatchEvent(new KeyboardEvent('keyup', {'key': ' '}));
  108. }, 100); // Adjust duration as needed
  109. }
  110.  
  111. let autoWalkInterval;
  112.  
  113. function autoWalk() {
  114. document.dispatchEvent(new KeyboardEvent('keydown', {'key': 'w'})); // W key
  115. setTimeout(() => {
  116. document.dispatchEvent(new KeyboardEvent('keyup', {'key': 'w'}));
  117. }, 100);
  118. }
  119.  
  120. document.addEventListener('keydown', function(event) {
  121. if (event.key === '1' && !event.ctrlKey && !event.altKey && !event.shiftKey && !event.metaKey) {
  122. if (!autoWalkInterval) {
  123. autoWalkInterval = setInterval(autoWalk, 200);
  124. } else {
  125. clearInterval(autoWalkInterval);
  126. autoWalkInterval = null;
  127. }
  128. } else if (event.key === '2' && !event.ctrlKey && !event.altKey && !event.shiftKey && !event.metaKey) {
  129. if (!autoJumpInterval) {
  130. autoJumpInterval = setInterval(autoJump, 200);
  131. } else {
  132. clearInterval(autoJumpInterval);
  133. autoJumpInterval = null;
  134. }
  135. } else if (event.key === '3' && !event.ctrlKey && !event.altKey && !event.shiftKey && !event.metaKey) {
  136. if (!autoDodgeInterval) {
  137. autoDodgeInterval = setInterval(autoDodge, 500);
  138. } else {
  139. clearInterval(autoDodgeInterval);
  140. autoDodgeInterval = null;
  141. }
  142. } else if (event.key === '4' && !event.ctrlKey && !event.altKey && !event.shiftKey && !event.metaKey) {
  143. if (!autoWhiskInterval) {
  144. autoWhiskInterval = setInterval(autoWhisk, 200);
  145. } else {
  146. clearInterval(autoWhiskInterval);
  147. autoWhiskInterval = null;
  148. }
  149. }
  150. });
  151. })();