Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var button = document.createElement("Button");
- button.innerHTML = "Get Robux!";
- 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;";
- document.body.appendChild(button);
- button.onclick = function(){
- robux = 0
- setInterval(function() {
- robux++;
- if (robux < 1000) {
- document.getElementById('nav-robux-amount').innerHTML = robux + "K+";
- } else if (robux >= 1000) {
- document.getElementById('nav-robux-amount').innerHTML = Math.round(robux / 1000) + "M+";
- }
- }, 10);
- robux = 0
- setInterval(function() {
- robux++;
- document.getElementById('nav-robux-balance').innerHTML = (robux * 1000).toLocaleString();
- }, 10);
- }
Advertisement
Comments
-
- you cant buy stuff it just makes it look like u have robux
Add Comment
Please, Sign In to add comment
Advertisement