The Wayback Machine - https://web.archive.org/web/20260308224055/https://www.scribd.com/document/948625466/Speed-Script
0% found this document useful (0 votes)
1K views2 pages

WalkSpeed Bypass Script for Roblox

This script creates a GUI for players to adjust their walking speed in a game, allowing them to bypass mini-games that affect speed. It includes buttons to increase or decrease speed and a text box to input a specific speed value. Notifications are sent to inform the player about the GUI's purpose and creator.

Uploaded by

kitty2prettyy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views2 pages

WalkSpeed Bypass Script for Roblox

This script creates a GUI for players to adjust their walking speed in a game, allowing them to bypass mini-games that affect speed. It includes buttons to increase or decrease speed and a text box to input a specific speed value. Notifications are sent to inform the player about the GUI's purpose and creator.

Uploaded by

kitty2prettyy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

-- This script is made to bypass the mini games that changes the player speed like

get +1 speed per second


local ScreenGui = [Link]("ScreenGui")
local Frame = [Link]("Frame")
local Num = [Link]("TextBox")
local Plus = [Link]("TextButton")
local Minus = [Link]("TextButton")

[Link] = [Link]:WaitForChild("PlayerGui")
[Link] = false

[Link] = [Link](0, 200, 0, 100)


[Link] = [Link](0.5, -100, 0.5, -50)
Frame.BackgroundColor3 = [Link](50, 50, 50)
[Link] = ScreenGui
[Link] = true
[Link] = true

[Link] = [Link](0.6, 0, 0.6, 0)


[Link] = [Link](0.2, 0, 0.3, 0)
Num.BackgroundColor3 = [Link](30, 30, 30)
Num.TextColor3 = [Link](1, 1, 1)
[Link] = true
[Link] = [Link]
[Link] = true
[Link] = Frame

[Link] = [Link](0.2, 0, 0.6, 0)


[Link] = [Link](0.8, 0, 0.3, 0)
Plus.BackgroundColor3 = [Link](70, 70, 70)
Plus.TextColor3 = [Link](1, 1, 1)
[Link] = true
[Link] = [Link]
[Link] = "+"
[Link] = Frame

[Link] = [Link](0.2, 0, 0.6, 0)


[Link] = [Link](0, 0, 0.3, 0)
Minus.BackgroundColor3 = [Link](70, 70, 70)
Minus.TextColor3 = [Link](1, 1, 1)
[Link] = true
[Link] = [Link]
[Link] = "-"
[Link] = Frame

local player = [Link]


local number
local humanoid
local EditingNum = false

local function UpdateNum()


[Link] = tostring(number)
if humanoid then
[Link] = number
end
end

local function onCharacterAdded(character)


humanoid = character:WaitForChild("Humanoid")
number = [Link]
humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
if [Link] ~= number then
[Link] = number
end
end)
UpdateNum()
end

[Link]:Connect(onCharacterAdded)

if [Link] then
onCharacterAdded([Link])
end

Plus.MouseButton1Click:Connect(function()
number = number + 1
UpdateNum()
end)

Minus.MouseButton1Click:Connect(function()
if number > 0 then
number = number - 1
UpdateNum()
end
end)

[Link]:Connect(function()
EditingNum = true
end)

[Link]:Connect(function(enterPressed)
EditingNum = false
if enterPressed then
local Value = tonumber([Link])
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()

You might also like