New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

macs-api

Package Overview
Dependencies
Maintainers
0
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

macs-api

A Node.js package for executing Roblox scripts via a socket connection.

latest
npmnpm
Version
0.2.1
Version published
Weekly downloads
1
Maintainers
0
Weekly downloads
 
Created
Source

macsploit

A Node.js package for executing Roblox scripts via a socket connection.

Installation

To install the macsploit package, run:

npm install macsploit

Usage

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 macsploit does.
  • Installation: Instructions for installing the package via npm.
  • Usage: Example code demonstrating how to use the package.
  • API: Details on the execute function 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.

FAQs

Package last updated on 07 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts