Advertisement
iiJosephCats205

EGGS

Jul 27th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. --//Main
  2. local player = game.Players.LocalPlayer -- Getting The Local Player
  3. local mouse = player:GetMouse() -- Getting The Mouse
  4. local Image = "http://www.roblox.com/asset/?id=635884667"
  5. --//HOPPER BIN
  6.  
  7. function HighEGGS()
  8. local s = Instance.new("Sky",game.Lighting)
  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"
  10. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = Image,Image,Image,Image,Image,Image
  11. s.CelestialBodiesShown = false
  12. local EGGSound = "rbxassetid://1455990605"
  13. local Sound = Instance.new("Sound",game.Workspace)
  14. Sound.SoundId = EGGSound
  15. Sound.Looped = true
  16. Sound.Volume = 2
  17. Sound:Play()
  18. while wait(0.3) do
  19. for i, player in ipairs(game.Players:GetPlayers()) do
  20. if player.Character then
  21. local tor = player.Character:FindFirstChild('Head')
  22. if tor then
  23. local S = Instance.new("Explosion",game.Workspace)
  24. S.Position = tor.Position
  25. end
  26. end
  27. end
  28. end
  29. end
  30.  
  31. mouse.KeyDown:Connect(function(key)
  32. if key == "e" then
  33. HighEGGS()
  34. end
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement