antgame11

Untitled

May 4th, 2019
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 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,2)
  10.  
  11. Dick.TopSurface = "Smooth"
  12.  
  13. Dick.BottomSurface = "Smooth"
  14.  
  15. Dick.FormFactor = 'Custom'
  16.  
  17.  
  18.  
  19. local DickWeld = Instance.new("Weld", Dick)
  20.  
  21. DickWeld.Part0 = Dick
  22.  
  23. DickWeld.Part1 = Character.Torso
  24.  
  25. DickWeld.C0 = CFrame.new(0,1,1)
  26.  
  27.  
  28.  
  29. local Ball1 = Instance.new("Part", Character)
  30.  
  31. Ball1.Shape = "Ball"
  32.  
  33. Ball1.TopSurface = "Smooth"
  34.  
  35. Ball1.BottomSurface = "Smooth"
  36.  
  37. Ball1.FormFactor = 'Custom'
  38.  
  39. Ball1.Size = Vector3.new(.5,.5,.5)
  40.  
  41.  
  42.  
  43. local Ball1Weld = Instance.new("Weld", Dick)
  44.  
  45. Ball1Weld.Part0 = Dick
  46.  
  47. Ball1Weld.Part1 = Ball1
  48.  
  49. Ball1Weld.C1 = CFrame.new(.3,.2,-.4)
  50.  
  51.  
  52.  
  53. local Ball2 = Instance.new("Part", Character)
  54.  
  55. Ball2.Shape = "Ball"
  56.  
  57. Ball2.TopSurface = "Smooth"
  58.  
  59. Ball2.BottomSurface = "Smooth"
  60.  
  61. Ball2.FormFactor = 'Custom'
  62.  
  63. Ball2.Size = Vector3.new(.5,.5,.5)
  64.  
  65.  
  66.  
  67. local Ball2Weld = Instance.new("Weld", Dick)
  68.  
  69. Ball2Weld.Part0 = Dick
  70.  
  71. Ball2Weld.Part1 = Ball2
  72. Ball2Weld.C1 = CFrame.new(-.3,.2,-.4)
Add Comment
Please, Sign In to add comment