Skip to content

Instantly share code, notes, and snippets.

@depthso
depthso / Roblox Executor test.luau
Last active July 25, 2026 16:37
Roblox executor test for implementations of the env, this is different to a "UNC" test. Higher fails = worse executor
--[[
@author depthso/depso
@description Roblox Executor test for implimentations
]]
--// Config
const Delay = 0
--// Variables
local Total, Passed, Undefined = 0, 0, 0
@depthso
depthso / ARCEUS X V5 SOURCE CODE.lua
Created April 25, 2026 22:45
SOURCE CODE FOR ARCEUS X V5 AS OF 04/25/26
(function() return [[
/$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$$$ /$$ /$$ /$$$$$$ /$$ /$$ /$$ /$$ /$$$$$$$
/$$__ $$| $$__ $$ /$$__ $$| $$_____/| $$ | $$ /$$__ $$ | $$ / $$ | $$ | $$| $$____/
| $$ \ $$| $$ \ $$| $$ \__/| $$ | $$ | $$| $$ \__/ | $$/ $$/ | $$ | $$| $$
| $$$$$$$$| $$$$$$$/| $$ | $$$$$ | $$ | $$| $$$$$$ \ $$$$/ | $$ / $$/| $$$$$$$
| $$__ $$| $$__ $$| $$ | $$__/ | $$ | $$ \____ $$ >$$ $$ \ $$ $$/ |_____ $$
| $$ | $$| $$ \ $$| $$ $$| $$ | $$ | $$ /$$ \ $$ /$$/\ $$ \ $$$/ /$$ \ $$
| $$ | $$| $$ | $$| $$$$$$/| $$$$$$$$| $$$$$$/| $$$$$$/ | $$ \ $$ \ $/ | $$$$$$/
|__/ |__/|__/ |__/ \______/ |________/ \______/ \______/ |__/ |__/ \_/ \______/
@depthso
depthso / Most tuff env logger detection.lua
Last active April 13, 2026 20:13
env spoof detection for Threaded, 25ms etc.. all dtc
if math.nan == math.nan or math.nan/0 == 0 then
for a, b in pairs, {"no...."} do end -- Crashes the bot
end
print("we joe okay")
@depthso
depthso / Arguments validation.luau
Last active March 23, 2026 09:26
Check the types of arguments passed into a function to prevent type attacks such as table attacks mimicking Objects
--[[
Created by @depso (depthso)
Example usage:
local BindedFunction = Module:BindFunction(
{"string", "number"},
function(A: string, B: number)
print("Pass! Hello", A, "you are", B, "years old!")
end
)
@depthso
depthso / Universal executor shitsploit test.luau
Last active April 10, 2026 07:03
Determines whether the executor you are using is shit. Paste this into your Anticheat if you're gay (Lyth moment?)
--[[
@author depso (depthso)
@description Shitsploit hook detection, this is so incredibily sad that this actually works, insane yield handlers
Arceus forever and always detected! Shout out to mlemix
]]
local Model = Instance.new("Model", workspace)
Model.Name = "Pibble"
task.spawn(function()
@depthso
depthso / Table changed.luau
Last active March 22, 2026 18:46
Detects changes within a table using a metatable with function callbacks for .Removed, .Added, .Changed
--[[
Created by @depso (depthso)
Example usage:
local Table = Module.new({
HiBlud = 67
}, {
Changed = function(...)
print("Changed", ...)
end,
@depthso
depthso / Script explorer.luau
Last active March 23, 2026 09:36
PUT THIS INTO YOUR EXECUTOR'S AUTOEXEC FOLDER! You can easily search the game for scripts regardless if they are destroyed or reparented, this is great for decompiling Anti cheats!
--// Made by depso (@depthso)
-- Blacklisted paths, don't worry it's not referenced!
local BLACKLISTED_PATHS = {
workspace,
game:GetService("Players"),
game:GetService("StarterGui"),
game:GetService("CorePackages"),
game:GetService("CoreGui"),
}
@depthso
depthso / Xeno init.luau
Created November 4, 2025 16:07
Decompiled with oracle for Xeno v1.2.85
if not game.RobloxReplicatedStorage:FindFirstChild("__XENO") then
Instance.new("Folder", game.RobloxReplicatedStorage).Name = "__XENO";
task.spawn(function() --[[ Line: 1 ]]
local l_game_Service_0 = game:FindService("HttpService");
local l_CoreGui_0 = game:GetService("CoreGui");
local l_StarterGui_0 = game:GetService("StarterGui");
local _ = game:GetService("InsertService");
local _ = game:GetService("CorePackages");
local _ = game:GetService("Debris");
local l_UserInputService_0 = game:GetService("UserInputService");
@depthso
depthso / Hook lib emulation.luau
Last active November 22, 2025 12:36
Emulating the hook lib, used for having middle hooks that cannot be tampered with
--[[
@author depso (depthso)
@description Hook emulation, used for having middle hooks
Example usage:
local Old; Old = Emulation:HookFunction(true, MyFunction, function(...)
local Args = {...}
-- Stuff here
return Emulation:Unpack(Args)
@depthso
depthso / Hook detection.lua
Last active March 5, 2026 14:16
(⚠️ PATCHED BY ROBLOX)! Detect hooking such as hookmetamethod. You could also detect the executor's env with a __tostring metatable through a bindable event but some like Zenith have patched this.
-- ⚠️ PATCHED BY ROBLOX
local StackCount = 0
local function Overflow()
StackCount += 1
if StackCount > 195 then
game:GetService("Workspace")
end