mirror of
https://github.com/Ro-Ware/IdentityValidator.git
synced 2024-11-14 16:44:55 -05:00
2
This commit is contained in:
parent
cdb090c0ee
commit
0d860bcc01
2 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue