Greasy Fork is available in English.

Swift Client for bloxd.io ( updated )

Arthur ( the nerd who is the head dev of the game ) has disabled all user scripts and extentions because people were using it to hack other people's accounts and i got a few script dms on discord too ( it mostly happens via discord ) so if you use this you're going to get a 24 hour ban

  1. // ==UserScript==
  2. // @name Swift Client for bloxd.io ( updated )
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Arthur ( the nerd who is the head dev of the game ) has disabled all user scripts and extentions because people were using it to hack other people's accounts and i got a few script dms on discord too ( it mostly happens via discord ) so if you use this you're going to get a 24 hour ban
  6. // @author Swift,Blueify and two other nerds
  7. // @match https://bloxd.io/
  8. // @icon https://cdn.discordapp.com/icons/1164634915330072609/6918102e1281bfeb58b66687c2520ab0.webp?size=240
  9. // @grant GM_addStyle
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. setInterval(function() {
  14. 'use strict';
  15. document.title = "Swift Client";
  16. const maintext = document.querySelector('.Title.FullyFancyText');
  17. maintext.style.fontFamily = "Reglisse-Fill, serif";
  18. maintext.style.textShadow = "none";
  19. maintext.style.webkitTextStroke = "none";
  20.  
  21. document.querySelector('.Title.FullyFancyText').textContent = "Swift Client";
  22. let background = document.getElementsByClassName("Background");
  23. background[0].src = "https://i.imgur.com/Vg1T5ap.png";
  24. let names = document.getElementsByClassName("AvailableGameText");
  25. let imgs = document.getElementsByClassName("AvailableGameImg")
  26. let imgedits = document.getElementsByClassName("AvailableGame");
  27. (function() {
  28. 'use strict';
  29. const fontLink = document.createElement('link');
  30. fontLink.href = 'https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap';
  31. fontLink.rel = 'stylesheet';
  32.  
  33. })
  34.  
  35. // Crosshair
  36. setInterval(function() {
  37. const crosshair = document.querySelector(".CrossHair");
  38. if (crosshair) {
  39. crosshair.textContent = "⨀";
  40. crosshair.style.width = "30px";
  41. crosshair.style.height = "30px";
  42. }
  43. }, 1000);
  44.  
  45. document.querySelectorAll('.AvailableGame').forEach(item => {
  46. item.style.border = "none";
  47. })
  48.  
  49.  
  50. names[0].textContent = "Survival";
  51. names[0].style.textShadow = "none";
  52. imgs[0].src = "https://i.imgur.com/G9bUnQO.png";
  53. names[1].textContent = "Peaceful";
  54. names[1].style.textShadow = "none";
  55. imgs[1].src = "https://i.imgur.com/xC9jltf.png";
  56. names[2].textContent = "Creative";
  57. names[2].style.textShadow = "none";
  58. imgs[2].src = "https://i.imgur.com/BQEsCog.png";
  59. names[3].textContent = "Bedwars Squads";
  60. names[3].style.textShadow = "none";
  61. imgs[3].src = "https://i.imgur.com/TaF7UmB.png";
  62. names[4].textContent = "Bedwars Duos";
  63. names[4].style.textShadow = "none";
  64. imgs[4].src = "https://i.imgur.com/QqM1WwQ.png";
  65. names[5].textContent = "Skywars";
  66. names[5].style.textShadow = "none";
  67. imgs[5].src = "https://i.imgur.com/1EvgKmL.png";
  68. names[6].textContent = "Oneblock";
  69. names[6].style.textShadow = "none";
  70. imgs[6].src = "https://i.imgur.com/aXstUVN.png";
  71. names[7].textContent = "greenville";
  72. names[7].style.textShadow = "none";
  73. imgs[7].src = "https://i.imgur.com/YQsbnFc.png";
  74. names[8].textContent = "Lego Fortnite";
  75. names[8].style.textShadow = "none";
  76. imgs[8].src = "https://i.imgur.com/heFKXJ6.png";
  77. names[9].textContent = "Eviltower";
  78. names[9].style.textShadow = "none";
  79. imgs[9].src = "https://i.imgur.com/Gpm1cvW.png";
  80. names[10].textContent = "Doodlecube";
  81. names[10].style.textShadow = "none";
  82. imgs[10].src = "https://i.imgur.com/hjUAKVI.png";
  83. names[11].textContent = "BloxdHop";
  84. names[11].style.textShadow = "none";
  85. imgs[11].src = "https://i.imgur.com/MPRY80l.png";
  86. names[12].textContent = "Hide & Seek";
  87. names[12].style.textShadow = "none";
  88. imgs[12].src = "https://i.imgur.com/UXVWqA5.png";
  89. names[14].textContent = "Plots(superflat)";
  90. imgs[14].src = "https://i.imgur.com/mMwt42i.png";
  91. names[14].style.textShadow = "none";
  92. names[16].textContent = "Worlds";
  93. imgs[16].src = "https://i.imgur.com/TWCWlyP.png";
  94. names[16].style.textShadow = "none";
  95.  
  96. imgedits[0].style.border = "none";
  97. imgedits[0].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  98. imgedits[1].style.border = "none";
  99. imgedits[1].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  100. imgedits[2].style.border = "none";
  101. imgedits[2].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  102. imgedits[3].style.border = "none";
  103. imgedits[3].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  104. imgedits[4].style.border = "none";
  105. imgedits[4].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  106. imgedits[5].style.border = "none";
  107. imgedits[5].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  108. imgedits[6].style.border = "none";
  109. imgedits[6].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  110. imgedits[7].style.border = "none";
  111. imgedits[7].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  112. imgedits[8].style.border = "none";
  113. imgedits[8].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  114. imgedits[9].style.border = "none";
  115. imgedits[9].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  116. imgedits[10].style.border = "none";
  117. imgedits[10].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  118. imgedits[11].style.border = "none";
  119. imgedits[11].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  120. imgedits[12].style.border = "none";
  121. imgedits[12].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  122. imgedits[13].style.border = "none";
  123. imgedits[13].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  124. imgedits[14].style.border = "none";
  125. imgedits[14].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  126. imgedits[15].style.border = "none";
  127. imgedits[15].style.boxShadow = "0px 10px 20px rgba(0, 0, 0, 0.3)";
  128.  
  129. },100);
  130.  
  131. //Ad Blocker
  132. document.getElementsByClassName('partnersAndCredits SmallTextLight')[0].remove();
  133. document.getElementsByClassName('SmallTextLight')[0].remove();
  134. document.getElementsByClassName('AdContainer')[0].remove();
  135.  
  136. (function() {
  137. 'use strict';
  138. const fontLink = document.createElement('link');
  139. fontLink.href = 'https://db.onlinewebfonts.com/c/68c9057f4e4dc415b2648f88526aeea7?family=Reglisse-Fill';
  140. fontLink.rel = 'stylesheet';
  141.  
  142. const text = document.createElement('div');
  143. text.style.position = "fixed";
  144. text.style.color = "#fff";
  145. text.textContent = "Swift Network";
  146. text.style.top = "85%";
  147. text.style.left = "50%";;
  148. text.style.zIndex = "10000";
  149. text.style.fontWeight = "bold";
  150. text.style.borderRadius = "25px";
  151. text.style.fontSize = "18px";
  152. text.style.height = "6vh";
  153. text.style.display = "flex";
  154. text.style.paddingTop = "0.1rem";
  155. text.style.justifyContent = "center";
  156. text.style.width = "10vw";
  157. text.style.height = "5vh";
  158. text.style.transform = "translateX(-50%)";
  159. text.style.textAlign = "center";
  160. text.style.lineHeight = "50px";
  161. text.onclick = "opener()"
  162. text.style.boxShadow = "rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px";
  163. text.style.backgroundColor = "rgba(0,0,0,.4";
  164. text.style.cursor = "pointer";
  165.  
  166. document.head.appendChild(fontLink);
  167. document.body.appendChild(text);
  168. })();
  169.  
  170. // Hotbar
  171. (function() {
  172. 'use strict';
  173.  
  174. setInterval(function() {
  175. const hotbarslots = document.querySelectorAll(".item");
  176. const selectedslot = document.querySelectorAll(".SelectedItem");
  177. if (hotbarslots) {
  178. hotbarslots.forEach(function(hotbar) {
  179. hotbar.style.borderRadius = "8px";
  180. hotbar.style.borderColor = "#303a5900";
  181. hotbar.style.backgroundColor = "#D13D2E";
  182. hotbar.style.boxShadow = "inset -2px -2px 10px 0px rgb(133, 0, 0), inset 0.3px 0.3px 5px 0px rgb(255, 255, 255)"
  183. hotbar.style.outline = "transparent"
  184. });
  185. }
  186. if (selectedslot) {
  187. selectedslot.forEach(function(slot) {
  188. slot.style.backgroundColor = "#c9991c";
  189. slot.style.boxShadow = "inset -2px -2px 10px 0px rgb(210, 183, 45), inset 0.3px 0.3px 5px 0px rgb(255, 255, 255)";
  190. slot.style.borderColor = "#b88c1a";
  191. slot.style.outline = "transparent";
  192. });
  193. }
  194. }, 1);
  195. })();