Introduction
Awpe is the premier interface suite for Luau developers who demand speed, security, and beauty.
Booting the Library
To get started, load the Awpe library into your script using the loadstring method.
local Awpe = loadstring(game:HttpGet('https://raw.githubusercontent.com/Awpe/Library/main/Source.lua'))()
Creating a Window
The window is the main container for your UI elements. You can customize the theme and toggle keybind here.
local Window = Awpe:CreateWindow({
Name = "My Script",
LoadingTitle = "Awpe Suite",
LoadingSubtitle = "by YourName",
ConfigurationSaving = {
Enabled = true,
FolderName = "AwpeSettings",
FileName = "MainConfig"
},
KeySystem = true, -- Set to true to enable the key system
KeySettings = {
Title = "Security Check",
Subtitle = "Key System",
Note = "Join the discord to get your key",
FileName = "Key",
SaveKey = true,
GrabKeyFromSite = false,
Key = {"Hello", "Awpe123"},
Url = "https://discord.gg/awpe"
}
})
Advanced Key System
The Awpe Key System includes built-in features to prevent brute-force attacks and improve user experience:
- Copy Link Button: Allows users to instantly copy the key URL.
- Shake Effect: UI shakes violently on incorrect entries.
- Auto-Save: Keys can be saved locally so users don't have to re-enter them.
- Attempts: Users are kicked after 5 failed attempts for security.
Visual Effects
Awpe automatically handles immersive effects for you. When the UI is toggled, it applies a Gaussian blur to the game background.
-- This happens automatically when using:
Awpe:ToggleUI() -- Toggles visibility and background blur