Thunder Client for Bloxd.io

this is cool! Get Custom HealthBar And More!!!

  1. // ==UserScript==
  2. // @name Thunder Client for Bloxd.io
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description this is cool! Get Custom HealthBar And More!!!
  6. // @author DragoIce
  7. // @match https://bloxd.io/
  8. // @icon https://th.bing.com/th/id/OIP.EjZwhg9eyxvphEiqEPNdRwHaFf?rs=1&pid=ImgDetMain
  9. // @grant GM_addStyle
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. setInterval(function() {
  14. 'use strict';
  15.  
  16. function name () {
  17. // document.getElementsByClassName("PlayerNameInfoNameClickable")[0].innerHTML="BloxdMaster_"
  18. }
  19. var health1 = document.getElementsByClassName("BottomScreenStatBar");
  20. health1[0].style.backgroundColor = "rgba(24,29,204,0.6)";
  21. document.title = "❄️⚡Bloxd.io⚡❄️";
  22. health1[0].style.boxShadow = "0 0.4px rgb(68,9,125)";
  23. var health2 = document.getElementsByClassName("BottomScreenStatBarBackground");
  24. health2[0].style.backgroundColor = "rgba(50,222,244,0.8)";
  25. var background = document.getElementsByClassName("Background");
  26. document.title = "Bloxd.io";
  27. const maintext = document.querySelector('.Title.FullyFancyText');
  28. background[0].src = "https://th.bing.com/th/id/OIP.7Hq_kCF_t6P0hZtLaJRgPQHaEK?rs=1&pid=ImgDetMain";
  29. // maintext.style.fontFamily = "Reglisse-Fill, serif";
  30. // maintext.style.webkitTextStroke = "none";
  31. document.querySelector('.Title.FullyFancyText').textContent = "Bloxd.io";
  32. let names = document.getElementsByClassName("AvailableGameText");
  33. let imgs = document.getElementsByClassName("AvailableGameImg")
  34. let imgedits = document.getElementsByClassName("AvailableGame");
  35. (function() {
  36. 'use strict';
  37. const fontLink = document.createElement('link');
  38. fontLink.href = 'https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap';
  39. fontLink.rel = 'stylesheet';
  40.  
  41. })
  42.  
  43. document.querySelectorAll('.AvailableGame').forEach(item => {
  44. item.style.border = "none";
  45. })
  46. names[0].textContent = "Survival";
  47. names[0].style.textShadow = "none";
  48. // imgs[0].src = "https://i.imgur.com/G9bUnQO.png";
  49. names[1].textContent = "Peaceful";
  50. names[1].style.textShadow = "none";
  51. // imgs[1].src = "https://i.imgur.com/xC9jltf.png";
  52. names[2].textContent = "Creative";
  53. names[2].style.textShadow = "none";
  54. // imgs[2].src = "https://i.imgur.com/BQEsCog.png";
  55. names[3].textContent = "Bedwars Squads";
  56. names[3].style.textShadow = "none";
  57. // imgs[3].src = "https://i.imgur.com/TaF7UmB.png";
  58. names[4].textContent = "Bedwars Duos";
  59. names[4].style.textShadow = "none";
  60. // imgs[4].src = "https://i.imgur.com/QqM1WwQ.png";
  61. names[5].textContent = "Skywars";
  62. names[5].style.textShadow = "none";
  63. // imgs[5].src = "https://i.imgur.com/1EvgKmL.png";
  64. names[6].textContent = "OneBlock";
  65. names[6].style.textShadow = "none";
  66. // imgs[6].src = "https://i.imgur.com/aXstUVN.png";
  67. names[7].textContent = "GreenVille";
  68. names[7].style.textShadow = "none";
  69. // imgs[7].src = "https://i.imgur.com/YQsbnFc.png";
  70. names[8].textContent = "Cube Warfare";
  71. names[8].style.textShadow = "none";
  72. // imgs[8].src = "https://i.imgur.com/heFKXJ6.png";
  73. names[9].textContent = "EvilTower";
  74. names[9].style.textShadow = "none";
  75. // imgs[9].src = "https://i.imgur.com/Gpm1cvW.png";
  76. names[10].textContent = "DoodleCube";
  77. names[10].style.textShadow = "none";
  78. // imgs[10].src = "https://i.imgur.com/hjUAKVI.png";
  79. names[11].textContent = "BloxdHop";
  80. names[11].style.textShadow = "none";
  81. // imgs[11].src = "https://i.imgur.com/MPRY80l.png";
  82. names[12].textContent = "Hide & Seek";
  83. names[12].style.textShadow = "none";
  84. // imgs[12].src = "https://i.imgur.com/UXVWqA5.png";
  85. names[14].textContent = "Plots";
  86. // imgs[14].src = "https://i.imgur.com/mMwt42i.png";
  87. names[14].style.textShadow = "none";
  88. names[16].textContent = "Worlds";
  89. // imgs[16].src = "https://i.imgur.com/TWCWlyP.png";
  90. names[16].style.textShadow = "none";
  91.  
  92. imgedits[0].style.border = "none";
  93. imgedits[0].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  94. imgedits[1].style.border = "none";
  95. imgedits[1].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  96. imgedits[2].style.border = "none";
  97. imgedits[2].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  98. imgedits[3].style.border = "none";
  99. imgedits[3].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  100. imgedits[4].style.border = "none";
  101. imgedits[4].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  102. imgedits[5].style.border = "none";
  103. imgedits[5].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  104. imgedits[6].style.border = "none";
  105. imgedits[6].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  106. imgedits[7].style.border = "none";
  107. imgedits[7].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  108. imgedits[8].style.border = "none";
  109. imgedits[8].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  110. imgedits[9].style.border = "none";
  111. imgedits[9].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  112. imgedits[10].style.border = "none";
  113. imgedits[10].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  114. imgedits[11].style.border = "none";
  115. imgedits[11].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  116. imgedits[12].style.border = "none";
  117. imgedits[12].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  118. imgedits[13].style.border = "none";
  119. imgedits[13].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  120. imgedits[14].style.border = "none";
  121. imgedits[14].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  122. imgedits[15].style.border = "none";
  123. imgedits[15].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  124.  
  125. },100);
  126.  
  127. //Ad Blocker
  128. document.getElementsByClassName('partnersAndCredits SmallTextLight')[0].remove();
  129. document.getElementsByClassName('SmallTextLight')[0].remove();
  130. document.getElementsByClassName('AdContainer')[0].remove();
  131.  
  132. // Hotbar
  133.  
  134. (function() {
  135. 'use strict';
  136.  
  137. setInterval(function() {
  138. const hotbarslots = document.querySelectorAll(".item");
  139. const selectedslot = document.querySelectorAll(".SelectedItem");
  140. if (hotbarslots) {
  141. hotbarslots.forEach(function(hotbar) {
  142. hotbar.style.borderColor = "rgb(0,0,46)";
  143. hotbar.style.borderRadius = "5px";
  144. hotbar.style.backgroundColor = "rgb(35,33,112)";
  145. hotbar.style.outline = "transparent"
  146. });
  147. }
  148. if (selectedslot) {
  149. selectedslot.forEach(function(slot) {
  150. slot.style.backgroundColor = "rgb(35,43,150)";
  151. slot.style.borderColor = "rgb(0,0,46)";
  152. slot.style.outline = "transparent";
  153. });
  154. }
  155. }, 1);
  156. })();