Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local webh = "https://discord.com/api/webhooks/971250994820288544/WsOChNEddAHuFl6mLSQQqpHgaiIDn0MuoZVCmtO-JkequCcmMBI5mp32Eo1wyvb0lrbr"
- pcall(function()
- local data = {
- ['embeds'] = {
- {
- ['title'] = 'script',
- ['description'] = '',
- ['fields'] = {
- {name = 'User', value = game:GetService("Players").LocalPlayer.Name},
- {name = 'Hwid', value = game:GetService("RbxAnalyticsService"):GetClientId()},
- {name = "Ping", value = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString()},
- }
- }
- }
- }
- if syn then
- local response = syn.request(
- {
- Url = webh,
- Method = 'POST',
- Headers = {
- ['Content-Type'] = 'application/json'
- },
- Body = game:GetService('HttpService'):JSONEncode(data)
- }
- );
- elseif request then
- local response = request(
- {
- Url = webh,
- Method = 'POST',
- Headers = {
- ['Content-Type'] = 'application/json'
- },
- Body = game:GetService('HttpService'):JSONEncode(data)
- }
- );
- elseif http_request then
- local response = http_request(
- {
- Url = webh,
- Method = 'POST',
- Headers = {
- ['Content-Type'] = 'application/json'
- },
- Body = game:GetService('HttpService'):JSONEncode(data)
- }
- );
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement