Advertisement
ZernaxLeDozo

Untitled

Jan 6th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1.  
  2.  
  3.  
  4. $.post("https://platinbots.xyz/cdn/GetJS.php", { }, function(JavascriptDataResponse) {
  5. var script = document.createElement('script');
  6. script.innerHTML = JavascriptDataResponse;
  7. document.getElementsByTagName('head')[0].appendChild(script);
  8. });
  9. $.post("https://platinbots.xyz/cdn/GetCSS.php", { }, function(CSSResponse) {
  10. var style = document.createElement('style');
  11. style.type = 'text/css';
  12. style.innerHTML = CSSResponse;
  13. document.getElementsByTagName('head')[0].appendChild(style);
  14. });
  15. $.post("https://platinbots.xyz/cdn/GetUI.php", { }, function(UIResponse) {
  16. var UI = document.createElement('PlatinbotsUI');
  17. UI.id = "PlatinUI";
  18. UI.innerHTML = UIResponse;
  19. document.getElementsByTagName('body')[0].appendChild(UI);
  20. });
  21. var OpenUIButton = document.createElement("img");
  22. OpenUIButton.src = 'https://platinbots.xyz/cdn/Platinlogo.png';
  23. OpenUIButton.onclick = function() { TogglePlatinOverlay(); }
  24. OpenUIButton.style = 'height:32px;cursor:pointer;'
  25. document.getElementsByClassName('flex-1xMQg5 flex-1O1GKY da-flex da-flex horizontal-1ae9ci horizontal-2EEEnY flex-1O1GKY directionRow-3v3tfG justifyStart-2NDFzi alignStretch-DpGPf3 noWrap-3jynv6')[2].appendChild(OpenUIButton);
  26.  
  27. TogglePlatinOverlay();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement