This commit is contained in:
engo 2024-07-25 00:27:31 +02:00 committed by GitHub
parent cdb090c0ee
commit 0d860bcc01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View file

@ -88,8 +88,8 @@ test("printidentitylowargs", function()
if not success then return error("printidentity is missing prefix argument") end
end)
-- prntidentitynotcclosure
test("printidentitynotcclosure", function()
-- prntidentityclosure
test("printidentitycclosure", function()
if not iscclosure(printidentity) then
return error("printidentity is not a cclosure")
end
@ -112,8 +112,8 @@ test("invalididentity", function()
local identity = getthreadidentity()
if PrintidentityLevel > 9 or PrintidentityLevel < 0 then return error("[printidentity] Your executor's spoofed identity is invalid.") end
if identity > 9 or identity < 0 then return error("[getthreadidentity] Your executor's spoofed identity is invalid.") end
if PrintidentityLevel > 8 or PrintidentityLevel < 0 then return error("[printidentity] Your executor's spoofed identity is invalid.") end
if identity > 8 or identity < 0 then return error("[getthreadidentity] Your executor's spoofed identity is invalid.") end
end)
-- identitycheck
@ -147,7 +147,7 @@ test("identitycheck", function()
{
lv = 7,
obtained = pcall(function() Instance.new("MeshPart").MeshId = "" end)
} -- there might be a issue with level 8, lmao
} -- there might be a issue with level 8
}
for i, identity in pairs(IdentityTable) do

View file

@ -2,8 +2,8 @@
IdentityValidator checks if your executor is faking printidentity or not.
# Checks
- printidentitynotcclosure
- Printidentity is not a cclosure
- printidentitycclosure
- Checks if printidentity is a cclosure
- getthreadidentitynotequal
- getthreadidentity is not equal to printidentity level
- invalididentity