Advertisement
NewBestPastebins

🔥Chrome Dinosaur Mod Menu!🔥

Jan 4th, 2023 (edited)
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. //I made this hack menu for school chrome books lol It's for the chrome dinosaur game (The game you get when you don't have wifi), and it took a few hours to make :D Hope ya'll enjoy it :D
  2. alert('🛠STARTING SCRIPT⚙️')
  3. var button = document.createElement("Button");
  4. button.innerHTML = "👻Invincible👻 ";
  5. button.style = "top:5px;left:5px;position:absolute;z-index:99999;padding:15px;";
  6. document.body.appendChild(button);
  7. button.onclick = function(){Runner.instance_.gameOver = function(){};};
  8. var button = document.createElement("Button");
  9. button.innerHTML = "🚗💨Set Runner Speed To 100🚗💨";
  10. button.style = "top:60px;left:5px;position:absolute;z-index:99999;padding:15px;";
  11. document.body.appendChild(button);
  12. button.onclick = function(){
  13. Runner.instance_.setSpeed(100);};
  14. var button = document.createElement("Button");
  15. button.innerHTML = "🚗💨Set Runner Speed To 1,000🚗💨";
  16. button.style = "top:120px;left:5px;position:absolute;z-index:99999;padding:15px;";
  17. document.body.appendChild(button);
  18. button.onclick = function(){
  19. Runner.instance_.setSpeed(1000);};
  20. var button = document.createElement("Button");
  21. button.innerHTML = "🚗💨Set Runner Speed To 10,000🚗💨";
  22. button.style = "top:180px;left:5px;position:absolute;z-index:99999;padding:15px;";
  23. document.body.appendChild(button);
  24. button.onclick = function(){
  25. Runner.instance_.setSpeed(10000);};
  26. var button = document.createElement("Button");
  27. button.innerHTML = "🚗💨Set Runner Speed To 100,000🚗💨";
  28. button.style = "top:240px;left:5px;position:absolute;z-index:99999;padding:15px;";
  29. document.body.appendChild(button);
  30. button.onclick = function(){
  31. Runner.instance_.setSpeed(100000);};
  32. var button = document.createElement("Button");
  33. button.innerHTML = "💯Set Score To 10,000💯";
  34. button.style = "top:300px;left:5px;position:absolute;z-index:99999;padding:15px;";
  35. document.body.appendChild(button);
  36. button.onclick = function(){
  37. Runner.instance_.distanceRan = 10000 / Runner.instance_.distanceMeter.config.COEFFICIENT};
  38. var button = document.createElement("Button");
  39. button.innerHTML = "💯Set Score To 50,000💯";
  40. button.style = "top:360px;left:5px;position:absolute;z-index:99999;padding:15px;";
  41. document.body.appendChild(button);
  42. button.onclick = function(){
  43. Runner.instance_.distanceRan = 50000 / Runner.instance_.distanceMeter.config.COEFFICIENT};
  44. var button = document.createElement("Button");
  45. button.innerHTML = "💯Set Score To 100,000💯";
  46. button.style = "top:420px;left:5px;position:absolute;z-index:99999;padding:15px;";
  47. document.body.appendChild(button);
  48. button.onclick = function(){
  49. Runner.instance_.distanceRan = 100000 / Runner.instance_.distanceMeter.config.COEFFICIENT};
  50. var button = document.createElement("Button");
  51. button.innerHTML = "💯Set Score To 250,000💯";
  52. button.style = "top:480px;left:5px;position:absolute;z-index:99999;padding:15px;";
  53. document.body.appendChild(button);
  54. button.onclick = function(){
  55. Runner.instance_.distanceRan = 250000 / Runner.instance_.distanceMeter.config.COEFFICIENT};
  56. var button = document.createElement("Button");
  57. button.innerHTML = "💯Set Score To 500,000💯";
  58. button.style = "top:540px;left:5px;position:absolute;z-index:99999;padding:15px;";
  59. document.body.appendChild(button);
  60. button.onclick = function(){
  61. Runner.instance_.distanceRan = 500000 / Runner.instance_.distanceMeter.config.COEFFICIENT};
  62. var button = document.createElement("Button");
  63. button.innerHTML = "🤩MAX SCORE🚀 (💯Make sure to be right infront of a 🌵cactus🌵 before clicking💯)";
  64. button.style = "top:5px;right:5px;position:absolute;z-index:99999;padding:15px;";
  65. document.body.appendChild(button);
  66. button.onclick = function(){
  67. Runner.instance_.setSpeed(1);
  68. Runner.instance_.distanceRan = 999998 / Runner.instance_.distanceMeter.config.COEFFICIENT};
  69. var button = document.createElement("Button");
  70. button.innerHTML = "???";
  71. button.style = "top:100px;left:850px;position:absolute;z-index:99999;padding:15px;";
  72. document.body.appendChild(button);
  73. button.onclick = function(){
  74. Runner.instance_.setSpeed(1);
  75. Runner.instance_.distanceRan = 696969696969696969696969696969696969696969696969696969696969 / Runner.instance_.distanceMeter.config.COEFFICIENT};
  76. var button = document.createElement("Button");
  77. button.innerHTML = "!?!";
  78. button.style = "top:100px;left:790px;position:absolute;z-index:99999;padding:15px;";
  79. document.body.appendChild(button);
  80. button.onclick = function(){Runner.instance_.setSpeed(696969696969696969696969696969669696969696669);};
  81.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement