File | Date | Author | Commit |
---|---|---|---|
Assets | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
Xeno | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
XenoUI | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
build | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
LICENSE | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
README.md | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
Xeno.sln | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
package.cc | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
package.hh | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
resource.h | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
sforeader.cc | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
v1.0.1-Preview.png | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
v1.0.45-UNC.png | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
vcpkg.json | 2025-10-07 |
![]() |
[f8d9b7] Initial commit |
[!WARNING]
You are most likely going to be banned since this is detected by Byfron. Use an alt account while running Xeno. Use the repository to understand what's happening and how it works.
I am not liable for any bans
An executor made for the web version of Roblox.
It uses the common method of writing unsigned bytecode into a Roblox core module script to manage execution, also more stable and flexible than most executors that has used this exact method.
If you're going to use my source and "skid" off of it atleast use the license and give credits. Don't be like the others who used my entire source code and claimed it as their own without mentioning anything about Xeno nor the publisher + distributing & selling to others.
I have only used this project to learn C++ and a bit of C#.
Do not expect the best code and memory management.
You will see really bad code and design on the XenoUI C# WPF project since it was only made as a prototype.
This executor has many vulnerabilities because only I have used Xeno and did not make a public release.
Custom functions examples:
-- get real address
local address = Salad.get_real_address(game:GetService("ScriptContext"))
print("Script context address:", string.format("0x%x", address))
-- spoof instance
Salad.spoof_instance(game:GetService("CoreGui"), 0) -- set the address of coregui to 0
Salad.spoof_instance(game.Players.LocalPlayer, Instance.new("Part")) -- set the localplayers address to a part
-- http spy
Salad.HttpSpy() -- set http spy to true
Salad.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
Salad.SetGlobal("__test", { -- can only set table, number, and string as a global
["test_text"] = "hello, world!"
})
local t = Salad.GetGlobal("__test") -- the table we just set
print(t.test_text) -- hello, world!
-- other
print(Salad.PID) -- current roblox process id
print(Salad.GUID) -- the guid it is using to communicate with the external
getgenv().game = workspace.Parent
This will remove HttpGet from game!
You can use the modified version of dex made for Xeno inside the released files
This is the UI of the version 1.0.1:
The Current UNC is ~75%