model | Donate
Scripted by Icy7812
What is Rocord you may ask?
If you know about most discord api wrappers, You will probably know about discordia. Discordia is an api wrapper used in regular lua that connects to the discord api. Same thing with
Rocord. Rocord is a module where you can make discord webhooks, bots, etc. It is mainly used for webhooks.
How do i use rocord?
Rocord is used for stuff like webhooks, discord bots, etc. It can be used for modern ROBLOX functions such as game.Players.PlayerAdded
or script.Parent.Touched
Here is a basic example:
local Rocord = require(workspace.Rocord)
local url = "https://discord.com/api/webhooks" -- your webhook url here
local webhook = Rocord.newWebhook(url)
local message = Rocord.newMessage()
game.Players.PlayerAdded:Connect(function(player)
message:setContent("hi! "..player.Name)
webhook:send(message)
print("Done!")
end)
Why do I use Rocord over other proxies?
Rocord is a clean, Organized way of using a “proxy” I say that is because. All you have to do is basically use modern ROBLOX functions and then print them out. On the other hand, Proxies can get very messy and can give you a lot of errors. Rocord can also handle functions from modern ROBLOX modules such as Datastore2, ProfileService, SimplePath and more!
Thanks for reading!
Icy