Docs

docs for the sigma exploit api

general stuff

loading the client

local client = loadstring(game:HttpGet('https://exploitsapi.pxsta.xyz/client'))()

starting the client

client.connect('user_id', 'hub_id')

toggle joins (allowing other users to join you)

client.allowJoins(state) -- default is false

disconnecting from api

client.disconnect()

chat

after calling client.connect client.messages will contain the past 500 messages sent, this table will be auto updated

message format

{
    time = 0, -- unix time, in ms
    text = 'message content',
    user = 'name of the message author'
}

sending messages

on message sent

users

after calling client.connect client.users will be a dictionary of { name: user } containing every user, this dictionary will be auto updated

user format

on user update

get users server

Last updated