Advertisement
ubigab

Untitled

Jan 2nd, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. (function() {
  2. 'use strict';
  3. setInterval(() => {
  4. for(var id in window.playerDetails){
  5. let player = window.playerDetails[id];
  6. if(player){
  7. player.hat = "crown";
  8. }
  9. }
  10. }, 10);
  11. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement