Advertisement
tripono

Untitled

Nov 28th, 2015
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. p = game.Players.fullerjar
  2. mouse = game.Players.fullerjar:GetMouse()
  3. function r21()
  4. local x = Instance.new("Part")
  5. x.Name = "BlackHole"
  6. x.BrickColor = BrickColor.new(0,0,0)
  7. x.Shape = "Ball"
  8. x.Size = Vector3.new(1,1,1)
  9. x.CanCollide = true
  10. x.TopSurface = "Smooth"
  11. x.CFrame = p.Character.Torso.CFrame*CFrame.new(0,35,-2)
  12. x.BottomSurface = "Smooth"
  13. local y = Instance.new("BodyVelocity")
  14. y.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  15. y.Velocity = p.Character.Torso.CFrame.lookVector*500
  16. y.Parent = x
  17. x.Parent = game.Workspace
  18. x.Touched:connect(function(h)
  19. local r = h.Parent:FindFirstChild("Humanoid")
  20. print(h.Parent)
  21. if r ~= nil then
  22. if h.Parent.Name == "fullerjar" then
  23. print(h.Parent)
  24. else
  25. r:Destroy()
  26. local l = h.Parent:GetChildren()
  27. for i,v in pairs(l) do
  28. if v.ClassName == "Part" then
  29. v.Size = Vector3.new(5,5,5)
  30. v.Anchored = true
  31. v.FormFactor = "Custom"
  32. v.Size = v.Size*Vector3.new(-4.5,-4.5,-4.5)
  33. v.CanCollide = true
  34. v.Anchored = false
  35. v.Parent = game.Workspace
  36. end
  37. end
  38. end
  39. elseif h.Name == "Base" then
  40. print("base h")
  41. else
  42. h:Destroy()
  43. end
  44. end)
  45. for i = 1,30 do
  46. wait()
  47. x.Size = x.Size + Vector3.new(10,10,10)
  48. end
  49. wait(8)
  50. x:Destroy()
  51. end
  52. function r22()
  53. local x = Instance.new("Part")
  54. x.Name = "DeathBall"
  55. x.BrickColor = BrickColor.new("Really red")
  56. x.Shape = "Ball"
  57. x.Size = Vector3.new(1,1,1)
  58. x.CanCollide = true
  59. x.TopSurface = "Smooth"
  60. x.CFrame = p.Character.Torso.CFrame*CFrame.new(0,10,-2)
  61. x.BottomSurface = "Smooth"
  62. local y = Instance.new("BodyVelocity")
  63. y.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  64. y.Velocity = p.Character.Torso.CFrame.lookVector*500
  65. y.Parent = x
  66. x.Parent = game.Workspace
  67. x.Touched:connect(function(h)
  68. local r = h.Parent:FindFirstChild("Humanoid")
  69. print(h.Parent)
  70. if r ~= nil then
  71. if h.Parent.Name == "samuelgp10" then
  72. print(h.Parent)
  73. else
  74. r:Destroy()
  75. local l = h.Parent:GetChildren()
  76. for i,v in pairs(l) do
  77. if v.ClassName == "Part" then
  78. v.Size = Vector3.new(5,5,5)
  79. v.Anchored = true
  80. v.FormFactor = "Custom"
  81. v.CanCollide = true
  82. v.Anchored = false
  83. end
  84. end
  85. wait(1)
  86. local f = h.Parent:GetChildren()
  87. for i,v in pairs(f) do
  88. if v.ClassName == "Part" then
  89. v.Anchored = true
  90. v.FormFactor = "Custom"
  91. v.Size = v.Size*Vector3.new(-.5,-.5,-.5)
  92. v.CanCollide = true
  93. v.Anchored = false
  94. v.Parent = game.Workspace
  95. end
  96. end
  97. end
  98. end
  99. end)
  100. for i = 1,100 do
  101. wait()
  102. x.Size = x.Size + Vector3.new(5,5,5)
  103. end
  104. wait(8)
  105. x:Destroy()
  106. end
  107. function check(key)
  108. local Key = key:lower()
  109. if key == "f" then r21() elseif key == "r" then r22() end
  110. end
  111. mouse.KeyDown:connect(check)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement