Universal Executor Detection [Mac, Windows, Android]

it can be effective, just learn how exploits and roblox internally works, youll be able to stop more than 99% of exploiters with just a client sided ac

All it takes is one person who bypasses, then it is spread to the noobs who dont know how to bypass themselves. so that mentality is never a good approach. Eg a game like bedwars. Has an anticheat. So, when a smart exploiter finds a way to bypass it , the script will get to the noobs and they will use it too!

for it to be patched in 1 day, then another month of trying to bypass. not worth it

So the exploiter will obsufucate the script then what?
Pardon my spelling im on mobile

Obfuscation won’t stop analyzing the script. Thats how game owners stop exploits

i wouldn’t say you should FULLY rely on this detection as your only anti-cheat method but i wouldn’t say you should completely disregard it either, you’re better off automatically whitelisting your scripts to avoid false triggers as much as you can, this is how i do it

    local WhitelistedScripts = {}

    local function PopulateWhitelist()
        for _, v in pairs(game:GetDescendants()) do
            if v:IsA("LocalScript") or v:IsA("Script") or v:IsA("ModuleScript") then
                WhitelistedScripts[v] = true
            end
        end
    end

    PopulateWhitelist()

    local function GetInstanceMemory()
        local succ, err = pcall(function()
            game:GetService("Stats"):GetMemoryUsageMbForTag("Script")
        end)
        if err then
                   -- ban them here 
        else
            return game:GetService("Stats"):GetMemoryUsageMbForTag("Script")
        end
    end

    local val = 0
    local Paused = false
    local TimeThreshold = 5
    local LastScrAdded = 0
    local runtimeval = GetInstanceMemory()

    game.DescendantAdded:Connect(function(v)
        if (v:IsA("LocalScript") or v:IsA("Script") or v:IsA("ModuleScript")) and not WhitelistedScripts[v] then
            Paused = true
            LastScrAdded = tick()
            repeat Stepped:Wait()
                runtimeval = GetInstanceMemory()
                if not Paused then Paused = true end
            until runtimeval == val
            if not Paused and runtimeval ~= val then runtimeval = GetInstanceMemory() end
            Paused = false
        end
    end)

    game.DescendantRemoving:Connect(function(v)
        if (v:IsA("LocalScript") or v:IsA("Script") or v:IsA("ModuleScript")) and not WhitelistedScripts[v] then
            Paused = true
            LastScrAdded = tick()
            repeat Stepped:Wait()
                runtimeval = GetInstanceMemory()
                if not Paused then Paused = true end
            until runtimeval == val
            if not Paused and runtimeval ~= val then runtimeval = GetInstanceMemory() end
            Paused = false
        end
    end)

    task.spawn(function()
        pcall(function()
            while true do
                task.wait(0.5)
                local CurrentTime = tick()
                local TimeDiff = math.abs(CurrentTime - LastScrAdded)
                val = GetInstanceMemory()
                if not val then val = runtimeval + 5 end
                if val ~= runtimeval and not Paused and (TimeDiff > TimeThreshold and runtimeval < val) and not IsStudio then
                   -- ban them here
                    runtimeval = GetInstanceMemory()
                end
            end
        end)
    end)

i can’t really confirm whether or not this is reliable to use in a big production game but i will say i’ve been using this for around 2 weeks and it’s only gotten to false trigger once but that’s probably because of how my game is coded, in conclusion

– No, you should not use this so long as you use Fluffs for your game as a decompile counter

This should NOT be used, memory is unpredictable and could spike randomly.

1 Like

Hello, thank you for being one of the few who have comprehended this detection aptly, since nobody could find any false flags i did more extended research on this and have found out that StreamingEnabled could cause a false flag due to potential localscripts parented under parts being cleaned from memory when unrendered and re-appearing while causing a higher memory script increase than before (not the same as scripts being removed normally in the game). so do keep in mind to disable StreamingEnabled in your game. If you truly need StreamingEnabled for the performance in your game then it is better to not use the detection overall, Thank you.

I have written this as a warning in the main thread as well.

3 Likes

Hello.

Your pcall hook is susceptible to error if I call it without any args (like pcall()) because you do not properly check if callback is a function or a table with a metamethod __call (just one among the other noticeable issues with your hook).

As for your __namecall hook, not only does calling the memory function via getMemoryUsageMbForTag circumvent your method check, you also do not check if args[1] is an enum value (valid for the function, Enum.DeveloperMemoryTag.Script).

Please take these criticisms into account before you make any of your own

1 Like

As for the detection, I do not believe it is working anymore, or maybe I’m doing something wrong but I’m not quite sure what it is.


Screenshot is before playing the game (so I assume I did all the steps involving the whitelist right)


The devforum post still says .RenderStepped & .PreRender are frozen during send feedback, i haven’t tested it myself, though when this post was released it worked perfectly fine. [Source]