警告
由于Byfron检测到这一点,您很可能会被禁止。运行Xeno时使用ALT帐户。使用存储库了解正在发生的事情及其工作原理。我对任何禁令不承担任何责任
执行人为Roblox的Web版本制作。
它使用常用的方法将无符号字体编码写入Roblox Core模块脚本来管理执行,也比大多数使用此精确方法的执行者更稳定和灵活。
我从制作Xeno项目中赚了34.97美元。由于我花了很多时间从事这个项目,我将非常感谢任何人向我捐款。
CashApp: $RizveA
PayPal: RizveA
比特币: bc1qvhdnqtgcselqv9s9dt9varadh0zkal5239pgl4
以太坊: 0x713eAb6Bc8e18D1E0cdF6f03eA03df57c889592A
litecoin: LVNsAoXbJHgdCcc6oi8cqbYmGqg9tXsM2P
前三名捐赠者:
如果您要使用我的来源,并且至少要“滑行”,请使用许可并给予积分。不要像其他使用我的整个源代码并将其称为自己的源代码的人一样,而无需提及Xeno或出版商 +分发和出售给他人。
我只使用此项目来学习C ++和一些C#。
不要期望最好的代码和内存管理。您将在Xenoui C#WPF项目上看到非常糟糕的代码和设计,因为它仅作为原型制成。
该执行人有许多漏洞,因为只有我使用Xeno并且没有公开发布。
自定义功能示例:
-- get real address
local address = Xeno . get_real_address ( game : GetService ( " ScriptContext " ))
print ( " Script context address: " , string.format ( " 0x%x " , address ))
-- spoof instance
Xeno . spoof_instance ( game : GetService ( " CoreGui " ), 0 ) -- set the address of coregui to 0
Xeno . spoof_instance ( game . Players . LocalPlayer , Instance . new ( " Part " )) -- set the localplayers address to a part
-- http spy
Xeno . HttpSpy () -- set http spy to true
Xeno . HttpSpy ( false ) -- set httpspy to false
-- globals (shared across all clients, saved inside the executor)
-- similar to Instance:GetAttribute() but supports tables
-- global name, value
Xeno . SetGlobal ( " __test " , { -- can only set table, number, and string as a global
[ " test_text " ] = " hello, world! "
})
local t = Xeno . GetGlobal ( " __test " ) -- the table we just set
print ( t . test_text ) -- hello, world!
-- other
print ( Xeno . PID ) -- current roblox process id
print ( Xeno . GUID ) -- the guid it is using to communicate with the external
当前将HTTPGET添加到“游戏”中的方法会干扰Dex等脚本。执行DEX运行此脚本:
getgenv (). game = workspace . Parent
这将从游戏中删除HTTPGET !您可以在发布的文件中使用为Xeno制作的修改版本的DEX
这是版本1.0.1的UI:
当前的UNC是〜75%
该项目使用以下库:
依赖项由VCPKG管理。使用此命令安装它们:
vcpkg install xxhash zstd openssl
该项目中已经包含了适当的httplib版本
感谢您的方法。
感谢其他帮助我解压缩和压缩字节码的人。
多亏了plusgiant5的taaprwarev2的初始脚本5
感谢Nhisoka在该项目开始时帮助我