local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui", player.PlayerGui) gui.ResetOnSpawn = false gui.Name = "HumanoidProperties" local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 150, 0, 350) frame.Position = UDim2.new(0, 100, 0, 50) frame.BackgroundColor3 = Color3.new(0.4, 0.6, 1) frame.BorderColor3 = Color3.new(0, 0, 0) frame.Active = true frame.Draggable = true local textbox1 = Instance.new("TextBox", frame) textbox1.Size = UDim2.new(0.9, 0, 0.1, 0) textbox1.AnchorPoint = Vector2.new(0.5, 0) textbox1.Position = UDim2.new(0.5, 0, 0.02, 0) textbox1.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8) textbox1.BorderColor3 = Color3.new(0, 0, 0) textbox1.Text = "16" textbox1.PlaceholderText = textbox1.Text textbox1.Font = Enum.Font.SourceSans textbox1.TextScaled = true local button1 = Instance.new("TextButton", frame) button1.Size = UDim2.new(0.9, 0, 0.1, 0) button1.AnchorPoint = Vector2.new(0.5, 0) button1.Position = UDim2.new(0.5, 0, 0.13, 0) button1.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8) button1.BorderColor3 = Color3.new(0, 0, 0) button1.Text = "Set WalkSpeed" button1.Font = Enum.Font.SourceSans button1.TextScaled = true button1.MouseButton1Click:Connect(function() local character = player.Character local humanoid = character:FindFirstChild("Humanoid") local num = tonumber(textbox1.Text) or 16 if humanoid then humanoid.WalkSpeed = num end end) local textbox2 = Instance.new("TextBox", frame) textbox2.Size = UDim2.new(0.9, 0, 0.1, 0) textbox2.AnchorPoint = Vector2.new(0.5, 0) textbox2.Position = UDim2.new(0.5, 0, 0.02 + 0.25, 0) textbox2.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8) textbox2.BorderColor3 = Color3.new(0, 0, 0) textbox2.Text = "50" textbox2.PlaceholderText = textbox2.Text textbox2.Font = Enum.Font.SourceSans textbox2.TextScaled = true local button2 = Instance.new("TextButton", frame) button2.Size = UDim2.new(0.9, 0, 0.1, 0) button2.AnchorPoint = Vector2.new(0.5, 0) button2.Position = UDim2.new(0.5, 0, 0.13 + 0.25, 0) button2.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8) button2.BorderColor3 = Color3.new(0, 0, 0) button2.Text = "Set JumpPower" button2.Font = Enum.Font.SourceSans button2.TextScaled = true button2.MouseButton1Click:Connect(function() local character = player.Character local humanoid = character:FindFirstChild("Humanoid") local num = tonumber(textbox2.Text) or 50 if humanoid then humanoid.JumpPower = num end end) local textbox3 = Instance.new("TextBox", frame) textbox3.Size = UDim2.new(0.9, 0, 0.1, 0) textbox3.AnchorPoint = Vector2.new(0.5, 0) textbox3.Position = UDim2.new(0.5, 0, 0.02 + 0.5, 0) textbox3.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8) textbox3.BorderColor3 = Color3.new(0, 0, 0) textbox3.Text = "0" textbox3.PlaceholderText = textbox3.Text textbox3.Font = Enum.Font.SourceSans textbox3.TextScaled = true local button3 = Instance.new("TextButton", frame) button3.Size = UDim2.new(0.9, 0, 0.1, 0) button3.AnchorPoint = Vector2.new(0.5, 0) button3.Position = UDim2.new(0.5, 0, 0.13 + 0.5, 0) button3.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8) button3.BorderColor3 = Color3.new(0, 0, 0) button3.Text = "Set HipHeight" button3.Font = Enum.Font.SourceSans button3.TextScaled = true button3.MouseButton1Click:Connect(function() local character = player.Character local humanoid = character:FindFirstChild("Humanoid") local num = tonumber(textbox3.Text) or 0 if humanoid then humanoid.HipHeight = num end end) local button4 = Instance.new("TextButton", frame) button4.Size = UDim2.new(0.9, 0, 0.1, 0) button4.AnchorPoint = Vector2.new(0.5, 0) button4.Position = UDim2.new(0.5, 0, 0.13 + 0.65, 0) button4.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8) button4.BorderColor3 = Color3.new(0, 0, 0) button4.Text = "Jump" button4.Font = Enum.Font.SourceSans button4.TextScaled = true button4.MouseButton1Click:Connect(function() local character = player.Character local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end) local button5 = Instance.new("TextButton", frame) button5.Size = UDim2.new(0.9, 0, 0.1, 0) button5.AnchorPoint = Vector2.new(0.5, 0) button5.Position = UDim2.new(0.5, 0, 0.13 + 0.760, 0) button5.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8) button5.BorderColor3 = Color3.new(0, 0, 0) button5.Text = "Sit" button5.Font = Enum.Font.SourceSans button5.TextScaled = true button5.MouseButton1Click:Connect(function() local character = player.Character local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.Sit = true end end)