Jump to content
  • GameGuardian APK 101.1

       191,317,096  
    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).  
     
  • Recently updated

Templates

72 files

  1. HTWBLS (Part 1)

    This script is made to teach gamers how to write GG lua scripts. It is also an eye opening project to some codes for script writers
    ✅ User should download Quick Edit because the tutorials can only be seen in an editor
    ✅ HTWBLS will be released in parts
    ✅ No encryption 
    ✅ No passwords
    ✅ Purely for educational purposes 
    ➖➖ HTWBLS Part 1 Tutorial Index ➖➖
    ✨ Creating Simple Menus
    ✨ Creating Multi Menus
    ✨ Time Script 
    ✅ Subscribe to my channel "Game Lovers Villa" to get the tutorial videos

    822 downloads

       (1 review)

    0 comments

    Updated

  2. Set Mutli Password For Script

    Hello Guys , Today
    I Will Show You ,
    How To Set Multipe
    Passwords For Your
    GG LUA Script .
    Its Easy , Follow My
    Simple Codes .
     

    4,835 downloads

       (1 review)

    0 comments

    Updated

  3. All in one Script for menu templates.

    This is for beginners.All type of script menus at one place.Script has inbuilt all types of basic menu templates.Just run the script and select your choice , the template will be copied to your clipboard , just paste in new file and make your changes.It makes writing scripts very easy , just small changes and your script is ready. 
     

    3,418 downloads

       (1 review)

    0 comments

    Updated

  4. gg.choice menu which shows which hack was used last time

    Simple gg.choice menu which shows what hack was used time. 

    2,808 downloads

       (1 review)

    0 comments

    Updated

  5. Online & Offline Test Script

    This script can work online and offline you can choose online or offline. This test script made by me, If you want to make a online script or have any questions my discord is Blez#4340

    989 downloads

       (1 review)

    0 comments

    Submitted

  6. Learning to stylish strings function

    Hello Friends ✋🙄
    In this tutorial, I have given you a simple way to change strings font.
    i see developers usually do copy/paste some stylish text in their source .
    but in this file you learn how to write orginal font and when run your script see a stylish text of it !
    this is really easy.
    please in first step you read this file and later run it.
     
    for more font use of this FILE
     

    782 downloads

       (1 review)

    0 comments

    Updated

  7. Error handling for GG API functions template

    Note:
      This file is intended to be used by script developers.
      If you don't develop scripts or don't know what it is, ignore this file.
    Description:
      The file consists of three functions:
        - "attachHandler" function modifies a function in a way that when it returns a string, specified error handling function is called with that string as argument. It returns modified version of the function. This function should only be used on functions that return a string with error description when an error occurs. There is a list of such functions from GG API in the file.
        - "defaultHandler" function is an example of error handling function.
        - "testError" function (commented by default) "simulates" a function that has returned a string with error description, used for testing.
    How to use:
      1. Include contents of the file at the beginning of your code.
      2. Optionally create custom error handling functions. Error handling function has to accept 1 argument - a string with error description.
      3. Use "attachHandler" function to get modified version of the function and either redefine original function with it or store it in a new variable.
      4. Repeat step 3 for all desired functions.
    Examples: 
    -- Custom error handling function local function myHandler(errorText) gg.toast('Whoops, looks like something went wrong', true) gg.toast('Mysterious error: ' .. errorText) print('Description of the error that has occurred during script execution:\n' .. errorText) end -- Using default error handling function and redefining the original function gg.searchNumber = attachHandler(gg.searchNumber, defaultHandler) -- Using custom error handling function and storing modified function in a new variable local getResultsModified = attachHandler(gg.getResults, myHandler) -- If an error occurs, "defaultHandler" function will be called gg.searchNumber('123', gg.TYPE_DWORD) -- If an error occurs, no error handling function will be called local results1 = gg.getResults(100) -- If an error occurs, "myHandler" function will be called local results2 = getResultsModified(100)

    696 downloads

       (1 review)

    0 comments

    Updated

  8. Template

    Tired of copy pasting your menu code over and over ?,
    Wanna ready to use menu ?,
    Need switch support and easy menu ?
    Here,
    Firstly, you need a most basic lua knowledge such array to use this template.
    I already put example into script, so enjoy !
    I hope this will help most user struggling with thousand spam of line contain the same thing.
    Don't forget to press ❤ button below !
     
    Formatting / Usage:
    ... MyMenu = { -- { Menu Title: String, Menu Type: Boolean }, {"Template v3 - saiaapiz", true}, { -- { Button Name: String, Button Content: table or function } "Destroy Earth !", function() gg.alert("We still need earth, aborting ..") end, -- {"Button Name / Submenu Name", Table: Menu Structure } "What console did you like ?", { -- Submenu, please look at example how to utilize it. } ... -- Don't forget to include initMenu function code into your project.
    Example of usage: 
    Templates for Using Offsets (#68um1uri) by @AKRAMRAZA
     

    3,720 downloads

       (3 reviews)

    3 comments

    Updated

  9. Auto freeze LUA tools 100% works all hack game

    Penerbit : FREZEE • GAMING`ŹÓ
    note this is just sample text for lua not to be used always 
    bantuan lua gg 
    improvement : FREZEE • GAMING`ŹO
    nikmati di gg

    1,157 downloads

       (1 review)

    0 comments

    Submitted

  10. Simple Check Box Menu In "gg.prompt" ( without codes ).

    Hello Guys. 
    It is Simple Check Box Menu . 
    If You Like Templastes Like This , I will Continiu Uploading This Type Files. 

    1,659 downloads

       (1 review)

    2 comments

    Updated

  11. (Anti-Dec) Block SSTool, Threat and Neoterm

    (Anti-Dec) Block SSTool, Threat and Neoterm
    Thanks for help to Erbaev.
    Screenshot by Laysen.
    This code block sstool.

    485 downloads

       (0 reviews)

    0 comments

    Submitted

  12. Template Prompt, +9 more look at tags

    NEW !! :
    1 I've added a function or what ever you call it that's detect if the user got No Results ( Used For searches and prompt search)
    2 i added multiple prompt search
    --------------------------------------------------------------------
    Hi The Script Has 
    checkbox
    Multi choise
    prompt
    alert with options
    text copier
    group search with different Types
    search and edit 
    multi prompt
    if the user got no results (prompt search)
    if the user got no results (normal search) 

    1,459 downloads

       (0 reviews)

    3 comments

    Updated

  13. HOW TO MAKE A LUA SCRIPT FOR ANY GAME

    More scripts from the creator
    This is a  template that will help you create a script menu for any game
    Download the apps used in this video:
    lua editor
    GG tester
     
    WATCH THESE VIDEOS TO KNOW HOW TO MAKE A LUA SCRIPT FOR ANY GAME
    PART 1
    WATCH THIS VIDEO TO KNOW HOW TO MAKE A LUA SCRIPT FOR ANY GAME
     
    PART 2:
     
     
    PART 3
     

    17,874 downloads

       (0 reviews)

    4 comments

    Updated

  14. Completed Template

    So this is completed u just need to fill these
    gg.alert('')
    gg.setRanges(gg.REGION_)
    gg.searchNumber('',gg.TYPE_)
    gg.getResults('')
    gg.editAll('',gg.TYPE_)
    In the lua file thats all
    If u want too remove the gg.alert

    1,336 downloads

       (0 reviews)

    0 comments

    Submitted

  15. Simple Hack Script by Backlift

    This is a Simple hack script.
    Purpose of this script is mostly a source code for understanding lua scripts and making scripts for other games based on it.
    It's intentionally with some unnecessary commands, use this as a manual.
     
     

    4,267 downloads

       (0 reviews)

    0 comments

    Updated

  16. Verification

    A simple verification for your script

    232 downloads

       (0 reviews)

    0 comments

    Submitted

  17. Simple multiple online password with using php

    I had nothing to do again, so this was born.
    The use is quite simple, there is an example of use in the file and the php code itself (because you can only upload lua files).

    329 downloads

       (0 reviews)

    0 comments

    Updated

  18. convert an offset to a function for patching "hookOne" offsets

    A simple, somewhat useless script to convert an offset to a function for patching "hookOne" offsets: 
    function hookOne(library, flag, offset, value)
        list = gg.getRangesList(library)
        for i in pairs(list) do
            if list[i].state == "Xa" then
                start = list[i].start
                break
            end
        end
        local t = {}
        t[1] = {}
        t[1].address = start + offset
        t[1].value = value
        t[1].flags = flag
        gg.setValues(t)
    end
    ts.lua

    77 downloads

       (0 reviews)

    0 comments

    Submitted

  19. Script os.date to Add in your Script

    📆🕛⏳
    Script Date and Time to Add in your Script
    📆🕛⏳

    667 downloads

       (0 reviews)

    0 comments

    Submitted

  20. Script (Timer) os.clock to Add in your Script


    Script  (Timer) os.clock to Add in your Script

    443 downloads

       (0 reviews)

    0 comments

    Submitted

  21. Template Multichoice Menu Inside Multichoice Menu

    It is a template for a menu which multichoice sub menus inside multichoice sub menus inside multichoice sub menus. It can be extended as many sub menus you want.

    1,627 downloads

       (0 reviews)

    0 comments

    Submitted

  22. [1.0] Crystal Exec Runtime.lua

    Hi guys its crystal mods! 
    Tired of rewriting code especially offset code multiple times?
    well this script can only do it multiple times in ONE FUNCTION!
    Warning: the long function Runtime() must be declared above all of your functions so you can access it when u need it
    How to use it:
    1.Paste the offset code function above all your hack functions
    2. when you want to use it simply call the function then enter the following information 
    example use: Runtime(32,100,gg.TYPE_DWORD,0x91,gg.TYPE_FLOAT,0.01)  {search 100 in A  also DWORD, sleeps 10 seconds for a value change then prompts to enter the new value, refines the value then starts adding the offset you entered, selects the flags you would like to edit it into then edit it!}
    this will search your value in whatever range, and data type, then it will give you 10 seconds to change the value, you do so then it will get one results after refining your input. it will do the offset method as normal until you get your desired want 🙂 
    Next features:
    Check if lib file is present
    Add Down offset + faster execution
    Self Encode v1.0 (to prevent modifcation) (if you want unwanted calls simply rename the function)
    Please use credits if ever reposting after modifying ^^
    please comment your thoughts on this script thanks 

    674 downloads

       (0 reviews)

    0 comments

    Submitted

  23. Templates For Using Prompt Inputs in Scripts

    This script is for beginners who don't know or get confused regarding how to use prompt inputs.It contains templates for getting input from user and then using it in the script. Also , these are a few possible ways , I tired to cover all possible basic aspects , you can be innovative and create much more scripts by using these basic ideas. Just run the script and select your choice , template will be copied , paste in a new document file , to see it and use it in any script.
     

    1,418 downloads

       (0 reviews)

    0 comments

    Updated

  24. GameGuardian a master script (For learn)

    For help, you can join my discord server

    1,116 downloads

       (0 reviews)

    1 comment

    Updated

  25. Language Select V1

    Language select easy to edit.
     
    You can add more languages 
     
    -- contact --
    Telegram : https://t.me/learn_lua
    Facebook : Avartar Icecream
    Youtube : https://www.youtube.com/learnlua

    509 downloads

       (0 reviews)

    0 comments

    Updated


  • 113763 What virtual space do you use?

    1. 1. What virtual space do you use?


      • Parallel Space (best choice)
      • VirtualXposed
      • Parallel Space Lite
      • GO Multiple
      • Dr. Clone
      • Virtual Space
      • ES Parallel Accounts
      • NoxApp+
      • DualSpace
      • Octopus
      • AppBox
      • DualSpace Blue
      • DualSpace Lite
      • 2Face
      • Other virtual space
      • I have a root
      • Multiple Space
      • clonneapp
      • Parallel Accounts
      • APP Cloner
      • App Hider
      • Calculator+
      • Multi
      • App Hider Lite
      • Dual App
      • Phone (Dialer Vault)
      • Notepad
      • Parallel Space Pro
      • VMOS
      • Clone App
    2. 2. Do you use the Internet?


      • No, I don't.
      • Yes, I do.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.