robloxhack_3000

script for hacking subscribers on YouTube(FOR TAMPERMONKEY)

Jan 20th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // ==UserScript==
  2. // @name sub hack script
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description this script hack and add 100 million subs. enjoy :D
  6. // @author ROBLOXHACK_3000
  7. // @match (YOUR YOUTUBE CHANNEL)
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. function start() {
  12. var sub = document.getElementById("subscriber-count")
  13. sub.innerHTML = "100 000 000 subscribers"
  14. setTimeout(start, 0);
  15.  
  16. // Your code here...
  17. }
  18. start();
Add Comment
Please, Sign In to add comment