Categories > Exploiting > Scripts >
[for skids!!] jailbreak & more games walkspeed bypass!!!
Posted
getgenv().ws = 200 -- change this to whatever value u want
local getrawmetatable = getrawmetatable(game)
local oldIndex = getrawmetatable.__index
setreadonly(getrawmetatable, false)
getrawmetatable.__index = newcclosure(function(player, ws)
if tostring(player) == "Humanoid" and tostring(ws) == "WalkSpeed" then
return
end
return oldIndex(player, ws)
end)
game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = getgenv().ws
setreadonly(getrawmetatable, true)
im bored
Replied
damn the code is pretty small for a jailbreak bypass vouch tho
Cancel
Post
Replied
Nice, pretty small for that but cool.
Cancel
Post
https://cdn.discordapp.com/attachments/945143931870515240/1032826086830120991/giphy_1.gif
Replied
id recommend using hookmetamethod instead as its more secure:
getgenv().WS = 200 -- walkspeed u want goes here
local OldIndex; OldIndex = hookmetamethod(game, "__index", newcclosure(function(Self, Idx)
if tostring(Self) == "Humanoid" and Idx == "WalkSpeed" then
return
end
return OldIndex(Self, Idx)
end))
game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = WS
-- no need for the getgenv() because WS is now a global environment variable ^^^^
-- i mean like, hookmetamethod is the same as getgenv().hookmetamethod
otherwise good script vouch !
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post