Archived
This topic is now archived and is closed to further replies.
Recommended Posts
-
Similar Content
-
By MAARS
Hello I saw several people wondering how to create an online scripting system for game guardian, but most of these tutorials are paid and not everyone has the money for it, so I decided to do a free tutorial to show you how to do this.
In this tutorial we will create:
- Login Register
- Admin Panel (Ban User, Upload Script etc ..)
- Keys systems (One device one key)
Join us to the jungle :
Youtube
Telegram
-
By TisNquyen
View File Lua Chunk Generator
Script to create chunk code using GameGuardian lua
Password : chunks
Video : Click here
Submitter TisNquyen Submitted 02/03/2021 Category Tools
-
By TisNquyen
Script to create chunk code using GameGuardian lua
Password : chunks
Video : Click here
-
By zynos
Hi!
What I want is to store fake imei in pastebin row and script check if the imei is the same as on the paste bin then can run
Without using phone imei
function ST_CHECK() local isAuthorized=false local link="link" local revo = revo or gg local currentID=XX if not(currentID) then while(true) do gg.alert("Invalid ANDROID ID") end end local RequestResponse = gg.makeRequest(link).content if not(RequestResponse) then while(true) do print("Check your internet connection") os.exit() end end for ID in (RequestResponse.."\n"):gmatch("(.-)\n") do if ID == currentID then isAuthorized=true break end end if not(isAuthorized) then while(true) do print("Unauthorized User") os.exit() end end end checkID() This is an exemple, i don't want to use phone imei just store a fake imei i pastebin and ask script to check it , if it is the same as on the script
-
By faiz92786
Hy guys i need help regard lua
I want to edit search value by lua not by using
gg.editall because it edit all value found
I want to edit few value like i search for group value 1;2;3;4::23
And it find 1 , 2, ,3 ,4 so i want to edit only two value
Which if like i want to edit value 2 >98 and value 4>77
-