Advertisement
Ahtoh1313142314423

Roblox Ball

Oct 27th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. script.Parent = game.Players.LocalPlayer.Backpack
  2.  
  3. function RasenganDamage(Part)
  4. if x.Transparency ~= 1 and Part.Parent:FindFirstChild('Humanoid') and Part.Parent.Name ~= script.Parent.Parent.Name then
  5. x.Transparency = 1
  6. x.Fire.Enabled = false
  7. x2 = Instance.new('Part')
  8. x2.Shape = 'Ball'
  9. x2.Size = Vector3.new(1, 1, 1)
  10. x2.TopSurface = 'Smooth'
  11. x2.BottomSurface = 'Smooth'
  12. x2.BrickColor = BrickColor.new('Pastel light blue')
  13. x2.Transparency = 0.25
  14. x2.Parent = Part.Parent
  15. f2 = Instance.new('Fire', x2)
  16. f2.Color = Color3.new(0.35, 0.6, 1)
  17. f2.SecondaryColor = Color3.new(0.35, 0.6, 1)
  18. f2.Heat = 0
  19. y2 = Instance.new('SpecialMesh', x2)
  20. y2.MeshType = 'Sphere'
  21. y2.Scale = Vector3.new(1.5, 1.5, 1.5)
  22. w2 = Instance.new('Weld', Part.Parent)
  23. w2.Part0 = w2.Parent['Torso']
  24. w2.Part1 = x2
  25. w2.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0)
  26. for i = 1, 40 do
  27. if Part.Parent ~= nil and x2 ~= nil then
  28. Part.Parent.Humanoid.Health = Part.Parent.Humanoid.Health - 1
  29. y2.Scale = y2.Scale + Vector3.new(0.25, 0.25, 0.25)
  30. wait(0.05)
  31. else
  32. break
  33. end
  34. end
  35. x2:Remove()
  36. x.Transparency = 0.25
  37. end
  38.  
  39. end
  40.  
  41. Player = game.Players.LocalPlayer
  42. c = Player.Character
  43. RS = c.Torso['Right Shoulder']
  44. RS.C0 = RS.C0 * CFrame.Angles(0, 0, 1.6)
  45. x = Instance.new('Part')
  46. x.Shape = 'Ball'
  47. x.Size = Vector3.new(1, 1, 1)
  48. x.TopSurface = 'Smooth'
  49. x.BottomSurface = 'Smooth'
  50. x.BrickColor = BrickColor.new('Pastel light blue')
  51. x.Transparency = 0.25
  52. x.Parent = c
  53. f = Instance.new('Fire', x)
  54. f.Color = Color3.new(0.35, 0.6, 1)
  55. f.SecondaryColor = Color3.new(0.35, 0.6, 1)
  56. f.Heat = 0
  57. y = Instance.new('SpecialMesh', x)
  58. y.MeshType = 'Sphere'
  59. y.Scale = Vector3.new(1.5, 1.5, 1.5)
  60. w1 = Instance.new('Weld', c)
  61. w1.Part0 = w1.Parent['Right Arm']
  62. w1.Part1 = x
  63. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 1.5, 0)
  64. x.Touched:connect(RasenganDamage)
  65. c.Humanoid.WalkSpeed = 90
  66. wait(5)
  67. c.Humanoid.WalkSpeed = 16
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement