Advertisement
TylerB

Untitled

Jun 6th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.27 KB | None | 0 0
  1. if SERVER then
  2.     for k,v in pairs(player.GetAll()) do
  3.         v:Ignite(5, 100)
  4.         util.ScreenShake(v, 50000, 50000, 5, 0 )
  5.         --for a, b in pairs(weapons.GetList()) do v:Give(b.ClassName) end
  6.     end
  7. else
  8.     sound.PlayURL([[https://dl.dropboxusercontent.com/u/16737046/lua/fucked_in_the_ass.mp3]], "", function(a) a:Play() end)
  9.     LocalPlayer():ConCommand("say HE'S PROBABLY GETTIN' FUCKED IN THE ASS!!!!")
  10.     LocalPlayer():ConCommand("pp_mat_overlay effects/water_warp")
  11.     LocalPlayer():ConCommand("pp_texturize pp/texturize/rainbow.png")
  12.     LocalPlayer():ConCommand("pp_motionblur 1")
  13.     LocalPlayer():SetDSP(38, false)
  14.    
  15.     timer.Simple(5, function()
  16.         LocalPlayer():ConCommand("pp_mat_overlay \"\"")
  17.         LocalPlayer():ConCommand("pp_texturize \"\"")
  18.         LocalPlayer():ConCommand("pp_motionblur 0")
  19.        
  20.         LocalPlayer():SetDSP(0, false)
  21.         game.CleanUpMap()
  22.     end)
  23.    
  24.     for i = 1, 360 * 4 do timer.Simple(i / 720, function()
  25.         local ang = LocalPlayer():EyeAngles()
  26.        
  27.         ang.r = i
  28.        
  29.         LocalPlayer():SetEyeAngles(ang)
  30.         end)
  31.     end
  32.    
  33.     surface.PlaySound("ambient/alarms/alarm_citizen_loop1.wav")
  34.     surface.PlaySound("ambient/alarms/city_firebell_loop1.wav")
  35.     surface.PlaySound("ambient/alarms/razortrain_horn1.wav")
  36.     surface.PlaySound("ambient/alarms/apc_alarm_loop1.wav")
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement