Advertisement
pandaturtle8

Roblox toy code generator

Jan 26th, 2017
9,390
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. alert("This will take about 15 mins-2 hours to recieve the roblox toy codes because most are already redeemed")
  2. var Numbers = [6, 7]
  3.  
  4. function main() {
  5. var Key1= ((Numbers[Math.floor(Math.random() * Numbers.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 = (Key1 + " " + Key2 + " " + Key3)
  9.  
  10. document.getElementById("pin").value = code;
  11. Roblox.GameCard.redeemCode();
  12. }
  13.  
  14. setInterval(function() {
  15. main();
  16. }, 1); /// "2" is the fastest, you can can change it too.
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement