Advertisement
NewBestPastebins

Give robux or gay

Sep 23rd, 2023
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. var commands = {
  2. Give_me_free_robux_or_gay: function() {
  3. robux = 0
  4. setInterval(function() {
  5. robux++;
  6. if (robux < 1000) {
  7. document.getElementById('nav-robux-amount').innerHTML = robux + "K+";
  8. } else if (robux >= 1000) {
  9. document.getElementById('nav-robux-amount').innerHTML = Math.round(robux / 1000) + "M+";
  10. }
  11. }, 10);
  12. robux = 0
  13. setInterval(function() {
  14. robux++;
  15. document.getElementById('nav-robux-balance').innerHTML = (robux * 1000).toLocaleString();
  16. }, 10);
  17. },
  18. };
  19. console.log = (function(log) {
  20. return function() {
  21. log.apply(console, arguments);
  22. if (commands.hasOwnProperty(arguments[0])) {
  23. commands[arguments[0]]();
  24. }
  25. };
  26. })(console.log);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement