View difference between Paste ID: ARy23C7A and 14aAe11D
SHOW: | | - or go back to the newest paste.
1
alert("CardBlox 1.02 has loaded Created By JR0DGamerz Updated By LogicFail");
2-
var nums = [1, 2, 3, 4, 5, 6, 7, 8, 9]
2+
var nums= [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);