Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. chat.AddText( "Spinning..." )
  2. surface.PlaySound("weapons/357/357_spin1.wav")
  3.  
  4. timer.Simple(2, function()
  5.  
  6. if (math.random(0 , 6)) == 1 then
  7. chat.AddText( "Boom!")
  8. chat.AddText( "Dead")
  9. RunConsoleCommand("kill")
  10. surface.PlaySound("weapons/357/357_fire2.wav")
  11. chat.AddText( "\n")
  12. else
  13. chat.AddText("*Click*")
  14. chat.AddText( "Safe")
  15. surface.PlaySound("weapons/ar2/ar2_empty.wav")
  16. timer.Simple(1.5, function()
  17. chat.AddText( "\n")
  18. chat.AddText( "\n")
  19. chat.AddText( "\n")
  20. end)
  21. end
  22.  
  23. end)
  24.  
  25. // Russian Roulette Script! Coded by Mezi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement