TheUnknownDiscord

humanoid

Sep 5th, 2021 (edited)
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. local Humanoid = Instance.new("Model", game.Workspace)
  2. Humanoid.Name = "This is a test humanoid"
  3. Torso = Instance.new("Part", Humanoid)
  4. Torso.RootPriority = -127
  5. Hum = Instance.new("Humanoid", Humanoid)
  6. Hum.Name = "woahaperson"
  7. Hum.RigType = "R6"
  8. Torso.Size = Vector3.new(2,2,1)
  9. Torso.Name = "Torso"
  10. RightArm = Instance.new("Part", Humanoid)
  11. RightArm.Size = Vector3.new(1,2,1)
  12. RightArm.RootPriority = -127
  13. RightArm.Name = "Right Arm"
  14. RightArm1 = Instance.new("Motor6D")
  15. RightArm1.Parent = Torso
  16. RightArm1.Part0 = Torso
  17. RightArm1.Part1 = RightArm
  18. RightArm1.Name = "Right Shoulder"
  19. LeftArm = Instance.new("Part", Humanoid)
  20. LeftArm.Size = Vector3.new(1,2,1)
  21. LeftArm.RootPriority = -127
  22. LeftArm.Name = "Left Arm"
  23. LeftArm1 = Instance.new("Motor6D")
  24. LeftArm1.Parent = Torso
  25. LeftArm1.Part0 = Torso
  26. LeftArm1.Part1 = LeftArm
  27. LeftArm1.Name = "Left Shoulder"
  28. LeftLeg = Instance.new("Part", Humanoid)
  29. LeftLeg.Size = Vector3.new(1,2,1)
  30. LeftLeg.RootPriority = -127
  31. LeftLeg.Name = "Left Leg"
  32. LeftLeg1 = Instance.new("Motor6D")
  33. LeftLeg1.Parent = Torso
  34. LeftLeg1.Part0 = Torso
  35. LeftLeg1.Part1 = LeftLeg
  36. LeftLeg1.Name = "Left Hip"
  37. RightLeg = Instance.new("Part", Humanoid)
  38. RightLeg.Size = Vector3.new(1,2,1)
  39. RightLeg.RootPriority = -127
  40. RightLeg.Name = "Right Leg"
  41. RightLeg1 = Instance.new("Motor6D")
  42. RightLeg1.Parent = Torso
  43. RightLeg1.Part0 = Torso
  44. RightLeg1.Part1 = RightLeg
  45. RightLeg1.Name = "Right Hip"
  46. Head = Instance.new("Part", Humanoid)
  47. Head.Size = Vector3.new(1,1,1)
  48. Head.RootPriority = -127
  49. Head.Name = "Head"
  50. Necklol = Instance.new("Motor6D")
  51. Necklol.Parent = Torso
  52. Necklol.Part0 = Torso
  53. Necklol.Part1 = Head
  54. Necklol.Name = "Neck"
  55. rootPart = Instance.new("Part", Humanoid)
  56. rootPart.Name = "HumanoidRootPart"
  57. rootPart.Size = Vector3.new(2,2,1)
  58. rootPart.Transparency = 1
  59. rootPart.RootPriority = 127
  60. Root = Instance.new("Motor6D")
  61. Root.Parent = rootPart
  62. Root.Part0 = rootPart
  63. Root.Part1 = Torso
  64. Root.Name = "Root Hip"
  65. RightLeg1.C1 = RightLeg1.C1 * CFrame.new(0.5,2,0)
  66. LeftLeg1.C1 = LeftLeg1.C1 * CFrame.new(-0.5,2,0)
  67. Necklol.C1 = Necklol.C1 * CFrame.new(0,-1.5,0)
  68. RightArm1.C1 = RightArm1.C1 * CFrame.new(1.5,0,0)
  69. LeftArm1.C1 = LeftArm1.C1 * CFrame.new(-1.5,0,0)
  70. rootPart.CanCollide = false
  71. LeftArm.CanCollide = false
  72. RightArm.CanCollide = false
  73. wait(0.1)
  74. rootPart.CFrame = CFrame.new(5,5,5)
  75. Hum.WalkSpeed = 16
  76. Hum.JumpPower = 40
  77. NLS([[
  78. local animate = owner.Character.Animate:Clone()
  79. wait(0.125)
  80. Humanoid = game.Workspace:WaitForChild("modelpersonlol")
  81. Hum = Humanoid:WaitForChild("woahaperson")
  82. owner.Character = Humanoid
  83. workspace.CurrentCamera.CameraSubject = Hum
  84. Hum.WalkSpeed = 16
  85. Hum.JumpPower = 40
  86. Hum.RigType = "R6"
  87. animate.Parent = Humanoid
  88. ]],owner.PlayerGui)
Advertisement
Add Comment
Please, Sign In to add comment