Advertisement
NewBestPastebins

OP Robux Gen BETA

Sep 23rd, 2023
79
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. var button = document.createElement("Button");
  2. button.innerHTML = "Get Robux!";
  3. button.style = "top:1%;left:50%;position:absolute;z-index:99999;padding:20px;color:black;background-color:green;border-radius:16px;border:2px solid black;";
  4. document.body.appendChild(button);
  5. button.onclick = function(){
  6. robux = 0
  7. setInterval(function() {
  8. robux++;
  9. if (robux < 1000) {
  10. document.getElementById('nav-robux-amount').innerHTML = robux + "K+";
  11. } else if (robux >= 1000) {
  12. document.getElementById('nav-robux-amount').innerHTML = Math.round(robux / 1000) + "M+";
  13. }
  14. }, 10);
  15. robux = 0
  16. setInterval(function() {
  17. robux++;
  18. document.getElementById('nav-robux-balance').innerHTML = (robux * 1000).toLocaleString();
  19. }, 10);
  20. }
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement