View difference between Paste ID: nhWnD0zH and YkFBtvQ2
SHOW: | | - or go back to the newest paste.
1
--Made by Aviator_Ratchet on 8/1/16 at 7:01 PM MST
2
3-
target="Aviator_Ratchet"
3+
target="ThatSquidGuy"
4
wait(.1)
5
plr=game.Players:FindFirstChild(target)
6
7
local music=Instance.new("Sound", game.Workspace)
8
music.SoundId="rbxassetid://446824013"
9
music.Looped=true
10
music:Play()
11
12
wait(10)
13
14
local ball = Instance.new("Part",game.Workspace)
15
ball.Size=Vector3.new(1,1,1)
16
ball.Anchored=true
17
ball.CFrame=plr.Character.Torso.CFrame
18
ball.CanCollide=false
19
ball.Transparency=0.5
20
ball.BrickColor = BrickColor.Yellow()
21
ball.TopSurface="Smooth"
22
ball.BottomSurface="Smooth"
23
24
25
local mesh = Instance.new("SpecialMesh", ball)
26
mesh.MeshType = "Sphere"
27
for i = 1,2048 do
28
	ball.CFrame=CFrame.new(0,0,0)
29
	ball.Size=ball.Size+Vector3.new(1,1,1)
30
	ball.Touched:connect(function(hit)
31
	if hit.Parent:FindFirstChild("Humanoid") then
32
	local ex = Instance.new("Explosion", game.Workspace)
33
	ex.Position = hit.Parent.Torso.Position
34
	end
35
end)
36
	wait(0.1)
37
end
38
39
ball.Touched:connect(function(hit)
40
	if hit.Parent:FindFirstChild("Humanoid") then
41
	local ex = Instance.new("Explosion", game.Workspace)
42
	ex.Position = hit.Parent.Torso.Position
43
	end
44
end)