警告
由於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在該項目開始時幫助我