Advertisement
doobbyyus

Script

Jan 5th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. local player = game.Players.Doobb_yyus
  2. local char = player.Character
  3. local torso = char:WaitForChild('Torso')
  4. local offset = CFrame.new(0, 15, 15)
  5.  
  6. local ball = Instance.new('Part')
  7. local ball2 = Instance.new('Part')
  8.  
  9. ball.Shape = Enum.PartType.Ball
  10. ball.Size = Vector3.new(15, 15, 15)
  11. ball.Material = Enum.Material.Neon
  12. ball.BrickColor = BrickColor.new('New Yeller')
  13. ball.Transparency = 0.5
  14. ball.CanCollide = false
  15. ball.Parent = workspace
  16.  
  17. ball2.Shape = Enum.PartType.Ball
  18. ball2.Size = Vector3.new(15*0.75, 15*0.75, 15*0.75)
  19. ball2.Material = Enum.Material.Neon
  20. ball2.BrickColor = BrickColor.new('New Yeller')
  21. ball2.Transparency = 0.5
  22. ball2.CanCollide = false
  23. ball2.Parent = workspace
  24.  
  25. function weld(a, b, c0)
  26. local w = Instance.new('Weld')
  27. w.Part0 = a
  28. w.Part1 = b
  29. w.C0 = c0
  30. w.Parent = a
  31. end
  32.  
  33. weld(torso, ball, offset)
  34. weld(torso, ball2, offset)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement