#AntiCheat not working
7 messages · Page 1 of 1 (latest)
it doesn't work since you are only checking the walkspeed when the player's character loads. You need to check when the walkspeed changes, add an if statement to check if it's greater than 16 and it should work.
basically inside the CharacterAdded function add this:
humanoid:GetPropertyChangedSignal("WalkSpeed"):connect(function() if humanoid.WalkSpeed >= 17 then -- Ban the player code end end
hopefully it works 😉
@grizzled bough
did it work?
your welcome
hopefully it does