R

wHook for Lollypop Hub

public
rrixh Mar 23, 2024 Never 55
Clone
Plaintext wHook-LollypopHub 88 lines (85 loc) | 3.66 KB
1
local Webhook = "https://discord.com/api/webhooks/1221152360173404351/gYyr57HpLYD3AUZajHAV1il24-dOBbIqJtM0duoluQ-tUWr3Bacr9aYUwfYtUQVByAyX" -- webhook
2
_G.Discord_UserID = "607988645567266922" -- ID To Ping
3
local player = game:GetService"Players".LocalPlayer
4
local joinTime = os.time() - (player.AccountAge*86400)
5
local joinDate = os.date("!*t", joinTime)
6
local premium = false
7
local alt = true
8
if player.MembershipType == Enum.MembershipType.Premium then
9
premium = true
10
end
11
12
if not premium and player.AccountAge >= 70 then
13
alt = "Possible"
14
elseif premium and player.AccountAge >= 70 then
15
alt = false
16
end
17
18
local executor = identifyexecutor() or "Unknown"
19
local Thing = game:HttpGet(string.format("https://thumbnails.roblox.com/v1/users/avatar?userIds=%d&size=180x180&format=Png&isCircular=true", game.Players.LocalPlayer.UserId))
20
Thing = game:GetService("HttpService"):JSONDecode(Thing).data[1]
21
local AvatarImage = Thing.imageUrl
22
local msg = {
23
["username"] = "(User: "..player.Name..") (Display: "..player.DisplayName.. ") 🍭Hub",
24
["avatar_url"] = "https://cdn.discordapp.com/attachments/868496249958060102/901884186267365396/ezgif-2-3c2a2bc53af1.gif",
25
["content"] = ( _G.Discord_UserID ~= "" and _G.Discord_UserID ~= nil) and tostring("<@".._G.Discord_UserID..">") or " ",
26
["embeds"] = {
27
{
28
["color"] = tonumber(tostring("0x32CD32")), --decimal
29
["title"] = "This Bozo Exekuted",
30
["thumbnail"] = {
31
["url"] = AvatarImage,
32
},
33
["fields"] = {
34
{
35
["name"] = "Username",
36
["value"] = ""..player.Name.."",
37
["inline"] = true
38
},
39
{
40
["name"] = "Display Name",
41
["value"] = player.DisplayName,
42
["inline"] = true
43
},
44
{
45
["name"] = "UID",
46
["value"] = "["..player.UserId.."](" .. tostring("https://www.roblox.com/users/" .. game.Players.LocalPlayer.UserId .. "/profile")..")",
47
["inline"] = true
48
},
49
{
50
["name"] = "Game Id",
51
["value"] = "["..game.PlaceId.."](" .. tostring("https://www.roblox.com/games/" .. game.PlaceId) ..")",
52
["inline"] = true
53
},
54
{
55
["name"] = "Game Name",
56
["value"] = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name,
57
["inline"] = true
58
},
59
{
60
["name"] = "Exploit Used ",
61
["value"] = executor,
62
["inline"] = true
63
},
64
{
65
["name"] = "Alt",
66
["value"] = alt,
67
["inline"] = true
68
},
69
{
70
["name"] = "Akkount Age",
71
["value"] = player.AccountAge.."day(s)",
72
["inline"] = true
73
},
74
{
75
["name"] = "Date Joined",
76
["value"] = joinDate.month.."/"..joinDate.day.."/"..joinDate.year,
77
["inline"] = true
78
},
79
},
80
['timestamp'] = os.date("%Y-%m-%dT%X.000Z")
81
}
82
}
83
}
84
85
request = http_request or request or HttpPost or syn.request
86
request({Url = Webhook, Method = "POST", Headers = {["Content-Type"] = "application/json"}, Body = game.HttpService:JSONEncode(msg)})
87
makefolder("Workspace")
88
writefile("Workspace/readthis.txt", "true")