1.2.4 • Published 10 months ago

robloxcloudapi v1.2.4

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Roblox Node JS Open Cloud API

There are two APIs in this module right now.

Note

Please setup your cloud API key before beginning.

Link: https://create.roblox.com/dashboard/credentials

Having trouble? View this article: https://create.roblox.com/docs/cloud/open-cloud/managing-api-keys

Introduction to the MessageService API

Before starting this identify your API key and the universe ID you want to access.

const API_KEY = "api key here"
const UniverseID = "universe id here"

Require the module as seen below.

const rbxcloudAPI = require("robloxcloudapi")

Now lets setup our MessageService communicator.

const MessageService = new rbxcloudAPI.MessageService(API_KEY, UniverseID)

From here you can now comunicate with all servers of the game

.sendMessage(Message) // sends Message to all servers of universe
.sendObject(Object) // sends Object to all servers of universe

Introduction to the DataStoreService API

Before starting this identify your API key and the universe ID you want to access.

const API_KEY = "api key here"
const UniverseID = "universe id here"

Require the module as seen below.

const rbxcloudAPI = require("robloxcloudapi")

Now lets setup our DataStore communicator.

const DataStores = new rbxcloudAPI.DataStoreService(API_KEY, UniverseID)

From here you can view and edit your DataStores' entries inside this game by using functions shown below.

.getEntries(datastore_name) // returns a JSON table of all Entries
.getEntry(datastore_name,entryKey) // returns the value of entryKey
.setEntry(datastore_name,entryKey,value) // Sets entry to the value given
1.2.4

10 months ago

1.2.3

10 months ago

1.2.2

11 months ago

1.2.1

11 months ago

1.2.0

11 months ago

1.1.11

12 months ago

1.1.10

12 months ago

1.1.9

12 months ago

1.1.8

12 months ago

1.1.7

12 months ago

1.1.6

12 months ago

1.1.5

12 months ago

1.1.4

12 months ago

1.1.3

12 months ago

1.1.2

12 months ago

1.1.1

12 months ago

1.1.0

12 months ago

1.0.0

12 months ago