@Merely patch speed exploit

Ok, so i don’t think this exploit is that secret, so posting it here, i hope someone can make a patch.
Got it from exploiter forum.

Step 1: Open Cheat Engine
Step 2: Join a ROBLOX game where you know or think you’ve tried the speed hack but was kicked or disconnected by the anti-speed hack script
Step 3: Select the RobloxPlayerBeta.exe process
Step 4: Change Value Type to String
Step 5: Put ‘GetRealPhysicsFPS’ in the Value
Step 6: Scan and copy all addresses onto the address list
Step 7: Change ‘GetRealPhysicsFPS’ to anything, like ‘GetFakePhysicsFPS’
Step 8: Do the speed hack (Value double, type inbetween, value 60)
Step 9: Speed hax 4 ever mates!!11

probably could do

if not Workspace[“GetRealPhysicsFPS”] then
game.Players.LocalPlayer:Kick()

http://gyazo.com/167647dda42881cd2649fa69528db766.png
Line 1 problem.

if not Workspace[“GetRealPhysicsFPS”] then
game.Players.LocalPlayer:Kick()
end

:swag:

local function getMethod(p, m)
local s, r = pcall(function() return p[m] end)
return s and r
end

if not getMethod(workspace, ‘GetRealPhysicsFPS’) then
Game.Players.LocalPlayer:Kick()
end

[quote] local function getMethod(p, m)
local s, r = pcall(function() return p[m] end)
return s and r
end

if not getMethod(workspace, ‘GetRealPhysicsFPS’) then
Game.Players.LocalPlayer:Kick()
end [/quote]
Good call. I forgot that indexing throws an error.