How to Use AuthGuard Key System πŸ”‘

This guide explains how to register on AuthGuard, create revenues with Linkvertise, and integrate the library into your script.

πŸ“ Registering on AuthGuard

To register on AuthGuard, click the β€œGet Started” button. You can sign up with Discord or an email.

AuthGuard Registration Example

πŸ’° Creating Revenues

Using Linkvertise

  1. Create a Linkvertise account
  2. Go to the Full Script API page and enable it.
  3. Find your Linkvertise ID and Anti-Bypassing Token in account settings.
Linkvertise Full Script API Example Linkvertise Revenue Setup Example Linkvertise Revenue Setup Example

πŸ—οΈ Create Providers

  1. Click Create Provider.
  2. Enter a Name, e.g. Linkvertise.
  3. Set Key Expiration, e.g. 1d.
  4. Click the checkmark to edit provider checkpoints.
  5. Select a Revenue β†’ Linkvertise.
  6. Click X to finish.
AuthGuard Create Providers Example

πŸ“š Library v1

If you don’t fully understand this section, you may skip it and go to Storage.

πŸ”— Get Key Link

AuthGuard.GetKeyLink({
  Service = __SERVICE_ID__
}) --> string

βœ… Validate Key

AuthGuard.ValidateKey({
  Service = __SERVICE_ID__,
  Key = 'your_key_here'
}) --> string (invalid or validated)

Checks if the key is valid and returns validated or invalid.

πŸ§ͺ Example Usage

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")
AuthGuard Library v1 Preview

πŸ“š Library – ui-v1 Setup

You can use your own UI or use the example UI below.

Source UI: AuthGuard GitHub UI

UI + Library: Download Full Code

Storage (Upload Script / Obfuscate / Get Loadstring)

  1. Open the AuthGuard Dashboard β†’ STORAGE.
  2. Click Upload Script β†’ choose Free.
  3. Upload your code or the bundle from the link above.
  4. Click Obfuscate β†’ then the info icon.
  5. Copy the Loadstring and run it in your executor.

πŸ‘€ Preview

AuthGuard UI v1 Preview

πŸ”Ž Final Thoughts

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