Advertisement
rewfsdg3

Untitled

Nov 4th, 2018
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. lp = owner
  2. rl = "rbxassetid://138084889"
  3. sh = "rbxassetid://131070686"
  4. na = "rbxassetid://132464034"
  5. gun = Instance.new("Tool")
  6. gun.Name = "Russian Roulette"
  7. gun.GripPos = Vector3.new(0,0,1)
  8. handle = Instance.new("Part",gun)
  9. handle.Size = Vector3.new(0.675, 1.213, 2.123)
  10. handle.Name = "Handle"
  11. handle.BrickColor = BrickColor.Black()
  12. mesh = Instance.new("FileMesh",handle)
  13. mesh.MeshId = "rbxassetid://435705367"
  14. mesh.Scale = Vector3.new(0.675/10, 1.213/10, 2.123/10)
  15. gun.Parent = lp.Backpack
  16. rs = Instance.new("Sound",handle)
  17. rs.SoundId = rl
  18. ss = Instance.new("Sound",handle)
  19. ss.SoundId = sh
  20. ss.Volume = 1.5
  21. ns = Instance.new("Sound",handle)
  22. ns.SoundId = na
  23. debounce = false
  24. gun.Activated:connect(function()
  25. if debounce == false then
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43. debounce = true
  44. gun.GripRight = Vector3.new(-1,0,0)
  45. gun.GripPos = Vector3.new(-1.5,-0.5,0.5)
  46. rs:Play()
  47. repeat
  48. wait(0.01)
  49. until rs.IsLoaded and rs.IsPlaying
  50. repeat
  51. wait(0.01)
  52. until rs.IsPlaying == false
  53. chance = math.random(1,4)
  54. if chance == 4 then
  55. ss:Play()
  56. lp.Character.Head:BreakJoints()
  57. lp.Character.Head.CFrame = lp.Character.Head.CFrame + Vector3.new(0,1,0)
  58. else
  59. ns:Play()
  60. wait(1.5)
  61. gun.GripRight = Vector3.new(0,0,0)
  62. gun.GripPos = Vector3.new(0,0,1)
  63. debounce = false
  64. end
  65. end
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement