of     1   

gssz
#228413940Monday, December 04, 2017 2:58 AM GMT

I need a script where the player will walk at walk speed 9. I need a way to do it without having the player step on something, like a way to where they automatically have that walk speed.
coda6000
#228414393Monday, December 04, 2017 3:12 AM GMT

im a little mixed on scripting but i think you may be able to do a get character from activate upon entering of a new player and do a WalkSpeed = (whatever number your thinking of, 16 is the default)
Vulkarin
#228414597Monday, December 04, 2017 3:18 AM GMT

game.Players.PlayerAdded:Connect(function(pl) pl.CharacterAdded:Connect(function(ch) ch.Humanoid.WalkSpeed = 9 end) end) For now on post this stuff in the scripting subforum https://forum.roblox.com/Forum/ShowForum.aspx?ForumID=33
balcktack
#228414638Monday, December 04, 2017 3:20 AM GMT

game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) character.Humanoid.WalkSpeed = 9 end) end)

    of     1