Getting Started
Learn how to protect your scripts and manage license keys in minutes
This required a basic understanding of lua/luau, if you do not have those this is not for you.
rat.lat is a script protection and licensing platform designed for roblox exploit devs. It allows you to lock scripts behind license keys, enforce HWID/IP checks, and control how many times a script can be executed.
This documentation will help you integrate rat.lat into your scripts using one of two approaches:
Validation API: Gives full access to the API and handle things how you want.
Module API: Offers easy and simple implimentation for the api.
Both approaches use the same backend and security checks.
The difference is how much control you want over the implementation.
Before you begin, make sure you have:
- A script created on the rat.lat dashboard
- Your SCRIPT_ID
- A valid license key
- An executor that supports HTTP requests (request, HttpGet, etc.)
Once you have these ready, choose one of the following guides to get started:
- If you want flexibility, read the Validation API section.
- If you want the fastest setup, read the Module API section.