Advertisement
King12255

Roblox WalkSpeed Gui (BYPASS)

Dec 10th, 2024
1,621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.84 KB | None | 0 0
  1. -- This script is made to bypass the mini games that changes the player speed like get +1 speed per second
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local Num = Instance.new("TextBox")
  5. local Plus = Instance.new("TextButton")
  6. local Minus = Instance.new("TextButton")
  7.  
  8. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9. ScreenGui.ResetOnSpawn = false
  10.  
  11. Frame.Size = UDim2.new(0, 200, 0, 100)
  12. Frame.Position = UDim2.new(0.5, -100, 0.5, -50)
  13. Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  14. Frame.Parent = ScreenGui
  15. Frame.Active = true
  16. Frame.Draggable = true
  17.  
  18. Num.Size = UDim2.new(0.6, 0, 0.6, 0)
  19. Num.Position = UDim2.new(0.2, 0, 0.3, 0)
  20. Num.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  21. Num.TextColor3 = Color3.new(1, 1, 1)
  22. Num.TextScaled = true
  23. Num.Font = Enum.Font.SourceSans
  24. Num.ClearTextOnFocus = true
  25. Num.Parent = Frame
  26.  
  27. Plus.Size = UDim2.new(0.2, 0, 0.6, 0)
  28. Plus.Position = UDim2.new(0.8, 0, 0.3, 0)
  29. Plus.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  30. Plus.TextColor3 = Color3.new(1, 1, 1)
  31. Plus.TextScaled = true
  32. Plus.Font = Enum.Font.SourceSans
  33. Plus.Text = "+"
  34. Plus.Parent = Frame
  35.  
  36. Minus.Size = UDim2.new(0.2, 0, 0.6, 0)
  37. Minus.Position = UDim2.new(0, 0, 0.3, 0)
  38. Minus.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  39. Minus.TextColor3 = Color3.new(1, 1, 1)
  40. Minus.TextScaled = true
  41. Minus.Font = Enum.Font.SourceSans
  42. Minus.Text = "-"
  43. Minus.Parent = Frame
  44.  
  45. local player = game.Players.LocalPlayer
  46. local number
  47. local humanoid
  48. local EditingNum = false
  49.  
  50. local function UpdateNum()
  51.     Num.Text = tostring(number)
  52.     if humanoid then
  53.         humanoid.WalkSpeed = number
  54.     end
  55. end
  56.  
  57. local function onCharacterAdded(character)
  58.     humanoid = character:WaitForChild("Humanoid")
  59.     number = humanoid.WalkSpeed
  60.     humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  61.         if humanoid.WalkSpeed ~= number then
  62.             humanoid.WalkSpeed = number
  63.         end
  64.     end)
  65.     UpdateNum()
  66. end
  67.  
  68. player.CharacterAdded:Connect(onCharacterAdded)
  69.  
  70. if player.Character then
  71.     onCharacterAdded(player.Character)
  72. end
  73.  
  74. Plus.MouseButton1Click:Connect(function()
  75.     number = number + 1
  76.     UpdateNum()
  77. end)
  78.  
  79. Minus.MouseButton1Click:Connect(function()
  80.     if number > 0 then
  81.         number = number - 1
  82.         UpdateNum()
  83.     end
  84. end)
  85.  
  86. Num.Focused:Connect(function()
  87.     EditingNum = true
  88. end)
  89.  
  90. Num.FocusLost:Connect(function(enterPressed)
  91.     EditingNum = false
  92.     if enterPressed then
  93.         local Value = tonumber(Num.Text)
  94.         if Value and Value > 0 then
  95.             number = Value
  96.             UpdateNum()
  97.         else
  98.             UpdateNum()
  99.         end
  100.     end
  101. end)
  102.  
  103. game:GetService("StarterGui"):SetCore("SendNotification", {
  104.     Title = "[Bypass] WalkSpeed Gui",
  105.     Text = "Made By the_king.78",
  106.     Duration = 12
  107. })
  108.  
  109. UpdateNum()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement