of     1   

Proxemics
#144631290Wednesday, August 27, 2014 12:14 PM GMT

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!
Dankvisky
#144635515Wednesday, August 27, 2014 2:05 PM GMT

Didnt you just copy and paste it from the Wiki? Roblox Wiki script: while wait(0.5) do -- This creates a block of code that executes ever 1/2 of a second if workspace:GetRealPhysicsFPS() > 62 then -- If the physics FPS slightly exceeds 60 FPS (the frame-rate that roblox renders) then... game.Players.LocalPlayer:Kick() -- Disconnect the player from the game. -- You can also declare a variable like "local Player = game.Players.LocalPlayer" -- With this you can replace the game.Players.LocalPlayer:Kick() with Player:Kick(), making the script more efficient end end
Keanu73
#144642413Wednesday, August 27, 2014 4:29 PM GMT

What the hell I think he did. But kicking doesn't really help.. By the way check out digpoe's profile. He made an Anti-CE place. So he uses an script to detect if you have CE installed. If you do, it kicks you. Much better :p
truman89
#144643142Wednesday, August 27, 2014 4:44 PM GMT

Anti CE Scripts are impossible. You can't find someone's files on their PC through scripting, Roblox would never allow that.

    of     1