Existing Functionality Check
Existing Function Explanation
Env spoofing & manually hiding hiding stack levels is outdated.
Rationale
Setstackhidden solves this by being a builtin function that handles stack trace detections without luau implementations
Proposed Function Name
setstackhidden
Summary
https://docs.potassium.pro/api-reference/Closure%20Library/setstackhidden#setstackhidden
Hide a function from call-stack based detections.
Detailed Description
Not sure about any of the details of the function tbh, I just know that its extremely useful and already being implemented in plenty of executors
Example Use Cases
Prevent functions from detecting exploit caller
i.e (game function):
local Caller = debug.info(2, "f")
local Env = getfenv(Caller)
if Env then ... end
setstackhidden(1, true) -- prevents the function from seeing us as the caller
Also im gay
Existing Functionality Check
Existing Function Explanation
Env spoofing & manually hiding hiding stack levels is outdated.
Rationale
Setstackhidden solves this by being a builtin function that handles stack trace detections without luau implementations
Proposed Function Name
setstackhidden
Summary
https://docs.potassium.pro/api-reference/Closure%20Library/setstackhidden#setstackhidden
Hide a function from call-stack based detections.
Detailed Description
Not sure about any of the details of the function tbh, I just know that its extremely useful and already being implemented in plenty of executors
Example Use Cases
Prevent functions from detecting exploit caller
i.e (game function):
local Caller = debug.info(2, "f")
local Env = getfenv(Caller)
if Env then ... end
setstackhidden(1, true) -- prevents the function from seeing us as the caller
Also im gay