Categories > Exploiting > Scripts >

[for skids!!] jailbreak & more games walkspeed bypass!!!

Posts: 20

Threads: 7

Joined: Jun, 2022

Reputation: 0

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

 

  • 1

Posts: 199

Threads: 22

Joined: Jul, 2021

Reputation: -22

Replied

damn the code is pretty small for a jailbreak bypass vouch tho

  • 0

bruhfuceqd

darkluxer

Posts: 28

Threads: 6

Joined: Oct, 2022

Reputation: -1

Replied

Nice, pretty small for that but cool.

  • 0

https://cdn.discordapp.com/attachments/945143931870515240/1032826086830120991/giphy_1.gif

masked

magnet

Posts: 31

Threads: 3

Joined: May, 2021

Reputation: 3

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 !

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )