Advertisement
memberhero

KillBot Without The Robot Arm

Jul 1st, 2018
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 98.27 KB | None | 0 0
  1. wait(1/60)
  2. --KillBot
  3. --Without The Robot Arm
  4. --Credit To Nebula For Creating The Orginal
  5.  
  6. --// Initializing \\--
  7. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  8. local Plrs = S.Players
  9. local Plr = Plrs.LocalPlayer
  10. local Char = Plr.Character
  11. local char = Plr.Character
  12. local Hum = Char:FindFirstChildOfClass'Humanoid'
  13. local RArm = Char["Right Arm"]
  14. local LArm = Char["Left Arm"]
  15. local RLeg = Char["Right Leg"]
  16. local LLeg = Char["Left Leg"]
  17. local Root = Char:FindFirstChild'HumanoidRootPart'
  18. local Torso = Char.Torso
  19. local Head = Char.Head
  20. local NeutralAnims = true
  21. local Attack = false
  22. local BloodPuddles = {}
  23. local Effects = {}
  24. local Debounces = {Debounces={}}
  25. local Mouse = Plr:GetMouse()
  26. local Hit = {}
  27. local Sine = 0
  28. local Idle = 0
  29. local Change = 1
  30. local FLArm,FRArm,FRArmW,FLArmW
  31. local Stunned = {}
  32. local VoidSB = (game.PlaceId == 843468296) -- You can change the 843468296 to 0 if you dont care about potential lag on Void SB
  33. --// Debounce System \\--
  34.  
  35.  
  36. function Debounces:New(name,cooldown)
  37. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  38. setmetatable(aaaaa,{__index = Debounces})
  39. Debounces.Debounces[name] = aaaaa
  40. return aaaaa
  41. end
  42.  
  43. function Debounces:Use(overrideUsable)
  44. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  45. if(self.Usable or overrideUsable)then
  46. self.Usable = false
  47. self.CoolingDown = true
  48. local LastUse = time()
  49. self.LastUse = LastUse
  50. delay(self.Cooldown or 2,function()
  51. if(self.LastUse == LastUse)then
  52. self.CoolingDown = false
  53. self.Usable = true
  54. end
  55. end)
  56. end
  57. end
  58.  
  59. function Debounces:Get(name)
  60. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  61. for i,v in next, Debounces.Debounces do
  62. if(i == name)then
  63. return v;
  64. end
  65. end
  66. end
  67.  
  68. function Debounces:GetProgressPercentage()
  69. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  70. if(self.CoolingDown and not self.Usable)then
  71. return math.max(
  72. math.floor(
  73. (
  74. (time()-self.LastUse)/self.Cooldown or 2
  75. )*100
  76. )
  77. )
  78. else
  79. return 100
  80. end
  81. end
  82. local BODY = {}
  83. LeftArm = char["Left Arm"]
  84. RightLeg = char["Right Leg"]
  85. LeftLeg = char["Left Leg"]
  86. for _, c in pairs(char:GetDescendants()) do
  87. if c:IsA("BasePart") and c.Name ~= "Handle" then
  88. if c ~= char.HumanoidRootPart and c ~= char.Torso and c ~= char.Head and c ~= char["Right Arm"] and c ~= LeftArm and c ~= RightLeg and c ~= LeftLeg then
  89. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  90. end
  91. table.insert(BODY,{c,c.Parent,c.Material,c.Color,c.Transparency})
  92. elseif c:IsA("JointInstance") then
  93. table.insert(BODY,{c,c.Parent,nil,nil,nil})
  94. end
  95. end
  96. for e = 1, #BODY do
  97. if BODY[e] ~= nil then
  98. local STUFF = BODY[e]
  99. local PART = STUFF[1]
  100. local PARENT = STUFF[2]
  101. local MATERIAL = STUFF[3]
  102. local COLOR = STUFF[4]
  103. local TRANSPARENCY = STUFF[5]
  104. if PART.ClassName == "Part" and PART ~= char.HumanoidRootPart then
  105. PART.Material = MATERIAL
  106. PART.Color = COLOR
  107. PART.Transparency = TRANSPARENCY
  108. end
  109. PART.AncestryChanged:Connect(function()
  110. PART.Parent = PARENT
  111. end)
  112. end
  113. end
  114. function refit()
  115. char.Parent = workspace
  116. for e = 1, #BODY do
  117. if BODY[e] ~= nil then
  118. local STUFF = BODY[e]
  119. local PART = STUFF[1]
  120. local PARENT = STUFF[2]
  121. local MATERIAL = STUFF[3]
  122. local COLOR = STUFF[4]
  123. local TRANSPARENCY = STUFF[5]
  124. if PART.ClassName == "Part" and PART ~= char.HumanoidRootPart then
  125. PART.Material = MATERIAL
  126. PART.Color = COLOR
  127. PART.Transparency = TRANSPARENCY
  128. end
  129. if PART.Parent ~= PARENT then
  130. char:FindFirstChildOfClass("Humanoid"):remove()
  131. PART.Parent = PARENT
  132. Humanoid = Instance.new("Humanoid",char)
  133. end
  134. end
  135. end
  136. end
  137. char.Humanoid.Died:connect(function()
  138. refit()
  139. end)
  140. --// Shortcut Variables \\--
  141. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  142. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  143. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  144. local M = {C=math.cos,R=math.rad,S=math.sin,P=math.pi,RNG=math.random,MRS=math.randomseed,H=math.huge,RRNG = function(min,max,div) return math.rad(math.random(min,max)/(div or 1)) end}
  145. local R3 = {N=Region3.new}
  146. local De = S.Debris
  147. local WS = workspace
  148. local Lght = S.Lighting
  149. local RepS = S.ReplicatedStorage
  150. local IN = Instance.new
  151.  
  152. --// Extended ROBLOX tables \\--
  153. local Instance = setmetatable({AllChildren = function(where,callback,recursive) local children = (recursive and where:GetDescendants() or where:GetChildren()) for _,v in next, children do callback(v) end end, ClearChildrenOfClass = function(where,class,recursive) local children = (recursive and where:GetDescendants() or where:GetChildren()) for _,v in next, children do if(v:IsA(class))then v:destroy();end;end;end},{__index = Instance})
  154. --// Customization \\--
  155.  
  156. local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
  157. local Remove_Hats = false
  158. local Remove_Clothing = false
  159. local PlayerSize = 1
  160. local DamageColor = BrickColor.new'Really red'
  161. local MusicID = 900318768
  162. local MusicPitch = 1
  163. local BloodID = "rbxassetid://284205403"
  164. local BloodColor = BrickColor.new'Crimson'
  165. local BloodMaterial = Enum.Material.SmoothPlastic
  166.  
  167. --// Weapon and GUI creation, and Character Customization \\--
  168.  
  169. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  170. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  171. local Effects = IN("Folder",Char)
  172. Effects.Name = "Effects"
  173.  
  174. New = function(Object, Parent, Name, Data)
  175. local Object = Instance.new(Object)
  176. for Index, Value in pairs(Data or {}) do
  177. Object[Index] = Value
  178. end
  179. Object.Parent = Parent
  180. Object.Name = Name
  181. return Object
  182. end
  183.  
  184.  
  185.  
  186. CyborgArm = New("Model",Char,"CyborgArm",{})
  187. Handle = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.Metal,Size = Vector3.new(1.0500015, 2.02999949, 1.07999992),CFrame = CFrame.new(-138.347275, 2.99473095, 41.7816849, 0.999635339, 8.27677286e-06, 0.0270056836, -0.000191000072, 0.999977112, 0.00676353322, -0.0270050094, -0.00676622428, 0.999612451),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  188. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.429999948, 0.100000001, 1.04999983),CFrame = CFrame.new(-138.369171, 2.89115906, 41.8271637, 0.505694926, -0.862284958, 0.0271573812, 0.862490892, 0.506027818, 0.0067293453, -0.019545, 0.0200200025, 0.999608755),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  189. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, 0.505694926, 0.862490892, -0.0195449982, -0.862284899, 0.506027818, 0.0200199969, 0.0271573793, 0.00672934437, 0.999608576),C1 = CFrame.new(0.0136108398, -0.108844995, -0.0342674255, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  190. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.600001693, 0.100000001, 1.04999983),CFrame = CFrame.new(-138.268127, 3.26462603, 41.8218994, 0.0100010047, -0.999581397, 0.0271513518, 0.999925494, 0.010187286, 0.00673122332, -0.00700500328, 0.027082013, 0.999608815),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  191. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, 0.0100010047, 0.999925494, -0.00700500328, -0.999581337, 0.010187286, 0.0270820074, 0.0271513499, 0.00673122238, 0.999608636),C1 = CFrame.new(-0.0874328613, 0.264621973, -0.028968811, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  192. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.3000018, 0.100000001, 1.04999983),CFrame = CFrame.new(-138.217133, 3.61339307, 41.8189926, 0.778245091, -0.627379835, 0.0270029604, 0.627452075, 0.778625846, 0.00676273741, -0.0252680089, 0.0116800005, 0.999612689),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  193. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, 0.778245091, 0.627452075, -0.0252680033, -0.627379835, 0.778625846, 0.0116799958, 0.0270029567, 0.00676273648, 0.99961251),C1 = CFrame.new(-0.138427734, 0.613389015, -0.0260467529, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  194. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.840000331, 0.420000285, 1),CFrame = CFrame.new(-138.395523, 2.38962889, 41.7660217, -0.00574199716, -0.999983609, 1.77533366e-09, 0.999983549, -0.00574199716, 9.3131769e-10, 9.41781764e-10, 1.77533366e-09, 1.00000012),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  195. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, -0.00574199716, 0.999983549, 0, -0.999983549, -0.00574199716, 0, 0, 0, 1),C1 = CFrame.new(0.0399932861, -0.610375166, 0.0268669128, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  196. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Shape = Enum.PartType.Cylinder,Size = Vector3.new(0.840000331, 0.420000285, 0.2900002),CFrame = CFrame.new(-138.540939, 3.80931711, 41.9832687, 2.29982252e-05, -0.999983609, -0.00574393803, -0.00452899979, -0.00574398367, 0.999973238, -0.999989927, 3.01669934e-06, -0.00452905567),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  197. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, 2.29999951e-05, -0.00452899886, -0.999989748, -0.999983549, -0.00574398367, 3.01490991e-06, -0.00574393803, 0.999973238, -0.00452905614),C1 = CFrame.new(0.185333252, 0.809313059, -0.190429688, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  198. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Smoky grey"),Material = Enum.Material.Metal,Shape = Enum.PartType.Ball,Size = Vector3.new(1.16000044, 1.16000044, 1.16000044),CFrame = CFrame.new(-138.563065, 3.74006891, 41.8137894, 1, -1.23944917e-22, 1.77533366e-09, -1.48608469e-11, 1, 9.3131769e-10, -1.80443749e-09, 9.31322575e-10, 1.00000012),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  199. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C1 = CFrame.new(0.207519531, 0.740064859, -0.0209579468, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  200. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.660001755, 0.100000001, 0.799999833),CFrame = CFrame.new(-138.557587, 3.57138705, 41.9535294, 0.999635398, 8.27676195e-06, 0.0270056874, -0.000191000116, 0.999977112, 0.00676353415, -0.0270050168, -0.00676622475, 0.999612629),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  201. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, 0.999635339, -0.000191000072, -0.0270050094, 8.27677377e-06, 0.999977112, -0.00676622428, 0.0270056836, 0.00676353322, 0.999612451),C1 = CFrame.new(0.20199585, 0.571382999, -0.160697937, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  202. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.660001755, 0.100000001, 0.0899999291),CFrame = CFrame.new(-138.548004, 3.20288205, 42.3108978, 0.999635398, 8.27676195e-06, 0.0270056874, -0.000191000116, 0.999977112, 0.00676353415, -0.0270050168, -0.00676622475, 0.999612629),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  203. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, 0.999635339, -0.000191000072, -0.0270050094, 8.27677377e-06, 0.999977112, -0.00676622428, 0.0270056836, 0.00676353322, 0.999612451),C1 = CFrame.new(0.19229126, 0.202877998, -0.518062592, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  204. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.390001893, 0.100000001, 1.04999983),CFrame = CFrame.new(-138.031433, 3.68374205, 41.8135147, 0.999635398, 8.27676195e-06, 0.0270056874, -0.000191000116, 0.999977112, 0.00676353415, -0.0270050168, -0.00676622475, 0.999612629),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  205. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, 0.999635339, -0.000191000072, -0.0270050094, 8.27677377e-06, 0.999977112, -0.00676622428, 0.0270056836, 0.00676353322, 0.999612451),C1 = CFrame.new(-0.324111938, 0.683737993, -0.0205078125, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  206. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.2800017, 0.100000001, 0.690000117),CFrame = CFrame.new(-138.393951, 2.11307812, 42.0131454, 0.0100010047, -0.999581397, 0.0271513518, 0.999925494, 0.010187286, 0.00673122332, -0.00700500328, 0.027082013, 0.999608815),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  207. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, 0.0100010047, 0.999925494, -0.00700500328, -0.999581337, 0.010187286, 0.0270820074, 0.0271513499, 0.00673122238, 0.999608636),C1 = CFrame.new(0.0383300781, -0.886925936, -0.220256805, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  208. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Really red"),Material = Enum.Material.Neon,Size = Vector3.new(0.600001693, 0.100000001, 1.04999983),CFrame = CFrame.new(-138.452835, 2.48128104, 41.8321991, -0.223359078, -0.974358141, 0.027149044, 0.974736214, -0.223258108, 0.00673288852, -0.000498998852, 0.0279670097, 0.999608934),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(1, 0, 0),})
  209. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = RArm,C0 = CFrame.new(0, 0, 0, -0.223359063, 0.974736214, -0.000499000133, -0.974358141, -0.223258108, 0.0279670041, 0.0271490421, 0.00673288759, 0.999608755),C1 = CFrame.new(0.0972747803, -0.518723011, -0.0393295288, -0.99999994, 1.23908515e-22, -0.000331714633, 1.23944917e-22, 1, -1.09697344e-22, 0.000331714633, -1.09738441e-22, -0.99999994),})
  210.  
  211. for _,v in next, CyborgArm:children() do
  212. v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  213. end
  214.  
  215. pcall(function() Char.ReaperShadowHead.Eye1.BrickColor = BrickColor.new'Really red' Char.ReaperShadowHead.Eye1.Material = 'Glass' end)
  216. pcall(function() Char.ReaperShadowHead.Eye2.BrickColor = BrickColor.new'Really red' Char.ReaperShadowHead.Eye2.Material = 'Glass' end)
  217. pcall(function() Char.LeftWing.BrickColor = BrickColor.new'Really red' Char.LeftWing.Transparency = 0.5 end)
  218. for i,v in next, CyborgArm:GetChildren() do
  219. v.Transparency = 1
  220. end
  221.  
  222. if(PlayerSize ~= 1)then
  223. for _,v in next, Char:GetDescendats() do
  224. if(v:IsA'BasePart')then
  225. v.Size = v.Size * PlayerSize
  226. end
  227. end
  228. end
  229.  
  230. --// Instance Creation Functions \\--
  231.  
  232. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  233. local Sound = IN("Sound")
  234. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  235. Sound.Pitch = pitch or 1
  236. Sound.Volume = volume or 1
  237. Sound.Looped = looped or false
  238. if(autoPlay)then
  239. coroutine.wrap(function()
  240. repeat wait() until Sound.IsLoaded
  241. Sound.Playing = autoPlay or false
  242. end)()
  243. end
  244. if(not looped and effect)then
  245. Sound.Ended:connect(function()
  246. Sound.Volume = 0
  247. Sound:destroy()
  248. end)
  249. elseif(effect)then
  250. warn("Sound can't be looped and a sound effect!")
  251. end
  252. Sound.Parent =parent or Torso
  253. return Sound
  254. end
  255. function Part(parent,color,material,size,cframe,anchored,cancollide)
  256. local part = IN("Part")
  257. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  258. part.Material = material or Enum.Material.SmoothPlastic
  259. part.TopSurface,part.BottomSurface=10,10
  260. part.Size = size or V3.N(1,1,1)
  261. part.CFrame = cframe or CF.N(0,0,0)
  262. part.CanCollide = cancollide or false
  263. part.Anchored = anchored or false
  264. part.Parent = parent or Char
  265. return part
  266. end
  267.  
  268. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  269. local part = IN("SpecialMesh")
  270. part.MeshId = meshid or ""
  271. part.TextureId = textid or ""
  272. part.Scale = scale or V3.N(1,1,1)
  273. part.Offset = offset or V3.N(0,0,0)
  274. part.MeshType = meshtype or Enum.MeshType.Sphere
  275. part.Parent = parent
  276. return part
  277. end
  278.  
  279. NewInstance = function(instance,parent,properties)
  280. local inst = Instance.new(instance,parent)
  281. if(properties)then
  282. for i,v in next, properties do
  283. pcall(function() inst[i] = v end)
  284. end
  285. end
  286. return inst;
  287. end
  288.  
  289. --// Music Creation \\--
  290. local Music = Sound(Char,MusicID,MusicPitch,3,true,false,true)
  291. Music.Name = 'Music'
  292.  
  293. --// Stop animations \\--
  294. for _,v in next, Hum:GetPlayingAnimationTracks() do
  295. v:Stop();
  296. end
  297.  
  298. pcall(game.Destroy,Char:FindFirstChild'Animate')
  299. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  300.  
  301. --// Joints \\--
  302.  
  303. local LS = NewInstance('Motor',Char,{Part0=Torso,Part1=LArm,C0 = CF.N(-1.5 * PlayerSize,0.5 * PlayerSize,0),C1 = CF.N(0,.5 * PlayerSize,0)})
  304. local RS = NewInstance('Motor',Char,{Part0=Torso,Part1=RArm,C0 = CF.N(1.5 * PlayerSize,0.5 * PlayerSize,0),C1 = CF.N(0,.5 * PlayerSize,0)})
  305. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  306. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  307. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  308. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  309. local HW = NewInstance('Motor',Char,{Part0=Handle,Part1=RArm})
  310.  
  311. local LSC0 = LS.C0
  312. local RSC0 = RS.C0
  313. local NKC0 = NK.C0
  314. local LHC0 = LH.C0
  315. local RHC0 = RH.C0
  316. local RJC0 = RJ.C0
  317.  
  318. --// Artificial HB \\--
  319.  
  320. local ArtificialHB = IN("BindableEvent", script)
  321. ArtificialHB.Name = "Heartbeat"
  322.  
  323. script:WaitForChild("Heartbeat")
  324.  
  325. local tf = 0
  326. local allowframeloss = false
  327. local tossremainder = false
  328. local lastframe = tick()
  329. local frame = 1/Frame_Speed
  330. ArtificialHB:Fire()
  331.  
  332. game:GetService("RunService").Heartbeat:connect(function(s, p)
  333. tf = tf + s
  334. if tf >= frame then
  335. if allowframeloss then
  336. script.Heartbeat:Fire()
  337. lastframe = tick()
  338. else
  339. for i = 1, math.floor(tf / frame) do
  340. ArtificialHB:Fire()
  341. end
  342. lastframe = tick()
  343. end
  344. if tossremainder then
  345. tf = 0
  346. else
  347. tf = tf - frame * math.floor(tf / frame)
  348. end
  349. end
  350. end)
  351.  
  352. function swait(num)
  353. if num == 0 or num == nil then
  354. ArtificialHB.Event:wait()
  355. else
  356. for i = 0, num do
  357. ArtificialHB.Event:wait()
  358. end
  359. end
  360. end
  361.  
  362.  
  363. --// Effect Function(s) \\--
  364.  
  365. function FakeWeld(p0,p1)
  366. local attachment0 = Instance.new('Attachment',p0)
  367. local attachment1 = Instance.new('Attachment',p1)
  368. return NewInstance("HingeConstraint",p0,{Attachment0=attachment0,Attachment1=attachment1,LimitsEnabled=true,UpperAngle=0,LowerAngle=0})
  369. end
  370.  
  371. function Fragment(v)
  372. v:ClearAllChildren()
  373. local Fragments = NewInstance("Folder",v.Parent,{Name='Fragmentation'})
  374. v.Archivable = true
  375. -- X
  376. v.Size = Vector3.new(v.Size.x/2,v.Size.y,v.Size.z)
  377. v.Name = v.Name.."Fragment"
  378.  
  379. local a = v:Clone()
  380. a.Parent = Fragments
  381. a.CFrame = CF.N(-.5,1,1) * a.CFrame
  382. v.CFrame = CF.N(.5,1,1) * v.CFrame
  383. -- Y
  384. v.Size = Vector3.new(v.Size.x,v.Size.y/2,v.Size.z)
  385.  
  386. local a = v:Clone()
  387. a.Parent = Fragments
  388. a.CFrame = CF.N(1,-.5,1) * a.CFrame
  389. v.CFrame = CF.N(1,.5,1) * v.CFrame
  390. -- Z
  391. v.Size = Vector3.new(v.Size.x,v.Size.y,v.Size.z/2)
  392.  
  393. local a = v:Clone()
  394. a.Parent = Fragments
  395. a.CFrame = CF.N(1,1,-.5) * a.CFrame
  396. v.CFrame = CF.N(1,1,.5) * v.CFrame
  397.  
  398. v.Parent = Fragments
  399. return Fragments
  400. end
  401.  
  402. local blood = NewInstance("ParticleEmitter",nil,{
  403. Color = ColorSequence.new(BloodColor.Color),
  404. LightEmission=.1,
  405. LightInfluence=1,
  406. ZOffset=.9,
  407. Size=NumberSequence.new{NumberSequenceKeypoint.new(0,.2,0),NumberSequenceKeypoint.new(1,3,0)},
  408. Texture="rbxassetid://284205403",
  409. Transparency=NumberSequence.new{NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)},
  410. Acceleration = V3.N(0,-15,0),
  411. Lifetime = NumberRange.new(1,2),
  412. Rate=50,
  413. Speed = NumberRange.new(5,15),
  414. SpreadAngle = Vector2.new(15,15),
  415. Enabled = false,
  416. EmissionDirection = 'Back',
  417. })
  418.  
  419. local blood2 = NewInstance("ParticleEmitter",nil,{
  420. Color = ColorSequence.new(BloodColor.Color),
  421. LightEmission=.1,
  422. LightInfluence=1,
  423. ZOffset=.9,
  424. Size=NumberSequence.new{NumberSequenceKeypoint.new(0,.2,0),NumberSequenceKeypoint.new(1,3,0)},
  425. Texture=BloodID,
  426. Transparency=NumberSequence.new{NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)},
  427. Acceleration = V3.N(0,-125,0),
  428. Lifetime = NumberRange.new(1,2),
  429. Rate=50,
  430. Speed = NumberRange.new(5,15),
  431. SpreadAngle = Vector2.new(15,15),
  432. Enabled = false,
  433. EmissionDirection = 'Back',
  434. })
  435.  
  436. local blood3 = NewInstance("ParticleEmitter",nil,{
  437. Color = ColorSequence.new(BloodColor.Color),
  438. Size=NumberSequence.new{NumberSequenceKeypoint.new(0,.2),NumberSequenceKeypoint.new(1,.2)},
  439. Texture=BloodID,
  440. Lifetime = NumberRange.new(.4),
  441. Rate=50,
  442. LockedToPart=true,
  443. Speed = NumberRange.new(0,2),
  444. Enabled = false,
  445. })
  446.  
  447. function Blood(size,cframe,amount)
  448. local part = Instance.new("Part",Effects)
  449. part.Transparency = 1
  450. part.Size = size
  451. part.Anchored = true
  452. part.CanCollide = false
  453. part.CFrame = cframe
  454. S.Debris:AddItem(part,6)
  455. local prtcl = blood:Clone()
  456. prtcl.Parent = part
  457. prtcl:Emit(amount)
  458. return part, prtcl
  459. end
  460.  
  461. function Blood2(size,cframe)
  462. local part = Instance.new("Part",Effects)
  463. part.Transparency = 1
  464. part.Size = size
  465. part.Anchored = false
  466. part.CanCollide = false
  467. part.CFrame = cframe
  468. local prtcl = blood:Clone()
  469. prtcl.Enabled = true
  470. prtcl.Parent = part
  471. return part, prtcl
  472. end
  473.  
  474. function Blood3(size,cframe,amount)
  475. local part = Instance.new("Part",Effects)
  476. part.Transparency = 1
  477. part.Size = size
  478. part.Anchored = true
  479. part.CanCollide = false
  480. part.CFrame = cframe
  481. S.Debris:AddItem(part,6)
  482. local prtcl = blood2:Clone()
  483. prtcl.Parent = part
  484. prtcl:Emit(amount)
  485. return part, prtcl
  486. end
  487.  
  488. function Blood4(size,cframe)
  489. local part = Instance.new("Part",Effects)
  490. part.Transparency = 1
  491. part.Size = size
  492. part.Anchored = false
  493. part.CanCollide = false
  494. part.CFrame = cframe
  495. local prtcl = blood2:Clone()
  496. prtcl.Enabled = true
  497. prtcl.Parent = part
  498. return part, prtcl
  499. end
  500.  
  501.  
  502. function BloodDrop(pos,dir,maxsize)
  503. if(game.PlaceId ~= 843468296)then
  504. local owo = NewInstance("Part",Effects,{Transparency=0,Material=BloodMaterial,BrickColor=BloodColor,Shape=Enum.PartType.Ball,Size=V3.N(.2,.2,.2), CanCollide = false})
  505. owo.CFrame=CF.N(pos,dir)
  506. local bv = Instance.new("BodyVelocity",owo)
  507. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  508. bv.velocity = CF.N(pos,dir+V3.N(M.RNG(-3,3)/30,M.RNG(-3,3)/30,M.RNG(-3,3)/30)).lookVector*15
  509. bv.Name = "MOVE"
  510. --[[local prt = blood3:Clone()
  511. prt.Parent = owo
  512. prt.Enabled = true]]
  513. delay(.01, function() bv:destroy() end)
  514. local touch;
  515. touch = owo.Touched:connect(function(hit)
  516. if(hit.Anchored==true and hit.CanCollide and not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent.Parent:FindFirstChildOfClass'Humanoid')then
  517. touch:disconnect()
  518. BloodPuddle(owo.Position+V3.N(0,1,0),100,maxsize,owo)
  519. owo:destroy()
  520. end
  521. end)
  522. end
  523. end
  524.  
  525. function BloodPuddle(position,range,maxSize,where)
  526. local hit, pos, norm = workspace:FindPartOnRayWithIgnoreList(Ray.new(
  527. position,CF.N(position,position+V3.N(0,-1,0)).lookVector * range
  528. ),{where,Char},false,true)
  529. if(hit and not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent.Parent:FindFirstChildOfClass'Humanoid')then
  530. if(hit.Name == 'BloodPuddle')then
  531. local dist = (position - hit.Position).magnitude
  532. if (hit.Size.Z <= 5 and hit.Size.Z < maxSize) or (hit.Size.Z > 5 and hit.Size.Z < maxSize and dist < hit.Size.Z/3) then
  533. --hit.CylinderMesh.Scale = hit.CylinderMesh.Scale + V3.N(.1,0,.1)
  534. hit.Size = hit.Size + V3.N(.1,0,.1)
  535. end
  536. if(hit.Size.Z < 2)then
  537. pcall(function() hit.Sound:Play() end)
  538. end
  539. else
  540. local Puddle = NewInstance('Part',workspace,{Material=BloodMaterial,BrickColor=BloodColor,Size=V3.N(1,.1,1),CFrame=CF.N(pos,pos+norm)*CF.A(90*M.P/180,0,0),Anchored=true,CanCollide=false,Archivable=false,Locked=true,Name='BloodPuddle'})
  541. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  542. Sound(Puddle,685857471,1,2,false,false,true)
  543. coroutine.wrap(function()
  544. swait(75)
  545. repeat
  546. swait()
  547. Puddle.Size = Puddle.Size - V3.N(.02,0,.02)
  548. until Puddle.Size.Z < 0.51
  549. Puddle:destroy()
  550. end)()
  551. end
  552. end
  553. end
  554.  
  555. function recurse(root,callback,i)
  556. i= i or 0
  557. for _,v in pairs(root:GetChildren()) do
  558. i = i + 1
  559. callback(i,v)
  560.  
  561. if #v:GetChildren() > 0 then
  562. i = recurse(v,callback,i)
  563. end
  564. end
  565.  
  566. return i
  567. end
  568.  
  569. function ragdollJoint(character, part0, part1, attachmentName, className, properties) -- thanks mustardfat im too lazy
  570. if character:FindFirstChild("RagdollConstraint"..part1.Name) == nil then
  571. for i,v in pairs(character:GetChildren()) do
  572. if v:IsA("MeshPart") and (v.MeshId == 'http://www.roblox.com/asset/?id=553602991' or v.MeshId == 'http://www.roblox.com/asset/?id=553602977' or v.MeshId == 'http://www.roblox.com/asset/?id=553602987') then
  573. v.Size = Vector3.new(1,1,1)
  574. end
  575. end
  576. if part1:FindFirstChildOfClass('Motor6D') then
  577. part1:FindFirstChildOfClass('Motor6D'):Remove()
  578. end
  579. if attachmentName ~= "NeckAttachment" then
  580. attachmentName = attachmentName.."RigAttachment"
  581. end
  582. local constraint = Instance.new(className.."Constraint")
  583. constraint.Attachment0 = part0:FindFirstChild(attachmentName)
  584. constraint.Attachment1 = part1:FindFirstChild(attachmentName)
  585. constraint.Name = "RagdollConstraint"..part1.Name
  586. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  587. local collidepart = Instance.new('Part',part1)
  588. collidepart.Size = part1.Size/2
  589. if string.find(string.lower(part1.Name),"upper") then
  590. if string.find(string.lower(part1.Name),"leg") then
  591. collidepart.Size = part1.Size/3
  592. else
  593. collidepart.Size = part1.Size/2.5
  594. end
  595. end
  596. collidepart.CanCollide = true
  597. collidepart.Name = "RagdollJoint"
  598. collidepart.Anchored = false
  599. collidepart.Transparency = 1
  600. collidepart.CFrame = part1.CFrame
  601. collidepart:BreakJoints()
  602. local attachment0 = Instance.new('Attachment',part1)
  603. local attachment1 = Instance.new('Attachment',collidepart)
  604. if attachment0 and attachment1 then
  605. local constraint = Instance.new("HingeConstraint")
  606. constraint.Attachment0 = attachment0
  607. constraint.Attachment1 = attachment1
  608. constraint.LimitsEnabled = true
  609. constraint.UpperAngle = 0
  610. constraint.LowerAngle = 0
  611. constraint.Parent = character
  612. end
  613. if string.find(string.lower(part1.Name),"upper") then
  614. if string.find(string.lower(part1.Name),"leg") then
  615. attachment0.Position = Vector3.new(0,0.01,0)
  616. else
  617. attachment0.Position = Vector3.new(0,0.25,0)
  618. end
  619. else
  620. attachment0.Position = Vector3.new(0,-0.1,0)
  621. end
  622. end
  623. for _,propertyData in next,properties or {} do
  624. constraint[propertyData[1]] = propertyData[2]
  625. end
  626. constraint.Parent = character
  627. return constraint
  628. end
  629. end
  630.  
  631.  
  632. function getAttachment0(character,attachmentName)
  633. for _,child in next,character:children() do
  634. local attachment = child:FindFirstChild(attachmentName)
  635. if attachment then
  636. return attachment
  637. end
  638. end
  639. end
  640.  
  641.  
  642. function Ragdoll(who,half,snapped)
  643. pcall(function()
  644. who:breakJoints()
  645. local who = who
  646. local hhh = who:FindFirstChildOfClass'Humanoid'
  647. local t = GetTorso(who)
  648. pcall(function()
  649. who.HumanoidRootPart:destroy()
  650. end)
  651. hhh.Health = 0
  652. Stunned[who] = true
  653. if(hhh.RigType == Enum.HumanoidRigType.R6)then
  654. local RA,LA,RL,LL,HD = who:FindFirstChild'Right Arm',who:FindFirstChild'Left Arm',who:FindFirstChild'Right Leg',who:FindFirstChild'Left Leg',who:FindFirstChild'Head'
  655. pcall(function()
  656. if(hhh.Health > 0)then local CollideRA = NewInstance('Part',who,{Size=RA.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  657. FakeWeld(RA,CollideRA) end
  658. local RAJ = NewInstance("Attachment",t,{Position=V3.N(1.5,.5,0),Orientation=V3.N()})
  659. local RAJ2 = NewInstance("Attachment",RA,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  660. local RAC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=RAJ,Attachment1=RAJ2})
  661. end)
  662. pcall(function()
  663. local LAJ = NewInstance("Attachment",t,{Position=V3.N(-1.5,.5,0),Orientation=V3.N()})
  664. local LAJ2 = NewInstance("Attachment",LA,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  665.  
  666. local LAC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=LAJ,Attachment1=LAJ2})
  667.  
  668. if(hhh.Health > 0)then local CollideLA = NewInstance('Part',who,{Size=LA.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  669. FakeWeld(LA,CollideLA) end
  670. end)
  671. pcall(function()
  672. if(HD)then
  673. local NJ = NewInstance('Attachment',t,{Position=V3.N(0,1,0),Orientation=V3.N()})
  674. local NJ2 = NewInstance('Attachment',HD,{Position=V3.N(0,-.5,0),Orientation=V3.N()})
  675. local NJ3 = NewInstance('Attachment',HD,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  676. local HC = NewInstance('HingeConstraint',t,{LimitsEnabled=true,UpperAngle=50,LowerAngle=-50,Attachment0=NJ,Attachment1=NJ2})
  677.  
  678. if(snapped)then
  679. NJ.Orientation = V3.N(0,90,0)
  680. end
  681. if(hhh.Health > 0)then
  682. local CollideHD = NewInstance('Part',who,{Size=HD.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  683. FakeWeld(HD,CollideHD)
  684. end
  685. end
  686. end)
  687. if(not half)then
  688. local RLJ = NewInstance("Attachment",t,{Position=V3.N(.5,-1,0),Orientation=V3.N()})
  689. local RLJ2 = NewInstance("Attachment",RL,{Position=V3.N(0,1,0),Orientation=V3.N()})
  690. local LLJ = NewInstance("Attachment",t,{Position=V3.N(-.5,-1,0),Orientation=V3.N()})
  691. local LLJ2 = NewInstance("Attachment",LL,{Position=V3.N(0,1,0),Orientation=V3.N()})
  692. local RLC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=RLJ,Attachment1=RLJ2})
  693. local LLC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=LLJ,Attachment1=LLJ2})
  694. if(hhh.Health > 0)then local CollideRL = NewInstance('Part',who,{Size=RL.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  695. local CollideLL = NewInstance('Part',who,{Size=LL.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  696.  
  697. FakeWeld(RL,CollideRL)
  698. FakeWeld(LL,CollideLL) end
  699. end
  700. for _,v in next, who:children() do
  701. if(v:IsA'BasePart')then
  702. v.CanCollide = true
  703. end
  704. end
  705. else
  706. local character = who
  707.  
  708. if(half)then
  709. pcall(function()
  710. character.UpperTorso.WaistRigAttachment:Destroy()
  711. end)
  712. end
  713.  
  714. local handProperties = {
  715. {"LimitsEnabled", true};
  716. {"UpperAngle",0};
  717. {"LowerAngle",0};
  718. }
  719. local footProperties = {
  720. {"LimitsEnabled", true};
  721. {"UpperAngle", 15};
  722. {"LowerAngle", -45};
  723. }
  724. local shinProperties = {
  725. {"LimitsEnabled", true};
  726. {"UpperAngle", 0};
  727. {"LowerAngle", -75};
  728. }
  729. if character:FindFirstChild('RightLowerArm') and character:FindFirstChild('RightHand') then
  730. ragdollJoint(character,character.RightLowerArm, character.RightHand, "RightWrist", "Hinge", handProperties)
  731. end
  732. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('RightUpperArm') then
  733. ragdollJoint(character, character.UpperTorso, character["RightUpperArm"], "RightShoulder", "BallSocket")
  734. end
  735. if character:FindFirstChild('RightUpperArm') and character:FindFirstChild('RightLowerArm') then
  736. ragdollJoint(character, character.RightUpperArm, character.RightLowerArm, "RightElbow", "BallSocket")
  737. end
  738. if character:FindFirstChild('LeftLowerArm') and character:FindFirstChild('LeftHand') then
  739. ragdollJoint(character,character.LeftLowerArm, character.LeftHand, "LeftWrist", "Hinge", handProperties)
  740. end
  741. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('LeftUpperArm') then
  742. ragdollJoint(character, character.UpperTorso, character["LeftUpperArm"], "LeftShoulder", "BallSocket")
  743. end
  744. if character:FindFirstChild('LeftUpperArm') and character:FindFirstChild('LeftLowerArm') then
  745. ragdollJoint(character, character.LeftUpperArm, character.LeftLowerArm, "LeftElbow", "BallSocket")
  746. end
  747. if character:FindFirstChild('RightUpperLeg') and character:FindFirstChild('RightLowerLeg') then
  748. ragdollJoint(character,character.RightUpperLeg, character.RightLowerLeg, "RightKnee", "Hinge", shinProperties)
  749. end
  750. if character:FindFirstChild('RightLowerLeg') and character:FindFirstChild('RightFoot') then
  751. ragdollJoint(character,character.RightLowerLeg, character.RightFoot, "RightAnkle", "Hinge", footProperties)
  752. end
  753. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('RightUpperLeg') then
  754. ragdollJoint(character,character.LowerTorso, character.RightUpperLeg, "RightHip", "BallSocket")
  755. end
  756. if character:FindFirstChild('LeftUpperLeg') and character:FindFirstChild('LeftLowerLeg') then
  757. ragdollJoint(character,character.LeftUpperLeg, character.LeftLowerLeg, "LeftKnee", "Hinge", shinProperties)
  758. end
  759. if character:FindFirstChild('LeftLowerLeg') and character:FindFirstChild('LeftFoot') then
  760. ragdollJoint(character,character.LeftLowerLeg, character.LeftFoot, "LeftAnkle", "Hinge", footProperties)
  761. end
  762. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('LeftUpperLeg') then
  763. ragdollJoint(character,character.LowerTorso, character.LeftUpperLeg, "LeftHip", "BallSocket")
  764. end
  765. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('LowerTorso') then
  766. ragdollJoint(character,character.LowerTorso, character.UpperTorso, "Waist", "BallSocket", {
  767. {"LimitsEnabled",true};
  768. {"UpperAngle",5};
  769. {"Radius",5};
  770. })
  771. end
  772. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('Head') then
  773. ragdollJoint(character,character.UpperTorso, character.Head, "Neck", "Hinge", {
  774. {"LimitsEnabled",true};
  775. {"UpperAngle",50};
  776. {"LowerAngle",-50};
  777. })
  778. end
  779. local NeckA = ragdollJoint(character,character.UpperTorso, character.Head, "Neck", "Hinge", {
  780. {"LimitsEnabled",true};
  781. {"UpperAngle",50};
  782. {"LowerAngle",-50};
  783. })
  784.  
  785. recurse(character, function(_,v)
  786. if v:IsA("Attachment") then
  787. v.Axis = Vector3.new(0, 1, 0)
  788. v.SecondaryAxis = Vector3.new(0, 0, 1)
  789. v.Rotation = Vector3.new(0, 0, 0)
  790. if(v.Parent == character.Head and snapped)then
  791. v.Orientation = V3.N(0,-90,0)
  792. end
  793. end
  794. end)
  795. end
  796. end)
  797. end
  798.  
  799.  
  800. function Bezier(startpos, pos2, pos3, endpos, t)
  801. local A = startpos:lerp(pos2, t)
  802. local B = pos2:lerp(pos3, t)
  803. local C = pos3:lerp(endpos, t)
  804. local lerp1 = A:lerp(B, t)
  805. local lerp2 = B:lerp(C, t)
  806. local cubic = lerp1:lerp(lerp2, t)
  807. return cubic
  808. end
  809.  
  810. function Effect(data)
  811. local FX = data.Effect or 'Resize-AndFade'
  812. local Parent = data.Parent or Effects
  813. local Color = data.Color or C3.N(0,0,0)
  814. local Size = data.Size or V3.N(1,1,1)
  815. local MoveDir = data.MoveDirection or nil
  816. local MeshData = data.Mesh or nil
  817. local SndData = data.Sound or nil
  818. local Frames = data.Frames or 45
  819. local Manual = data.Manual or nil
  820. local Material = data.Material or nil
  821. local CFra = data.CFrame or Torso.CFrame
  822. local Settings = data.FXSettings or {}
  823. local Snd,Prt,Msh;
  824. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  825. Prt = Manual
  826. else
  827. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  828. end
  829. if(typeof(MeshData) == 'table')then
  830. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  831. elseif(typeof(MeshData) == 'Instance')then
  832. Msh = MeshData:Clone()
  833. Msh.Parent = Prt
  834. end
  835. if(typeof(SndData) == 'table' or typeof(SndData) == 'Instance')then
  836. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  837. end
  838. if(Snd)then
  839. repeat wait() until Snd.Playing and Snd.IsLoaded and Snd.TimeLength > 0
  840. Frames = Snd.TimeLength * Frame_Speed/Snd.Pitch
  841. end
  842. local MoveSpeed = nil;
  843. if(MoveDir)then
  844. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  845. end
  846. local Inc = M.RNG()-M.RNG()
  847. local Thingie = 0
  848. local Thingie2 = M.RNG(50,100)/100
  849.  
  850. coroutine.wrap(function()
  851. if(FX ~= 'Arc')then
  852. for i = 1, Frames do
  853. if(FX == 'Resize-AndFade')then
  854. if(not Settings.EndSize)then
  855. Settings.EndSize = V3.N(0,0,0)
  856. end
  857. local grow = (typeof(Settings.EndSize) == 'Vector3' and Settings.EndSize-Size or typeof(Settings.EndSize) == 'number' and V3.N(Settings.EndSize))
  858. if(Settings.EndIsIncrement)then
  859. Prt.Size = Prt.Size - Settings.EndSize
  860. else
  861. Prt.Size = Prt.Size - grow/Frames
  862. end
  863. Prt.Transparency = (i/Frames)
  864. elseif(FX == 'Resize+AndFade')then
  865. if(not Settings.EndSize)then
  866. Settings.EndSize = Size*2
  867. end
  868. local grow = (typeof(Settings.EndSize) == 'Vector3' and Settings.EndSize-Size or typeof(Settings.EndSize) == 'number' and V3.N(Settings.EndSize))
  869. if(Settings.EndIsIncrement)then
  870. Prt.Size = Prt.Size + Settings.EndSize
  871. else
  872. Prt.Size = Prt.Size + grow/Frames
  873. end
  874. Prt.Transparency = (i/Frames)
  875. elseif(FX == 'Fade')then
  876. Prt.Transparency = (i/Frames)
  877. end
  878. if(Settings.RandomizeCFrame)then
  879. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  880. end
  881. if(MoveDir and MoveSpeed)then
  882. local Orientation = Prt.Orientation
  883. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  884. Prt.Orientation = Orientation
  885. end
  886. if(swait and typeof(swait) == 'function')then
  887. swait()
  888. else
  889. wait()
  890. end
  891. end
  892. Prt:destroy()
  893. else
  894. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  895. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  896. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  897. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  898. assert(start ~= nil,"You need to specify a start point!")
  899. assert(endP ~= nil,"You need to specify an end point!")
  900. for i = 0, 1, Settings.Speed or 0.01 do
  901. if(Settings.Home)then
  902. endP = Settings.Home.CFrame
  903. end
  904. Prt.CFrame = Bezier(start, quarter, threequarter, endP, i)
  905. if(swait and typeof(swait) == 'function')then
  906. swait()
  907. else
  908. wait()
  909. end
  910. end
  911. if(Settings.RemoveOnGoal)then
  912. Prt:destroy()
  913. end
  914. end
  915. end)()
  916. return Prt,Msh,Snd
  917. end
  918.  
  919.  
  920. function SoulSteal(character)
  921. local torso = (character:FindFirstChild'Head' or character:FindFirstChild'Torso' or character:FindFirstChild'UpperTorso' or character:FindFirstChild'LowerTorso' or character:FindFirstChild'HumanoidRootPart')
  922. print(torso)
  923. if(torso and torso:IsA'BasePart')then
  924. local Model = Instance.new("Model",Effects)
  925. Model.Name = character.Name.."'s Soul"
  926. character:BreakJoints()
  927. local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  928. Soul.Name = 'Head'
  929. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  930. Effect{
  931. Effect="Arc",
  932. Manual = Soul,
  933. FXSettings={
  934. Start=torso.CFrame,
  935. Home = Torso,
  936. RemoveOnGoal = true,
  937. }
  938. }
  939. local lastPoint = Soul.CFrame.p
  940.  
  941. for i = 0, 1, 0.01 do
  942. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  943. local mag = (lastPoint - Soul.Position).magnitude
  944. Effect{
  945. Effect = "Fade",
  946. CFrame = point * CF.N(0, mag/2, 0),
  947. Size = V3.N(.5,mag+.5,.5),
  948. Color = Soul.BrickColor
  949. }
  950. lastPoint = Soul.CFrame.p
  951. swait()
  952. end
  953. for i = 1, 5 do
  954. Effect{
  955. Effect="Fade",
  956. Color = BrickColor.new'Really red',
  957. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  958. }
  959. end
  960. end
  961. end
  962.  
  963. --// Other Functions \\ --
  964.  
  965. function getRegion(point,range,ignore)
  966. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  967. end
  968.  
  969. function clerp(startCF,endCF,alpha)
  970. return startCF:lerp(endCF, alpha)
  971. end
  972.  
  973. function GetTorso(char)
  974. return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso'
  975. end
  976.  
  977.  
  978.  
  979. function ShowDamage(Pos, Text, Time, Color)
  980. coroutine.wrap(function()
  981. local Rate = (1 / 30)
  982. local Pos = (Pos or Vector3.new(0, 0, 0))
  983. local Text = (Text or "")
  984. local Time = (Time or 2)
  985. local Color = (Color or Color3.new(1, 0, 1))
  986. local EffectPart = NewInstance("Part",Effects,{
  987. Material=Enum.Material.SmoothPlastic,
  988. RArmlectance = 0,
  989. Transparency = 1,
  990. BrickColor = BrickColor.new(Color),
  991. Name = "Effect",
  992. Size = Vector3.new(0,0,0),
  993. Anchored = true
  994. })
  995. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  996. Size = UDim2.new(1.25, 0, 1.25, 0),
  997. Adornee = EffectPart,
  998. })
  999. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  1000. BackgroundTransparency = 1,
  1001. Size = UDim2.new(1, 0, 1, 0),
  1002. Text = Text,
  1003. Font = "Arial",
  1004. TextColor3 = Color,
  1005. TextStrokeColor3 = Color3.new(0,0,0),
  1006. TextStrokeTransparency=0,
  1007. TextScaled = true,
  1008. })
  1009. game.Debris:AddItem(EffectPart, (Time))
  1010. EffectPart.Parent = game:GetService("Workspace")
  1011. delay(0, function()
  1012. local Frames = (Time / Rate)
  1013. for Frame = 1, Frames do
  1014. wait(Rate)
  1015. local Percent = (Frame / Frames)
  1016. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  1017. TextLabel.TextTransparency = Percent
  1018. TextLabel.TextStrokeTransparency = Percent
  1019. end
  1020. if EffectPart and EffectPart.Parent then
  1021. EffectPart:Destroy()
  1022. end
  1023. end) end)()
  1024. end
  1025.  
  1026.  
  1027. function DealDamage(who,minDam,maxDam,Knock,Type,critChance,critMult)
  1028. if(who)then
  1029. local hum = who:FindFirstChildOfClass'Humanoid'
  1030. local Damage = M.RNG(minDam,maxDam)
  1031. local canHit = true
  1032. if(hum)then
  1033. for _, p in pairs(Hit) do
  1034. if p[1] == hum then
  1035. if(time() - p[2] < 0.1) then
  1036. canHit = false
  1037. else
  1038. Hit[_] = nil
  1039. end
  1040. end
  1041. end
  1042. if(canHit)then
  1043. if(hum.Health >= math.huge)then
  1044. who:BreakJoints()
  1045. if(who:FindFirstChild'Head' and hum.Health > 0)then
  1046. ShowDamage((who.Head.CFrame * CF.N(0, 0, (who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), "INSTANT", 1.5, C3.N(1,0,0))
  1047. end
  1048. else
  1049. local player = S.Players:GetPlayerFromCharacter(who)
  1050. if(Type == "Fire")then
  1051. --idk..
  1052. else
  1053. local c = Instance.new("ObjectValue",hum)
  1054. c.Name = "creator"
  1055. c.Value = Plr
  1056. game:service'Debris':AddItem(c,0.35)
  1057. if(M.RNG(1,100) <= (critChance or 0))then
  1058. if(who:FindFirstChild'Head' and hum.Health > 0)then
  1059. ShowDamage((who.Head.CFrame * CF.N(0, 0, (who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), "[CRIT] "..Damage*(critMult or 2), 1.5, BrickColor.new'New Yeller'.Color)
  1060. end
  1061. hum.Health = hum.Health - Damage*(critMult or 2)
  1062. else
  1063. if(who:FindFirstChild'Head' and hum.Health > 0)then
  1064. ShowDamage((who.Head.CFrame * CF.N(0, 0, (who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), Damage, 1.5, DamageColor.Color)
  1065. end
  1066. hum.Health = hum.Health - Damage
  1067. end
  1068. if(Type == 'Knockback' and GetTorso(who))then
  1069. local angle = GetTorso(who).Position - Root.Position + Vector3.new(0, 0, 0).unit
  1070. local body = NewInstance('BodyVelocity',GetTorso(who),{
  1071. P = 500,
  1072. maxForce = V3.N(math.huge,0,math.huge),
  1073. velocity = Root.CFrame.lookVector * Knock + Root.Velocity / 1.05
  1074. })
  1075. game:service'Debris':AddItem(body,.5)
  1076. elseif(Type == 'Knockdown' and GetTorso(who))then
  1077. local rek = GetTorso(who)
  1078. print(rek)
  1079. hum.PlatformStand = true
  1080. delay(1,function()
  1081. hum.PlatformStand = false
  1082. end)
  1083. local angle = (GetTorso(who).Position - (Root.Position + Vector3.new(0, 0, 0))).unit
  1084. local bodvol = NewInstance("BodyVelocity",rek,{
  1085. velocity = angle * Knock,
  1086. P = 5000,
  1087. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  1088. })
  1089. local rl = NewInstance("BodyAngularVelocity",rek,{
  1090. P = 3000,
  1091. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  1092. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  1093. })
  1094. game:GetService("Debris"):AddItem(bodvol, .5)
  1095. game:GetService("Debris"):AddItem(rl, .5)
  1096. end
  1097. end
  1098. end
  1099. end
  1100. table.insert(Hit,{hum,time()})
  1101. end
  1102. end
  1103. end
  1104.  
  1105. function AOEDamage(where,range,minDam,maxDam,Knock,Type)
  1106. for _,v in next, getRegion(where,range,{Char}) do
  1107. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')then
  1108. DealDamage(v.Parent,minDam,maxDam,Knock,Type)
  1109. end
  1110. end
  1111. end
  1112.  
  1113. function AOEFunction(where,range,callback)
  1114. for _,v in next, getRegion(where,range,{Char}) do
  1115. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')then
  1116. callback(v.Parent)
  1117. end
  1118. end
  1119. end
  1120.  
  1121. function ClosestHumanoid(pos,range)
  1122. local mag,closest = math.huge;
  1123. for _,v in next, getRegion(pos,range or 10,{Char}) do
  1124. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')
  1125. if((v.CFrame.p-pos).magnitude < mag and hum and closest ~= hum and hum.Health > 0)then
  1126. mag = (v.CFrame.p-pos).magnitude
  1127. closest = hum
  1128. end
  1129. end
  1130. return closest,(closest and GetTorso(closest.Parent) or nil)
  1131. end
  1132.  
  1133. function AOEHeal(where,range,amount)
  1134. local healed = {}
  1135. for _,v in next, getRegion(where,range,{Char}) do
  1136. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  1137. if(hum and not healed[hum])then
  1138. hum.Health = hum.Health + amount
  1139. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  1140. ShowDamage((v.Parent.Head.CFrame * CF.N(0, 0, (v.Parent.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), "+"..amount, 1.5, BrickColor.new'Really red'.Color)
  1141. end
  1142. end
  1143. end
  1144. end
  1145. --// Attack Function \\--
  1146.  
  1147. function Equip_Sawblade()
  1148. for i = 1, 5 do
  1149. Effect{
  1150. Effect='Resize+AndFade',
  1151. Color = BrickColor.new'Really red',
  1152. Material = Enum.Material.Neon,
  1153. Size=V3.N(3.5,3.5,3.5),
  1154. CFrame=RArm.CFrame*CF.N(0,-1,0)*CF.A(M.RRNG(0,180),M.RRNG(0,180),M.RRNG(0,180)),
  1155. FXSettings={
  1156. EndSize=V3.N(.05,.05,.05),
  1157. EndIsIncrement=true,
  1158.  
  1159. }
  1160. }
  1161. end
  1162. local prt = Part(Char,BrickColor.new'Really red',Enum.Material.SmoothPlastic,V3.N(3.42, 3.42, 0.05),CF.N(),false,false)
  1163. prt.Transparency = .5
  1164. local mesh = Mesh(prt,Enum.MeshType.FileMesh,"rbxassetid://74322089","",V3.N(3,3,3),V3.N())
  1165. local weld = NewInstance("Weld",Char,{Part0=RArm,Part1=prt,C0=CF.N(0,-1.25,0)})
  1166. return prt,weld
  1167. end
  1168.  
  1169. function The_Necc()
  1170. local humanoid, torso = ClosestHumanoid(Torso.CFrame.p,5)
  1171. if(torso)then
  1172. local who = torso.Parent
  1173. Attack = true
  1174. NeutralAnims = false
  1175. who.Parent = Char
  1176. local oRoot
  1177. pcall(function() oRoot = who.HumanoidRootPart; oRoot.Parent = nil end)
  1178. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,0,-1.25)})
  1179. for i = 0, 4, 0.1 do
  1180. swait()
  1181. humanoid.PlatformStand = true
  1182. local Alpha = .15
  1183. RJ.C0 = clerp(RJ.C0,CFrame.new(7.78455425e-13, 0.00629367586, -2.39849396e-06, 0.99999243, 1.23691279e-10, 0, 1.90985006e-11, 0.99998045, -0.00628617778, 9.31322575e-10, 0.00628614007, 0.999973059),Alpha)
  1184. LH.C0 = clerp(LH.C0,CFrame.new(-0.496486545, -0.990821958, 0.021611277, 0.999870956, 1.90985006e-11, 0.0156118907, -9.81391422e-05, 0.99998045, 0.00628537685, -0.0156115862, -0.00628617778, 0.999851584),Alpha)
  1185. RH.C0 = clerp(RH.C0,CFrame.new(0.498530418, -0.990985394, 0.0154574998, 0.999870956, 1.90985006e-11, 0.0156118907, -9.81391422e-05, 0.99998045, 0.00628537685, -0.0156115862, -0.00628617778, 0.999851584),Alpha)
  1186. LS.C0 = clerp(LS.C0,CFrame.new(-1.0486517, 0.929213107, -0.824554026, 0.712753832, -0.694763601, -0.0963225588, 0.0692147464, 0.206324935, -0.976032555, 0.697985768, 0.689004064, 0.195146814),Alpha)
  1187. RS.C0 = clerp(RS.C0,CFrame.new(0.386394978, 1.64370263, -1.084023, -0.617445648, -0.751786709, -0.231452331, -0.0510570146, 0.331923157, -0.941923738, 0.784950197, -0.569769561, -0.243328467),Alpha)
  1188. NK.C0 = clerp(NK.C0,CFrame.new(8.16636839e-06, 1.49895489, -0.0144007429, 0.99999243, 3.67523171e-07, -1.61118805e-07, -3.56405508e-07, 0.997965038, 0.0637686625, 1.8440187e-07, -0.0637682825, 0.997957468),Alpha)
  1189. end
  1190. gWeld:destroy()
  1191. if(who:FindFirstChild'Head')then
  1192. local s = Sound(who:FindFirstChild'Head',1093102664,1,2,false,false,false)
  1193. s:Play()
  1194. s.Ended:connect(function() s:Destroy() end)
  1195. end
  1196. who.Parent = workspace
  1197. humanoid.Health = 0
  1198. Ragdoll(who,false,true)
  1199. for i = 0, 1.5, 0.1 do
  1200. swait()
  1201. humanoid.PlatformStand = true
  1202. local Alpha = .3
  1203. RJ.C0 = clerp(RJ.C0,CFrame.new(7.78455425e-13, 0.00629367586, -2.39849396e-06, 0.99999243, 1.23691279e-10, 0, 1.90985006e-11, 0.99998045, -0.00628617778, 9.31322575e-10, 0.00628614007, 0.999973059),Alpha)
  1204. LH.C0 = clerp(LH.C0,CFrame.new(-0.496486545, -0.990821958, 0.021611277, 0.999870956, 1.90985006e-11, 0.0156118907, -9.81391422e-05, 0.99998045, 0.00628537685, -0.0156115862, -0.00628617778, 0.999851584),Alpha)
  1205. RH.C0 = clerp(RH.C0,CFrame.new(0.498530418, -0.990985394, 0.0154574998, 0.999870956, 1.90985006e-11, 0.0156118907, -9.81391422e-05, 0.99998045, 0.00628537685, -0.0156115862, -0.00628617778, 0.999851584),Alpha)
  1206. LS.C0 = clerp(LS.C0,CFrame.new(-1.47842193, 0.485131323, -0.0262347199, 0.0664671659, 0.993123412, -0.0963359103, -0.201927185, -0.0811635256, -0.976031899, -0.977139056, 0.0843269154, 0.195143938),Alpha)
  1207. RS.C0 = clerp(RS.C0,CFrame.new(2.33067179, 0.249403879, 0.270489573, 0.171869993, 0.978404701, -0.114792682, 0.105083257, -0.134070903, -0.985384524, -0.979495406, 0.157295257, -0.125856698),Alpha)
  1208. NK.C0 = clerp(NK.C0,CFrame.new(8.16636839e-06, 1.49895489, -0.0144007429, 0.99999243, 3.67523171e-07, -1.61118805e-07, -3.56405508e-07, 0.997965038, 0.0637686625, 1.8440187e-07, -0.0637682825, 0.997957468),Alpha)
  1209. end
  1210. Attack = false
  1211. NeutralAnims = true
  1212. end
  1213. end
  1214.  
  1215. function Hands_Off()
  1216. local humanoid, torso = ClosestHumanoid(Torso.CFrame.p,5)
  1217.  
  1218. if(torso)then
  1219. local who = torso.Parent
  1220. local doAttack = false
  1221. Instance.AllChildren(who,function(v)
  1222. if(v.Name:lower():find"arm")then
  1223. doAttack = true
  1224. end
  1225. end, true)
  1226. if(not doAttack)then return end
  1227. Hum.WalkSpeed = 0
  1228. Hum.JumpPower = 0
  1229. Attack = true
  1230. NeutralAnims = false
  1231. who.Parent = Char
  1232. local oRoot
  1233. pcall(function() oRoot = who.HumanoidRootPart; oRoot.Parent = nil end)
  1234. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,0,-1.25)})
  1235. for i = 0, 4, 0.1 do
  1236. swait()
  1237. humanoid.PlatformStand = true
  1238. local Alpha = .15
  1239. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20564755e-13, 0.00629412755, 1.41908095e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1240. LH.C0 = clerp(LH.C0,CFrame.new(-0.496493757, -0.990819633, 0.021611426, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1241. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990984261, 0.0154613676, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1242. LS.C0 = clerp(LS.C0,CFrame.new(-1.42285931, 0.338565946, -0.110074639, 0.983876407, 0.1786367, 0.00868223887, -0.0932332501, 0.553717494, -0.827468753, -0.152623802, 0.813317537, 0.561444461),Alpha)
  1243. RS.C0 = clerp(RS.C0,CFrame.new(1.374735, 0.282860518, -0.133752465, 0.973415911, -0.228878334, 0.00868532527, 0.135509402, 0.544919252, -0.827466309, 0.184656292, 0.806645751, 0.561448157),Alpha)
  1244. NK.C0 = clerp(NK.C0,CFrame.new(8.16625652e-06, 1.49895275, -0.014400661, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1245. end
  1246. local RABC = (who:FindFirstChild'Right Arm' or who:FindFirstChild'RightUpperArm' or who:FindFirstChild'RightLowerArm' or who:FindFirstChild'RightHand' or IN("Part")).BrickColor
  1247. local LABC = (who:FindFirstChild'Left Arm' or who:FindFirstChild'LeftUpperArm' or who:FindFirstChild'LeftLowerArm' or who:FindFirstChild'LeftHand' or IN("Part")).BrickColor
  1248. Sound(torso,1093102664,.85,5,false,true,true)
  1249. Sound(torso,429400881,1,1,false,true,true)
  1250. FRArm = NewInstance('Part',Effects,{Size=V3.N(1,2,1),BrickColor=RABC,Material='Plastic',CanCollide=false,Anchored=false,Locked=true})
  1251. Mesh(FRArm,Enum.MeshType.FileMesh,"rbxasset://fonts/rightarm.mesh","",V3.N(1,1,1),V3.N())
  1252. FLArm = NewInstance('Part',Effects,{Size=V3.N(1,2,1),BrickColor=LABC,Material='Plastic',CanCollide=false,Anchored=false,Locked=true})
  1253. Mesh(FLArm,Enum.MeshType.FileMesh,"rbxasset://fonts/leftarm.mesh","",V3.N(1,1,1),V3.N())
  1254. FRArmW = NewInstance('Weld',FRArm,{Part0=RArm,Part1=FRArm,C0=CF.N(0,-1,0)*CF.A(M.R(90),0,0)})
  1255. FLArmW = NewInstance('Weld',FLArm,{Part0=LArm,Part1=FLArm,C0=CF.N(0,-1,0)*CF.A(M.R(90),0,0)})
  1256. Instance.AllChildren(who,function(v)
  1257. if(v.Name:lower():find"arm" or v.Name:lower():find"hand")then
  1258. v:destroy()
  1259. end
  1260. end, true)
  1261. if(not VoidSB)then
  1262. coroutine.wrap(function()
  1263. repeat swait()
  1264. BloodDrop(torso.CFrame * CF.N(-.5,.5,0).p,torso.CFrame * CF.N(-1,.5,0).p,15)
  1265. BloodDrop(torso.CFrame * CF.N(.5,.5,0).p,torso.CFrame * CF.N(1,.5,0).p,15)
  1266. humanoid.Health = humanoid.Health - 0.5 until not who or not who.Parent or not humanoid.Parent
  1267. humanoid.Health = 0
  1268. end)()
  1269. else
  1270. coroutine.wrap(function()
  1271. repeat swait() humanoid.Health = humanoid.Health - 0.5 until not who or not who.Parent or not humanoid.Parent
  1272. humanoid.Health = 0
  1273. end)()
  1274.  
  1275. local prt1,prtcl1 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1276. local prt2,prtcl2 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1277. prt1.Parent = torso;
  1278. prt2.Parent = torso;
  1279. local prt1W = NewInstance('Weld',torso,{Part0=prt1,Part1=torso,C0=CF.N(0,-.5,-1.25)*CF.A(0,M.R(90),0)})
  1280. local prt2W = NewInstance('Weld',torso,{Part0=prt2,Part1=torso,C0=CF.N(0,-.5,-1.25)*CF.A(0,M.R(-90),0)})
  1281. end
  1282.  
  1283. humanoid.Died:connect(function()
  1284. Ragdoll(who)
  1285. end)
  1286. who.Parent = workspace
  1287.  
  1288. local prt1,prtcl1 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1289. local prt2,prtcl2 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1290. prt1.Parent = FRArm;
  1291. prt2.Parent = FLArm;
  1292. local prt1W = NewInstance('Weld',FRArm,{Part0=prt1,Part1=FRArm,C0=CF.N(0,0,0)*CF.A(0,M.R(90),0)})
  1293. local prt2W = NewInstance('Weld',FLArm,{Part0=prt2,Part1=FLArm,C0=CF.N(0,0,0)*CF.A(0,M.R(-90),0)})
  1294. gWeld:destroy()
  1295. humanoid.PlatformStand = false
  1296. if(oRoot)then
  1297. oRoot.Parent = who
  1298. if(who:FindFirstChild('RootJoint',true))then
  1299. oRoot.RootJoint.Part0 = oRoot
  1300. oRoot.RootJoint.Part1 = torso
  1301. else
  1302. humanoid:BuildRigFromAttachments()
  1303. end
  1304. end
  1305.  
  1306.  
  1307. for i = 0, 3, 0.1 do
  1308. swait()
  1309. local Alpha = .15
  1310. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20564755e-13, 0.00629412755, 1.41908095e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1311. LH.C0 = clerp(LH.C0,CFrame.new(-0.496493757, -0.990819633, 0.021611426, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1312. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990984261, 0.0154613676, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1313. LS.C0 = clerp(LS.C0,CFrame.new(-1.25778806, 0.320386261, -0.139421374, 0.690939784, 0.722859621, 0.00868486147, -0.400907725, 0.393146276, -0.827471495, -0.601560116, 0.568251252, 0.561440408),Alpha)
  1314. RS.C0 = clerp(RS.C0,CFrame.new(1.39739037, 0.354236364, -0.0289047062, 0.709462166, -0.704689503, 0.00868486147, 0.400770277, 0.393286407, -0.827471495, 0.579694867, 0.59054029, 0.561440408),Alpha)
  1315. NK.C0 = clerp(NK.C0,CFrame.new(8.16625652e-06, 1.49895275, -0.014400661, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1316. end
  1317. Hum.WalkSpeed = 16
  1318. Hum.JumpPower = 50
  1319. Attack = false
  1320. NeutralAnims = true
  1321. end
  1322. end
  1323. function ScrewMe()
  1324. Attack = true
  1325. NeutralAnims = false
  1326. for i = 0, 2, 0.1 do
  1327. swait()
  1328. local Alpha = .15
  1329. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.000601041073, 0.0062919003, -0.000300966523, 0.994017541, 0.000686608837, 0.109214716, 0, 0.99998033, -0.00628665462, -0.109216876, 0.00624904549, 0.993997931),Alpha)
  1330. LH.C0 = clerp(LH.C0,CFrame.new(-0.502559602, -0.990627766, 0.0518152229, 0.995601892, 0, -0.0936849937, 0.000588965253, 0.99998033, 0.00625900552, 0.0936831385, -0.00628665462, 0.995582223),Alpha)
  1331. RH.C0 = clerp(RH.C0,CFrame.new(0.501642942, -0.991074204, 0.000842738897, 0.995601892, 0, -0.0936849937, 0.000588965253, 0.99998033, 0.00625900552, 0.0936831385, -0.00628665462, 0.995582223),Alpha)
  1332. LS.C0 = clerp(LS.C0,CFrame.new(-1.12979531, 0.241689205, 0.149894863, 0.813591897, -0.571708977, 0.105910838, 0.505802035, 0.785755217, 0.356024235, -0.286762208, -0.236088455, 0.928455591),Alpha)
  1333. RS.C0 = clerp(RS.C0,CFrame.new(1.41494429, 0.493437499, 0.00856034085, 0.986078084, -0.165549055, 0.0156079903, 0.165468931, 0.986195028, 0.00630042888, -0.0164355561, -0.0036300756, 0.99985832),Alpha)
  1334. NK.C0 = clerp(NK.C0,CFrame.new(-0.272200465, 1.60343766, -0.0909831151, -0.271778286, -0.29597038, 0.915717363, -0.178016067, 0.950573504, 0.254402429, -0.945752025, -0.0938713551, -0.311032623),Alpha)
  1335. end
  1336. local screwdriver = Part(Char,BrickColor.new'Really black',Enum.Material.SmoothPlastic,V3.N(2.158,0.29,0.312),RArm.CFrame,false,false)
  1337. local driverMesh = Mesh(screwdriver,Enum.MeshType.FileMesh,"rbxassetid://70265804","rbxassetid://70265794",V3.N(1,.5,.5),V3.N())
  1338. local driverWeld = NewInstance("Weld",Char,{Part0=LArm,Part1=screwdriver,C0=CF.N(0,-1.15,0)})
  1339. for i = 1, 3 do
  1340. for i = 0, 2, 0.1 do
  1341. swait()
  1342. local Alpha = .15
  1343. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.000597249367, 0.00629166188, -0.000301384629, 0.994017541, 0.000686608837, 0.109214716, 0, 0.99998033, -0.00628665462, -0.109216876, 0.00624904549, 0.993997931),Alpha)
  1344. LH.C0 = clerp(LH.C0,CFrame.new(-0.502559602, -0.990627766, 0.0518152229, 0.995601892, 0, -0.0936849937, 0.000588965253, 0.99998033, 0.00625900552, 0.0936831385, -0.00628665462, 0.995582223),Alpha)
  1345. RH.C0 = clerp(RH.C0,CFrame.new(0.501639128, -0.991074204, 0.000842381269, 0.995601892, 0, -0.0936849937, 0.000588965253, 0.99998033, 0.00625900552, 0.0936831385, -0.00628665462, 0.995582223),Alpha)
  1346. LS.C0 = clerp(LS.C0,CFrame.new(-0.971063137, 0.544531465, -0.856619298, 0.824469268, -0.565411985, 0.0236563906, 0.239681676, 0.311018854, -0.919684827, 0.512643158, 0.763921857, 0.391944379),Alpha)
  1347. RS.C0 = clerp(RS.C0,CFrame.new(1.36865759, 0.434063494, -0.243990004, 0.943695724, 0.286517411, 0.165366411, 0.0948955566, 0.244413704, -0.965016603, -0.316911817, 0.926374555, 0.203462943),Alpha)
  1348. NK.C0 = clerp(NK.C0,CFrame.new(0.309692234, 1.56599295, -0.184076563, 0.752268493, 0.275064707, -0.598691583, 0.0132474303, 0.902184188, 0.431147963, 0.658723474, -0.332270145, 0.675040722),Alpha)
  1349. driverWeld.C0 = clerp(driverWeld.C0,CFrame.new(0.754458785, -0.945940197, 0.0140114268, -0.867547691, -0.497354031, 8.15391541e-05, -7.91847706e-05, 0.00030207634, 1, -0.49735406, 0.867547691, -0.000301415101),Alpha)
  1350. end
  1351. for i = 0, 2, 0.1 do
  1352. swait()
  1353. local Alpha = .15
  1354. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.000597249367, 0.00629166188, -0.000301384629, 0.994017541, 0.000686608837, 0.109214716, 0, 0.99998033, -0.00628665462, -0.109216876, 0.00624904549, 0.993997931),Alpha)
  1355. LH.C0 = clerp(LH.C0,CFrame.new(-0.502559602, -0.990627766, 0.0518152229, 0.995601892, 0, -0.0936849937, 0.000588965253, 0.99998033, 0.00625900552, 0.0936831385, -0.00628665462, 0.995582223),Alpha)
  1356. RH.C0 = clerp(RH.C0,CFrame.new(0.501639128, -0.991074204, 0.000842381269, 0.995601892, 0, -0.0936849937, 0.000588965253, 0.99998033, 0.00625900552, 0.0936831385, -0.00628665462, 0.995582223),Alpha)
  1357. LS.C0 = clerp(LS.C0,CFrame.new(-0.952282608, 0.388567954, -0.813911676, 0.824469686, -0.527844906, 0.204033226, 0.23967658, -0.000909555703, -0.970852435, 0.512645066, 0.849340379, 0.12576215),Alpha)
  1358. RS.C0 = clerp(RS.C0,CFrame.new(1.36865759, 0.434063494, -0.243990004, 0.943695724, 0.286517411, 0.165366411, 0.0948955566, 0.244413704, -0.965016603, -0.316911817, 0.926374555, 0.203462943),Alpha)
  1359. NK.C0 = clerp(NK.C0,CFrame.new(0.309692234, 1.56599295, -0.184076563, 0.752268493, 0.275064707, -0.598691583, 0.0132474303, 0.902184188, 0.431147963, 0.658723474, -0.332270145, 0.675040722),Alpha)
  1360. driverWeld.C0 = clerp(driverWeld.C0,CFrame.new(0.75445646, -0.891306043, 0.317142308, -0.867489815, -0.183382571, -0.462420344, -0.159916192, -0.777427077, 0.608304381, -0.471050501, 0.601646185, 0.645084083),Alpha)
  1361. end
  1362. end
  1363. for i = 0, 2, 0.1 do
  1364. swait()
  1365. local Alpha = .15
  1366. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.000601041073, 0.0062919003, -0.000300966523, 0.994017541, 0.000686608837, 0.109214716, 0, 0.99998033, -0.00628665462, -0.109216876, 0.00624904549, 0.993997931),Alpha)
  1367. LH.C0 = clerp(LH.C0,CFrame.new(-0.502559602, -0.990627766, 0.0518152229, 0.995601892, 0, -0.0936849937, 0.000588965253, 0.99998033, 0.00625900552, 0.0936831385, -0.00628665462, 0.995582223),Alpha)
  1368. RH.C0 = clerp(RH.C0,CFrame.new(0.501642942, -0.991074204, 0.000842738897, 0.995601892, 0, -0.0936849937, 0.000588965253, 0.99998033, 0.00625900552, 0.0936831385, -0.00628665462, 0.995582223),Alpha)
  1369. LS.C0 = clerp(LS.C0,CFrame.new(-1.12979531, 0.241689205, 0.149894863, 0.813591897, -0.571708977, 0.105910838, 0.505802035, 0.785755217, 0.356024235, -0.286762208, -0.236088455, 0.928455591),Alpha)
  1370. RS.C0 = clerp(RS.C0,CFrame.new(1.41494429, 0.493437499, 0.00856034085, 0.986078084, -0.165549055, 0.0156079903, 0.165468931, 0.986195028, 0.00630042888, -0.0164355561, -0.0036300756, 0.99985832),Alpha)
  1371. NK.C0 = clerp(NK.C0,CFrame.new(-0.272200465, 1.60343766, -0.0909831151, -0.271778286, -0.29597038, 0.915717363, -0.178016067, 0.950573504, 0.254402429, -0.945752025, -0.0938713551, -0.311032623),Alpha)
  1372. end
  1373. screwdriver:destroy()
  1374. Attack = false
  1375. NeutralAnims = true
  1376. end
  1377. function SliceYou()
  1378. Attack = true
  1379. NeutralAnims = false
  1380. local saw,weld = Equip_Sawblade()
  1381. for i = 0, 2, 0.1 do
  1382. swait()
  1383. local Alpha = .15
  1384. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0029785831, 0.00629174896, 0.00529580005, 0.517270923, -0.00537902303, -0.855804324, 0, 0.99998033, -0.00628521619, 0.855821192, 0.00325116003, 0.517260671),Alpha)
  1385. LH.C0 = clerp(LH.C0,CFrame.new(-0.524694026, -0.992068648, -0.177415758, 0.503846943, 0, 0.863792896, -0.00542912632, 0.99998033, 0.00316678779, -0.863775849, -0.00628521619, 0.503836989),Alpha)
  1386. RH.C0 = clerp(RH.C0,CFrame.new(0.863649905, -0.990154982, 0.147100359, 0.503846943, 0, 0.863792896, -0.00542912632, 0.99998033, 0.00316678779, -0.863775849, -0.00628521619, 0.503836989),Alpha)
  1387. LS.C0 = clerp(LS.C0,CFrame.new(-1.15776694, 0.555799365, -0.115642846, -0.0494773015, 0.838752568, -0.54226011, -0.986161113, -0.127040714, -0.106522933, -0.15823549, 0.529485285, 0.833430767),Alpha)
  1388. RS.C0 = clerp(RS.C0,CFrame.new(1.41811252, 0.715449214, 0.00713690743, 0.924166977, -0.38166979, 0.0156050026, 0.381617904, 0.924298882, 0.00629791059, -0.0168274939, 0.00013487041, 0.999858379),Alpha)
  1389. NK.C0 = clerp(NK.C0,CFrame.new(-0.0103359073, 1.49896884, -0.0121970959, 0.517271042, -0.0492044352, 0.854405463, -0.00537938019, 0.998139322, 0.0607386976, -0.855804205, -0.0360145383, 0.516043782),Alpha)
  1390. end
  1391. for i = 0, 3, 0.1 do
  1392. swait()
  1393. local Alpha = .3
  1394. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0750166476, 0.00629172707, 0.115993313, -0.407934308, 0.00573777966, 0.912992895, 0, 0.99998033, -0.00628445856, -0.913010895, -0.00256364676, -0.407926261),Alpha)
  1395. LH.C0 = clerp(LH.C0,CFrame.new(-0.702545583, -0.991440296, -0.0774632096, -0.393630832, 0, -0.919268608, 0.00577710615, 0.99998033, -0.00247375714, 0.919250488, -0.00628445856, -0.393623054),Alpha)
  1396. RH.C0 = clerp(RH.C0,CFrame.new(0.572302818, -0.991491556, -0.0655612499, -0.393630832, 0, -0.919268608, 0.00577710615, 0.99998033, -0.00247375714, 0.919250488, -0.00628445856, -0.393623054),Alpha)
  1397. LS.C0 = clerp(LS.C0,CFrame.new(-1.42436278, 0.674626052, -0.273927838, 0.816972971, 0.196224883, -0.54226476, -0.298526257, 0.948434591, -0.106555678, 0.493393689, 0.248933315, 0.833423615),Alpha)
  1398. RS.C0 = clerp(RS.C0,CFrame.new(1.39865923, 0.565930247, 0.00839936361, -0.125458091, -0.991975904, 0.0156244934, 0.992089748, -0.125373363, 0.00629395852, -0.00428455323, 0.0162905455, 0.99985826),Alpha)
  1399. NK.C0 = clerp(NK.C0,CFrame.new(0.141048998, 1.4988662, -0.0285577606, -0.407934487, 0.0524925366, -0.911500514, 0.0057374211, 0.998473644, 0.054933507, 0.912992835, 0.0171796028, -0.40761295),Alpha)
  1400. end
  1401. local sound = Sound(Torso,367720620,false,false,false)
  1402. sound:Play()
  1403. for i = 0, 6, .1 do
  1404. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(25)),.3)
  1405. swait()
  1406. end
  1407. for i = 0, 2, .1 do
  1408. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(5)),.3)
  1409. swait()
  1410. end
  1411. sound:Play()
  1412. for i = 0, 1, .1 do
  1413. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(25)),.3)
  1414. swait()
  1415. end
  1416. sound:Play()
  1417. for i = 0, 5, .1 do
  1418. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(55)),.3)
  1419. swait()
  1420. end
  1421. for i = 1, 5 do
  1422. Effect{
  1423. Effect='Resize+AndFade',
  1424. Color = BrickColor.new'Really red',
  1425. Material = Enum.Material.Neon,
  1426. Size=V3.N(3.5,3.5,3.5),
  1427. CFrame=saw.CFrame*CF.A(M.RRNG(0,180),M.RRNG(0,180),M.RRNG(0,180)),
  1428. FXSettings={
  1429. EndSize=V3.N(.05,.05,.05),
  1430. EndIsIncrement=true,
  1431.  
  1432. }
  1433. }
  1434. end
  1435. saw:destroy()
  1436. Attack = false
  1437. NeutralAnims = true
  1438. end
  1439. function Taunt()
  1440. local tauntFuncs = {SliceYou,ScrewMe}
  1441. local taunt = tauntFuncs[M.RNG(1,#tauntFuncs)]
  1442. taunt()
  1443. end
  1444. function Aids()
  1445. Music.Playing = false
  1446. local DabSounds = {420701444,420701460,420701487}
  1447. local DabSnd = Sound(Torso,DabSounds[M.RNG(1,#DabSounds)],1,5,false,false,false)
  1448. repeat swait() until DabSnd.IsLoaded
  1449. DabSnd:Play()
  1450. DabSnd.Ended:connect(function()DabSnd:destroy()end)
  1451. Attack = true
  1452. NeutralAnims = false
  1453. local a = 0
  1454. for i = 0, DabSnd.TimeLength * Frame_Speed/DabSnd.Pitch do
  1455. a = a + 1
  1456. swait()
  1457. local Alpha = .3
  1458. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0561925545, 0.006292901+.2*M.C(a/16), -0.00967639871, 0.961586297, 0.00172359415, 0.274496257, 0, 0.99998033, -0.00627899449, -0.274501652, 0.00603779452, 0.961567342),Alpha)
  1459. LH.C0 = clerp(LH.C0,CFrame.new(-0.593769729, -0.99042201-.2*M.C(a/16), 0.0849506408, 0.965754986, 0, -0.259456009, 0.00162912265, 0.99998033, 0.00606396981, 0.259450912, -0.00627899449, 0.965735972),Alpha)
  1460. RH.C0 = clerp(RH.C0,CFrame.new(0.468464553, -0.991293669-.2*M.C(a/16), -0.0339690484, 0.965754986, 0, -0.259456009, 0.00162912265, 0.99998033, 0.00606396981, 0.259450912, -0.00627899449, 0.965735972),Alpha)
  1461. LS.C0 = clerp(LS.C0,CFrame.new(-1.15301001, 0.367895871, -0.145940349+.2*M.C(a/16), 0.375669211, 0.913452208, -0.156454355, -0.926753879, 0.37026915, -0.0634673014, -4.41223383e-05, 0.168837398, 0.985643983),Alpha)
  1462. RS.C0 = clerp(RS.C0,CFrame.new(0.998128295, 0.633566499, -0.753388047+.2*M.C(a/16), 0.594308019, 0.804203451, 0.00742085278, -0.383671522, 0.29161948, -0.876215935, -0.706819832, 0.517895043, 0.481861711),Alpha)
  1463. NK.C0 = clerp(NK.C0,CFrame.new(0.207638323, 1.47957158, -0.302699238, 0.745848298, 0.476892024, -0.465063959, 0.0606503561, 0.646653771, 0.760368645, 0.663349032, -0.595326006, 0.453382045),Alpha)
  1464. end
  1465. Music.Playing = true
  1466. Attack = false
  1467. NeutralAnims = true
  1468. end
  1469.  
  1470. function OnceWas(who)
  1471. for _,v in next, who:children() do
  1472. if(v:IsA'BasePart')then
  1473. Effect{
  1474. Parent=Effects,
  1475. Effect='Fade',
  1476. Color = BrickColor.new'Crimson',
  1477. Material = Enum.Material.Glass,
  1478. Size = v.Size,
  1479. CFrame=v.CFrame,
  1480. Frames = 90,
  1481. }
  1482. end
  1483. end
  1484. end
  1485.  
  1486. function Teleport(where)
  1487. OnceWas(Char)
  1488. Sound(Root,235097614,3,1,false,true,true)
  1489. Sound(Root,75356820,2,1,false,true,true)
  1490. Root.CFrame = CF.N(where.p)
  1491. OnceWas(Char)
  1492. end
  1493.  
  1494. function Dash()
  1495. Attack = true
  1496. Sound(Root,235097614,3,1,false,true,true)
  1497. Sound(Root,75356820,2,1,false,true,true)
  1498. for i = 1, 5 do
  1499. OnceWas(Char)
  1500. Root.CFrame = Root.CFrame*CF.N(0,0,-5)
  1501. swait()
  1502. end
  1503. Attack = false
  1504. end
  1505.  
  1506. function Shriek()
  1507. Attack = true
  1508. NeutralAnims = false
  1509. local scream = Sound(Head,198165368,.5,10,false,false,false)
  1510. local i = 0
  1511. scream:Play()
  1512. while scream.Playing do
  1513. i = i + 1
  1514. swait()
  1515. coroutine.wrap(function()
  1516. AOEFunction(Head.Position,30,function(who)
  1517. local h,hd = who:FindFirstChildOfClass'Humanoid',who:FindFirstChild'Head'
  1518. if(h and hd and h.Health > 0)then
  1519. h.Health = 0
  1520. Sound(hd,429400881,1,1,false,true,true)
  1521. Ragdoll(who)
  1522. swait()
  1523. local frags = Fragment(hd)
  1524. for _,v in next, frags:children() do
  1525. v.BrickColor = BloodColor
  1526. v.Material = BloodMaterial
  1527. v.CanCollide = true
  1528. v.Anchored = false
  1529. end
  1530. hd:destroy()
  1531. end
  1532. end)
  1533. end)()
  1534. local Alpha = .15
  1535. RJ.C0 = clerp(RJ.C0,CFrame.new(0.00956845004, -0.141102523, 0.612865508, 0.999947488, 0.00962571148, -0.00340035092, -0.00964800082, 0.782201111, -0.622951329, -0.00333659165, 0.622951448, 0.782252967),Alpha)
  1536. LH.C0 = clerp(LH.C0,CFrame.new(-0.495904773, -1.0368886, 0.0598222613, 0.999878109, -0.00964800082, 0.012275002, -0.000100981888, 0.782201111, 0.623026073, -0.0156124765, -0.622951329, 0.78210485),Alpha)
  1537. RH.C0 = clerp(RH.C0,CFrame.new(0.499093086, -1.03124118, 0.0517056584, 0.999878109, -0.00964800082, 0.012275002, -0.000100981888, 0.782201111, 0.623026073, -0.0156124765, -0.622951329, 0.78210485),Alpha)
  1538. LS.C0 = clerp(LS.C0,CFrame.new(-1.23829794, 0.600065649, 0.16030249, -0.8319574, 0.546545088, -0.0955789387, 0.0976095572, -0.0254041255, -0.994900525, -0.54618609, -0.837044299, -0.0322128981),Alpha)
  1539. RS.C0 = clerp(RS.C0,CFrame.new(1.40538526, 0.413302839, 0.119919479, 0.97065413, -0.226111293, -0.0818808898, 0.0516543165, -0.13650623, 0.989291787, -0.23486729, -0.96448946, -0.120820649),Alpha)
  1540. NK.C0 = clerp(NK.C0,CFrame.new(3.62367791e-06, 1.56057274, 0.233575165, 1, 3.8058497e-06, -3.58493999e-05, -1.91188519e-05, 0.899042785, -0.437860936, 3.05641443e-05, 0.437861085, 0.899042606),Alpha)
  1541. end
  1542. Attack = false
  1543. NeutralAnims = true
  1544. end
  1545.  
  1546. function SawMeDaddy()
  1547. local humanoid, torso = ClosestHumanoid(Torso.CFrame.p,5)
  1548. if(torso)then
  1549. Attack = true
  1550. NeutralAnims = false
  1551. local who = torso.Parent
  1552. who.Parent = Char
  1553. Hum.WalkSpeed = 0
  1554. Hum.JumpPower = 0
  1555. humanoid.WalkSpeed = 0
  1556. humanoid.JumpPower = 0
  1557. local saw,weld = Equip_Sawblade()
  1558. pcall(function() who.HumanoidRootPart:destroy() end)
  1559. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,0,-3)*CF.A(0,M.R(180),0)})
  1560. for i = 0, 6, 0.1 do
  1561. swait()
  1562. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(5)),.3)
  1563. local Alpha = .15
  1564. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00836368278, 0.00629167072, 0.00190571044, 0.0349976346, 0.00628316449, 0.99936235, 0, 0.99998033, -0.00628704997, -0.999382019, 0.000220031856, 0.0349969491),Alpha)
  1565. LH.C0 = clerp(LH.C0,CFrame.new(-0.503456116, -0.990501761, 0.0718512386, 0.0505957417, 0, -0.998714209, 0.00627896562, 0.99998033, 0.00031809794, 0.998694539, -0.00628704997, 0.0505947471),Alpha)
  1566. RH.C0 = clerp(RH.C0,CFrame.new(0.539414704, -0.991044283, 0.00562152406, 0.0505957417, 0, -0.998714209, 0.00627896562, 0.99998033, 0.00031809794, 0.998694539, -0.00628704997, 0.0505947471),Alpha)
  1567. LS.C0 = clerp(LS.C0,CFrame.new(-1.40707266, 0.497466505, -0.00446076319, 0.980866492, 0.19405432, 0.0156163573, -0.19417055, 0.980947733, 0.00629086327, -0.0140980631, -0.00920273364, 0.999858439),Alpha)
  1568. RS.C0 = clerp(RS.C0,CFrame.new(1.31421685, 0.81056267, 0.00814598706, -0.489612877, -0.871799946, 0.0156333037, 0.871937394, -0.489577413, 0.00628277427, 0.00217639096, 0.0167073887, 0.999858201),Alpha)
  1569. NK.C0 = clerp(NK.C0,CFrame.new(0.00717293471, 1.49903798, -0.00130830682, 0.0349974521, 0.0574585311, -0.997728944, 0.00628280686, 0.998313606, 0.057712581, 0.99936235, -0.00828839932, 0.0345774256),Alpha)
  1570. end
  1571. Sound(Torso,367720620,1,1,false,true,true)
  1572. coroutine.wrap(function()
  1573. repeat swait()
  1574. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(45)),.3)
  1575. until not saw.Parent
  1576. end)()
  1577. swait(60)
  1578. local slicing = Sound(saw,1013673726,1,1,true,false,true)
  1579. Sound(torso,429400881,1,1,false,true,true)
  1580. local prt1,prtcl1 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1581. prt1.Parent = torso;
  1582. local prt1W = NewInstance('Weld',torso,{Part0=prt1,Part1=torso,C0=CF.A(0,M.R(180),0)})
  1583. for i = 0, .3, 0.001 do
  1584. swait()
  1585.  
  1586. humanoid.Health = humanoid.Health - .5
  1587. if(humanoid.Health <= 0)then
  1588. gWeld:destroy()
  1589. Sound(torso,429400881,1,1,false,true,true)
  1590. break
  1591. end
  1592. local Alpha = i
  1593. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00836368278, 0.00629167072, 0.00190571044, 0.0349976346, 0.00628316449, 0.99936235, 0, 0.99998033, -0.00628704997, -0.999382019, 0.000220031856, 0.0349969491),Alpha)
  1594. LH.C0 = clerp(LH.C0,CFrame.new(-0.503456116, -0.990501761, 0.0718512386, 0.0505957417, 0, -0.998714209, 0.00627896562, 0.99998033, 0.00031809794, 0.998694539, -0.00628704997, 0.0505947471),Alpha)
  1595. RH.C0 = clerp(RH.C0,CFrame.new(0.539414704, -0.991044283, 0.00562152406, 0.0505957417, 0, -0.998714209, 0.00627896562, 0.99998033, 0.00031809794, 0.998694539, -0.00628704997, 0.0505947471),Alpha)
  1596. LS.C0 = clerp(LS.C0,CFrame.new(-1.40707266, 0.497466505, -0.00446076319, 0.980866492, 0.19405432, 0.0156163573, -0.19417055, 0.980947733, 0.00629086327, -0.0140980631, -0.00920273364, 0.999858439),Alpha)
  1597. RS.C0 = clerp(RS.C0,CFrame.new(1.18219912, 0.268655062, 0.0136158429, 0.6882689, -0.725287437, 0.0156234093, 0.725293934, 0.688410699, 0.00629597344, -0.0153217092, 0.00699824095, 0.99985826),Alpha)
  1598. NK.C0 = clerp(NK.C0,CFrame.new(0.00717293471, 1.49903798, -0.00130830682, 0.0349974521, 0.0574585311, -0.997728944, 0.00628280686, 0.998313606, 0.057712581, 0.99936235, -0.00828839932, 0.0345774256),Alpha)
  1599. end
  1600. humanoid.Health = 0
  1601. who.Parent = workspace
  1602. Ragdoll(who)
  1603. slicing:destroy()
  1604. for i = 1, 5 do
  1605. Effect{
  1606. Effect='Resize+AndFade',
  1607. Color = BrickColor.new'Really red',
  1608. Material = Enum.Material.Neon,
  1609. Size=V3.N(3.5,3.5,3.5),
  1610. CFrame=saw.CFrame*CF.A(M.RRNG(0,180),M.RRNG(0,180),M.RRNG(0,180)),
  1611. FXSettings={
  1612. EndSize=V3.N(.05,.05,.05),
  1613. EndIsIncrement=true,
  1614.  
  1615. }
  1616. }
  1617. end
  1618. Hum.WalkSpeed = 16
  1619. Hum.JumpPower = 50
  1620. saw:destroy()
  1621. Attack = false
  1622. NeutralAnims = true
  1623. end
  1624. end
  1625. function The_End()
  1626. local humanoid, torso = ClosestHumanoid(Torso.CFrame.p,5)
  1627.  
  1628. if(torso)then
  1629. Attack = true
  1630. NeutralAnims = false
  1631. local who = torso.Parent
  1632. Hum.WalkSpeed = 0
  1633. Hum.JumpPower = 0
  1634. humanoid.WalkSpeed = 0
  1635. humanoid.JumpPower = 0
  1636. who.Parent = Char
  1637. pcall(function() who.HumanoidRootPart:destroy() end)
  1638. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,0,-1.35)})
  1639. for i = 0, 2, 0.1 do
  1640. swait()
  1641. local Alpha = .3
  1642. RJ.C0 = clerp(RJ.C0,CFrame.new(0.00184797007, 0.00629393011, 0.00175395911, 0.916352093, -0.00251661055, -0.400364727, 0, 0.99998033, -0.00628567068, 0.400372595, 0.0057598874, 0.916333973),Alpha)
  1643. LH.C0 = clerp(LH.C0,CFrame.new(-0.565588713, -0.991164684, -0.032800708, 0.909990132, 0, 0.414630055, -0.00260622799, 0.99998033, 0.00571989827, -0.41462189, -0.00628567068, 0.909972131),Alpha)
  1644. RH.C0 = clerp(RH.C0,CFrame.new(0.562351584, -0.990811467, 0.0429569148, 0.909990132, 0, 0.414630055, -0.00260622799, 0.99998033, 0.00571989827, -0.41462189, -0.00628567068, 0.909972131),Alpha)
  1645. LS.C0 = clerp(LS.C0,CFrame.new(-1.479936, 0.442725629, -0.241928637, 0.997844577, 0.0469278991, -0.0458690971, -0.0638397709, 0.532425106, -0.844066501, -0.015188396, 0.845175505, 0.534273386),Alpha)
  1646. RS.C0 = clerp(RS.C0,CFrame.new(1.32794857, 0.365926802, 0.17400004, 0.584510565, -0.811339498, 0.00870320201, 0.447906405, 0.331590444, 0.830317855, -0.676555634, -0.481431335, 0.557222128),Alpha)
  1647. NK.C0 = clerp(NK.C0,CFrame.new(-0.00438193232, 1.49895084, -0.014841184, 0.916352212, -0.0230187047, 0.399710178, -0.00251696701, 0.997995079, 0.0632432774, -0.400364548, -0.0589591675, 0.914456904),Alpha)
  1648. end
  1649. Sound(Torso,200065377,1.3,4,false,true,true)
  1650. for i = 0, 1, 0.1 do
  1651. swait()
  1652. local Alpha = .2
  1653. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0928741172, 0.00629402744, 0.0566893518, 0.948310614, 0.00199300773, 0.317336231, 0, 0.99998033, -0.00628030393, -0.31734252, 0.00595567934, 0.948291838),Alpha)
  1654. LH.C0 = clerp(LH.C0,CFrame.new(-0.645890057, -0.990359426, 0.0953748077, 0.953149736, 0, -0.302498937, 0.00189978536, 0.99998033, 0.00598607073, 0.302492946, -0.00628030393, 0.953130901),Alpha)
  1655. RH.C0 = clerp(RH.C0,CFrame.new(0.44459179, -0.991404057, -0.0513649136, 0.953149736, 0, -0.302498937, 0.00189978536, 0.99998033, 0.00598607073, 0.302492946, -0.00628030393, 0.953130901),Alpha)
  1656. LS.C0 = clerp(LS.C0,CFrame.new(-1.47928679, 0.367728233, 0.116084039, 0.997845054, 0.0248440802, 0.0607300103, -0.0638346076, 0.581721425, 0.810879469, -0.0151824057, -0.813008547, 0.582053781),Alpha)
  1657. RS.C0 = clerp(RS.C0,CFrame.new(1.48636484, 0.465858519, -0.373306572, -0.95769608, 0.284951091, -0.0402629375, -0.130770594, -0.306276649, 0.942917705, 0.256353855, 0.908293724, 0.330583185),Alpha)
  1658. NK.C0 = clerp(NK.C0,CFrame.new(-0.068510659, 1.4984324, -0.0973624364, 0.948310554, 0.0182456542, -0.316817731, 0.00199265103, 0.997983873, 0.0634387434, 0.31733641, -0.0607909337, 0.946362138),Alpha)
  1659. end
  1660. gWeld:destroy()
  1661. local gWeld = NewInstance("Weld",Char,{Part0=RArm,Part1=torso,C0=CF.N(0,-1.15,0)*CF.A(M.R(90),0,M.R(180))})
  1662. for i = 0, 1, 0.1 do
  1663. swait()
  1664. local Alpha = .3
  1665. humanoid.PlatformStand = true
  1666. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20394752e-13, 0.00629078969, 1.39809708e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1667. LH.C0 = clerp(LH.C0,CFrame.new(-0.496493757, -0.990819752, 0.021611426, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1668. RH.C0 = clerp(RH.C0,CFrame.new(0.498526245, -0.990984261, 0.0154614868, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1669. LS.C0 = clerp(LS.C0,CFrame.new(-1.29056597, 0.680865526, -0.0074476786, -0.953151584, -0.302089065, 0.0156119959, 0.302213609, -0.953219652, 0.0062854127, 0.0129829049, 0.0107091125, 0.999858022),Alpha)
  1670. RS.C0 = clerp(RS.C0,CFrame.new(1.26373434, 0.722399652, 0.00951428805, -0.951173186, 0.308261454, 0.0156119959, -0.308199704, -0.951300979, 0.0062854127, 0.0167892575, 0.0011669076, 0.999858022),Alpha)
  1671. NK.C0 = clerp(NK.C0,CFrame.new(-1.17865966e-07, 1.4989531, -0.0143954754, 0.999999642, 2.11689621e-05, 1.13360584e-05, -1.50896085e-07, 0.477647185, -0.878551781, -2.40113586e-05, 0.878551543, 0.477646947),Alpha)
  1672. end
  1673. gWeld:destroy()
  1674. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,2.35,0)*CF.A(M.R(90),0,M.R(90))})
  1675. for i = 0, 6, 0.1 do
  1676. swait()
  1677. local Alpha = .3
  1678. humanoid.PlatformStand = true
  1679. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20394752e-13, 0.00629078969, 1.39809708e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1680. LH.C0 = clerp(LH.C0,CFrame.new(-0.496493757, -0.990819752, 0.021611426, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1681. RH.C0 = clerp(RH.C0,CFrame.new(0.498526245, -0.990984261, 0.0154614868, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1682. LS.C0 = clerp(LS.C0,CFrame.new(-1.29056597, 0.680865526, -0.0074476786, -0.953151584, -0.302089065, 0.0156119959, 0.302213609, -0.953219652, 0.0062854127, 0.0129829049, 0.0107091125, 0.999858022),Alpha)
  1683. RS.C0 = clerp(RS.C0,CFrame.new(1.26373434, 0.722399652, 0.00951428805, -0.951173186, 0.308261454, 0.0156119959, -0.308199704, -0.951300979, 0.0062854127, 0.0167892575, 0.0011669076, 0.999858022),Alpha)
  1684. NK.C0 = clerp(NK.C0,CFrame.new(-1.17865966e-07, 1.4989531, -0.0143954754, 0.999999642, 2.11689621e-05, 1.13360584e-05, -1.50896085e-07, 0.477647185, -0.878551781, -2.40113586e-05, 0.878551543, 0.477646947),Alpha)
  1685. end
  1686. Sound(torso,1093102664,.85,5,false,true,true)
  1687. Sound(torso,429400881,1,1,false,true,true)
  1688. gWeld:destroy()
  1689. Blood(torso.Size,torso.CFrame*CF.A(0,M.R(180),0),250)
  1690. humanoid.Health = 0
  1691. for _,v in next, who:children() do
  1692. if(v:IsA'LocalScript' or v:IsA'Script')then
  1693. v.Disabled = true
  1694. v:destroy()
  1695. end
  1696. end
  1697. Ragdoll(who,true)
  1698.  
  1699.  
  1700. if(not VoidSB)then
  1701. coroutine.wrap(function()
  1702. repeat swait()
  1703. BloodDrop(torso.CFrame * CF.N(0,-torso.Size.Y/2,0).p,(torso.CFrame * CF.N(0,-torso.Size.Y,0)).p,15)
  1704. until not who or not who.Parent
  1705. end)()
  1706. coroutine.wrap(function()
  1707. local LT = who:FindFirstChild'LowerTorso'
  1708. if(LT)then
  1709. repeat swait()
  1710. BloodDrop(LT.CFrame * CF.N(0,LT.Size.Y/2,0).p,(LT.CFrame * CF.N(0,LT.Size.Y,0)).p,15)
  1711. until not who or not who.Parent
  1712. end
  1713. end)()
  1714. end
  1715.  
  1716. for i = 0, 1, 0.1 do
  1717. swait()
  1718. local Alpha = .3
  1719. humanoid.PlatformStand = true
  1720. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20394752e-13, 0.00629078969, 1.39809708e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1721. LH.C0 = clerp(LH.C0,CFrame.new(-0.496493757, -0.990819752, 0.021611426, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1722. RH.C0 = clerp(RH.C0,CFrame.new(0.498526245, -0.990984261, 0.0154614868, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1723. LS.C0 = clerp(LS.C0,CFrame.new(-1.19203663, 0.569933176, 0.0160028264, -0.81626749, 0.577462554, 0.0156119959, -0.577441692, -0.816407859, 0.0062854127, 0.016375348, -0.0038844361, 0.999858022),Alpha)
  1724. RS.C0 = clerp(RS.C0,CFrame.new(1.22609437, 0.679628015, 0.010370885, -0.77247268, -0.634855568, 0.0156119959, 0.634996474, -0.772489607, 0.0062854127, 0.00806977227, 0.0147688743, 0.999858022),Alpha)
  1725. NK.C0 = clerp(NK.C0,CFrame.new(-1.17865966e-07, 1.4989531, -0.0143954754, 0.999999642, 2.11689621e-05, 1.13360584e-05, -1.50896085e-07, 0.477647185, -0.878551781, -2.40113586e-05, 0.878551543, 0.477646947),Alpha)
  1726. end
  1727. for i = 0, 4, 0.1 do
  1728. swait()
  1729. local Alpha = .3
  1730. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20394752e-13, 0.00629078969, 1.39809708e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1731. LH.C0 = clerp(LH.C0,CFrame.new(-0.496493757, -0.990819752, 0.021611426, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1732. RH.C0 = clerp(RH.C0,CFrame.new(0.498526245, -0.990984261, 0.0154614868, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1733. LS.C0 = clerp(LS.C0,CFrame.new(-1.19203663, 0.569933176, 0.0160028264, -0.81626749, 0.577462554, 0.0156119959, -0.577441692, -0.816407859, 0.0062854127, 0.016375348, -0.0038844361, 0.999858022)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1734. RS.C0 = clerp(RS.C0,CFrame.new(1.22609437, 0.679628015, 0.010370885, -0.77247268, -0.634855568, 0.0156119959, 0.634996474, -0.772489607, 0.0062854127, 0.00806977227, 0.0147688743, 0.999858022)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1735. NK.C0 = clerp(NK.C0,CFrame.new(-1.17865966e-07, 1.4989531, -0.0143954754, 0.999999642, 2.11689621e-05, 1.13360584e-05, -1.50896085e-07, 0.477647185, -0.878551781, -2.40113586e-05, 0.878551543, 0.477646947)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1736. end
  1737. who.Parent = workspace
  1738. Attack = false
  1739. NeutralAnims = true
  1740. Hum.WalkSpeed = 16
  1741. Hum.JumpPower = 50
  1742. end
  1743. end
  1744.  
  1745. function ThrowArms()
  1746. Attack = true
  1747. NeutralAnims = false
  1748. for i = 0, 3, 0.1 do
  1749. swait()
  1750. local Alpha = .15
  1751. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20552612e-13, 0.00629388914, 1.4175821e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1752. LH.C0 = clerp(LH.C0,CFrame.new(-0.496493757, -0.990822613, 0.0216114447, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1753. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990984261, 0.0154613676, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1754. LS.C0 = clerp(LS.C0,CFrame.new(-1.49870801, 0.639989734, 0.342571348, 0.999877751, -0.0114739574, -0.0105869146, -9.81397825e-05, -0.682732999, 0.730668128, -0.0156116877, -0.730577767, -0.682650685),Alpha)
  1755. RS.C0 = clerp(RS.C0,CFrame.new(1.50170219, 0.685996532, 0.261634499, 0.999877751, -0.0114739574, -0.0105869146, -9.81397825e-05, -0.682732999, 0.730668128, -0.0156116877, -0.730577767, -0.682650685),Alpha)
  1756. NK.C0 = clerp(NK.C0,CFrame.new(8.16625652e-06, 1.4989531, -0.0144006833, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1757. end
  1758. Sound()
  1759. FLArmW:destroy()
  1760. FRArmW:destroy()
  1761. local BV1 = NewInstance("BodyVelocity", FRArm, {
  1762. velocity = Vector3.new(0, 10, 0) + Mouse.Hit.lookVector * 50,
  1763. P = 5000,
  1764. maxForce = Vector3.new(8000, 8000, 8000),
  1765. })
  1766. local BV2 = NewInstance("BodyVelocity", FLArm, {
  1767. velocity = Vector3.new(0, 10, 0) + Mouse.Hit.lookVector * 50,
  1768. P = 5000,
  1769. maxForce = Vector3.new(8000, 8000, 8000),
  1770. })
  1771. Sound(Torso,541909763,.8,5,false,true,true)
  1772. S.Debris:AddItem(BV1, 0.05)
  1773. S.Debris:AddItem(BV2, 0.05)
  1774. FRArm.CanCollide = true
  1775. FLArm.CanCollide = true
  1776. S.Debris:AddItem(FRArm, 5)
  1777. S.Debris:AddItem(FLArm, 5)
  1778. FRArm = nil
  1779. FLArm = nil
  1780. for i = 0, 1, 0.1 do
  1781. swait()
  1782. local Alpha = .3
  1783. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20552612e-13, 0.00629388914, 1.4175821e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1784. LH.C0 = clerp(LH.C0,CFrame.new(-0.496493757, -0.990822613, 0.0216114447, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1785. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990984261, 0.0154613676, 0.999877751, -4.38656264e-11, 0.0156119959, -9.81397825e-05, 0.999980271, 0.0062854127, -0.0156116877, -0.00628618058, 0.999858022),Alpha)
  1786. LS.C0 = clerp(LS.C0,CFrame.new(-1.50884342, 0.499208659, -0.305685878, 0.999877751, 0.0152528696, -0.00332931988, -9.81397825e-05, -0.20710893, -0.978317916, -0.0156116877, 0.978198647, -0.207082108),Alpha)
  1787. RS.C0 = clerp(RS.C0,CFrame.new(1.4918015, 0.444425255, -0.370944679, 0.999877751, 0.0152528696, -0.00332931988, -9.81397825e-05, -0.20710893, -0.978317916, -0.0156116877, 0.978198647, -0.207082108),Alpha)
  1788. NK.C0 = clerp(NK.C0,CFrame.new(8.16625652e-06, 1.4989531, -0.0144006833, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1789. end
  1790. Attack = false
  1791. NeutralAnims = true
  1792. end
  1793. Mouse.KeyDown:connect(function(k)
  1794. if(Attack)then return end
  1795. if(k == 'q')then Teleport(Mouse.Hit*CF.N(0,3.25,0)) end
  1796. if(k == 'e')then Dash() end
  1797. if(not FLArm and not FRArm)then
  1798. if(k == 'z')then The_Necc() end
  1799. if(k == 'x')then The_End() end
  1800. if(k == 'c')then Hands_Off() end
  1801. if(k == 'v')then SawMeDaddy() end
  1802. if(k == 'b')then Shriek() end
  1803. if(k == 't')then Taunt() end
  1804. if(k == 'f') then Aids() end
  1805. end
  1806. end)
  1807.  
  1808. Mouse.Button1Down:connect(function()
  1809. if(Attack)then return end
  1810. if(FLArm and FRArm)then
  1811. ThrowArms()
  1812. end
  1813. end)
  1814. Plr.Chatted:connect(function(m)
  1815. if(m == '/e aeiou')then Sound(Torso,221792881,1,5,false,true,true) end
  1816. if(m == '/e earthquake')then Sound(Torso,1205111204,1,5,false,true,true) end
  1817. if(Attack)then return end
  1818. if(m == '/e dab')then Aids() end
  1819. end)
  1820.  
  1821. --// Wrap it all up \\--
  1822.  
  1823. while true do
  1824. swait()
  1825. refit()
  1826. if(not Music or not Music.Parent)then
  1827. local a = Music.TimePosition
  1828. Music = Sound(Char,MusicID,MusicPitch,2,true,false,true)
  1829. Music.Name = 'Music'
  1830. Music.TimePosition = a
  1831. end
  1832. if(Music.Volume ~= 2)then Music.Volume = 2 end
  1833. RArm.Transparency = 0
  1834. Sine = Sine + Change
  1835. local hitfloor,posfloor = workspace:FindPartOnRay(Ray.new(Root.CFrame.p,((CFrame.new(Root.Position,Root.Position - Vector3.new(0,1,0))).lookVector).unit * 4), Char)
  1836. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  1837. local State = (Hum.PlatformStand and 'Paralyzed' or Hum.Sit and 'Sit' or not hitfloor and Root.Velocity.y < -1 and "Fall" or not hitfloor and Root.Velocity.y > 1 and "Jump" or hitfloor and Walking and "Walk" or hitfloor and "Idle")
  1838. if(State == 'Walk')then
  1839. local wsVal = 7 / (Hum.WalkSpeed/16)
  1840. local Alpha = math.min(.2*(Hum.WalkSpeed/16),1)
  1841. --RH.C1 = RH.C1:lerp(CF.N(0,.925+.5*M.C(Sine/wsVal)/2,0+.5*M.C(Sine/wsVal)/2)*CF.A(-M.R(-15-35*M.C(Sine/wsVal) + -M.S(Sine/wsVal)/2.5),0,0),Alpha)
  1842. --RH.C0 = clerp(RH.C0, CF(1, -0.925 - 0.5 * Cos(sine / 7) / 2, 0.5 * Cos(sine / 7) / 2) * angles(Rad(-15 - 35 * Cos(sine / 7)) - rl.RotVelocity.Y / 75 + -Sin(sine / 7) / 2.5, Rad(90 - 0.1 * Cos(sine / 7)), Rad(0)) * angles(Rad(0 + 0.1 * Cos(sine / 7)), Rad(0), Rad(0)), 0.3)--
  1843. RH.C1 = RH.C1:lerp(CF.N(0,.95+.5*M.C(Sine/wsVal)/2,.5*M.C(Sine/wsVal)/2) * CF.A(M.R(15-45*M.C(Sine/wsVal)) + M.S(Sine/wsVal)/2.5,0,0)*CF.A(M.R(0+.1*M.C(Sine/wsVal)),0,0),Alpha)
  1844. LH.C1 = LH.C1:lerp(CF.N(0,.95-.5*M.C(Sine/wsVal)/2,-.5*M.C(Sine/wsVal)/2) * CF.A(M.R(15+45*M.C(Sine/wsVal)) + -M.S(Sine/wsVal)/2.5,0,0)*CF.A(M.R(0+.1*M.C(Sine/wsVal)),0,0),Alpha)
  1845. else
  1846. RH.C1 = RH.C1:lerp(CF.N(0,1,0),.3)
  1847. LH.C1 = LH.C1:lerp(CF.N(0,1,0),.3)
  1848. end
  1849. if(Idle > Frame_Speed*10)then
  1850. --idk i'll do something
  1851. end
  1852. if(NeutralAnims and not Attack and State == 'Idle')then
  1853. Idle = Idle + 1
  1854. else
  1855. Idle = 0
  1856. end
  1857. for v,_ in next, Stunned do
  1858. if(v.Parent)then
  1859. local h = v:FindFirstChildOfClass'Humanoid'
  1860. for _,c in next, v:children() do
  1861. if(c:IsA'Script' or c:IsA'LocalScript')then
  1862. c.Disabled = false
  1863. end
  1864. end
  1865. if(h)then
  1866. h.Name = 'no escape lol'
  1867. h.PlatformStand = true
  1868. else
  1869. Stunned[v] = nil
  1870. end
  1871. else
  1872. Stunned[v] = nil
  1873. end
  1874. end
  1875. if(NeutralAnims)then
  1876. if(State == 'Idle')then
  1877. Change = 1
  1878. local Alpha = .3
  1879. RJ.C0 = clerp(RJ.C0,CFrame.new(0.00232864846, 0.00629545515+.2*M.C(Sine/16), 0.00257661846, 0.838281333, -0.00342716719, -0.545226395, 0, 0.99998033, -0.00628564507, 0.545237184, 0.00526913954, 0.838264763),Alpha)
  1880. LH.C0 = clerp(LH.C0,CFrame.new(-0.725328565, -0.990803361-.2*M.C(Sine/16), 0.0247094855, 0.82966727, 0, 0.558258176, -0.00350901252, 0.99998033, 0.00521499431, -0.558247149, -0.00628564507, 0.829650879),Alpha)
  1881. RH.C0 = clerp(RH.C0,CFrame.new(0.576427579, -0.99124372-.2*M.C(Sine/16), -0.02560886, 0.82966727, 0, 0.558258176, -0.00350901252, 0.99998033, 0.00521499431, -0.558247149, -0.00628564507, 0.829650879),Alpha)
  1882. LS.C0 = clerp(LS.C0,CFrame.new(-1.46491873, 0.505438805+.2*M.C(Sine/16), -0.00360340625, 0.996807694, 0.0782995075, 0.0156106055, -0.0784052685, 0.996901929, 0.00628136564, -0.0150704384, -0.0074852705, 0.999858379)*CF.A(-M.R(0+5*M.S(Sine/16)),0,M.R(0+5*M.C(Sine/16))),Alpha)
  1883. RS.C0 = clerp(RS.C0,CFrame.new(1.44824493, 0.497874349+.2*M.C(Sine/16), 0.00803661905, 0.994963646, -0.0990139842, 0.0156099498, 0.0989264548, 0.995075107, 0.00628477754, -0.0161553323, -0.00470888987, 0.999858439)*CF.A(-M.R(0+5*M.S(Sine/16)),0,-M.R(0+5*M.C(Sine/16))),Alpha)
  1884. NK.C0 = clerp(NK.C0,CFrame.new(-0.00607250631, 1.49895012, -0.0144915879, 0.838281453, -0.0313475803, 0.544335127, -0.00342752389, 0.998023272, 0.0627533421, -0.545226216, -0.0544706844, 0.836516857)*CF.A(M.R(0+5*M.C(Sine/16)),0,0),Alpha)
  1885. elseif(State == 'Walk')then
  1886. local wsVal = 7 / (Hum.WalkSpeed/16)
  1887. local Alpha = math.min(.2*(Hum.WalkSpeed/16),1)
  1888. RJ.C0 = RJ.C0:lerp(RJC0*CF.N(0,-0.175 + 0.025 * M.C(Sine/(wsVal/2)) + -M.S(Sine/(wsVal/2)) / 7,0)*CF.A(0,M.R(0+8*M.C(Sine/wsVal)),M.R(0+2*M.C(Sine/wsVal))),Alpha)
  1889. RH.C0 = RH.C0:lerp(RHC0,Alpha)
  1890. LH.C0 = LH.C0:lerp(LHC0,Alpha)
  1891. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(0-45*M.C(Sine/wsVal)),0,M.R(5+10*M.C(Sine/wsVal))),Alpha)
  1892. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(0+45*M.C(Sine/wsVal)),0,M.R(-5+10*M.C(Sine/wsVal))),Alpha)
  1893. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  1894. elseif(State == 'Jump' or State == 'Fall')then
  1895. if(Walking)then
  1896. local Alpha = .2
  1897. RJ.C0 = clerp(RJ.C0,RJC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(65)),M.R(65)),0,0),Alpha)
  1898. LH.C0 = clerp(LH.C0,CFrame.new(-0.497912645, -1.0987643, -0.0683324337, 0.999878228, 0.00860835519, 0.0130246133, -0.00010142161, 0.837816596, -0.545952022, -0.015611981, 0.545884132, 0.837715328),Alpha)
  1899. RH.C0 = clerp(RH.C0,CFrame.new(0.499978393, -1.16382337, 0.109293163, 0.999878228, -0.0120433727, 0.00993486121, -0.00010142161, 0.631323814, 0.775519371, -0.015611981, -0.775425911, 0.631245613),Alpha)
  1900. LS.C0 = clerp(LS.C0,CFrame.new(-1.55211556, 0.576563478, -0.00269976072, 0.976067662, 0.216906726, 0.0156116467, -0.217024669, 0.976145923, 0.00628317893, -0.0138763804, -0.00952091813, 0.999858499),Alpha)
  1901. RS.C0 = clerp(RS.C0,CFrame.new(1.50182188, 0.636661649, 0.00632623257, 0.977592707, -0.209926367, 0.0156121543, 0.209851891, 0.977713108, 0.00628198683, -0.016582964, -0.00286500831, 0.999858439),Alpha)
  1902. NK.C0 = clerp(NK.C0,CFrame.new(1.14440072e-05, 1.49924362, -0.0143961608, 1.00000024, -5.82076609e-11, 0, 1.23691279e-10, 0.997964919, 0.0637660474, 0, -0.0637660623, 0.997965038),Alpha)
  1903. else
  1904. local Alpha = .2
  1905. RJ.C0 = clerp(RJ.C0,RJC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(65)),M.R(65)),0,0),Alpha)
  1906. LH.C0 = clerp(LH.C0,CFrame.new(-0.504374504, -0.291219354, -0.487436086, 0.999878228, -0.00438931212, 0.0149825988, -0.00010142161, 0.957819223, 0.287371844, -0.015611981, -0.287338346, 0.957701981),Alpha)
  1907. RH.C0 = clerp(RH.C0,CFrame.new(0.453094482, -0.871358454, 0.0898642987, 0.985589385, -0.168456957, 0.0153662469, 0.162863791, 0.969548643, 0.182895929, -0.0457084104, -0.177757636, 0.983012319),Alpha)
  1908. LS.C0 = clerp(LS.C0,CFrame.new(-1.55211556, 0.576563478, -0.00269976072, 0.976067662, 0.216906726, 0.0156116467, -0.217024669, 0.976145923, 0.00628317893, -0.0138763804, -0.00952091813, 0.999858499),Alpha)
  1909. RS.C0 = clerp(RS.C0,CFrame.new(1.50182188, 0.636661649, 0.00632623257, 0.977592707, -0.209926367, 0.0156121543, 0.209851891, 0.977713108, 0.00628198683, -0.016582964, -0.00286500831, 0.999858439),Alpha)
  1910. NK.C0 = clerp(NK.C0,CFrame.new(1.14440072e-05, 1.49924362, -0.0143961608, 1.00000024, -5.82076609e-11, 0, 1.23691279e-10, 0.997964919, 0.0637660474, 0, -0.0637660623, 0.997965038),Alpha)
  1911. end
  1912. elseif(State == 'Paralyzed')then
  1913. local Alpha = .3
  1914. RJ.C0 = RJ.C0:lerp(RJC0,Alpha)
  1915. RH.C0 = RH.C0:lerp(RHC0*CF.A(M.RRNG(-10,10),M.RRNG(-10,10),M.RRNG(-10,10)),Alpha)
  1916. LH.C0 = LH.C0:lerp(LHC0*CF.A(M.RRNG(-10,10),M.RRNG(-10,10),M.RRNG(-10,10)),Alpha)
  1917. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.RRNG(-10,10),M.RRNG(-10,10),M.RRNG(-5,15)),Alpha)
  1918. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.RRNG(-10,10),M.RRNG(-10,10),M.RRNG(-15,5)),Alpha)
  1919. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  1920. elseif(State == 'Sit')then
  1921. local Alpha = .3
  1922. RJ.C0 = clerp(RJ.C0,CFrame.new(3.2050404e-13, 0.00629293546, 1.41158671e-06, 0.999999225, 5.09317033e-11, 0, -4.38656264e-11, 0.999980271, -0.00628618058, 0, 0.00628617639, 0.999979496),Alpha)
  1923. LH.C0 = clerp(LH.C0,CFrame.new(-0.686911047, -1.01880026, -0.25455457, 0.980693579, 0.195502773, 0.00425194856, -0.0504306704, 0.273862094, -0.960446, -0.188934311, 0.941688716, 0.278434128),Alpha)
  1924. RH.C0 = clerp(RH.C0,CFrame.new(0.557953715, -1.03419244, -0.293038249, 0.986133933, -0.165894628, 0.00425344985, 0.0502241589, 0.273924351, -0.960439026, 0.158166528, 0.947335124, 0.278457999),Alpha)
  1925. LS.C0 = clerp(LS.C0,CFrame.new(-1.50518143, 0.551521897, -0.0714710951, 0.999877751, 0.0137732355, 0.00735067623, -9.81397825e-05, 0.47637102, -0.879244447, -0.0156116877, 0.879136324, 0.476314098),Alpha)
  1926. RS.C0 = clerp(RS.C0,CFrame.new(1.4960835, 0.497820318, -0.0970379114, 0.999877751, 0.0137732355, 0.00735067623, -9.81397825e-05, 0.47637102, -0.879244447, -0.0156116877, 0.879136324, 0.476314098),Alpha)
  1927. NK.C0 = clerp(NK.C0,CFrame.new(4.35156289e-06, 1.49895275, -0.0144044831, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905),Alpha)
  1928. end
  1929. end
  1930. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement