Hello, I’ve been trying to make a chat logs Discord webhook (embed). However, it doesn’t really work as it doesn’t send the webhook once someone sends a message in the game.
I find it pretty weird as I am really not sure what could be causing this + I have some experience with webhooks and WebhookProxy (lewisakura) already. Any idea what’s causing this issue?
ModuleScript
local module = {}
local Players = game:GetService("Players")
local HttpService = game:GetService("HttpService")
local ServerStorage = game:GetService("ServerStorage")
local URL = "https://webhook.lewisakura.moe/api/webhooks/CENSORED (LINK IS HERE NORMALLY)
module.SendWebhook = function(contentTable)
local data = {
["content"] = ":speech_balloon: __**New chat log**__";
["embeds"] = {{
["description"] = "";
["color"] = tonumber(0xff0000);
["fields"] = {
{
["name"] = "Player:";
["value"] = "["..Players:FindFirstChild(tostring(contentTable[1])).DisplayName.." @"..tostring(contentTable[1]).."]".."(https://www.roblox.com/users/"..tostring(contentTable[2]).."/profile)";
["inline"] = false;
};
};
["footer"] = {
["icon_url"] = "https://media.discordapp.net/attachments/1162122057362964573/1170503055503015966/asdasdasdasdadaddw.png?ex=655946eb&is=6546d1eb&hm=059247a1a2035ba8e1c64306fccecd25a9c5affa18918f1a620e25e91dccabf0&=";
["text"] = "LARP Chat Logs | made by Nyxifier"
}
}}
}
HttpService:PostAsync(URL, HttpService:JSONEncode(data))
end
return module
ServerScript
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ServerStorage = game:GetService("ServerStorage")
local ChatlogsModule = require(ServerStorage:WaitForChild("WebhookModules"):WaitForChild("ChatlogsModule"))
local WebhookEvent = ReplicatedStorage:WaitForChild("WebhookEvents"):WaitForChild("Chatlogs")
WebhookEvent.OnServerEvent:Connect(function(Player, Argument, contentTable)
if not Player then return end
if not Argument then return end
if Player and Argument == "SendWebhook" and contentTable ~= nil then
ChatlogsModule.SendWebhook(contentTable)
end
end)
LocalScript
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ServerStorage = game:GetService("ServerStorage")
local ChatlogsModule = ServerStorage:WaitForChild("WebhookModules"):WaitForChild("ChatlogsModule")
local WebhookEvent = ReplicatedStorage:WaitForChild("WebhookEvents"):WaitForChild("Chatlogs")
local ServerID = game.JobId
Players.PlayerAdded:Connect(function(plr)
plr.Chatted:Connect(function(message)
WebhookEvent:FireServer(
"SendWebhook", {
plr.Name;
plr.UserId;
message;
ServerID;
}
)
end)
end)