Advertisement
lafur

Untitled

Nov 3rd, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. iller = game.Players.LocalPlayer
  2. Victim = game.Players["hugeitor22"]
  3.  
  4.  
  5.  
  6. wait(0.5)
  7.  
  8.  
  9. function onTouched(hit)
  10. p = hit.Parent:findFirstChild("Humanoid")
  11. ra = hit.Parent:findFirstChild("Right Arm")
  12. rl = hit.Parent:findFirstChild("Right Leg")
  13. la = hit.Parent:findFirstChild("Left Arm")
  14. lr = hit.Parent:findFirstChild("Left Leg")
  15. t = hit.Parent:findFirstChild("Torso")
  16. if p ~= nil then
  17. p.Health = 0
  18. ra.CanCollide = false
  19. ra.Anchored = true
  20. rl.CanCollide = false
  21. rl.Anchored = true
  22. la.CanCollide = false
  23. la.Anchored = true
  24. lr.CanCollide = false
  25. lr.Anchored = true
  26. t.CanCollide = false
  27. t.Anchored = true
  28. local bp = Instance.new("BodyPosition")
  29. bp.Parent = hit.Parent.Head
  30. bp.position = game.Workspace.Guillo.sModel.pos.Position
  31. wait(.2)
  32. hit.Parent.Head.Size = Vector3.new(1,1,1)
  33. bp:Remove()
  34. end
  35. end
  36.  
  37. game.Workspace.Guillo.sModel.Blade.Touched:connect(onTouched)
  38.  
  39.  
  40. function onClicked()
  41. if game.Workspace.Guillo.sModel.Rdy.Value == true then
  42. game.Workspace.Guillo.Safety:Destroy()
  43. game.Workspace.Guillo.sModel.Blade.bv.velocity = Vector3.new(0,-50,0)
  44. game.Workspace.Guillo.sModel.lvr2.Transparency = 1
  45. game.Workspace.Guillo.sModel.lvr1.Transparency = 0
  46. game.Workspace.Guillo.sModel.lvr2.CanCollide = false
  47. game.Workspace.Guillo.sModel.lvr1.CanCollide = true
  48. wait(0.3)
  49. game.Workspace.Guillo.sModel.Blade.bv.velocity = Vector3.new(0,0,0)
  50. game.Workspace.Guillo.sModel.Rdy.Value = false
  51. wait(5)
  52. game.Workspace.Guillo:Destroy()
  53. elseif game.Workspace.Guillo.sModel.Rdy.Value == false then
  54. game.Workspace.Guillo.sModel.Blade.bv.velocity = Vector3.new(0,1,0)
  55. game.Workspace.Guillo.sModel.lvr2.Transparency = 0
  56. game.Workspace.Guillo.sModel.lvr1.Transparency = 1
  57. game.Workspace.Guillo.sModel.lvr2.CanCollide = true
  58. game.Workspace.Guillo.sModel.lvr1.CanCollide = false
  59. game.Workspace.Guillo.sModel.Rdy.Value = true
  60. end
  61. end
  62.  
  63. game.Workspace.Guillo.sModel.lvr1.ClickDetector.MouseClick:connect(onClicked)
  64. game.Workspace.Guillo.sModel.lvr2.ClickDetector.MouseClick:connect(onClicked)
  65.  
  66. Killer.Character.HumanoidRootPart.CFrame = game.Workspace.Guillo.PartTPer.CFrame
  67. game.Workspace.Guillo.PartTPer:Destroy()
  68. wait(1)
  69. Victim.Character.HumanoidRootPart.CFrame = game.Workspace.Guillo.Seat.CFrame
  70. game.Workspace.Guillo.PartTP2:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement