-- This script is made to bypass the mini games that changes the player speed like get +1 speed per second local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Num = Instance.new("TextBox") local Plus = Instance.new("TextButton") local Minus = Instance.new("TextButton") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false Frame.Size = UDim2.new(0, 200, 0, 100) Frame.Position = UDim2.new(0.5, -100, 0.5, -50) Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Frame.Parent = ScreenGui Frame.Active = true Frame.Draggable = true Num.Size = UDim2.new(0.6, 0, 0.6, 0) Num.Position = UDim2.new(0.2, 0, 0.3, 0) Num.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Num.TextColor3 = Color3.new(1, 1, 1) Num.TextScaled = true Num.Font = Enum.Font.SourceSans Num.ClearTextOnFocus = true Num.Parent = Frame Plus.Size = UDim2.new(0.2, 0, 0.6, 0) Plus.Position = UDim2.new(0.8, 0, 0.3, 0) Plus.BackgroundColor3 = Color3.fromRGB(70, 70, 70) Plus.TextColor3 = Color3.new(1, 1, 1) Plus.TextScaled = true Plus.Font = Enum.Font.SourceSans Plus.Text = "+" Plus.Parent = Frame Minus.Size = UDim2.new(0.2, 0, 0.6, 0) Minus.Position = UDim2.new(0, 0, 0.3, 0) Minus.BackgroundColor3 = Color3.fromRGB(70, 70, 70) Minus.TextColor3 = Color3.new(1, 1, 1) Minus.TextScaled = true Minus.Font = Enum.Font.SourceSans Minus.Text = "-" Minus.Parent = Frame local player = game.Players.LocalPlayer local number local humanoid local EditingNum = false local function UpdateNum() Num.Text = tostring(number) if humanoid then humanoid.WalkSpeed = number end end local function onCharacterAdded(character) humanoid = character:WaitForChild("Humanoid") number = humanoid.WalkSpeed humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function() if humanoid.WalkSpeed ~= number then humanoid.WalkSpeed = number end end) UpdateNum() end player.CharacterAdded:Connect(onCharacterAdded) if player.Character then onCharacterAdded(player.Character) end Plus.MouseButton1Click:Connect(function() number = number + 1 UpdateNum() end) Minus.MouseButton1Click:Connect(function() if number > 0 then number = number - 1 UpdateNum() end end) Num.Focused:Connect(function() EditingNum = true end) Num.FocusLost:Connect(function(enterPressed) EditingNum = false if enterPressed then local Value = tonumber(Num.Text) if Value and Value > 0 then number = Value UpdateNum() else UpdateNum() end end end) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "[Bypass] WalkSpeed Gui", Text = "Made By the_king.78", Duration = 12 }) UpdateNum()