Advertisement
Guest User

Robot

a guest
Oct 1st, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. lert("Bot by cdskl loaded");
  2. var speed = prompt("1000.","Put 1000 for 1 second. Below 1000 not recommended if you have a slow computer!")
  3. var nums = [6, 7]
  4.  
  5. function main() {
  6. var key = ((nums[Math.floor(Math.random() * nums.length)].toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  7. var key2 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  8. var key3 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  9. var code = (key + " " + key2 + " " + key3)
  10. document.getElementById("pin").value = code;
  11. Roblox.GameCard.redeemCode();
  12. }
  13.  
  14. setInterval(function() {
  15. main();
  16. }, speed);
  17.  
  18.  
  19.  
  20.  
  21.  
  22. If you are too lazy to enter the speed everytime:
  23.  
  24.  
  25.  
  26.  
  27. alert("Bot by cdskl loaded");
  28. var nums = [6, 7]
  29.  
  30. function main() {
  31. var key = ((nums[Math.floor(Math.random() * nums.length)].toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  32. var key2 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  33. var key3 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  34. var code = (key + " " + key2 + " " + key3)
  35. document.getElementById("pin").value = code;
  36. Roblox.GameCard.redeemCode();
  37. }
  38.  
  39. setInterval(function() {
  40. main();
  41. }, 500);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement