local boostspeed = 50 -- change this to walk faster or slower local ospeed = 16 -- this is original walkspeed yes yes -- very pro -- made by proohio -- https://proohio.click/ local plrs = game:GetService("Players") local plr = plrs.LocalPlayer local char = plr.Character or plr.CharacterAdded:Wait() local hum = char:WaitForChild("Humanoid") local bool = Instance.new("BoolValue") bool.Value = false local tool = Instance.new("Tool") tool.Name = "speedboost" tool.RequiresHandle = false tool.Parent = game.Players.LocalPlayer.Backpack tool.Equipped:Connect(function() bool.Value = true end) tool.Unequipped:Connect(function() bool.Value = false end) bool:GetPropertyChangedSignal("Value"):Connect(function() if bool.Value then hum.WalkSpeed = boostspeed elseif not bool.Value then hum.WalkSpeed = ospeed end end)