Advertisement
simhwui

Untitled

Dec 26th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. D = Instance.new("Model",workspace.simhwuibro)
  2. D.Name = "Nice thing"
  3. bg = Instance.new("BodyGyro",workspace.simhwuibro.Torso)
  4. d = Instance.new("Part")
  5. d.TopSurface = 0
  6. d.BottomSurface = 0
  7. d.Name = "Main"
  8. d.Parent = workspace.simhwuibro["Nice thing"]
  9. d.formFactor = 3
  10. d.Size = Vector3.new(0.6,2.5,0.6)
  11. d.BrickColor = BrickColor.new("Pastel brown")
  12. d.Position = workspace.simhwuibro.Head.Position
  13. d.CanCollide = false
  14. local cy = Instance.new("CylinderMesh")
  15. cy.Parent = d
  16. w = Instance.new("Weld")
  17. w.Parent = workspace.simhwuibro.Head
  18. w.Part0 = d
  19. w.Part1 = workspace.simhwuibro.Head
  20. w.C0 = CFrame.new(0,0.25,2.1)*CFrame.Angles(math.rad(45),0,0)
  21. local c = Instance.new("Part")
  22. c.Name = "Mush"
  23. c.BottomSurface = 0
  24. c.TopSurface = 0
  25. c.FormFactor = 3
  26. c.Size = Vector3.new(0.6,0.6,0.6)
  27. c.CFrame = CFrame.new(d.Position)
  28. c.BrickColor = BrickColor.new("Pink")
  29. c.CanCollide = false
  30. c.Parent = workspace.simhwuibro["Nice thing"]
  31. local msm = Instance.new("SpecialMesh")
  32. msm.Parent = c
  33. msm.MeshType = "Sphere"
  34. local cw = Instance.new("Weld")
  35. cw.Parent = c
  36. cw.Part0 = d
  37. cw.Part1 = c
  38. cw.C0 = CFrame.new(0,1.3,0)
  39. local ball1 = Instance.new("Part")
  40. ball1.Parent = workspace.simhwuibro["Nice thing"]
  41. ball1.Name = "Left Ball"
  42. ball1.BottomSurface = 0
  43. ball1.TopSurface = 0
  44. ball1.CanCollide = false
  45. ball1.formFactor = 3
  46. ball1.Size = Vector3.new(1,1,1)
  47. ball1.CFrame = CFrame.new(workspace.simhwuibro["Left Leg"].Position)
  48. ball1.BrickColor = BrickColor.new("Pastel brown")
  49. local bsm = Instance.new("SpecialMesh")
  50. bsm.Parent = ball1
  51. bsm.MeshType = "Sphere"
  52. local b1w = Instance.new("Weld")
  53. b1w.Parent = ball1
  54. b1w.Part0 = workspace.simhwuibro["Left Leg"]
  55. b1w.Part1 = ball1
  56. b1w.C0 = CFrame.new(0,0.5,-.5)
  57. local ball2 = Instance.new("Part")
  58. ball2.Parent = workspace.simhwuibro["Nice thing"]
  59. ball2.Name = "Right Ball"
  60. ball2.BottomSurface = 0
  61. ball2.CanCollide = false
  62. ball2.TopSurface = 0
  63. ball2.formFactor = 3
  64. ball2.Size = Vector3.new(1,1,1)
  65. ball2.CFrame = CFrame.new(workspace.simhwuibro["Right Leg"].Position)
  66. ball2.BrickColor = BrickColor.new("Pastel brown")
  67. local b2sm = Instance.new("SpecialMesh")
  68. b2sm.Parent = ball2
  69. b2sm.MeshType = "Sphere"
  70. local b2w = Instance.new("Weld")
  71. b2w.Parent = ball2
  72. b2w.Part0 = workspace.simhwuibro["Right Leg"]
  73. b2w.Part1 = ball2
  74. b2w.C0 = CFrame.new(0,0.5,-.5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement