Advertisement
RandomBlox47

Walkspeed all

May 28th, 2022 (edited)
1,180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. -- this is a short and simple script that sets all player character's walkspeed to 100
  2. -- see more of my scripts in https://pastebin.com/u/RandomBlox47/1/zzkM755Y
  3. for i, Player in pairs(game.Players:GetPlayers()) do -- runs a script in all players
  4.    Player.Character.Humanoid.WalkSpeed = 100 -- sets the character's humanoid walkspeed to 100, it can be changed to any number, you can also change WalkSpeed to any other Humanoid Property such as Health
  5. end -- ends the script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement