rbxconnector
v1.0.4
Published
connects thrid party applications to roblox luau
Downloads
8
Readme
RBXConnecter
connects thrid party applications to roblox luau
How to use?
Node JS
import { Main } from "rbxconnecter";
Main((express) => {
express.get("/", (req, res) => {
res.send("data form third parties, e.g : weather, location, translations, or other pieces of data");
});
}, 3000);
if you did it, right you would get this message:
Your connection string is : [CONNECTION_STRING]
Roblox Luau
in roblox studio, import the package (it goes by the same name) from the toolbox.
local rbxconnector = require(game.ServerScriptService.rbxconnector)
rbxconnector.connect("[CONNECTION_STRING]")
print(rbxconnector.get())