Hello Cuties !
Byfron is out but it doesnt mean you can just rely on it !
Byfron will be bypassed at a point and the only thing we can hope is that it wont be soon.
How can you secure your game?
The ways you are securing your game will have a big impact on the exploiters mind,
the more they get banned, the more they learn and usually they prolly will bother creating or using another alt account after their 15βth one got banned.
How would you know if your game isnt securided :
- Always check gamepass by the server
- Always have baisc remote security (Secure your remots in a way to only accept valid calls & check if the value sent can be legit)
If you need more informations, you can refer to this guide by @CodedJer
Creating Proper Anti-Exploits: The Ultimate Guide
Ways to ban hackers.
- Remote Events (basic way & also bypassable, tho if you do a secure & a good one, it hackers will have a long time bypassing it).
- Animations : Detect with the server if the ban animation is played (easy to bypass if you do it not correctly).
- Tools : Using the .Equiped function, the server can create a tool at the player join and make him to get the tool & use this tool to know if the ban tool is equiped. ( Tho, it woud require the game to make the tool parented to nil or hiding the tool in the game with a random name to not have it know by other players & exploiter.
(But if you do it correctly and add your own security, you can detect the ways to detect it.
- CFrame : looping a magnitude check and having the client to tp to a particular cframe
- Part : using the .Touched event, the client can bring a bannable part to make the server ban the player with the .Touched event on it.
- Anything that replicate can be used to ban the player, however if you are not using remote events, you wont be able to have a specify reason on why the player got banned (banned for : Memory Tampering)
Dex Detection
Today i will share a cool script detection, in this case it will be about a famous tool used by exploit script developers named : Dex Explorer. There are plenty of versions of them but this detect mainly every of them.
Please also take in count that this can still be bypassed and you should not fully rely on it even tho it could stop the majority of skidders ( or people like : TheTamperist, reika or even antikurr ) that doesnt know how hook properly how to use hookfunction
-- might false detect if u dont detect if the game is loaded
repeat task.wait() until game:IsLoaded() -- risky as a bypass can be made if they hook game:IsLoaded() and the script is the anticheat to return false
while task.wait() do
spawn(function()
local tbl1 = {}
local tbl2 = {}
setmetatable(tbl1, tbl2)
tbl2.__mode = "v"
local key = {}
tbl1[key] = Instance.new("LocalScript\00\00\00", game)
--[[
pls add a pcall for these if you really need security
Instance,
Instance.new,
Instance.new("localScript")
and Instance.new("LocalScript"):Destroy()
]]
key = {}
tbl1[key] = 2
task.wait(3)
for k, v in pairs(tbl1) do
if v ~= 2 then
print("dex detected")
else
xpcall(function()
game.LocalScript:Destroy()
end, function()
print("env tampering")
end)
end
end
end)
end
If you need an anticheat and you feel like its too long or do not want to do your own but still need a secure & an anticheat that is really good, i would like to give you this list of discord server that have great anticheat :
Anonymous System : Discord
ASense : Discord
Aero Anticheat : Discord
RoGuard : Discord
- Sorry if i did some typo mistake, have a great day ^^