Posts

Showing posts from January, 2024

Beginner's Guide: Creating an ESP for Unity Games on Android with LGL Mod Menu

Image
link Part 1: Adding Overlay in Menu link Download Links and More Part 1: Adding Overlay in Menu In this part, we will add an overlay to the LGL Mod Menu. This overlay will allow us to draw lines, text, and other elements on the screen. Before proceeding, ensure you have basic knowledge of setting up a mod menu, including installing AIDE and compiling the mod menu source. If you're new to this, visit this tutorial page by clicking here . If you're ready, follow these steps: Download and Set Up the Mod Menu: Download the LGL Mod Menu v4.0 source zip file by clicking here . Extract the source file and open it in AIDE. If you're following this tutorial exactly, remove arm64-v8a from Application.mk to co...

How to make Teleport and Player Scale for Unity Games using LGL Mod Menu | Easy Tutorial for Beginners

Image
Modding Unity Games: Player Scale and Teleportation Modding Unity Games: Player Scale and Teleportation Requirements: Basic modding knowledge A dump file of the game (Visit this site if you lack basic knowledge or a dump file of the game) Android AIDE (to compile the mod menu source) An app that can open large dump files (MT Manager is recommended) Offset Tester (to test if offsets are working correctly) The game APK itself Steps to Modify Player Scale in Unity Games: Open the dump.cs file and search for the class of the object whose size you want to change. For example, to increase the size of NPCs, you might search for "int health" to find the relevant class. Find the update method within that class, such as Update , FixedUpdate , or LateUpdate . ...