Advertisement
HenloMyDude

"Double Trouble"

Sep 13th, 2019
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. plr = owner
  3. char = plr.Character
  4. char.Archivable = true
  5.  
  6. double = char:Clone()
  7. newanim = char.Animate:Clone()
  8.  
  9. double.Parent = char
  10. newanim.Parent = double
  11.  
  12. while wait() do
  13. double.Humanoid.WalkToPoint = char.HumanoidRootPart.Position
  14. if char.Humanoid.Jump == true then
  15. double.Humanoid.Jump = true
  16. end
  17. if char.Humanoid.Sit == true then
  18. double.Humanoid.Sit = true
  19. end
  20. double.Humanoid.WalkSpeed = char.Humanoid.WalkSpeed
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement