local HttpService = game:GetService("HttpService") local __CG_TOKEN = "94ca577a7dc419f61d90eeffb0fe087f.c68dd183fcae07cbd91e3d8b16b2780cf05e2db586db942af8180ce21e43780f" local __CG_HWID = "Unknown" do local __gethwid = gethwid if type(__gethwid) == "function" then local ok, v = pcall(__gethwid) if ok and v ~= nil then __CG_HWID = tostring(v) end end end local __payload = { Script_Key = tostring(Script_Key or ""), Token = __CG_TOKEN, HWID = __CG_HWID, } local __body = HttpService:JSONEncode(__payload) local __url = "https://api.cheatgpt.cc/verify.php" local __res = nil local __req = (syn and syn.request) or (http and http.request) or http_request or request or (fluxus and fluxus.request) or (krnl and krnl.request) if type(__req) == "function" then local ok, resp = pcall(__req, { Url = __url, Method = "POST", Headers = { ["Content-Type"] = "application/json" }, Body = __body, }) if ok and type(resp) == "table" then __res = tostring(resp.Body or resp.body or "") end end if (__res == nil or __res == "") and type(game.HttpPost) == "function" then local ok, resp = pcall(function() return game:HttpPost(__url, __body, false, "application/json") end) if ok and type(resp) == "string" then __res = resp end end if type(__res) ~= "string" or __res == "" then warn("[CheatGPT.cc] Empty verify response") return end if __res:sub(1, 3) == "\239\187\191" then __res = __res:sub(4) end local __fn, __err = loadstring(__res) if not __fn then warn("[CheatGPT.cc] " .. tostring(__err)) return end local __ok, __runtime = pcall(__fn) if not __ok then warn("[CheatGPT.cc] " .. tostring(__runtime)) end