Nowadays multiple users use the well-known animation hack (or speed hack) to hack themselves more speed on ROBLOX Games. I created a script using the GetRealPhysicsFPS engine to automatically kick players from your game if they attempt an animation hack.
How it works: usually, ROBLOX animations stand at a pace of 60 FPS MAX. If a player increases their animation speed, their FPS goes up as well. So when their FPS counter is higher than 60, they get kicked.
Notice: You can get this script on the Catalog as well. It does NOT do anything bad to your game. Just don't add it too much..
local Player = game.Players.LocalPlayer
while wait(0.5) do
if Workspace:GetRealPhysicsFPS() > 61 then
Player:Kick()
end
end
Stay safe! |