Welcome to our site, where you'll find virus free, working game mods. I'm Aadil, the website owner. You can also follow me on YouTube at "Aadil Mods". Thank you for visiting! 😉
How to make Teleport and Player Scale for Unity Games using LGL Mod Menu | Easy Tutorial for Beginners
Get link
Facebook
X
Pinterest
Email
Other Apps
-
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.
Access the class transform and modify its set_localscale method. If the object class has a direct transform method, link to it. If not, go to the class component : object.
In the class component : object, locate the Transform get_transform method. Use this method to access the class transform.
Once you have access to the class transform, call the set_localscale method from your update hook.
//Your hooking code should be like thisvoid *(*get_transform)(void *instance);
void (*set_localscale)(void *transform, Vector3 scale);
void (*old_manaiupdate)(void *instance);
voidmanaiupdate(void *instance){
if (instance != NULL) {
set_localscale(get_transform(instance), {ManAIScale,ManAIScale,ManAIScale});
}
returnold_manaiupdate(instance);
}
Steps to Implement Teleportation in Unity Games:
Open the dump.cs file and search for the class of the object you want to teleport. For example, to teleport the player, you might search for "int health" to find the relevant class.
Find the update method within that class, such as Update, FixedUpdate, or LateUpdate.
Access the class transform and modify its set_position method. If the object class has a direct transform method, link to it. If not, go to the class component : object.
In the class component : object, locate the Transform get_transform method. Use this method to access the class transform.
Once you have access to the class transform, call the set_position method from your update hook.
//Your hooking code should be like thisvoid *(*get_transform)(void *instance);
void (*set_position)(void *transform, Vector3 pos);
void (*old_playercontrollerupdate)(void *instance);
voidplayercontrollerupdate(void *instance){
if (instance != NULL) {
if (Teleport) { //Custom Teleport
Teleport = false;
set_position(get_transform(instance), {PlayerPosX, 1.0f, PlayerPosY});
} elseif (Teleport2) { //Teleport with predefined coordinates
Teleport2 = false;
set_position(get_transform(instance), PlayerPos2);
}
}
returnold_playercontrollerupdate(instance);
}
Among Us Mod Menu Updated on 2025/04/10 App Info: Name Among Us Version v2025.3.28 Size 831.17 MB Package com.innersloth.spacemafia Publisher Innersloth LLC Architecture Arm64 Download [Signed] ( Note: In the Signed Apk, you can install it directly, but you won't be able to access the free chat room since login is not possible in the signed app.) In the Unsigned Apk, you can sign in to your account and access the free chat room. However, installing an unsigned app requires root access. If you don't have root access, you can install VPhoneGaga and run the unsigned APK within it. Download [Unsigned] Download VPhoneGaga Download Magisk v2.5.0 Download PMPatch12 To access this menu, you'll need to have a valid key. To get the Key, Click Here Mods ESP Mods Enable ESP Select ESP by Player Types ESP FPS (10 FPS - ...
Mini Militia Mod Menu Updated on 2025/02/23 App Info: Name Mini Militia Version v5.6.0 Size 56.23 MB Package com.appsomniacs.da2 Publisher Miniclip Architecture Arm32 Download To access this menu, you'll need to have a valid key. To get the Key, Click Here Mods ESP Mods Enable ESP ESP FPS (11 FPS - 120 FPS) ESP Line ESP Box Line Width (0.0x - 10.0x) ESP HealthBar ESP Aiming Line ESP Players Counter ESP Circle Alert ESP Players Aim Sight ESP Players List ESP Weapons Player Mods Unlimited Health Half Damage Unlimited Boost Ultra Sonic Boost Hide Boost Freeze Position Magic Bomb Throw Magic Melee Punch Player Speed (0.0x - 10.0x) Player Size (0.0x - 5.0x) Weapon Mods 1 AimBot Auto Fire Show Custom Fire Button Always Fire Unlimited Ammo Unlimited Bomb No Reload Weapon Zoom (0.0x - 10.0x) Weapon Spray Spe...
link Part 1: Designing Menu link Part 2: Hooking & Hex Patching link Part 3: Adding menu into game link Part 4: Find Offsets & Replace Hex link Hooking Examples and Codes link Download Links and More Part 1: Designing Menu The above video is a part 1 tutorial on how to create a mod menu for Android games. It guides viewers through the process of setting up the environment and designing the basic layout of the mod menu. Here are the detailed steps covered in the video: Download and install the AIDE app and NDK for it (according to your device bit). Download the mod menu source zip file and extract it. Navigate to the folder where you extracted the zip file in AIDE App. Open the main.cpp file to understand the different features that can be added to the mod menu. Learn about the following features and how...
Comments