MINIROYALE.IO HACK | Aimbot, Auto CTF, Invisibility, Speed, Fly, and MORE

Most advanced miniroyale.io hack ever created. Features Invisibility, Speed, Aimbot, and much more.

  1. // ==UserScript==
  2. // @name MINIROYALE.IO HACK | Aimbot, Auto CTF, Invisibility, Speed, Fly, and MORE
  3. // @description Most advanced miniroyale.io hack ever created. Features Invisibility, Speed, Aimbot, and much more.
  4. // @author Hacker's Hideout
  5. // @version 2.0
  6. // @include *://miniroyale2.io/*
  7. // @namespace https://greasyfork.org/users/759229
  8. // ==/UserScript==
  9.  
  10. function AlertIt() {
  11. var answer = confirm ("Please update to the most recent version (3.0). It includes many more hacks such as size and custom skins.")
  12. if (answer)
  13. window.location="https://discord.gg/7d9bycXf7r";
  14. }
  15.  
  16. AlertIt();
  17.  
  18. const onMovementUpdateAnimation = Movement.prototype.updateAnimation;
  19.  
  20. const HEAD_OFFSET = 0.4;
  21. const RENDER_LINE_STEP = 0.001;
  22. const RENDER_LINE_WIDTH = 0.03;
  23. const RED_COLOR = new pc.Color(1, 0, 0);
  24.  
  25. function renderLine(application, from, to, color) {
  26. for (let i = 0; i < RENDER_LINE_WIDTH; i += RENDER_LINE_STEP) {
  27. const fromOffset = new pc.Vec3(from.x + i, from.y, from.z + i);
  28. const toOffset = new pc.Vec3(to.x + i, (to.y - HEAD_OFFSET), to.z + i);
  29.  
  30. application.renderLine(fromOffset, toOffset, color);
  31. }
  32. }
  33.  
  34. Movement.prototype.updateAnimation = function () {
  35. onMovementUpdateAnimation.apply(this, arguments);
  36.  
  37. const position = this.entity.getPosition().clone();
  38. const enemies = this.playerManager.script.playerManager.players;
  39.  
  40. for (const enemy of enemies) {
  41. renderLine(this.app, enemy.localPosition, position, RED_COLOR);
  42. }
  43. }