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