rCord allows you to easily deploy webhooks in your game, allowing you to have a better view of your game.
- Full type support via both LuaU Language Server and native Roblox.
- Read our new documentation page where you can learn about all the workings of rCord
- Compact and lightweight, allowing for fast deployment.
- Fast and without proxy, no worrying about proxy downtime.
- Easy syntax inspired by discord.js.
Example usage
local Players = game:GetService("Players")
local rCord = require(script.Parent.rCord) -- Adjust this path as needed
local webhook = rCord.createWebhook("https://discord.com/api/webhooks/.../...")
Players.PlayerAdded:Connect(function(player)
webhook:send("Player " .. player.Name.. " joined!")
end)