TheUnknownDiscord

the clones

Aug 23rd, 2021 (edited)
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. owner = game:GetService("Players").Lucas_YT111
  2. function CloneMe(char)
  3. char.Archivable = true
  4. local clone = char:Clone()
  5. char.Archivable = false
  6. return clone
  7. end
  8.  
  9. local charClone = CloneMe(game.Players.Lucas_YT111.Character)
  10. charClone.Parent = game.Workspace
  11. for i,v in pairs(owner.Character:GetDescendants()) do
  12. if v:IsA("BasePart") or v:IsA("Decal") then
  13. v.Transparency = 1
  14. end
  15. end
  16. for i,v in pairs(charClone:GetDescendants()) do
  17. if v:IsA("BasePart") then
  18. v.CanCollide = false
  19. v.Transparency = 0
  20. end
  21. end
  22. local bg = Instance.new("BodyGyro", charClone)
  23. bg.D = 40
  24. bg.P = 10000
  25. bg.MaxTorque = Vector3.new(4000000, 4000000, 4000000)
  26. while true do
  27. charClone.HumanoidRootPart.CFrame = owner.Character.HumanoidRootPart.CFrame
  28. wait(0.5)
  29. end
Add Comment
Please, Sign In to add comment