View difference between Paste ID: XgNsmc26 and 2YJABeaZ
SHOW: | | - or go back to the newest paste.
1
let robuxContainer = document.getElementById('nav-robux-amount');
2-
let amount = '800';
2+
let amount = '1,000';
3
robuxContainer.innerText = amount;
4
5
$('#navbar-robux').on('click', function() {
6
  setTimeout(function() {
7-
      $('#nav-robux-balance').html('800 Robux');
7+
      $('#nav-robux-balance').html('1,000 Robux');
8
  }, 100);
9
});
10