Lua Gameguardian @luagameguardian Channel on Telegram

Lua Gameguardian

@luagameguardian


2019 Gameguardian
Admin : @Vikarihonest
Lua Obfuscator :
http://luaobfuscator.epizy.com

Lua Gameguardian (English)

Are you a fan of Lua scripting and enjoy gaming on your mobile device? Look no further than Lua Gameguardian, a Telegram channel dedicated to providing tips, tricks, and tutorials on using Lua scripts to enhance your gaming experience. Founded by a passionate individual like you, this channel is a haven for gamers who want to take their gameplay to the next level. Whether you're looking to customize your favorite games, unlock hidden features, or simply learn more about Lua scripting, Lua Gameguardian has got you covered.

With Lua Obfuscator also available for use, you can protect your Lua scripts from being easily deciphered by others, ensuring that your hard work remains safe and secure. Join the Lua Gameguardian community today and start exploring the endless possibilities that Lua scripting can offer in the world of mobile gaming. Elevate your gaming experience with Lua Gameguardian - where passion for Lua meets the thrill of gaming!

Lua Gameguardian

26 Dec, 13:56


Create Esp with LibVPos

Lua Gameguardian

20 Dec, 17:59


GG Merger v3
gg.getList + Vec3 Apifunction
for Get Position OBJ in Games

Lua Gameguardian

03 Dec, 18:22


some games may have a different way of setting up their worlds. but while using the same engine or framework they have close similarities. as long as there is documentation provided it will help with planning.

::RENDER DISTANCE::
this is the distance of the object that will be visible to the main player.
gg.setRender(20)

::DROP OBJECT::
only if the games have some files like fbx , gltf or glb.
gg.dropObj(file,...params)

::PARTICEL::
one of them is the effect of sword clash or a smoke. it has a big impact on the game ecosystem which can cause crashes unless used carefully.
rather than changing the number of particles such as dust it is better to change their size.
gg.setParticelSize(5)

::AIMBOT HEAD::
aiming the gun at the opponent's head automatically. but some games have different logic for this first person or third person.
in old I used to make a simple game for this when the player jumps the bullet will be straight and will not change, that means there is a bullet trajectory. and other things like rotating weapon objects to throw bullet objects. it really throws other objects straight but some use gravity so it's like a grenade. or first person games actually don't have player objects but camera objects that walk around the building this is easier to arrange. For some games, there are already auto aim but only to the body 😅 not to the head because it will finish the game too quickly.
--Not Avabile

::DANGEROUS VALUE::
This is usually a call to display a visual in the game. such as calling a list of items or vip emoticons. Usually the number is a special id or it could be an index that needs to be given correctly.we need to detect the traffic of that value. just get the method name.
gg.TRAFIC(class,methodname)

if it's all capital letters it means it's working in the background with another thread. collecting values ​​in /sdcard/trafic.txt.

LIKE if you like this topic.
Support : @Luagameguardian

Lua Gameguardian

03 Dec, 08:51


::GET FUNCTION::
gg.getInt(class,fieldname)
--10
gg.getString(class,fieldname)
--DeviceModel
gg.getFloat(class,fieldname)
--22.2f
gg.getBool(class,fieldname)
--false
gg.getList(class,fieldname)
--table {}

gg.getInt(class,methodname)
gg.getString(class,methodname)
gg.getFloat(class,methodname)
gg.getBool(class,methodname)
gg.getList(class,methodname)

::SET FUNCTION::
gg.setInt(class,fieldname,100)
gg.setString(class,fieldname,"UserGuest")
gg.setFloat(class,fieldname,2.50)
gg.setBool(class,fieldname,true)

gg.setInt(class,methodname,integer)
gg.setString(class,methodname,string)
gg.setFloat(class,methodname,float)
gg.setBool(class,methodname,boolean)

::SET COLOR::
--Param (Color value)
gg.setColor(class,methodname,"#ff0000")

::GET OBJ POSITION::
player=gg.getList(class,methodname)
for i = 1,#player do
print(Vec3(player[i].x))
print(Vec3(player[i].y))
--3D
--print(Vec3(player[i].z))
end

Lua Gameguardian

28 Nov, 12:01


Add Background Color in Games

Lua Gameguardian

24 Nov, 09:07


Camera Settings Menu

Lua Gameguardian

22 Nov, 08:35


GG Merger v2
Games : Horrorfield

Lua Gameguardian

22 Nov, 04:26


menu=gg.choice({"camera"},0,"title")
if menu==1 then
--camera
input=gg.prompt("add value")
for i = 20, 100, 20 do
gg.sleep(300)
gg.toast(i.."%")
end
gg.alert("Camera Set :"..input)
gg.setUnityCamera(input)
end

New ApiFunction :
🔤🔤.setUnityCamera(int)

Note :
1️⃣.this is a function only for unity games without offset.
2️⃣.available on gg merger v2.

Lua Gameguardian

15 Nov, 17:47


I want to ask.

If there is an apk that has security like Liapp Alert, will you leave it?

If there is an apk that has security like AppGuard, will you leave it?

or something smaller like anti tamper , encrypted files , or obfuscated strings . would you leave the application ?

if yes then CONGRATULATIONS!!!
the game developer has successfully banished you.

there are many other weird things that can make you thrown out of the game.
(it was planned also).

DECFILE PROVIDES A SERVICE TO HANDLE ALL OF THAT.

we will be releasing some tools for free in the near future.

Lua Gameguardian

14 Nov, 02:06


Lua
for i = 20, 100, 20 do
gg.sleep(300)
gg.toast(i.."%")
end

ʟᴏᴀᴅɪɴɢ ᴛᴏᴀsᴛ

Lua Gameguardian

13 Nov, 14:59


for the topic GG Merger is too long and the channel is separated here.

https://t.me/gameguardianMerger

there is a free version that supports a few functions and help if you have difficulty installing.

Lua Gameguardian

06 Nov, 11:55


Dr__Driving.apk
Fixed : Android 12,13,14

Lua Gameguardian

06 Nov, 10:52


Tutorial How to Merger Gameguardian

Lua Gameguardian

04 Nov, 11:46


Merger gg with games

Lua Gameguardian

04 Nov, 11:10


Script gg is located in test.lua in /Assets/ folder. It supports Lua language and has some gg apifunction.

1.gg.alert
2.gg.choice
3.gg.toast
4.gg.sleep
5.gg.setRanges
6.gg.searchNumber
7.gg.getResults
8.gg.editAll
9.gg.setValue

🕊Now gg works on no root and no Virtual.

Support @Luagameguardian

Lua Gameguardian

01 Nov, 11:01


Memory Mapping Tools

Lua Gameguardian

28 Oct, 16:18


Solitaire Games
Simple ESP with Text Detector

Lua Gameguardian

23 Oct, 03:44


::Apifunction for additional security::

lasm=gg.d(1)
load=gg.d(2)
log=gg.d(4)

if lasm then
--Important
print("lasm")
return
end
if load then
print("load")
return
end
if log then
print("log")
return
end

price 10$ for service moded gg
contact : @vikarihonest

Lua Gameguardian

24 Sep, 18:53


Menu Tester Gameguardian
with Floating Search Class

Lua Gameguardian

19 Sep, 11:51


Moded Open Service :
1.updates GG capabilities
2.adds new activities
3.adds apifunction features (gg.class)
4.ui design
5.add ads or shortlinks
6.merger GG with Virtual
7.GG size reduction
8.unique encryption with custom header

Luagameguardian can implement everything you need in GG , contact @vikarihonest

Note:
if you have other applications with Lua framework or support lua scripts can be sent too.

Lua Gameguardian

19 Aug, 02:41


Gameguardian Video
*can be used to create video tutorials, openings, achievements.

ApiFunction:
gg.video(path video)

Lua Gameguardian

08 Aug, 12:27


HTML tags gameguardian
(support icon and text color)
Str1="<font color='hexcolor'>String</font>";
Str2="<img src='filepath'>String</img>";
gg.choice({Str1},nil,"menu")
gg.multiChoice({Str2},nil,"menu")

price : 📌 20$
contact : @vikarihonest
service : 10 minutes

Lua Gameguardian

16 Jul, 18:36


Gameguardian Change Location Device
ApiFunction :
gg.setLocation(Double Latitude,Double Longitude)

Lua Gameguardian

13 Jul, 07:19


How to Use Enc GGV
by Luagamegudidan

Lua Gameguardian

03 Jul, 18:37


gg script display that cannot be screenshot :
1.open classdex gg with apkeditor.
2.go to the /Landroid/ext/i.smali folder.
3.look for getWindow and set the flag there 0x2000.

Lua Gameguardian

01 Jul, 07:43


Close other Gameguardian in memory, to run your own gameguardian.
new Apifunction :

gg.closeOtherDaemond()

ApiFunction or Cpp price : 15$
@Vikarihonest

Lua Gameguardian

24 Jun, 04:36


This request started from one of the GameGuardian pages:

https://gameguardian.net/forum/topic/36511-does-gg-support-executing-shell-files-sh-as-mt-manager-as-function-inside-script/

now gg.execute makes your GameGuardian able to run shell code.

Example :
sh=gg.execute("ls /sdcard/")
print(sh)


ls | list file or directory
mkdir | create directory
touch | create file
cp | copy file
mv | move file
rmdir | remove empty directory
rm | remove file and directory
file | check type items
du -sh | get size directory
df -h | get free space directory
kill | cancel process apk with pid
logcat -d | get last info from apk
logcat -b crash | get crash info from apk

chmod | change permission file or directory

In gg.execute a warning will be given before running it for permission and safe use, the same as gg.makeRequest.

just add the gg.execute function to original GG, contact @Vikarihonest

Lua Gameguardian

21 Jun, 05:29


how to upload videos on YouTube freely, and watch them via the decode tool directly.

Lua Gameguardian

18 Jun, 12:31


::Inject Object in Game::

how can you add 2D objects to it, for example replacing a car with a picture of a car that you have, this still uses memory because the objects in the 2D game world  really changed.

gg.changeModel(Tools(OldCar.png),Convert(NewCar.png))

2 different functions working together in memory, here apifunction only calls commands.

Lua Gameguardian

17 Jun, 06:07


gameguardian background video (UI) 64bit

Lua Gameguardian

22 May, 15:46


Create Esp only for 2d games with Image Detector. without virtual and without root permission.

Lua Gameguardian

21 May, 02:57


Monitor another Android screen remotely.

Lua Gameguardian

21 Apr, 10:11


block canary for apk

Lua Gameguardian

21 Apr, 01:38


new 20 instant gameguardian features with smali part2. for other feature you can request : @Vikarihonest

Lua Gameguardian

11 Apr, 08:44


Gameguardian Block Capture
#HttpCanary
#PacketCapture