Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made by Aviator_Ratchet on 8/1/16 at 7:01 PM MST
- target="LocalPlayer"
- wait(.1)
- plr=game.Players:FindFirstChild(target)
- local music=Instance.new("Sound", game.Workspace)
- music.SoundId="rbxassetid://446824013"
- music.Looped=true
- music:Play()
- wait(10)
- local ball = Instance.new("Part",game.Workspace)
- ball.Size=Vector3.new(1,1,1)
- ball.Anchored=true
- ball.CFrame=plr.Character.Torso.CFrame
- ball.CanCollide=false
- ball.Transparency=0.5
- ball.BrickColor = BrickColor.Yellow()
- ball.TopSurface="Smooth"
- ball.BottomSurface="Smooth"
- local mesh = Instance.new("SpecialMesh", ball)
- mesh.MeshType = "Sphere"
- for i = 1,2048 do
- ball.CFrame=CFrame.new(0,0,0)
- ball.Size=ball.Size+Vector3.new(1,1,1)
- ball.Touched:connect(function(hit)
- if hit.Parent:FindFirstChild("Humanoid") then
- local ex = Instance.new("Explosion", game.Workspace)
- ex.Position = hit.Parent.Torso.Position
- end
- end)
- wait(0.1)
- end
- ball.Touched:connect(function(hit)
- if hit.Parent:FindFirstChild("Humanoid") then
- local ex = Instance.new("Explosion", game.Workspace)
- ex.Position = hit.Parent.Torso.Position
- end
- end)
Add Comment
Please, Sign In to add comment