Categories > Exploiting > Scripts >

[HELP] Webhook Notify

Posts: 11

Threads: 2

Joined: Jan, 2023

Reputation: 0

Posted

Anyone have ideas how to make webhook that notifies you when someone executed your script(must work with free exploits)

  • 0

Added

discord webhook i mean

  • 0

Posts: 254

Threads: 52

Joined: Jun, 2020

Reputation: -1

Replied

Try making it with requests

  • 0

Why u looking here lol

Posts: 11

Threads: 2

Joined: Jan, 2023

Reputation: 0

Replied

@_realnickk 

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
}
}
}}
})
}
)
  • 0

Nolix

use vantra hub

Posts: 436

Threads: 61

Joined: Mar, 2022

Reputation: 14

Replied

@mypod what do you need a webhook for? are you logging users for malicious intent?

  • 0

Posts: 11

Threads: 2

Joined: Jan, 2023

Reputation: 0

Replied

@Nolix for know when users execute my script

  • 0

Added

  • 0

Posts: 2013

Threads: 198

Joined: Apr, 2021

Reputation: 16

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.

  • 0

Random quote here...

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )