Hi all. I present to you another easy detection, same method from my SaveInstance detection (not patched yet btw, I recommend you check it out). just simply changing the service we check for
local AnimationFromVideoCreatorService = "AnimationFromVideoCreatorService"
local KnownServices = {}
if game:FindService(AnimationFromVideoCreatorService) then
KnownServices[AnimationFromVideoCreatorService] = true
end
local function CheckServices()
if not KnownServices[AnimationFromVideoCreatorService] and game:FindService(AnimationFromVideoCreatorService) then
print("xeno executor is ultra detected lol")
end
end
task.spawn(function()
while true do
CheckServices()
task.wait(3)
end
end)
I did look up AnimationFromVideoCreatorService
and it doesn’t seem to be used at all, so there shouldn’t be any false positives. Not really sure why Xeno uses it lol.
This will more than likely be patched shortly, but there are so many other ways to detect Xeno it’s actually unreal.
Xeno is one of the most popular free Script Executors, so I’d heavily suggest implementing this into your game before it gets patched and banning people that get detected with BanAsync
Enjoy.