From 01f8cf89115fa27324c3781611cfc7437c36d03d Mon Sep 17 00:00:00 2001 From: tul <27+tul@noreply.localhost> Date: Sat, 1 Aug 2026 01:53:52 +0000 Subject: [PATCH] Delete scripts/executor-tester.lua --- scripts/executor-tester.lua | 41 ------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 scripts/executor-tester.lua diff --git a/scripts/executor-tester.lua b/scripts/executor-tester.lua deleted file mode 100644 index 7360d59..0000000 --- a/scripts/executor-tester.lua +++ /dev/null @@ -1,41 +0,0 @@ ---[[ - _ _ _ - __ | |___ _ __ __| |__ _ ___ __ _ __ _(_) ___ __ _ - \ \| |__ \| '_ \ / _` |__` |/ _ |__` |__` | |/ _ ' _` | - > |__) | |_) | | | | | | (_) | | | | | | | | | | | - /_/|_|___/|_.__/|_| |_| |_|\___/ |_| |_|_|_| |_| |_| - - mirrorhack | execeutor tester - -]] - -local exec_name = identifyexecutor() or getexecutorname() or "Executor" - -local checks = { - {"setfflag", setfflag}, - {"mousemoverel", mousemoverel}, - {"getrenv", getrenv}, - {"hookmetamethod", hookmetamethod}, - {"newcclosure", newcclosure}, - {"getnamecallmethod", getnamecallmethod}, - {"gethui", gethui}, - {"loadstring", loadstring}, - {"hookfunction", hookfunction}, - {"getgc", getgc}, - {"debug.getupvalue", debug and debug.getupvalue}, -} - -local missing = {} -for _, entry in ipairs(checks) do - if type(entry[2]) ~= "function" then - missing[#missing + 1] = entry[1] - end -end - -local player = game:GetService("Players").LocalPlayer - -if #missing > 0 then - player:Kick(exec_name .. " is missing: " .. table.concat(missing, ", ")) -else - player:Kick(exec_name .. " supports mirrorhack") -end \ No newline at end of file