Chat logs Discord webhook not working

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) 

Hello so, 2 things.

Roblox stopped webhooks from discord, also I know that you are using a custom one, however, this may also be blocked.

Something such as chat logs, though I highly disagree with them are a very easy way to get api/http requests blocked as well as from the provider.

You are already asking for a lot of requests with chat logs, imagine I spammed a bunch of chat, those are all requests.

Hope this helps!

Thanks for the reply, but it doesn’t really help.

WebhookProxy (lewisakura) does work, it frequently works in another game that I develop. It also has request limitations and other features already by itself. It even says that Discord themselves told them they dont have any issue with the site.

Managed to fix this by myself. Apparently the player.Chatted function needs to be on the server. Changed this alongside some other features.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.