Advertisement
aksels101

Untitled

Aug 12th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. function MakeCharacter(princesswolf222)
  2. CreateLocalScript([[
  3. Asset = "http://www.roblox.com/asset/?id=667"
  4. CA = CFrame.Angles
  5. CN = CFrame.new
  6. V3 = Vector3.new
  7. MR = math.rad
  8. MP = math.pi
  9. MRA = math.random
  10. MH = math.huge
  11. pose = "Standing"
  12. function Part(P, Anch, Coll, Tran, Ref, Col, Size, Name)
  13. local p = Instance.new("Part")
  14. p.TopSurface = 0
  15. p.BottomSurface = 0
  16. p.Transparency = Tran
  17. p.Reflectance = Ref
  18. p.CanCollide = Coll
  19. p.Anchored = Anch
  20. p.BrickColor = BrickColor.new(Col)
  21. p.formFactor = "Custom"
  22. p.Size = Size
  23. p.Name = Name
  24. p.Parent = P
  25. p.Locked = true
  26. p:BreakJoints()
  27. return p
  28. end
  29. function Weld(p0, p1, c0, c1, name)
  30. local mot = Instance.new("Motor6D")
  31. mot.C0 = c0
  32. mot.C1 = c1
  33. mot.Part0 = p0
  34. mot.Part1 = p1
  35. mot.Name = name
  36. mot.Parent = p0
  37. return mot
  38. end
  39. local Player = game.Players.LocalPlayer
  40. Character = Player.Character
  41. function Make(Scale)
  42. local Char = Instance.new("Model")
  43. Char.Name = Player.Name
  44. local Torso = Part(Char, false, true, 0, 0, "Navy blue", V3(2*Scale, 1*Scale, 1*Scale), "Torso")
  45. local Torso2 = Part(Char, false, true, 0, 0, "Navy blue", V3(2.5*Scale, 1.5*Scale, 1.5*Scale), "Torso2")
  46. local Head = Part(Char, false, true, 0, 0, "Pastel brown", V3(1.2*Scale, 1.2*Scale, 1.2*Scale), "Head")
  47. Instance.new("SpecialMesh",Head)
  48. local Rarm = Part(Char, false, true, 0, 0, "Navy blue", V3(1.2*Scale, 1.4*Scale, 1.2*Scale), "Right Arm")
  49. Instance.new("SpecialMesh",Rarm)
  50. local Rhand = Part(Char, false, true, 0, 0, "Pastel brown", V3(1*Scale, 1.6*Scale, 1*Scale), "Right Hand")
  51. Instance.new("SpecialMesh",Rhand)
  52. local Larm = Part(Char, false, true, 0, 0, "Navy blue", V3(1.2*Scale, 1.4*Scale, 1.2*Scale), "Left Arm")
  53. Instance.new("SpecialMesh",Larm)
  54. local Lhand = Part(Char, false, true, 0, 0, "Pastel brown", V3(1*Scale, 1.6*Scale, 1*Scale), "Right Hand")
  55. Instance.new("SpecialMesh",Lhand)
  56. local Rleg = Part(Char, false, true, 0, 0, "Bright blue", V3(1*Scale, 1.4*Scale, 1*Scale), "Right Leg")
  57. Instance.new("SpecialMesh",Rleg)
  58. local Rleg2 = Part(Char, false, true, 0, 0, "Bright blue", V3(1*Scale, 1.2*Scale, 1*Scale), "Right Leg2")
  59. Instance.new("SpecialMesh",Rleg2)
  60. local Rleg3 = Part(Char, false, true, 0, 0, "Really black", V3(0.8*Scale, 0.6*Scale, 1.4*Scale), "Right Leg3")
  61. Instance.new("SpecialMesh",Rleg3).MeshType = "Sphere"
  62. local Lleg = Part(Char, false, true, 0, 0, "Bright blue", V3(1*Scale, 1.4*Scale, 1*Scale), "Left Leg")
  63. Instance.new("SpecialMesh",Lleg)
  64. local Lleg2 = Part(Char, false, true, 0, 0, "Bright blue", V3(1*Scale, 1.2*Scale, 1*Scale), "Left Leg2")
  65. Instance.new("SpecialMesh",Lleg2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement