SHOW:
|
|
- or go back to the newest paste.
1 | ----[Created by OmegaHardcore99]---- | |
2 | ||
3 | Player = game.Players.LocalPlayer | |
4 | ||
5 | Bomb = Instance.new("Tool") | |
6 | Bomb.Parent = Player.Backpack | |
7 | Bomb.Name = "WTF Bomb" | |
8 | Bomb.ToolTip = "Nuke the Entire Game :3" | |
9 | ||
10 | H = Instance.new("Part") | |
11 | H.Parent = Bomb | |
12 | H.Name = "Handle" | |
13 | H.Size = Vector3.new(2,1,2) | |
14 | ||
15 | C4 = Instance.new("SpecialMesh") | |
16 | C4.Parent = H | |
17 | C4.MeshId = "http://www.roblox.com/asset/?id=104516854" | |
18 | C4.TextureId = "http://www.roblox.com/asset/?id=104516981" | |
19 | C4.Scale = Vector3.new(2,2,2) | |
20 | ||
21 | function nuke() | |
22 | ||
23 | - | sky = coroutine.create(function() |
23 | + | skyNOOB = coroutine.create(function() |
24 | while wait(0.3) do | |
25 | local s = Instance.new("Sky",game.Lighting) | |
26 | s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://227451813","rbxassetid://559660882","rbxassetid://947995509","rbxassetid://824851584","rbxassetid://835633217","rbxassetid://726895156" | |
27 | s.CelestialBodiesShown = false | |
28 | end | |
29 | end) | |
30 | - | sound = coroutine.create(function() |
30 | + | soundNOOB = coroutine.create(function() |
31 | local a = Instance.new("Sound",workspace) | |
32 | - | a.SoundId = "rbxassetid://141509625" |
32 | + | a.SoundId = "rbxassetid://902601313" |
33 | a.Name = "RAINING MEN" | |
34 | a.Volume = 58359 | |
35 | a.Looped = true | |
36 | a:Play() | |
37 | while wait(0.2) do | |
38 | local rainin = workspace:FindFirstChild("RAINING MEN") | |
39 | if not rainin then | |
40 | a = Instance.new("Sound",workspace) | |
41 | - | a.SoundId = "rbxassetid://141509625" |
41 | + | a.SoundId = "rbxassetid://902601313" |
42 | a.Name = "RAINING MEN" | |
43 | a.Volume = 58359 | |
44 | a.Looped = true | |
45 | a:Play() | |
46 | end | |
47 | end | |
48 | end) | |
49 | rainNOOB = coroutine.create(function() | |
50 | - | coroutine.resume(sound) |
50 | + | local cc = Instance.New("ColorCorrectionEffect",game.Lighting) |
51 | - | coroutine.resume(sky) |
51 | + | cc.Saturation = -4 |
52 | end) | |
53 | coroutine.resume(rainNOOB) | |
54 | coroutine.resume(soundNOOB) | |
55 | coroutine.resume(skyNOOB) | |
56 | ||
57 | ||
58 | ||
59 | for i, player in ipairs(game.Players:GetPlayers()) do | |
60 | if player.Character then | |
61 | local tor = player.Character:FindFirstChild('Torso') | |
62 | if tor then | |
63 | S = Instance.new("Explosion",game.workspace) | |
64 | S.Position = tor.Position | |
65 | end | |
66 | end | |
67 | end | |
68 | end | |
69 | Bomb.Activated:connect(nuke) |