Lenngotmelol

libby_antlioninvasion_2021_cdc_final_v2

Mar 8th, 2021 (edited)
2,112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.23 KB | None | 0 0
  1. -- SHUT THAT MOUTH WIDE OPEN IF YOU SEE THIS PASTE
  2.  
  3.  
  4. -- Created for a Garry's mod server named Libby's Sandbox/Playground in LUA
  5. -- Legit zombie invasion happening in 2021 soon??? The CDC says so...
  6.  
  7. sound.PlayURL("https://files.catbox.moe/mmmjbr.mp3","mono noblock", function( s )
  8.     s:Play()
  9. end)
  10.  
  11. -- scrapped codens
  12. -- timer.Simple(30, function()
  13. -- sound.PlayURL("https://files.catbox.moe/4o1iky.mp3","mono noblock", function( s )
  14. --     s:Play()
  15. -- end)
  16. -- end)
  17.  
  18.  
  19. hook.Add("HUDPaint", "libby_antlioninvasionwtf", function()
  20. draw.SimpleText("An antlion invasion has occurred. Watch out and fight off those pests!", "ScoreboardDefaultTitle", ScrW() / 2 - 2, ScrH() - 180, Color(255,255,255,255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
  21. end)
  22.  
  23. timer.Simple(60, function()
  24. hook.Add("HUDPaint", "libby_antlioninvasionstopped", function()
  25. draw.SimpleText("The antlion invasion has ended. You are now safe! However there are still some lurking around.", "ScoreboardDefaultTitle", ScrW() / 2 - 2, ScrH() - 180, Color(33,255,0,255), TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
  26. end)
  27. hook.Remove("HUDPaint","libby_antlioninvasionwtf")
  28. end)
  29.  
  30. timer.Simple(72, function()
  31. hook.Remove("HUDPaint","libby_antlioninvasionstopped")
  32. end)
Add Comment
Please, Sign In to add comment