I'm trying to detect if a player has CE on their computer.
My code:
for i = 1, 4 do local a = Instance.new("Decal", workspace) a.Texture = "rbxasset://../../../../../../../../Program Files (x86)/Cheat Engine 6."..i.."/Cheat Engine.exe" end
I got that off freemodels to be honest. But it isn't working.
Hi, I made a CE detector a long time ago. I'm pretty sure that's patched though. But just in case it's not, you need to check to see if the texture was resolved or not by using LogService, here's a example:
game:GetService("LogService").MessageOut:connect(function(message, type) if message:match("Failed to resolve texture format") --[[ The error that it outputs if the texture is incorrect]] and type == Enum.MessageType.MessageError then -- code end)