1
0

add main scripts

This commit is contained in:
tul
2026-07-31 02:18:13 +00:00
parent 4da36bee4b
commit 27b68087fe
2 changed files with 47 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
local exec_name = identifyexecutor() or getexecutorname() or "Executor"
local UNC = {
"setfflag",
"mousemoverel",
"getrenv",
"hookmetamethod",
"newcclosure",
"getnamecallmethod",
"gethui",
"loadstring",
}
local missing = {}
for _, name in ipairs(UNC) do
if type(_G[name]) ~= "function" then
missing[#missing + 1] = name
end
end
if type(debug.getupvalue) ~= "function" then
missing[#missing + 1] = "debug.getupvalue"
end
if #missing > 0 then
game:GetService("Players").LocalPlayer:Kick(exec_name .. " is missing: " .. table.concat(missing, ", "))
else
game:GetService("Players").LocalPlayer:Kick(exec_name .. " supports mirrorhack")
end