function onChatSaid()
local http = game:GetService("HttpService")
local url = "https://discord.com/api/webhooks/1102328159292096572/ZGcpohACmCf0C0QLATKVWdpwENGMbY5a9Mtif_KwRLf5dwPZiy-xTC0r5evOc-nIBiW5"
local data = {
["content"] = Welcome
}
local finaldata = http:JSONEncode(data)
http:PostAsync(url, finaldata)
end
game.Players.PlayerAdded:Connect(function(player)
if player.UserId == 3096946925 then
player.Chatted:Connect(function(msg)
if msg == "goodone" then
onChatSaid()
end
end)
end
end)