-- Created By Stormzy -- Works on most games (bypass-dependent) local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local Humanoid = Character:WaitForChild("Humanoid") -- Set walkspeed (100-etc) -- For game bypasses don't go above 75 - 100 local NEW_SPEED = 50 local function setWalkSpeed(speed) if Humanoid then Humanoid.WalkSpeed = speed end end setWalkSpeed(NEW_SPEED) LocalPlayer.CharacterAdded:Connect(function(newChar) Character = newChar Humanoid = Character:WaitForChild("Humanoid") setWalkSpeed(NEW_SPEED) end) -- Constantly enforces speed (bypasses most anticheats with disables and variables) spawn(function() while true do if Humanoid and Humanoid.Parent then Humanoid.WalkSpeed = NEW_SPEED end wait(0.1) -- If you're experiencing delays, you can change this. (performance based) end end) print("WalkSpeed set to " .. NEW_SPEED .. " | Script loaded successfully!") -- Script by Stormzy, open source to use, enjoy!