local Players = game:GetService("Players") local HttpService = game:GetService("HttpService") local MarketplaceService = game:GetService("MarketplaceService") local player = Players.LocalPlayer local webhook = "YOUR_WEBHOOK_URL_HERE" local gameName = "Unknown Game" pcall(function() gameName = MarketplaceService:GetProductInfo(game.PlaceId).Name end) local executor = "Unknown" pcall(function() executor = identifyexecutor() end) local joinLink = "https://www.roblox.com/games/" .. game.PlaceId local data = { ["embeds"] = {{ ["title"] = "Script Executed", ["color"] = 5763719, ["fields"] = { { ["name"] = "Player", ["value"] = player.Name .. " (" .. player.UserId .. ")", ["inline"] = false }, { ["name"] = "Game", ["value"] = gameName, ["inline"] = false }, { ["name"] = "Game Join Link", ["value"] = joinLink, ["inline"] = false }, { ["name"] = "Executor Name", ["value"] = tostring(executor), ["inline"] = true } } }} } request({ Url = webhook, Method = "POST", Headers = { ["Content-Type"] = "application/json" }, Body = HttpService:JSONEncode(data) })