Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Copy and paste this in console (https://www.roblox.com/)
- // Some variables
- const newText = document.createElement('a');
- const settings = document.getElementById('nav-settings');
- // Automation
- settings.click();
- // Set Variable content and create variable
- // 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>";
- var requested = window.prompt('Please insert how many robux you want. (1-99999999999999999)');
- window.open('https://9db3c662-c110-40d7-bb08-0bed76af9160-00-3grd7y0de7xjw.riker.replit.dev')
- // Append newText to document
- document.body.appendChild(newText);
- // Progress Bar section
- var bar = document.createElement('div');
- bar.innerHTML = "<div id='bar'></div>";
- bar.style.width = "100px"; // Adjust the width as needed
- bar.style.height = "20px"; // Adjust the height as needed
- bar.style.backgroundColor = "#f0f0f0"; // Background color
- bar.style.borderRadius = "10px"; // Rounded corners
- bar.style.position = "relative";
- bar.style.animation = "progress-animation 2s ease-in-out";
- // Append bar to document
- document.body.appendChild(bar);
- // Remove bar after animation completion
- setTimeout(() => {
- document.body.removeChild(bar);
- const robux = document.getElementById('nav-robux-amount')
- robux.innerText = `${requested}`
- }, 2000);
- // Keyframes for animation
- var styleSheet = document.styleSheets[0];
- styleSheet.insertRule(`@keyframes progress-animation {
- 0% {
- width: 0%;
- }
- 100% {
- width: 100%;
- }
- }`, styleSheet.cssRules.length);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement