local function warn_user(txt) print("[!] " .. tostring(txt)) end local function is_cooked() local flagged = false local ok, caller = pcall(checkcaller) if not ok or type(caller) ~= "boolean" then flagged = true end if _G.detected or _G.is_detected or _G.flagged then flagged = true end if not printidentity then flagged = true end return flagged and "COOKED / DETECTED" or "SAFE" end local name, ver = identifyexecutor() local identity = (getthreadidentity and getthreadidentity()) or "UNKNOWN" print("------------------------------------------") warn_user("Exec: " .. (name or "Trash-Tier API")) warn_user("Exec Ver: " .. (ver or "1.0")) warn_user("Exec Lv: " .. identity) warn_user("Exec Stat: " .. is_cooked()) print("------------------------------------------") if is_cooked() == "COOKED / DETECTED" then warn_user("GL on the banwave buddy") end