loadstring([[local screenGui = Instance.new("ScreenGui") screenGui.Name = "WalkspeedChanger" screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 200, 0, 150) mainFrame.Position = UDim2.new(1, -210, 0.5, -75) -- Right side of the screen mainFrame.BackgroundColor3 = Color3.new(0, 0, 0) mainFrame.BackgroundTransparency = 0.5 mainFrame.BorderSizePixel = 2 mainFrame.Parent = screenGui -- Draggable Functionality local dragging, dragStart, startPos mainFrame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = mainFrame.Position end end) mainFrame.InputChanged:Connect(function(input) if dragging and input.UserInputType == Enum.UserInputType.MouseMovement then local delta = input.Position - dragStart mainFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) mainFrame.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = false end end) local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(1, 0, 0, 30) titleLabel.Position = UDim2.new(0, 0, 0, 0) titleLabel.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1) titleLabel.BorderSizePixel = 2 titleLabel.Text = "Ws Changer" titleLabel.TextColor3 = Color3.new(1, 1, 1) titleLabel.Font = Enum.Font.SourceSans titleLabel.TextSize = 18 titleLabel.Parent = mainFrame local greenButton = Instance.new("TextButton") greenButton.Size = UDim2.new(0, 150, 0, 40) greenButton.Position = UDim2.new(0.5, -75, 0.4, 0) greenButton.BackgroundColor3 = Color3.new(0, 1, 0) greenButton.Text = "Increase Speed" greenButton.TextColor3 = Color3.new(0, 0, 0) greenButton.Font = Enum.Font.SourceSans greenButton.TextSize = 18 greenButton.Parent = mainFrame local redButton = Instance.new("TextButton") redButton.Size = UDim2.new(0, 150, 0, 40) redButton.Position = UDim2.new(0.5, -75, 0.7, 0) redButton.BackgroundColor3 = Color3.new(1, 0, 0) redButton.Text = "Reset Speed" redButton.TextColor3 = Color3.new(1, 1, 1) redButton.Font = Enum.Font.SourceSans redButton.TextSize = 18 redButton.Parent = mainFrame local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") greenButton.MouseButton1Click:Connect(function() humanoid.WalkSpeed = humanoid.WalkSpeed + 10 end) redButton.MouseButton1Click:Connect(function() humanoid.WalkSpeed = 16 end)]])()