Skip to content

Instantly share code, notes, and snippets.

@depthso
depthso / Shitsploit test.luau
Last active March 9, 2026 17:28
Determines whether the executor you are using is shit. Paste this 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
Created January 9, 2026 10:38
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", ...)
@depthso
depthso / Script explorer.luau
Created December 24, 2025 12:33
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)
type Data = {
Script: BaseScript,
Path: string,
Selectable: unknown?,
SelectableObject: unknown?
}
type Scripts = {[number]: Data}
@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
@depthso
depthso / Method.lua
Last active July 15, 2025 07:46
Shrimp game method
--[[
@author depso (depthso)
@description Shrimp game troll script
https://www.roblox.com/games/7606564092/Shrimp-Game
]]
local ReGui = loadstring(game:HttpGet('https://raw.githubusercontent.com/depthso/Dear-ReGui/refs/heads/main/ReGui.lua'))()
local WindowConfig = {
@depthso
depthso / Stockbot.lua
Last active December 27, 2025 13:02
Grow a garden stock bot 🧑‍🌾 EventShop, Gears, Seeds, Eggs, Weather, Cosmetics
--[[
@author depso (depthso)
@description Grow a Garden stock bot script
https://www.roblox.com/games/126884695634066
]]
type table = {
[any]: any
}
@depthso
depthso / HttpSpy.lua
Created May 21, 2025 18:21
Created by depso, this works on Solara
--// Created by depso!
-- This is a simple Http request spy with a UI interface
-- This is designed to work on very basic level exploits such as Xeno and Solara
local DEBUG = false
--// Libraries
local Hook = {}
local Http = {}
@depthso
depthso / minecraft fly.lua
Last active June 23, 2025 16:31
Minecraft styled flight without using PlatformStand
--[[
@author depso (depthso)
@description Minecraft styled flight without using PlatformStand
-- Keybinds
W, S - Forward, Backwards
A, D - Left, Right
Shift, Q - Down
Space, E - Up
Ctrl - Sprint