Advertisement
pz_java

Inmortality

Sep 12th, 2017
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 KB | None | 0 0
  1. local rj = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  2. local n = game.Players.LocalPlayer.Character.Torso.Neck:Clone()
  3. local rs = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  4. local ls = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  5. local rh = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
  6. local lh = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
  7.  
  8.  
  9. local pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  10. childs = {}
  11. game.Players.LocalPlayer.Character.PrimaryPart = nil
  12. for _,child in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  13. table.insert(childs,child:Clone())
  14. end
  15. game:GetService("RunService").RenderStepped:connect(function()
  16. if game.Workspace:FindFirstChild(game.Players.LocalPlayer.Name) then
  17. if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  18. pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  19. end
  20.  
  21. for _,child in pairs(childs) do
  22. if not game.Players.LocalPlayer.Character:FindFirstChild(child.Name) then
  23. child.Parent = game.Players.LocalPlayer.Character
  24. table.insert(childs,child:Clone())
  25.  
  26.  
  27. end
  28. end
  29.  
  30. if not game.Players.LocalPlayer.Character.HumanoidRootPart:FindFirstChild("RootJoint") then
  31. rj.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  32. rj.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  33. rj.Part1 = game.Players.LocalPlayer.Character.Torso
  34. rj = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint:Clone()
  35. end
  36. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.Part0 = game.Players.LocalPlayer.Character.HumanoidRootPart
  37. game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.Part1 = game.Players.LocalPlayer.Character.Torso
  38. if not game.Players.LocalPlayer.Character.Torso:FindFirstChild("Neck") then
  39. n.Parent = game.Players.LocalPlayer.Character.Torso
  40. n.Part0 = game.Players.LocalPlayer.Character.Torso
  41. n.Part1 = game.Players.LocalPlayer.Character.Head
  42. n = game.Players.LocalPlayer.Character.Torso.Neck:Clone()
  43. end
  44. game.Players.LocalPlayer.Character.Torso.Neck.Part0 = game.Players.LocalPlayer.Character.Torso
  45. game.Players.LocalPlayer.Character.Torso.Neck.Part1 = game.Players.LocalPlayer.Character.Head
  46. if not game.Players.LocalPlayer.Character.Torso:FindFirstChild("Right Shoulder") then
  47. rs.Parent = game.Players.LocalPlayer.Character.Torso
  48. rs.Part0 = game.Players.LocalPlayer.Character.Torso
  49. rs.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  50. rs = game.Players.LocalPlayer.Character.Torso["Right Shoulder"]:Clone()
  51. end
  52. game.Players.LocalPlayer.Character.Torso["Right Shoulder"].Part0 = game.Players.LocalPlayer.Character.Torso
  53. game.Players.LocalPlayer.Character.Torso["Right Shoulder"].Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  54. if not game.Players.LocalPlayer.Character.Torso:FindFirstChild("Left Shoulder") then
  55. ls.Parent = game.Players.LocalPlayer.Character.Torso
  56. ls.Part0 = game.Players.LocalPlayer.Character.Torso
  57. ls.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  58. ls = game.Players.LocalPlayer.Character.Torso["Left Shoulder"]:Clone()
  59. end
  60. game.Players.LocalPlayer.Character.Torso["Left Shoulder"].Part0 = game.Players.LocalPlayer.Character.Torso
  61. game.Players.LocalPlayer.Character.Torso["Left Shoulder"].Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  62. if not game.Players.LocalPlayer.Character.Torso:FindFirstChild("Right Hip") then
  63. rh.Parent = game.Players.LocalPlayer.Character.Torso
  64. rh.Part0 = game.Players.LocalPlayer.Character.Torso
  65. rh.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  66. rh = game.Players.LocalPlayer.Character.Torso["Right Hip"]:Clone()
  67. end
  68. game.Players.LocalPlayer.Character.Torso["Right Hip"].Part0 = game.Players.LocalPlayer.Character.Torso
  69. game.Players.LocalPlayer.Character.Torso["Right Hip"].Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  70. if not game.Players.LocalPlayer.Character.Torso:FindFirstChild("Left Hip") then
  71. lh.Parent = game.Players.LocalPlayer.Character.Torso
  72. lh.Part0 = game.Players.LocalPlayer.Character.Torso
  73. lh.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  74. lh = game.Players.LocalPlayer.Character.Torso["Left Hip"]:Clone()
  75. end
  76. game.Players.LocalPlayer.Character.Torso["Left Hip"].Part0 = game.Players.LocalPlayer.Character.Torso
  77. game.Players.LocalPlayer.Character.Torso["Left Hip"].Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  78.  
  79.  
  80.  
  81.  
  82.  
  83. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  84.  
  85. if game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then
  86. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  87. game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
  88. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  89. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  90. end
  91.  
  92. end
  93. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement