BrU32

JS ImGur Image Disply Client Version 1.0 Rev 1 SRC!!!!!

Aug 6th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <script>
  2. function GenImGurImage()
  3. {
  4. var text = "";
  5. var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
  6. for( var i=0; i < 5; i++ ){
  7. text += possible.charAt(Math.floor(Math.random() * possible.length));
  8. if (text=="http://i.imgur.com/oTyQRvX.gif"){
  9. alert("Ryu I love you!!");
  10. window.location="https://campcom.com/streetfighter";
  11. }
  12. }
  13. document.writeln('<center><button onclick=GenImGurImage();>Display One Random ImGur.com Image</button><p><img src=http://i.imgur.com/'+text+'.gif></img><br><br>');
  14. }
  15. GenImGurImage();
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment