Categories > Coding > Lua >

Tutorial - how to make a key system for ur script hub

Posts: 14

Threads: 8

Joined: Jun, 2023

Reputation: 0

Posted

Hello guys Sanskingstop here and today i will show u how to make a key system

local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() -- you have to put this other wise there will be no gui

local Window = Library.CreateLib("Sanskingstop key system", "DarkTheme") -- this will make gui from that library

local Tab = Window:NewTab("key system") -- this is to make tab in gui
local Section = Tab:NewSection("Key") -- this is to make section in tab

local key = "yourkeyisgoingtobehere"

local key2
Section:NewTextBox("key", "enter key", function(txt) -- this is to make textbox for key
	key2 = txt -- this will make key2 whatever you put inside the textbox
end)

Section:NewButton("check key", "checks your key", function() -- this button will check key
    if key2 == key then
        print('key is real')
    else
        print('fake key')
    end
end)

 

give me rep for more tutorial

for ur roblox script hub

if i put -- then i am telling you what it is

 

 

  • 0

best roblox lua exploit scripter

Posts: 1227

Threads: 68

Joined: May, 2022

Reputation: 17

Replied

Do NOT do this, its not secure at all, anyone could bypass something like this in a few minutes

Comments

Sanskingstop 0 Reputation

Commented

it can not be bypass if i obfuskate the key sytem

  • 0

Whoman 17 Reputation

Commented

@Sanskingstop you could hook httpget to return a version of kavo thats modified to log all the new buttons, and check their text, if its a key check button, check the callback for any constants/upvalues and modify them to match the right key and boom, cracked

im sure theres a lot of better ways to crack this but thats one way to do it

  • 0

  • 0

Did I mention I use arch btw?

Posts: 326

Threads: 18

Joined: Nov, 2021

Reputation: 39

Replied

Would not recommend, easy to bypass but still cool tutorial

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )