View difference between Paste ID: 6MmEmPdb and LrcU7Zjs
SHOW: | | - or go back to the newest paste.
1-
--//Main
1+
local player = game.Players.LocalPlayer
2-
local player = game.Players.LocalPlayer -- Getting The Local Player
2+
local mouse = player:GetMouse()
3-
local mouse = player:GetMouse() -- Getting The Mouse
3+
local debounce = true
4-
local Image = "http://www.roblox.com/asset/?id=635884667"
4+
local Image = "http://www.roblox.com/asset/?id=263444424"
5-
--//HOPPER BIN
5+
6
mouse.KeyDown:Connect(function(key)
7-
function HighEGGS()
7+
	if not debounce == false then
8-
	local s = Instance.new("Sky",game.Lighting)
8+
		if key == "b" then
9-
--  s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://227451813","rbxassetid://559660882","rbxassetid://947995509","rbxassetid://824851584","rbxassetid://835633217","rbxassetid://726895156"
9+
			debounce = false
10-
	s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = Image,Image,Image,Image,Image,Image
10+
			local bomb = Instance.new("Sound",workspace)
11-
    s.CelestialBodiesShown = false
11+
			bomb.SoundId = "rbxassetid://317987498"
12-
	local EGGSound = "rbxassetid://1455990605"
12+
			bomb.TimePosition = 1
13-
	local Sound = Instance.new("Sound",game.Workspace)
13+
			bomb.Volume = 10
14-
	Sound.SoundId = EGGSound
14+
			bomb:Play()
15-
	Sound.Looped = true
15+
			local weird = Instance.new("Message",workspace)
16-
	Sound.Volume = 2
16+
			weird.Text = "TACTIACL NUKE INCOMING!!!11!!!!!!!11"
17-
	Sound:Play()
17+
			wait(2.1)
18-
	while wait(0.3) do
18+
			for i = 10,0,-1 do
19-
		for i, player in ipairs(game.Players:GetPlayers()) do
19+
				wait(1)
20-
			if player.Character then
20+
				weird.Text = i
21-
				local tor = player.Character:FindFirstChild('Head')
21+
22-
				if tor then
22+
			weird:Destroy()
23-
					local S = Instance.new("Explosion",game.Workspace)
23+
			wait(1)
24-
					S.Position = tor.Position
24+
			for i, player in ipairs(game.Players:GetPlayers()) do
25-
				end
25+
	            if player.Character then
26
	                local tor = player.Character:FindFirstChild('Head')
27
	                if tor then
28
	                    local S = Instance.new("Explosion",game.Workspace)
29-
end
29+
	                    S.Position = tor.Position
30
						local s = Instance.new("Sky",game.Lighting)
31
						s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = Image,Image,Image,Image,Image,Image
32-
	if key == "e" then
32+
						wait(2)
33-
		HighEGGS()
33+
						s:Destroy()
34
						debounce = true
35
	                end
36
	            end
37
        	end
38
		end
39
	end
40
end)