Miscellaneous
The Miscellaneous library contains functions that do not belong to a specific category.
What can you do?
With the Miscellaneous library, you can:
- Identify the current executor and version using
identifyexecutor - Send HTTP requests and receive full responses with
request
What does request support?
The request function supports a variety of features:
- Custom HTTP methods (
GET,POST,PATCH,PUT,DELETE) - Request and response headers
- Request body and cookies
- Built-in executor identification headers, such as
PREFIX-User-IdentifierandPREFIX-Fingerprint
What can't you do?
requestis synchronous and yields until the server responds - it's not suitable for parallel messaging.- Some executors may restrict access to external domains (such as the Roblox API for account safety purposes) or block specific methods for security reasons.
identifyexecutorshould never be relied on as a secure identifier - it's for informational purposes only.