Advertisement
RyanDaCoder

Person Script M8 (Gift To IcePools)

Sep 14th, 2017
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. local kguy = Instance.new("Model")
  2. kguy.Name = "Person"
  3. kguy.Parent = game.Workspace
  4.  
  5. local leg1 = Instance.new("Part")
  6. local leg2 = Instance.new("Part")
  7. local torso = Instance.new("Part")
  8. local arm1 = Instance.new("Part")
  9. local arm2 = Instance.new("Part")
  10. local head = Instance.new("Part")
  11. local face = Instance.new("Decal")
  12. local headmesh = Instance.new("SpecialMesh")
  13. arm1.Name = "Arm1"
  14. arm2.Name = "Arm2"
  15.  
  16. leg1.Size = Vector3.new(1, 2, 1)
  17. leg2.Size = Vector3.new(1, 2, 1)
  18. torso.Size = Vector3.new(1, 2, 2)
  19. arm1.Size = Vector3.new(1, 2, 1)
  20. arm2.Size = Vector3.new(1, 2, 1)
  21. head.Size = Vector3.new(2, 1, 1)
  22.  
  23. face.Texture = "http://www.roblox.com/asset/?id=55705255"
  24. face.Face = "Front"
  25. headmesh.MeshType = "Head"
  26. face.Parent = head
  27.  
  28. leg1.CFrame = CFrame.new(-5.5, 1, -26.5)
  29. leg2.CFrame = CFrame.new(-5.5, 1, -27.5)
  30. torso.CFrame = CFrame.new(-5.5, 3, -27)
  31. arm1.CFrame = CFrame.new(-5.5, 4.414, -25.5)
  32. arm2.CFrame = CFrame.new(-5.5, 4.414, -28.5)
  33. head.CFrame = CFrame.new(-5.5, 4.5, -27)
  34. headmesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  35. head.Orientation = Vector3.new(0, 90, 0)
  36. face.Face = "Front"
  37. headmesh.Parent = head
  38. head.Size = Vector3.new(2, 1, 1)
  39. arm1.Orientation = Vector3.new(45, 0, 0)
  40. arm2.Orientation = Vector3.new(-45, 0, 0)
  41.  
  42. leg1.Anchored = true
  43. leg2.Anchored = true
  44. torso.Anchored = true
  45. arm1.Anchored = true
  46. arm2.Anchored = true
  47. head.Anchored = true
  48.  
  49. leg1.Parent = kguy
  50. leg2.Parent = kguy
  51. torso.Parent = kguy
  52. arm1.Parent = kguy
  53. arm2.Parent = kguy
  54. head.Parent = kguy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement