Skip to content

Jumpathy/rbx.lua

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Rbx.lua

A lua-written Roblox API wrapper.

Introduction

Roblox is an online game platform and game creation system that allows users to program games and play games created by other users. They have a documented REST API that allows developers to create functions to their needs.

Rbx.lua is a Lua wrapper for the official Roblox API, directly inspired by Noblox.js. It allows you to do things you would normally do on Roblox through a simple object oriented system. Lua itself is beginner-friendly, but powerful in the hands of someone who knows what they're doing. It's expandability makes it as capable as the other competitors such as JavaScript, Python, Node, etc. Rbx.lua is also cross-compatible with Discordia which allows you to make Lua-based discord bots that can have integrated Roblox support.

You will require some basic programming experience to begin with this system, but once you get the hang of it, it should be second nature to you!

Requirements

Documentation

Community (or support if required)

Installation

  • Install Luvit with the instructions specified for your platform.
  • To install this, simply run lit install iiToxicity/rbx.lua
  • Run your code by using for example, luvit code.lua

Example

local roblox = require("rbx.lua");
local client = roblox.client();

client:on("ready",function()
   print("ready to go!");
end)

client:run(".ROBLOSECURITY HERE");

About

A lua-written Roblox API wrapper.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages