Alt detection. Fighting exploiters

Imagine, you are an exploiter and you like to play with cheats on your twink account, suddenly after your twink is banned, a ban comes to your main account. I want to create a table where, at the expense of the GPU (os.clock()), all the twinks of all accounts will be added, and if one account is banned, all the player’s accounts, including his main one, will be blocked. If you use this code, will innocent players be banned?

local s = tick()-os.clock()
local b = math.round(s)


game.ReplicatedStorage.RemoteEvent:FireServer(b)
game.ReplicatedStorage.RemoteEvent.OnServerEvent:Connect(function(plr, b)
	if b == GPU(Example) then
		plr:Kick("Alt detection")
	end
end)

I understand that this is easy to get around, but still, due to inexperience or carelessness, you can provide the system with your main account

1 Like

yes it will, use the Roblox’s ban API instead

if you are doing the check with the cpu power/time then yes multiple users will get banned because some people may have the same cpu time

+ exploiters will abuse this to get other users banned

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.