Unverified Script

Speed Hub V1
-- LocalScript (StarterPlayerScripts ou StarterGui)
local Players = game:GetService("Players") local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid")
local baseSpeed = humanoid.WalkSpeed
-- GUI setup local screenGui = Instance.new("ScreenGui") screenGui.Name = "SpeedControllerGUI" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui")
local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 150) frame.Position = UDim2.new(0.5, -150, 0.5, -75) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = screenGui
-- Title, close and minimize local title = Instance.new("TextLabel") title.Text = "Speed Controller" title.Size = UDim2.new(1, -50, 0, 30) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundTransparency = 1 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.SourceSansBold title.TextSize = 20 title.Parent = frame
local closeButton = Instance.new("TextButton") closeButton.Text = "X" closeButton.Size = UDim2.new(0, 30, 0, 30) closeButton.Position = UDim2.new(1, -35, 0, 0) closeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) closeButton.TextColor3 = Color3.fromRGB(255, 255, 255) closeButton.Font = Enum.Font.SourceSansBold closeButton.TextSize = 20 closeButton.Parent = frame
local minimizeButton = Instance.new("TextButton") minimizeButton.Text = "-" minimizeButton.Size = UDim2.new(0, 30, 0, 30) minimizeButton.Position = UDim2.new(1, -70, 0, 0) minimizeButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100) minimizeButton.TextColor3 = Color3.fromRGB(255, 255, 255) minimizeButton.Font = Enum.Font.SourceSansBold minimizeButton.TextSize = 20 minimizeButton.Parent = frame
-- TextBox local speedBox = Instance.new("TextBox") speedBox.PlaceholderText = "Enter speed..." speedBox.Size = UDim2.new(0.6, -10, 0, 40) speedBox.Position = UDim2.new(0, 10, 0, 50) speedBox.ClearTextOnFocus = false speedBox.TextScaled = true speedBox.Font = Enum.Font.SourceSans speedBox.TextColor3 = Color3.fromRGB(0, 0, 0) speedBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) speedBox.Parent = frame
local applyButton = Instance.new("TextButton") applyButton.Text = "Apply" applyButton.Size = UDim2.new(0.35, -10, 0, 40) applyButton.Position = UDim2.new(0.65, 0, 0, 50) applyButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) applyButton.TextColor3 = Color3.fromRGB(255, 255, 255) applyButton.Font = Enum.Font.SourceSansBold applyButton.TextSize = 18 applyButton.Parent = frame
local warningLabel = Instance.new("TextLabel") warningLabel.Text = "Warning: High speed can be uncontrollable or laggy! Closing GUI will reset speed to 16." warningLabel.Size = UDim2.new(1, -20, 0, 40) warningLabel.Position = UDim2.new(0, 10, 0, 100) warningLabel.BackgroundTransparency = 1 warningLabel.TextColor3 = Color3.fromRGB(255, 0, 0) warningLabel.TextScaled = true warningLabel.Font = Enum.Font.SourceSansBold warningLabel.Parent = frame
local baseSpeedLabel = Instance.new("TextLabel") baseSpeedLabel.Text = "Base Speed: "..baseSpeed baseSpeedLabel.Size = UDim2.new(0, 200, 0, 20) baseSpeedLabel.Position = UDim2.new(0, 10, 1, -25) baseSpeedLabel.BackgroundTransparency = 1 baseSpeedLabel.TextColor3 = Color3.fromRGB(255, 255, 255) baseSpeedLabel.Font = Enum.Font.SourceSansBold baseSpeedLabel.TextScaled = false baseSpeedLabel.Parent = frame
-- TextBox clears automatically speedBox.Focused:Connect(function() speedBox.Text = "" end)
-- Apply speed applyButton.MouseButton1Click:Connect(function() local speed = tonumber(speedBox.Text) if speed then if speed > 200 then warningLabel.Text = "Warning: High speed can be uncontrollable or laggy! Closing GUI will reset speed to 16." else warningLabel.Text = "Closing GUI will reset speed to 16." end humanoid.WalkSpeed = speed else warningLabel.Text = "Please enter a valid number! Closing GUI will reset speed to 16." end end)
-- Minimize GUI local minimized = false minimizeButton.MouseButton1Click:Connect(function() if not minimized then frame.Size = UDim2.new(0, 150, 0, 30) speedBox.Visible = false applyButton.Visible = false warningLabel.Visible = false minimized = true else frame.Size = UDim2.new(0, 300, 0, 150) speedBox.Visible = true applyButton.Visible = true warningLabel.Visible = true minimized = false end end)
-- Confirmation popup for closing closeButton.MouseButton1Click:Connect(function() local popup = Instance.new("Frame") popup.Size = UDim2.new(0, 250, 0, 100) popup.Position = UDim2.new(0.5, -125, 0.5, -50) popup.BackgroundColor3 = Color3.fromRGB(50, 50, 50) popup.BorderSizePixel = 0 popup.Parent = screenGui
local msg = Instance.new("TextLabel") msg.Text = "Are you sure you want to close?\nClick YES to confirm.\nSpeed will reset to 16." msg.Size = UDim2.new(1, -20, 0.6, 0) msg.Position = UDim2.new(0, 10, 0, 10) msg.BackgroundTransparency = 1 msg.TextColor3 = Color3.fromRGB(255, 255, 255) msg.TextScaled = true msg.Font = Enum.Font.SourceSansBold msg.Parent = popup
local yesButton = Instance.new("TextButton") yesButton.Text = "YES" yesButton.Size = UDim2.new(0.4, 0, 0.3, 0) yesButton.Position = UDim2.new(0.05, 0, 0.65, 0) yesButton.BackgroundColor3 = Color3.fromRGB(0, 200, 0) yesButton.TextColor3 = Color3.fromRGB(255, 255, 255) yesButton.Font = Enum.Font.SourceSansBold yesButton.TextSize = 18 yesButton.Parent = popup
local noButton = Instance.new("TextButton") noButton.Text = "NO" noButton.Size = UDim2.new(0.4, 0, 0.3, 0) noButton.Position = UDim2.new(0.55, 0, 0.65, 0) noButton.BackgroundColor3 = Color3.fromRGB(200, 0, 0) noButton.TextColor3 = Color3.fromRGB(255, 255, 255) noButton.Font = Enum.Font.SourceSansBold noButton.TextSize = 18 noButton.Parent = popup
yesButton.MouseButton1Click:Connect(function() humanoid.WalkSpeed = 16 screenGui:Destroy() end) noButton.MouseButton1Click:Connect(function() popup:Destroy() end)
end)
-- Reset humanoid if respawn player.CharacterAdded:Connect(function(char) character = char humanoid = character:WaitForChild("Humanoid") end)
Related Scripts

Infinite Yield - Roblox Admin Script
@furky11.23k views • 10 months ago -1738424405783-76256208-phxal.webp&w=3840&q=75)
Forge Hub (BEST OP AUTOFARMS, TPS, MISC + LOADS...
@lordscal14.31k views • 10 months ago -1738424530145-76380570-akqikg.webp&w=3840&q=75)
Forge Hub (OP AUTOFARMS, AUTO UPGRADES + MORE!)
@lordscal30.12k views • 10 months ago 
Buang Hub - Anime Adventures
@kiyoshin3.59k views • 10 months ago 
Universal Car Speed Modifier
@lordscal3.79k views • 10 months ago -1738425233470-77083895-9lrx4.webp&w=3840&q=75)
Blox Fruit (Fast Auto Farm, Auto V4, Auto Sea E...
@kiyoshin22.36k views • 10 months ago