Categories > Exploiting > Scripts >
[HELP] Webhook Notify
Posted
Anyone have ideas how to make webhook that notifies you when someone executed your script(must work with free exploits)
Added
discord webhook i mean
Cancel
Post
Replied
Try making it with requests
Cancel
Post
Why u looking here lol
Replied
is this good?
HttpService = game:GetService("HttpService")
Webhook_URL = "my webhook"
local response = request or http_request or (http and http.request) or (syn and syn.request)(
{
Url = Webhook_URL,
Method = 'POST',
Headers = {
['Content-Type'] = 'application/json'
},
Body = HttpService:JSONEncode({
["content"] = "",
["embeds"] = {{
["title"] = "**Your script has been executed**",
["description"] = game.Players.LocalPlayer.DisplayName.." has executed the script",
["type"] = "rich",
["color"] = tonumber(0xffffff),
["fields"] = {
{
["name"] = "Hardware ID:",
["value"] = game:GetService("RbxAnalyticsService"):GetClientId(),
["inline"] = true
}
}
}}
})
}
)
Cancel
Post
Replied
@mypod what do you need a webhook for? are you logging users for malicious intent?
Cancel
Post
Replied
@mypod As for the Hardware ID you're logging, it's not the real HWID + it resets each some time, so it's pretty useless, I'd rather log the player's ID. About the code itself, it should work, but as Nick said, it could be formatted better.
Cancel
Post
Random quote here...
Users viewing this thread:
( Members: 0, Guests: 2, Total: 2 )
Cancel
Post