This guide explains how to register on AuthGuard, create revenues with Linkvertise, and integrate the library into your script.
To register on AuthGuard, click the βGet Startedβ button. You can sign up with Discord or an email.
If you donβt fully understand this section, you may skip it and go to Storage.
AuthGuard.GetKeyLink({
Service = __SERVICE_ID__
}) --> string
AuthGuard.ValidateKey({
Service = __SERVICE_ID__,
Key = 'your_key_here'
}) --> string (invalid or validated)
Checks if the key is valid and returns validated or invalid.
local key = "YOUR_KEY_HERE"
print("Get your key at:", AuthGuard.GetKeyLink({
Service = __SERVICE_ID__,
}))
if AuthGuard.ValidateKey({
Service = __SERVICE_ID__,
Key = key
}) == 'invalid' then
warn("Invalid Key")
return
end
-- Your actual code starts here
print("Key valid. Running script...")
print("Your HWID is:", AG_Hwid)
print("Your key expires at:", os.date('%Y-%m-%d %H:%M:%S', AG_ExpiredAt))
if AG_IsPremium then
print("You are a premium user!")
else
print("You are a free user.")
end
print("Your Discord ID is:", AG_DiscordId or "Not linked")
You can use your own UI or use the example UI below.
Source UI: AuthGuard GitHub UI
UI + Library: Download Full Code
The AuthGuard Key System simplifies Roblox script security. Setting it up with Linkvertise + obfuscation enhances protection and UX.
Source: docs.authguard.org
π Looking for Premium Key & Loader setup? Go to Premium & Loader Guide