A JavaScript wrapper for the ROBLOX OpenCloud API.
Publishes a message to a provided topic.
const MessagingService = require('rblx.js')
const message = new MessagingService("UNIVERSE_ID", "API_KEY")
await message.PublishAsync('MessageTopic', 'I am the message body!')
import { MessagingService } from 'rblx.js'
const message = new MessagingService("UNIVERSE_ID", "API_KEY")
await message.PublishAsync('MessageTopic', 'I am the message body!')