-- Place this in a LocalScript (e.g., StarterPlayerScripts) local Players = game:GetService("Players") local player = Players.LocalPlayer -- Wait for the character to load player.CharacterAdded:Connect(function(character) local humanoid = character:WaitForChild("Humanoid") humanoid.WalkSpeed = 16 end) -- If the character is already loaded when the script runs if player.Character then local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = 16 end end