Skip to content

repinek/fallguys-frida-modmenu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Warning

This project is for educational purposes only.
The author is not responsible for any bans from the use of this tool!
Use it at your own risk.

Fall Guys Mod Menu

Android Fall Guys mod menu using Frida and frida-il2cpp-bridge

For help, updates announcements, and additional platforms support, join our community in Discord: Make FG Great Again Discord Server

📸 Screenshots

Demo

✨ Features

Movement

  • 360 Dives
  • Air Jump
  • Freeze Player
  • Stop sending Fall Guy State (packets)
  • Change Speed
  • Change Vertical Velocity / No Velocity / Negative Velocity
  • Change Jump and Dive Strength

Rounds helper

  • Hide Real Doors (Door Dash and Lost Temple)
  • Hide Fake Platforms (Tip Toe)

Teleports

  • Teleport To Finish or Crown
  • Teleport To Random Player
  • Teleport To Bubble, Active Button or Score Zone

Other

  • View Names Shortcut
  • Toggle Display UI
  • Change FOV
  • Display FGDebug
    • Shows FPS (min/max/avg/current), Time, Ping, Dropped Packets
  • Change Resolution
  • Show Number of Queued Players
  • Show Game Details
    • Shows RoundID, seed Initial Players, Eliminated Players
  • Show Server Details
    • Shows Server IP, Host, Ping, LAG
  • Show Build Info

Features that always work (cannot be disabled)

  • Bypass Character Physics Checks
  • Remove FPS Limit
  • Anti-AFK
  • Bypass permanent ban (not temporary)

📦 Installation

Just download and install the .apk from Releases
Not working? Look 🛠️ Troubleshooting

If you don't want to wait for game resources to download, copy the .obb file from:
Android/obb/com.Mediatonic.FallGuys_client/ to
Android/obb/com.Mediatonic.FallGuys_client.modmenu/, then rename it by adding .modmenu before .obb
Final file name example: main.XXXX.com.mediatonic.FallGuys_client.modmenu.obb

🛠️ Troubleshooting

This project is created only for educational and entertainment purposes. I won't be providing support.

In The Main Menu it will ask for permission to display over other apps, If it doesn’t ask for it, grant it manually.

HyperOS, ColorOS, OneUI, HarmonyOS, and other OEM ROMs may not work properly or at all.
It is recommended to use ROMs with minimal changes to ART (mainly AOSP forks).
EMULATORS ARE NOT SUPPORTED!!

🏗️ Build

— Install dependencies

  1. Make sure you have Python Installed.
  2. Install Frida-Tools 13.6.1
pip install frida-tools==13.6.1

That should install frida 16.7.19 too

— Build script

  1. Clone the repository:
git clone https://github.com/repinek/fallguys-frida-modmenu
cd fallguys-frida-modmenu
  1. Install dependencies:
npm install 
  1. Build the script
npm run build

Script will be saved at the path dist/agent.js

— Build APK

  1. Download Fall Guys Latest APK
  2. Add permission to AndroidManifest.xml
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
  1. Download frida-gadget 16.7.19 for arm and arm64
  2. Install frida-gadget injector (I'm using that, but you can use any other to inject gadget)
  3. Extract .so files and copy downloaded frida gadgets to C:\Users\YOURUSER\.fgi\arm.so and C:\Users\YOURUSER\.fgi\arm64.so (rename it to arm.so and arm64.so as well)
  4. Open terminal and execute command
short command:
fgi -i <yourpathtofallguys.apk> -t script -l ./dist/agent.js --offline-mode
full command:
fgi -i <yourfallguys.apk> -t script -l ./dist/agent.js -n libModMenu.so -s libModMenu.s.so --offline-mode

Apk will be saved at the path ./yourfallguys.patched.apk

🤝 Contribution

Pull requests are welcome. Got ideas or questions? Join our Discord!
Short instruction to contribute:

  1. Follow the instructions in 🏗️ Build up to the step with injecting frida-gadget
  2. Use frida-server (if you have root) or run this command to inject frida-gadget in your apk in listen mode:
fgi -i <yourfallguys.apk> --offline-mode
  1. Install and launch the apk, then inject the script (this command works only if you have frida-gadget, use other if you use frida-server):
npm run spawn

🙏 Special Thanks

Obed Guys Team - Some features powered by Obed Guys Team
FloyzI - For how the game works, help with some features
commonuserlol - For help with code and menu
Dynasty-Dev - For testing and contribution
igamegod - For help with some features