Advertisement
lafur

Untitled

Nov 8th, 2020
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. local d = game.Players.lafur2.Character:GetChildren()
  2. for i=1, #d do
  3. if (d[i].className == "Hat") then
  4. d[i]:remove()
  5. end
  6. end
  7.  
  8. for i=1, #d do
  9. if (d[i].className == "Accessory") then
  10. d[i]:remove()
  11. end
  12. end
  13.  
  14. local LA = Instance.new("SpecialMesh")
  15. local RA = Instance.new("SpecialMesh")
  16. local LL = Instance.new("SpecialMesh")
  17. local RL = Instance.new("SpecialMesh")
  18. local H = Instance.new("SpecialMesh")
  19. local T = Instance.new("SpecialMesh")
  20.  
  21. local pl = game.Players.lafur2.Character
  22.  
  23. local la = pl:WaitForChild("Left Arm")
  24. local ra = pl:WaitForChild("Right Arm")
  25. local ll = pl:WaitForChild("Left Leg")
  26. local rl = pl:WaitForChild("Right Leg")
  27. local h = pl:WaitForChild("Head")
  28. local t = pl:WaitForChild("Torso")
  29.  
  30.  
  31. LA.Parent = la
  32. RA.Parent = ra
  33. LL.Parent = ll
  34. RL.Parent = rl
  35. H.Parent = h
  36. T.Parent = t
  37.  
  38. LA.Scale = Vector3.new(1,0.5,1)
  39. RA.Scale = Vector3.new(1,0.5,1)
  40. LA.Offset = Vector3.new(-1,0,0)
  41. RA.Offset = Vector3.new(1,0,0)
  42. LA.MeshType = Enum.MeshType.Sphere
  43. RA.MeshType = Enum.MeshType.Sphere
  44. RL.MeshType = Enum.MeshType.Head
  45. LL.MeshType = Enum.MeshType.Head
  46.  
  47. T.Scale = Vector3.new(1.5,2,2.5)
  48. T.MeshType = Enum.MeshType.Sphere
  49.  
  50. H.Scale = Vector3.new(1,1.25,1.5)
  51. H.Offset = Vector3.new(0,-0.75,-0.75)
  52. H.MeshType = Enum.MeshType.Sphere
  53.  
  54. local COLOR = BrickColor.Random()
  55.  
  56. la.BrickColor = COLOR
  57. ra.BrickColor = COLOR
  58. ll.BrickColor = COLOR
  59. rl.BrickColor = COLOR
  60. h.BrickColor = BrickColor.new("Toothpaste")
  61. h.Reflectance = 0.5
  62. t.BrickColor = COLOR
  63.  
  64. h.face:Destroy()
  65.  
  66. la.TopSurface = Enum.SurfaceType.Smooth
  67. la.BottomSurface = Enum.SurfaceType.Smooth
  68. la.LeftSurface = Enum.SurfaceType.Smooth
  69. la.RightSurface = Enum.SurfaceType.Smooth
  70. la.FrontSurface = Enum.SurfaceType.Smooth
  71. la.BackSurface = Enum.SurfaceType.Smooth
  72.  
  73. ra.TopSurface = Enum.SurfaceType.Smooth
  74. ra.BottomSurface = Enum.SurfaceType.Smooth
  75. ra.LeftSurface = Enum.SurfaceType.Smooth
  76. ra.RightSurface = Enum.SurfaceType.Smooth
  77. ra.FrontSurface = Enum.SurfaceType.Smooth
  78. ra.BackSurface = Enum.SurfaceType.Smooth
  79.  
  80. ll.TopSurface = Enum.SurfaceType.Smooth
  81. ll.BottomSurface = Enum.SurfaceType.Smooth
  82. ll.LeftSurface = Enum.SurfaceType.Smooth
  83. ll.RightSurface = Enum.SurfaceType.Smooth
  84. ll.FrontSurface = Enum.SurfaceType.Smooth
  85. ll.BackSurface = Enum.SurfaceType.Smooth
  86.  
  87. rl.TopSurface = Enum.SurfaceType.Smooth
  88. rl.BottomSurface = Enum.SurfaceType.Smooth
  89. rl.LeftSurface = Enum.SurfaceType.Smooth
  90. rl.RightSurface = Enum.SurfaceType.Smooth
  91. rl.FrontSurface = Enum.SurfaceType.Smooth
  92. rl.BackSurface = Enum.SurfaceType.Smooth
  93.  
  94. t.TopSurface = Enum.SurfaceType.Smooth
  95. t.BottomSurface = Enum.SurfaceType.Smooth
  96. t.LeftSurface = Enum.SurfaceType.Smooth
  97. t.RightSurface = Enum.SurfaceType.Smooth
  98. t.FrontSurface = Enum.SurfaceType.Smooth
  99. t.BackSurface = Enum.SurfaceType.Smooth
  100.  
  101. h.TopSurface = Enum.SurfaceType.Smooth
  102. h.BottomSurface = Enum.SurfaceType.Smooth
  103. h.LeftSurface = Enum.SurfaceType.Smooth
  104. h.RightSurface = Enum.SurfaceType.Smooth
  105. h.FrontSurface = Enum.SurfaceType.Smooth
  106. h.BackSurface = Enum.SurfaceType.Smooth
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement