Advertisement
FiveRoNer

Untitled

Jul 3rd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 125.57 KB | None | 0 0
  1. wait(1/60)
  2. -- [[[
  3. --000000[[====================================================================================\\
  4. --000000[[ DEIVIS97 EDIT Modes stuff by tcgc121212
  5. --000000[[====================================================================================//
  6. -- [[[
  7.  
  8.  
  9. --// Initializing \\--
  10. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  11. local Plrs = S.Players
  12. local Plr = Plrs.LocalPlayer
  13. local Char = Plr.Character
  14. local Hum = Char:FindFirstChildOfClass'Humanoid'
  15. local RArm = Char["Right Arm"]
  16. local LArm = Char["Left Arm"]
  17. local RLeg = Char["Right Leg"]
  18. local LLeg = Char["Left Leg"]
  19. local Root = Char:FindFirstChild'HumanoidRootPart'
  20. local RootPart = Char["HumanoidRootPart"]
  21. local Rooted = false
  22. local Torso = Char.Torso
  23. local Head = Char.Head
  24. local NeutralAnims = true
  25. local Attack = false
  26. local BloodPuddles = {}
  27. local Effects = {}
  28. local Debounces = {Debounces={}}
  29. local Mouse = Plr:GetMouse()
  30. local Hit = {}
  31. local Sine = 0
  32. local Idle = 0
  33. local Change = 1
  34. local FLArm,FRArm,FRArmW,FLArmW
  35. local Stunned = {}
  36. local VoidSB = (game.PlaceId == 843468296) -- You can change the 843468296 to 0 if you dont care about potential lag on Void SB
  37. --// Debounce System \\--
  38.  
  39.  
  40. function Debounces:New(name,cooldown)
  41. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  42. setmetatable(aaaaa,{__index = Debounces})
  43. Debounces.Debounces[name] = aaaaa
  44. return aaaaa
  45. end
  46.  
  47. function Debounces:Use(overrideUsable)
  48. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  49. if(self.Usable or overrideUsable)then
  50. self.Usable = false
  51. self.CoolingDown = true
  52. local LastUse = time()
  53. self.LastUse = LastUse
  54. delay(self.Cooldown or 2,function()
  55. if(self.LastUse == LastUse)then
  56. self.CoolingDown = false
  57. self.Usable = true
  58. end
  59. end)
  60. end
  61. end
  62.  
  63. function Debounces:Get(name)
  64. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  65. for i,v in next, Debounces.Debounces do
  66. if(i == name)then
  67. return v;
  68. end
  69. end
  70. end
  71.  
  72. function Debounces:GetProgressPercentage()
  73. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  74. if(self.CoolingDown and not self.Usable)then
  75. return math.max(
  76. math.floor(
  77. (
  78. (time()-self.LastUse)/self.Cooldown or 2
  79. )*100
  80. )
  81. )
  82. else
  83. return 100
  84. end
  85. end
  86.  
  87. --// Shortcut Variables \\--
  88. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  89. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  90. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  91. 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}
  92. local R3 = {N=Region3.new}
  93. local De = S.Debris
  94. local WS = workspace
  95. local Lght = S.Lighting
  96. local RepS = S.ReplicatedStorage
  97. local IN = Instance.new
  98.  
  99. --// Extended ROBLOX tables \\--
  100. 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})
  101. --// Customization \\--
  102. game:GetService("RunService"):BindToRenderStep("ew", 0, function()
  103. if Humanoid.Health > 0.1 and Humanoid.Health < 1.0E298 then
  104. Humanoid.MaxHealth = 1.0E298
  105. Humanoid.Health = 1.0E298
  106. end
  107. end)
  108. local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
  109. local Remove_Hats = true
  110. local Remove_Clothing = false
  111. local PlayerSize = 1
  112. local DamageColor = BrickColor.new'Pink'
  113. local MusicID = 1847726918
  114. local MusicPitch = 1
  115. local BloodID = "rbxassetid://51657249"
  116. local BloodColor = BrickColor.new'Really black'
  117. local BloodMaterial = Enum.Material.Neon
  118. local Orin = "http://www.roblox.com/asset/?id=234343243"
  119. Head.face.Texture = Orin
  120. function weld(a, b, acf)
  121. local w = Instance.new("Weld", a)
  122. w.Part0 = a
  123. w.Part1 = b
  124. w.C0 = acf
  125. end
  126. local righteyebrickcolor = "Lime green"
  127. local reye = Instance.new("Part", Char)
  128. reye.CanCollide = false
  129. reye.BrickColor = BrickColor.new(righteyebrickcolor)
  130. reye.Material = "Neon"
  131. reye.Size = Vector3.new(.25,.35,.15)
  132. weld(reye, Char.Head, CFrame.new(0.15,-0.2,0.55), CFrame.new(1,0,0))
  133. m1 = Instance.new("SpecialMesh", reye)
  134. m1.MeshType = "Sphere"
  135. m1.Scale = Vector3.new(0.9,0.9,0.9)
  136. reye.Locked = true
  137. reye.Name = "re"
  138.  
  139. local leye = Instance.new("Part", Char)
  140. leye.CanCollide = false
  141. leye.BrickColor = BrickColor.new(righteyebrickcolor)
  142. leye.Material = "Neon"
  143. leye.Size = Vector3.new(.25,.35,.15)
  144. weld(leye, Char.Head, CFrame.new(-0.15,-0.2,0.55), CFrame.new(1,0,0))
  145. local m = Instance.new("SpecialMesh", leye)
  146. m.MeshType = "Sphere"
  147. m.Scale = Vector3.new(0.9,0.9,0.9)
  148. leye.Locked = true
  149. leye.Name = "le"
  150. local Aura = Instance.new('ParticleEmitter')
  151. Aura.Name = "Aura"
  152. Aura.Texture = "rbxassetid://141116476"
  153. Aura.Parent = reye
  154. Aura.LightEmission = 1
  155. Aura.Transparency = NumberSequence.new(0,0.6,1)
  156. Aura.Color = ColorSequence.new(Color3.new(0/255, 255/255, 0/255),Color3.new(0/255, 0/255, 0/255))
  157. Aura.Size = NumberSequence.new(0.5,0.4,0.2)
  158. Aura.LockedToPart = false
  159. Aura.Lifetime = NumberRange.new(2)
  160. Aura.Rate = 99
  161. Aura.Speed = NumberRange.new(1)
  162. Aura.EmissionDirection = "Top"
  163. for i,v in pairs(Char:GetChildren()) do
  164. if v.ClassName == "Accessory" or v.ClassName == "Hat" then
  165. v:destroy()
  166. end
  167. end
  168. local naeeym2 = Instance.new("BillboardGui",Char)
  169. naeeym2.AlwaysOnTop = true
  170. naeeym2.Size = UDim2.new(5,35,2,35)
  171. naeeym2.StudsOffset = Vector3.new(0,3,0)
  172. naeeym2.Adornee = Char.Head
  173. naeeym2.Name = "Name"
  174. --naeeym2.PlayerToHideFrom = Player
  175. naeeym2.MaxDistance = 200
  176. local tecks2 = Instance.new("TextLabel",naeeym2)
  177. tecks2.BackgroundTransparency = 1
  178. tecks2.TextScaled = true
  179. tecks2.BorderSizePixel = 0
  180. tecks2.Text = "C̸o̶r̵r̵u̷p̶t̶e̸d̸"
  181. tecks2.Font = "Garamond"
  182. tecks2.TextSize = 30
  183. tecks2.TextStrokeTransparency = 0
  184. tecks2.TextColor3 = Color3.new(0,0,0)
  185. tecks2.TextStrokeColor3 = Color3.new(10,0,10)
  186. tecks2.Size = UDim2.new(1,0,0.5,0)
  187. tecks2.Parent = naeeym2
  188.  
  189.  
  190. local Moosic = Instance.new("Sound",Char)
  191. Moosic.Volume = 5999
  192. Moosic.SoundId = "rbxassetid://1251489217"
  193. Moosic.Looped = true
  194. Moosic.Pitch = 1 --Pitcher
  195.  
  196. local Music1 = Instance.new("Sound",Char)
  197. Music1.Volume = 5999
  198. Music1.SoundId = "rbxassetid://1202052536"
  199. Music1.Looped = true
  200. Music1.Pitch = 1 --Pitcher
  201. Music1.TimePosition = 100
  202.  
  203. local Music2 = Instance.new("Sound",Char)
  204. Music2.Volume = 5999
  205. Music2.SoundId = "rbxassetid://1374158689"
  206. Music2.Looped = true
  207. Music2.Pitch = 1 --Pitcher
  208.  
  209. local Music3 = Instance.new("Sound",Char)
  210. Music3.Volume = 5999
  211. Music3.SoundId = "rbxassetid://1325283155"
  212. Music3.Looped = true
  213. Music3.Pitch = 1 --Pitcher
  214.  
  215. local Music4 = Instance.new("Sound",Char)
  216. Music4.Volume = 5999
  217. Music4.SoundId = "rbxassetid://1581873125"
  218. Music4.Looped = true
  219. Music4.Pitch = 1 --Pitcher
  220.  
  221. local Music5 = Instance.new("Sound",Char)
  222. Music5.Volume = 5999
  223. Music5.SoundId = "rbxassetid://346746675"
  224. Music5.Looped = true
  225. Music5.Pitch = 1 --Pitcher
  226.  
  227. local Music6 = Instance.new("Sound",Char)
  228. Music6.Volume = 5999
  229. Music6.SoundId = "rbxassetid://1180904313"
  230. Music6.Looped = true
  231. Music6.Pitch = 1 --Pitcher
  232.  
  233. local Creep = Instance.new("Sound",Char)
  234. Creep.Volume = 5999
  235. Creep.SoundId = "rbxassetid://1546451566"
  236. Creep.Looped = true
  237. Creep.Pitch = 1 --Pitcher
  238.  
  239. function chatfunc(text)
  240. local chat = coroutine.wrap(function()
  241. if Char:FindFirstChild("TalkingBillBoard")~= nil then
  242. Char:FindFirstChild("TalkingBillBoard"):destroy()
  243. end
  244. local Bill = Instance.new("BillboardGui",Char)
  245. Bill.Size = UDim2.new(0,100,0,40)
  246. Bill.StudsOffset = Vector3.new(0,3,0)
  247. Bill.Adornee = Char.Head
  248. Bill.Name = "TalkingBillBoard"
  249. local Hehe = Instance.new("TextLabel",Bill)
  250. Hehe.BackgroundTransparency = 1
  251. Hehe.BorderSizePixel = 0
  252. Hehe.Text = ""
  253. Hehe.Font = "Antique"
  254. Hehe.TextSize = 40
  255. Hehe.TextStrokeTransparency = 0
  256. Hehe.Size = UDim2.new(1,0,0.5,0)
  257. coroutine.resume(coroutine.create(function()
  258. while Hehe ~= nil do
  259. swait()
  260. Hehe.Position = UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  261. Hehe.Rotation = math.random(-5,5)
  262. Hehe.TextColor3 = Color3.new(255,0,250)
  263. Hehe.TextStrokeColor3 = Color3.new(255,255,255)
  264. end
  265. end))
  266. for i = 1,string.len(text),1 do
  267. swait()
  268. Hehe.Text = string.sub(text,1,i)
  269. end
  270. swait(90)--Re[math.random(1, 93)]
  271. for i = 0, 1, .025 do
  272. swait()
  273. Bill.ExtentsOffset = Vector3.new(math.random(-i, i), math.random(-i, i), math.random(-i, i))
  274. Hehe.TextStrokeTransparency = i
  275. Hehe.TextTransparency = i
  276. end
  277. Bill:Destroy()
  278. end)
  279. chat()
  280. end
  281. --// Weapon and GUI creation, and Character Customization \\--
  282.  
  283. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  284. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  285. local Effects = IN("Folder",Char)
  286. Effects.Name = "Effects"
  287.  
  288. New = function(Object, Parent, Name, Data)
  289. local Object = Instance.new(Object)
  290. for Index, Value in pairs(Data or {}) do
  291. Object[Index] = Value
  292. end
  293. Object.Parent = Parent
  294. Object.Name = Name
  295. return Object
  296. end
  297.  
  298. Circle = nil
  299. CircleParts = {}
  300. Equipped = false
  301.  
  302. function RayCast(Position, Direction, MaxDistance, IgnoreList)
  303. return game:GetService("Workspace"):FindPartOnRayWithIgnoreList(Ray.new(Position, Direction.unit * (MaxDistance or 999.999)), IgnoreList)
  304. end
  305. Humanoid = Char:FindFirstChildOfClass("Humanoid")
  306. Torso = Char:FindFirstChild("Torso")
  307. if not Plr or not Humanoid or Humanoid.Health == 0 or not Torso then
  308. return
  309. end
  310. Equipped = true
  311. Circle = Instance.new("Model")
  312. Circle.Name = "Circle"
  313. Angle = 0
  314. for i = 1, 1 do
  315. local CirclePart = Instance.new("Part")
  316. CirclePart.Name = "CirclePart"
  317. CirclePart.Transparency = 1
  318. CirclePart.BrickColor = BrickColor.new("Really black")
  319. CirclePart.Material = Enum.Material.Plastic
  320. CirclePart.Shape = Enum.PartType.Block
  321. CirclePart.FormFactor = Enum.FormFactor.Custom
  322. CirclePart.TopSurface = Enum.SurfaceType.Smooth
  323. CirclePart.BottomSurface = Enum.SurfaceType.Smooth
  324. CirclePart.Anchored = true
  325. CirclePart.CanCollide = false
  326. CirclePart.Locked = true
  327. CirclePart.Size = Vector3.new(10, 0.2, 10)
  328. local Aura = Instance.new('ParticleEmitter')
  329. Aura.Name = "Aura"
  330. Aura.Texture = "rbxassetid://51657249"
  331. Aura.Parent = CirclePart
  332. Aura.LightEmission = 0
  333. Aura.Transparency = NumberSequence.new(0.2,0.4,1)
  334. Aura.Color = ColorSequence.new(Color3.new(0/255, 255/255, 0/255),Color3.new(0/255, 0/255, 0/255))
  335. Aura.Size = NumberSequence.new(1.2,0.9,0.8)
  336. Aura.LockedToPart = false
  337. Aura.Lifetime = NumberRange.new(2)
  338. Aura.Rate = 60
  339. Aura.Speed = NumberRange.new(2.5)
  340. Aura.SpreadAngle = Vector2.new(360,360)
  341. local BlockMesh = Instance.new("BlockMesh")
  342. BlockMesh.Scale = Vector3.new(1, (1 + (0.005 * i)), 1)
  343. BlockMesh.Parent = CirclePart
  344. CirclePart.Parent = Circle
  345. local Star = Instance.new("Decal", CirclePart)
  346. Star.Texture = "http://www.roblox.com/asset/?id=1346256339"
  347. Star.Face = "Top"
  348. local Light = Instance.new("PointLight", CirclePart)
  349. Light.Color = Color3.new(0,.20,0)
  350. Light.Brightness = 100
  351. Light.Range = 15
  352. table.insert(CircleParts, CirclePart)
  353. end
  354. Spawn(function()
  355. while Equipped and Humanoid.Parent and Humanoid.Health > 0 and Torso.Parent do
  356. if Angle == 360 then
  357. Angle = 0
  358. end
  359. Angle = Angle + 0.05
  360. local Hit, EndPosition = RayCast(Torso.Position, Vector3.new(0, -1, 0), (Torso.Size.Y * 6.5), {Char})
  361. if Hit then
  362. if not Circle.Parent then
  363. Circle.Parent = Char
  364. end
  365. for i, v in pairs(CircleParts) do
  366. v.CFrame = CFrame.new(Torso.Position.X, EndPosition.Y, Torso.Position.Z) * CFrame.Angles(0, (Angle + i), 0)
  367. end
  368. else
  369. Circle.Parent = nil
  370. end
  371. wait()
  372. end
  373. end)
  374.  
  375.  
  376. CyborgArm = New("Model",Char,"CyborgArm",{})
  377. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  378. 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),})
  379. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  380. 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),})
  381. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  382. 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),})
  383. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  384. 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),})
  385. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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})
  386. 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),})
  387. 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),})
  388. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  389. 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),})
  390. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  391. 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),})
  392. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  393. 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),})
  394. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  395. 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),})
  396. Part = New("Part",CyborgArm,"Part",{BrickColor = BrickColor.new("Hot pink"),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,})
  397. 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),})
  398.  
  399. for _,v in next, CyborgArm:children() do
  400. v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  401. end
  402. Arm = New("Model",Char,"Arm",{})
  403. Handle = New("Part",Arm,"Arm",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Glass,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,})
  404. Handle = New("Part",Arm,"Arm",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Glass,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,})
  405. local Aura = Instance.new('ParticleEmitter')
  406. Aura.Name = "Aura"
  407. Aura.Texture = "rbxassetid://29553714"
  408. Aura.Parent = Handle
  409. Aura.LightEmission = 0
  410. Aura.Transparency = NumberSequence.new(0.2,0.4,1)
  411. Aura.Color = ColorSequence.new(Color3.new(0/255, 255/255, 0/255),Color3.new(0/255, 0/255, 0/255))
  412. Aura.Size = NumberSequence.new(0.5,0.4,0.2)
  413. Aura.LockedToPart = true
  414. Aura.Lifetime = NumberRange.new(2)
  415. Aura.Rate = 1000
  416. Aura.Speed = NumberRange.new(0.3)
  417. Aura.SpreadAngle = Vector2.new(360,360)
  418. local Aura2 = Instance.new('ParticleEmitter')
  419. Aura2.Name = "Aura2"
  420. Aura2.Texture = "rbxassetid://73050819"
  421. Aura2.Parent = Handle
  422. Aura2.LightEmission = 0
  423. Aura2.Transparency = NumberSequence.new(0.2,0.,1)
  424. Aura2.Color = ColorSequence.new(Color3.new(0/255, 255/255, 0/255),Color3.new(0/255, 0/255, 0/255))
  425. Aura2.Size = NumberSequence.new(0.3,0.2,0.1)
  426. Aura2.LockedToPart = true
  427. Aura2.Lifetime = NumberRange.new(2)
  428. Aura2.Rate = 1000
  429. Aura2.Speed = NumberRange.new(0.2)
  430. Aura2.SpreadAngle = Vector2.new(360,360)
  431. Part = New("Part",Arm,"Part",{BrickColor = BrickColor.new("Institutional white"),Material = Enum.Material.Glass,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,})
  432. 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),})
  433. for _,v in next, Arm:children() do
  434. v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  435. end
  436.  
  437. pcall(function() Char.ReaperShadowHead.Eye1.BrickColor = BrickColor.new'Carnation pink' Char.ReaperShadowHead.Eye1.Material = 'Glass' end)
  438. pcall(function() Char.ReaperShadowHead.Eye2.BrickColor = BrickColor.new'Carnation pink' Char.ReaperShadowHead.Eye2.Material = 'Glass' end)
  439. pcall(function() Char.LeftWing.BrickColor = BrickColor.new'Carnation pink' Char.LeftWing.Transparency = 0.5 end)
  440.  
  441.  
  442. if(PlayerSize ~= 1)then
  443. for _,v in next, Char:GetDescendats() do
  444. if(v:IsA'BasePart')then
  445. v.Size = v.Size * PlayerSize
  446. end
  447. end
  448. end
  449.  
  450. --// Instance Creation Functions \\--
  451.  
  452. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  453. local Sound = IN("Sound")
  454. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  455. Sound.Pitch = pitch or 1
  456. Sound.Volume = volume or 1
  457. Sound.Looped = looped or false
  458. if(autoPlay)then
  459. coroutine.wrap(function()
  460. repeat wait() until Sound.IsLoaded
  461. Sound.Playing = autoPlay or false
  462. end)()
  463. end
  464. if(not looped and effect)then
  465. Sound.Ended:connect(function()
  466. Sound.Volume = 0
  467. Sound:destroy()
  468. end)
  469. elseif(effect)then
  470. warn("Sound can't be looped and a sound effect!")
  471. end
  472. Sound.Parent =parent or Char
  473. return Sound
  474. end
  475. warn("Edit by deivis97")
  476. function Part(parent,color,material,size,cframe,anchored,cancollide)
  477. local part = IN("Part")
  478. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  479. part.Material = material or Enum.Material.SmoothPlastic
  480. part.TopSurface,part.BottomSurface=10,10
  481. part.Size = size or V3.N(1,1,1)
  482. part.CFrame = cframe or CF.N(0,0,0)
  483. part.CanCollide = cancollide or false
  484. part.Anchored = anchored or false
  485. part.Parent = parent or Char
  486. return part
  487. end
  488.  
  489. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  490. local part = IN("SpecialMesh")
  491. part.MeshId = meshid or ""
  492. part.TextureId = textid or ""
  493. part.Scale = scale or V3.N(1,1,1)
  494. part.Offset = offset or V3.N(0,0,0)
  495. part.MeshType = meshtype or Enum.MeshType.Sphere
  496. part.Parent = parent
  497. return part
  498. end
  499.  
  500. NewInstance = function(instance,parent,properties)
  501. local inst = Instance.new(instance,parent)
  502. if(properties)then
  503. for i,v in next, properties do
  504. pcall(function() inst[i] = v end)
  505. end
  506. end
  507. return inst;
  508. end
  509.  
  510. --// Music Creation \\--
  511. local Music = Sound(Char,MusicID,MusicPitch,9,true,false,true)
  512. Music.Name = 'Music'
  513.  
  514. --// Stop animations \\--
  515. for _,v in next, Hum:GetPlayingAnimationTracks() do
  516. v:Stop();
  517. end
  518.  
  519. pcall(game.Destroy,Char:FindFirstChild'Animate')
  520. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  521.  
  522. --// Joints \\--
  523.  
  524. 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)})
  525. 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)})
  526. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  527. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  528. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  529. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  530. local HW = NewInstance('Motor',Char,{Part0=Handle,Part1=RArm})
  531.  
  532. local LSC0 = LS.C0
  533. local RSC0 = RS.C0
  534. local NKC0 = NK.C0
  535. local LHC0 = LH.C0
  536. local RHC0 = RH.C0
  537. local RJC0 = RJ.C0
  538.  
  539. --// Artificial HB \\--
  540.  
  541. local ArtificialHB = IN("BindableEvent", script)
  542. ArtificialHB.Name = "Heartbeat"
  543.  
  544. script:WaitForChild("Heartbeat")
  545.  
  546. local tf = 0
  547. local allowframeloss = false
  548. local tossremainder = false
  549. local lastframe = tick()
  550. local frame = 1/Frame_Speed
  551. ArtificialHB:Fire()
  552.  
  553. game:GetService("RunService").Heartbeat:connect(function(s, p)
  554. tf = tf + s
  555. if tf >= frame then
  556. if allowframeloss then
  557. script.Heartbeat:Fire()
  558. lastframe = tick()
  559. else
  560. for i = 1, math.floor(tf / frame) do
  561. ArtificialHB:Fire()
  562. end
  563. lastframe = tick()
  564. end
  565. if tossremainder then
  566. tf = 0
  567. else
  568. tf = tf - frame * math.floor(tf / frame)
  569. end
  570. end
  571. end)
  572.  
  573. function swait(num)
  574. if num == 0 or num == nil then
  575. ArtificialHB.Event:wait()
  576. else
  577. for i = 0, num do
  578. ArtificialHB.Event:wait()
  579. end
  580. end
  581. end
  582.  
  583.  
  584. --// Effect Function(s) \\--
  585.  
  586. function FakeWeld(p0,p1)
  587. local attachment0 = Instance.new('Attachment',p0)
  588. local attachment1 = Instance.new('Attachment',p1)
  589. return NewInstance("HingeConstraint",p0,{Attachment0=attachment0,Attachment1=attachment1,LimitsEnabled=true,UpperAngle=0,LowerAngle=0})
  590. end
  591.  
  592. function Fragment(v)
  593. v:ClearAllChildren()
  594. local Fragments = NewInstance("Folder",v.Parent,{Name='Fragmentation'})
  595. v.Archivable = true
  596. -- X
  597. v.Size = Vector3.new(v.Size.x/2,v.Size.y,v.Size.z)
  598. v.Name = v.Name.."Fragment"
  599.  
  600. local a = v:Clone()
  601. a.Parent = Fragments
  602. a.CFrame = CF.N(-.5,1,1) * a.CFrame
  603. v.CFrame = CF.N(.5,1,1) * v.CFrame
  604. -- Y
  605. v.Size = Vector3.new(v.Size.x,v.Size.y/2,v.Size.z)
  606.  
  607. local a = v:Clone()
  608. a.Parent = Fragments
  609. a.CFrame = CF.N(1,-.5,1) * a.CFrame
  610. v.CFrame = CF.N(1,.5,1) * v.CFrame
  611. -- Z
  612. v.Size = Vector3.new(v.Size.x,v.Size.y,v.Size.z/2)
  613.  
  614. local a = v:Clone()
  615. a.Parent = Fragments
  616. a.CFrame = CF.N(1,1,-.5) * a.CFrame
  617. v.CFrame = CF.N(1,1,.5) * v.CFrame
  618.  
  619. v.Parent = Fragments
  620. return Fragments
  621. end
  622.  
  623. local blood = NewInstance("ParticleEmitter",nil,{
  624. Color = ColorSequence.new(Color3.new(0/255, 255/255, 0/255),Color3.new(0/255, 50/255, 0/255)),
  625. LightEmission=.1,
  626. LightInfluence=1,
  627. ZOffset=.9,
  628. Size=NumberSequence.new{NumberSequenceKeypoint.new(0,.2,0),NumberSequenceKeypoint.new(1,3,0)},
  629. Texture="rbxassetid://51657249",
  630. Transparency=NumberSequence.new{NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)},
  631. Acceleration = V3.N(0,-15,0),
  632. Lifetime = NumberRange.new(1,2),
  633. Rate=50,
  634. Speed = NumberRange.new(5,15),
  635. SpreadAngle = Vector2.new(15,15),
  636. Enabled = false,
  637. EmissionDirection = 'Back',
  638. })
  639.  
  640. local blood2 = NewInstance("ParticleEmitter",nil,{
  641. Color = ColorSequence.new(Color3.new(0/255, 255/255, 0/255),Color3.new(0/255, 50/255, 0/255)),
  642. LightEmission=.1,
  643. LightInfluence=1,
  644. ZOffset=.9,
  645. Size=NumberSequence.new{NumberSequenceKeypoint.new(0,.2,0),NumberSequenceKeypoint.new(1,3,0)},
  646. Texture=BloodID,
  647. Transparency=NumberSequence.new{NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)},
  648. Acceleration = V3.N(0,-125,0),
  649. Lifetime = NumberRange.new(1,2),
  650. Rate=50,
  651. Speed = NumberRange.new(5,15),
  652. SpreadAngle = Vector2.new(15,15),
  653. Enabled = false,
  654. EmissionDirection = 'Back',
  655. })
  656.  
  657. local blood3 = NewInstance("ParticleEmitter",nil,{
  658. Color = ColorSequence.new(Color3.new(0/255, 255/255, 0/255),Color3.new(0/255, 50/255, 0/255)),
  659. Size=NumberSequence.new{NumberSequenceKeypoint.new(0,.2),NumberSequenceKeypoint.new(1,.2)},
  660. Texture=BloodID,
  661. Lifetime = NumberRange.new(.4),
  662. Rate=50,
  663. LockedToPart=true,
  664. Speed = NumberRange.new(0,2),
  665. Enabled = false,
  666. })
  667.  
  668. function Blood(size,cframe,amount)
  669. local part = Instance.new("Part",Effects)
  670. part.Transparency = 1
  671. part.Size = size
  672. part.Anchored = true
  673. part.CanCollide = false
  674. part.CFrame = cframe
  675. S.Debris:AddItem(part,6)
  676. local prtcl = blood:Clone()
  677. prtcl.Parent = part
  678. prtcl:Emit(amount)
  679. return part, prtcl
  680. end
  681.  
  682. function Blood2(size,cframe)
  683. local part = Instance.new("Part",Effects)
  684. part.Transparency = 1
  685. part.Size = size
  686. part.Anchored = false
  687. part.CanCollide = false
  688. part.CFrame = cframe
  689. local prtcl = blood:Clone()
  690. prtcl.Enabled = true
  691. prtcl.Parent = part
  692. return part, prtcl
  693. end
  694.  
  695. function Blood3(size,cframe,amount)
  696. local part = Instance.new("Part",Effects)
  697. part.Transparency = 1
  698. part.Size = size
  699. part.Anchored = true
  700. part.CanCollide = false
  701. part.CFrame = cframe
  702. S.Debris:AddItem(part,6)
  703. local prtcl = blood2:Clone()
  704. prtcl.Parent = part
  705. prtcl:Emit(amount)
  706. return part, prtcl
  707. end
  708.  
  709. function Blood4(size,cframe)
  710. local part = Instance.new("Part",Effects)
  711. part.Transparency = 1
  712. part.Size = size
  713. part.Anchored = false
  714. part.CanCollide = false
  715. part.CFrame = cframe
  716. local prtcl = blood2:Clone()
  717. prtcl.Enabled = true
  718. prtcl.Parent = part
  719. return part, prtcl
  720. end
  721.  
  722.  
  723. function BloodDrop(pos,dir,maxsize)
  724. if(game.PlaceId ~= 843468296)then
  725. local owo = NewInstance("Part",Effects,{Transparency=0,Material=BloodMaterial,BrickColor=BloodColor,Shape=Enum.PartType.Ball,Size=V3.N(.2,.2,.2), CanCollide = false})
  726. owo.CFrame=CF.N(pos,dir)
  727. local bv = Instance.new("BodyVelocity",owo)
  728. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  729. 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
  730. bv.Name = "MOVE"
  731. local prt = blood3:Clone()
  732. prt.Parent = owo
  733. prt.Enabled = true
  734. delay(.01, function() bv:destroy() end)
  735. local touch;
  736. touch = owo.Touched:connect(function(hit)
  737. if(hit.Anchored==true and hit.CanCollide and not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent.Parent:FindFirstChildOfClass'Humanoid')then
  738. touch:disconnect()
  739. BloodPuddle(owo.Position+V3.N(0,1,0),100,maxsize,owo)
  740. owo:destroy()
  741. end
  742. end)
  743. end
  744. end
  745.  
  746. function BloodPuddle(position,range,maxSize,where)
  747. local hit, pos, norm = workspace:FindPartOnRayWithIgnoreList(Ray.new(
  748. position,CF.N(position,position+V3.N(0,-1,0)).lookVector * range
  749. ),{where,Char},false,true)
  750. if(hit and not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent.Parent:FindFirstChildOfClass'Humanoid')then
  751. if(hit.Name == 'BloodPuddle')then
  752. local dist = (position - hit.Position).magnitude
  753. 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
  754. --hit.CylinderMesh.Scale = hit.CylinderMesh.Scale + V3.N(.1,0,.1)
  755. hit.Size = hit.Size + V3.N(.1,0,.1)
  756. end
  757. if(hit.Size.Z < 2)then
  758. pcall(function() hit.Sound:Play() end)
  759. end
  760. else
  761. 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'})
  762. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  763. Sound(Puddle,685857471,1,2,false,false,true)
  764. coroutine.wrap(function()
  765. swait(75)
  766. repeat
  767. swait()
  768. Puddle.Size = Puddle.Size - V3.N(.02,0,.02)
  769. until Puddle.Size.Z < 0.51
  770. Puddle:destroy()
  771. end)()
  772. end
  773. end
  774. end
  775.  
  776. function recurse(root,callback,i)
  777. i= i or 0
  778. for _,v in pairs(root:GetChildren()) do
  779. i = i + 1
  780. callback(i,v)
  781.  
  782. if #v:GetChildren() > 0 then
  783. i = recurse(v,callback,i)
  784. end
  785. end
  786.  
  787. return i
  788. end
  789.  
  790. function ragdollJoint(Character, part0, part1, attachmentName, className, properties) -- thanks mustardfat im too lazy
  791. if Character:FindFirstChild("RagdollConstraint"..part1.Name) == nil then
  792. for i,v in pairs(Character:GetChildren()) do
  793. 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
  794. v.Size = Vector3.new(1,1,1)
  795. end
  796. end
  797. if part1:FindFirstChildOfClass('Motor6D') then
  798. part1:FindFirstChildOfClass('Motor6D'):Remove()
  799. end
  800. if attachmentName ~= "NeckAttachment" then
  801. attachmentName = attachmentName.."RigAttachment"
  802. end
  803. local constraint = Instance.new(className.."Constraint")
  804. constraint.Attachment0 = part0:FindFirstChild(attachmentName)
  805. constraint.Attachment1 = part1:FindFirstChild(attachmentName)
  806. constraint.Name = "RagdollConstraint"..part1.Name
  807. if Character:FindFirstChildOfClass('Humanoid').Health > 0 then
  808. local collidepart = Instance.new('Part',part1)
  809. collidepart.Size = part1.Size/2
  810. if string.find(string.lower(part1.Name),"upper") then
  811. if string.find(string.lower(part1.Name),"leg") then
  812. collidepart.Size = part1.Size/3
  813. else
  814. collidepart.Size = part1.Size/2.5
  815. end
  816. end
  817. collidepart.CanCollide = true
  818. collidepart.Name = "RagdollJoint"
  819. collidepart.Anchored = false
  820. collidepart.Transparency = 1
  821. collidepart.CFrame = part1.CFrame
  822. collidepart:BreakJoints()
  823. local attachment0 = Instance.new('Attachment',part1)
  824. local attachment1 = Instance.new('Attachment',collidepart)
  825. if attachment0 and attachment1 then
  826. local constraint = Instance.new("HingeConstraint")
  827. constraint.Attachment0 = attachment0
  828. constraint.Attachment1 = attachment1
  829. constraint.LimitsEnabled = true
  830. constraint.UpperAngle = 0
  831. constraint.LowerAngle = 0
  832. constraint.Parent = Character
  833. end
  834. if string.find(string.lower(part1.Name),"upper") then
  835. if string.find(string.lower(part1.Name),"leg") then
  836. attachment0.Position = Vector3.new(0,0.01,0)
  837. else
  838. attachment0.Position = Vector3.new(0,0.25,0)
  839. end
  840. else
  841. attachment0.Position = Vector3.new(0,-0.1,0)
  842. end
  843. end
  844. for _,propertyData in next,properties or {} do
  845. constraint[propertyData[1]] = propertyData[2]
  846. end
  847. constraint.Parent = Character
  848. return constraint
  849. end
  850. end
  851.  
  852.  
  853. function getAttachment0(Character,attachmentName)
  854. for _,child in next,Character:children() do
  855. local attachment = child:FindFirstChild(attachmentName)
  856. if attachment then
  857. return attachment
  858. end
  859. end
  860. end
  861.  
  862.  
  863. function Ragdoll(who,half,snapped)
  864. pcall(function()
  865. who:breakJoints()
  866. local who = who
  867. local hhh = who:FindFirstChildOfClass'Humanoid'
  868. local t = GetTorso(who)
  869. pcall(function()
  870. who.HumanoidRootPart:destroy()
  871. end)
  872. hhh.Health = 0
  873. Stunned[who] = true
  874. if(hhh.RigType == Enum.HumanoidRigType.R6)then
  875. 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'
  876. pcall(function()
  877. if(hhh.Health > 0)then local CollideRA = NewInstance('Part',who,{Size=RA.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  878. FakeWeld(RA,CollideRA) end
  879. local RAJ = NewInstance("Attachment",t,{Position=V3.N(1.5,.5,0),Orientation=V3.N()})
  880. local RAJ2 = NewInstance("Attachment",RA,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  881. local RAC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=RAJ,Attachment1=RAJ2})
  882. end)
  883. pcall(function()
  884. local LAJ = NewInstance("Attachment",t,{Position=V3.N(-1.5,.5,0),Orientation=V3.N()})
  885. local LAJ2 = NewInstance("Attachment",LA,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  886.  
  887. local LAC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=LAJ,Attachment1=LAJ2})
  888.  
  889. if(hhh.Health > 0)then local CollideLA = NewInstance('Part',who,{Size=LA.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  890. FakeWeld(LA,CollideLA) end
  891. end)
  892. pcall(function()
  893. if(HD)then
  894. local NJ = NewInstance('Attachment',t,{Position=V3.N(0,1,0),Orientation=V3.N()})
  895. local NJ2 = NewInstance('Attachment',HD,{Position=V3.N(0,-.5,0),Orientation=V3.N()})
  896. local NJ3 = NewInstance('Attachment',HD,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  897. local HC = NewInstance('HingeConstraint',t,{LimitsEnabled=true,UpperAngle=50,LowerAngle=-50,Attachment0=NJ,Attachment1=NJ2})
  898.  
  899. if(snapped)then
  900. NJ.Orientation = V3.N(0,90,0)
  901. end
  902. if(hhh.Health > 0)then
  903. local CollideHD = NewInstance('Part',who,{Size=HD.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  904. FakeWeld(HD,CollideHD)
  905. end
  906. end
  907. end)
  908. if(not half)then
  909. local RLJ = NewInstance("Attachment",t,{Position=V3.N(.5,-1,0),Orientation=V3.N()})
  910. local RLJ2 = NewInstance("Attachment",RL,{Position=V3.N(0,1,0),Orientation=V3.N()})
  911. local LLJ = NewInstance("Attachment",t,{Position=V3.N(-.5,-1,0),Orientation=V3.N()})
  912. local LLJ2 = NewInstance("Attachment",LL,{Position=V3.N(0,1,0),Orientation=V3.N()})
  913. local RLC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=RLJ,Attachment1=RLJ2})
  914. local LLC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=LLJ,Attachment1=LLJ2})
  915. if(hhh.Health > 0)then local CollideRL = NewInstance('Part',who,{Size=RL.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  916. local CollideLL = NewInstance('Part',who,{Size=LL.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  917.  
  918. FakeWeld(RL,CollideRL)
  919. FakeWeld(LL,CollideLL) end
  920. end
  921. for _,v in next, who:children() do
  922. if(v:IsA'BasePart')then
  923. v.CanCollide = true
  924. end
  925. end
  926. else
  927. local Character = who
  928.  
  929. if(half)then
  930. pcall(function()
  931. Character.UpperTorso.WaistRigAttachment:Destroy()
  932. end)
  933. end
  934.  
  935. local handProperties = {
  936. {"LimitsEnabled", true};
  937. {"UpperAngle",0};
  938. {"LowerAngle",0};
  939. }
  940. local footProperties = {
  941. {"LimitsEnabled", true};
  942. {"UpperAngle", 15};
  943. {"LowerAngle", -45};
  944. }
  945. local shinProperties = {
  946. {"LimitsEnabled", true};
  947. {"UpperAngle", 0};
  948. {"LowerAngle", -75};
  949. }
  950. if Character:FindFirstChild('RightLowerArm') and Character:FindFirstChild('RightHand') then
  951. ragdollJoint(Character,Character.RightLowerArm, Character.RightHand, "RightWrist", "Hinge", handProperties)
  952. end
  953. if Character:FindFirstChild('UpperTorso') and Character:FindFirstChild('RightUpperArm') then
  954. ragdollJoint(Character, Character.UpperTorso, Character["RightUpperArm"], "RightShoulder", "BallSocket")
  955. end
  956. if Character:FindFirstChild('RightUpperArm') and Character:FindFirstChild('RightLowerArm') then
  957. ragdollJoint(Character, Character.RightUpperArm, Character.RightLowerArm, "RightElbow", "BallSocket")
  958. end
  959. if Character:FindFirstChild('LeftLowerArm') and Character:FindFirstChild('LeftHand') then
  960. ragdollJoint(Character,Character.LeftLowerArm, Character.LeftHand, "LeftWrist", "Hinge", handProperties)
  961. end
  962. if Character:FindFirstChild('UpperTorso') and Character:FindFirstChild('LeftUpperArm') then
  963. ragdollJoint(Character, Character.UpperTorso, Character["LeftUpperArm"], "LeftShoulder", "BallSocket")
  964. end
  965. if Character:FindFirstChild('LeftUpperArm') and Character:FindFirstChild('LeftLowerArm') then
  966. ragdollJoint(Character, Character.LeftUpperArm, Character.LeftLowerArm, "LeftElbow", "BallSocket")
  967. end
  968. if Character:FindFirstChild('RightUpperLeg') and Character:FindFirstChild('RightLowerLeg') then
  969. ragdollJoint(Character,Character.RightUpperLeg, Character.RightLowerLeg, "RightKnee", "Hinge", shinProperties)
  970. end
  971. if Character:FindFirstChild('RightLowerLeg') and Character:FindFirstChild('RightFoot') then
  972. ragdollJoint(Character,Character.RightLowerLeg, Character.RightFoot, "RightAnkle", "Hinge", footProperties)
  973. end
  974. if Character:FindFirstChild('LowerTorso') and Character:FindFirstChild('RightUpperLeg') then
  975. ragdollJoint(Character,Character.LowerTorso, Character.RightUpperLeg, "RightHip", "BallSocket")
  976. end
  977. if Character:FindFirstChild('LeftUpperLeg') and Character:FindFirstChild('LeftLowerLeg') then
  978. ragdollJoint(Character,Character.LeftUpperLeg, Character.LeftLowerLeg, "LeftKnee", "Hinge", shinProperties)
  979. end
  980. if Character:FindFirstChild('LeftLowerLeg') and Character:FindFirstChild('LeftFoot') then
  981. ragdollJoint(Character,Character.LeftLowerLeg, Character.LeftFoot, "LeftAnkle", "Hinge", footProperties)
  982. end
  983. if Character:FindFirstChild('LowerTorso') and Character:FindFirstChild('LeftUpperLeg') then
  984. ragdollJoint(Character,Character.LowerTorso, Character.LeftUpperLeg, "LeftHip", "BallSocket")
  985. end
  986. if Character:FindFirstChild('UpperTorso') and Character:FindFirstChild('LowerTorso') then
  987. ragdollJoint(Character,Character.LowerTorso, Character.UpperTorso, "Waist", "BallSocket", {
  988. {"LimitsEnabled",true};
  989. {"UpperAngle",5};
  990. {"Radius",5};
  991. })
  992. end
  993. if Character:FindFirstChild('UpperTorso') and Character:FindFirstChild('Head') then
  994. ragdollJoint(Character,Character.UpperTorso, Character.Head, "Neck", "Hinge", {
  995. {"LimitsEnabled",true};
  996. {"UpperAngle",50};
  997. {"LowerAngle",-50};
  998. })
  999. end
  1000. local NeckA = ragdollJoint(Character,Character.UpperTorso, Character.Head, "Neck", "Hinge", {
  1001. {"LimitsEnabled",true};
  1002. {"UpperAngle",50};
  1003. {"LowerAngle",-50};
  1004. })
  1005.  
  1006. recurse(Character, function(_,v)
  1007. if v:IsA("Attachment") then
  1008. v.Axis = Vector3.new(0, 1, 0)
  1009. v.SecondaryAxis = Vector3.new(0, 0, 1)
  1010. v.Rotation = Vector3.new(0, 0, 0)
  1011. if(v.Parent == Character.Head and snapped)then
  1012. v.Orientation = V3.N(0,-90,0)
  1013. end
  1014. end
  1015. end)
  1016. end
  1017. end)
  1018. end
  1019.  
  1020.  
  1021. function Bezier(startpos, pos2, pos3, endpos, t)
  1022. local A = startpos:lerp(pos2, t)
  1023. local B = pos2:lerp(pos3, t)
  1024. local C = pos3:lerp(endpos, t)
  1025. local lerp1 = A:lerp(B, t)
  1026. local lerp2 = B:lerp(C, t)
  1027. local cubic = lerp1:lerp(lerp2, t)
  1028. return cubic
  1029. end
  1030.  
  1031. function Effect(data)
  1032. local FX = data.Effect or 'Resize-AndFade'
  1033. local Parent = data.Parent or Effects
  1034. local Color = data.Color or C3.N(0,0,0)
  1035. local Size = data.Size or V3.N(1,1,1)
  1036. local MoveDir = data.MoveDirection or nil
  1037. local MeshData = data.Mesh or nil
  1038. local SndData = data.Sound or nil
  1039. local Frames = data.Frames or 45
  1040. local Manual = data.Manual or nil
  1041. local Material = data.Material or nil
  1042. local CFra = data.CFrame or Torso.CFrame
  1043. local Settings = data.FXSettings or {}
  1044. local Snd,Prt,Msh;
  1045. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  1046. Prt = Manual
  1047. else
  1048. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  1049. end
  1050. if(typeof(MeshData) == 'table')then
  1051. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  1052. elseif(typeof(MeshData) == 'Instance')then
  1053. Msh = MeshData:Clone()
  1054. Msh.Parent = Prt
  1055. end
  1056. if(typeof(SndData) == 'table' or typeof(SndData) == 'Instance')then
  1057. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  1058. end
  1059. if(Snd)then
  1060. repeat wait() until Snd.Playing and Snd.IsLoaded and Snd.TimeLength > 0
  1061. Frames = Snd.TimeLength * Frame_Speed/Snd.Pitch
  1062. end
  1063. local MoveSpeed = nil;
  1064. if(MoveDir)then
  1065. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  1066. end
  1067. local Inc = M.RNG()-M.RNG()
  1068. local Thingie = 0
  1069. local Thingie2 = M.RNG(50,100)/100
  1070.  
  1071. coroutine.wrap(function()
  1072. if(FX ~= 'Arc')then
  1073. for i = 1, Frames do
  1074. if(FX == 'Resize-AndFade')then
  1075. if(not Settings.EndSize)then
  1076. Settings.EndSize = V3.N(0,0,0)
  1077. end
  1078. local grow = (typeof(Settings.EndSize) == 'Vector3' and Settings.EndSize-Size or typeof(Settings.EndSize) == 'number' and V3.N(Settings.EndSize))
  1079. if(Settings.EndIsIncrement)then
  1080. Prt.Size = Prt.Size - Settings.EndSize
  1081. else
  1082. Prt.Size = Prt.Size - grow/Frames
  1083. end
  1084. Prt.Transparency = (i/Frames)
  1085. elseif(FX == 'Resize+AndFade')then
  1086. if(not Settings.EndSize)then
  1087. Settings.EndSize = Size*2
  1088. end
  1089. local grow = (typeof(Settings.EndSize) == 'Vector3' and Settings.EndSize-Size or typeof(Settings.EndSize) == 'number' and V3.N(Settings.EndSize))
  1090. if(Settings.EndIsIncrement)then
  1091. Prt.Size = Prt.Size + Settings.EndSize
  1092. else
  1093. Prt.Size = Prt.Size + grow/Frames
  1094. end
  1095. Prt.Transparency = (i/Frames)
  1096. elseif(FX == 'Fade')then
  1097. Prt.Transparency = (i/Frames)
  1098. end
  1099. if(Settings.RandomizeCFrame)then
  1100. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  1101. end
  1102. if(MoveDir and MoveSpeed)then
  1103. local Orientation = Prt.Orientation
  1104. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  1105. Prt.Orientation = Orientation
  1106. end
  1107. if(swait and typeof(swait) == 'function')then
  1108. swait()
  1109. else
  1110. wait()
  1111. end
  1112. end
  1113. Prt:destroy()
  1114. else
  1115. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  1116. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  1117. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  1118. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  1119. assert(start ~= nil,"You need to specify a start point!")
  1120. assert(endP ~= nil,"You need to specify an end point!")
  1121. for i = 0, 1, Settings.Speed or 0.01 do
  1122. if(Settings.Home)then
  1123. endP = Settings.Home.CFrame
  1124. end
  1125. Prt.CFrame = Bezier(start, quarter, threequarter, endP, i)
  1126. if(swait and typeof(swait) == 'function')then
  1127. swait()
  1128. else
  1129. wait()
  1130. end
  1131. end
  1132. if(Settings.RemoveOnGoal)then
  1133. Prt:destroy()
  1134. end
  1135. end
  1136. end)()
  1137. return Prt,Msh,Snd
  1138. end
  1139.  
  1140.  
  1141. function SoulSteal(Character)
  1142. local torso = (Character:FindFirstChild'Head' or Character:FindFirstChild'Torso' or Character:FindFirstChild'UpperTorso' or Character:FindFirstChild'LowerTorso' or Character:FindFirstChild'HumanoidRootPart')
  1143. print(torso)
  1144. if(torso and torso:IsA'BasePart')then
  1145. local Model = Instance.new("Model",Effects)
  1146. Model.Name = Character.Name.."'s Soul"
  1147. Character:BreakJoints()
  1148. local Soul = Part(Model,BrickColor.new'Carnation pink','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  1149. Soul.Name = 'Head'
  1150. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  1151. Effect{
  1152. Effect="Arc",
  1153. Manual = Soul,
  1154. FXSettings={
  1155. Start=torso.CFrame,
  1156. Home = Torso,
  1157. RemoveOnGoal = true,
  1158. }
  1159. }
  1160. local lastPoint = Soul.CFrame.p
  1161.  
  1162. for i = 0, 1, 0.01 do
  1163. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  1164. local mag = (lastPoint - Soul.Position).magnitude
  1165. Effect{
  1166. Effect = "Fade",
  1167. CFrame = point * CF.N(0, mag/2, 0),
  1168. Size = V3.N(.5,mag+.5,.5),
  1169. Color = Soul.BrickColor
  1170. }
  1171. lastPoint = Soul.CFrame.p
  1172. swait()
  1173. end
  1174. for i = 1, 5 do
  1175. Effect{
  1176. Effect="Fade",
  1177. Color = BrickColor.new'Carnation pink',
  1178. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  1179. }
  1180. end
  1181. end
  1182. end
  1183.  
  1184. --// Other Functions \\ --
  1185.  
  1186. function getRegion(point,range,ignore)
  1187. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  1188. end
  1189.  
  1190. function clerp(startCF,endCF,alpha)
  1191. return startCF:lerp(endCF, alpha)
  1192. end
  1193.  
  1194. function GetTorso(Char)
  1195. return Char:FindFirstChild'Torso' or Char:FindFirstChild'UpperTorso'
  1196. end
  1197.  
  1198.  
  1199.  
  1200. function ShowDamage(Pos, Text, Time, Color)
  1201. coroutine.wrap(function()
  1202. local Rate = (1 / 30)
  1203. local Pos = Head
  1204. local Text = (Text or ".Char Deleted")
  1205. local Time = (Time or 2)
  1206. local Color = (Color or Color3.new(1, 0, 1))
  1207. local EffectPart = NewInstance("Part",Effects,{
  1208. Material=Enum.Material.SmoothPlastic,
  1209. RArmlectance = 0,
  1210. Transparency = 0,
  1211. BrickColor = BrickColor.new(Color),
  1212. Name = "Effect",
  1213. Size = Vector3.new(1,1,1),
  1214. Anchored = true
  1215. })
  1216. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  1217. Size = UDim2.new(1.25, 0, 1.25, 0),
  1218. Adornee = EffectPart,
  1219. })
  1220. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  1221. BackgroundTransparency = 1,
  1222. Size = UDim2.new(1, 0, 1, 0),
  1223. Text = Text,
  1224. Font = "Arial",
  1225. TextColor3 = Color3.new(255,102,200),
  1226. TextStrokeColor3 = Color3.new(200,200,200),
  1227. TextStrokeTransparency=0,
  1228. TextScaled = true,
  1229. })
  1230. game.Debris:AddItem(EffectPart, (Time))
  1231. EffectPart.Parent = game:GetService("Workspace")
  1232. delay(0, function()
  1233. local Frames = (Time / Rate)
  1234. for Frame = 1, Frames do
  1235. wait(Rate)
  1236. local Percent = (Frame / Frames)
  1237. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  1238. TextLabel.TextTransparency = Percent
  1239. TextLabel.TextStrokeTransparency = Percent
  1240. end
  1241. if EffectPart and EffectPart.Parent then
  1242. EffectPart:Destroy()
  1243. end
  1244. end) end)()
  1245. end
  1246.  
  1247.  
  1248. function DealDamage(who,minDam,maxDam,Knock,Type,critChance,critMult)
  1249. if(who)then
  1250. local hum = who:FindFirstChildOfClass'Humanoid'
  1251. local Damage = M.RNG(minDam,maxDam)
  1252. local canHit = true
  1253. if(hum)then
  1254. for _, p in pairs(Hit) do
  1255. if p[1] == hum then
  1256. if(time() - p[2] < 0.1) then
  1257. canHit = false
  1258. else
  1259. Hit[_] = nil
  1260. end
  1261. end
  1262. end
  1263. if(canHit)then
  1264. if(hum.Health >= math.huge)then
  1265. who:BreakJoints()
  1266. if(who:FindFirstChild'Head' and hum.Health > 0)then
  1267. 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))
  1268. end
  1269. else
  1270. local player = S.Players:GetPlayerFromCharacter(who)
  1271. if(Type == "Fire")then
  1272. --idk..
  1273. else
  1274. local c = Instance.new("ObjectValue",hum)
  1275. c.Name = "creator"
  1276. c.Value = Plr
  1277. game:service'Debris':AddItem(c,0.35)
  1278. if(M.RNG(1,100) <= (critChance or 0))then
  1279. if(who:FindFirstChild'Head' and hum.Health > 0)then
  1280. 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)
  1281. end
  1282. hum.Health = hum.Health - Damage*(critMult or 2)
  1283. else
  1284. if(who:FindFirstChild'Head' and hum.Health > 0)then
  1285. 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)
  1286. end
  1287. hum.Health = hum.Health - Damage
  1288. end
  1289. if(Type == 'Knockback' and GetTorso(who))then
  1290. local angle = GetTorso(who).Position - Root.Position + Vector3.new(0, 0, 0).unit
  1291. local body = NewInstance('BodyVelocity',GetTorso(who),{
  1292. P = 500,
  1293. maxForce = V3.N(math.huge,0,math.huge),
  1294. velocity = Root.CFrame.lookVector * Knock + Root.Velocity / 1.05
  1295. })
  1296. game:service'Debris':AddItem(body,.5)
  1297. elseif(Type == 'Knockdown' and GetTorso(who))then
  1298. local rek = GetTorso(who)
  1299. print(rek)
  1300. hum.PlatformStand = true
  1301. delay(1,function()
  1302. hum.PlatformStand = false
  1303. end)
  1304. local angle = (GetTorso(who).Position - (Root.Position + Vector3.new(0, 0, 0))).unit
  1305. local bodvol = NewInstance("BodyVelocity",rek,{
  1306. velocity = angle * Knock,
  1307. P = 5000,
  1308. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  1309. })
  1310. local rl = NewInstance("BodyAngularVelocity",rek,{
  1311. P = 3000,
  1312. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  1313. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  1314. })
  1315. game:GetService("Debris"):AddItem(bodvol, .5)
  1316. game:GetService("Debris"):AddItem(rl, .5)
  1317. end
  1318. end
  1319. end
  1320. end
  1321. table.insert(Hit,{hum,time()})
  1322. end
  1323. end
  1324. end
  1325.  
  1326. function AOEDamage(where,range,minDam,maxDam,Knock,Type)
  1327. for _,v in next, getRegion(where,range,{Char}) do
  1328. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')then
  1329. DealDamage(v.Parent,minDam,maxDam,Knock,Type)
  1330. end
  1331. end
  1332. end
  1333.  
  1334. function AOEFunction(where,range,callback)
  1335. for _,v in next, getRegion(where,range,{Char}) do
  1336. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')then
  1337. callback(v.Parent)
  1338. end
  1339. end
  1340. end
  1341.  
  1342. function ClosestHumanoid(pos,range)
  1343. local mag,closest = math.huge;
  1344. for _,v in next, getRegion(pos,range or 10,{Char}) do
  1345. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')
  1346. if((v.CFrame.p-pos).magnitude < mag and hum and closest ~= hum and hum.Health > 0)then
  1347. mag = (v.CFrame.p-pos).magnitude
  1348. closest = hum
  1349. end
  1350. end
  1351. return closest,(closest and GetTorso(closest.Parent) or nil)
  1352. end
  1353.  
  1354. function AOEHeal(where,range,amount)
  1355. local healed = {}
  1356. for _,v in next, getRegion(where,range,{Char}) do
  1357. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  1358. if(hum and not healed[hum])then
  1359. hum.Health = hum.Health + amount
  1360. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  1361. 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'Carnation pink'.Color)
  1362. end
  1363. end
  1364. end
  1365. end
  1366. local BODY = {}
  1367. for _, c in pairs(Char:GetDescendants()) do
  1368. if c:IsA("BasePart") and c.Name ~= "Handle" then
  1369. if c ~= RootPart and c ~= Torso and c ~= Head and c ~= RArm and c ~= LArm and c ~= RLeg and c ~= LLeg then
  1370. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  1371. end
  1372. table.insert(BODY,{c,c.Parent,c.Material,c.Color,c.Transparency,c.Size,c.Name})
  1373. elseif c:IsA("JointInstance") then
  1374. table.insert(BODY,{c,c.Parent,nil,nil,nil,nil,nil})
  1375. end
  1376. end
  1377. function refit()
  1378. Char.Parent = workspace
  1379. for e = 1, #BODY do
  1380. if BODY[e] ~= nil then
  1381. local STUFF = BODY[e]
  1382. local PART = STUFF[1]
  1383. local PARENT = STUFF[2]
  1384. local MATERIAL = STUFF[3]
  1385. local COLOR = STUFF[4]
  1386. local TRANSPARENCY = STUFF[5]
  1387. --local SIZE = STUFF[6]
  1388. local NAME = STUFF[7]
  1389. if PART.ClassName == "Part" and PART ~= RootPart then
  1390. PART.Material = MATERIAL
  1391. PART.Transparency = TRANSPARENCY
  1392. PART.Name = NAME
  1393. end
  1394. if PART.Parent ~= PARENT then
  1395. Humanoid:remove()
  1396. PART.Parent = PARENT
  1397. Humanoid = Instance.new("Humanoid",Char)
  1398. end
  1399. end
  1400. end
  1401. end
  1402.  
  1403. Humanoid.Died:connect(function()
  1404. refit()
  1405. end)
  1406. --// Attack Function \\--
  1407. function Color1()
  1408. chaosmode = false
  1409. local Glitch = false
  1410. Music.Playing = false
  1411. Moosic.Playing = false
  1412. Music1.Playing = false
  1413. Music2.Playing = true
  1414. Music3.Playing = false
  1415. Music4.Playing = false
  1416. Music5.Playing = false
  1417. Music6.Playing = false
  1418. Creep.Playing = false
  1419. tecks2.Text = "G̶a̶n̵g̵ ̸Mo̶/n̸i̸k̵a̸"
  1420. tecks2.TextStrokeColor3 = Color3.new(0,0,1)
  1421. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1422. if v:IsA("Part") then
  1423. v.BrickColor = BrickColor.new("Really blue")
  1424. v.Material = "Neon"
  1425. end
  1426. end
  1427. end
  1428. function smile()
  1429. chaosmode = false
  1430. local Glitch = false
  1431. Music.Playing = false
  1432. Moosic.Playing = false
  1433. Music1.Playing = true
  1434. Music2.Playing = false
  1435. Music3.Playing = false
  1436. Music4.Playing = false
  1437. Music5.Playing = false
  1438. Music6.Playing = false
  1439. Creep.Playing = false
  1440. tecks2.Text = ":)"
  1441. tecks2.TextStrokeColor3 = Color3.new(.1,.1,.1)
  1442. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1443. if v:IsA("Part") then
  1444. v.BrickColor = BrickColor.new("Really black")
  1445. v.Material = "Neon"
  1446. game.Lighting.OutdoorAmbient = Color3.new(.5,0,0)
  1447. game.Lighting.TimeOfDay = "05:00:00"
  1448. game.Lighting.FogColor = Color3.new(0,0,0)
  1449. game.Lighting.FogEnd = 1200
  1450. end
  1451. end
  1452. end
  1453. function Normal()
  1454. chaosmode = false
  1455. local Glitch = false
  1456. Music.Playing = true
  1457. Moosic.Playing = false
  1458. Music1.Playing = false
  1459. Music2.Playing = false
  1460. Music3.Playing = false
  1461. Music4.Playing = false
  1462. Music5.Playing = false
  1463. Music6.Playing = false
  1464. Creep.Playing = false
  1465. tecks2.Text = "C̸o̶r̵r̵u̷p̶t̶e̸d̸ ̵M̸o̸n̶/i̸k̷a̴"
  1466. tecks2.TextStrokeColor3 = Color3.new(1,0,1)
  1467. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1468. if v:IsA("Part") then
  1469. v.BrickColor = BrickColor.new("Hot pink")
  1470. v.Material = "Neon"
  1471. end
  1472. end
  1473. end
  1474.  
  1475. function BenCreep()
  1476. chaosmode = false
  1477. local Glitch = false
  1478. Music.Playing = false
  1479. Moosic.Playing = false
  1480. Music1.Playing = false
  1481. Music2.Playing = false
  1482. Music3.Playing = false
  1483. Music4.Playing = false
  1484. Music5.Playing = false
  1485. Music6.Playing = false
  1486. Creep.Playing = true
  1487. tecks2.Text = "B̴r̵o̴k̴e̷n̴ ̶H̵e̸a̵r̵t̵h̷"
  1488. tecks2.TextStrokeColor3 = Color3.new(0.9,0,0)
  1489. local sky = Instance.new('Sky', game:GetService'Lighting')
  1490. sky.SkyboxBk = "rbxassetid://159454299"
  1491. sky.SkyboxDn = "rbxassetid://159454296"
  1492. sky.SkyboxFt = "rbxassetid://159454293"
  1493. sky.SkyboxLf = "rbxassetid://159454286"
  1494. sky.SkyboxRt = "rbxassetid://159454300"
  1495. sky.SkyboxUp = "rbxassetid://166574066"
  1496. game.Lighting.OutdoorAmbient = Color3.new(0,0,0)
  1497. game.Lighting.TimeOfDay = "05:00:00"
  1498. game.Lighting.FogColor = Color3.new(0,0,0)
  1499. game.Lighting.FogEnd = 800
  1500.  
  1501. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1502. if v:IsA("Part") then
  1503. v.BrickColor = BrickColor.new("Dark stone grey")
  1504. v.Material = "Neon"
  1505. end
  1506. end
  1507. end
  1508. function TimeTrials()
  1509. local Glitch = false
  1510. Music.Playing = false
  1511. Moosic.Playing = false
  1512. Music1.Playing = false
  1513. Music2.Playing = false
  1514. Music3.Playing = false
  1515. Music4.Playing = true
  1516. Music5.Playing = false
  1517. Music6.Playing = false
  1518. Creep.Playing = false
  1519. chaosmode = true
  1520. tecks2.Text = "J̶u̸s̸t̵ ̵M̸o̵-n̸i̵k̵a̶"
  1521. tecks2.TextStrokeColor3 = Color3.new(1,0,0)
  1522.  
  1523. coroutine.resume(coroutine.create(function()
  1524. while true do
  1525. swait(2)
  1526. if chaosmode == true then
  1527. tecks2.TextStrokeColor3 = BrickColor.random().Color
  1528. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1529. if v:IsA("Part") then
  1530. v.BrickColor = BrickColor.random()
  1531. end
  1532. end
  1533. end
  1534. end
  1535. end))
  1536. end
  1537. function Color4()
  1538. chaosmode = false
  1539. local Glitch = false
  1540. Music.Playing = false
  1541. Moosic.Playing = false
  1542. Music1.Playing = false
  1543. Music2.Playing = false
  1544. Music3.Playing = false
  1545. Music4.Playing = false
  1546. Music5.Playing = true
  1547. Music6.Playing = false
  1548. Creep.Playing = false
  1549. tecks2.Text = "Good Night"
  1550. tecks2.TextStrokeColor3 = Color3.new(0,1,1)
  1551. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1552. if v:IsA("Part") then
  1553. v.BrickColor = BrickColor.new("Toothpaste")
  1554. v.Material = "Neon"
  1555. end
  1556. end
  1557. end
  1558. function Glitch()
  1559. chaosmode = false
  1560. local Glitch = false
  1561. Music.Playing = false
  1562. Creep.Playing = false
  1563. tecks2.Text = "W̶a̵n̵n̶a̷ ̶p̸l̶a̵y̷?̸"
  1564. tecks2.TextStrokeColor3 = Color3.new(1,1,0)
  1565. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1566. if v:IsA("Part") then
  1567. v.BrickColor = BrickColor.new("Cool yellow")
  1568. v.Material = "Neon"
  1569. Music.Playing = false
  1570. Moosic.Playing = false
  1571. Music1.Playing = false
  1572. Music2.Playing = false
  1573. Music3.Playing = false
  1574. Music4.Playing = false
  1575. Music5.Playing = false
  1576. Music6.Playing = true
  1577. end
  1578. end
  1579. end
  1580. function Mistake()
  1581. chaosmode = false
  1582. local Glitch = false
  1583. Music.Playing = false
  1584. Moosic.Playing = true
  1585. Music1.Playing = false
  1586. Music2.Playing = false
  1587. Music3.Playing = false
  1588. Music4.Playing = false
  1589. Music5.Playing = false
  1590. Music6.Playing = false
  1591. Creep.Playing = false
  1592. Music1:Stop()
  1593. tecks2.Text = "Y̴o̴u̶r̷ ̸r̵e̸a̶l̷i̸t̷y̸"
  1594. tecks2.TextStrokeColor3 = Color3.new(170, 0, 170)
  1595. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1596. if v:IsA("Part") then
  1597. v.BrickColor = BrickColor.new("Royal purple")
  1598. v.Material = "Neon"
  1599. end
  1600. end
  1601. end
  1602. function Happy()
  1603. chaosmode = false
  1604. local Glitch = false
  1605. Music.Playing = false
  1606. Moosic.Playing = false
  1607. Music1.Playing = false
  1608. Music2.Playing = false
  1609. Music3.Playing = true
  1610. Music4.Playing = false
  1611. Music5.Playing = false
  1612. Music6.Playing = false
  1613. Creep.Playing = false
  1614. Music1:Stop()
  1615. tecks2.Text = "Happy"
  1616. tecks2.TextStrokeColor3 = Color3.new(1, 1, 0)
  1617. for i, v in pairs(Char.CyborgArm:GetChildren()) do
  1618. if v:IsA("Part") then
  1619. v.BrickColor = BrickColor.new("Cool Yellow")
  1620. v.Material = "Neon"
  1621. end
  1622. end
  1623. end
  1624.  
  1625. function Equip_Sawblade()
  1626. for i = 1, 5 do
  1627. Effect{
  1628. Effect='Resize+AndFade',
  1629. Color = BrickColor.new'Carnation pink',
  1630. Material = Enum.Material.Neon,
  1631. Size=V3.N(3.5,3.5,3.5),
  1632. CFrame=RArm.CFrame*CF.N(0,-1,0)*CF.A(M.RRNG(0,180),M.RRNG(0,180),M.RRNG(0,180)),
  1633. FXSettings={
  1634. EndSize=V3.N(.05,.05,.05),
  1635. EndIsIncrement=true,
  1636.  
  1637. }
  1638. }
  1639. end
  1640. local prt = Part(Char,BrickColor.new'Institutional white',Enum.Material.SmoothPlastic,V3.N(3.42, 3.42, 0.05),CF.N(9,0,0),false,false)
  1641. prt.Transparency = .0
  1642. local mesh = Mesh(prt,Enum.MeshType.FileMesh,"rbxassetid://174322089","",V3.N(3,3,3),V3.N(0,0,0),CF.N(0,0,9))
  1643. local weld = NewInstance("Weld",Char,{Part0=RArm,Part1=prt,C0=CF.N(0,-1.25,0)})
  1644. return prt,weld
  1645. end
  1646.  
  1647. function The_Necc()
  1648. local humanoid, torso = ClosestHumanoid(Torso.CFrame.p,5)
  1649. if(torso)then
  1650. local who = torso.Parent
  1651. Attack = true
  1652. NeutralAnims = false
  1653. who.Parent = Char
  1654. chatfunc("you look tired sleep a little")
  1655. local oRoot
  1656. pcall(function() oRoot = who.HumanoidRootPart; oRoot.Parent = nil end)
  1657. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,0,-1.25)})
  1658. for i = 0, 4, 0.1 do
  1659. swait()
  1660. humanoid.PlatformStand = true
  1661. local Alpha = .15
  1662. 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)
  1663. 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)
  1664. 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)
  1665. 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)
  1666. 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)
  1667. 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)
  1668. end
  1669. gWeld:destroy()
  1670. if(who:FindFirstChild'Head')then
  1671. local s = Sound(who:FindFirstChild'Head',1093102664,1,2,false,false,false)
  1672. s:Play()
  1673. s.Ended:connect(function() s:Destroy() end)
  1674. end
  1675. who.Parent = workspace
  1676. humanoid.Health = 0
  1677. Ragdoll(who,false,true)
  1678. for i = 0, 1.5, 0.1 do
  1679. swait()
  1680. humanoid.PlatformStand = true
  1681. local Alpha = .3
  1682. 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)
  1683. 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)
  1684. 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)
  1685. 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)
  1686. 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)
  1687. 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)
  1688. end
  1689. Attack = false
  1690. NeutralAnims = true
  1691. end
  1692. end
  1693.  
  1694. function Hands_Off()
  1695. local humanoid, torso = ClosestHumanoid(Torso.CFrame.p,5)
  1696.  
  1697. if(torso)then
  1698. local who = torso.Parent
  1699. local doAttack = false
  1700. Instance.AllChildren(who,function(v)
  1701. if(v.Name:lower():find"arm")then
  1702. doAttack = true
  1703. end
  1704. end, true)
  1705. if(not doAttack)then return end
  1706. Hum.WalkSpeed = 0
  1707. Hum.JumpPower = 0
  1708. Attack = true
  1709. NeutralAnims = false
  1710. who.Parent = Char
  1711. local oRoot
  1712. pcall(function() oRoot = who.HumanoidRootPart; oRoot.Parent = nil end)
  1713. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,0,-1.25)})
  1714. for i = 0, 4, 0.1 do
  1715. swait()
  1716. humanoid.PlatformStand = true
  1717. local Alpha = .15
  1718. 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)
  1719. 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)
  1720. 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)
  1721. 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)
  1722. 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)
  1723. 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)
  1724. end
  1725. local RABC = (who:FindFirstChild'Right Arm' or who:FindFirstChild'RightUpperArm' or who:FindFirstChild'RightLowerArm' or who:FindFirstChild'RightHand' or IN("Part")).BrickColor
  1726. local LABC = (who:FindFirstChild'Left Arm' or who:FindFirstChild'LeftUpperArm' or who:FindFirstChild'LeftLowerArm' or who:FindFirstChild'LeftHand' or IN("Part")).BrickColor
  1727. Sound(torso,1093102664,.85,5,false,true,true)
  1728. Sound(torso,429400881,1,1,false,true,true)
  1729. chatfunc("You dont need that!")
  1730. FRArm = NewInstance('Part',Effects,{Size=V3.N(1,2,1),BrickColor=RABC,Material='Plastic',CanCollide=false,Anchored=false,Locked=true})
  1731. Mesh(FRArm,Enum.MeshType.FileMesh,"rbxasset://fonts/rightarm.mesh","",V3.N(1,1,1),V3.N())
  1732. FLArm = NewInstance('Part',Effects,{Size=V3.N(1,2,1),BrickColor=LABC,Material='Plastic',CanCollide=false,Anchored=false,Locked=true})
  1733. Mesh(FLArm,Enum.MeshType.FileMesh,"rbxasset://fonts/leftarm.mesh","",V3.N(1,1,1),V3.N())
  1734. FRArmW = NewInstance('Weld',FRArm,{Part0=RArm,Part1=FRArm,C0=CF.N(0,-1,0)*CF.A(M.R(90),0,0)})
  1735. FLArmW = NewInstance('Weld',FLArm,{Part0=LArm,Part1=FLArm,C0=CF.N(0,-1,0)*CF.A(M.R(90),0,0)})
  1736. Instance.AllChildren(who,function(v)
  1737. if(v.Name:lower():find"arm" or v.Name:lower():find"hand")then
  1738. v:destroy()
  1739. end
  1740. end, true)
  1741. if(not VoidSB)then
  1742. coroutine.wrap(function()
  1743. repeat swait()
  1744. humanoid.Health = humanoid.Health - 0.5 until not who or not who.Parent or not humanoid.Parent
  1745. humanoid.Health = 0
  1746. end)()
  1747. else
  1748. coroutine.wrap(function()
  1749. repeat swait() humanoid.Health = humanoid.Health - 0.5 until not who or not who.Parent or not humanoid.Parent
  1750. humanoid.Health = 0
  1751. end)()
  1752.  
  1753. local prt1,prtcl1 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1754. local prt2,prtcl2 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1755. prt1.Parent = torso;
  1756. prt2.Parent = torso;
  1757. local prt1W = NewInstance('Weld',torso,{Part0=prt1,Part1=torso,C0=CF.N(0,-.5,-1.25)*CF.A(0,M.R(90),0)})
  1758. local prt2W = NewInstance('Weld',torso,{Part0=prt2,Part1=torso,C0=CF.N(0,-.5,-1.25)*CF.A(0,M.R(-90),0)})
  1759. end
  1760.  
  1761. humanoid.Died:connect(function()
  1762. Ragdoll(who)
  1763. end)
  1764. who.Parent = workspace
  1765.  
  1766. local prt1,prtcl1 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1767. local prt2,prtcl2 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  1768. prt1.Parent = FRArm;
  1769. prt2.Parent = FLArm;
  1770. local prt1W = NewInstance('Weld',FRArm,{Part0=prt1,Part1=FRArm,C0=CF.N(0,0,0)*CF.A(0,M.R(90),0)})
  1771. local prt2W = NewInstance('Weld',FLArm,{Part0=prt2,Part1=FLArm,C0=CF.N(0,0,0)*CF.A(0,M.R(-90),0)})
  1772. gWeld:destroy()
  1773. humanoid.PlatformStand = false
  1774. if(oRoot)then
  1775. oRoot.Parent = who
  1776. if(who:FindFirstChild('RootJoint',true))then
  1777. oRoot.RootJoint.Part0 = oRoot
  1778. oRoot.RootJoint.Part1 = torso
  1779. else
  1780. humanoid:BuildRigFromAttachments()
  1781. end
  1782. end
  1783.  
  1784.  
  1785. for i = 0, 3, 0.1 do
  1786. swait()
  1787. local Alpha = .15
  1788. 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)
  1789. 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)
  1790. 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)
  1791. 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)
  1792. 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)
  1793. 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)
  1794. end
  1795. Hum.WalkSpeed = 16
  1796. Hum.JumpPower = 50
  1797. Attack = false
  1798. NeutralAnims = true
  1799. end
  1800. end
  1801. function ScrewMe()
  1802. Attack = true
  1803. NeutralAnims = false
  1804. for i = 0, 2, 0.1 do
  1805. swait()
  1806. local Alpha = .15
  1807. 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)
  1808. 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)
  1809. 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)
  1810. 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)
  1811. 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)
  1812. 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)
  1813. end
  1814. local screwdriver = Part(Char,BrickColor.new'Really black',Enum.Material.SmoothPlastic,V3.N(2.158,0.29,0.312),RArm.CFrame,false,false)
  1815. local driverMesh = Mesh(screwdriver,Enum.MeshType.FileMesh,"rbxassetid://70265804","rbxassetid://70265794",V3.N(1,.5,.5),V3.N())
  1816. local driverWeld = NewInstance("Weld",Char,{Part0=LArm,Part1=screwdriver,C0=CF.N(0,-1.15,0)})
  1817. for i = 1, 3 do
  1818. for i = 0, 2, 0.1 do
  1819. swait()
  1820. local Alpha = .15
  1821. 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)
  1822. 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)
  1823. 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)
  1824. 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)
  1825. 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)
  1826. 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)
  1827. 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)
  1828. end
  1829. for i = 0, 2, 0.1 do
  1830. swait()
  1831. local Alpha = .15
  1832. 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)
  1833. 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)
  1834. 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)
  1835. 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)
  1836. 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)
  1837. 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)
  1838. 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)
  1839. end
  1840. end
  1841. for i = 0, 2, 0.1 do
  1842. swait()
  1843. local Alpha = .15
  1844. 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)
  1845. 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)
  1846. 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)
  1847. 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)
  1848. 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)
  1849. 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)
  1850. end
  1851. screwdriver:destroy()
  1852. Attack = false
  1853. NeutralAnims = true
  1854. end
  1855. function SliceYou()
  1856. Attack = true
  1857. NeutralAnims = false
  1858. local saw,weld = Equip_Sawblade()
  1859. for i = 0, 2, 0.1 do
  1860. swait()
  1861. local Alpha = .15
  1862. 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)
  1863. 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)
  1864. 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)
  1865. 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)
  1866. 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)
  1867. 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)
  1868. end
  1869. for i = 0, 3, 0.1 do
  1870. swait()
  1871. local Alpha = .3
  1872. 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)
  1873. 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)
  1874. 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)
  1875. 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)
  1876. 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)
  1877. 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)
  1878. end
  1879. local sound = Sound(Torso,367720620,false,false,false)
  1880. sound:Play()
  1881. for i = 0, 6, .1 do
  1882. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(25)),.3)
  1883. swait()
  1884. end
  1885. for i = 0, 2, .1 do
  1886. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(5)),.3)
  1887. swait()
  1888. end
  1889. sound:Play()
  1890. for i = 0, 1, .1 do
  1891. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(25)),.3)
  1892. swait()
  1893. end
  1894. sound:Play()
  1895. for i = 0, 5, .1 do
  1896. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(55)),.3)
  1897. swait()
  1898. end
  1899. for i = 1, 5 do
  1900. Effect{
  1901. Effect='Resize+AndFade',
  1902. Color = BrickColor.new'Carnation pink',
  1903. Material = Enum.Material.Neon,
  1904. Size=V3.N(3.5,3.5,3.5),
  1905. CFrame=saw.CFrame*CF.A(M.RRNG(0,180),M.RRNG(0,180),M.RRNG(0,180)),
  1906. FXSettings={
  1907. EndSize=V3.N(.05,.05,.05),
  1908. EndIsIncrement=true,
  1909.  
  1910. }
  1911. }
  1912. end
  1913. saw:destroy()
  1914. Attack = false
  1915. NeutralAnims = true
  1916. end
  1917. function Taunt()
  1918. local tauntFuncs = {SliceYou,ScrewMe}
  1919. local taunt = tauntFuncs[M.RNG(1,#tauntFuncs)]
  1920. taunt()
  1921. end
  1922. function Aids()
  1923. Music.Playing = false
  1924. local DabSounds = {420701444,420701460,420701487}
  1925. local DabSnd = Sound(Torso,DabSounds[M.RNG(1,#DabSounds)],1,5,false,false,false)
  1926. repeat swait() until DabSnd.IsLoaded
  1927. DabSnd:Play()
  1928. chatfunc("deivis97: Sorry about that")
  1929. DabSnd.Ended:connect(function()DabSnd:destroy()end)
  1930. Attack = true
  1931. NeutralAnims = false
  1932. local a = 0
  1933. for i = 0, DabSnd.TimeLength * Frame_Speed/DabSnd.Pitch do
  1934. a = a + 1
  1935. swait()
  1936. local Alpha = .3
  1937. 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)
  1938. 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)
  1939. 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)
  1940. 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)
  1941. 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)
  1942. 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)
  1943. end
  1944. Music.Playing = true
  1945. Attack = false
  1946. NeutralAnims = true
  1947. end
  1948.  
  1949. function OnceWas(who)
  1950. for _,v in next, who:children() do
  1951. if(v:IsA'BasePart')then
  1952. Effect{
  1953. Parent=Effects,
  1954. Effect='Fade',
  1955. Color = BrickColor.new'Carnation pink',
  1956. Material = Enum.Material.Glass,
  1957. Size = v.Size,
  1958. CFrame=v.CFrame,
  1959. Frames = 90,
  1960. }
  1961. end
  1962. end
  1963. end
  1964.  
  1965. function Teleport(where)
  1966. OnceWas(Char)
  1967. Sound(Root,235097614,3,1,false,true,true)
  1968. Sound(Root,75356820,2,1,false,true,true)
  1969. Root.CFrame = CF.N(where.p)
  1970. OnceWas(Char)
  1971. end
  1972.  
  1973. function Dash()
  1974. Attack = true
  1975. Sound(Root,235097614,3,1,false,true,true)
  1976. Sound(Root,75356820,2,1,false,true,true)
  1977. for i = 1, 5 do
  1978. OnceWas(Char)
  1979. Root.CFrame = Root.CFrame*CF.N(0,0,-5)
  1980. swait()
  1981. end
  1982. Attack = false
  1983. end
  1984.  
  1985. function Shriek()
  1986. Attack = true
  1987. NeutralAnims = true
  1988. local scream = Sound(Char,660244878,1,10,false,false,false)
  1989. local i = 0
  1990. scream:Play()
  1991. while scream.Playing do
  1992. i = i + 1
  1993. swait()
  1994. coroutine.wrap(function()
  1995. AOEFunction(Head.Position,30,function(who)
  1996. local h,hd = who:FindFirstChildOfClass'Humanoid',who:FindFirstChild'Head'
  1997. if(h and hd and h.Health > 0)then
  1998. h.Health = 0
  1999. Sound(hd,429400881,1,1,false,true,true)
  2000. Ragdoll(who)
  2001. swait()
  2002. local frags = Fragment(hd)
  2003. for _,v in next, frags:children() do
  2004. v.BrickColor = BloodColor
  2005. v.Material = BloodMaterial
  2006. v.CanCollide = true
  2007. v.Anchored = false
  2008. end
  2009. chatfunc("HAHAHAHAHAHAHA!")
  2010. hd:destroy()
  2011. end
  2012. end)
  2013. end)()
  2014. local Alpha = .15
  2015. 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)
  2016. 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)
  2017. 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)
  2018. 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)
  2019. 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)
  2020. 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)
  2021. end
  2022. Attack = false
  2023. NeutralAnims = true
  2024. end
  2025. chatfunc("..deivis97 edit :3....")
  2026. function SawMeDaddy()
  2027. local humanoid, torso = ClosestHumanoid(Torso.CFrame.p,5)
  2028. if(torso)then
  2029. Attack = true
  2030. NeutralAnims = false
  2031. local who = torso.Parent
  2032. who.Parent = Char
  2033. Hum.WalkSpeed = 0
  2034. Hum.JumpPower = 0
  2035. humanoid.WalkSpeed = 0
  2036. humanoid.JumpPower = 0
  2037. local saw,weld = Equip_Sawblade()
  2038. pcall(function() who.HumanoidRootPart:destroy() end)
  2039. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,0,-3)*CF.A(0,M.R(180),0)})
  2040. for i = 0, 6, 0.1 do
  2041. swait()
  2042. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(5)),.3)
  2043. local Alpha = .15
  2044. 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)
  2045. 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)
  2046. 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)
  2047. 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)
  2048. 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)
  2049. 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)
  2050. end
  2051. chatfunc("No escape")
  2052. Sound(Torso,367720620,1,1,false,true,true)
  2053. coroutine.wrap(function()
  2054. repeat swait()
  2055. weld.C0 = weld.C0:lerp(weld.C0 * CF.A(0,0,M.R(45)),.3)
  2056. until not saw.Parent
  2057. end)()
  2058. swait(60)
  2059. local slicing = Sound(saw,1013673726,1,1,true,false,true)
  2060. Sound(torso,429400881,1,1,false,true,true)
  2061. local prt1,prtcl1 = Blood4(V3.N(.5,.5,.5),torso.CFrame)
  2062. prt1.Parent = torso;
  2063. local prt1W = NewInstance('Weld',torso,{Part0=prt1,Part1=torso,C0=CF.A(0,M.R(180),0)})
  2064. for i = 0, .3, 0.001 do
  2065. swait()
  2066.  
  2067. humanoid.Health = humanoid.Health - .5
  2068. if(humanoid.Health <= 0)then
  2069. gWeld:destroy()
  2070. Sound(torso,429400881,1,1,false,true,true)
  2071. break
  2072. end
  2073. local Alpha = i
  2074. 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)
  2075. 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)
  2076. 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)
  2077. 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)
  2078. 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)
  2079. 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)
  2080. end
  2081. humanoid.Health = 0
  2082. who.Parent = workspace
  2083. Ragdoll(who)
  2084. slicing:destroy()
  2085. for i = 1, 5 do
  2086. Effect{
  2087. Effect='Resize+AndFade',
  2088. Color = BrickColor.new'Carnation pink',
  2089. Material = Enum.Material.Neon,
  2090. Size=V3.N(3.5,3.5,3.5),
  2091. CFrame=saw.CFrame*CF.A(M.RRNG(0,180),M.RRNG(0,180),M.RRNG(0,180)),
  2092. FXSettings={
  2093. EndSize=V3.N(.05,.05,.05),
  2094. EndIsIncrement=true,
  2095.  
  2096. }
  2097. }
  2098. end
  2099. Hum.WalkSpeed = 16
  2100. Hum.JumpPower = 50
  2101. saw:destroy()
  2102. Attack = false
  2103. NeutralAnims = true
  2104. end
  2105. end
  2106. function The_End()
  2107. local humanoid, torso = ClosestHumanoid(Torso.CFrame.p,5)
  2108.  
  2109. if(torso)then
  2110. Attack = true
  2111. NeutralAnims = false
  2112. local who = torso.Parent
  2113. Hum.WalkSpeed = 0
  2114. Hum.JumpPower = 0
  2115. humanoid.WalkSpeed = 0
  2116. humanoid.JumpPower = 0
  2117. who.Parent = Char
  2118. pcall(function() who.HumanoidRootPart:destroy() end)
  2119. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=torso,C0=CF.N(0,0,-1.35)})
  2120. for i = 0, 2, 0.1 do
  2121. swait()
  2122. local Alpha = .3
  2123. 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)
  2124. 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)
  2125. 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)
  2126. 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)
  2127. 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)
  2128. 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)
  2129. end
  2130. Sound(Torso,200065377,1.3,4,false,true,true)
  2131. for i = 0, 1, 0.1 do
  2132. swait()
  2133. local Alpha = .2
  2134. 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)
  2135. 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)
  2136. 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)
  2137. 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)
  2138. 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)
  2139. 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)
  2140. end
  2141. gWeld:destroy()
  2142. 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))})
  2143. for i = 0, 1, 0.1 do
  2144. swait()
  2145. local Alpha = .3
  2146. humanoid.PlatformStand = true
  2147. 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)
  2148. 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)
  2149. 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)
  2150. 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)
  2151. 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)
  2152. 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)
  2153. end
  2154. gWeld:destroy()
  2155. 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))})
  2156. for i = 0, 6, 0.1 do
  2157. swait()
  2158. local Alpha = .3
  2159. humanoid.PlatformStand = true
  2160. 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)
  2161. 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)
  2162. 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)
  2163. 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)
  2164. 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)
  2165. 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)
  2166. end
  2167. Sound(torso,1093102664,.85,5,false,true,true)
  2168. Sound(torso,429400881,1,1,false,true,true)
  2169. chatfunc("Last words??")
  2170. gWeld:destroy()
  2171. Blood(torso.Size,torso.CFrame*CF.A(0,M.R(180),0),250)
  2172. humanoid.Health = 0
  2173. for _,v in next, who:children() do
  2174. if(v:IsA'LocalScript' or v:IsA'Script')then
  2175. v.Disabled = true
  2176. v:destroy()
  2177. end
  2178. end
  2179. Ragdoll(who,true)
  2180.  
  2181.  
  2182. if(not VoidSB)then
  2183. coroutine.wrap(function()
  2184. repeat swait()
  2185. BloodDrop(torso.CFrame * CF.N(0,-torso.Size.Y/2,0).p,(torso.CFrame * CF.N(0,-torso.Size.Y,0)).p,15)
  2186. until not who or not who.Parent
  2187. end)()
  2188. coroutine.wrap(function()
  2189. local LT = who:FindFirstChild'LowerTorso'
  2190. if(LT)then
  2191. repeat swait()
  2192. BloodDrop(LT.CFrame * CF.N(0,LT.Size.Y/2,0).p,(LT.CFrame * CF.N(0,LT.Size.Y,0)).p,15)
  2193. until not who or not who.Parent
  2194. end
  2195. end)()
  2196. end
  2197.  
  2198. for i = 0, 1, 0.1 do
  2199. swait()
  2200. local Alpha = .3
  2201. humanoid.PlatformStand = true
  2202. 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)
  2203. 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)
  2204. 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)
  2205. 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)
  2206. 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)
  2207. 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)
  2208. end
  2209. for i = 0, 4, 0.1 do
  2210. swait()
  2211. local Alpha = .3
  2212. 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)
  2213. 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)
  2214. 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)
  2215. 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)
  2216. 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)
  2217. 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)
  2218. end
  2219. who.Parent = workspace
  2220. Attack = false
  2221. NeutralAnims = true
  2222. Hum.WalkSpeed = 16
  2223. Hum.JumpPower = 50
  2224. end
  2225. end
  2226.  
  2227. function ThrowArms()
  2228. Attack = true
  2229. NeutralAnims = false
  2230. for i = 0, 3, 0.1 do
  2231. swait()
  2232. local Alpha = .15
  2233. 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)
  2234. 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)
  2235. 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)
  2236. 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)
  2237. 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)
  2238. 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)
  2239. end
  2240. Sound()
  2241. FLArmW:destroy()
  2242. FRArmW:destroy()
  2243. local BV1 = NewInstance("BodyVelocity", FRArm, {
  2244. velocity = Vector3.new(0, 10, 0) + Mouse.Hit.lookVector * 50,
  2245. P = 5000,
  2246. maxForce = Vector3.new(8000, 8000, 8000),
  2247. })
  2248. local BV2 = NewInstance("BodyVelocity", FLArm, {
  2249. velocity = Vector3.new(0, 10, 0) + Mouse.Hit.lookVector * 50,
  2250. P = 5000,
  2251. maxForce = Vector3.new(8000, 8000, 8000),
  2252. })
  2253. Sound(Torso,541909763,.8,5,false,true,true)
  2254. S.Debris:AddItem(BV1, 0.05)
  2255. S.Debris:AddItem(BV2, 0.05)
  2256. FRArm.CanCollide = true
  2257. FLArm.CanCollide = true
  2258. S.Debris:AddItem(FRArm, 5)
  2259. S.Debris:AddItem(FLArm, 5)
  2260. FRArm = nil
  2261. FLArm = nil
  2262. for i = 0, 1, 0.1 do
  2263. swait()
  2264. local Alpha = .3
  2265. 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)
  2266. 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)
  2267. 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)
  2268. 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)
  2269. 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)
  2270. 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)
  2271. end
  2272. Attack = false
  2273. NeutralAnims = true
  2274. end
  2275. Mouse.KeyDown:connect(function(k)
  2276. if(Attack)then return end
  2277. if(k == 'q')then Teleport(Mouse.Hit*CF.N(0,3.25,0)) end
  2278. if(k == 'e')then Dash() end
  2279. if(not FLArm and not FRArm)then
  2280. if(k == 'r')then Hum.WalkSpeed = (Hum.WalkSpeed == 16 and 32 or 16) end
  2281. if(k == 'z')then The_Necc() end
  2282. if(k == 'x')then The_End() end
  2283. if(k == 'c')then Hands_Off() end
  2284. if(k == 'v')then SawMeDaddy() end
  2285. if(k == 'b')then Shriek() end
  2286. if(k == 't')then Aids() end
  2287. if(k == 'f')then Color1() end
  2288. if(k == 'g')then Color4() end
  2289. if(k == 'h')then Mistake() end
  2290. if(k == 'j')then Normal() end
  2291. if(k == 'k')then Glitch() end
  2292. if(k == 'p')then TimeTrials() end
  2293. if(k == 'y')then BenCreep() end
  2294. if(k == 'l')then Happy() end
  2295. if(k == 'u')then smile() end
  2296. end
  2297. end)
  2298.  
  2299. Mouse.Button1Down:connect(function()
  2300. if(Attack)then return end
  2301. if(FLArm and FRArm)then
  2302. ThrowArms()
  2303. end
  2304. end)
  2305.  
  2306. --// Wrap it all up \\--
  2307.  
  2308. while true do
  2309. swait()
  2310. if(not Music or not Music.Parent)then
  2311. local a = Music.TimePosition
  2312. Music = Sound(Char,MusicID,MusicPitch,2,true,false,true)
  2313. Music.Name = 'Music'
  2314. Music.TimePosition = a
  2315. end
  2316. if(Music.Volume ~= 2)then Music.Volume = 2 end
  2317. RArm.Transparency = 1
  2318. Sine = Sine + Change
  2319. 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)
  2320. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  2321. 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")
  2322. if(State == 'Walk')then
  2323. local wsVal = 7 / (Hum.WalkSpeed/16)
  2324. local Alpha = math.min(.2*(Hum.WalkSpeed/16),1)
  2325. --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)
  2326. --RH.C0 = clerp(RH.C0, CF(1, -0.925 - 0.5 * M.C(Sine / 7) / 2, 0.5 * M.C(Sine / 7) / 2) * CF.A(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)--
  2327. 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)
  2328. 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)
  2329. else
  2330. RH.C1 = RH.C1:lerp(CF.N(0,1,0),.3)
  2331. LH.C1 = LH.C1:lerp(CF.N(0,1,0),.3)
  2332. end
  2333. if(Idle > Frame_Speed*10)then
  2334. --idk i'll do something
  2335. end
  2336. if(NeutralAnims and not Attack and State == 'Idle')then
  2337. Idle = Idle + 1
  2338. else
  2339. Idle = 0
  2340. end
  2341. for v,_ in next, Stunned do
  2342. if(v.Parent)then
  2343. local h = v:FindFirstChildOfClass'Humanoid'
  2344. for _,c in next, v:children() do
  2345. if(c:IsA'Script' or c:IsA'LocalScript')then
  2346. c.Disabled = false
  2347. end
  2348. end
  2349. if(h)then
  2350. h.Name = 'End of line'
  2351. h.PlatformStand = true
  2352. else
  2353. Stunned[v] = nil
  2354. end
  2355. else
  2356. Stunned[v] = nil
  2357. end
  2358. end
  2359. if(NeutralAnims)then
  2360. if(State == 'Idle')then
  2361. Change = 1
  2362. local Alpha = .3
  2363. 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)
  2364. 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)
  2365. 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)
  2366. 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)
  2367. 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)
  2368. 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)
  2369. elseif(State == 'Walk')then
  2370. local wsVal = 7 / (Hum.WalkSpeed/16)
  2371. local Alpha = math.min(.2*(Hum.WalkSpeed/16),1)
  2372. 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)
  2373. RH.C0 = RH.C0:lerp(RHC0,Alpha)
  2374. LH.C0 = LH.C0:lerp(LHC0,Alpha)
  2375. 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)
  2376. 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)
  2377. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  2378. elseif(State == 'Jump' or State == 'Fall')then
  2379. if(Walking)then
  2380. local Alpha = .2
  2381. 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)
  2382. 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)
  2383. 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)
  2384. 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)
  2385. 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)
  2386. 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)
  2387. else
  2388. local Alpha = .2
  2389. 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)
  2390. 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)
  2391. 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)
  2392. 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)
  2393. 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)
  2394. 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)
  2395. end
  2396. elseif(State == 'Paralyzed')then
  2397. local Alpha = .3
  2398. RJ.C0 = RJ.C0:lerp(RJC0,Alpha)
  2399. RH.C0 = RH.C0:lerp(RHC0*CF.A(M.RRNG(-10,10),M.RRNG(-10,10),M.RRNG(-10,10)),Alpha)
  2400. LH.C0 = LH.C0:lerp(LHC0*CF.A(M.RRNG(-10,10),M.RRNG(-10,10),M.RRNG(-10,10)),Alpha)
  2401. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.RRNG(-10,10),M.RRNG(-10,10),M.RRNG(-5,15)),Alpha)
  2402. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.RRNG(-10,10),M.RRNG(-10,10),M.RRNG(-15,5)),Alpha)
  2403. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  2404. elseif(State == 'Sit')then
  2405. local Alpha = .3
  2406. 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)
  2407. 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)
  2408. 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)
  2409. 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)
  2410. 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)
  2411. 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)
  2412. refit()
  2413. end
  2414. end
  2415. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement