local Players = game:GetService("Players") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local originalWalkSpeed = humanoid.WalkSpeed local speedBoost = 20 -- A more reasonable speed boost local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui -- Title (Positioned at the edge of the screen) local titleLabel = Instance.new("TextLabel") titleLabel.Parent = screenGui titleLabel.Size = UDim2.new(0.2, 0, 0.05, 0) -- Adjust size as needed titleLabel.Position = UDim2.new(0.01, 0, 0.01, 0) -- Top-left corner, near the edge titleLabel.BackgroundTransparency = 1 titleLabel.TextColor3 = Color3.new(0, 1, 0) titleLabel.Text = "Made by: shewithepanda" titleLabel.Font = Enum.Font.SourceSans titleLabel.TextSize = 14 local button = Instance.new("TextButton") button.Parent = screenGui button.Size = UDim2.new(0.2, 0, 0.1, 0) button.Position = UDim2.new(0.4, 0, 0.15, 0) button.Text = "Speed Boost: OFF" button.BackgroundColor3 = Color3.new(0.5, 0.1, 0.1) button.TextColor3 = Color3.new(1, 1, 1) local isSpeedBoosted = false button.MouseButton1Click:Connect(function() isSpeedBoosted = not isSpeedBoosted if isSpeedBoosted then humanoid.WalkSpeed = originalWalkSpeed + speedBoost button.Text = "Speed Boost: ON" button.BackgroundColor3 = Color3.new(0.1, 0.5, 0.1) else humanoid.WalkSpeed = originalWalkSpeed button.Text = "Speed Boost: OFF" button.BackgroundColor3 = Color3.new(0.5, 0.1, 0.1) end end)