RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a roblox lua script that makes it so the player walkspeed is faster"
-- server script game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) character.Humanoid.WalkSpeed = 25 -- Change this value to set the desired walk speed end) end)