Lua Gameguardian
3.98K subscribers
189 photos
67 videos
116 files
86 links
Established in 2019, this channel is a dedicated space for exploring GameGuardian and Lua-based experiments.

Admin : @Vikarihonest
Lua Obfuscator :
http://luaobfuscator.epizy.com
Download Telegram
V = gg.makeRequest("https://luagameguardian.com/vikari/checkVisitor.php").content
print("🌐Public Visitor : "..V) --if Value 7 Visitor

V2 = V - 7

print("👤Visitor : "..V2)



--You have to count the number of visitors first before using it, you just need to reduce the number of visitors and it will return to a value of 1

◈ ━━━━━━━ ⸙ ━━━━━━━ ◈
Count Visitor Script Gameguardian.
@Luagameguardian
@Vikarihonest
Forwarded from C++
base.apk
22.1 MB
Game : Battle Creep
📓Unity
can you make cheat for this game ?
Contact @Vikarihonest
Lua Gameguardian
Rate for Game Battle Creep
Wow thank for rate my game if you want making game with your idea just Dm @Vikarihonest
V = {"🍎","🍌","🏝","🐈","🐙","🐦","🐧","🐼","🍕","🍩","🍬","🍵","🍤","🚗","🏘","🚀","🍊","🍄","🦊","🌻"}

V2= {"Apple","Banana","Island","Cat","Octopus","Bird","Pinguin","Panda","Pizza","Donuts","Candy","Tea","Shrimp","Car","House","Rocket","Lemon","Mushroom","Fox","Flower"}

V3 = math.random(1~20)
V4 = math.random(1~20)
V5 = math.random(1~20)
Res= V[V3]..V2[V3]
Auth = V[V3]
Auth1 = V2[V3]
Auth2 = V2[V4]
Auth3 = V2[V5]
V6 = gg.alert(Auth,Auth1,Auth2,Auth3)
if V6 == 1 then
X = string.find(Res,Auth1)
if X == nil then
gg.alert("🔄Try Again")
os.exit()
end
end
if V6 == 2 then
X = string.find(Res,Auth2)
if X == nil then
gg.alert("🔄Try Again")
os.exit()
end
end
if V6 == 3 then
X = string.find(Res,Auth3)
if X == nil then
gg.alert("🔄Try Again")
os.exit()
end
end
gg.alert("
Succes")

◈ ━━━━━━━ ⸙ ━━━━━━━ ◈
Verification Icon Script Gameguardian.
@Luagameguardian
@Vikarihonest
V = gg.prompt({"Text"},nil,{"text"})
V2 = V[1]
V3 = string.len(V2)
if V3 > 10 then
print("letters must be less than 10")
return
end
if V3 < 3 then
print("letters must be more than 3")
return
end


◈ ━━━━━━━ ⸙ ━━━━━━━ ◈
limit the number of letters Script Gameguardian.
@Luagameguardian
@Vikarihonest
Media is too big
VIEW IN TELEGRAM
🔑How to make key & delete key one device apk
🗒Script Gameguardian
🛃Work All GG
🛃Work All Android
🛃Work All Phone
Which good Encryption Script Gameguardian?
Anonymous Poll
75%
💠LuaV19 Ajax (online)
25%
🔔Vika v1 (gg mods)
Vika v1 encryption
Forwarded from Gameguardian Merger
Api-Key for fake ip address
(Using gameguardian)
Edit IP No need Change Vpn,
100IP = 5minutes
if you want Test With Counter php Dm: @Vikarihonest
Forwarded from Gameguardian Merger
PHP Curlを使用したクリックボタンのウェブサイト

例:
Facebookのようなボタン、YouTubeのようなボタン、Googleのボタン検索。

最初に、名前ボタンとは何か、サーバーのボタンの値は何かを知る必要があります。

<input type = "submit" name = "vikari" value = "like" />

HTMLで名前と値を取得するには、「vikari = like」にしてください

次にHTMLでアクション名を取得します。

<form action = "index2.php"

tobe "Index2.php"

php.iniでcURLを有効にする

<?php
$ ch = curl_init();
curl_setopt($ ch、CURLOPT_URL、 'http://website/index2.php');
curl_setopt($ ch、CURLOPT_POSTFIELDS、 'vikari = like');
curl_setopt($ ch、CURLOPT_RETURNTRANSFER、1);
curl_exec($ ch);
?>

written by @Vikarihonest
local str = "abcdef/ghijklmn/opqrstuvw/xyz/"
local line = string.byte("/")
for i = 1, #str do
if str:byte(i) == line then
print("🔎found on line :", i) end end


◈ ━━━━━━━ ⸙ ━━━━━━━ ◈
look for row numbers Script Gameguardian.
@Luagameguardian
@Vikarihonest
This media is not supported in your browser
VIEW IN TELEGRAM
📄One Device Key Script Gameguardian:
Work All Android
Work All Device
Work All GG
//----//
One Click
Expired Key Fiture
Delete Key Fiture
100% Safe
📌Price:
10$/1 month
55$/1 years
Paytm, Paypal, OVO,
Contact @Vikarihonest
Support @Luagameguardian
V= gg.makeRequest('https://vikari.xlinux.info/key.txt').content

V2=gg.prompt({"Key"},{nil},{"text"})
if V2 == nil then
return
end
if V2[1]==V then
else
a=gg.alert("Wrong Key","Get Key")
if a == 1 then
local shortlink = "http://vikari.xlinux.info/Key.php" --//Generate Key After 1hours Automatic..
gg.alert(shortlink,"Copy")
gg.copyText(shortlink)
gg.toast("copying")
os.exit()
else
os.exit()

end
end


◈ ━━━━━━━ ⸙ ━━━━━━━ ◈
Generate Key Script Gameguardian.
@Luagameguardian
@Vikarihonest
Forwarded from C++
🛠Hex Converter.lua
612 B
Lua Gameguardian
🛠Hex Converter.lua
Test code 🌾 : Hex Coverter


local function hex_to_string (str)
return (string.gsub(str, '..', function (cc)
return string.char(tonumber(cc, 16))
end))
end
local function string_to_hex (str)
return (string.gsub(str, '.', function (c)
return string.format('%02X', string.byte(c))
end))
end
local dir = "/sdcard/"
local data = gg.prompt({
"add script"
}, {
dir
}, {
"file"
})[1]

io.open(data, "r")
local source = io.read("*a")
io.close()

local menu = gg.choice({
"🔢Hex to String",
"🔠String to Hex"
}, nil, '')

local func = menu == 1 and hex_to_string or menu == 2 and string_to_hex or os.exit()
io.open(data..".🗂Hex.lua","w")
io.write(func(source))
io.close()
Media is too big
VIEW IN TELEGRAM
How to Open Obfuscate Byte, Using Key Finder