local request = request or http_request local username = game.Players.LocalPlayer.Name local gameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name local body = string.format([[ { "content": "⚠️ Executed by: %s\n🎮 Game: %s" -- with username and game playing } ]], username, gameName) request({ Url = "YOUR_WEBHOOK", -- add your webhook here Method = "POST", Headers = { ["Content-Type"] = "application/json" }, Body = body })