0.2.1 • Published 1 year ago
macs-api v0.2.1
macsploit
A Node.js package for executing Roblox scripts via a socket connection.
Installation
To install the macsploit package, run:
npm install macsploitUsage
Here is an example of how to use the package:
const execute = require('macsploit');
// Your Roblox script
const script = `
-- Your Roblox Lua script here
print("Hello from the script!")
`;
execute(script);API
execute(script)
Parameters:
script(string): The Roblox script you want to execute.
Description:
Sends the given script to a local server running on port 5553. The script should be a string containing the Lua code you want to execute in Roblox.
Example:
const execute = require('macsploit');
const script = `
print("Hello, Roblox!")
`;
execute(script);License
This package is licensed under the MIT License.
Key Sections in This README:
- Title and Description: Provides a brief overview of what
macsploitdoes. - Installation: Instructions for installing the package via npm.
- Usage: Example code demonstrating how to use the package.
- API: Details on the
executefunction and its parameters. - Contributing: Guidelines for contributing to the project.
- License: Information about the license under which the package is distributed.
- Acknowledgments: Credits to relevant resources.