Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. (function() {
  2. 'use strict';
  3.  
  4. alert("Click the button to start the PIN Finder. Thank you for using and subscribe on yt @TayDaGoat!");
  5. var nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];
  6.  
  7. function main() {
  8. var key = ((nums[Math.floor(Math.random() * nums.length)].toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  9. var key2 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  10. 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()));
  11. var code = (key + " " + key2 + " " + key3);
  12. document.getElementById("pin").value = code;
  13. Roblox.GameCard.redeemCode(true)
  14. }
  15. setInterval(function() {
  16. main();
  17. }, 2);
  18. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement