00fjg

Untitled

Jun 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. local LocalPlayer = game:GetService"Players".LocalPlayer
  2.  
  3. local Character = LocalPlayer.Character
  4.  
  5.  
  6.  
  7. local Dick = Instance.new("Part", Character)
  8.  
  9. Dick.Size = Vector3.new(.5,.5,3)
  10.  
  11. Dick.TopSurface = "Smooth"
  12.  
  13. Dick.BottomSurface = "Smooth"
  14.  
  15. Dick.FormFactor = 'Custom'
  16.  
  17. Dick.BrickColor = BrickColor.new(1030)
  18.  
  19.  
  20.  
  21. local DickWeld = Instance.new("Weld", Dick)
  22.  
  23. DickWeld.Part0 = Dick
  24.  
  25. DickWeld.Part1 = Character.Torso
  26.  
  27. DickWeld.C0 = CFrame.new(0,1,1)
  28.  
  29. DickWeld.BrickColor = BrickColor.new(1030)
  30.  
  31.  
  32.  
  33. local Ball1 = Instance.new("Part", Character)
  34.  
  35. Ball1.Shape = "Ball"
  36.  
  37. Ball1.TopSurface = "Smooth"
  38.  
  39. Ball1.BottomSurface = "Smooth"
  40.  
  41. Ball1.FormFactor = 'Custom'
  42.  
  43. Ball1.Size = Vector3.new(.5,.5,.5)
  44.  
  45. Ball1.BrickColor = BrickColor.new(1030)
  46.  
  47.  
  48.  
  49. local Ball1Weld = Instance.new("Weld", Dick)
  50.  
  51. Ball1Weld.Part0 = Dick
  52.  
  53. Ball1Weld.Part1 = Ball1
  54.  
  55. Ball1Weld.C1 = CFrame.new(.3,.2,-.4)
  56.  
  57. Ball1Weld.BrickColor = BrickColor.new(1030)
  58.  
  59.  
  60.  
  61. local Ball2 = Instance.new("Part", Character)
  62.  
  63. Ball2.Shape = "Ball"
  64.  
  65. Ball2.TopSurface = "Smooth"
  66.  
  67. Ball2.BottomSurface = "Smooth"
  68.  
  69. Ball2.FormFactor = 'Custom'
  70.  
  71. Ball2.Size = Vector3.new(.5,.5,.5)
  72.  
  73. Ball2.BrickColor = BrickColor.new(1030)
  74.  
  75.  
  76.  
  77. local Ball2Weld = Instance.new("Weld", Dick)
  78.  
  79. Ball2Weld.Part0 = Dick
  80.  
  81. Ball2Weld.Part1 = Ball2
  82.  
  83. Ball2Weld.C1 = CFrame.new(-.3,.2,-.4)
  84.  
  85. Ball2Weld.BrickColor = BrickColor.new(1030)
Add Comment
Please, Sign In to add comment