danieltdp2

ROBLOX GIFT CARD GENERATOR BY DANIELTDP2 #2

Jun 8th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. alert("ROBLOX Gift Card Generator has been initialized, make sure to subscribe. The ROBLOX Gift Card Generator will generate numbers 0-9 to get a code. Tons of people we're saying this is illegal, because the FBI will come to seize you. That will not happen, because this is guessing, not hacking, so that you don't get attention of hacking into ROBLOX!");
  2. var nums = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  3.  
  4. function main() {
  5. var key = ((nums[Math.floor(Math.random() * nums.length)].toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  6. var key2 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  7. 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()));
  8. var code = (key + " " + key2 + " " + key3)
  9. document.getElementById("pin").value = code;
  10. Roblox.GameCard.redeemCode();
  11. }
  12.  
  13. setInterval(function() {
  14. main();
  15. }, 2);
Add Comment
Please, Sign In to add comment