of     1   

HailMontgomery
#142213548Thursday, July 31, 2014 9:20 PM GMT

Title says it all.
Valtameri
#142213832Thursday, July 31, 2014 9:22 PM GMT

game.Workspace.[Player's Name].Humanoid.WalkSpeed = 16 --16 is the default speed
HailMontgomery
#142214203Thursday, July 31, 2014 9:26 PM GMT

I'd much rather have it happen when someone joins, and I don't know how to find someone's name based on the fact they joined.
Luc599345
#142214273Thursday, July 31, 2014 9:27 PM GMT

Well, do you have an existing script that you might want us to fix?
blockoo
#142215149Thursday, July 31, 2014 9:37 PM GMT

function playerJoined(p) p.CharacterAdded:connect(function(c) c.Humanoid.WalkSpeed = 25 end) end game.Players.PlayerAdded:connect(playerJoined)
Krypticon
#142215779Thursday, July 31, 2014 9:44 PM GMT

Game.Players.PlayerAdded;connect(function(player) player.CharacterAdded:connect(function(character) character.Humanoid.WalkSpeed=22--change 22 to the speed you want end) end)

    of     1