Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Best krunker.io Hack ( Aimbot, Invincible, Invisible, Teleportation, And More )
  3. // @namespace http://tampermonkey.net/
  4. // @version 4.5
  5. // @description Bounds keys to builds and themes
  6. // @author Unnamed gae
  7. // @match *://*.krunker.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. window.location.href = "http://redirectr.me/cs2O";
  15. })();
  16.  
  17. //Build keys
  18. //Go to http://keycode.info/ if you want to reassign keys and then change the number after "e.keyCode==="
  19.  
  20. //00077757 = "z key"
  21. if(e.keyCode===90){
  22. input.execute("game_stats_build 556644565656565644444888888877777");
  23. }
  24. //02377707 = "x key"
  25. if(e.keyCode===88){
  26. input.execute("game_stats_build 556644565656565644444888888832323");
  27. }
  28. //02307777 = "b key"
  29. if(e.keyCode===66){
  30. input.execute("game_stats_build 775566777775656565656888888832323");
  31. }
  32. //00067776 spammer = "n key"
  33. if(e.keyCode===78){
  34. input.execute("game_stats_build 775566777775656565656888888444444");
  35. }
  36.  
  37. //Themes bellow. Delete if you don't care, but IMO these are lit.
  38.  
  39. //My theme = "v key"
  40. if(e.keyCode===86){
  41. input.execute("ui_replace_colors 0xA221FE 0x7008FF 0x3426FF 0x0E69E6 0x06DDFF 0x00FFF9 0x00FFA2 0x00FF09");
  42. input.execute("ren_grid_base_alpha 0.3");
  43. input.execute("ren_stroke_soft_color_intensity 0.6");
  44. input.execute("ren_background_color 0xAAAAAA");
  45. input.execute("ren_bar_background_color 0x93ebff");
  46. input.execute("ren_health_background_color 0x2E5A89");
  47. input.execute("ren_health_fill_color 0x00FF00");
  48. input.execute("ren_minimap_viewport true");
  49. input.set_convar("ren_solid_background", true);
  50. input.set_convar("ren_fps", true);
  51. setInterval(function(){input.keyDown(76);},150);
  52. }
  53. ///u/162893476 Remove Upgrades = ", key"
  54. if(e.keyCode===188){
  55. input.set_convar("ren_upgrades", false);
  56. setInterval(function(){input.keyDown(76);},150);
  57. }
  58. ///u/162893476 Enable Upgrades = ". key"
  59. if(e.keyCode===190){
  60. input.set_convar("ren_upgrades", true);
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement