Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- easy speed script
- step 1: make a script in SeverScriptService
- step 2: write the code down below
- local speed = 1
- while humanoid.MoveDirection.Magnitude >0 do
- speed = speed + 0.1--How large the increase is
- humanoid.WalkSpeed = 16*(speed)--Default Speed is 16. Multiply its by speed variable
- wait(3)--How often it increases
- end
Advertisement
Add Comment
Please, Sign In to add comment