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 11 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
11 years ago

Here is a script made by Merely that kicks speedhackers:

1local Player = game.Players.LocalPlayer
2while wait(0.5) do
3    if Workspace:GetRealPhysicsFPS() > 61 then
4        Player:Kick()
5    end
6end
Ad

Answer this question