Advertisement
Prephy

Clone to experiment with

Jul 11th, 2020 (edited)
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. Pl = owner
  2. local mod = Instance.new("Model",workspace)
  3. mod.Parent = game.Workspace
  4. mod.Name = "test"
  5. H = Pl.Character.Head:clone()
  6. H.Anchored = false
  7. H.Parent = mod
  8.  
  9. T = Pl.Character.Torso:clone()
  10. T.Parent = mod
  11. T.Anchored = false
  12. T.CanCollide=false
  13.  
  14. H = Pl.Character.Humanoid:clone()
  15. H.Parent = mod
  16. LL = Pl.Character["Left Leg"]:clone()
  17. LL.Anchored = false
  18. LL.Parent = mod
  19. LL.CanCollide=false
  20. RL = Pl.Character["Right Leg"]:clone()
  21. RL.Parent = mod
  22. RL.Anchored = false
  23. RL.CanCollide=false
  24. RA = Pl.Character["Right Arm"]:clone()
  25. RA.Parent = mod
  26. RA.Anchored = false
  27. RA.CanCollide=false
  28. LA = Pl.Character["Left Arm"]:clone()
  29. LA.Anchored = false
  30. LA.Parent = mod
  31. LA.CanCollide=false
  32. HRP = Pl.Character.HumanoidRootPart:Clone()
  33. HRP.Parent = mod
  34. HRP.CanCollide=false
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement