Dark Dex V3
Dark Dex V3
game:GetService'CoreGui'.Dex:Destroy();
end
math.randomseed(tick())
local charset = {}
for i = 48, 57 do table.insert(charset, string.char(i)) end
for i = 65, 90 do table.insert(charset, string.char(i)) end
for i = 97, 122 do table.insert(charset, string.char(i)) end
function RandomCharacters(length)
if length > 0 then
return RandomCharacters(length - 1) .. charset[math.random(1, #charset)]
else
return ""
end
end
LoadScripts(Obj)
end
Load(Dex)