Leaderboard
Popular Content
Showing content with the highest reputation since 10/08/2025 in all areas
-
2 points
-
Version 2.0
159 downloads
TK_Tool — LuaScript_Builder Build GameGuardian Lua scripts instantly with menus, password lock, expiry date, and auto function generation. Features: Easy step-by-step script builder Password & expiry protection Menu creator (single/multi) Function modes: Manual, Patch-Offset, Search & Edit Auto-save & resume wizard Clean, ready-to-use .lua output Ideal for modders who want fast, structured, and customizable script creation. Must Watch video For How to Use2 points -
Version 101.1
210,478,117 downloads
Overview: Play games your way! “GameGuardian” is a game cheat / hack / alteration tool. With it, you can modify money, HP, SP, and much more. You can enjoy the fun part of a game without suffering from its unseasonable design. Requires Android: 2.3.3+ GameGuardian Features Summary Runs on ARM, x64 and x86 devices, including x86 emulators (LDPlayer, Droid4X, MOMO, KOPlayer, Andy, Memu, Leapdroid, AMIDuOS, Windroye, RemixOS, PhoenixOS, AVD, Genymotion, Nox, BlueStacks etc.) Supports Android 2.3.3+ (Gingerbread) through Lollipop (5+), Marshmallow (6+), Nougat (7+), Oreo (8+), Pie (9+), 10+. Support work without root via different virtual spaces. Support different emulators like PPSSPP, ePSXe, GameBoy etc. Game deceleration and acceleration (speedhack) for ARM and x86 devices, including x86 emulators. Also supports both 32-bit and 64-bit applications on 64-bit devices using speedhack. Search feature: encrypted values. Search of unknown values when specifying the difference between values. Search addresses by mask. Explicit and "fuzzy" numeric searches. Text (String, Hex, AoB) search. Supports: Double, Float, Qword, Dword, XOR, Word, Byte, or Auto data-type searches. Lua scripting support. Modify all search results at once. Filtering of search results (address greater than and less than, value greater than and less than). Search in the background feature. 'The fill' feature. Time jump feature. Dump memory. Copy memory. Customizable UI. App locale for over 50 languages. And, much, much more. Notes: ** ROOT or VIRTUAL ENVIRONMENT ONLY ** This tool only works on rooted devices or in virtual environment (without root in limited mode)! GG can work in limited mode without root, through a virtual environment. For example, through Parallel Space, VirtualXposed, Parallel Space Lite, GO multiple, 2Face and many others. Read the help for more details. You can find more information about rooting your device at XDA Developers. Want to help us improve, or add a translation? Then please visit thread "If you want to add a new translation or improve an existing". If you are having issues with the app, please visit thread "Gathering information about GG errors". Want to donate and help keep the project going? That's awesome! You can donate any amount (anything helps) here: Donate Need help with how to use this application? Please visit "Video tutorials" and forum "Guides". Credit: @d2dyno - Owner, lead designer, project management. @Enyby - Lead coder, project management. @Trasd - Technical consultant, project management. @Aqua - Creator (retired).2 points -
not sure if this will work but try.. from main screen. search 1;0.3333~0.3334;0.03::9 float. Refine 1 float. edit 5 freeze. (speed multiplier)1 point
-
1 point
-
it's not an error.. it's a warning. just saying script is not optimized for pc emulators. sometimes hacks work on pc. what I'm saying is. ignore the warning and try anyways. maybe hacks will work, maybe they won't. just try.1 point
-
it's not for sale. it's all FREE .. you can try it on emulator, but can't guarantee it will work.1 point
-
1 point
-
I have a script for this Online Mega Script v04 (100% Free & Not Encrypted) New Scripts Added Daily/Weekly. APEX[GG]v2 (#7iwkynr)1 point
-
1 point
-
1 point
-
1 point
-
1 point
-
For now, you can only change the value of the suns. As for the rest, you need to either find some other values or find the value you want.1 point
-
1 point
-
1 point
-
1 point
-
Review of xZeta’s Lua Kaboom Script If you’re looking to take your Kaboom gameplay to the next level, xZeta’s Lua Script is an absolute game-changer! From the moment I loaded it up, I could tell this wasn’t just another run-of-the-mill script, it’s a full customization powerhouse that gives you control over every aspect of your game while keeping the competitive spirit alive. The Mode Bomb Menu lets you handle match-critical moments with ease, whether it’s quickly locating the C4 , defusing in record time , or strategically forcing a team swap to shake things up. It keeps matches dynamic and allows for fresh, adrenaline-pumping rounds every time. The Misc Menu is pure joy for anyone who loves to personalize their experience: unlocking all characters & skins , tweaking your FOV , boosting regen , and even customizing your avatar for that unique flair. For players who want fine control over mechanics, options like NoSpread, NoRecoil, and Unlimited Ammo make for smooth, uninterrupted gameplay. One standout feature, ExplosiveSmoke, brilliantly blends stealth and power, letting you turn a tactical smoke into a silent but deadly surprise. With adjustable radius and damage settings, it’s as creative as it is formidable (but use it wisely! ). What I appreciate most is that xZeta has built a script that’s versatile, easily customizable, and incredibly fun, while still giving room for skill-based competitive play. It’s not just about winning, it’s about enjoying every single moment of the game exactly how you want to play it. Final verdict: Endless customization Competitive edge without killing the fun Features that make matches exciting, unpredictable, and unforgettable If you love Kaboom and want the freedom to shape your gameplay experience, this script is a must-have. Hats off to xZeta for creating something truly special!1 point
-
1 point
-
1 point
-
-- Il2CppGG by LeThi9GG require("Il2CppGG") -- Usage Instructions: -- This script demonstrates the core functionalities of Il2CppGG, a Lua-based toolkit for inspecting and manipulating Il2Cpp structures in GameGuardian. -- It covers image retrieval, class searching, method and field access, value modification, class dumping, and memory hooking. -- Prerequisites: Ensure GameGuardian is running and the target application uses Il2Cpp. Load this script in GameGuardian for execution. -- Note: Addresses and values are examples; adapt them to your specific game or application. -- For detailed API documentation, refer to the project's README.md or wiki. -- Example: Retrieve Image by Name -- Description: Fetches an Il2Cpp image (assembly) by its name. Use Il2Cpp.Image() without arguments to get all images. local Assembly = Il2Cpp.Image("Assembly-CSharp") -- Retrieves the "Assembly-CSharp" assembly. -- Example: Find Class within an Image -- Description: Searches for a class in the specified image using namespace and class name. Namespace can be nil for root-level classes. local PlayerScript = Assembly:Class(nil, "PlayerScript") -- Parameters: (namespace, classname) -- Alternative: Find Class by Name, Address, or Index -- Description: Directly searches for a class by name (recommended to use GetIndex() for performance optimization). --local PlayerScript = Il2Cpp.Class("PlayerScript") --print(PlayerScript:GetIndex()) -- Outputs the class index for faster future access. -- Example: Find Methods in a Class -- Description: Retrieves a specific method by name or lists all methods with GetMethods(). local LateUpdate = PlayerScript:GetMethod("LateUpdate") -- Finds the "LateUpdate" method. local addPoints = PlayerScript:GetMethod("addPoints") -- Finds the "addPoints" method. -- Example: Find Fields in a Class -- Description: Retrieves a specific field by name or lists all fields with GetFields(). local points = PlayerScript:GetField("points") -- Finds the "points" field. -- Alternative: Find Field by Name or Address -- Description: Global search for a field by name or direct address. --local points = Il2Cpp.Field("points") -- Searches globally by name. -- Alternative: Find Method by Name or Address -- Description: Global search for a method by name or direct address. --local AddPoints = Il2Cpp.Method("AddPoints") -- Searches globally by name. -- Example: Modify a Field Value -- Description: Locates an instance of the class and sets a new value for the field. local obj = PlayerScript:GetInstance() -- Retrieves instances of the class. points:SetValue(obj, 1000) -- Sets the "points" field to 1000 in the instance. -- Example: Dump Class to C# Format -- Description: Outputs the class structure in C# syntax for reverse engineering purposes. --print(PlayerScript:Dump()) -- Dumps the class definition, including fields, methods, and offsets. -- Hooking Examples -- Description: Demonstrates memory hooking for real-time modifications using the Hook module. -- Hooks allow intercepting and altering method calls, parameters, and fields. -- Hook a Field via a Method (e.g., hook "points" field using "LateUpdate" method) -- Description: Modifies the field value every time the method is called. local _LateUpdate = LateUpdate:field() -- Initializes hook on the method for field modification. _LateUpdate:setValues({{offset = points.offset, flags = "int", value = 9999}}) -- Sets the field to 9999. gg.sleep(10000) -- Pauses for 10 seconds to observe the effect. _LateUpdate:off() -- Disables the hook and restores original behavior. -- Hook Parameters of a Method (e.g., hook parameters of "addPoints") -- Description: Alters the parameter values passed to the method. local _addPoints = addPoints:method() -- Initializes hook on the method for parameter modification. _addPoints:param({{param = 1, flags = "int", value = 999999}}) -- Sets the first parameter to 999999. gg.sleep(10000) -- Pauses for 10 seconds. _addPoints:off() -- Disables the hook. -- Hook a Method Call (e.g., call "addPoints" from "LateUpdate") -- Description: Injects a call to another method with custom parameters during execution. local _addPoints = LateUpdate:call()(addPoints) -- Initializes hook to call "addPoints" from "LateUpdate". _addPoints:setValues({{param = 1, flags = "int", value = 999}}) -- Sets the parameter for the called method. gg.sleep(10000) -- Pauses for 10 seconds. _addPoints:off() -- Disables the hook. Il2CppGG Telegram Youtube1 point
-
1 point
-
1 point
-
Version v05 20251403
19,677 downloads
UPDATED 30 Mar 2025 ( 220 Total Games ) ** No longer able to hack/update after phone upgraded ** 1945 Air Force 3D Pool Ball ACE Fighter Agent J Aliens vs Zombies Almost A Hero Ancient Allies TD Angry Birds 2 AnimA Archero Arrow Quest Attack Hole Auto Hero Awesome Tanks Ball Blast Bang Bang Rabbit Battle Strategy TD BeatStar Beyblade Rivals Bladebound Blitz: R.o.Heroes Boom Castle Boom Stick BounceMasters Bowmasters Box Head ZMD Brawl Fighter Brick Inc Bricks Breaker GB Bullet Echo Bullet Echo India CarX Highway Catapult King Chill & Kill Clan Race Clash of Destiny Conquer the Tower Conquer the Tower 2 Crossy Road Cyber Surfer DC Heroes & Villains Dead Ahead ZW Dead Raid ZS 3D Dead Trigger Dead Trigger 2 Dead Warfare Death Invasion Surv Defenders 2 Defense Legend 5 Demon Blade Devil Eater Dice Dreams Disney Heroes BM Doomsland Dragon Ball Legends Dragon POW! Dream Defense Dust Settle Dye Hard Endless Frontier Epic Stickman Faily Brakes 2 Fight for America Final Galaxy Fire Hero 2 Forged Fantasy Frozen: Free Fall Fruit Ninja 1 Fruit Ninja 2 Galaxiga Galaxy Attack SG Galaxy Shooter AFW Gems of War Grow Castle Grunt Rush Gun War Hero Blitz Hero Factory Heroes of Mavia Heroes vs Hordes Hockey All Stars 24 Honor Bound Horizon Chase Hyper Heroes Idle Hero TD Impossible Space Imposter Battle Royale Impostor Shooter MR Infinity Ops Infinity Shooter OS Injustice Gods A.U. Into the Dead 2 Island War Jewel World Museum Jurassic Monster World King of Defense Kingdom Clash Last Hero S.A Left to Survive Legion Master Lilys Garden Lonely Survivor Loot Heroes Mad Skills MX3 Magic Rampage Magic Siege Major Gun 2 MARVEL C.o.Champions Match Hit Meow Hunter Merge Archers Mini Golf King Mini TD 2 Mob Control Modern Sky War Moto Rider BRG Mr. Autofire NecroMerger NERF Superblast NFL Rivals Ninja Turtle Legends NonStop Knight 2 Otherworld Legends Pac Man 256 Panda Pop BS Perfect Kick 2 Pocket Necromancer Pokemon Quest POOKING Billliards City Pool Stars Puzzle Brawl Quest 4 Fuel R.A.C.E. Racing Legends Raid Royal 2 TD Raid Rush Raiden Fighter Ramboat 2 Real Steel Boxing Champ Realm Defense Red Siren Rival Kingdoms Robot Warfare Rodeo Stampede Royal Match Sci-Fi TD Module Shadow Gun ESW Shadow Knights Shadow Legends S.F. Shadow of Death Shadow Slayer Shadowgun Legends Shooter.io.WS SkullGirls Sky Force Reloaded Slash and Girl Slime Castle Smash Bandits Sniper 3d Sniper Strike Sonic Boom 2 Space Shooter GA Squad Alpha Star Force Steampunk Tower Steel Rage Stick Ninja 3v3 Stick War Saga Stickman Archer Online Storm Blades Street Racing 3D Stupid Zombies 1 Subway Match Survive Squad Surivor Z Swamp Attack 2 Tacticool Tank Combat WB Tank Hero Tank Stars Tap Titans 2 Tiny Gladiators 1 Tiny Gladiators 2 Top Troops Tower and Swords Tower Conquest Tower Defense BZ Tower Gunner ZS Towerlands Toy Blast Traffic Rider Transformers Bumblebee Transmute: GB Turret Defense King Undead City ZS Undead VS Demon Under Dark Unkilled Wacky Battles War Commander R.A. War Heroes War Inc : Rise War Strategy Game Warhammer 40k Tacticus Warzone Commander Wind Wings World of Artillery World Robot Boxing World Robot Boxing 2 WWE Mayhem WWII Defence Zombeast Zombie Defense Zombie Fire 3d Zombie Hunter Zombie State Zombie Warfare TDP Zombies Boom Zombtube1 point -
I just noticed your comment about IDA. If your use case is simply to find offsets, this tool does much more than what you're looking for. In terms of the AOB generation, all it does is dumbly check if instructions contains `0x` or `#` (which is not a foolproof system and results in false positives). IDA supports AOB searches, and surely there's better tools out there that you can use to generate AOBs. For instance, https://guidedhacking.com/threads/aob-signature-maker.8524/ seems promising. I'm not trying to discourage you from using my tool, I just want to clarify that it's nothing magical.1 point
-
1 point
-
I need help I just got the dump.cs of the csr2 and I want to try to turn off the anti-cheat of the game with liboffset using gg but I find it hard to do the task bcs I'm still new to doing this kind of things. I found some terms connected to cheats in the dump.cs but I can't figure it out if it's the anti-cheat offset. If anyone their could help me I would much appreciate it1 point
-
Version 4.0.9070+1.0.3010+1.0.3049
15,379,772 downloads
Requires Android: Android 4.0.3-4 / Ice Cream Sandwich MR1 or later. There is support for x86. Video: No root via optimized Parallel Space Lite - GameGuardian (#47glijbj) Before installing the optimized version, uninstall the version from Google Play. Differences of the optimized version: no error 105. About second apk (32-Bit Support): About third apk (64-Bit Support): You do not need to install it if you do not intend to crack 64-bit games. After installing it, GG will not see 32-bit games in the virtual space, only 64-bit.1 point -
1 point
-
The second or 3rd one? I have tried lots of them! Basically parallel space isn’t working for me?! I just need to modify my stars in kim kardashian..if someone could download KKH from the App Store then do it with parallel space and it works?! I need someone to tell me how. I have done ever apk provided nothing! It takes me to download parallel space 64 on google play?? I even downloaded the apk file to xposed..and while I’m getting the icon to float I’m not able to load my game what so ever! I need major help and I have posted everything about it on a thread. I’m sure it’ll just get lost and I won’t be able to learn how to do this when it shouldn’t be that hard. I must be doing something wrong or my android 9 isn’t compatible with gg nor any virtual sites when I’m seeing others do what I need! But no one wants to help me..so if someone that can use google play inside their parallel space, if they can install KKH and try to modify it, then someone needs to walk through the steps with me because I’m seriously doing everything step by step by video and nothing is working..the only thing that works is using xposed to have the gg icon float but my game doesn’t appear inside the gg floating Icon cuz I have to modify the game inside xposed.. so idk what to do..I need serious help I’m at my witts end of 24 hours trying to figure this out.1 point
-
1 point
-
-1 points
-
-1 points