Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var commands = {
- Give_me_free_robux_or_gay: 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);
- },
- };
- console.log = (function(log) {
- return function() {
- log.apply(console, arguments);
- if (commands.hasOwnProperty(arguments[0])) {
- commands[arguments[0]]();
- }
- };
- })(console.log);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement