WalkSpeed (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
m Text replacement - "<code lua>" to "<SyntaxHighlight code="lua">"
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:


{{Example|Use this in a LocalScript:
{{Example|Use this in a LocalScript:
<SyntaxHighlight code="lua">
<syntaxhighlight lang="lua">
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150
</SyntaxHighlight>}}
</syntaxhighlight>}}


[[Category:Properties]]
[[Category:Properties]]

Latest revision as of 06:16, 27 April 2023

WalkSpeed
Type int
Description How quickly a humanoid can walk. The default value is 16.
Member of Humanoid


Example
Use this in a LocalScript:
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 150