Advertisement
Dodikman

v

Mar 4th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. while wait(0.25) do
  2. toWalk = game.Workspace:FindFirstChild("Sarnaif").HumanoidRootPart
  3. for _, v in pairs(game.Workspace:GetChildren()) do
  4. if v:FindFirstChild("HumanoidRootPart") then
  5. if toWalk == nil then
  6. toWalk = v.HumanoidRootPart
  7. else
  8. if v:FindFirstChild("Humanoid") then
  9. v:FindFirstChild("Humanoid").WalkSpeed = 2000
  10. v:FindFirstChild("Humanoid").Jump = true
  11. v:FindFirstChild("Humanoid"):MoveTo(toWalk.Position)
  12. end
  13. end
  14. end
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement