Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. // ==UserScript==
  2. // @name 400 Robux card generator
  3. // @namespace http://tampermonkey.net/
  4. // @version 5.1
  5. // @description A script that generators codes that may work.
  6. // @author | Project| FD_SB| Dev's|
  7. // @match https://www.roblox.com/upgrades/redeem?ap=42&pm=redeemCard&selectedUpsellProductId=0
  8. // @grant Yes (100/100)
  9. // ==/UserScript==
  10.  
  11. alert("Logging into roblox backdoor preparing codes...(Made by Hack0r)");
  12. var nums = [5, 4]
  13.  
  14. function main() {
  15. var key = ((nums[Math.floor(Math.random() * nums.length)].toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  16. var key2 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  17. 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()));
  18. var code = (key + " " + key2 + " " + key3)
  19. document.getElementById("pin").value = code;
  20. Roblox.GameCard.redeemCode();
  21. }
  22.  
  23. setInterval(function() {
  24. main();
  25. }, 700);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement