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