Advertisement
DaCurse

WEBSITE DESTROYER

Jul 2nd, 2017
1,437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.  
  3. ! WARNING !
  4. THIS SCRIPT CONTAINS FLASHING COLORS AND FAST MOVING OBJECTS
  5. ! WARNING !
  6.  
  7. ! DISCLAIMER !
  8. MIGHT NOT WORK IN ALL WEBSITES.
  9. DOESN'T WORK IN: GOOGLE AND YOUTUBE
  10. ! DISCLAIMER !
  11.  
  12. INSTRUCTIONS:
  13. 1. PRESS CTRL SHIFT J IN ANY WEBSITE
  14. 2. IN THE CONSOLE BOX THAT HAVE COME UP, THERE IS A LINE TO TYPE IN, PASTE THE CODE INSIDE
  15. 3. PRESS ENTER AND PRESS THE BUTTON WHENEVER, ENJOY
  16. */
  17.  
  18. // THE CODE
  19.  
  20. if(typeof jQuery == "undefined") {
  21.     let s = document.createElement('script');
  22.     s.src = '//code.jquery.com/jquery-3.2.1.min.js';
  23.     document.head.appendChild(s);
  24. }
  25.  
  26. let xhr = new XMLHttpRequest;
  27. xhr.open('GET', 'https://vindows.iserv.ml/wd/?css', true);
  28. xhr.onreadystatechange = function() {
  29.     if(xhr.readyState == 4 || xhr.readyState == 1) {
  30.         $('head').append(xhr.responseText);
  31.     }
  32. }
  33. xhr.send('null');
  34. $('body').append('<div class="pulse-button" style="position:fixed;top:50%;left:50%;transform: translate(-50%, -50%);z-index:9999999999;">DESTROY</div>');
  35. $('.pulse-button').click(function() {
  36.     $(this).remove();
  37.     let arr = Array.prototype.slice.call(document.body.children);
  38.     setInterval(function() {arr.some(function(e) {
  39.         $(e).css({position: 'absolute', top: String(Math.random() * 100) + '%', left: String(Math.random() * 100) + '%', 'background-color': 'rgb(' + Math.floor(Math.random()*255) + ', '  + Math.floor(Math.random()*255)   + ', ' +  + Math.floor(Math.random()*255) + ')'});
  40.         $(document.body).css('background-color', 'rgb(' + Math.floor(Math.random()*255) + ', '  + Math.floor(Math.random()*255)   + ', ' +  + Math.floor(Math.random()*255) + ')');
  41.     });});
  42. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement