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 this
void *(*get_transform)(void *instance);
void (*set_localscale)(void *transform, Vector3 scale);
void (*old_manaiupdate)(void *instance);
void manaiupdate(void *instance) {
if (instance != NULL) {
set_localscale(get_transform(instance), {ManAIScale,ManAIScale,ManAIScale});
}
return old_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 this
void *(*get_transform)(void *instance);
void (*set_position)(void *transform, Vector3 pos);
void (*old_playercontrollerupdate)(void *instance);
void playercontrollerupdate(void *instance) {
if (instance != NULL) {
if (Teleport) { //Custom Teleport
Teleport = false;
set_position(get_transform(instance), {PlayerPosX, 1.0f, PlayerPosY});
} else if (Teleport2) { //Teleport with predefined coordinates
Teleport2 = false;
set_position(get_transform(instance), PlayerPos2);
}
}
return old_playercontrollerupdate(instance);
}
Among Us Mod Menu Updated on 2025/06/13 App Info: Name Among Us Version v2025.6.10 Size 866.49 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 - ...
Get Keys Click the button above to get your key! Don't know how to get keys? Follow these steps: Use Chrome and disable any ad blockers. If you see "adblocker detected," try using a VPN like Cloudflare's 1.1.1.1. Click the button above to go to the key page. If it opens a random page, go back and try again. Wait for the page to load fully. A 15-second timer will appear—wait for it to finish. When the "Verify" button appears, click it. If it doesn't, click an ad and go back to see it. Scroll down and clicked "Continue." Repeat steps 3-5 a few times. On the last page, click the "Get Link" button. If it opens an ad, close it and try again. You'll reach the key page, where you can copy the key for your mods. Paste the key into the mod menu and enjoy! Get Keys Click the button above to get your key!
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...
Comments