Advertisement
CHARA-SCRIPTER

boi

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