Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Anti Exploit Scripting and more?

Asked by 10 years ago

I dought there is a sure fire way to prevent it, but is there any type of script that could prevent speed hackers? My game occasionly will get exploited that's why I am asking.

1 answer

Log in to vote
1
Answered by
Cizox 80
10 years ago

Here is a script made by Merely that kicks speedhackers:

local Player = game.Players.LocalPlayer
while wait(0.5) do
    if Workspace:GetRealPhysicsFPS() > 61 then
        Player:Kick()
    end
end
Ad

Answer this question