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