Advertisement
MariRoze

hot

Jul 25th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local LocalPlayer = game:GetService"Players".WormyTerry
  2. local Character = LocalPlayer.Character
  3.  
  4. local Dick = Instance.new("Part", Character)
  5. Dick.Size = Vector3.new(.5,.5,2)
  6. Dick.TopSurface = "Smooth"
  7. Dick.BottomSurface = "Smooth"
  8. Dick.FormFactor = 'Custom'
  9.  
  10. local DickWeld = Instance.new("Weld", Dick)
  11. DickWeld.Part0 = Dick
  12. DickWeld.Part1 = Character.Torso
  13. DickWeld.C0 = CFrame.new(0,1,1)
  14.  
  15. local Ball1 = Instance.new("Part", Character)
  16. Ball1.Shape = "Ball"
  17. Ball1.TopSurface = "Smooth"
  18. Ball1.BottomSurface = "Smooth"
  19. Ball1.FormFactor = 'Custom'
  20. Ball1.Size = Vector3.new(.5,.5,.5)
  21.  
  22. local Ball1Weld = Instance.new("Weld", Dick)
  23. Ball1Weld.Part0 = Dick
  24. Ball1Weld.Part1 = Ball1
  25. Ball1Weld.C1 = CFrame.new(.3,.2,-.4)
  26.  
  27. local Ball2 = Instance.new("Part", Character)
  28. Ball2.Shape = "Ball"
  29. Ball2.TopSurface = "Smooth"
  30. Ball2.BottomSurface = "Smooth"
  31. Ball2.FormFactor = 'Custom'
  32. Ball2.Size = Vector3.new(.5,.5,.5)
  33.  
  34. local Ball2Weld = Instance.new("Weld", Dick)
  35. Ball2Weld.Part0 = Dick
  36. Ball2Weld.Part1 = Ball2
  37. Ball2Weld.C1 = CFrame.new(-.3,.2,-.4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement