Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --//Main
- local player = game.Players.LocalPlayer -- Getting The Local Player
- local mouse = player:GetMouse() -- Getting The Mouse
- local Image = "http://www.roblox.com/asset/?id=635884667"
- --//HOPPER BIN
- function HighEGGS()
- local s = Instance.new("Sky",game.Lighting)
- -- s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://227451813","rbxassetid://559660882","rbxassetid://947995509","rbxassetid://824851584","rbxassetid://835633217","rbxassetid://726895156"
- s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = Image,Image,Image,Image,Image,Image
- s.CelestialBodiesShown = false
- local EGGSound = "rbxassetid://1455990605"
- local Sound = Instance.new("Sound",game.Workspace)
- Sound.SoundId = EGGSound
- Sound.Looped = true
- Sound.Volume = 2
- Sound:Play()
- while wait(0.3) do
- for i, player in ipairs(game.Players:GetPlayers()) do
- if player.Character then
- local tor = player.Character:FindFirstChild('Head')
- if tor then
- local S = Instance.new("Explosion",game.Workspace)
- S.Position = tor.Position
- end
- end
- end
- end
- end
- mouse.KeyDown:Connect(function(key)
- if key == "e" then
- HighEGGS()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement