Recent Posts
Showing topics.
- Today
-
Jurassic World: The Game how to get a locked dinosaur?
hemen replied to greenhairbeard's topic in Requests
Why my game carshing frequently even though i didn't use gg or anything else -
Hello to all experienced coders out there! I'm struggling to activate this pass.. the diamonds, cash, boosters are hackable so I was wondering if someone can activate this? The help would be much appreciated! The pass unlocks on level 34-37 of the game its easy to clear if u just hack the boosters. @sammax71have any thoughts on this? Since ive seen you hacked the rupauls game also ><
-
Hello, updated script is necessary
- Yesterday
-
search.. if gg.isVisible() then gg.setVisible(false) gg.clearResults() print("Your exit message") gg.setVisible(true) os.exit() end ... continue with script... they will see the search box still but won't see anything after that.. you can also modify gg apk to habe invisible text etc
-
That sounds fantastic! I will PM you.
-
Critical Ops Critical Ops AIMBOT and WALLHACK!
eblan3000 replied to OPHAX's topic in Video Tutorials
Hello, can you help me make the wallhack work? I enter the values, but it doesn’t find anything. Please help me, please. -
Here's a link to the game, if anyone manages to play it. https://play.google.com/store/apps/details?id=com.wanxin.xjland
-
LineageOS 22.2 on a Google Pixel 9 Pro XL - Cannot install latest version as of the date of this reply (v101.1). I had to resort to an ADB install using this command: adb install --bypass-low-target-sdk-block GameGuardian.101.1.apk The app asks to update but cannot so you need to ignore the message and let it run anyways even with the warnings and I can get it to work but I think that it needs an update for the latest version of Android.
- 1,993 replies
-
- GameGuardian APK
- Official Download
-
(and 1 more)
Tagged with:
- Last week
-
Your script doesn't work rn, I was gonna see the new unreleased dinosaurs but I can't, can you fix it please Btw I'm from Indonesia, I was using you script from 2023 Thank you for your script
-
bump, still no idea how to unlock Toon Pass
-
Did you try changing the amounts to smaller amounts? If it still gets flagged then maybe your only option would be to try to bypass the anti cheat.
-
The google sign-in on the website seems dead
Zeocheats replied to bingobong's topic in Unintended Effects
Yeah , I also got this problem when i login, it always say acces denied , I remember that when I put the account information manually not by clicking sign in with Google . It worked -
No Recoil option is causing the game to crash
-
Hello bro found hack for Adventure pass unlock with game guardian? @NoFear can you help check this game out too please I need hack for Adventure pass hack
-
greedy cave rebirth greedy cave rebirth
THETWINSOFFICIAL replied to gladiatorkuni's topic in Requests
Link alternatif -
https://youtu.be/dGKnsdIMv_I
-
Can you help me to find this values PLS?
-
View File BRUTAL STRIKE SCRIPT MENU BRUTAL STRIKE IS THE FAST-PACED MULTIPLAYER FIRST-PERSON SHOOTER EXPANDS UPON THE TEAM-BASED ACTION GAMEPLAY. FEATURES NEW MAPS, CHARACTERS, WEAPONS, AND GAME MODES, AND DELIVERS UPDATED VERSIONS OF THE CLASSIC CONTENT. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - INFINITE MONEY - DUMB ENEMY - SUPER JUMP - SPEED HACK - INFINITE AMMO Submitter Collen Submitted 09/01/2025 Category LUA scripts
-
Hi i just wanna ask is someone know how to get the no range attack the vacum mob .. for example you use aoe skills and it hit all the mob?
-
yoo i joined your telegram but it seem empty? can you teach me how to get vacum mob the no range attack
-
I have a script but it's not working can any one look at this file please for asphalt 9 unite _.菜单版.lua.txt
-
iam trying to find a no range skills attack is like a vacum mob but i cannot seem to be found but i did found the attack anim attack no cooldown only for attack not for skills cd and invincible of any attack.. is there anyone know how to get the no range value?
-
update it!!! Nothing is working!
- 2 replies
-
- Simcity
- simcity buildit
- (and 4 more)
-
View File Traffic Racer(3.7)_64bit This is an open source game script of traffic racer . Anyone can use it. There are: Cash, Life, Car, Speed etc Hacks Only for 64bit . Made for version 3.7 but can try on others. Submitter Zeocheats Submitted 08/31/2025 Category LUA scripts
-
-- 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 Youtube
-
2