SheeityArtist

TRUE PSYCHOPATHIC GENOCIDER

Jan 26th, 2018 (edited)
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 183.28 KB | None | 0 0
  1. -----------------------
  2. --Psychotic Genocider--
  3. -------------------------------------------------------
  4. --Psycho, and this edit by CKbackup (Sugarie Saffron)--
  5. --Genocider, an edit of Psycho by Salvo_Starly---------
  6. -------------------------------------------------------
  7.  
  8. wait(1/60)
  9. Effects = { }
  10. local Player = game:service'Players'.localPlayer
  11. local chara = Player.Character
  12. local Humanoid = chara:FindFirstChildOfClass("Humanoid")
  13. local Mouse = Player:GetMouse()
  14. local LeftArm = chara["Left Arm"]
  15. local RightArm = chara["Right Arm"]
  16. local LeftLeg = chara["Left Leg"]
  17. local RightLeg = chara["Right Leg"]
  18. local Head = chara.Head
  19. local Torso = chara.Torso
  20. local Camera = game.Workspace.CurrentCamera
  21. local RootPart = chara.HumanoidRootPart
  22. local RootJoint = RootPart.RootJoint
  23. local attack = false
  24. local Anim = 'Idle'
  25. local attacktype = 1
  26. local delays = false
  27. local play = true
  28. local targetted = nil
  29. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  30. local velocity = RootPart.Velocity.y
  31. local sine = 0
  32. local change = 1
  33. local doe = 0
  34. local annoyingeffects = false
  35. local Create = LoadLibrary("RbxUtility").Create
  36. Humanoid.WalkSpeed = 8
  37. local m = Create("Model"){
  38.     Parent = chara,
  39.     Name = "ThePistol",
  40. }
  41.  
  42. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  43.  
  44. Humanoid.Animator.Parent = nil
  45. chara.Animate.Parent = nil
  46.  
  47. local newMotor = function(part0, part1, c0, c1)
  48.     local w = Create('Motor'){
  49.         Parent = part0,
  50.         Part0 = part0,
  51.         Part1 = part1,
  52.         C0 = c0,
  53.         C1 = c1,
  54.     }
  55.     return w
  56. end
  57.  
  58. function clerp(a, b, t)
  59.     return a:lerp(b, t)
  60. end
  61.  
  62. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  63. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  64.  
  65. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  66. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  67. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  68. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  69. RootJoint.C1 = CFrame.new(0, 0, 0)
  70. RootJoint.C0 = CFrame.new(0, 0, 0)
  71. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  72. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  73.  
  74. local rarmc1 = RW.C1
  75. local larmc1 = LW.C1
  76. local rlegc1 = RH.C1
  77. local llegc1 = LH.C1
  78.  
  79. local resetc1 = false
  80.  
  81. function PlayAnimationFromTable(table, speed, bool)
  82.     RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  83.     Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  84.     RW.C0 = clerp(RW.C0, table[3], speed)
  85.     LW.C0 = clerp(LW.C0, table[4], speed)
  86.     RH.C0 = clerp(RH.C0, table[5], speed)
  87.     LH.C0 = clerp(LH.C0, table[6], speed)
  88.     if bool == true then
  89.         if resetc1 == false then
  90.             resetc1 = true
  91.             RootJoint.C1 = RootJoint.C1
  92.             Torso.Neck.C1 = Torso.Neck.C1
  93.             RW.C1 = rarmc1
  94.             LW.C1 = larmc1
  95.             RH.C1 = rlegc1
  96.             LH.C1 = llegc1
  97.         end
  98.     end
  99. end
  100.  
  101. ArtificialHB = Instance.new("BindableEvent", script)
  102. ArtificialHB.Name = "Heartbeat"
  103. script:WaitForChild("Heartbeat")
  104. frame = 0.03333333333333
  105. tf = 0
  106. allowframeloss = false
  107. tossremainder = false
  108. lastframe = tick()
  109. script.Heartbeat:Fire()
  110. game:GetService("RunService").Heartbeat:connect(function(s, p)
  111.   tf = tf + s
  112.   if tf >= frame then
  113.     if allowframeloss then
  114.       script.Heartbeat:Fire()
  115.       lastframe = tick()
  116.     else
  117.       for i = 1, math.floor(tf / frame) do
  118.         script.Heartbeat:Fire()
  119.       end
  120.       lastframe = tick()
  121.     end
  122.     if tossremainder then
  123.       tf = 0
  124.     else
  125.       tf = tf - frame * math.floor(tf / frame)
  126.     end
  127.   end
  128. end)
  129. function swait(num)
  130.   if num == 0 or num == nil then
  131.     ArtificialHB.Event:wait()
  132.   else
  133.     for i = 0, num do
  134.       ArtificialHB.Event:wait()
  135.     end
  136.   end
  137. end
  138.  
  139. function RemoveOutlines(part)
  140.     part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  141. end
  142.    
  143. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  144. CFuncs = { 
  145.     ["Part"] = {
  146.         Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  147.             local Part = Create("Part"){
  148.                 Parent = Parent,
  149.                 Reflectance = Reflectance,
  150.                 Transparency = Transparency,
  151.                 CanCollide = false,
  152.                 Locked = true,
  153.                 BrickColor = BrickColor.new(tostring(BColor)),
  154.                 Name = Name,
  155.                 Size = Size,
  156.                 Material = Material,
  157.             }
  158.             RemoveOutlines(Part)
  159.             return Part
  160.         end;
  161.     };
  162.    
  163.     ["Mesh"] = {
  164.         Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  165.             local Msh = Create(Mesh){
  166.                 Parent = Part,
  167.                 Offset = OffSet,
  168.                 Scale = Scale,
  169.             }
  170.             if Mesh == "SpecialMesh" then
  171.                 Msh.MeshType = MeshType
  172.                 Msh.MeshId = MeshId
  173.             end
  174.             return Msh
  175.         end;
  176.     };
  177.    
  178.     ["Mesh"] = {
  179.         Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  180.             local Msh = Create(Mesh){
  181.                 Parent = Part,
  182.                 Offset = OffSet,
  183.                 Scale = Scale,
  184.             }
  185.             if Mesh == "SpecialMesh" then
  186.                 Msh.MeshType = MeshType
  187.                 Msh.MeshId = MeshId
  188.             end
  189.             return Msh
  190.         end;
  191.     };
  192.    
  193.     ["Weld"] = {
  194.         Create = function(Parent, Part0, Part1, C0, C1)
  195.             local Weld = Create("Weld"){
  196.                 Parent = Parent,
  197.                 Part0 = Part0,
  198.                 Part1 = Part1,
  199.                 C0 = C0,
  200.                 C1 = C1,
  201.             }
  202.             return Weld
  203.         end;
  204.     };
  205.  
  206.     ["Sound"] = {
  207.         Create = function(id, par, vol, pit)
  208.             coroutine.resume(coroutine.create(function()
  209.                 local S = Create("Sound"){
  210.                     Volume = vol,
  211.                     Pitch = pit or 1,
  212.                     SoundId = id,
  213.                     Parent = par or workspace,
  214.                 }
  215.                 swait()
  216.                 S:play()
  217.                 game:GetService("Debris"):AddItem(S, 6)
  218.             end))
  219.         end;
  220.     };
  221.    
  222.     ["ParticleEmitter"] = {
  223.         Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  224.             local fp = Create("ParticleEmitter"){
  225.                 Parent = Parent,
  226.                 Color = ColorSequence.new(Color1, Color2),
  227.                 LightEmission = LightEmission,
  228.                 Size = Size,
  229.                 Texture = Texture,
  230.                 Transparency = Transparency,
  231.                 ZOffset = ZOffset,
  232.                 Acceleration = Accel,
  233.                 Drag = Drag,
  234.                 LockedToPart = LockedToPart,
  235.                 VelocityInheritance = VelocityInheritance,
  236.                 EmissionDirection = EmissionDirection,
  237.                 Enabled = Enabled,
  238.                 Lifetime = LifeTime,
  239.                 Rate = Rate,
  240.                 Rotation = Rotation,
  241.                 RotSpeed = RotSpeed,
  242.                 Speed = Speed,
  243.                 VelocitySpread = VelocitySpread,
  244.             }
  245.             return fp
  246.         end;
  247.     };
  248.  
  249.     CreateTemplate = {
  250.    
  251.     };
  252. }
  253.  
  254.  
  255.  
  256. New = function(Object, Parent, Name, Data)
  257.     local Object = Instance.new(Object)
  258.     for Index, Value in pairs(Data or {}) do
  259.         Object[Index] = Value
  260.     end
  261.     Object.Parent = Parent
  262.     Object.Name = Name
  263.     return Object
  264. end
  265.    
  266.  
  267. --ShadowHead = New("Part",chara,"ShadowHeadss",{CanCollide = false,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(1.20000005, 0.600000024, 1),CFrame = CFrame.new(68.5999985, 0.700013041, 9.89999962, 1, 0, 0, 0, 1, 0, 0, 0, 1),Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  268. --Mesh = New("SpecialMesh",ShadowHead,"Mesh",{Scale = Vector3.new(1.25999999, 1.5, 1.25999999),})
  269. --Weld = New("Weld",ShadowHead,"mot",{Part0 = ShadowHead,Part1 = chara.Head,C1 = CFrame.new(0, 0.200000048, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  270.  
  271. Handle = New("Part",m,"Handle",{Material = Enum.Material.SmoothPlastic,Transparency = 1,Transparency = 1,Size = Vector3.new(1.78105354, 1.21267569, 0.446083069),CFrame = CFrame.new(3.48884702, 1.89424598, -23.6011944, 0.0172098875, -7.30156898e-07, 0.999851942, 0.999853492, 1.19907781e-08, -0.0172098596, -1.80598714e-09, 1.00000083, 1.4975667e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  272. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  273. moter = New("Weld",Handle,"mot",{Part0 = RightArm,Part1 = Handle,})
  274. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.46324158, 2.55061626, -23.0996056, 0.0172099378, 1.26508749e-05, 0.999852061, 0.999856234, 0.000737910799, -0.0172098614, -0.000738026109, 1.00000215, 2.29468287e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  275. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.492160469, 0.24608025, 0.123040132),})
  276. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098838, 0.999853015, -0.000738022442, 1.18836761e-05, 0.000737924012, 1.00000048, 0.999851942, -0.0172098614, 1.52736902e-06),C1 = CFrame.new(0.655831456, 0.501588821, -0.0368974209, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  277. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.200000003, 0.270688266, 0.270688266),CFrame = CFrame.new(3.47537327, 1.11045444, -23.2953625, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  278. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.123040125, 1, 1),MeshType = Enum.MeshType.Cylinder,})
  279. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.783906102, 0.305831909, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  280. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(1.47648132, 0.221472263, 0.344512314),CFrame = CFrame.new(3.48828244, 1.86040294, -23.3093491, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  281. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 1.00999999, 1),})
  282. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(-0.0338476896, 0.291845322, 1.8119812e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  283. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.98432076, 0.200000003, 0.24608022),CFrame = CFrame.new(3.48404813, 1.61474013, -23.4433804, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  284. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.246080264, 1),})
  285. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279546618, 0.157814026, 1.21593475e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  286. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.984321058, 0.200000003, 0.200000003),CFrame = CFrame.new(3.36101127, 1.61687815, -23.4187717, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  287. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.492160618, 0.492160439),MeshType = Enum.MeshType.Cylinder,})
  288. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279526353, 0.182422638, -0.123043299, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  289. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  290. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.53706741, 2.54934502, -23.0996056, 0.0172099378, 1.26508749e-05, 0.999852061, 0.999856234, 0.000737910799, -0.0172098614, -0.000738026109, 1.00000215, 2.29468287e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  291. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.492160469, 0.246080235, 0.123040132),})
  292. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098838, 0.999853015, -0.000738022442, 1.18836761e-05, 0.000737924012, 1.00000048, 0.999851942, -0.0172098614, 1.52736902e-06),C1 = CFrame.new(0.655830979, 0.501588821, 0.0369393826, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  293. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(1.47648132, 0.200000003, 0.200000003),CFrame = CFrame.new(3.48828554, 1.86097884, -23.1606178, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  294. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.7382406),})
  295. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.0332717896, 0.440576553, 1.14440918e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  296. Partss = New("Part",m,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.200000003, 0.221472204, 0.221472189),CFrame = CFrame.new(3.47526526, 1.10428262, -23.2953568, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  297. Mesh = New("SpecialMesh",Partss,"Mesh",{Scale = Vector3.new(0.123040125, 1, 1),MeshType = Enum.MeshType.Cylinder,})
  298. mot = New("Weld",Partss,"mot",{Part0 = Partss,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.790078878, 0.305837631, 1.57356262e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  299. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.49040294, 1.9837563, -23.5174713, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  300. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.615200579, 0.36912033, 0.24608025),MeshId = "rbxassetid://3270017",MeshType = Enum.MeshType.FileMesh,})
  301. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(0.0895236731, 0.0837230682, 1.52587891e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  302. Part = New("Part",m,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.295296252, 0.738240778, 0.369120389),CFrame = CFrame.new(3.49802279, 2.42631888, -23.8138046, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  303. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(0.532151103, -0.212610245, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  304. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.344512314, 0.78745681, 0.344512314),CFrame = CFrame.new(3.49802279, 2.42631888, -23.8138046, 0.0172099452, 3.70001203e-08, 0.999852061, 0.99985671, -3.59708352e-09, -0.0172098596, -4.18887769e-09, 1.0000025, 2.26488032e-06),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  305. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),C1 = CFrame.new(0.532151103, -0.212610245, 1.74045563e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  306. Part = New("Part",m,"Part",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.984321058, 0.200000003, 0.200000003),CFrame = CFrame.new(3.60706425, 1.61264217, -23.4187698, 0.0172099359, 1.26359728e-05, 0.999851942, 0.999856234, 0.000738034665, -0.0172098596, -0.000738148578, 1.00000226, 2.36918868e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  307. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 0.492160618, 0.492160439),MeshType = Enum.MeshType.Cylinder,})
  308. mot = New("Weld",Part,"mot",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098819, 0.999853015, -0.00073814491, 1.18687749e-05, 0.000738047936, 1.0000006, 0.999851882, -0.0172098596, 1.60187483e-06),C1 = CFrame.new(-0.279527187, 0.182424545, 0.12304616, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  309. Wedge = New("WedgePart",m,"Wedge",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.47672749, 1.18911982, -23.1232109, 0.999851942, 0.00638213893, 0.0159827713, -0.0172098316, 0.37065956, 0.928613782, 4.44045327e-06, -0.928749561, 0.370713741),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  310. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(0.24608025, 0.246080264, 0.615200639),MeshType = Enum.MeshType.Wedge,})
  311. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098316, 3.67313623e-06, 0.00638283044, 0.370658338, -0.928748012, 0.0159824342, 0.928610861, 0.370713145),C1 = CFrame.new(-0.705229163, 0.477983475, 1.76429749e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  312. Wedge = New("WedgePart",m,"Wedge",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.344512254, 0.787456751, 0.200000003),CFrame = CFrame.new(3.50247502, 2.68478155, -23.8132839, 0.999851942, 1.0713723e-05, -0.0172099732, -0.0172098912, 0.000738376984, -0.999856234, 4.21693585e-06, 1.00000226, 0.000738456321),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  313. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.861280859),MeshType = Enum.MeshType.Wedge,})
  314. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098912, 3.44961882e-06, 9.9465251e-06, 0.000738390256, 1.0000006, -0.0172099192, -0.999853015, 0.000738452654),C1 = CFrame.new(0.790651679, -0.212089539, 2.07424164e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  315. Wedge = New("WedgePart",m,"Wedge",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(3.4904809, 1.98827124, -23.5162678, -0.999852061, -0.0148990965, 0.00861407723, 0.0172099397, -0.865535975, 0.500560343, -4.36594746e-06, 0.500633478, 0.865662456),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  316. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(0.24608025, 0.369120389, 0.861280918),MeshType = Enum.MeshType.Wedge,})
  317. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.999851942, 0.0172099397, -3.59863043e-06, -0.0148994327, -0.865533173, 0.500632644, 0.00861338526, 0.500558794, 0.865661025),C1 = CFrame.new(0.0940393209, 0.0849266052, 1.54972076e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  318. Wedge = New("WedgePart",m,"Wedge",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.442944348, 0.200000003, 0.200000003),CFrame = CFrame.new(3.37415838, 2.37982368, -23.1609974, 0.0172098633, 1.48413446e-05, 0.999851882, 0.999856234, 0.0007376945, -0.0172097869, -0.000737846654, 1.00000215, 7.44058752e-08),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  319. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  320. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098093, 0.999853015, -0.000737842987, 1.40741467e-05, 0.000737707771, 1.00000048, 0.999851823, -0.0172097888, -6.92903996e-07),C1 = CFrame.new(0.483531356, 0.440196991, -0.12302804, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  321. Wedge = New("WedgePart",m,"Wedge",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.61520052, 0.200000003, 0.200000003),CFrame = CFrame.new(3.35783243, 1.43252242, -23.1602993, 0.0172098633, 1.48413446e-05, 0.999851882, 0.999856234, 0.0007376945, -0.0172097869, -0.000737846654, 1.00000215, 7.44058752e-08),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  322. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  323. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.0172098093, 0.999853015, -0.000737842987, 1.40741467e-05, 0.000737707771, 1.00000048, 0.999851823, -0.0172097888, -6.92903996e-07),C1 = CFrame.new(-0.463909149, 0.440895081, -0.123048544, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  324. Wedge = New("WedgePart",m,"Wedge",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(1.47648132, 0.200000003, 0.200000003),CFrame = CFrame.new(3.61130548, 1.85886192, -23.160614, -0.0172098689, 1.04156998e-05, -0.99985218, -0.999856234, 0.000738191127, 0.0172097925, 0.000738266157, 1.00000238, -4.55221243e-06),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  325. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 0.369120389, 0.492160529),MeshType = Enum.MeshType.Wedge,})
  326. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -0.0172098149, -0.999853075, 0.00073826249, 9.64850187e-06, 0.00073820434, 1.00000072, -0.999852121, 0.0172097944, -3.78489494e-06),C1 = CFrame.new(-0.0332713127, 0.440580368, 0.123049498, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  327. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.36912033, 0.738240778, 0.200000003),CFrame = CFrame.new(3.50183868, 2.64789343, -23.8132629, 0.999851942, 1.0818032e-05, -0.017209895, -0.0172098186, 0.000737608876, -0.999856234, 4.13497901e-06, 1.00000238, 0.000737691764),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  328. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.738240719),MeshType = Enum.MeshType.Wedge,})
  329. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851882, -0.0172098186, 3.36766243e-06, 1.00508332e-05, 0.000737622147, 1.00000072, -0.0172098409, -0.999853015, 0.000737688097),C1 = CFrame.new(0.753758311, -0.212068558, 1.93119049e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  330. Wedge = New("WedgePart",m,"Wedge",{Material = Enum.Material.SmoothPlastic,BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.344512254, 0.787456751, 0.200000003),CFrame = CFrame.new(3.49357963, 2.16808391, -23.8129005, 0.999852061, -1.05647114e-05, 0.0172100067, -0.0172099303, -0.000737611321, 0.999856114, 4.36594746e-06, -1.00000226, -0.000737689785),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  331. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.861280859),MeshType = Enum.MeshType.Wedge,})
  332. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851942, -0.0172099303, 3.59863043e-06, -9.79751348e-06, -0.000737624592, -1.0000006, 0.0172099527, 0.999852955, -0.000737686118),C1 = CFrame.new(0.273878455, -0.211706161, 1.90734863e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  333. Wedge = New("WedgePart",m,"Wedge",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.36912033, 0.738240659, 0.200000003),CFrame = CFrame.new(3.49420977, 2.20497489, -23.8129292, 0.999852061, -1.05647114e-05, 0.0172100067, -0.0172099303, -0.000737611321, 0.999856114, 4.36594746e-06, -1.00000226, -0.000737689785),CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.105882, 0.164706, 0.207843),})
  334. Mesh = New("SpecialMesh",Wedge,"Mesh",{Scale = Vector3.new(1, 1, 0.738240719),MeshType = Enum.MeshType.Wedge,})
  335. mot = New("Weld",Wedge,"mot",{Part0 = Wedge,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.999851942, -0.0172099303, 3.59863043e-06, -9.79751348e-06, -0.000737624592, -1.0000006, 0.0172099527, 0.999852955, -0.000737686118),C1 = CFrame.new(0.310774684, -0.211734772, 1.43051147e-05, 0.0172098875, 0.999853492, -1.80598714e-09, -7.30156898e-07, 1.19907781e-08, 1.00000083, 0.999851942, -0.0172098596, 1.4975667e-06),})
  336.  
  337. Knifu = New("Model",chara,"TheKnife",{})
  338. Handle = New("Part",Knifu,"Handle",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000024, 0.400000006),CFrame = CFrame.new(44.9000015, 1.0999999, 22.2000008, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  339. KWeld = New("ManualWeld",Handle,"Weld",{Part0 = Handle,Part1 = chara["Left Arm"],C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0),C1 = CFrame.new(0, -1.00000644, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  340. Mesh = New("CylinderMesh",Handle,"Mesh",{})
  341. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 1.89999986, 22.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  342. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  343. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, -0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  344. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.799999952, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  345. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(44.9000015, 2.90000057, 22.3000011, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  346. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 1),})
  347. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 1.80000067, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  348. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 1.69999981, 22.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  349. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, -0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  350. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.599999905, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  351. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 1.69999981, 22.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  352. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, 0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  353. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.599999905, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  354. BloodPart = New("Part",Knifu,"BloodPart",{BrickColor = BrickColor.new("Crimson"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 1.19999993, 0.600000024),CFrame = CFrame.new(44.9000015, 3.99999976, 22.3000031, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.592157, 0, 0),})
  355. Mesh = New("SpecialMesh",BloodPart,"Mesh",{Scale = Vector3.new(0.409999996, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  356. Weld = New("ManualWeld",BloodPart,"Weld",{Part0 = BloodPart,Part1 = Handle,C1 = CFrame.new(0, 2.89999986, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  357. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 1.20000005, 0.200000003),CFrame = CFrame.new(44.9000015, 2.20000029, 22.1000004, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  358. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 1),})
  359. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 1.10000038, -0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  360. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.600000083),CFrame = CFrame.new(44.9000015, 1.5, 21.8999977, -1, 0, 0, 0, -1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  361. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 1.20000005),MeshType = Enum.MeshType.Wedge,})
  362. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, 1),C1 = CFrame.new(0, 0.400000095, -0.300003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  363. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000036),CFrame = CFrame.new(44.9000015, 1.5, 22.3999996, 1, 0, 0, 0, -1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  364. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 1.20000005),MeshType = Enum.MeshType.Wedge,})
  365. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.400000095, 0.199998856, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  366. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 1.89999986, 22.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  367. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, 0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  368. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.799999952, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  369. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 2.0999999, 22.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  370. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, 0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  371. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 1, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  372. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 2.0999999, 22.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  373. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, -0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  374. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 1, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  375. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 2.29999995, 22.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  376. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, -0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  377. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 1.20000005, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  378. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 2.29999995, 22.3000031, -1, 0, 0, 0, 1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  379. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, 0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  380. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 1.20000005, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  381. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(44.9000015, 2.10000038, 22.3000011, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  382. Mesh = New("BlockMesh",Part,"Mesh",{Offset = Vector3.new(0, 0, -0.0500000007),Scale = Vector3.new(0.400000006, 1, 0.5),})
  383. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 1.00000048, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  384. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(44.9000015, 1.30000019, 22.2000008, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  385. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 0.949999988, 1.20000005),})
  386. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 0.200000286, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  387. Blood2Part = New("Part",Knifu,"Blood2Part",{BrickColor = BrickColor.new("Crimson"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000083, 0.200000003),CFrame = CFrame.new(44.9000015, 3.10000038, 22.1000004, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.592157, 0, 0),})
  388. Mesh = New("BlockMesh",Blood2Part,"Mesh",{Scale = Vector3.new(0.409999996, 1.00999999, 1.00999999),})
  389. Weld = New("ManualWeld",Blood2Part,"Weld",{Part0 = Blood2Part,Part1 = Handle,C1 = CFrame.new(0, 2.00000048, -0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  390. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(44.9000015, 1.10000014, 22.2000008, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  391. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 0.949999988, 1.20000005),})
  392. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 2.38418579e-07, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  393. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(44.9000015, 1.50000024, 22.2000008, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  394. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.5, 1.20000005, 1.5),})
  395. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 0.400000334, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  396. Hitbox = New("Part",Knifu,"Hitbox",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.200000003, 3.00000024, 0.600000024),CFrame = CFrame.new(44.9000015, 3.0999999, 22.3000031, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  397. Weld = New("ManualWeld",Hitbox,"Weld",{Part0 = Hitbox,Part1 = Handle,C1 = CFrame.new(0, 2, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  398. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(44.9000015, 0.900000095, 22.2000008, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  399. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1.20000005, 0.949999988, 1.20000005),})
  400. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, -0.199999809, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  401. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Crimson"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000033),CFrame = CFrame.new(44.9000015, 2.70000029, 22.1000004, 1, 0, 0, 0, -1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.592157, 0, 0),})
  402. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.409999996, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  403. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 1.60000038, -0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  404. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Crimson"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000036),CFrame = CFrame.new(44.9000015, 3.30000019, 22.4000034, 1, 0, 0, 0, -1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.592157, 0, 0),})
  405. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.409999996, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  406. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 2.20000029, 0.20000267, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  407. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(44.9000015, 3.30000067, 22.5000019, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  408. Mesh = New("BlockMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 1),})
  409. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 2.20000076, 0.300001144, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  410. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.400000006, 0.200000077),CFrame = CFrame.new(44.9000015, 1.80000007, 21.6999969, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  411. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(1, 1, 1.20000005),MeshType = Enum.MeshType.Wedge,})
  412. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 0.700000167, -0.500003815, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  413. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(44.9000015, 2.30000043, 22.2000008, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.666667, 0, 0.666667),})
  414. Mesh = New("SpecialMesh",Part,"Mesh",{Offset = Vector3.new(0, 0, -0.0500000007),Scale = Vector3.new(0.200000003, 0.5, 0.200000003),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  415. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, 1.20000052, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  416. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(44.9000015, 0.700000286, 22.2000008, 1, 0, 0, 0, 1, 0, 0, 0, 1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.666667, 0, 0.666667),})
  417. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.200000003, 0.5, 0.200000003),MeshId = "rbxassetid://9756362",MeshType = Enum.MeshType.FileMesh,})
  418. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C1 = CFrame.new(0, -0.399999619, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  419. Part = New("Part",Knifu,"Part",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.600000024, 0.200000003),CFrame = CFrame.new(44.9000015, 2.9000001, 22.5000038, 1, 0, 0, 0, -1, 0, 0, 0, -1),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  420. Mesh = New("SpecialMesh",Part,"Mesh",{Scale = Vector3.new(0.400000006, 1, 1),MeshType = Enum.MeshType.Wedge,})
  421. Weld = New("ManualWeld",Part,"Weld",{Part0 = Part,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 1.80000019, 0.300003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  422.  
  423. local att1 = Instance.new("Attachment",Hitbox)
  424. att1.Position = Vector3.new(0,Hitbox.Size.Y/2,Hitbox.Size.Z/2)
  425. local att2 = Instance.new("Attachment",Hitbox)
  426. att2.Position = Vector3.new(0,-Hitbox.Size.Y/2,-Hitbox.Size.Z/2)
  427. local tr1 = Instance.new("Trail",Hitbox)
  428. tr1.Color = ColorSequence.new(Color3.new(1,0,0))
  429. tr1.Transparency = NumberSequence.new(0,1)
  430. tr1.Lifetime = .5
  431. tr1.Enabled = false
  432. tr1.LightEmission = 1
  433. tr1.Attachment0 = att1
  434. tr1.Attachment1 = att2
  435.  
  436. for _,v in pairs(m:children()) do
  437. if v:IsA("Part") then
  438. v.CanCollide = false
  439. end
  440. end
  441. if chara.Name == "grgrgry21" or chara.Name == "Player1" then
  442. for _,v in pairs(chara:children()) do
  443. if v:IsA("Accessory") then
  444. v:Remove()
  445. end
  446. end
  447. Handle = New("Part",m,"Handle",{CanCollide = false,BrickColor = BrickColor.new("Really black"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(-27.3000507, 4.79990387, 28.10005, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  448. Mesh = New("SpecialMesh",Handle,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),MeshId = "rbxassetid://62246019",MeshType = Enum.MeshType.FileMesh,})
  449. Decal = New("Decal",Handle,"Decal",{Face = Enum.NormalId.Top,Texture = "rbxassetid://146022204",})
  450. mot = New("Motor",Handle,"mot",{Part0 = Handle,Part1 = Head,C0 = CFrame.new(0, 0, 0, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),C1 = CFrame.new(-0.100000381, 0.0999999046, 0.200000763, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),})
  451. Handle1 = New("Part",m,"Handle1",{CanCollide = false,BrickColor = BrickColor.new("Bright red"),FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(1, 1, 1),CFrame = CFrame.new(-27.3000507, 4.79990387, 28.10005, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.768628, 0.156863, 0.109804),})
  452. Mesh = New("SpecialMesh",Handle1,"Mesh",{Offset = Vector3.new(0, 0.100000001, 0),Scale = Vector3.new(0.949999988, 0.949999988, 0.949999988),MeshId = "rbxassetid://62246019",MeshType = Enum.MeshType.FileMesh,})
  453. mot = New("Motor",Handle1,"mot",{Part0 = Handle1,Part1 = Head,C0 = CFrame.new(0, 0, 0, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),C1 = CFrame.new(-0.100000381, 0.0999999046, 0.200000763, 4.49431016e-21, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, -1, -6.79974523e-22, 4.49431016e-21),})
  454. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  455. elseif chara.Name == "CKbackup" then
  456.     local CorruptFace = New("Decal",chara.FakeHeadM.FakeHead,"Corrupt",{Texture = "rbxassetid://1000657824",})
  457.     chara.FakeHeadM.FakeHead.Normal:Destroy()
  458.     chara.FakeHeadM.FakeHead.Lood:Destroy()
  459.     chara.FakeHeadM.FakeHead.Rooped:Destroy()
  460.     chara.FaysG:Destroy()
  461.     chara.FakeHeadM.Ahoge:Destroy()
  462. chara.Shirta.ShirtTemplate = "rbxassetid://1049388163"
  463. chara.Pantsa.PantsTemplate = "rbxassetid://1269870713"
  464.         for i,v in pairs(chara:GetDescendants()) do
  465.         if v:IsA("BasePart") and (v.BrickColor == BrickColor.new("Alder") or v.BrickColor == BrickColor.new("Royal purple")) then
  466.         v.BrickColor = BrickColor.new("Crimson")
  467.         elseif v:IsA("BasePart") and v.BrickColor == BrickColor.new("Institutional white") then
  468.         v.BrickColor = BrickColor.new("Really black")
  469.         elseif v.Name == "SpecPart" or v.Name == "Ears1Part" then
  470.         v:Destroy()
  471.         elseif v.Name == "Ears2Part" then
  472.         v.Transparency = 0
  473.         end
  474.         end
  475. end
  476.  
  477.  
  478. function rayCast(Position, Direction, Range, Ignore)
  479.     return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  480. end
  481.  
  482. --[[FindNearestTorso = function(pos)
  483.     local list = (game.workspace:GetDescendants())
  484.     local torso = nil
  485.     local dist = 1000
  486.     local temp, human, temp2 = nil, nil, nil
  487.     for x = 1, #list do
  488.         temp2 = list[x]
  489.         if temp2.className == "Model" and temp2.Name ~= chara.Name then
  490.             temp = temp2:findFirstChild("Torso")
  491.             human = temp2:FindFirstChildOfClass("Humanoid")
  492.             if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
  493.                 local dohit = true
  494.                 if dohit == true then
  495.                     torso = temp
  496.                     dist = (temp.Position - pos).magnitude
  497.                 end
  498.             end
  499.         end
  500.     end
  501.     return torso, dist
  502. end]]
  503. function FindNearestTorso(Position, Distance, SinglePlayer)
  504.     if SinglePlayer then
  505.         return (SinglePlayer.Head.CFrame.p - Position).magnitude < Distance
  506.     end
  507.     local List = {}
  508.     for i, v in pairs(workspace:GetDescendants()) do
  509.         if v:IsA("Model") then
  510.             if v:findFirstChild("Head") then
  511.                 if v ~= chara then
  512.                     if (v.Head.Position - Position).magnitude <= Distance then
  513.                         table.insert(List, v)
  514.                     end
  515.                 end
  516.             end
  517.         end
  518.     end
  519.     return List
  520. end
  521.  
  522. local p1mit = Instance.new("ParticleEmitter")
  523. p1mit.Texture = "rbxasset://textures/particles/fire_main.dds"
  524. p1mit.LightEmission = 1
  525. p1mit.Color = ColorSequence.new(Color3.new(1,0,0))
  526. p1mit.Size = NumberSequence.new(1,0)
  527. p1mit.Lifetime = NumberRange.new(2)
  528. p1mit.Rate = 1000
  529. p1mit.Rotation = NumberRange.new(0,359)
  530. p1mit.Speed = NumberRange.new(0)
  531.  
  532. function dmg(dude)
  533. if dude.Name ~= chara then
  534. dude:FindFirstChildOfClass("Humanoid").PlatformStand = true
  535. local bgf = Instance.new("BodyGyro",dude.Head)
  536. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(-90),0,0)
  537. local val = Instance.new("BoolValue",dude)
  538. val.Name = "IsHit"
  539. local torsy = dude:FindFirstChild("UpperTorso") or dude:FindFirstChild("Torso")
  540. local partasdeff = Instance.new("ParticleEmitter",torsy)
  541. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  542. partasdeff.LightEmission = .1
  543. partasdeff.Size = NumberSequence.new(0.2)
  544. partasdeff.Texture = "rbxassetid://771221224"
  545. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  546. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  547. partasdeff.Transparency = bbb
  548. partasdeff.Size = aaa
  549. partasdeff.ZOffset = .9
  550. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  551. partasdeff.LockedToPart = false
  552. partasdeff.EmissionDirection = "Back"
  553. partasdeff.Lifetime = NumberRange.new(1, 2)
  554. partasdeff.Rate = 1000
  555. partasdeff.Rotation = NumberRange.new(-100, 100)
  556. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  557. partasdeff.Speed = NumberRange.new(6)
  558. partasdeff.VelocitySpread = 10000
  559. partasdeff.Enabled=false
  560. partasdeff:Emit(30)
  561. coroutine.wrap(function()
  562. targetted = nil
  563. swait(30)
  564. dude:BreakJoints()
  565. swait(5)
  566. CFuncs["Sound"].Create("rbxassetid://62339698", dude, 3, .3)
  567. dude:FindFirstChildOfClass("Humanoid"):Destroy()
  568. for i,v in pairs(dude:GetChildren()) do
  569. if v:IsA("BasePart") then
  570. local bodpos = Instance.new("BodyPosition",v)
  571. bodpos.Position = v.Position + Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5))
  572. p1mit:Clone().Parent = v
  573. v.BrickColor = BrickColor.new("Really black")
  574. end
  575. end
  576. for i=0,1,.05 do
  577. for a,v in pairs(dude:GetChildren()) do
  578. if v:IsA("BasePart") then
  579. v.Transparency = i
  580. end
  581. end
  582. swait()
  583. end
  584. for a,v in pairs(dude:GetChildren()) do
  585. if v:IsA("BasePart") and v:FindFirstChild("ParticleEmitter") then
  586. v.ParticleEmitter.Enabled = false
  587. end
  588. game:service'Debris':AddItem(v,2)
  589. end
  590. end)()
  591. end
  592. end
  593.  
  594. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  595. function mdmg(Part, Magnitude)--, MinimumDamage, MaximumDamage, KnockBack, Type, HitSound, HitPitch)
  596.     --local buddy
  597.     for _, c in pairs(workspace:GetDescendants()) do
  598.         local hum = c:FindFirstChildOfClass("Humanoid")
  599.         if hum ~= nil then
  600.             local head = c:FindFirstChild("UpperTorso") or c:FindFirstChild("Torso")
  601.             if head ~= nil then
  602.                 local targ = head.Position - Part.Position
  603.                 local mag = targ.magnitude
  604.                 if mag <= Magnitude and c.Name ~= Player.Name and c:FindFirstChild("MagDmgd")==nil then
  605.                 if c.Name ~= chara then
  606.                 if c.Name ~= "CKbackup" or c.Name ~= "Nebula_Zorua" or c.Name ~= "Salvo_Starly" then
  607.             local val = Instance.new("BoolValue",c)
  608.             val.Name = "MagDmgd"
  609.             local asd = Instance.new("ParticleEmitter",head)
  610.             asd.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  611.             asd.LightEmission = .1
  612.             asd.Size = NumberSequence.new(0.2)
  613.             asd.Texture = "rbxassetid://771221224"
  614.             aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  615.             bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  616.             asd.Transparency = bbb
  617.             asd.Size = aaa
  618.             asd.ZOffset = .9
  619.             asd.Acceleration = Vector3.new(0, -5, 0)
  620.             asd.LockedToPart = false
  621.             asd.EmissionDirection = "Back"
  622.             asd.Lifetime = NumberRange.new(1, 2)
  623.             asd.Rate = 1000
  624.             asd.Rotation = NumberRange.new(-100, 100)
  625.             asd.RotSpeed = NumberRange.new(-100, 100)
  626.             asd.Speed = NumberRange.new(6)
  627.             asd.VelocitySpread = 10000
  628.             asd.Enabled=true
  629.                     --Damage(head, head, MinimumDamage, MaximumDamage, KnockBack, Type, RootPart, .1, "rbxassetid://" .. HitSound, HitPitch)
  630.                     dmg(c)
  631.                     CFuncs["Sound"].Create("rbxassetid://206082273", c.Head, 1.2, .8)
  632.                     coroutine.wrap(function()
  633.                     swait(.2)
  634.                     asd.Enabled = false
  635.                     wait(2)
  636.                     asd:Remove()
  637.                     end)()
  638.                        else
  639.         CFuncs["Sound"].Create("rbxassetid://240429289", head, 1.5, math.random(1,1.3))    
  640.         Effects.Sphere.Create(BrickColor.new("Bright red"), head.CFrame, 30, 30, 30, .5, .5, .5, 0.04)
  641.  
  642.                     end
  643.                 end
  644.             end
  645.         end
  646.     end
  647.     end
  648. end
  649. EffectModel = Create("Model"){
  650.     Parent = chara,
  651.     Name = "Effects",
  652. }
  653.  
  654. Effects = {
  655.     Block = {
  656.         Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  657.             local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  658.             prt.Anchored = true
  659.             prt.CFrame = cframe
  660.             local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  661.             game:GetService("Debris"):AddItem(prt, 10)
  662.             if Type == 1 or Type == nil then
  663.                 table.insert(Effects, {
  664.                     prt,
  665.                     "Block1",
  666.                     delay,
  667.                     x3,
  668.                     y3,
  669.                     z3,
  670.                     msh
  671.                 })
  672.             elseif Type == 2 then
  673.                 table.insert(Effects, {
  674.                     prt,
  675.                     "Block2",
  676.                     delay,
  677.                     x3,
  678.                     y3,
  679.                     z3,
  680.                     msh
  681.                 })
  682.             end
  683.         end;
  684.     };
  685.  
  686.         Cylinder = {
  687.         Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  688.             local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())     
  689.             prt.Anchored = true
  690.             prt.CFrame = cframe
  691.             local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  692.             game:GetService("Debris"):AddItem(prt, 10)
  693.             table.insert(Effects, {
  694.                 prt,
  695.                 "Cylinder",
  696.                 delay,
  697.                 x3,
  698.                 y3,
  699.                 z3,
  700.                 msh
  701.             })
  702.         end;
  703.     };
  704.     Head = {
  705.         Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  706.             local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  707.             prt.Anchored = true
  708.             prt.CFrame = cframe
  709.             local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Head", "nil", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  710.             game:GetService("Debris"):AddItem(prt, 10)
  711.             table.insert(Effects, {
  712.                 prt,
  713.                 "Cylinder",
  714.                 delay,
  715.                 x3,
  716.                 y3,
  717.                 z3,
  718.                 msh
  719.             })
  720.         end;
  721.     };
  722.    
  723.     Sphere = {
  724.         Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  725.             local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  726.             prt.Anchored = true
  727.             prt.CFrame = cframe
  728.             local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  729.             game:GetService("Debris"):AddItem(prt, 10)
  730.             table.insert(Effects, {
  731.                 prt,
  732.                 "Cylinder",
  733.                 delay,
  734.                 x3,
  735.                 y3,
  736.                 z3,
  737.                 msh
  738.             })
  739.         end;
  740.     };
  741.    
  742.     Elect = {
  743.         Create = function(cff, x, y, z)
  744.             local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, BrickColor.new("Lime green"), "Part", Vector3.new(1, 1, 1))
  745.             prt.Anchored = true
  746.             prt.CFrame = cff * CFrame.new(math.random(-x, x), math.random(-y, y), math.random(-z, z))
  747.             prt.CFrame = CFrame.new(prt.Position)
  748.             game:GetService("Debris"):AddItem(prt, 2)
  749.             local xval = math.random() / 2
  750.             local yval = math.random() / 2
  751.             local zval = math.random() / 2
  752.             local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(xval, yval, zval))
  753.             table.insert(Effects, {
  754.                 prt,
  755.                 "Elec",
  756.                 0.1,
  757.                 x,
  758.                 y,
  759.                 z,
  760.                 xval,
  761.                 yval,
  762.                 zval
  763.             })
  764.         end;
  765.  
  766.     };
  767.    
  768.     Ring = {
  769.         Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  770.             local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  771.             prt.Anchored = true
  772.             prt.CFrame = cframe
  773.             local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  774.             game:GetService("Debris"):AddItem(prt, 10)
  775.             table.insert(Effects, {
  776.                 prt,
  777.                 "Cylinder",
  778.                 delay,
  779.                 x3,
  780.                 y3,
  781.                 z3,
  782.                 msh
  783.             })
  784.         end;
  785.     };
  786.  
  787.  
  788.     Wave = {
  789.         Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  790.             local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  791.             prt.Anchored = true
  792.             prt.CFrame = cframe
  793.             local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  794.             game:GetService("Debris"):AddItem(prt, 10)
  795.             table.insert(Effects, {
  796.                 prt,
  797.                 "Cylinder",
  798.                 delay,
  799.                 x3,
  800.                 y3,
  801.                 z3,
  802.                 msh
  803.             })
  804.         end;
  805.     };
  806.  
  807.     Break = {
  808.         Create = function(brickcolor, cframe, x1, y1, z1)
  809.             local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  810.             prt.Anchored = true
  811.             prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  812.             local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  813.             local num = math.random(10, 50) / 1000
  814.             game:GetService("Debris"):AddItem(prt, 10)
  815.             table.insert(Effects, {
  816.                 prt,
  817.                 "Shatter",
  818.                 num,
  819.                 prt.CFrame,
  820.                 math.random() - math.random(),
  821.                 0,
  822.                 math.random(50, 100) / 100
  823.             })
  824.         end;
  825.     };
  826.    
  827.     Fire = {
  828.         Create = function(brickcolor, cframe, x1, y1, z1, delay)
  829.             local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 0, brickcolor, "Effect", Vector3.new())
  830.             prt.Anchored = true
  831.             prt.CFrame = cframe
  832.             msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  833.             game:GetService("Debris"):AddItem(prt, 10)
  834.             table.insert(Effects, {
  835.                 prt,
  836.                 "Fire",
  837.                 delay,
  838.                 1,
  839.                 1,
  840.                 1,
  841.                 msh
  842.             })
  843.         end;
  844.     };
  845.    
  846.     FireWave = {
  847.         Create = function(brickcolor, cframe, x1, y1, z1)
  848.             local prt = CFuncs.Part.Create(EffectModel, "Neon", 0, 1, brickcolor, "Effect", Vector3.new())
  849.             prt.Anchored = true
  850.             prt.CFrame = cframe
  851.             msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  852.             local d = Create("Decal"){
  853.                 Parent = prt,
  854.                 Texture = "rbxassetid://26356434",
  855.                 Face = "Top",
  856.             }
  857.             local d = Create("Decal"){
  858.                 Parent = prt,
  859.                 Texture = "rbxassetid://26356434",
  860.                 Face = "Bottom",
  861.             }
  862.             game:GetService("Debris"):AddItem(prt, 10)
  863.             table.insert(Effects, {
  864.                 prt,
  865.                 "FireWave",
  866.                 1,
  867.                 30,
  868.                 math.random(400, 600) / 100,
  869.                 msh
  870.             })
  871.         end;
  872.     };
  873.    
  874.     Lightning = {
  875.         Create = function(p0, p1, tym, ofs, col, th, tra, last)
  876.             local magz = (p0 - p1).magnitude
  877.             local curpos = p0
  878.             local trz = {
  879.                 -ofs,
  880.                 ofs
  881.             }
  882.             for i = 1, tym do
  883.                 local li = CFuncs.Part.Create(EffectModel, "Neon", 0, tra or 0.4, col, "Ref", Vector3.new(th, th, magz / tym))
  884.                 local ofz = Vector3.new(trz[math.random(1, 2)], trz[math.random(1, 2)], trz[math.random(1, 2)])
  885.                 local trolpos = CFrame.new(curpos, p1) * CFrame.new(0, 0, magz / tym).p + ofz
  886.                 li.Material = "Neon"
  887.                 if tym == i then
  888.                     local magz2 = (curpos - p1).magnitude
  889.                     li.Size = Vector3.new(th, th, magz2)
  890.                     li.CFrame = CFrame.new(curpos, p1) * CFrame.new(0, 0, -magz2 / 2)
  891.                     table.insert(Effects, {
  892.                         li,
  893.                         "Disappear",
  894.                         last
  895.                     })
  896.                 else
  897.                     do
  898.                         do
  899.                             li.CFrame = CFrame.new(curpos, trolpos) * CFrame.new(0, 0, magz / tym / 2)
  900.                             curpos = li.CFrame * CFrame.new(0, 0, magz / tym / 2).p
  901.                             game.Debris:AddItem(li, 10)
  902.                             table.insert(Effects, {
  903.                                 li,
  904.                                 "Disappear",
  905.                                 last
  906.                             })
  907.                         end
  908.                     end
  909.                 end
  910.             end
  911.         end
  912.     };
  913.  
  914.     EffectTemplate = {
  915.  
  916.     };
  917. }
  918.  
  919. --Chat Function--
  920. function chatfunc(text)
  921. coroutine.wrap(function()
  922. if chara:FindFirstChild("TalkingBillBoard")~= nil then
  923. chara:FindFirstChild("TalkingBillBoard"):destroy()
  924. end
  925. local naeeym2 = Instance.new("BillboardGui",chara)
  926. naeeym2.Size = UDim2.new(0,100,0,40)
  927. naeeym2.StudsOffset = Vector3.new(0,3,0)
  928. naeeym2.Adornee = chara.Head
  929. naeeym2.Name = "TalkingBillBoard"
  930. local tecks2 = Instance.new("TextLabel",naeeym2)
  931. tecks2.BackgroundTransparency = 1
  932. tecks2.BorderSizePixel = 0
  933. tecks2.Text = ""
  934. tecks2.Font = "Fantasy"
  935. tecks2.FontSize = "Size24"
  936. tecks2.TextStrokeTransparency = 0
  937. tecks2.TextColor3 = Color3.new(.6,0,0)
  938. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  939. tecks2.Size = UDim2.new(1,0,0.5,0)
  940. local shk = coroutine.wrap(function()
  941. while tecks2 ~= nil do
  942. swait(.05)
  943. tecks2.Position = UDim2.new(0,math.random(-3,3),0,math.random(-3,3))
  944. end
  945. end)
  946. shk()
  947. for i = 1,string.len(text),1 do
  948. tecks2.Text = string.sub(text,1,i)
  949. swait(0.01)
  950. end
  951. swait(30)
  952. for i = 1, 5 do
  953. swait()
  954. tecks2.Position = tecks2.Position - UDim2.new(0,0,.05,0)
  955. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.2
  956. tecks2.TextTransparency = tecks2.TextTransparency + .2
  957. end
  958. naeeym2:Destroy()
  959. end)()
  960. end
  961.  
  962. crosshair = Instance.new("BillboardGui",chara)
  963. crosshair.Size = UDim2.new(10,0,10,0)
  964. crosshair.Enabled = false
  965. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  966. imgl = Instance.new("ImageLabel",crosshair)
  967. imgl.Position = UDim2.new(0,0,0,0)
  968. imgl.Size = UDim2.new(1,0,1,0)
  969. imgl.Image = "rbxassetid://711463989"
  970. imgl.BackgroundTransparency = 1
  971. imgl.ImageColor3 = Color3.new(.8,0,0)
  972. imgl2 = Instance.new("ImageLabel",crosshair)
  973. imgl2.Position = UDim2.new(-.25,0,-.25,0)
  974. imgl2.Size = UDim2.new(1.5,0,1.5,0)
  975. imgl2.Image = "rbxassetid://233522684"
  976. imgl2.BackgroundTransparency = 1
  977. imgl2.ImageColor3 = Color3.new(.8,0,0)
  978.  
  979. function attackone()
  980.     attack = true
  981.     Humanoid.WalkSpeed = 0
  982.     local torsy = targetted:FindFirstChild("UpperTorso") or targetted:FindFirstChild("Torso")
  983.     if targetted.Name ~= "CKbackup" or targetted.Name ~= "Nebula_Zorua" or targetted.Name ~= "Salvo_Starly" then
  984.             local partasdeff = Instance.new("ParticleEmitter",torsy)
  985.             partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  986.             partasdeff.LightEmission = .1
  987.             partasdeff.Size = NumberSequence.new(0.2)
  988.             partasdeff.Texture = "rbxassetid://771221224"
  989.             aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  990.             bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  991.             partasdeff.Transparency = bbb
  992.             partasdeff.Size = aaa
  993.             partasdeff.ZOffset = .9
  994.             partasdeff.Acceleration = Vector3.new(0, -5, 0)
  995.             partasdeff.LockedToPart = false
  996.             partasdeff.EmissionDirection = "Back"
  997.             partasdeff.Lifetime = NumberRange.new(1, 2)
  998.             partasdeff.Rate = 1000
  999.             partasdeff.Rotation = NumberRange.new(-100, 100)
  1000.             partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1001.             partasdeff.Speed = NumberRange.new(6)
  1002.             partasdeff.VelocitySpread = 10000
  1003.             partasdeff.Enabled=false
  1004.     for i = 0, 1, 0.2 do
  1005.         swait()
  1006.         PlayAnimationFromTable({
  1007. CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),
  1008. CFrame.new(0, 1.49999809, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1009. CFrame.new(1.39999962, 0.500000238, 0.600002289, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  1010. CFrame.new(-1.52556908, 0.222140431, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  1011. CFrame.new(0.596984804, -1.98263633, 0.0171013549, 0.969846368, -0.171009913, -0.173648238, 0.173648059, 0.984807849, 3.13053391e-07, 0.171010062, -0.0301539823, 0.984807789),
  1012. CFrame.new(-0.592542052, -1.98263681, 0.0336810946, 0.925416648, 0.163176075, 0.342019767, -0.17364794, 0.984807849, -1.08010261e-06, -0.336823881, -0.0593900271, 0.939692795),
  1013.         }, .3, false)
  1014.         moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1015.     end
  1016. for a = 1,5 do
  1017.     Effects.Block.Create(BrickColor.new("Really red"), Partss.CFrame, 2, 2, 2, 2, 2, 2, 0.05)
  1018.     Effects.Block.Create(BrickColor.new("Persimmon"), Partss.CFrame, 2, 2, 2, 1, 1, 1, 0.05)
  1019.     CFuncs["Sound"].Create("rbxassetid://168586621", chara, 1, .8)
  1020.     partasdeff:Emit(10)
  1021.     targetted.Head.Velocity = RootPart.CFrame.lookVector*50
  1022.     for i = 0, 1, 0.25 do
  1023.         swait()
  1024.         PlayAnimationFromTable({
  1025. CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),
  1026. CFrame.new(0, 1.49999809, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1027. CFrame.new(1.39999962, 0.500000238, 0.600002289, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  1028. CFrame.new(-1.52556908, 0.222140431, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  1029. CFrame.new(0.596984804, -1.98263633, 0.0171013549, 0.969846368, -0.171009913, -0.173648238, 0.173648059, 0.984807849, 3.13053391e-07, 0.171010062, -0.0301539823, 0.984807789),
  1030. CFrame.new(-0.592542052, -1.98263681, 0.0336810946, 0.925416648, 0.163176075, 0.342019767, -0.17364794, 0.984807849, -1.08010261e-06, -0.336823881, -0.0593900271, 0.939692795),
  1031.         }, .4, false)
  1032.         moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1033.     end
  1034.     for i = 0, 1, 0.25 do
  1035.         swait()
  1036.         PlayAnimationFromTable({
  1037. CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),
  1038. CFrame.new(0, 1.49999809, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1039. CFrame.new(1.47320819, 0.773207605, 0.600002289, 0, -0.866025388, 0.500000238, 0, -0.500000238, -0.866025388, 1, 0, 0),
  1040. CFrame.new(-1.52556896, 0.22214067, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  1041. CFrame.new(0.596984804, -1.98263633, 0.0171013549, 0.969846368, -0.171009913, -0.173648238, 0.173648059, 0.984807849, 3.13053391e-07, 0.171010062, -0.0301539823, 0.984807789),
  1042. CFrame.new(-0.592541993, -1.98263633, 0.0336810648, 0.925416648, 0.163176075, 0.342019767, -0.17364794, 0.984807849, -1.08010261e-06, -0.336823881, -0.0593900271, 0.939692795),
  1043.         }, .4, false)
  1044.         moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1045.     end
  1046. end
  1047.     dmg(targetted)
  1048.     game:service'Debris':AddItem(partasdeff,3)
  1049.     else
  1050.     sel = math.random(1,3)
  1051.     if sel == 1 then   
  1052.     chatfunc("...")
  1053.     elseif sel == 2 then   
  1054.     chatfunc("No...")
  1055.     elseif sel == 3 then
  1056.     chatfunc("I can't do that...")
  1057.     end
  1058.     for i = 0, 5, 0.1 do
  1059.         swait()
  1060.         PlayAnimationFromTable({
  1061.          CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1062.          CFrame.new(-0.055980958, 1.49253583, -0.318915963, 0.999889553, 0.0107171191, -0.0102898544, -0.00218299939, 0.791040659, 0.611759722, 0.0146959936, -0.61166966, 0.790976703) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  1063.          CFrame.new(1.54004693, 0.0494250022, 1.90734852e-06, 0.997847795, -0.0655719861, 0, 0.0655719936, 0.997847855, 7.53468894e-22, -4.94064563e-23, -7.51847299e-22, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1064.          CFrame.new(-1.51232088, 0.0410207808, -3.73942044e-06, 0.998558879, 0.053665854, -2.33806347e-07, -0.0536658242, 0.998558939, -1.04548817e-05, -3.27600219e-07, 1.04523697e-05, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1065.          CFrame.new(0.540300906, -1.99793804, -2.11055158e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1066.          CFrame.new(-0.539562821, -1.99794102, -5.75710146e-09, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1067.         }, .3, false)
  1068.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111967381, -1.6377008, -0.318754196, -0.0172117949, 0, -0.999851942, 0.999851942, 0, -0.0172117949, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1069.     end
  1070.     end
  1071.     Humanoid.WalkSpeed = 8
  1072.     attack = false
  1073. end
  1074. function attack2one()
  1075.     attack = true
  1076.     Humanoid.WalkSpeed = 0
  1077.     local totrans = {}
  1078.     for i, v in pairs(chara:GetDescendants()) do
  1079.     if v:IsA("BasePart") and v.Transparency~=1 and v.Parent.Name == "TheKnife" then
  1080.     table.insert(totrans,v)
  1081.     end
  1082.     end
  1083.     local torsy = targetted:FindFirstChild("UpperTorso") or targetted:FindFirstChild("Torso")
  1084.     if targetted.Name ~= "CKbackup" or targetted.Name ~= "Nebula_Zorua" or targetted.Name ~= "Salvo_Starly" then
  1085.             local partasdeff = Instance.new("ParticleEmitter",targetted.Head)
  1086.             partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  1087.             partasdeff.LightEmission = .1
  1088.             partasdeff.Size = NumberSequence.new(0.2)
  1089.             partasdeff.Texture = "rbxassetid://771221224"
  1090.             aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  1091.             bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  1092.             partasdeff.Transparency = bbb
  1093.             partasdeff.Size = aaa
  1094.             partasdeff.ZOffset = .9
  1095.             partasdeff.Acceleration = Vector3.new(0, -5, 0)
  1096.             partasdeff.LockedToPart = false
  1097.             partasdeff.EmissionDirection = "Back"
  1098.             partasdeff.Lifetime = NumberRange.new(1, 2)
  1099.             partasdeff.Rate = 1000
  1100.             partasdeff.Rotation = NumberRange.new(-100, 100)
  1101.             partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1102.             partasdeff.Speed = NumberRange.new(6)
  1103.             partasdeff.VelocitySpread = 10000
  1104.             partasdeff.Enabled=false
  1105.     for i = 0, 1.5, 0.1 do
  1106.         swait()
  1107.         PlayAnimationFromTable({
  1108. CFrame.new(-0.013760807, 0, 0.00454730028, 0.500000238, 0, 0.866025388, 0, 1, 0, -0.866025388, 0, 0.500000238),
  1109. CFrame.new(0.010819382, 1.49999833, 0.00964166038, 0.500000238, 0, -0.866025388, 0, 1, 0, 0.866025388, 0, 0.500000238),
  1110. CFrame.new(1.54018927, 0.669616818, -3.72918021e-06, 0.499999791, -0.866025686, 1.75833702e-06, 0.866025567, 0.499999732, -1.27693363e-06, 2.38418579e-07, 2.14576721e-06, 1.00000012),
  1111. CFrame.new(-1.52901936, 0.888710737, 2.4381518e-06, 0.984807968, 0.173648, 4.17232513e-07, 0.173648, -0.984807789, 3.45977355e-06, 1.01327896e-06, -3.33786011e-06, -1.00000012),
  1112. CFrame.new(0.500000119, -2.00000095, 0, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024),
  1113. CFrame.new(-0.68507731, -1.96527267, 0.0673612207, 0.925416648, 0.163175583, 0.342020541, -0.173648059, 0.984807849, 6.55481983e-07, -0.336824358, -0.059391804, 0.939692676),
  1114.         }, .2, false)
  1115.         moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1116.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,3,0), 0.3)
  1117.     end
  1118.     for i = 0, 1, 0.25 do
  1119.         swait()
  1120.         PlayAnimationFromTable({
  1121. CFrame.new(0.033490371, -4.76837158e-07, -0.0274436511, -0.500000238, 0, -0.866025388, 0, 1, 0, 0.866025388, 0, -0.500000238),
  1122. CFrame.new(-0.0390504077, 1.52660453, -0.19198662, 0.934456527, -0.171009883, 0.312324822, 0.0593909845, 0.939692736, 0.336823851, -0.351089597, -0.296197981, 0.888258457),
  1123. CFrame.new(1.54018593, 0.669616103, -3.75895024e-06, 0.499999344, -0.866025925, 1.75833702e-06, 0.866025805, 0.499999285, -1.27693352e-06, 2.38418579e-07, 2.17556953e-06, 1.00000012),
  1124. CFrame.new(-0.661082923, 0.549146414, -0.783065915, 0.264424562, -0.610265017, -0.746764064, -0.609933972, 0.493972659, -0.619654536, 0.74703449, 0.619328618, -0.241602808),
  1125. CFrame.new(0.500003934, -2.00000095, 0, 1.00000024, 0, 0, 0, 1, 0, 0, 0, 1.00000024),
  1126. CFrame.new(-0.685080409, -1.96527231, 0.0673582703, 0.925416648, 0.163175583, 0.342020541, -0.173648059, 0.984807849, 6.55481983e-07, -0.336824358, -0.059391804, 0.939692676),
  1127.         }, .4, false)
  1128.         moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1129.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,3,0), 0.3)
  1130.     end
  1131.     for a=1,#totrans do
  1132.     totrans[a].Transparency = 1
  1133.     end
  1134.     CFuncs["Sound"].Create("rbxassetid://743521497", chara, 1, 1)
  1135.     partasdeff:Emit(30)
  1136.     game:service'Debris':AddItem(partasdeff,3)
  1137. KnifuHit = New("Model",workspace,"KnifuHit",{})
  1138. HWeldPart = New("Part",KnifuHit,"HWeldPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000024, 0.400000006),CFrame = CFrame.new(68.629982, 1.83662391, 15.8509817, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1139. Mesh = New("CylinderMesh",HWeldPart,"Mesh",{})
  1140. Weld = New("ManualWeld",HWeldPart,"Weld",{Part0 = HWeldPart,Part1 = targetted.Head,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),C1 = CFrame.new(0.0299835205, 1.33661091, -2.04901791, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1141. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 1.52322841, 16.5938034, 1, 0, 0, 0, -0.5, -0.866025448, 0, 0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1142. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, -0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  1143. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.799999952, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1144. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(68.629982, 1.0232265, 17.4598274, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1145. Mesh = New("BlockMesh",HPart,"Mesh",{Scale = Vector3.new(0.400000006, 1, 1),})
  1146. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 1.80000067, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1147. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 1.62322855, 16.4205971, 1, 0, 0, 0, -0.5, -0.866025448, 0, 0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1148. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, -0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  1149. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.599999905, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1150. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 1.62322855, 16.4205971, 1, 0, 0, 0, -0.5, -0.866025448, 0, 0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1151. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, 0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  1152. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.599999905, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1153. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Crimson"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 1.19999993, 0.600000024),CFrame = CFrame.new(68.629982, 0.473228455, 18.4124565, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.592157, 0, 0),})
  1154. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(0.409999996, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  1155. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 2.89999986, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1156. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 1.20000005, 0.200000003),CFrame = CFrame.new(68.629982, 1.20002079, 16.7536106, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1157. Mesh = New("BlockMesh",HPart,"Mesh",{Scale = Vector3.new(0.400000006, 1, 1),})
  1158. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 1.10000038, -0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1159. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.600000083),CFrame = CFrame.new(68.629982, 1.37681365, 16.04739, 1, 0, 0, 0, 0.5, 0.866025448, 0, -0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1160. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(1, 1, 1.20000005),MeshType = Enum.MeshType.Wedge,})
  1161. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, -1, 0, 0, 0, 1),C1 = CFrame.new(0, 0.400000095, -0.300003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1162. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000036),CFrame = CFrame.new(68.629982, 1.80982792, 16.2973919, -1, 0, 0, 0, 0.5, -0.866025448, 0, -0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1163. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(1, 1, 1.20000005),MeshType = Enum.MeshType.Wedge,})
  1164. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.400000095, 0.199998856, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1165. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 1.52322841, 16.5938034, 1, 0, 0, 0, -0.5, -0.866025448, 0, 0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1166. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, 0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  1167. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 0.799999952, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1168. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 1.4232285, 16.7670078, 1, 0, 0, 0, -0.5, -0.866025448, 0, 0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1169. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, 0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  1170. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 1, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1171. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 1.4232285, 16.7670078, 1, 0, 0, 0, -0.5, -0.866025448, 0, 0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1172. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, -0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  1173. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 1, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1174. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 1.32322836, 16.9402142, 1, 0, 0, 0, -0.5, -0.866025448, 0, 0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1175. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, -0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  1176. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 1.20000005, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1177. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 1.32322836, 16.9402142, 1, 0, 0, 0, -0.5, -0.866025448, 0, 0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1178. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, 0.0500000007, -0.0500000007),Scale = Vector3.new(0.400000006, 0.5, 0.5),MeshType = Enum.MeshType.Wedge,})
  1179. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1),C1 = CFrame.new(0, 1.20000005, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1180. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 1, 0.200000003),CFrame = CFrame.new(68.629982, 1.42322659, 16.7670078, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1181. Mesh = New("BlockMesh",HPart,"Mesh",{Offset = Vector3.new(0, 0, -0.0500000007),Scale = Vector3.new(0.400000006, 1, 0.5),})
  1182. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 1.00000048, 0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1183. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(68.629982, 1.73662376, 16.0241871, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1184. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(1.20000005, 0.949999988, 1.20000005),})
  1185. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 0.200000286, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1186. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Crimson"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.600000083, 0.200000003),CFrame = CFrame.new(68.629982, 0.750020742, 17.5330334, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.592157, 0, 0),})
  1187. Mesh = New("BlockMesh",HPart,"Mesh",{Scale = Vector3.new(0.409999996, 1.00999999, 1.00999999),})
  1188. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 2.00000048, -0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1189. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(68.629982, 1.83662379, 15.8509817, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1190. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(1.20000005, 0.949999988, 1.20000005),})
  1191. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 2.38418579e-07, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1192. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(68.629982, 1.63662374, 16.1973915, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1193. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(1.5, 1.20000005, 1.5),})
  1194. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 0.400000334, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1195. HPart = New("Part",KnifuHit,"HPart",{Transparency = 1,Transparency = 1,Size = Vector3.new(0.200000003, 3.00000024, 0.600000024),CFrame = CFrame.new(68.629982, 0.923228443, 17.6330338, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  1196. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 2, 0.100002289, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1197. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(68.629982, 1.93662381, 15.6777763, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1198. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(1.20000005, 0.949999988, 1.20000005),})
  1199. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, -0.199999809, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1200. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Crimson"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.200000033),CFrame = CFrame.new(68.629982, 0.95002085, 17.1866226, -1, 0, 0, 0, 0.5, -0.866025448, 0, -0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.592157, 0, 0),})
  1201. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(0.409999996, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  1202. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 1.60000038, -0.100000381, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1203. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Crimson"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.200000003, 0.400000036),CFrame = CFrame.new(68.629982, 0.909831166, 17.8562393, -1, 0, 0, 0, 0.5, -0.866025448, 0, -0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.592157, 0, 0),})
  1204. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(0.409999996, 1.00999999, 1.00999999),MeshType = Enum.MeshType.Wedge,})
  1205. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 2.20000029, 0.20000267, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1206. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.200000003),CFrame = CFrame.new(68.629982, 0.996432185, 17.9062386, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1207. Mesh = New("BlockMesh",HPart,"Mesh",{Scale = Vector3.new(0.400000006, 1, 1),})
  1208. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 2.20000076, 0.300001144, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1209. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Size = Vector3.new(0.200000003, 0.400000006, 0.200000077),CFrame = CFrame.new(68.629982, 1.05360782, 16.2071972, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1210. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(1, 1, 1.20000005),MeshType = Enum.MeshType.Wedge,})
  1211. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 0.700000167, -0.500003815, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1212. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(68.629982, 1.23662364, 16.890213, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.666667, 0, 0.666667),})
  1213. Mesh = New("SpecialMesh",HPart,"Mesh",{Offset = Vector3.new(0, 0, -0.0500000007),Scale = Vector3.new(0.200000003, 0.5, 0.200000003),MeshId = "http://www.roblox.com/Asset/?id=9756362",MeshType = Enum.MeshType.FileMesh,})
  1214. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, 1.20000052, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1215. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.200000003, 0.400000006),CFrame = CFrame.new(68.629982, 2.03662372, 15.5045719, -1, 0, 0, 0, -0.5, 0.866025448, 0, 0.866025448, 0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.666667, 0, 0.666667),})
  1216. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(0.200000003, 0.5, 0.200000003),MeshId = "http://www.roblox.com/Asset/?id=9756362",MeshType = Enum.MeshType.FileMesh,})
  1217. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C1 = CFrame.new(0, -0.399999619, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1218. HPart = New("Part",KnifuHit,"HPart",{BrickColor = BrickColor.new("Really black"),Material = Enum.Material.SmoothPlastic,Reflectance = 0.20000000298023,Size = Vector3.new(0.200000003, 0.600000024, 0.200000003),CFrame = CFrame.new(68.629982, 1.19643402, 17.5598297, -1, 0, 0, 0, 0.5, -0.866025448, 0, -0.866025448, -0.5),BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  1219. Mesh = New("SpecialMesh",HPart,"Mesh",{Scale = Vector3.new(0.400000006, 1, 1),MeshType = Enum.MeshType.Wedge,})
  1220. Weld = New("ManualWeld",HPart,"Weld",{Part0 = HPart,Part1 = HWeldPart,C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0, -1),C1 = CFrame.new(0, 1.80000019, 0.300003052, 1, 0, 0, 0, 1, 0, 0, 0, 1),})
  1221. game:service'Debris':AddItem(KnifuHit,10)
  1222. dmg(targetted)
  1223.     swait(30)
  1224.     for i = 0,1,.05 do
  1225.     swait()
  1226.     for a=1,#totrans do
  1227.     totrans[a].Transparency = 1-i
  1228.     end
  1229.     end
  1230.     for a=1,#totrans do
  1231.     totrans[a].Transparency = 0
  1232.     end
  1233.     else
  1234.     sel = math.random(1,3)
  1235.     if sel == 1 then   
  1236.     chatfunc("...")
  1237.     elseif sel == 2 then   
  1238.     chatfunc("No...")
  1239.     elseif sel == 3 then
  1240.     chatfunc("I can't do that...")
  1241.     end
  1242.     for i = 0, 5, 0.1 do
  1243.         swait()
  1244.         PlayAnimationFromTable({
  1245.          CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1246.          CFrame.new(-0.055980958, 1.49253583, -0.318915963, 0.999889553, 0.0107171191, -0.0102898544, -0.00218299939, 0.791040659, 0.611759722, 0.0146959936, -0.61166966, 0.790976703) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  1247.          CFrame.new(1.54004693, 0.0494250022, 1.90734852e-06, 0.997847795, -0.0655719861, 0, 0.0655719936, 0.997847855, 7.53468894e-22, -4.94064563e-23, -7.51847299e-22, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1248.          CFrame.new(-1.51232088, 0.0410207808, -3.73942044e-06, 0.998558879, 0.053665854, -2.33806347e-07, -0.0536658242, 0.998558939, -1.04548817e-05, -3.27600219e-07, 1.04523697e-05, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1249.          CFrame.new(0.540300906, -1.99793804, -2.11055158e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1250.          CFrame.new(-0.539562821, -1.99794102, -5.75710146e-09, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1251.         }, .3, false)
  1252.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111967381, -1.6377008, -0.318754196, -0.0172117949, 0, -0.999851942, 0.999851942, 0, -0.0172117949, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1253.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,1,0), 0.3)
  1254.     end
  1255.     end
  1256.     Humanoid.WalkSpeed = 8
  1257.     attack = false
  1258. end
  1259. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  1260. function attacktwo()
  1261.     attack = true
  1262.     Humanoid.WalkSpeed = 8
  1263.     for i = 0, 1, 0.1 do
  1264.         swait()
  1265.         PlayAnimationFromTable({
  1266. CFrame.new(-0.224620387, 0.00182679901, 0.355692446, 0.422617137, -0.0789889544, 0.902859628, 0, 0.99619478, 0.0871546194, -0.906308293, -0.0368330367, 0.421009034),
  1267. CFrame.new(-0.0279945955, 1.50454211, 0.0181391276, 0.342018783, 0, -0.939693093, -0.0818985924, 0.99619478, -0.0298085138, 0.936117411, 0.0871546194, 0.340717345),
  1268. CFrame.new(1.61931372, 0.398556918, -0.0915643871, 0.834718168, -0.50676024, 0.21549882, 0.395640552, 0.824083865, 0.405406326, -0.383032948, -0.253139973, 0.88837254),
  1269. CFrame.new(-1.64381778, 0.290096372, -0.0866609737, 0.940106511, 0.338986784, 0.0358846784, -0.330018938, 0.931456149, -0.153222129, -0.0853652954, 0.132202506, 0.987540126),
  1270. CFrame.new(0.54622674, -2.08882928, -0.297503173, 0.965925395, -0.0449437164, -0.254888713, -0.0225574225, 0.96644187, -0.255893201, 0.257835865, 0.252923369, 0.932496965),
  1271. CFrame.new(-0.444928914, -2.02823257, 0.194471419, 0.984807789, -0.0449433886, 0.167731091, 0.0151342247, 0.984464884, 0.174928144, -0.172987282, -0.169732109, 0.970188916),
  1272.         }, .3, false)
  1273.         moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1274.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  1275.     end
  1276.     tr1.Enabled = true
  1277.     CFuncs["Sound"].Create("rbxasset://sounds/swordlunge.wav", chara, 3, .7)
  1278.     for i = 0, 1, 0.1 do
  1279.         swait()
  1280.         PlayAnimationFromTable({
  1281. CFrame.new(-0.350145102, 0.00182692707, -0.224671245, 0.342019022, 0.0818999559, -0.936117291, 0, 0.996194661, 0.0871560797, 0.939693093, -0.0298090316, 0.340717524),
  1282. CFrame.new(-0.0356696025, 1.4968617, 0.105928369, 0.422617376, 0, 0.906308234, 0.0789902657, 0.996194661, -0.0368336663, -0.902859449, 0.0871560797, 0.421009183),
  1283. CFrame.new(1.61931276, 0.398557454, -0.0915763676, 0.834717989, -0.506760418, 0.215499386, 0.395641148, 0.824084282, 0.405404925, -0.383032799, -0.253138334, 0.888373256),
  1284. CFrame.new(-0.841956139, 1.08718979, -0.194648504, 0.451776862, -0.675602078, -0.582631707, -0.841145873, -0.540190697, -0.02584197, -0.297273308, 0.501753032, -0.812325478),
  1285. CFrame.new(0.384299219, -2.04907751, 0.312563866, 0.965925992, 0.109381422, -0.234569386, -0.0225576125, 0.93843776, 0.344711155, 0.257833749, -0.327674121, 0.908928871),
  1286. CFrame.new(-0.55455792, -1.93629444, -0.421594352, 0.984807789, 0.0733868033, 0.157378852, 0.0151345003, 0.866585255, -0.498799652, -0.172987461, 0.493603587, 0.852309287),
  1287.         }, .3, false)
  1288.         moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1289.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  1290.         mdmg(Hitbox, 3)
  1291.     end
  1292.     swait(5)
  1293.     Humanoid.WalkSpeed = 8
  1294.     tr1.Enabled = false
  1295.     attack = false
  1296. end
  1297. function attack2two()
  1298.     attack = true
  1299.     Humanoid.WalkSpeed = 8
  1300.     for i = 0, 1, 0.1 do
  1301.         swait()
  1302.         PlayAnimationFromTable({
  1303. CFrame.new(-0.118413232, -0.0999996662, -0.0162695143, 0.342019916, 0, 0.939692736, 0, 1, 0, -0.939692736, 0, 0.342019886),
  1304. CFrame.new(-0.0974596441, 1.42617989, -0.153679788, 0.698022485, 0.0783720315, -0.71177417, 0.241093084, 0.910238683, 0.33665964, 0.67426914, -0.406599849, 0.616472006),
  1305. CFrame.new(1.56614149, 0.675835967, -0.176545516, 0.635042489, -0.737752557, 0.229002833, 0.764718115, 0.558491647, -0.321392745, 0.109212175, 0.379220605, 0.91883868),
  1306. CFrame.new(-0.894028425, 0.449107349, -0.694228411, 0.777676225, -0.60256654, -0.179258019, -0.0868209973, 0.179467112, -0.979925394, 0.622641146, 0.777628005, 0.0872518644),
  1307. CFrame.new(0.732766688, -1.80342793, 0.0847177207, 0.88302201, -0.321393669, -0.34202078, 0.342020035, 0.939692736, 3.31529257e-08, 0.321394414, -0.116978005, 0.939692497),
  1308. CFrame.new(-0.534722447, -1.9000001, -0.196958184, 0.984807849, 0, 0.173648164, 0, 1, 0, -0.173648134, 0, 0.984807849),
  1309.         }, .3, false)
  1310.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,-.5,0)*CFrame.Angles(math.rad(180),0,0), 0.3)
  1311.         moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1312.     end
  1313.     tr1.Enabled = true
  1314.     CFuncs["Sound"].Create("rbxasset://sounds/swordlunge.wav", chara, 3, .7)
  1315.     for i = 0, 1, 0.1 do
  1316.         swait()
  1317.         PlayAnimationFromTable({
  1318. CFrame.new(-0.08830598, -0.0999999046, -0.0618330762, 0.342019022, 0, -0.939693093, 0, 1, 0, 0.939693093, 0, 0.342018992),
  1319. CFrame.new(6.13927841e-06, 1.43159294, -0.187939167, 0.49999994, 3.87430191e-07, 0.866025567, -0.296198189, 0.939692616, 0.171009645, -0.813797832, -0.342019975, 0.469846368),
  1320. CFrame.new(1.52318263, 0.334726363, -0.285165101, 0.918839276, -0.321389288, 0.229005635, 0.38301909, 0.866026044, -0.321395814, -0.0950317085, 0.383024603, 0.918836951),
  1321. CFrame.new(-1.56829596, 0.236604273, 0.118294179, 0.433012068, 0.866026044, 0.2499993, 0.499999821, -1.78813863e-07, -0.866025567, -0.750000656, 0.499999046, -0.433012933),
  1322. CFrame.new(0.732768059, -1.80342686, 0.0847166926, 0.883022785, -0.321393728, -0.342019022, 0.342019916, 0.939692736, 0, 0.321392775, -0.116977297, 0.939693093),
  1323. CFrame.new(-0.534724653, -1.90000021, -0.196965426, 0.984807789, 0, 0.173648238, 0, 1, 0, -0.173648268, 0, 0.98480773),
  1324.         }, .3, false)
  1325.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,-.5,0)*CFrame.Angles(math.rad(180),0,0), 0.3)
  1326.         moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1327.         mdmg(Hitbox, 3)
  1328.     end
  1329.     swait(5)
  1330.     Humanoid.WalkSpeed = 8
  1331.     tr1.Enabled = false
  1332.     attack = false
  1333. end
  1334. function attack3two()
  1335.     attack = true
  1336.     Humanoid.WalkSpeed = 8
  1337.     for i = 0, 1, 0.2 do
  1338.         swait()
  1339.         PlayAnimationFromTable({
  1340. CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),
  1341. CFrame.new(0, 1.49999809, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1342. CFrame.new(1.39999962, 0.500000238, 0.600002289, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  1343. CFrame.new(-1.52556908, 0.222140431, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  1344. CFrame.new(0.596984804, -1.98263633, 0.0171013549, 0.969846368, -0.171009913, -0.173648238, 0.173648059, 0.984807849, 3.13053391e-07, 0.171010062, -0.0301539823, 0.984807789),
  1345. CFrame.new(-0.592542052, -1.98263681, 0.0336810946, 0.925416648, 0.163176075, 0.342019767, -0.17364794, 0.984807849, -1.08010261e-06, -0.336823881, -0.0593900271, 0.939692795),
  1346.         }, .3, false)
  1347.         moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1348.     end
  1349. for a = 1,3 do
  1350.     Effects.Block.Create(BrickColor.new("Really red"), Partss.CFrame, 2, 2, 2, 2, 2, 2, 0.05)
  1351.     Effects.Block.Create(BrickColor.new("Persimmon"), Partss.CFrame, 2, 2, 2, 1, 1, 1, 0.05)
  1352.     CFuncs["Sound"].Create("rbxassetid://168586621", chara, 1, .8)
  1353.     for i = 0, 1, 0.25 do
  1354.         swait()
  1355.         PlayAnimationFromTable({
  1356. CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),
  1357. CFrame.new(0, 1.49999809, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1358. CFrame.new(1.39999962, 0.500000238, 0.600002289, 0, -1, 0, 0, 0, -1, 1, 0, 0),
  1359. CFrame.new(-1.52556908, 0.222140431, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  1360. CFrame.new(0.596984804, -1.98263633, 0.0171013549, 0.969846368, -0.171009913, -0.173648238, 0.173648059, 0.984807849, 3.13053391e-07, 0.171010062, -0.0301539823, 0.984807789),
  1361. CFrame.new(-0.592542052, -1.98263681, 0.0336810946, 0.925416648, 0.163176075, 0.342019767, -0.17364794, 0.984807849, -1.08010261e-06, -0.336823881, -0.0593900271, 0.939692795),
  1362.         }, .4, false)
  1363.         moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1364.     end
  1365.     for i = 0, 1, 0.25 do
  1366.         swait()
  1367.         PlayAnimationFromTable({
  1368. CFrame.new(0, 0, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0),
  1369. CFrame.new(0, 1.49999809, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1370. CFrame.new(1.47320819, 0.773207605, 0.600002289, 0, -0.866025388, 0.500000238, 0, -0.500000238, -0.866025388, 1, 0, 0),
  1371. CFrame.new(-1.52556896, 0.22214067, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1),
  1372. CFrame.new(0.596984804, -1.98263633, 0.0171013549, 0.969846368, -0.171009913, -0.173648238, 0.173648059, 0.984807849, 3.13053391e-07, 0.171010062, -0.0301539823, 0.984807789),
  1373. CFrame.new(-0.592541993, -1.98263633, 0.0336810648, 0.925416648, 0.163176075, 0.342019767, -0.17364794, 0.984807849, -1.08010261e-06, -0.336823881, -0.0593900271, 0.939692795),
  1374.         }, .4, false)
  1375.         moter.C0 = clerp(moter.C0, CFrame.new(0.011209704, -1.63770795, -0.318749219, -0.0172089972, -4.19956632e-06, -0.999852002, 0.999852061, 8.99471343e-06, -0.0172089972, 9.06549394e-06, -1.00000012, 4.04558159e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1376.     end
  1377. local targ = Mouse.Target
  1378. if targ ~= nil and targ.Parent:FindFirstChildOfClass("Humanoid") then
  1379. mdmg(targ,3)
  1380. end
  1381. end
  1382.     Humanoid.WalkSpeed = 8
  1383.     attack = false
  1384. end
  1385. function jattacktwo()
  1386.     attack = true
  1387.     Humanoid.WalkSpeed = 32
  1388. --  for i = 0, 1, 0.5 do
  1389. --      swait()
  1390. --      PlayAnimationFromTable({
  1391. --CFrame.new(-2.14576721e-06, -1.66893005e-06, 0, 0, 1, 0, -1, 0, 0, 0, 0, 1),
  1392. --CFrame.new(0, 1.50000107, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1393. --CFrame.new(1.4999969, 1.00000238, 0, 0, -1, 0, 1, 0, 0, 0, 0, 1),
  1394. --CFrame.new(-1.49999905, 1.00000238, 0, 0, 1, 0, -1, 0, 0, 0, 0, 1),
  1395. --CFrame.new(0.499999046, -1.99999499, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1396. --CFrame.new(-0.500001907, -1.99999404, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1397. --      }, .6, false)
  1398. --      KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,-.5,0)*CFrame.Angles(math.rad(180),0,0), 0.3)
  1399. --      moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1400. --  end
  1401.     RootPart.Velocity = Vector3.new(RootPart.Velocity.X,30,RootPart.Velocity.Z)
  1402.     tr1.Enabled = true
  1403.     CFuncs["Sound"].Create("rbxasset://sounds/swordlunge.wav", chara, 3, .7)
  1404.     for i = 0, 1.5, 0.1 do
  1405.         swait()
  1406.         PlayAnimationFromTable({
  1407. CFrame.new(-2.14576721e-06, -1.66893005e-06, 0, 0, 1, 0, -1, 0, 0, 0, 0, 1)*CFrame.Angles(0,math.rad(360)*i,0),
  1408. CFrame.new(0, 1.50000107, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1409. CFrame.new(1.4999969, 1.00000238, 0, 0, -1, 0, 1, 0, 0, 0, 0, 1),
  1410. CFrame.new(-1.49999905, 1.00000238, 0, 0, 1, 0, -1, 0, 0, 0, 0, 1),
  1411. CFrame.new(0.499999046, -1.99999499, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1412. CFrame.new(-0.500001907, -1.99999404, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1413.         }, .3, false)
  1414.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,-.5,0)*CFrame.Angles(math.rad(180),0,0), 0.3)
  1415.         moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1416.         mdmg(Hitbox, 4)
  1417.     end
  1418.     Humanoid.WalkSpeed = 8
  1419.     tr1.Enabled = false
  1420.     attack = false
  1421. end
  1422.  
  1423. local Grabbed = false
  1424.  
  1425. function hedshoot()
  1426.     attack = true
  1427.     --local GGyro = Instance.new("BodyPosition")
  1428.     local grab = nil
  1429.     local torsy
  1430.     local partasdeff
  1431.     Humanoid.WalkSpeed = 0
  1432. --    Effects.Wave.Create(BrickColor.new("White"), RootPart.CFrame * CFrame.Angles(0,math.rad(90),math.rad(90)), .5, .5, .5, 1, .2, 1, 0.07)
  1433. --  CFuncs["Sound"].Create("rbxassetid://200632211", RootPart, 1.5, .5)
  1434. --      for i = 0, 1, 0.1 do
  1435. --      swait()
  1436. --      if Grabbed == true then
  1437. --          grab:FindFirstChildOfClass("Humanoid").PlatformStand = true
  1438. --          --GGyro.position = Partss.Position
  1439. --          --GGyro.Parent = grab.Head
  1440. --          torsy.CFrame = Hitbox.CFrame * CFrame.Angles(math.rad(90),0,0)
  1441. --      end
  1442. --      PlayAnimationFromTable({
  1443. --CFrame.new(0, 0.014960058, -0.00263785874, 0, 0, -1, 0.173647985, 0.984807849, 0, 0.984807849, -0.173647985, 0),
  1444. --CFrame.new(0.0756459087, 1.47367561, 0, 0, 0.173647985, 0.984807849, 0, 0.984807849, -0.173647985, -1, 0, 0),
  1445. --CFrame.new(1.61953926, 0.256342351, 0, 0.939692676, -0.342020601, 0, 0.342020601, 0.939692676, 0, 0, 0, 1),
  1446. --CFrame.new(-1.41317761, 0.492402643, 0.500001907, 0, 0.984807849, -0.173647985, 0, -0.173647985, -0.984807849, -1, 0, 0),
  1447. --CFrame.new(0.696965218, -2.03472972, 1.90734863e-06, 0.984807849, -0.173648134, 0, 0.173648164, 0.984807849, 0, 0, 0, 1),
  1448. --CFrame.new(-0.303041309, -2.03472829, -1.90734863e-06, 0.965925813, -0.258818924, 0, 0.258818924, 0.965925813, 0, 0, 0, 1),
  1449. --      }, .3, false)
  1450. --      RootPart.Velocity = RootPart.CFrame.lookVector * 90
  1451. --      moter.C0 = clerp(moter.C0, CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1452. --      KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,-.5,0)*CFrame.Angles(math.rad(180),0,0), 0.3)
  1453.         PlayAnimationFromTable({
  1454. CFrame.new(0, 0.014960058, -0.00263785874, 0, 0, -1, 0.173647985, 0.984807849, 0, 0.984807849, -0.173647985, 0),
  1455. CFrame.new(0.0756459087, 1.47367561, 0, 0, 0.173647985, 0.984807849, 0, 0.984807849, -0.173647985, -1, 0, 0),
  1456. CFrame.new(1.61953926, 0.256342351, 0, 0.939692676, -0.342020601, 0, 0.342020601, 0.939692676, 0, 0, 0, 1),
  1457. CFrame.new(-1.41317761, 0.492402643, 0.500001907, 0, 0.984807849, -0.173647985, 0, -0.173647985, -0.984807849, -1, 0, 0),
  1458. CFrame.new(0.696965218, -2.03472972, 1.90734863e-06, 0.984807849, -0.173648134, 0, 0.173648164, 0.984807849, 0, 0, 0, 1),
  1459. CFrame.new(-0.303041309, -2.03472829, -1.90734863e-06, 0.965925813, -0.258818924, 0, 0.258818924, 0.965925813, 0, 0, 0, 1),
  1460.         }, 1, false)
  1461.         moter.C0 = CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0)
  1462.         KWeld.C0 = CFrame.new(0,-.5,0)*CFrame.Angles(math.rad(180),0,0)
  1463.     CFuncs["Sound"].Create("rbxasset://sounds/swordlunge.wav", chara, 3, .7)       
  1464.     local prevpos = RootPart.Position
  1465.     local rpos = RootPart.Position + RootPart.CFrame.lookVector*20
  1466.     local par,pos = rayCast(RootPart.Position, RootPart.CFrame.lookVector, 20, chara)
  1467.     local dir = (rpos-prevpos).unit
  1468.     RootPart.CFrame = CFrame.new(rpos,rpos+dir)
  1469.         local blast = Instance.new("Part",EffectModel)
  1470.         blast.Size = Vector3.new(1,1,(prevpos-rpos).magnitude)
  1471.         blast.BrickColor = BrickColor.new("Really red")
  1472.         blast.Material = "Neon"
  1473.         blast.Anchored = true
  1474.         blast.CanCollide = false
  1475.         blast.CFrame = CFrame.new((prevpos + rpos)/2,rpos)
  1476.         local m = Instance.new("SpecialMesh", blast)
  1477.         m.MeshType = "Sphere"
  1478.     coroutine.wrap(function()
  1479.     swait(10)
  1480.     for i=0,1,.05 do
  1481.     swait()
  1482.     blast.Transparency = i
  1483.     end
  1484.     blast:Destroy()
  1485.     end)()
  1486.     if grab == nil then
  1487.     for i, v in pairs(FindNearestTorso(pos, 5)) do
  1488.         if v:FindFirstChild('Head') then
  1489.             Grabbed = true
  1490.             torsy = v:FindFirstChild("UpperTorso") or v:FindFirstChild("Torso")
  1491.             grab = v
  1492.         end
  1493.     end
  1494.     end
  1495.     if annoyingeffects == true then
  1496. mus.Pitch = 0
  1497. local colll = Instance.new("ColorCorrectionEffect",game:service'Lighting')
  1498. colll.Brightness = -1
  1499. swait(30)
  1500. mus.Pitch = muspi
  1501. colll:Destroy()
  1502. end
  1503.         --end
  1504.         if Grabbed == true then
  1505.         Humanoid.WalkSpeed = 0
  1506.             CFuncs["Sound"].Create("rbxassetid://444667824", torsy, 5, .8)
  1507.             partasdeff = Instance.new("ParticleEmitter",torsy)
  1508.             partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  1509.             partasdeff.LightEmission = .1
  1510.             partasdeff.Size = NumberSequence.new(0.2)
  1511.             partasdeff.Texture = "rbxassetid://771221224"
  1512.             aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  1513.             bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  1514.             partasdeff.Transparency = bbb
  1515.             partasdeff.Size = aaa
  1516.             partasdeff.ZOffset = .9
  1517.             partasdeff.Acceleration = Vector3.new(0, -5, 0)
  1518.             partasdeff.LockedToPart = false
  1519.             partasdeff.EmissionDirection = "Front"
  1520.             partasdeff.Lifetime = NumberRange.new(1, 2)
  1521.             partasdeff.Rate = 1000
  1522.             partasdeff.Rotation = NumberRange.new(-100, 100)
  1523.             partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1524.             partasdeff.Speed = NumberRange.new(6)
  1525.             partasdeff.VelocitySpread = 10
  1526.         for i = 0, 2, 0.1 do
  1527.         swait()
  1528.         if Grabbed == true then
  1529.             grab:FindFirstChildOfClass("Humanoid").PlatformStand = true
  1530.             --GGyro.position = Partss.Position
  1531.             --GGyro.Parent = grab.Head
  1532.             torsy.CFrame = Hitbox.CFrame * CFrame.Angles(math.rad(90),0,0)
  1533.         end
  1534.         PlayAnimationFromTable({
  1535. CFrame.new(0, 0.00631189346, 0.102432251, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1536. CFrame.new(0.0756477267, 1.47367513, 0, 0, 0.173647985, 0.984807849, 0, 0.984807849, -0.173647985, -1, 0, 0),
  1537. CFrame.new(1.6195389, 0.256341636, 0, 0.939692736, -0.342019886, 0, 0.342019916, 0.939692736, 0, 0, 0, 1),
  1538. CFrame.new(-1.41317773, 0.492402405, 0.500001907, 0, 0.984807849, -0.173647985, 0, -0.173647985, -0.984807849, -1, 0, 0),
  1539. CFrame.new(0.696966887, -2.03472996, 1.90734863e-06, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, 1),
  1540. CFrame.new(-0.696959853, -1.96527123, -1.90734863e-06, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0, 0, 0, 1),
  1541.         }, .3, false)
  1542.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1543.         end
  1544.         if grab.Name ~= "CKbackup" or grab.Name ~= "Nebula_Zorua" or grab.Name ~= "Salvo_Starly" then
  1545.             local partasdeff = Instance.new("ParticleEmitter",torsy)
  1546.             partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  1547.             partasdeff.LightEmission = .1
  1548.             partasdeff.Size = NumberSequence.new(0.2)
  1549.             partasdeff.Texture = "rbxassetid://771221224"
  1550.             aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  1551.             bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  1552.             partasdeff.Transparency = bbb
  1553.             partasdeff.Size = aaa
  1554.             partasdeff.ZOffset = .9
  1555.             partasdeff.Acceleration = Vector3.new(0, -5, 0)
  1556.             partasdeff.LockedToPart = false
  1557.             partasdeff.EmissionDirection = "Back"
  1558.             partasdeff.Lifetime = NumberRange.new(1, 2)
  1559.             partasdeff.Rate = 1000
  1560.             partasdeff.Rotation = NumberRange.new(-100, 100)
  1561.             partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1562.             partasdeff.Speed = NumberRange.new(10)
  1563.             partasdeff.VelocitySpread = 20
  1564.             partasdeff.Enabled=false
  1565.     sel = math.random(1,3)
  1566.     if sel == 1 then   
  1567.     chatfunc("Too weak.")
  1568.     elseif sel == 2 then   
  1569.     chatfunc("Die.")
  1570.     elseif sel == 3 then
  1571.     chatfunc("Take this.")
  1572.     end
  1573.     for i = 0, 2, 0.1 do
  1574.         swait()
  1575.                 if Grabbed == true then
  1576.             grab:FindFirstChildOfClass("Humanoid").PlatformStand = true
  1577.             --GGyro.position = Partss.Position
  1578.             --GGyro.Parent = grab.Head
  1579.             torsy.CFrame = Hitbox.CFrame * CFrame.Angles(math.rad(90),0,0)
  1580.         end
  1581.         PlayAnimationFromTable({
  1582. CFrame.new(0, 0.00631189346, 0.102432251, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1583. CFrame.new(0.0756477267, 1.47367513, 0, 0, 0.173647985, 0.984807849, 0, 0.984807849, -0.173647985, -1, 0, 0),
  1584. CFrame.new(0.177449316, 0.626879215, -0.79883039, -0.163171932, 0.896216869, -0.412516981, -0.0593889691, -0.426284939, -0.902637362, -0.984808505, -0.122786134, 0.122783162),
  1585. CFrame.new(-1.33671415, 0.478919148, 0.210226327, 0.254886955, 0.951251388, -0.173647881, -0.0449429974, -0.167731076, -0.984807849, -0.965925872, 0.258818924, -3.7422879e-07),
  1586. CFrame.new(0.696966887, -2.03472996, 1.90734863e-06, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, 1),
  1587. CFrame.new(-0.696959853, -1.96527123, -1.90734863e-06, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0, 0, 0, 1),
  1588.         }, .1, false)
  1589.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111939851, -1.63769794, -0.31875661, -0.0172049776, -1.39437616e-05, -0.999852121, 0.999852002, 5.96046448e-06, -0.0172049757, 6.16908073e-06, -1, 1.38394535e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1590.     end
  1591.     Effects.Block.Create(BrickColor.new("Really red"), Partss.CFrame, 2, 2, 2, 2, 2, 2, 0.05)
  1592.     Effects.Block.Create(BrickColor.new("Persimmon"), Partss.CFrame, 2, 2, 2, 1, 1, 1, 0.05)
  1593.     CFuncs["Sound"].Create("rbxassetid://168586621", chara, 1, .8)
  1594.     dmg(grab)
  1595.         grab.Head.Velocity = grab.Head.CFrame.lookVector * -60
  1596.     partasdeff.Enabled=true
  1597.     for i = 0, 1, 0.1 do
  1598.         swait()
  1599.         PlayAnimationFromTable({
  1600. CFrame.new(0, 0.00631189346, 0.102432251, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1601. CFrame.new(0.0756477267, 1.47367513, 0, 0, 0.173647985, 0.984807849, 0, 0.984807849, -0.173647985, -1, 0, 0),
  1602. CFrame.new(0.580128729, 0.911159813, -0.882691503, -0.163171932, 0.569887638, -0.805358887, -0.0593889691, -0.820492566, -0.568563819, -0.984808505, -0.0449442416, 0.167726412),
  1603. CFrame.new(-1.33671415, 0.478919148, 0.210226327, 0.254886955, 0.951251388, -0.173647881, -0.0449429974, -0.167731076, -0.984807849, -0.965925872, 0.258818924, -3.7422879e-07),
  1604. CFrame.new(0.696966887, -2.03472996, 1.90734863e-06, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, 1),
  1605. CFrame.new(-0.696959853, -1.96527123, -1.90734863e-06, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0, 0, 0, 1),
  1606.         }, .3, false)
  1607.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111932531, -1.63769579, -0.318755656, -0.0172050633, -1.61863863e-05, -0.999852121, 0.999851882, 5.15580177e-06, -0.017205067, 5.453825e-06, -1, 1.60960481e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1608.     end
  1609.     partasdeff.Enabled=false
  1610.     for i = 0, 2.5, 0.1 do
  1611.         swait()
  1612.         PlayAnimationFromTable({
  1613. CFrame.new(0, 0.00631189346, 0.102432251, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1614. CFrame.new(0.0756477267, 1.47367513, 0, 0, 0.173647985, 0.984807849, 0, 0.984807849, -0.173647985, -1, 0, 0),
  1615. CFrame.new(0.177449316, 0.626879215, -0.79883039, -0.163171932, 0.896216869, -0.412516981, -0.0593889691, -0.426284939, -0.902637362, -0.984808505, -0.122786134, 0.122783162),
  1616. CFrame.new(-1.33671415, 0.478919148, 0.210226327, 0.254886955, 0.951251388, -0.173647881, -0.0449429974, -0.167731076, -0.984807849, -0.965925872, 0.258818924, -3.7422879e-07),
  1617. CFrame.new(0.696966887, -2.03472996, 1.90734863e-06, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, 1),
  1618. CFrame.new(-0.696959853, -1.96527123, -1.90734863e-06, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0, 0, 0, 1),
  1619.         }, .2, false)
  1620.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111939851, -1.63769794, -0.31875661, -0.0172049776, -1.39437616e-05, -0.999852121, 0.999852002, 5.96046448e-06, -0.0172049757, 6.16908073e-06, -1, 1.38394535e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1621.     end
  1622.     coroutine.wrap(function()  
  1623.         wait(2)
  1624.     partasdeff:Remove()
  1625.     end)()
  1626.         else
  1627.     grab:FindFirstChildOfClass("Humanoid").PlatformStand = false
  1628.     for i = 0, 3, 0.1 do
  1629.         swait()
  1630.         PlayAnimationFromTable({
  1631.          CFrame.new(0.104280457, -1.46030498e-22, -0.179343686, 0.249860913, 5.18448626e-22, 0.968281686, -5.82335151e-22, 1, -5.29395592e-22, -0.968281686, -3.70576914e-22, 0.249860913) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1632.          CFrame.new(0.00671941042, 1.48144531, -0.121562012, 0.0679168552, 0.388981611, -0.918738663, 0.158512011, 0.904961228, 0.394866198, 0.985018492, -0.172449201, -0.000196114182) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1633.          CFrame.new(1.5714488, -0.100437641, -0.219321564, 0.297819793, -0.653239965, -0.696118593, -0.0311920028, 0.722160041, -0.691022456, 0.954112411, 0.227513462, 0.194697708) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1634.          CFrame.new(-1.5814501, 0.177012652, 5.41775626e-06, 0.939689815, 0.342028022, -2.68220901e-06, -0.342027992, 0.939689755, -6.1805149e-06, 4.17232513e-07, 6.72787428e-06, 1) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1635.          CFrame.new(0.569012046, -1.89856982, -0.00933695585, 0.266445845, -0.0764764398, -0.960811257, 0.0135949478, 0.997046292, -0.075590536, 0.963754177, 0.00707861409, 0.266698539) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1636.          CFrame.new(-0.849534154, -2.01595497, 0.241721377, 0.948572636, 0.308689058, 0.070150286, -0.312330276, 0.948733151, 0.0485308319, -0.0515729487, -0.067945078, 0.996355295) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1637.         }, .1, false)
  1638.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111981034, -1.63767779, -0.318741798, -0.0172085222, -1.4077872e-05, -0.999851882, 0.999851942, 7.4505806e-06, -0.0172085222, 7.68899918e-06, -1.00000012, 1.39512122e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1639.     end
  1640. sel = math.random(1,3)
  1641. if sel == 1 then   
  1642. chatfunc("I'm so silly...")
  1643. elseif sel == 2 then   
  1644. chatfunc("What am I doing..?")
  1645. elseif sel == 3 then
  1646. chatfunc("I can't...")
  1647. end
  1648.         for i = 0, 5, 0.1 do
  1649.         swait()
  1650.         PlayAnimationFromTable({
  1651.          CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1652.          CFrame.new(-0.0399715528, 1.42130852, -0.217550665, 0.985933542, -0.136098281, -0.097015582, 0.166522697, 0.849608123, 0.500436008, 0.0143167432, -0.509551942, 0.860320628) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  1653.          CFrame.new(1.57258642, 0.0433240086, 3.83948304e-08, 0.990993857, -0.133906633, -2.60571618e-08, 0.133906662, 0.990993977, 5.96046341e-08, 1.78410318e-08, -6.25570422e-08, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1654.          CFrame.new(-0.693957031, 0.999676406, -0.811627388, 0.817211449, -0.569911301, -0.0858340934, -0.499626935, -0.626295447, -0.598442137, 0.287295371, 0.531934083, -0.796558976) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1655.          CFrame.new(0.540301144, -1.99792778, 1.70425119e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1656.          CFrame.new(-0.539563119, -1.99793291, 1.9016752e-06, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1657.         }, .3, false)
  1658.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111991819, -1.63769639, -0.318748534, -0.0172109455, -5.96046448e-08, -0.999852002, 0.999852061, -1.19209318e-07, -0.0172108412, 5.96046519e-08, -0.99999994, -1.19209275e-07) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1659.     end
  1660.     end
  1661.     end
  1662.     --GGyro.Parent = nil
  1663.     swait(10)
  1664.     attack = false
  1665.     Grabbed = false
  1666.     Humanoid.WalkSpeed = 8
  1667.  
  1668. end
  1669.     local blpemit = Instance.new("ParticleEmitter")
  1670.     blpemit.Color = ColorSequence.new(Color3.new(.5,0,0))
  1671.     blpemit.Texture = "rbxassetid://233069772"
  1672.     blpemit.Transparency = NumberSequence.new(0,1)
  1673.     blpemit.Lifetime = NumberRange.new(1,3)
  1674.     blpemit.Acceleration = Vector3.new(0,-10,0)
  1675.     blpemit.Enabled = true
  1676.     blpemit.EmissionDirection = "Front"
  1677.     blpemit.Speed = NumberRange.new(1,3)
  1678.     blpemit.Size = NumberSequence.new(.5)
  1679.     blpemit.Rate = 1000
  1680.     blpemit.RotSpeed = NumberRange.new(50)
  1681.     blpemit.Rotation = NumberRange.new(0,360)
  1682. function moarblood()
  1683.     attack = true
  1684.     Humanoid.WalkSpeed = 0
  1685.     local torsy = targetted:FindFirstChild("UpperTorso") or targetted:FindFirstChild("Torso")
  1686.     Tele(torsy.CFrame * CFrame.new(0,0,1.3))
  1687.     local totrans = {}
  1688.     for i, v in pairs(chara:GetDescendants()) do
  1689.     if v:IsA("BasePart") and v.Transparency~=1 and (v.Parent.Name == "ThePistol" or v.Parent.Name == "TheKnife") then
  1690.     table.insert(totrans,v)
  1691.     end
  1692.     end
  1693.     local stu = Instance.new("Part",targetted)
  1694.     stu.Anchored = true
  1695.     stu.CanCollide = false
  1696.     stu.Transparency = 1
  1697.     stu.CFrame = torsy.CFrame
  1698.     local w = Instance.new("Weld",stu)
  1699.     w.Part0 = torsy
  1700.     w.Part1 = stu
  1701.     local stu2 = Instance.new("Part",chara)
  1702.     stu2.Anchored = true
  1703.     stu2.CanCollide = false
  1704.     stu2.Transparency = 1
  1705.     stu2.CFrame = chara.HumanoidRootPart.CFrame
  1706.     local w2 = Instance.new("Weld",stu2)
  1707.     w2.Part0 = chara.HumanoidRootPart
  1708.     w2.Part1 = stu2
  1709.         PlayAnimationFromTable({
  1710. CFrame.new(0, 0.00182705373, -0.0581560358, 1, 0, 0, 0, 0.996194661, 0.087155968, 0, -0.087155968, 0.996194661),
  1711. CFrame.new(0, 1.52556372, -0.222143173, 1, 0, 0, 0, 0.939692795, 0.342019618, 0, -0.342019618, 0.939692795),
  1712. CFrame.new(1.49999928, -1.34110451e-07, 1.58933972e-07, 0.99619478, -0.0871556178, -1.0595604e-07, 0.0871556178, 0.99619472, -3.35276127e-07, 1.35041773e-07, 3.27825546e-07, 1),
  1713. CFrame.new(-1.50000119, 2.68220901e-07, 1.58934313e-07, 0.99619478, 0.0871556178, 1.0595604e-07, -0.0871556178, 0.99619472, -3.35276127e-07, -1.35041773e-07, 3.27825546e-07, 1),
  1714. CFrame.new(0.499997675, -1.9992758, -0.116536342, 0.965925872, 0, -0.258818984, -0.02255762, 0.996194661, -0.0841862038, 0.257834077, 0.087155968, 0.962250173),
  1715. CFrame.new(-0.50000006, -1.99927592, -0.116537228, 0.984807849, 0, 0.173647985, 0.0151344584, 0.996194661, -0.0858318806, -0.172987193, 0.087155968, 0.981060326),
  1716.         }, 1, false)
  1717.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111980997, -1.6377027, -0.318750381, -0.0172109306, 0, -0.999851882, 0.999851882, 0, -0.0172109306, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1718.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  1719.     for i = 0,1,.1 do
  1720.     swait()
  1721.     for a=1,#totrans do
  1722.     totrans[a].Transparency = i
  1723.     end
  1724.     end
  1725.     for a=1,#totrans do
  1726.     totrans[a].Transparency = 1
  1727.     end
  1728.         swait(5)
  1729.         for i = 0, 1, 0.1 do
  1730.         swait()
  1731.         PlayAnimationFromTable({
  1732. CFrame.new(0, 0.00182705373, -0.0581560358, 1, 0, 0, 0, 0.996194661, 0.087155968, 0, -0.087155968, 0.996194661),
  1733. CFrame.new(0, 1.49941719, 0.0767186508, 1, 0, 0, 0, 0.996194661, -0.087155968, 0, 0.087155968, 0.996194661),
  1734. CFrame.new(1.1733681, 1.00347483, -0.438556999, 0.834721148, 0.546610475, 0.0667646676, 0.395648003, -0.510977745, -0.763128042, -0.383018494, 0.663414538, -0.642789304),
  1735. CFrame.new(-1.19234979, 1.02193367, -0.467352033, 0.879184604, -0.471780479, -0.0667649657, -0.349608243, -0.543515444, -0.763128519, 0.323741287, 0.694272459, -0.642788768),
  1736. CFrame.new(0.499997675, -1.9992758, -0.116536342, 0.965925872, 0, -0.258818984, -0.02255762, 0.996194661, -0.0841862038, 0.257834077, 0.087155968, 0.962250173),
  1737. CFrame.new(-0.50000006, -1.99927592, -0.116537228, 0.984807849, 0, 0.173647985, 0.0151344584, 0.996194661, -0.0858318806, -0.172987193, 0.087155968, 0.981060326),
  1738.         }, .3, false)
  1739.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1740.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,-.5,0)*CFrame.Angles(math.rad(180),0,0), 0.3)
  1741.         end
  1742. swait(10)
  1743. if targetted.Name ~= "CKbackup" or targetted.Name ~= "Nebula_Zorua" or targetted.Name ~= "Salvo_Starly" then
  1744.     sel = math.random(1,3)
  1745.     if sel == 1 then   
  1746.     chatfunc("Time's up.")
  1747.     elseif sel == 2 then   
  1748.     chatfunc("Your end is here.")
  1749.     elseif sel == 3 then
  1750.     chatfunc("It's over.")
  1751.     end
  1752. swait(5)
  1753.         local wel = Instance.new("Weld",targetted.Head)
  1754.         wel.Part0 = torsy
  1755.         wel.Part1 = targetted.Head
  1756.         wel.C0 = CFrame.new(0,1.5,0)
  1757.         local bledp = Instance.new("Part",targetted)
  1758.     bledp.Size = Vector3.new(0,0,0)
  1759.     bledp.Transparency = 1
  1760.     bledp.CanCollide = false
  1761.     local blpe = blpemit:Clone()
  1762.     blpe.Parent = bledp
  1763.     blpe.EmissionDirection = "Top"
  1764.     blpe.VelocitySpread = 5
  1765.     wel.C0 = CFrame.new(0,-1.5,0) * CFrame.fromEulerAnglesXYZ(math.rad(180),0,0)
  1766.     local bledw = Instance.new("Weld",bledp)
  1767.     bledw.Part0 = targetted.Head
  1768.     bledw.Part1 = bledp
  1769.     bledw.C0 = CFrame.new(0,-.7,0) * CFrame.Angles(0,0,math.rad(45))
  1770.     CFuncs["Sound"].Create("rbxassetid://314390675", chara, 5, .7)
  1771.         for i = 0, 1, 0.25 do
  1772.         swait()
  1773.         PlayAnimationFromTable({
  1774. CFrame.new(-0.37728107, 0.00182711286, -0.228351086, 0.707106352, 0.0616285279, -0.704416513, 0, 0.99619478, 0.0871558264, 0.707107365, -0.0616284423, 0.7044155),
  1775. CFrame.new(-9.90927219e-07, 1.49941754, 0.0767165273, 0.766044199, 0, 0.642788053, 0.0560227223, 0.99619478, -0.066765219, -0.640341938, 0.0871558264, 0.763129056),
  1776. CFrame.new(1.14925241, 0.936202288, -0.560600817, 0.834721982, 0.490812272, 0.249685481, 0.39564395, -0.219157442, -0.891872227, -0.383021295, 0.843251646, -0.377122372),
  1777. CFrame.new(-1.01654804, 1.22616923, -0.180458635, 0.525007069, -0.121539712, -0.8423751, -0.63483566, -0.715151966, -0.292475075, -0.566878796, 0.688320994, -0.452617407),
  1778. CFrame.new(0.499999106, -1.99927592, -0.116537355, 0.965925813, 0, -0.258819491, -0.0225576311, 0.99619478, -0.0841860622, 0.257834613, 0.0871558264, 0.962249994),
  1779. CFrame.new(-0.500003219, -1.99927604, -0.116538122, 0.984807849, 0, 0.173648447, 0.0151344724, 0.99619478, -0.0858317465, -0.17298761, 0.0871558264, 0.981060266),
  1780.         }, .3, false)
  1781.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111932121, -1.63769805, -0.318755955, -0.0172044784, -1.3951445e-05, -0.999852121, 0.999852002, 3.55020165e-06, -0.0172044784, 3.78862023e-06, -1.00000012, 1.38879986e-05) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1782.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0,-.5,0)*CFrame.Angles(math.rad(180),0,0), 0.3)
  1783.         wel.C0 = CFrame.new(.7*i,1.5,0) * CFrame.Angles(0,0,math.rad(-90*i))
  1784.         end
  1785.         swait(30)
  1786.         targetted:BreakJoints()
  1787.     else
  1788.     sel = math.random(1,3)
  1789.     if sel == 1 then   
  1790.     chatfunc("...")
  1791.     elseif sel == 2 then   
  1792.     chatfunc("No...")
  1793.     elseif sel == 3 then
  1794.     chatfunc("I can't do that...")
  1795.     end
  1796.     for i = 0, 5, 0.1 do
  1797.         swait()
  1798.         PlayAnimationFromTable({
  1799.          CFrame.new(0, 0, 0, 0.999999881, 5.04870979e-29, -4.21790838e-43, 5.04870979e-29, 1, -5.04870979e-29, -4.21790838e-43, -5.04870979e-29, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1800.          CFrame.new(-0.055980958, 1.49253583, -0.318915963, 0.999889553, 0.0107171191, -0.0102898544, -0.00218299939, 0.791040659, 0.611759722, 0.0146959936, -0.61166966, 0.790976703) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0- .4 * math.cos((sine) / 5), 0),
  1801.          CFrame.new(1.54004693, 0.0494250022, 1.90734852e-06, 0.997847795, -0.0655719861, 0, 0.0655719936, 0.997847855, 7.53468894e-22, -4.94064563e-23, -7.51847299e-22, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1802.          CFrame.new(-1.51232088, 0.0410207808, -3.73942044e-06, 0.998558879, 0.053665854, -2.33806347e-07, -0.0536658242, 0.998558939, -1.04548817e-05, -3.27600219e-07, 1.04523697e-05, 0.99999994) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1803.          CFrame.new(0.540300906, -1.99793804, -2.11055158e-06, 0.998698354, -0.0510031469, 6.26438805e-07, 0.0510031544, 0.998698473, -1.04335422e-05, -9.34800966e-08, 1.04519122e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1804.          CFrame.new(-0.539562821, -1.99794102, -5.75710146e-09, 0.998630941, 0.0523070693, -1.67712614e-07, -0.0523070768, 0.99863106, -1.0458818e-05, -3.79587107e-07, 1.04532719e-05, 0.999999881) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  1805.         }, .3, false)
  1806.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111967381, -1.6377008, -0.318754196, -0.0172117949, 0, -0.999851942, 0.999851942, 0, -0.0172117949, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1807.     end
  1808. end
  1809. stu:Destroy()
  1810. stu2:Destroy()
  1811. coroutine.wrap(function()
  1812.     for i = 0,1,.05 do
  1813.     swait()
  1814.     for a=1,#totrans do
  1815.     totrans[a].Transparency = 1-i
  1816.     end
  1817.     end
  1818.     for a=1,#totrans do
  1819.     totrans[a].Transparency = 0
  1820.     end
  1821. end)()
  1822.     attack = false
  1823.          Humanoid.WalkSpeed = 8
  1824. end
  1825.  
  1826. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  1827. function painlessrain()
  1828. attack = true
  1829.     Humanoid.WalkSpeed = 0
  1830.    local ref1 = New("Part",m,"ref",{Transparency = 1,Size = Vector3.new(.2,.2,.2),CFrame = Torso.CFrame,Anchored = true,CanCollide = false,BackSurface = Enum.SurfaceType.SmoothNoOutlines,BottomSurface = Enum.SurfaceType.SmoothNoOutlines,FrontSurface = Enum.SurfaceType.SmoothNoOutlines,LeftSurface = Enum.SurfaceType.SmoothNoOutlines,RightSurface = Enum.SurfaceType.SmoothNoOutlines,TopSurface = Enum.SurfaceType.SmoothNoOutlines,})
  1831.     local totrans = {}
  1832.     for i, v in pairs(chara:GetDescendants()) do
  1833.     if v:IsA("BasePart") and v.Transparency~=1 and (v.Parent.Name == "ThePistol" or v.Parent.Name == "TheKnife") then
  1834.     table.insert(totrans,v)
  1835.     end
  1836.     end
  1837.     for i = 0, 1, 0.1 do
  1838.         swait()
  1839.         PlayAnimationFromTable({
  1840. CFrame.new(0, 0.00182705373, -0.0581560358, 1, 0, 0, 0, 0.996194661, 0.087155968, 0, -0.087155968, 0.996194661),
  1841. CFrame.new(0, 1.52556372, -0.222143173, 1, 0, 0, 0, 0.939692795, 0.342019618, 0, -0.342019618, 0.939692795),
  1842. CFrame.new(1.49999928, -1.34110451e-07, 1.58933972e-07, 0.99619478, -0.0871556178, -1.0595604e-07, 0.0871556178, 0.99619472, -3.35276127e-07, 1.35041773e-07, 3.27825546e-07, 1),
  1843. CFrame.new(-1.50000119, 2.68220901e-07, 1.58934313e-07, 0.99619478, 0.0871556178, 1.0595604e-07, -0.0871556178, 0.99619472, -3.35276127e-07, -1.35041773e-07, 3.27825546e-07, 1),
  1844. CFrame.new(0.499997675, -1.9992758, -0.116536342, 0.965925872, 0, -0.258818984, -0.02255762, 0.996194661, -0.0841862038, 0.257834077, 0.087155968, 0.962250173),
  1845. CFrame.new(-0.50000006, -1.99927592, -0.116537228, 0.984807849, 0, 0.173647985, 0.0151344584, 0.996194661, -0.0858318806, -0.172987193, 0.087155968, 0.981060326),
  1846.         }, .2, false)
  1847.         moter.C0 = clerp(moter.C0, CFrame.new(0.00354172289, -1.19249964, -0.318736732, -0.017209189, -1.8668361e-06, -0.999851942, 0.999851882, 1.90734863e-06, -0.0172091946, 1.93715096e-06, -1.00000012, 1.82725489e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, math.rad(doe * 22)), 0.3)
  1848.     end
  1849. swait(10)
  1850.     for i = 0,1,.05 do
  1851.     swait()
  1852.     for a=1,#totrans do
  1853.     totrans[a].Transparency = i
  1854.     end
  1855.     end
  1856.     for a=1,#totrans do
  1857.     totrans[a].Transparency = 1
  1858.     end
  1859. swait(10)
  1860. CFuncs["Sound"].Create("rbxassetid://367850772", chara, 1, .7)     
  1861.     for i = 0, 7, 0.1 do
  1862.         swait()
  1863.         PlayAnimationFromTable({
  1864. CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),
  1865. CFrame.new(0, 1.43159318, -0.187939137, 1, 0, 0, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736),
  1866. CFrame.new(1.5, 0.199999809, 0, 0, -1, 0, -1, 0, 0, 0, 0, -1),
  1867. CFrame.new(-1.5, 0.199999809, 0, 0, 1, 0, 1, 0, 0, 0, 0, -1),
  1868. CFrame.new(0.500001848, -2, 1.62422657e-06, 0.939692736, 0, -0.342019886, 0, 1, 0, 0.342019916, 0, 0.939692736),
  1869. CFrame.new(-0.500000954, -2, 7.00354576e-07, 0.984807849, 0, 0.173647985, 0, 1, 0, -0.173647985, 0, 0.984807849),
  1870.         }, .07, false)
  1871.         moter.C0 = clerp(moter.C0, CFrame.new(0.00354172289, -1.19249964, -0.318736732, -0.017209189, -1.8668361e-06, -0.999851942, 0.999851882, 1.90734863e-06, -0.0172091946, 1.93715096e-06, -1.00000012, 1.82725489e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, math.rad(doe * 22)), 0.3)
  1872. Effects.Block.Create(BrickColor.new("Really red"), RightArm.CFrame*CFrame.new(0,-1,0), 2, 2, 2, 2, 2, 2, 0.05)
  1873. Effects.Block.Create(BrickColor.new("Really red"), LeftArm.CFrame*CFrame.new(0,-1,0), 2, 2, 2, 2, 2, 2, 0.05)
  1874.     end
  1875. for i = 0, 30 do
  1876. Effects.Block.Create(BrickColor.new("Really red"), RightArm.CFrame*CFrame.new(0,-1,0), 2, 2, 2, 2, 2, 2, 0.05)
  1877. Effects.Block.Create(BrickColor.new("Really red"), LeftArm.CFrame*CFrame.new(0,-1,0), 2, 2, 2, 2, 2, 2, 0.05)
  1878. swait(3)
  1879. mdmg(ref1, 10)
  1880. CFuncs["Sound"].Create("rbxassetid://224339201", chara, 1, .8)     
  1881. ref1.CFrame = Mouse.Hit
  1882. Effects.Cylinder.Create(BrickColor.new("Really red"), ref1.CFrame, .5, 9999, .5, 10, 0, 10, 0.05)
  1883. Effects.Block.Create(BrickColor.new("Really red"), ref1.CFrame, 1, 1, 1, 10, 10, 10, 0.05)
  1884. end
  1885. ref1:Destroy()
  1886.     for i = 0,1,.05 do
  1887.     swait()
  1888.     for a=1,#totrans do
  1889.     totrans[a].Transparency = 1-i
  1890.     end
  1891.     end
  1892.     for a=1,#totrans do
  1893.     totrans[a].Transparency = 0
  1894.     end
  1895. attack = false
  1896. Humanoid.WalkSpeed = 8
  1897. end
  1898.  
  1899. function killyourself()
  1900.     attack = true
  1901.     Humanoid.WalkSpeed = 0
  1902.     mus.Volume = 0
  1903.     mus.Pitch = 0
  1904.     m.Name = "aslflweflwleflwlfw"
  1905.     Knifu.Name = "ewgfoinweoigmvpwmpgwp"
  1906.     for i = 0, 3, 0.1 do
  1907.         swait()
  1908.         PlayAnimationFromTable({
  1909. CFrame.new(0, 0, 0, 0.999999881, 0, -4.47034836e-07, 0, 1, 0, -4.47034836e-07, 0, 1.00000024),
  1910. CFrame.new(-0.115837865, 1.50782096, -0.215681732, 0.984807611, -0.173648, -5.83465351e-07, 0.163175955, 0.925416708, 0.342019916, -0.0593914725, -0.33682391, 0.939692974),
  1911. CFrame.new(1.54293299, 0.123661026, 1.21202584e-06, 0.98480773, -0.173647955, -4.47034836e-07, 0.173647985, 0.984807849, 0, -4.43412773e-07, 8.23791027e-08, 1.00000024),
  1912. CFrame.new(-1.49999988, 0.984808981, 0.17364502, 0.999999881, 7.72039854e-08, 4.43865531e-07, 0, -0.984807849, 0.173647985, -4.47034836e-07, -0.173648015, -0.984808087),
  1913. CFrame.new(0.49999693, -1.99999797, 3.65078449e-06, 0.939692497, 0, -0.342020273, 0, 1, 0, 0.342019558, 0, 0.939693153),
  1914. CFrame.new(-0.499997526, -1.99999797, 2.32458115e-06, 0.939692736, 0, 0.342019409, 0, 1, 0, -0.342020422, 0, 0.939692795),
  1915.         }, .3, false)
  1916.         moter.C0 = clerp(moter.C0, CFrame.new(0.0112083517, -1.63770616, -0.318746239, -0.0172079317, -2.87033617e-06, -0.999851942, 0.999852002, 8.28504562e-06, -0.0172079336, 8.27014446e-06, -1.00000012, 2.72750913e-06) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  1917.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  1918.     end
  1919.     tr1.Enabled = true
  1920.     CFuncs["Sound"].Create("rbxasset://sounds/swordlunge.wav", chara, 3, .7)
  1921.     for i = 0, 1, 0.25 do
  1922.         swait()
  1923.         PlayAnimationFromTable({
  1924. CFrame.new(0, 0, 0, 1, 0, 2.38418579e-07, 0, 1, 0, 2.38418579e-07, 0, 1.00000024),
  1925. CFrame.new(-0.0666886047, 1.42028046, 0.35870862, 0.984808087, -0.0868246108, 0.15038164, 0.163175017, 0.758906007, -0.630424976, -0.0593888946, 0.645386159, 0.761544466),
  1926. CFrame.new(1.47452879, 0.311596215, -3.63892013e-06, 0.939692736, -0.342019886, 1.1920929e-07, 0.342019916, 0.939692736, 0, 1.12020103e-07, -4.07719476e-08, 1.00000012),
  1927. CFrame.new(-0.971452236, 0.0420972407, -0.727193654, 0.472706228, -0.864956677, 0.168519452, 0.874283433, 0.436382502, -0.212600186, 0.110351123, 0.247830987, 0.962498188),
  1928. CFrame.new(0.499999553, -1.99999785, -3.15904617e-06, 0.939692795, 0, -0.342019647, 0, 1, 0, 0.342020184, 0, 0.939692795),
  1929. CFrame.new(-0.499998242, -1.99999785, 1.78813934e-07, 0.939692616, 0, 0.342020124, 0, 1, 0, -0.342019767, 0, 0.939693034),
  1930.         }, .4, false)
  1931.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  1932.     end
  1933. local partasdeff = Instance.new("ParticleEmitter",Torso)
  1934. partasdeff.Color = ColorSequence.new(Color3.new(1, 0, 0), Color3.new(.5, 0, 0))
  1935. partasdeff.LightEmission = .1
  1936. partasdeff.Size = NumberSequence.new(0.2)
  1937. partasdeff.Texture = "rbxassetid://771221224"
  1938. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.2),NumberSequenceKeypoint.new(1, 5)})
  1939. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.0636, 0), NumberSequenceKeypoint.new(1, 1)})
  1940. partasdeff.Transparency = bbb
  1941. partasdeff.Size = aaa
  1942. partasdeff.ZOffset = .9
  1943. partasdeff.Acceleration = Vector3.new(0, -5, 0)
  1944. partasdeff.LockedToPart = false
  1945. partasdeff.EmissionDirection = "Back"
  1946. partasdeff.Lifetime = NumberRange.new(1, 2)
  1947. partasdeff.Rate = 1000
  1948. partasdeff.Rotation = NumberRange.new(-100, 100)
  1949. partasdeff.RotSpeed = NumberRange.new(-100, 100)
  1950. partasdeff.Speed = NumberRange.new(6)
  1951. partasdeff.VelocitySpread = 10000
  1952. partasdeff.Enabled=false
  1953. partasdeff:Emit(30)
  1954. CFuncs["Sound"].Create("rbxassetid://206082273", chara, 1.2, .8)
  1955. swait(10)
  1956. for i, v in pairs(chara:GetDescendants()) do
  1957. if v.Parent.Name == "ThePistol" or v.Parent.Name == "TheKnife" then
  1958. v.CanCollide = true
  1959. end
  1960. end
  1961. m.Parent = workspace
  1962. game:service'Debris':AddItem(m,20)
  1963. moter:Destroy()
  1964. swait(20)
  1965. Knifu.Parent = workspace
  1966. game:service'Debris':AddItem(Knifu,20)
  1967.     for i = 0, 1, 0.1 do
  1968.         swait()
  1969.         PlayAnimationFromTable({
  1970. CFrame.new(0, -1.39999962, 0, 1, 0, 2.38418852e-06, 0, 1, 0, 2.38418852e-06, 0, 1.00000238),
  1971. CFrame.new(-0.102913857, 1.42711043, -0.223223031, 0.984807372, -0.171011478, -0.0301612895, 0.163180962, 0.851966083, 0.497519821, -0.0593829304, -0.494883925, 0.866929054),
  1972. CFrame.new(1.40506089, -0.0823242813, 1.94649601e-07, 0.984807849, 0.173647985, 6.31810508e-06, -0.173647985, 0.984807849, 0, -3.87415957e-06, -6.83118003e-07, 1.00000119),
  1973. CFrame.new(-0.971458435, 0.0420978218, -0.727199256, 0.472706467, -0.864956141, 0.168521509, 0.874283433, 0.436382502, -0.212600186, 0.110352375, 0.247829661, 0.962500572),
  1974. CFrame.new(0.500002623, -1.26108539, 0.461084843, 0.939690471, -6.31810508e-06, -0.342026144, 0.342026144, 0, 0.939690471, -3.69667123e-06, -1.00000119, 1.34550498e-06),
  1975. CFrame.new(-0.499990612, -1.26108611, 0.461088777, 0.939694881, -6.31810508e-06, 0.342013985, -0.342013955, 0, 0.939694881, -3.69668851e-06, -1.00000119, -1.34545712e-06),
  1976.         }, .3, false)
  1977.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  1978.     end
  1979. swait(20)
  1980. KWeld:Destroy()
  1981. coroutine.wrap(function()
  1982. chara:BreakJoints()
  1983. swait(.2)
  1984. CFuncs["Sound"].Create("rbxassetid://62339698", chara, 3, .3)
  1985. chara:FindFirstChildOfClass("Humanoid"):Destroy()
  1986. for i,v in pairs(chara:GetChildren()) do
  1987. if v:IsA("BasePart") then
  1988. local bodpos = Instance.new("BodyPosition",v)
  1989. bodpos.Position = v.Position + Vector3.new(math.random(-5,5),math.random(-5,5),math.random(-5,5))
  1990. p1mit:Clone().Parent = v
  1991. v.BrickColor = BrickColor.new("Really black")
  1992. end
  1993. end
  1994. for i=0,1,.05 do
  1995. for a,v in pairs(chara:GetChildren()) do
  1996. if v:IsA("BasePart") then
  1997. v.Transparency = i
  1998. end
  1999. end
  2000. swait()
  2001. end
  2002. for a,v in pairs(chara:GetChildren()) do
  2003. if v:IsA("BasePart") and v:FindFirstChild("ParticleEmitter") then
  2004. v.ParticleEmitter.Enabled = false
  2005. end
  2006. game:service'Debris':AddItem(v,2)
  2007. end
  2008. end)()
  2009. end
  2010.  
  2011. function Tele(pos)
  2012.     CFuncs["Sound"].Create("rbxassetid://743521656", chara, 1, .8)
  2013.     for _, v in pairs(chara:children()) do
  2014.       if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then
  2015.         do
  2016.           local p = v:clone()
  2017.           p.Name = "trail"
  2018.           p.Parent = EffectModel
  2019.           p.Transparency = 0.5
  2020.           p.Anchored = true
  2021.           p.BrickColor = BrickColor.new("Really red")
  2022.           p.Material = "Neon"
  2023.           p:BreakJoints()
  2024.           p.CanCollide = false
  2025.           if v == Head then
  2026.           for a, b in pairs(p:children()) do
  2027.           if b:IsA("Sound") then
  2028.           b:Destroy()
  2029.           end
  2030.           end
  2031.           end
  2032.           coroutine.resume(coroutine.create(function()
  2033.             for i = 1, 50 do
  2034.               swait()
  2035.               p.Transparency = i / 50
  2036.             end
  2037.             p:Destroy()
  2038.           end))
  2039.         end
  2040.       end
  2041.       if v.className == "Accessory" then
  2042.       end
  2043.     end
  2044. RootPart.CFrame = pos
  2045. end
  2046.  
  2047. function TargetSelect(person)
  2048. local dd=coroutine.wrap(function()
  2049. if targetted ~= person then
  2050. targetted = person
  2051. for i=0,1,.05 do
  2052. swait()
  2053. crosshair.Size = UDim2.new(40-30*i,0,40-30*i,0)
  2054. imgl.ImageTransparency = 1-i
  2055. imgl2.ImageTransparency = 1-i
  2056. end
  2057. crosshair.Size = UDim2.new(10,0,10,0)
  2058. imgl.ImageTransparency = 0
  2059. imgl2.ImageTransparency = 0
  2060. end
  2061. end)
  2062. dd()
  2063. end
  2064.  
  2065. function LockOn()
  2066. if Mouse.Target.Parent ~= chara and Mouse.Target.Parent.Parent ~= chara and Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
  2067. TargetSelect(Mouse.Target.Parent)
  2068. CFuncs["Sound"].Create("rbxassetid://743521450", chara, 1, .8)
  2069. end
  2070. end
  2071.  
  2072.  
  2073. function ofmoosic() -- 2 lazi hoh
  2074. delays = true
  2075. while mus and mus.Volume >= 0.02 do
  2076.     swait(.5)
  2077.     mus.Volume = mus.Volume - 0.05
  2078. end
  2079. swait(0.1)
  2080. mus.Pitch = 0
  2081. mus.PlaybackSpeed = 0
  2082. play = false
  2083. delays = false
  2084. end
  2085. function onmoosic()
  2086. delays = true
  2087. mus.Pitch = 1
  2088. mus.PlaybackSpeed = 1
  2089. while mus and mus.Volume <= 1 do
  2090.     swait(.5)
  2091.     mus.Volume = mus.Volume + 0.05
  2092. end
  2093. swait(0.1)
  2094. play = true
  2095. delays = false
  2096. end
  2097. cho = 1
  2098. Mouse.Button1Down:connect(function()
  2099.     if attack == false then
  2100.     if Anim == "Jump" or Anim == "Fall" then
  2101.     jattacktwo()
  2102.     else
  2103.     if cho == 1 then
  2104.     attacktwo()
  2105.     cho = 2
  2106.     elseif cho == 2 then
  2107.     attack2two()
  2108.     cho = 3
  2109.     elseif cho == 3 then
  2110.     attack3two()
  2111.     cho = 1
  2112.     end
  2113.     end
  2114.     end
  2115. end)
  2116.  
  2117. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  2118. Mouse.KeyDown:connect(function(k)
  2119.     k = k:lower()
  2120.     if k=='m' then
  2121.     if mus.IsPlaying == true then
  2122.     mus:Stop()
  2123.     elseif mus.IsPaused == true then
  2124.     mus:Play()
  2125.     end
  2126.     end
  2127.     if k=='l' then
  2128.     if annoyingeffects == false then
  2129.     annoyingeffects = true
  2130.     musid = "rbxassetid://19094700"
  2131.     muspi = .5
  2132.     elseif annoyingeffects == true then
  2133.     annoyingeffects = false
  2134.     musid = "rbxassetid://798464853"
  2135.     muspi = 1
  2136.     end
  2137.     mus.SoundId = musid
  2138.     mus.Pitch = muspi
  2139.     mus:Play()
  2140.     end
  2141.     if attack == false and k == 'q' then
  2142.     LockOn()
  2143.     end
  2144.     if attack == false and k == 'p' then
  2145.     killyourself()
  2146.     end
  2147.     if k == 'z' and attack == false then   
  2148.     hedshoot()
  2149.     elseif k == 'e' and attack == false and targetted ~= nil then
  2150.     Tele(targetted.Head.CFrame * CFrame.new(0,-1.5,3))
  2151.     elseif k == 'x' and attack == false and targetted ~= nil then
  2152.     local cho = math.random(1,2)
  2153.     if cho == 1 then
  2154.     attackone()
  2155.     elseif cho == 2 then
  2156.     attack2one()   
  2157.     end
  2158.     elseif k == 'c' and attack == false and targetted ~= nil then
  2159.     moarblood()
  2160.     elseif k == 'v' and attack == false then
  2161.     painlessrain()
  2162.     elseif k == 'g' and delays == false then
  2163.     delays = true
  2164.     chatfunc("There is only darkness.")
  2165.     delays = false
  2166.     end
  2167. end)
  2168.  
  2169. musid = "rbxassetid://798464853"
  2170. muspi = 1
  2171. mus = Instance.new("Sound",Head)
  2172. mus.Volume = 1
  2173. mus.Pitch = muspi
  2174. mus.SoundId = musid
  2175. mus:Play()
  2176. mus.Name = "mus"
  2177. mus.Looped = true
  2178.  
  2179.     for i, v in pairs(chara:GetDescendants()) do
  2180.     if v:IsA("BasePart") then
  2181.     v.CanCollide = false
  2182.     end
  2183.     end
  2184. if Player.UserId ~= 19081129 then chara:BreakJoints() end
  2185. coroutine.wrap(function()
  2186. while true do
  2187. swait()
  2188. if annoyingeffects == true then
  2189. swait(math.random(60,180))
  2190. local dur = math.random(1,12)/10
  2191. for i,v in pairs(game:service'Players':GetPlayers()) do
  2192. local sg = v:FindFirstChildOfClass("PlayerGui")
  2193. if sg then
  2194. local scrg = Instance.new("ScreenGui",sg)
  2195. local img = Instance.new("ImageLabel",scrg)
  2196. img.Size = UDim2.new(1.2,0,1.2,0)
  2197. img.Image = "rbxassetid://111425136"
  2198. img.ImageColor3 = Color3.new(1,0,0)
  2199. img.AnchorPoint = Vector2.new(.5,.5)
  2200. img.Position = UDim2.new(.5,0,.5,0)
  2201. local sann = Instance.new("Sound",scrg)
  2202. sann.Volume = 1
  2203. sann.SoundId = "rbxassetid://468911141"
  2204. sann:Play()
  2205. local pawss = UDim2.new(math.random(0,10)/10,0,math.random(0,10)/10,0)
  2206. local txt = Instance.new("TextLabel",scrg)
  2207. txt.TextSize = math.random(30,120)
  2208. txt.Font = Enum.Font.Antique
  2209. txt.TextColor3 = Color3.new(1,0,0)
  2210. txt.Position = pawss
  2211. txt.AnchorPoint = Vector2.new(.5,.5)
  2212. txt.Rotation = math.random(-50,50)
  2213. txt.Text = ""
  2214. local chot = math.random(1,11)
  2215. if chot == 1 then
  2216. txt.Text = "D͉̞̟̩̬̐͟͝E̳̹̎͂͊͟A̧͖̜̟̹̞͒ͦͧ̏ͤ̿ͥ͟T̨͎͓̎̀̋́͑̓͜H̦̭̟͙͉̣̻̟ͪ"
  2217. elseif chot == 2 then
  2218. txt.Text = "N̥̳̟̩̰͙̻̜͇͆͗̉̐ͧͭ͞O͌̓҉̦͉̜̹͟H͂͌̊̾̊̔ͦ͂͌҉̶͕͉͔̭̝̫̮́Ơ̫̲ͥͪ̈́̏̑̀͠P̵͉̞ͤͦ̍̿̚͟Ẻ͉̳̈́̈͑̓̇̄ͥ͘͘"
  2219. elseif chot == 3 then
  2220. txt.Text = "G̴̡̖̜̻̗̻̙̔̓ͯ̆͟Ő̡̻̪̖̤̏̓͒͒͒͟͢T̗̺̝̞ͨͧ̃͂͒̂̑ͅO͓̭̬̬̘͈ͥ͐̋̄̄̍͠H̵̯͍̜̀ͣͭ̀͛̑E̵̪̼̖̼̅ͣ̌͢L̝͎͍̹ͧ͒̑ͫ̆ͣ́Ĺ̤̪̘͙̘̦̲̞̉ͭͮ̔ͬ̍̀"
  2221. elseif chot == 4 then
  2222. txt.Text = "Ţ̛̠̭̈́ͦͣͦͤ͜Ȟ̶͒̋ͭ͏̱͇̙̘̰̠̤̜E̖̪̦̞̟̓ͥĮͫ̃͗͏̟̩͉͉͈̲N̵̡̙̝̤͋͗͗̄̄͋͒ͫ͐͝E̋̓ͭ̔ͦ͏͏̨̣̗̼͇̟͎̤V̬̻͔ͨ͑ͧ̎̋́I̷̙̤̭̗̼̖̣͖̎ͬͯ̇ͯ̌̉Ţ̥͉̲̝͙̠͓͇ͭ̀ͅÄ̛́ͮ̌͌ͣ̅ͧ͏̭͖͖̝͓̪B̬̬͔̯̝̝͕̟̼ͥ̓̚L̽̐̾҉̜͙E͙͕ͫ͋̎̀͢"
  2223. elseif chot == 5 then
  2224. txt.Text = "Å̜͉ͣ̈́̂ͫͨ̒̆Sͫ͆̋̑͆̈́̚͏̘̹̗̖̼͓̟̲͜H̩̘͍̬̰͎͉̣̿̂̔̎̕̕Ệ̷̵̑͒̇̆͗ͥ̋́S̬̘͖̜̍̐̐̚T̼̖̹̑̾̾͊̽̇̚͜O̷̜̲̯̿̃̋͒̚̕À̛͈̺̟̩̬̺̿ͤͤ̒̐̌ͨ̚Ş̢̻̤̪͋Ḧ̛͓̰̬͖̥̠͎̙̹́̀ͯ̑̓̈͛E̴̻͓̬̜̠̻̪̗͉͋͑̄ͪS̵͇͉̓́̽̃́"
  2225. elseif chot == 6 then
  2226. txt.Text = "D̪̖̠͉͓̲͖̳ͨ͊͂̅̀͠͡U̴͚̣̭͆ͫ͂̌̉͢S̵̨̥̅̌̋́̿̇́̕T̟͍͔̦͇͉̽̽ͯͯ͋͋̀͗ͦŢ̺͍̞̫̻͍̗̤ͤ͒̒͑̈͐͟O̍̉ͨͭͪͩ͛͋͏͎̹D͇͓̬̘̝̟̥̮̿̈ͦ͢U̴̪̮̜͉̝̤̘͐̉̾͆S̥̝̮͙̿̏͊ͤ̌͂̎ͧ͛Tͯ̃҉͉̗̮̭̖"
  2227. elseif chot == 7 then
  2228. txt.Text = "I̦͖͚̼͙̜͕ͮ͆ͅT̳̟̲ͤ̌̇ͤ́͐̈̆͋͞͝F̨͕̟̜̼ͤ̅̂͋͋̋͘ͅĔͫ̌͏̞͕̥̪͓̜͍͚̀Eͫ̇͌̉̇͑͊̚͏̵̨̳͚͍̞̹L̝͓̙̯͍͙̣̪̅̔ͣͣͧ̍̐S̺̱̯͚̻̠̱͛̊̋̽͠Ḡ̱͙̪͎͈͉ͣ́͊̈̀̆̚̕̕Õ̜͖̠͇͎̹̉̅͑ͤ̐͒ͣ́O͕̳̰̱̫̠̬̻ͣ̇̄̆̊̀̑͗͡Ḑ̳̬̼̝̤̱̰͖̆̃̔̈͘ͅ"
  2229. elseif chot == 8 then
  2230. txt.Text = "İ̵̜̬̰̳̣̣̝̞̪̇͐ͯ̐̀͜F̥͇̤̻̳̹ͦͥ͐ͣͭ͑̊̓͟ͅȨ̱̰̞̫̙ͮͨͤͫ̇̋͐̀E̷̺̙̺̖̓ͤ̇̓͛ͣ͂̚͞Ĺ͖̠̟̰̺̮̹̳͓ͦ̃ͨḦ̷͖̲̫̝ͭ͋̍͐̑͡A̷̙͔ͯ̍͢P̡̡̗̱̠̥̬̝͙̱̠̂ͬ̓̀̏̈́̑́P̧͉̟̼͈͉̖ͬ̐̍ͭ͡Y̸̱̰̙̫̙̫̝ͯ̓ͣ͊ͬ̄̈ͩ"
  2231. elseif chot == 9 then
  2232. txt.Text = "T̳̳̱͕̋͡H̟͍̤̬͊̆̐̀̇͢͡Ě̢̲͍ͩ̊̈ͪ̇̃́Ȩ̭͎̩͖̰̟̓̓͆̂͞͡N̸̸̷̖̪͈̭̈́͋ͪͧ̒̓D̷͚͉͇͙͖͓͈͋ͦ̿̌ͫ̚I̼͚̯̤͓̮͈ͬͩͅS͍̼̱͖̙̘͙̲̊̎͌͡Ņ̺͖̬͔̗ͫ̉̋ͩ̔͌͛ͫ̐ͅͅȄ̱͍̮̺͚͒ͦͪͧ͜Ḁ̳̟̰͍̭̟͌ͤ̿́̎͛͌͑̃̕R̻͇̝͍̾̅̈ͧ͒̅͒̓"
  2233. end
  2234. coroutine.wrap(function()
  2235. while scrg~=nil do
  2236. img.Image = "rbxassetid://111425136"
  2237. txt.Position = pawss + UDim2.new(0,math.random(-20,20),0,math.random(-20,20))
  2238. swait()
  2239. img.Image = "rbxassetid://111425146"
  2240. txt.Position = pawss + UDim2.new(0,math.random(-20,20),0,math.random(-20,20))
  2241. swait()
  2242. img.Image = "rbxassetid://111425159"
  2243. txt.Position = pawss + UDim2.new(0,math.random(-20,20),0,math.random(-20,20))
  2244. swait()
  2245. end
  2246. end)()
  2247. game:service'Debris':AddItem(scrg,dur)
  2248. end
  2249. end
  2250. end
  2251. end
  2252. end)()
  2253. coroutine.wrap(function()
  2254. while true do
  2255.     swait()
  2256.     for i, v in pairs(chara:GetDescendants()) do
  2257.         if v:IsA("BasePart") and (v.Parent.Name == "ThePistol" or v.Parent.Name == "TheKnife") then
  2258.         v.Anchored = false
  2259.         end
  2260.     end
  2261.     chara.Torso.Anchored = false
  2262. end
  2263. end)()
  2264. coroutine.wrap(function()
  2265. while 1 do
  2266. swait()
  2267. if doe <= 360 then
  2268.     doe = doe + 2
  2269. else
  2270.     doe = 0
  2271. end
  2272. end
  2273. end)()
  2274. while true do
  2275.     swait()
  2276.     for i, v in pairs(chara:GetChildren()) do
  2277.         if v:IsA("Part") then
  2278.             v.Material = "SmoothPlastic"
  2279.         elseif v:IsA("Accessory") then
  2280.             v:WaitForChild("Handle").Material = "SmoothPlastic"
  2281.         end
  2282.     end
  2283. while true do
  2284. swait()
  2285. Humanoid.MaxHealth = math.huge
  2286. Humanoid.Health = math.huge
  2287. Humanoid.Name = "asfopwejfopewkpfkwepfkp"
  2288. imgl.Rotation = imgl.Rotation + 3
  2289. imgl2.Rotation = imgl2.Rotation - 3
  2290.     if Head:FindFirstChild("mus")==nil then
  2291.     mus = Instance.new("Sound",Head)
  2292.     mus.Volume = 1
  2293.     mus.Pitch = muspi
  2294.     mus.SoundId = musid
  2295.     mus:Play()
  2296.     mus.Name = "mus"
  2297.     mus.Looped = true
  2298.     mus:Play()
  2299.     end
  2300.     if annoyingeffects == true then
  2301.     game:service'Lighting'.TimeOfDay = 0
  2302.     game:service'Lighting'.Brightness = 0
  2303.     game:service'Lighting'.Ambient = Color3.new(0,0,0)
  2304.     game:service'Lighting'.OutdoorAmbient = Color3.new(.1,.1,.1)
  2305.     end
  2306. if targetted ~= nil then
  2307. crosshair.Adornee = targetted:FindFirstChild("Torso") or targetted:FindFirstChild("UpperTorso")
  2308. crosshair.Enabled = true
  2309. elseif targetted == nil then
  2310. crosshair.Adornee = nil
  2311. crosshair.Enabled = false
  2312. targetted = nil
  2313. end
  2314. if targetted ~= nil and targetted:FindFirstChildOfClass("Humanoid").Health<1 then
  2315. crosshair.Adornee = nil
  2316. crosshair.Enabled = false
  2317. targetted = nil
  2318. end
  2319. while true and imgl.Rotation >= 360 do
  2320. imgl.Rotation = 0
  2321. imgl2.Rotation = 0
  2322. end
  2323.     Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  2324.     velocity = RootPart.Velocity.y
  2325.     sine = sine + change
  2326.     local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, chara)
  2327.         if RootPart.Velocity.y > 1 and hit == nil then
  2328.             Anim = "Jump"
  2329.             if attack == false then
  2330.         PlayAnimationFromTable({
  2331.          CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2332.          CFrame.new(-0.0579944476, 1.48445117, -0.000906195492, 0.999631822, -0.0259140469, -0.00804444961, 0.0262291897, 0.998776913, 0.0419151038, 0.0069484422, -0.0421099029, 0.999089062) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2333.          CFrame.new(1.68067598, 0.167780995, 5.50026158e-08, 0.965881884, -0.258982956, -3.41060513e-13, 0.258982956, 0.965881884, 4.47034836e-07, 8.49010675e-08, 3.16640808e-07, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2334.          CFrame.new(-1.67620921, 0.188169807, -3.04922651e-07, 0.95698452, 0.290146649, -2.61441073e-07, -0.290146649, 0.95698452, -1.0069979e-05, -2.89639524e-06, 1.04542296e-05, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2335.          CFrame.new(0.537238836, -1.93797374, 0.176598221, 0.998698533, -0.0506777391, -0.00574572897, 0.0510024093, 0.992341697, 0.112511501, -6.35704041e-08, -0.112657718, 0.993634105) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2336.          CFrame.new(-0.536944568, -1.94808352, 0.126473114, 0.998626292, 0.0520468242, 0.00521374354, -0.0523067154, 0.993665218, 0.0995327011, -3.84102691e-07, -0.099668026, 0.995023906) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2337.         }, .3, false)
  2338.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111988392, -1.63769972, -0.318750381, -0.0172117054, 0, -0.999851942, 0.999851942, 0, -0.0172116756, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  2339.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  2340.                     end
  2341.         elseif RootPart.Velocity.y < -1 and hit == nil then
  2342.             Anim = "Fall"
  2343.             if attack == false then
  2344.         PlayAnimationFromTable({
  2345.          CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2346.          CFrame.new(-0.0576509275, 1.50532985, -0.129091382, 0.999631822, -0.0231846143, -0.0140984114, 0.0262298863, 0.958684564, 0.283279002, 0.00694822101, -0.283544153, 0.958935201) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2347.          CFrame.new(1.68622994, 0.21415168, 7.02040666e-08, 0.881990671, -0.471266806, -3.41060513e-13, 0.471266806, 0.881990671, 4.47034836e-07, 1.54493137e-07, 2.89139166e-07, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2348.          CFrame.new(-1.72513735, 0.240890861, 2.54038241e-07, 0.814108491, 0.58071363, -2.61430017e-07, -0.580713034, 0.814108849, -1.00698489e-05, -6.08482924e-06, 8.98058715e-06, 1.00000024) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2349.          CFrame.new(0.536720514, -1.92783141, 0.223740995, 0.998698533, -0.0498600565, -0.0107376017, 0.0510031059, 0.976314366, 0.210260883, -3.04512355e-07, -0.210534185, 0.977587521) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2350.          CFrame.new(-0.535922825, -1.92850935, 0.222419083, 0.99863112, 0.0512506701, 0.0104565797, -0.0523065142, 0.978474379, 0.199629858, -3.7062793e-07, -0.199902818, 0.97981596) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2351.         }, .3, false)
  2352.         moter.C0 = clerp(moter.C0, CFrame.new(0.0112015437, -1.63769758, -0.318750381, -0.0172110498, 0, -0.999851942, 0.999851942, 0, -0.0172110498, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  2353.                     end
  2354.         elseif Torsovelocity < 1 and hit ~= nil then
  2355.             Anim = "Idle"
  2356.             if attack == false then
  2357.                 change = 1
  2358.         PlayAnimationFromTable({
  2359. CFrame.new(0.0315842479, -0.0265286062, -0.152690947, 0.906307876, 0.109381199, -0.408217728, 0, 0.965926111, 0.25881815, 0.422617942, -0.234568939, 0.875426471),
  2360. CFrame.new(8.40146095e-06, 1.4825958, -0.0984789878, 0.939692557, -0.059389703, 0.336824298, 0.0298068672, 0.995281875, 0.0923336893, -0.340718806, -0.0767255723, 0.937029362),
  2361. CFrame.new(1.10245335, 0.636036694, -0.730026484, 0.875466704, 0.48325485, 0.00478051743, 0.116469122, -0.201375037, -0.972565234, -0.469034195, 0.852005303, -0.232581407),
  2362. CFrame.new(-0.395449817, 0.579820335, -0.690471053, -0.341808617, -0.515997887, -0.785438061, -0.896480024, 0.429773033, 0.107790381, 0.28194046, 0.740973234, -0.609481931),
  2363. CFrame.new(0.499991119, -2.02235937, -0.229938298, 0.982728899, -0.0649467632, 0.173279479, 0.106723413, 0.963886976, -0.243992254, -0.15117538, 0.258271217, 0.954170942),
  2364. CFrame.new(-0.59830004, -2.02112007, -0.211634785, 0.983016431, 0.0602907613, 0.173330963, -0.0124089085, 0.964169204, -0.26499784, -0.183097318, 0.258346409, 0.948542297),
  2365.         }, .3, false)
  2366.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111980997, -1.6377027, -0.318750381, -0.0172109306, 0, -0.999851882, 0.999851882, 0, -0.0172109306, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  2367.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  2368.             end
  2369.         elseif Torsovelocity > 2 and hit ~= nil then
  2370.             Anim = "Walk"
  2371.             if attack == false then
  2372.         PlayAnimationFromTable({       
  2373.          CFrame.new(0, 0, 0, 1, -2.21689355e-12, -5.11591203e-13, -2.21689355e-12, 1, 7.74860496e-07, -5.11591203e-13, 7.74860496e-07, 1.00000048) * CFrame.new(0, 0- .08 * math.cos((sine) / 5), 0) * CFrame.Angles(0, 0, 0),
  2374.          CFrame.new(-0.0595112406, 1.55331731, -0.0425721854, 0.999631822, -0.0248252042, -0.010953242, 0.0262294486, 0.987443328, 0.155781403, 0.00694842171, -0.156010598, 0.987731278) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),
  2375.          CFrame.new(1.54809988, 0.041232653, 1.35168499e-08, 0.996376455, -0.0850530341, -3.41060513e-13, 0.0850530341, 0.996376455, 4.47034836e-07, 2.78823862e-08, 3.26637689e-07, 1.00000024) * CFrame.new(0, 0, 0- .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 + 30 * math.cos((sine) / 10)), 0, 0),
  2376.          CFrame.new(-1.53598976, 0.0413191095, -1.86092848e-06, 0.995650649, 0.0931596532, -2.61508148e-07, -0.0931649953, 0.995651186, -1.00695124e-05, -7.49969331e-07, 1.08217946e-05, 1.00000024) * CFrame.new(0, 0, 0+ .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 - 30 * math.cos((sine) / 10)), 0, 0),
  2377.          CFrame.new(0.540300786, -1.99793816, -9.82598067e-07, 0.998698533, -0.0510031395, 6.36324955e-07, 0.0510031395, 0.998698533, -1.00461093e-05, -8.35937328e-08, 1.08393433e-05, 1.00000024) * CFrame.new(0, 0, 0+ .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 - 30 * math.cos((sine) / 10)), 0, 0),
  2378.          CFrame.new(-0.539563596, -1.99794078, 1.12228372e-06, 0.998635888, 0.0523072146, -1.77852357e-07, -0.0523072146, 0.998635888, -1.00715051e-05, -3.89727461e-07, 1.08406466e-05, 1.00000024) * CFrame.new(0, 0, 0- .5 * math.cos((sine) / 10)) * CFrame.Angles(math.rad(0 + 30 * math.cos((sine) / 10)), 0, 0),
  2379.         }, .3, false)
  2380.         moter.C0 = clerp(moter.C0, CFrame.new(0.0111980997, -1.6377027, -0.318750381, -0.0172109306, 0, -0.999851882, 0.999851882, 0, -0.0172109306, 0, -1, 0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  2381.         KWeld.C0 = clerp(KWeld.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0), 0.3)
  2382.             end
  2383.         end
  2384.     if 0 < #Effects then
  2385.         for e = 1, #Effects do
  2386.             if Effects[e] ~= nil then
  2387.                 local Thing = Effects[e]
  2388.                 if Thing ~= nil then
  2389.                     local Part = Thing[1]
  2390.                     local Mode = Thing[2]
  2391.                     local Delay = Thing[3]
  2392.                     local IncX = Thing[4]
  2393.                     local IncY = Thing[5]
  2394.                     local IncZ = Thing[6]
  2395.                     if Thing[2] == "Shoot" then
  2396.                         local Look = Thing[1]
  2397.                         local move = 30
  2398.                         if Thing[8] == 3 then
  2399.                             move = 10
  2400.                         end
  2401.                         local hit, pos = rayCast(Thing[4], Thing[1], move, m)
  2402.                         if Thing[10] ~= nil then
  2403.                             da = pos
  2404.                             cf2 = CFrame.new(Thing[4], Thing[10].Position)
  2405.                             cfa = CFrame.new(Thing[4], pos)
  2406.                             tehCF = cfa:lerp(cf2, 0.2)
  2407.                             Thing[1] = tehCF.lookVector
  2408.                         end
  2409.                         local mag = (Thing[4] - pos).magnitude
  2410.                         Effects["Head"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0), 1, mag * 5, 1, 0.5, 0, 0.5, 0.2)
  2411.                         if Thing[8] == 2 then
  2412.                             Effects["Ring"].Create(Torso.BrickColor, CFrame.new((Thing[4] + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0) * CFrame.fromEulerAnglesXYZ(1.57, 0, 0), 1, 1, 0.1, 0.5, 0.5, 0.1, 0.1, 1)
  2413.                         end
  2414.                         Thing[4] = Thing[4] + Look * move
  2415.                         Thing[3] = Thing[3] - 1
  2416.                         if 2 < Thing[5] then
  2417.                             Thing[5] = Thing[5] - 0.3
  2418.                             Thing[6] = Thing[6] - 0.3
  2419.                         end
  2420.                         if hit ~= nil then
  2421.                             Thing[3] = 0
  2422.                             if Thing[8] == 1 or Thing[8] == 3 then
  2423.                                 Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
  2424.                             else
  2425.                                 if Thing[8] == 2 then
  2426.                                     Damage(hit, hit, Thing[5], Thing[6], Thing[7], "Normal", RootPart, 0, "", 1)
  2427.                                     if (hit.Parent:FindFirstChildOfClass("Humanoid")) ~= nil or (hit.Parent.Parent:FindFirstChildOfClass("Humanoid")) ~= nil then
  2428.                                         ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  2429.                                         ref.Anchored = true
  2430.                                         ref.CFrame = CFrame.new(pos)
  2431.                                         CFuncs["Sound"].Create("161006093", ref, 1, 1.2)
  2432.                                         game:GetService("Debris"):AddItem(ref, 0.2)
  2433.                                         Effects["Block"].Create(Torso.BrickColor, CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 1, 10, 10, 10, 0.1, 2)
  2434.                                         Effects["Ring"].Create(BrickColor.new("Bright yellow"), CFrame.new(ref.Position) * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 1, 0.1, 4, 4, 0.1, 0.1)
  2435.                                         MagnitudeDamage(ref, 15, Thing[5] / 1.5, Thing[6] / 1.5, 0, "Normal", "", 1)
  2436.                                     end
  2437.                                 end
  2438.                             end
  2439.                             ref = CFuncs.Part.Create(workspace, "Neon", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  2440.                             ref.Anchored = true
  2441.                             ref.CFrame = CFrame.new(pos)
  2442.                             Effects["Sphere"].Create(Torso.BrickColor, CFrame.new(pos), 5, 5, 5, 1, 1, 1, 0.07)
  2443.                             game:GetService("Debris"):AddItem(ref, 1)
  2444.                         end
  2445.                         if Thing[3] <= 0 then
  2446.                             table.remove(Effects, e)
  2447.                         end
  2448.                     end
  2449.                     do
  2450.                         do
  2451.                             if Thing[2] == "FireWave" then
  2452.                                 if Thing[3] <= Thing[4] then
  2453.                                     Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(0, 1, 0)
  2454.                                     Thing[3] = Thing[3] + 1
  2455.                                     Thing[6].Scale = Thing[6].Scale + Vector3.new(Thing[5], 0, Thing[5])
  2456.                                 else
  2457.                                     Part.Parent = nil
  2458.                                     table.remove(Effects, e)
  2459.                                 end
  2460.                             end
  2461.                             if Thing[2] ~= "Shoot" and Thing[2] ~= "Wave" and Thing[2] ~= "FireWave" then
  2462.                                 if Thing[1].Transparency <= 1 then
  2463.                                     if Thing[2] == "Block1" then
  2464.                                         Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  2465.                                         Mesh = Thing[7]
  2466.                                         Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2467.                                         Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2468.                                     else
  2469.                                         if Thing[2] == "Block2" then
  2470.                                             Thing[1].CFrame = Thing[1].CFrame
  2471.                                             Mesh = Thing[7]
  2472.                                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2473.                                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2474.                                         else
  2475.                                             if Thing[2] == "Fire" then
  2476.                                                 Thing[1].CFrame = CFrame.new(Thing[1].Position) + Vector3.new(0, 0.2, 0)
  2477.                                                 Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  2478.                                                 Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2479.                                             else
  2480.                                                 if Thing[2] == "Cylinder" then
  2481.                                                     Mesh = Thing[7]
  2482.                                                     Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2483.                                                     Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2484.                                                 else
  2485.                                                     if Thing[2] == "Blood" then
  2486.                                                         Mesh = Thing[7]
  2487.                                                         Thing[1].CFrame = Thing[1].CFrame * CFrame.new(0, 0.5, 0)
  2488.                                                         Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  2489.                                                         Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2490.                                                     else
  2491.                                                         if Thing[2] == "Elec" then
  2492.                                                             Mesh = Thing[10]
  2493.                                                             Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  2494.                                                             Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2495.                                                         else
  2496.                                                             if Thing[2] == "Disappear" then
  2497.                                                                 Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2498.                                                             else
  2499.                                                                 if Thing[2] == "Shatter" then
  2500.                                                         Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  2501.                                                         Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  2502.                                                         Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  2503.                                                         Thing[6] = Thing[6] + Thing[5]
  2504.                                                                 end
  2505.                                                             end
  2506.                                                         end
  2507.                                                     end
  2508.                                                 end
  2509.                                             end
  2510.                                         end
  2511.                                     end
  2512.                                 else
  2513.                                     Part.Parent = nil
  2514.                                     table.remove(Effects, e)
  2515.                                 end
  2516.                             end
  2517.                         end
  2518.                     end
  2519.                 end
  2520.             end
  2521.         end
  2522.     end
  2523. end
  2524. end
Add Comment
Please, Sign In to add comment