lua加密不等待功能完成

时间:2017-11-10 05:25:04

标签: encryption lua roblox

这是一个ROBLOX lua脚本,lua 5.1具有已修改,删除或添加的功能,任何拥有lua 5.1知识的人都将大有帮助。

我的问题是,当我尝试混淆这个脚本时:

_G.findchild = function (instance, name)
for _, child in pairs(instance:GetChildren()) do
    if child.Name == name then
        return true
    elseif _==#instance:GetChildren() then
        return false
    end
end
end
print(_G.findchild(game,"Workspace"))

它不会等待打印中的函数完成,它只打印任何内容(零),而不是伪造或真实

这是加密脚本(注意我注释了io.write行,roblox删除了这个库)

https://pastebin.com/TcHTBf3C

任何帮助将不胜感激!

0 个答案:

没有答案