Advertisement
Zebula_The_Scripter

insanity with new animation

Aug 10th, 2018
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 72.14 KB | None | 0 0
  1. -- Created by Nebula_Zorua --
  2. -- InSaNiTy --
  3. -- The weight of the air is torture --
  4. -- Discord: Nebula the Zorua#6969
  5. -- Youtube: https://www.youtube.com/channel/UCo9oU9dCw8jnuVLuy4_SATA
  6. --// Initializing \\--
  7. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  8. local Plrs = S.Players
  9. local Plr = Plrs.LocalPlayer
  10. local Char = Plr.Character
  11. local Hum = Char:FindFirstChildOfClass'Humanoid'
  12. local RArm = Char["Right Arm"]
  13. local LArm = Char["Left Arm"]
  14. local RLeg = Char["Right Leg"]
  15. local LLeg = Char["Left Leg"]
  16. local Root = Char:FindFirstChild'HumanoidRootPart'
  17. local Torso = Char.Torso
  18. local Head = Char.Head
  19. local NeutralAnims = true
  20. local Attack = false
  21. local BloodPuddles = {}
  22. local Effects = {}
  23. local Debounces = {Debounces={}}
  24. local Mouse = Plr:GetMouse()
  25. local Hit = {}
  26. local Sine = 0
  27. local Change = 1
  28. local Twitch = false
  29. local LastTwitch = 0;
  30. local Victim = nil;
  31. --// Debounce System \\--
  32.  
  33.  
  34. function Debounces:New(name,cooldown)
  35. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  36. setmetatable(aaaaa,{__index = Debounces})
  37. Debounces.Debounces[name] = aaaaa
  38. return aaaaa
  39. end
  40.  
  41. function Debounces:Use(overrideUsable)
  42. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  43. if(self.Usable or overrideUsable)then
  44. self.Usable = false
  45. self.CoolingDown = true
  46. local LastUse = time()
  47. self.LastUse = LastUse
  48. delay(self.Cooldown or 2,function()
  49. if(self.LastUse == LastUse)then
  50. self.CoolingDown = false
  51. self.Usable = true
  52. end
  53. end)
  54. end
  55. end
  56.  
  57. function Debounces:Get(name)
  58. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  59. for i,v in next, Debounces.Debounces do
  60. if(i == name)then
  61. return v;
  62. end
  63. end
  64. end
  65.  
  66. function Debounces:GetProgressPercentage()
  67. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  68. if(self.CoolingDown and not self.Usable)then
  69. return math.max(
  70. math.floor(
  71. (
  72. (time()-self.LastUse)/self.Cooldown or 2
  73. )*100
  74. )
  75. )
  76. else
  77. return 100
  78. end
  79. end
  80.  
  81. --// Shortcut Variables \\--
  82. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  83. local C3 = {N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  84. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  85. 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}
  86. local R3 = {N=Region3.new}
  87. local De = S.Debris
  88. local WS = workspace
  89. local Lght = S.Lighting
  90. local RepS = S.ReplicatedStorage
  91. local IN = Instance.new
  92. --// Instance Creation Functions \\--
  93.  
  94. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  95. local Sound = IN("Sound")
  96. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  97. Sound.Pitch = pitch or 1
  98. Sound.Volume = volume or 1
  99. Sound.Looped = looped or false
  100. if(autoPlay)then
  101. coroutine.wrap(function()
  102. repeat wait() until Sound.IsLoaded
  103. Sound.Playing = autoPlay or false
  104. end)()
  105. end
  106. if(not looped and effect)then
  107. Sound.Stopped:connect(function()
  108. Sound.Volume = 0
  109. Sound:destroy()
  110. end)
  111. elseif(effect)then
  112. warn("Sound can't be looped and a sound effect!")
  113. end
  114. Sound.Parent =parent or Torso
  115. return Sound
  116. end
  117. function Part(parent,color,material,size,cframe,anchored,cancollide)
  118. local part = IN("Part")
  119. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  120. part.Material = material or Enum.Material.SmoothPlastic
  121. part.TopSurface,part.BottomSurface=10,10
  122. part.Size = size or V3.N(1,1,1)
  123. part.CFrame = cframe or CF.N(0,0,0)
  124. part.Anchored = anchored or true
  125. part.CanCollide = cancollide or false
  126. part.Parent = parent or Char
  127. return part
  128. end
  129. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  130. local part = IN("SpecialMesh")
  131. part.MeshId = meshid or ""
  132. part.TextureId = textid or ""
  133. part.Scale = scale or V3.N(1,1,1)
  134. part.Offset = offset or V3.N(0,0,0)
  135. part.MeshType = meshtype or Enum.MeshType.Sphere
  136. part.Parent = parent
  137. return part
  138. end
  139.  
  140. NewInstance = function(instance,parent,properties)
  141. local inst = Instance.new(instance,parent)
  142. if(properties)then
  143. for i,v in next, properties do
  144. pcall(function() inst[i] = v end)
  145. end
  146. end
  147. return inst;
  148. end
  149.  
  150.  
  151.  
  152. --// Extended ROBLOX tables \\--
  153. local Instance = setmetatable({ClearChildrenOfClass = function(where,class,recursive) local children = (recursive and where:GetDescendants() or where:GetChildren()) for _,v in next, children do if(v:IsA(class))then v:destroy();end;end;end},{__index = Instance})
  154. --// Customization \\--
  155.  
  156. local Frame_Speed = 60 -- The frame speed for swait. 1 is automatically divided by this
  157. local Remove_Hats = false
  158. local Remove_Clothing = false
  159. local PlayerSize = 1
  160. local DamageColor = BrickColor.new'Really red'
  161. local MusicID = 1696854181
  162. local TwitchMinTime = 2
  163. local BloodColor = BrickColor.new'Really red'
  164. local BloodMaterial = Enum.Material.Neon
  165. local Target1Id = "rbxassetid://175061059"
  166. local Target2Id = "rbxassetid://175061059"
  167. local Whitelist = {
  168. [{33104243,"Salvo_Starly"}] = {"Sorry, my Blazey..","OwO?","Ah, I'm sorry.. I thought you were an enemy.","Why did I even think of doing that.."},
  169. [{19081129,"CKbackup"}] = {"S-sugarie! My bad!", "Ah, I'm sorry, my furry friend.","Why did I even think of doing that.."},
  170. [{5719877,"Nebula_Zorua"}] = {"I will let you go since you're cute.","N-nebula!?","I'm sorry, my creator!","F-father..?","Daddy..?","Sorry, Nebby..!"},
  171. [{679934112,"BeeESwarm_Simulator"}] = {"kalvin0316!~","I hope you can hack nebula's account one day","You're good","k-kalvin0316?, the friend of saba1520","Hello there, kalvin0316.."},
  172. [{44083134,"Fifkee"}] = {(function() return Plr.UserId == 5719877 and "Uh.. Who're you again?" or "You're Nebula's friend.. Right?" end)(),"Uuhh.. hi?","I nearly killed ya.","Oh. It's you."},
  173. }
  174.  
  175. --// Whitelist System \\--
  176.  
  177. function IsWhitelisted(id,who)
  178. for i,v in next, Whitelist do
  179. if(i[1] == id or i[2] == who)then
  180. return v
  181. end
  182. end
  183. return nil
  184. end
  185.  
  186. --// Weapon and GUI creation, and Character Customization \\--
  187.  
  188. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  189. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  190. local Effects = IN("Folder",Char)
  191. Effects.Name = "Effects"
  192.  
  193. local FT,RA,LA,RL,LL = Instance.new("SpecialMesh"),Instance.new("SpecialMesh"),Instance.new("SpecialMesh"),Instance.new("SpecialMesh"),Instance.new("SpecialMesh")
  194. FT.MeshId,FT.Scale = "rbxasset://fonts/torso.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  195. RA.MeshId,RA.Scale = "rbxasset://fonts/rightarm.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  196. LA.MeshId,LA.Scale = "rbxasset://fonts/leftarm.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  197. RL.MeshId,RL.Scale = "rbxasset://fonts/rightleg.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  198. LL.MeshId,LL.Scale = "rbxasset://fonts/leftleg.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  199.  
  200. local Target = NewInstance("BillboardGui",Char,{Name='Target',Adornee=nil,LightInfluence=0,AlwaysOnTop=true,Size = UDim2.new(10,0,10,0)})
  201. local TargetImg1 = NewInstance("ImageLabel",Target,{BackgroundTransparency=1,Position = UDim2.new(.5,0,.5,0),Size = UDim2.new(1,0,1,0),AnchorPoint = Vector2.new(.5,.5),Image=Target1Id,ImageColor = C3.N(0,0,0),ImageTransparency=1})
  202. local TargetImg2 = TargetImg1:Clone();
  203. TargetImg2.Size = UDim2.new(1.4,0,1.4,0);
  204. TargetImg2.Image = Target2Id
  205. TargetImg2.Parent = Target
  206. TargetImg2.ImageColor3 = C3.RGB(165,0,0)
  207. if(PlayerSize ~= 1)then
  208. for _,v in next, Char:GetDescendats() do
  209. if(v:IsA'BasePart')then
  210. v.Size = v.Size * PlayerSize
  211. end
  212. end
  213. end
  214.  
  215. local Music = Sound(Char,MusicID,1,3,true,false,true)
  216. Music.Name = 'Music'
  217.  
  218. --// Stop animations \\--
  219. for _,v in next, Hum:GetPlayingAnimationTracks() do
  220. v:Stop();
  221. end
  222.  
  223. pcall(game.Destroy,Char:FindFirstChild'Animate')
  224. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  225.  
  226. --// Joints \\--
  227.  
  228. 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)})
  229. 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)})
  230. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  231. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  232. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  233. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  234.  
  235. local LSC0 = LS.C0
  236. local RSC0 = RS.C0
  237. local NKC0 = NK.C0
  238. local LHC0 = LH.C0
  239. local RHC0 = RH.C0
  240. local RJC0 = RJ.C0
  241.  
  242. --// Artificial HB \\--
  243.  
  244. local ArtificialHB = IN("BindableEvent", script)
  245. ArtificialHB.Name = "Heartbeat"
  246.  
  247. script:WaitForChild("Heartbeat")
  248.  
  249. local tf = 0
  250. local allowframeloss = false
  251. local tossremainder = false
  252. local lastframe = tick()
  253. local frame = 1/Frame_Speed
  254. ArtificialHB:Fire()
  255.  
  256. game:GetService("RunService").Heartbeat:connect(function(s, p)
  257. tf = tf + s
  258. if tf >= frame then
  259. if allowframeloss then
  260. script.Heartbeat:Fire()
  261. lastframe = tick()
  262. else
  263. for i = 1, math.floor(tf / frame) do
  264. ArtificialHB:Fire()
  265. end
  266. lastframe = tick()
  267. end
  268. if tossremainder then
  269. tf = 0
  270. else
  271. tf = tf - frame * math.floor(tf / frame)
  272. end
  273. end
  274. end)
  275.  
  276. function swait(num)
  277. if num == 0 or num == nil then
  278. ArtificialHB.Event:wait()
  279. else
  280. for i = 0, num do
  281. ArtificialHB.Event:wait()
  282. end
  283. end
  284. end
  285.  
  286.  
  287. --// Effect Function(s) \\--
  288.  
  289. local blood = NewInstance("ParticleEmitter",nil,{
  290. Color = ColorSequence.new(C3.N(.8,0,0)),
  291. LightEmission=.1,
  292. LightInfluence=1,
  293. ZOffset=.9,
  294. Size=NumberSequence.new{NumberSequenceKeypoint.new(0,.2,0),NumberSequenceKeypoint.new(1,3,0)},
  295. Texture="rbxassetid://284205403",
  296. Transparency=NumberSequence.new{NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,1,0)},
  297. Acceleration = V3.N(0,-15,0),
  298. Lifetime = NumberRange.new(1,2),
  299. Rate=50,
  300. Speed = NumberRange.new(5,15),
  301. SpreadAngle = Vector2.new(15,15),
  302. Enabled = false,
  303. EmissionDirection = 'Back',
  304. })
  305.  
  306. function Blood(prt,amount)
  307. local part = Instance.new("Part",Effects)
  308. part.Transparency = 1
  309. part.Size = prt.Size
  310. part.Anchored = true
  311. part.CanCollide = false
  312. part.CFrame = CF.N(prt.Position,Torso.Position)
  313. S.Debris:AddItem(part,5)
  314. local prtcl = blood:Clone()
  315. prtcl.Parent = part
  316. prtcl:Emit(amount)
  317. end
  318.  
  319. function BloodDrop(pos,dir,maxsize)
  320. local owo = NewInstance("Part",Char,{Material=BloodMaterial,BrickColor=BloodColor,Shape=Enum.PartType.Ball,Size=V3.N(.25,.25,.25), CanCollide = false})
  321. owo.CFrame=CF.N(pos,dir)
  322. local bv = Instance.new("BodyVelocity",owo)
  323. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  324. 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
  325. bv.Name = "MOVE"
  326. game:service'Debris':AddItem(bv,0.05)
  327. local touch
  328. touch = owo.Touched:connect(function(hit)
  329. if(hit.Anchored==true and hit.CanCollide and not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent.Parent:FindFirstChildOfClass'Humanoid')then
  330. touch:disconnect()
  331. BloodPuddle(owo.Position+V3.N(0,1,0),3,maxsize,owo)
  332. owo:destroy()
  333. end
  334. end)
  335. end
  336. function BloodPuddle(position,range,maxSize,where)
  337. local hit, pos, norm = workspace:FindPartOnRayWithIgnoreList(Ray.new(
  338. position,CF.N(position,position+V3.N(0,-1,0)).lookVector * range
  339. ),{where,Char},false,true)
  340. if(hit)then
  341. if(BloodPuddles[hit])then
  342. BloodPuddles[hit].Frame = 0
  343. if(hit:FindFirstChild'CylinderMesh' and hit.CylinderMesh.Scale.Z < BloodPuddles[hit].MaxSize)then
  344. hit.CylinderMesh.Scale = hit.CylinderMesh.Scale + V3.N(.1,0,.1)
  345. end
  346. else
  347. local Puddle = NewInstance('Part',hit,{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'})
  348. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  349. BloodPuddles[Puddle] = {MaxSize=maxSize or 7,Frame=0}
  350. end
  351. end
  352. end
  353.  
  354. function Tween(obj,props,time,easing,direction,repeats,backwards)
  355. local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
  356. local tween = S.TweenService:Create(obj, info, props)
  357.  
  358. tween:Play()
  359. end
  360.  
  361. function Bezier(startpos, pos2, pos3, endpos, t)
  362. local A = startpos:lerp(pos2, t)
  363. local B = pos2:lerp(pos3, t)
  364. local C = pos3:lerp(endpos, t)
  365. local lerp1 = A:lerp(B, t)
  366. local lerp2 = B:lerp(C, t)
  367. local cubic = lerp1:lerp(lerp2, t)
  368. return cubic
  369. end
  370.  
  371. function Effect(data)
  372. local FX = data.Effect or 'Resize-AndFade'
  373. local Parent = data.Parent or Effects
  374. local Color = data.Color or C3.N(0,0,0)
  375. local Size = data.Size or V3.N(1,1,1)
  376. local MoveDir = data.MoveDirection or nil
  377. local MeshData = data.Mesh or nil
  378. local SndData = data.Sound or nil
  379. local Frames = data.Frames or 45
  380. local Manual = data.Manual or nil
  381. local Material = data.Material or nil
  382. local CFra = data.CFrame or Torso.CFrame
  383. local Settings = data.FXSettings or {}
  384. local Snd,Prt,Msh;
  385. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  386. Prt = Manual
  387. else
  388. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  389. end
  390. if(typeof(MeshData) == 'table')then
  391. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  392. elseif(typeof(MeshData) == 'Instance')then
  393. Msh = MeshData:Clone()
  394. Msh.Parent = Prt
  395. end
  396. if(typeof(SndData) == 'table' or typeof(SndData) == 'Instance')then
  397. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  398. end
  399. if(Snd)then
  400. repeat wait() until Snd.Playing and Snd.IsLoaded and Snd.TimeLength > 0
  401. Frames = Snd.TimeLength * Frame_Speed/Snd.Pitch
  402. end
  403. local MoveSpeed = nil;
  404. if(MoveDir)then
  405. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  406. end
  407. local Inc = M.RNG()-M.RNG()
  408. local Thingie = 0
  409. local Thingie2 = M.RNG(50,100)/100
  410.  
  411. coroutine.wrap(function()
  412. if(FX ~= 'Arc')then
  413. for i = 1, Frames do
  414. if(FX == 'Resize-AndFade')then
  415. if(not Settings.EndSize)then
  416. Settings.EndSize = V3.N(0,0,0)
  417. end
  418. local grow = (typeof(Settings.EndSize) == 'Vector3' and Settings.EndSize-Size or typeof(Settings.EndSize) == 'number' and V3.N(Settings.EndSize))
  419. if(Settings.EndIsIncrement)then
  420. Prt.Size = Prt.Size - Settings.EndSize
  421. else
  422. Prt.Size = Prt.Size - grow/Frames
  423. end
  424. Prt.Transparency = (i/Frames)
  425. elseif(FX == 'Resize+AndFade')then
  426. if(not Settings.EndSize)then
  427. Settings.EndSize = Size*2
  428. end
  429. local grow = (typeof(Settings.EndSize) == 'Vector3' and Settings.EndSize-Size or typeof(Settings.EndSize) == 'number' and V3.N(Settings.EndSize))
  430. if(Settings.EndIsIncrement)then
  431. Prt.Size = Prt.Size + Settings.EndSize
  432. else
  433. Prt.Size = Prt.Size + grow/Frames
  434. end
  435. Prt.Transparency = (i/Frames)
  436. elseif(FX == 'Fade')then
  437. Prt.Transparency = (i/Frames)
  438. end
  439. if(Settings.RandomizeCFrame)then
  440. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  441. end
  442. if(MoveDir and MoveSpeed)then
  443. local Orientation = Prt.Orientation
  444. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  445. Prt.Orientation = Orientation
  446. end
  447. if(swait and typeof(swait) == 'function')then
  448. swait()
  449. else
  450. wait()
  451. end
  452. end
  453. Prt:destroy()
  454. else
  455. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  456. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  457. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  458. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  459. assert(start ~= nil,"You need to specify a start point!")
  460. assert(endP ~= nil,"You need to specify an end point!")
  461. for i = 0, 1, Settings.Speed or 0.01 do
  462. if(Settings.Home)then
  463. endP = Settings.Home.CFrame
  464. end
  465. Prt.CFrame = Bezier(start, quarter, threequarter, endP, i)
  466. if(swait and typeof(swait) == 'function')then
  467. swait()
  468. else
  469. wait()
  470. end
  471. end
  472. if(Settings.RemoveOnGoal)then
  473. Prt:destroy()
  474. end
  475. end
  476. end)()
  477. return Prt,Msh,Snd
  478. end
  479.  
  480.  
  481. function SoulSteal(whom)
  482. local torso = (whom:FindFirstChild'Head' or whom:FindFirstChild'Torso' or whom:FindFirstChild'UpperTorso' or whom:FindFirstChild'LowerTorso' or whom:FindFirstChild'HumanoidRootPart')
  483. print(torso)
  484. if(torso and torso:IsA'BasePart')then
  485. local Model = Instance.new("Model",Effects)
  486. Model.Name = whom.Name.."'s Soul"
  487. whom:BreakJoints()
  488. local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  489. Soul.Name = 'Head'
  490. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  491. Effect{
  492. Effect="Arc",
  493. Manual = Soul,
  494. FXSettings={
  495. Start=torso.CFrame,
  496. Home = Torso,
  497. RemoveOnGoal = true,
  498. }
  499. }
  500. local lastPoint = Soul.CFrame.p
  501.  
  502. for i = 0, 1, 0.01 do
  503. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  504. local mag = (lastPoint - Soul.Position).magnitude
  505. Effect{
  506. Effect = "Fade",
  507. CFrame = point * CF.N(0, mag/2, 0),
  508. Size = V3.N(.5,mag+.5,.5),
  509. Color = Soul.BrickColor
  510. }
  511. lastPoint = Soul.CFrame.p
  512. swait()
  513. end
  514. for i = 1, 5 do
  515. Effect{
  516. Effect="Fade",
  517. Color = BrickColor.new'Really red',
  518. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  519. }
  520. end
  521. end
  522. end
  523.  
  524. --// Other Functions \\ --
  525.  
  526. function Ragdoll(who,half,glitching)
  527. who:breakJoints()
  528. pcall(function()
  529. who.HumanoidRootPart:destroy()
  530. end)
  531. local who = who
  532. local hhh = who:FindFirstChildOfClass'Humanoid'
  533. local t = GetTorso(who)
  534. if(hhh.RigType == Enum.HumanoidRigType.R6)then
  535. 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'
  536. local RAJ = NewInstance("Attachment",t,{Position=V3.N(1.5,.5,0),Orientation=V3.N()})
  537. local RAJ2 = NewInstance("Attachment",RA,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  538. local LAJ = NewInstance("Attachment",t,{Position=V3.N(-1.5,.5,0),Orientation=V3.N()})
  539. local LAJ2 = NewInstance("Attachment",LA,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  540. local NJ = NewInstance('Attachment',t,{Position=V3.N(0,1,0),Orientation=V3.N()})
  541. local NJ2 = NewInstance('Attachment',HD,{Position=V3.N(0,-.5,0),Orientation=V3.N()})
  542. local NJ3 = NewInstance('Attachment',HD,{Position=V3.N(0,.5,0),Orientation=V3.N()})
  543.  
  544. local RAC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=RAJ,Attachment1=RAJ2})
  545. local LAC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=LAJ,Attachment1=LAJ2})
  546. local HC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=45,Attachment0=NJ,Attachment1=NJ2})
  547.  
  548. local CollideRA = NewInstance('Part',who,{Size=RArm.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  549. local CollideLA = NewInstance('Part',who,{Size=LArm.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  550. local CollideHD = NewInstance('Part',who,{Size=HD.Size/1.5,Anchored=false,Transparency=1,Name='Collision'})
  551. NewInstance('Weld',CollideRA,{Part0=RA,Part1=CollideRA})
  552. NewInstance('Weld',CollideLA,{Part0=LA,Part1=CollideLA})
  553. NewInstance('Weld',CollideHD,{Part0=HD,Part1=CollideHD})
  554.  
  555. if(not half)then
  556. local RLJ = NewInstance("Attachment",t,{Position=V3.N(.5,-1,0),Orientation=V3.N()})
  557. local RLJ2 = NewInstance("Attachment",RL,{Position=V3.N(0,1,0),Orientation=V3.N()})
  558. local LLJ = NewInstance("Attachment",t,{Position=V3.N(-.5,-1,0),Orientation=V3.N()})
  559. local LLJ2 = NewInstance("Attachment",LL,{Position=V3.N(0,1,0),Orientation=V3.N()})
  560. local RLC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=RLJ,Attachment1=RLJ2})
  561. local LLC = NewInstance('BallSocketConstraint',t,{Radius=.15,LimitsEnabled=true,Enabled=true,Restitution=0,UpperAngle=90,Attachment0=LLJ,Attachment1=LLJ2})
  562. end
  563. if(glitching)then
  564. swait(120)
  565. local pow = 75
  566. local FT,RA,LA,RL,LL = Instance.new("SpecialMesh",t),Instance.new("SpecialMesh",RA),Instance.new("SpecialMesh",LA),Instance.new("SpecialMesh",RL),Instance.new("SpecialMesh",LL)
  567. FT.MeshId,FT.Scale = "rbxasset://fonts/torso.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  568. RA.MeshId,RA.Scale = "rbxasset://fonts/rightarm.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  569. LA.MeshId,LA.Scale = "rbxasset://fonts/leftarm.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  570. RL.MeshId,RL.Scale = "rbxasset://fonts/rightleg.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  571. LL.MeshId,LL.Scale = "rbxasset://fonts/leftleg.mesh",V3.N(PlayerSize,PlayerSize,PlayerSize)
  572. for i = 0, 1, .1 do
  573. for _,v in next, who:GetDescendants() do
  574. if(v:IsA'DataModelMesh')then
  575. v.Offset = V3.N(M.RNG(-pow,pow)/100,M.RNG(-pow,pow)/100,M.RNG(-pow,pow)/100)
  576. elseif(v:IsA'BasePart')then
  577. v.Transparency = i
  578. end
  579. end
  580. swait()
  581. end
  582. who:destroy()
  583. end
  584. else
  585. if(glitching)then
  586. swait(120)
  587. for i = 0, 1, .1 do
  588. for _,v in next, hhh:children() do
  589. if(v:IsA'NumberValue')then
  590. v.Value = M.RNG(0,10)
  591. end
  592. end
  593. local pow = 75
  594. for _,v in next, who:GetDescendants() do
  595. if(v:IsA'DataModelMesh')then
  596. v.Offset = V3.N(M.RNG(-pow,pow)/100,M.RNG(-pow,pow)/100,M.RNG(-pow,pow)/100)
  597. elseif(v:IsA'BasePart')then
  598. v.Transparency = i
  599. end
  600. end
  601. swait()
  602. end
  603. who:destroy()
  604. end
  605. -- TODO: R15 Ragdoll
  606. end
  607. end
  608.  
  609.  
  610. function getRegion(point,range,ignore)
  611. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  612. end
  613.  
  614. function RandomChoice(table)
  615. return table[M.RNG(1,#table)]
  616. end
  617.  
  618. function Chat(text)
  619. coroutine.wrap(function()
  620. if Char:FindFirstChild("TalkingBillBoard")~= nil then
  621. Char:FindFirstChild("TalkingBillBoard"):destroy()
  622. end
  623. local oText = text;
  624. text = ""
  625. for i = 1, #oText do
  626. if(i%2 == 1)then
  627. text = text..oText:sub(i,i):upper()
  628. else
  629. text = text..oText:sub(i,i):lower()
  630. end
  631. end
  632. local Bill = Instance.new("BillboardGui",Char)
  633. Bill.Size = UDim2.new(0,100,0,40)
  634. Bill.StudsOffset = Vector3.new(0,3,0)
  635. Bill.Adornee = Char.Head
  636. Bill.Name = "TalkingBillBoard"
  637. local Hehe = Instance.new("TextLabel",Bill)
  638. Hehe.BackgroundTransparency = 1
  639. Hehe.BorderSizePixel = 0
  640. Hehe.Text = ""
  641. Hehe.Font = "Bodoni"
  642. Hehe.TextSize = 40
  643. Hehe.TextStrokeTransparency = 0
  644. Hehe.Size = UDim2.new(1,0,0.5,0)
  645. coroutine.resume(coroutine.create(function()
  646. while Hehe ~= nil do
  647. swait()
  648. Hehe.Position = UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  649. Hehe.Rotation = M.RNG(-M.RNG(5,15),M.RNG(5,15))
  650. local aa = math.random(0, 255)/255
  651. local bb = math.random(0, 255)/255
  652. Hehe.TextColor3 = C3.N(aa,aa,aa)
  653. Hehe.TextStrokeColor3 = C3.N(bb,bb,bb)
  654. end
  655. end))
  656. for i = 1,string.len(text),1 do
  657. swait(5)
  658. Hehe.Text = string.sub(text,1,i)
  659. end
  660. swait(90)
  661. for i = 0, 1, .025 do
  662. swait()
  663. Hehe.TextStrokeTransparency = i
  664. Hehe.TextTransparency = i
  665. Bill.ExtentsOffset = Vector3.new(math.random(-i, i), math.random(-i, i), math.random(-i, i))
  666. end
  667. Bill:Destroy()
  668. end)()
  669. end
  670.  
  671.  
  672. function clerp(startCF,endCF,alpha)
  673. return startCF:lerp(endCF, alpha)
  674. end
  675.  
  676. function GetTorso(char)
  677. return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart'
  678. end
  679.  
  680.  
  681. function ShowDamage(Pos, Text, Time, Color)
  682. coroutine.wrap(function()
  683. local Pos = (Pos or Vector3.new(0, 0, 0))
  684. local Text = (Text or "")
  685. local Time = (Time or 2)
  686. local Color = (Color or Color3.new(1, 0, 1))
  687. local EffectPart = NewInstance("Part",Effects,{
  688. Material=Enum.Material.SmoothPlastic,
  689. Reflectance = 0,
  690. Transparency = 1,
  691. BrickColor = BrickColor.new(Color),
  692. Name = "Effect",
  693. Size = Vector3.new(0,0,0),
  694. Anchored = true
  695. })
  696. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  697. Size = UDim2.new(2, 0, 2, 0),
  698. Adornee = EffectPart,
  699. })
  700. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  701. BackgroundTransparency = 1,
  702. Size = UDim2.new(1, 0, 1, 0),
  703. Text = Text,
  704. Font = "Arial",
  705. TextColor3 = Color,
  706. TextStrokeColor3 = Color3.new(0,0,0),
  707. TextStrokeTransparency=0,
  708. TextScaled = true,
  709. })
  710. EffectPart.Parent = game:GetService("Workspace")
  711. delay(0, function()
  712. local Frames = (Time / (1/Frame_Speed))
  713. for Frame = 1, Frames do
  714. swait()
  715. local Percent = (Frame / Frames)
  716. EffectPart.CFrame = CF.N(Pos+ V3.N(0, Percent, 0)) * CF.A(0,0,M.RRNG(-90,90))
  717. TextLabel.Rotation = M.RNG(-6,6)
  718. TextLabel.Position = UDim2.new(M.RNG(-1,1)/10,M.RNG(-1,1)/10,.05,M.RNG(-1,1)/10)
  719. end
  720. for i = 0, 1, .025 do
  721. swait()
  722. TextLabel.TextStrokeTransparency = i
  723. TextLabel.TextTransparency = i
  724. TextLabel.Position = UDim2.new(M.RNG(-15,15)/10,M.RNG(-15,15)/10,M.RNG(-15,15)/10,M.RNG(-15,15)/10)
  725. end
  726. if EffectPart and EffectPart.Parent then
  727. EffectPart:Destroy()
  728. end
  729. end) end)()
  730. end
  731.  
  732. --[[if(not Plr:IsFriendsWith(679934112))then
  733. Char:BreakJoints()
  734. error("Not whitelisted. You have to be friends with Bee.")
  735. else
  736. warn("You're friends with Bee, the creator of this edit")
  737. warn("Enjoy!")
  738. end]]
  739.  
  740. function DealDamage(who,minDam,maxDam,Knock,Type,critChance,critMult)
  741. if(who)then
  742. local hum = who:FindFirstChildOfClass'Humanoid'
  743. local Damage = M.RNG(minDam,maxDam)
  744. local canHit = true
  745. if(hum)then
  746. for _, p in pairs(Hit) do
  747. if p[1] == hum then
  748. if(time() - p[2] < 0.1) then
  749. canHit = false
  750. else
  751. Hit[_] = nil
  752. end
  753. end
  754. end
  755. if(canHit)then
  756. if(hum.Health >= math.huge)then
  757. who:BreakJoints()
  758. if(who:FindFirstChild'Head' and hum.Health > 0)then
  759. 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))
  760. end
  761. else
  762. local player = S.Players:GetPlayerFromCharacter(who)
  763. if(Type == "Fire")then
  764. --idk..
  765. else
  766. local c = Instance.new("ObjectValue",hum)
  767. c.Name = "creator"
  768. c.Value = Plr
  769. game:service'Debris':AddItem(c,0.35)
  770. if(M.RNG(1,100) <= (critChance or 0))then
  771. if(who:FindFirstChild'Head' and hum.Health > 0)then
  772. 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)
  773. end
  774. hum.Health = hum.Health - Damage*(critMult or 2)
  775. else
  776. if(who:FindFirstChild'Head' and hum.Health > 0)then
  777. 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)
  778. end
  779. hum.Health = hum.Health - Damage
  780. end
  781. if(Type == 'Knockback' and GetTorso(who))then
  782. local angle = GetTorso(who).Position - Root.Position + Vector3.new(0, 0, 0).unit
  783. local body = NewInstance('BodyVelocity',GetTorso(who),{
  784. P = 500,
  785. maxForce = V3.N(math.huge,0,math.huge),
  786. velocity = Root.CFrame.lookVector * Knock + Root.Velocity / 1.05
  787. })
  788. game:service'Debris':AddItem(body,.5)
  789. elseif(Type == 'Knockdown' and GetTorso(who))then
  790. local rek = GetTorso(who)
  791. print(rek)
  792. hum.PlatformStand = true
  793. delay(1,function()
  794. hum.PlatformStand = false
  795. end)
  796. local angle = (GetTorso(who).Position - (Root.Position + Vector3.new(0, 0, 0))).unit
  797. local bodvol = NewInstance("BodyVelocity",rek,{
  798. velocity = angle * Knock,
  799. P = 5000,
  800. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  801. })
  802. local rl = NewInstance("BodyAngularVelocity",rek,{
  803. P = 3000,
  804. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  805. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  806. })
  807. game:GetService("Debris"):AddItem(bodvol, .5)
  808. game:GetService("Debris"):AddItem(rl, .5)
  809. end
  810. end
  811. end
  812. end
  813. table.insert(Hit,{hum,time()})
  814. end
  815. end
  816. end
  817.  
  818. function AOEDamage(where,range,minDam,maxDam,Knock,Type)
  819. for _,v in next, getRegion(where,range,{Char}) do
  820. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')then
  821. DealDamage(v.Parent,minDam,maxDam,Knock,Type)
  822. end
  823. end
  824. end
  825. function AOEHeal(where,range,amount)
  826. local healed = {}
  827. for _,v in next, getRegion(where,range,{Char}) do
  828. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  829. if(hum and not healed[hum])then
  830. hum.Health = hum.Health + amount
  831. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  832. 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'Lime green'.Color)
  833. end
  834. end
  835. end
  836. end
  837.  
  838. --// Attack Functions \\--
  839.  
  840. function You_Cant_Hide()
  841. local target = Mouse.Target
  842. if(target and target.Parent and not Char:IsAncestorOf(target) and target.Parent:FindFirstChildOfClass'Humanoid')then
  843. if(Victim ~= target.Parent)then
  844. Victim = target.Parent;
  845. Target.Enabled = true
  846. Target.Adornee = GetTorso(Victim)
  847. TargetImg1.ImageTransparency = 1
  848. TargetImg2.ImageTransparency = 1
  849. TargetImg1.Size = UDim2.new(6,0,6,0)
  850. TargetImg2.Size = UDim2.new(6.4,0,6.4,0)
  851. Tween(TargetImg1,{ImageTransparency=0,Size=UDim2.new(1,0,1,0)},.5,Enum.EasingStyle.Quad,Enum.EasingDirection.Out)
  852. Tween(TargetImg2,{ImageTransparency=0,Size=UDim2.new(1.4,0,1.4,0)},.5,Enum.EasingStyle.Quad,Enum.EasingDirection.Out)
  853. end
  854. end
  855. end
  856.  
  857. function Brutal_Overlord()
  858. if(Victim)then
  859. Attack = true
  860. NeutralAnims = false
  861. local hum = Victim:FindFirstChildOfClass'Humanoid'
  862. if(hum)then
  863. Hum.JumpPower = 0
  864. hum.WalkSpeed = 0
  865. hum.JumpPower = 0
  866. hum.AutoRotate = false
  867. local tor,root = GetTorso(Victim),Victim:FindFirstChild'HumanoidRootPart'
  868. if(tor)then
  869. Root.CFrame = tor.CFrame * CF.N(0,0,2)
  870. local V = Victim
  871. V.Parent = Char
  872. for i = 0, 2, 0.1 do
  873. swait()
  874. local Alpha = .3
  875. 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)
  876. 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)
  877. 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)
  878. 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)
  879. 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)
  880. 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)
  881. end
  882. for i = 0, 1, 0.1 do
  883. swait()
  884. local Alpha = .2
  885. 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)
  886. 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)
  887. 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)
  888. 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)
  889. 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)
  890. 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)
  891. end
  892. if(root)then root.Parent = nil end
  893. local gWeld = NewInstance("Weld",Char,{Part0=RArm,Part1=tor,C0=CF.N(0,-1.15,0)*CF.A(M.R(90),0,M.R(180))})
  894. swait(60)
  895. local plr = S.Players:GetPlayerFromCharacter(V)
  896. local Dialogues = IsWhitelisted((plr and plr.UserId or 0),V.Name)
  897. for i = 0, 1, 0.1 do
  898. swait()
  899. local Alpha = .3
  900. 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)
  901. 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)
  902. 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)
  903. 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)
  904. 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)
  905. 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)
  906. end
  907. gWeld:destroy()
  908. local gWeld = NewInstance("Weld",Char,{Part0=Root,Part1=tor,C0=CF.N(0,2.35,0)*CF.A(M.R(90),0,M.R(90))})
  909. for i = 0, 6, 0.1 do
  910. swait()
  911. local Alpha = .3
  912. 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)
  913. 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)
  914. 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)
  915. 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)
  916. 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)
  917. 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)
  918. end
  919. if(not Dialogues)then
  920. Blood(tor,250)
  921. for i = 1, 25 do
  922. BloodDrop(tor.Position,(tor.CFrame * CF.N(0,0,25)).p + V3.N(M.RNG(-5,5),M.RNG(-5,5),M.RNG(-5,5)),15)
  923. end
  924. Ragdoll(V,true)
  925. if(V:FindFirstChild'Head')then
  926. ShowDamage((V.Head.CFrame * CF.N(0, 0, (V.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), "INSTANT", 1.5, C3.N(1,0,0))
  927. end
  928. coroutine.wrap(function()
  929. repeat swait() hum.Health = hum.Health - .5 until not hum or not hum.Parent or not hum.Parent.Parent or hum.Health == 0
  930. end)()
  931. gWeld:destroy()
  932. local s = Sound(tor,429400881,1,1,false,false,false)
  933. s:Play()
  934. s.Ended:connect(function() s:Destroy() end)
  935. for i = 0, 1, 0.1 do
  936. swait()
  937. local Alpha = .3
  938. 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)
  939. 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)
  940. 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)
  941. 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)
  942. 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)
  943. 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)
  944. end
  945. for i = 0, 4, 0.1 do
  946. swait()
  947. local Alpha = .3
  948. 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)
  949. 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)
  950. 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)
  951. 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)
  952. 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)
  953. 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)
  954. end
  955. V.Parent = workspace
  956. else
  957. V.Parent = workspace
  958. hum.WalkSpeed = 16
  959. hum.JumpPower = 50
  960. hum.AutoRotate = true
  961. if(root)then root.Parent = V end
  962. Chat(RandomChoice(Dialogues))
  963. gWeld:destroy()
  964. end
  965. end
  966. end
  967. Attack = false
  968. NeutralAnims = true
  969. Hum.JumpPower = 50
  970. end
  971. end
  972.  
  973. function F_Is_For_Friends()
  974. if(Victim)then
  975. Attack = true
  976. NeutralAnims = false
  977. Root.Anchored = true
  978. Hum.WalkSpeed = 0
  979. Hum.JumpPower = 0
  980. Hum.AutoRotate = false
  981. local hum = Victim:FindFirstChildOfClass'Humanoid'
  982. if(hum)then
  983. hum.WalkSpeed = 0
  984. hum.JumpPower = 0
  985. hum.AutoRotate = false
  986. local tor,root = GetTorso(Victim),Victim:FindFirstChild'HumanoidRootPart'
  987. if(tor)then
  988. local plr = S.Players:GetPlayerFromCharacter(Victim)
  989. Victim.Parent = Char
  990. local V = Victim
  991. Root.CFrame = tor.CFrame * CF.N(0,0,2)
  992. for i = 0, 2, 0.1 do
  993. swait()
  994. local Alpha = .3
  995. 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)
  996. 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)
  997. 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)
  998. 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)
  999. 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)
  1000. 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)
  1001. end
  1002. if(not IsWhitelisted((plr and plr.UserId or 0),Victim.Name))then
  1003. for i = 0, 1, 0.1 do
  1004. swait()
  1005. local Alpha = .2
  1006. 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)
  1007. 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)
  1008. 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)
  1009. 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)
  1010. 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)
  1011. 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)
  1012. end
  1013. if(root)then root:destroy() end
  1014. local gWeld = NewInstance("Weld",Char,{Part0=RArm,Part1=tor,C0=CF.N(0,-1.15,0)*CF.A(M.R(90),0,M.R(180))})
  1015. for i = 0, 1.5, 0.1 do
  1016. swait()
  1017. local Alpha = .2
  1018. 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)
  1019. 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)
  1020. 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)
  1021. 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)
  1022. 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)
  1023. 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)
  1024. end
  1025. for i = 0, 1.5, 0.1 do
  1026. swait()
  1027. local Alpha = .2
  1028. RJ.C0 = clerp(RJ.C0,CFrame.new(0.00625591865, 0.0813473165, 0.400900364, 0.999966562, 0.00783777051, -0.00216883142, -0.00785200112, 0.86111331, -0.508352578, -0.00211674068, 0.508352578, 0.861145973),Alpha)
  1029. LH.C0 = clerp(LH.C0,CFrame.new(-0.493550777, -1.11785793, 0.210999548, 0.999878109, -0.00785200112, 0.0134950019, -9.95867158e-05, 0.86111331, 0.508413196, -0.0156127857, -0.508352578, 0.861007512),Alpha)
  1030. RH.C0 = clerp(RH.C0,CFrame.new(0.501458287, -1.11329269, 0.203607619, 0.999878109, -0.00785200112, 0.0134950019, -9.95867158e-05, 0.86111331, 0.508413196, -0.0156127857, -0.508352578, 0.861007512),Alpha)
  1031. LS.C0 = clerp(LS.C0,CFrame.new(-1.42722964, 0.501024425, -0.00418075919, 0.987981081, 0.153783977, 0.0156133743, -0.15389666, 0.988066971, 0.00628429651, -0.0144606289, -0.008611653, 0.999858499),Alpha)
  1032. RS.C0 = clerp(RS.C0,CFrame.new(1.49951315, 0.533271909, 0.122298151, 0.999878109, -0.0090814922, -0.0127002187, -9.95867158e-05, -0.817126393, 0.576458812, -0.0156127857, -0.576387286, -0.817027688),Alpha)
  1033. NK.C0 = clerp(NK.C0,CFrame.new(7.63008302e-06, 1.49894154, -0.0144001842, 1, 6.98491931e-10, 9.31322575e-10, -3.63797881e-10, 0.973997772, -0.226557806, 0, 0.226557702, 0.973997891),Alpha)
  1034. end
  1035. for i = 0, 1, 0.1 do
  1036. swait()
  1037. local Alpha = .3
  1038. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0187514834, -0.79457438, -1.20069253, 0.999795973, -0.0154833021, -0.0129478984, 0.0153970039, 0.17028904, 0.985273898, -0.0130504072, -0.985272229, 0.170492694),Alpha)
  1039. LH.C0 = clerp(LH.C0,CFrame.new(-0.501449645, -0.610708058, -0.298194289, 0.999878228, 0.0124785267, 0.0093758991, -9.93862486e-05, 0.605774939, -0.795636177, -0.0156080509, 0.795538306, 0.6057024),Alpha)
  1040. RH.C0 = clerp(RH.C0,CFrame.new(0.493200511, -0.598516285, -0.328632295, 0.999878228, 0.012479268, 0.00937492307, -9.9343175e-05, 0.605710208, -0.79568541, -0.0156080583, 0.79558748, 0.60563767),Alpha)
  1041. LS.C0 = clerp(LS.C0,CFrame.new(-1.45762277, 0.217138797, 0.937710166, 0.987961769, -0.0680040792, -0.13894996, -0.154015318, -0.516705632, -0.842196465, -0.0145234168, 0.853458226, -0.52095896),Alpha)
  1042. RS.C0 = clerp(RS.C0,CFrame.new(1.17450583, 0.446741909, -0.635936022, 0.971768141, 0.23593688, 0.000732728047, -0.0119010834, 0.0521189161, -0.998570144, -0.235637665, 0.970369816, 0.0534554198),Alpha)
  1043. NK.C0 = clerp(NK.C0,CFrame.new(7.62972468e-06, 1.49894738, -0.0143931806, 1.00000012, 0, -9.31322575e-10, 6.54836185e-11, 0.973998249, -0.226556346, -9.31322575e-10, 0.226556271, 0.973998129),Alpha)
  1044. end
  1045. gWeld:destroy()
  1046. tor.CFrame = Root.CFrame*CF.A(M.R(90),0,M.R(180))*CF.N(0,1.5,2.5)
  1047. tor.Anchored = true
  1048. for i = 0, 1.5, 0.1 do
  1049. swait()
  1050. local Alpha = .3
  1051. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0187514834, -0.79457438, -1.20069253, 0.999795973, -0.0154833021, -0.0129478984, 0.0153970039, 0.17028904, 0.985273898, -0.0130504072, -0.985272229, 0.170492694),Alpha)
  1052. LH.C0 = clerp(LH.C0,CFrame.new(-0.501449645, -0.610708058, -0.298194289, 0.999878228, 0.0124785267, 0.0093758991, -9.93862486e-05, 0.605774939, -0.795636177, -0.0156080509, 0.795538306, 0.6057024),Alpha)
  1053. RH.C0 = clerp(RH.C0,CFrame.new(0.493200511, -0.598516285, -0.328632295, 0.999878228, 0.012479268, 0.00937492307, -9.9343175e-05, 0.605710208, -0.79568541, -0.0156080583, 0.79558748, 0.60563767),Alpha)
  1054. LS.C0 = clerp(LS.C0,CFrame.new(-1.45762277, 0.217138797, 0.937710166, 0.987961769, -0.0680040792, -0.13894996, -0.154015318, -0.516705632, -0.842196465, -0.0145234168, 0.853458226, -0.52095896),Alpha)
  1055. RS.C0 = clerp(RS.C0,CFrame.new(1.17450583, 0.446741909, -0.635936022, 0.971768141, 0.23593688, 0.000732728047, -0.0119010834, 0.0521189161, -0.998570144, -0.235637665, 0.970369816, 0.0534554198),Alpha)
  1056. NK.C0 = clerp(NK.C0,CFrame.new(7.62972468e-06, 1.49894738, -0.0143931806, 1.00000012, 0, -9.31322575e-10, 6.54836185e-11, 0.973998249, -0.226556346, -9.31322575e-10, 0.226556271, 0.973998129),Alpha)
  1057. end
  1058. Ragdoll(V)
  1059. if(V:FindFirstChild'Head')then
  1060. local s = Sound(tor,429400881,1,1,false,false,false)
  1061. s:Play()
  1062. s.Ended:connect(function() s:Destroy() end)
  1063. for i = 1, 15 do
  1064. BloodPuddle(V.Head.Position + V3.N(0,1,0) + V3.N(M.RNG(-75,75)/100,M.RNG(-75,75)/100,M.RNG(-75,75)/100),5,15,V)
  1065. end
  1066. ShowDamage((V.Head.CFrame * CF.N(0, 0, (V.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), "INSTANT", 1.5, C3.N(1,0,0))
  1067. V.Head:destroy()
  1068. end
  1069. V.Parent = workspace
  1070. for i = 0, 1, 0.1 do
  1071. swait()
  1072. local Alpha = .5
  1073. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0187514834, -0.79457438, -1.20069253, 0.999795973, -0.0154833021, -0.0129478984, 0.0153970039, 0.17028904, 0.985273898, -0.0130504072, -0.985272229, 0.170492694),Alpha)
  1074. LH.C0 = clerp(LH.C0,CFrame.new(-0.501449645, -0.610708058, -0.298194289, 0.999878228, 0.0124785267, 0.0093758991, -9.93862486e-05, 0.605774939, -0.795636177, -0.0156080509, 0.795538306, 0.6057024),Alpha)
  1075. RH.C0 = clerp(RH.C0,CFrame.new(0.493200511, -0.598516285, -0.328632295, 0.999878228, 0.012479268, 0.00937492307, -9.9343175e-05, 0.605710208, -0.79568541, -0.0156080583, 0.79558748, 0.60563767),Alpha)
  1076. LS.C0 = clerp(LS.C0,CFrame.new(-0.891352475, 1.30320811, -0.969099402, 0.885748208, -0.442882746, -0.138943374, -0.340959162, -0.417689204, -0.842189372, 0.31495595, 0.793341637, -0.520972252),Alpha)
  1077. RS.C0 = clerp(RS.C0,CFrame.new(1.17450583, 0.446741909, -0.635936022, 0.971768141, 0.23593688, 0.000732728047, -0.0119010834, 0.0521189161, -0.998570144, -0.235637665, 0.970369816, 0.0534554198),Alpha)
  1078. NK.C0 = clerp(NK.C0,CFrame.new(7.62972468e-06, 1.49894738, -0.0143931806, 1.00000012, 0, -9.31322575e-10, 6.54836185e-11, 0.973998249, -0.226556346, -9.31322575e-10, 0.226556271, 0.973998129),Alpha)
  1079. end
  1080. tor.Anchored = false
  1081. else
  1082. swait(30)
  1083. V.Parent = workspace
  1084. hum.WalkSpeed = 16
  1085. hum.JumpPower = 50
  1086. hum.AutoRotate = true
  1087. local dialogue = IsWhitelisted((plr and plr.UserId or 0),V.Name)
  1088. Chat(dialogue[M.RNG(1,#dialogue)])
  1089. end
  1090. end
  1091. end
  1092. Hum.WalkSpeed = 8
  1093. Hum.JumpPower = 50
  1094. Hum.AutoRotate = true
  1095. Root.Anchored = false
  1096. Attack = false
  1097. NeutralAnims = true
  1098. end
  1099. end
  1100.  
  1101. function Tear_My_Life_Into_Taunts()
  1102. Attack = true
  1103. NeutralAnims = false
  1104. for i = 0, 8, 0.1 do
  1105. swait()
  1106. local Alpha = .3
  1107. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20698329e-13, 0.00629675016, 1.43556463e-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)
  1108. 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)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1109. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990987241, 0.0154613862, 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)
  1110. LS.C0 = clerp(LS.C0,CFrame.new(-1.4130398, 0.471796542, 0.436438888, 0.849095166, -0.528082132, -0.0128858006, -0.440307319, -0.694065511, -0.569563627, 0.291832745, 0.489287376, -0.821846128)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1111. RS.C0 = clerp(RS.C0,CFrame.new(1.40943193, 0.493523985, 0.387199104, 0.835501969, 0.547668338, -0.0446685776, 0.420134097, -0.689098537, -0.590449631, -0.354151636, 0.474555045, -0.805837154)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1112. NK.C0 = clerp(NK.C0,CFrame.new(5.36867731e-07, 1.49895, -0.0144043043, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1113. end
  1114. for i = 0, 6, 0.1 do
  1115. swait()
  1116. local Alpha = .3
  1117. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20698329e-13, 0.00629675016, 1.43556463e-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)
  1118. 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)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1119. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990987241, 0.0154613862, 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)
  1120. LS.C0 = clerp(LS.C0,CFrame.new(-1.23893571, 1.10698521, -0.259219378, 0.91258198, -0.374027461, 0.165217906, -0.313840568, -0.899720669, -0.303326517, 0.262102395, 0.224958256, -0.938453794)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1121. RS.C0 = clerp(RS.C0,CFrame.new(1.34101844, 0.980774999, 0.079483822, 0.969134748, 0.232594684, 0.0817119107, 0.245576948, -0.939937592, -0.237085104, 0.0216593593, 0.249834001, -0.968046069)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1122. NK.C0 = clerp(NK.C0,CFrame.new(8.18966896e-07, 2.2650795, -0.0633551627, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1123. end
  1124. for i = 0, 8, 0.1 do
  1125. swait()
  1126. local Alpha = .3
  1127. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20698329e-13, 0.00629675016, 1.43556463e-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)
  1128. 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)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1129. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990987241, 0.0154613862, 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)
  1130. LS.C0 = clerp(LS.C0,CFrame.new(-1.4130398, 0.471796542, 0.436438888, 0.849095166, -0.528082132, -0.0128858006, -0.440307319, -0.694065511, -0.569563627, 0.291832745, 0.489287376, -0.821846128)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1131. RS.C0 = clerp(RS.C0,CFrame.new(1.40943193, 0.493523985, 0.387199104, 0.835501969, 0.547668338, -0.0446685776, 0.420134097, -0.689098537, -0.590449631, -0.354151636, 0.474555045, -0.805837154)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1132. NK.C0 = clerp(NK.C0,CFrame.new(5.36867731e-07, 1.49895, -0.0144043043, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1133. end
  1134. Attack = false
  1135. NeutralAnims = true
  1136. end
  1137.  
  1138.  
  1139. function Tear_My_Life_Into_Pieces()
  1140. Attack = true
  1141. NeutralAnims = false
  1142. for i = 0, 8, 0.1 do
  1143. swait()
  1144. local Alpha = .3
  1145. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20698329e-13, 0.00629675016, 1.43556463e-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)
  1146. 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)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1147. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990987241, 0.0154613862, 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)
  1148. LS.C0 = clerp(LS.C0,CFrame.new(-1.4130398, 0.471796542, 0.436438888, 0.849095166, -0.528082132, -0.0128858006, -0.440307319, -0.694065511, -0.569563627, 0.291832745, 0.489287376, -0.821846128)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1149. RS.C0 = clerp(RS.C0,CFrame.new(1.40943193, 0.493523985, 0.387199104, 0.835501969, 0.547668338, -0.0446685776, 0.420134097, -0.689098537, -0.590449631, -0.354151636, 0.474555045, -0.805837154)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1150. NK.C0 = clerp(NK.C0,CFrame.new(5.36867731e-07, 1.49895, -0.0144043043, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1151. end
  1152. for i = 0, 8, 0.1 do
  1153. swait()
  1154. local Alpha = .3
  1155. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20698329e-13, 0.00629675016, 1.43556463e-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)
  1156. 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)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1157. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990987241, 0.0154613862, 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)
  1158. LS.C0 = clerp(LS.C0,CFrame.new(-1.23893571, 1.10698521, -0.259219378, 0.91258198, -0.374027461, 0.165217906, -0.313840568, -0.899720669, -0.303326517, 0.262102395, 0.224958256, -0.938453794)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1159. RS.C0 = clerp(RS.C0,CFrame.new(1.34101844, 0.980774999, 0.079483822, 0.969134748, 0.232594684, 0.0817119107, 0.245576948, -0.939937592, -0.237085104, 0.0216593593, 0.249834001, -0.968046069)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1160. NK.C0 = clerp(NK.C0,CFrame.new(8.18966896e-07, 2.2650795, -0.0633551627, 0.999999225, 3.67464963e-07, -1.62050128e-07, -3.56478267e-07, 0.997964799, 0.0637686923, 1.8440187e-07, -0.0637686551, 0.997963905)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1161. end
  1162. for i = 0, 3, 0.1 do
  1163. swait()
  1164. local Alpha = .3
  1165. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20698329e-13, 0.00629675016, 1.43556463e-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)
  1166. 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)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1167. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990987241, 0.0154613862, 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)
  1168. LS.C0 = clerp(LS.C0,CFrame.new(-1.50119066, 0.635437846, 0.183586091, 0.999877751, -0.00959497504, -0.0123154735, -9.81397825e-05, -0.792694271, 0.609619617, -0.0156116877, -0.60954386, -0.792598248)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1169. RS.C0 = clerp(RS.C0,CFrame.new(1.42464852, 0.494964302, 0.0084314663, 0.989141941, -0.146129116, 0.0156119959, 0.146047026, 0.989257753, 0.0062854127, -0.0163627695, -0.00393708423, 0.999858022)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1170. NK.C0 = clerp(NK.C0,CFrame.new(-1.52624333, 1.82071006, 1.26504755, 0.999999642, -4.94066626e-06, -7.65314326e-07, 3.14830686e-08, 0.159286067, -0.987232625, 4.99933958e-06, 0.987232208, 0.159286022)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1171. end
  1172. for i = 0, .8, 0.1 do
  1173. swait()
  1174. local Alpha = .3
  1175. RJ.C0 = clerp(RJ.C0,CFrame.new(3.20698329e-13, 0.00629675016, 1.43556463e-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)
  1176. 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)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1177. RH.C0 = clerp(RH.C0,CFrame.new(0.498533875, -0.990987241, 0.0154613862, 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)
  1178. LS.C0 = clerp(LS.C0,CFrame.new(-1.5084902, 0.727420211, -0.284505814, 0.999877751, 0.0138456346, -0.00721337926, -9.81397825e-05, -0.456457406, -0.889745295, -0.0156116877, 0.889637291, -0.456400275)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1179. RS.C0 = clerp(RS.C0,CFrame.new(1.42464852, 0.494964302, 0.0084314663, 0.989141941, -0.146129116, 0.0156119959, 0.146047026, 0.989257753, 0.0062854127, -0.0163627695, -0.00393708423, 0.999858022)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1180. NK.C0 = clerp(NK.C0,CFrame.new(-1.5716989, 1.57655525, -1.64465189, 0.999711812, -0.0205687769, 0.0123552298, 0.0152448276, 0.94212538, 0.33491385, -0.0185289457, -0.334628969, 0.942167461)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),Alpha)
  1181. end
  1182. Head.Transparency = 1
  1183. for _,v in next, Char:children() do
  1184. if(v:IsA'Accessory')then v.Handle.Transparency = 1 end
  1185. end
  1186. local projectile = Head:Clone()
  1187. projectile.Transparency = 0
  1188. projectile.Parent = workspace
  1189. local bv = NewInstance("BodyVelocity",projectile,{Velocity=(Mouse.Hit.p - projectile.CFrame.p).unit * 125})
  1190. delay(.2, function()
  1191. bv:destroy()
  1192. end)
  1193. projectile.Touched:connect(function(t)
  1194. if(not Char:IsAncestorOf(t))then
  1195. local hum = (t and t.Parent and t.Parent:FindFirstChildOfClass'Humanoid')
  1196. local hed = (t and t.Parent and t.Parent:FindFirstChild'Head')
  1197. if(hum and hed and hum.Health > 0)then
  1198. local plr = S.Players:GetPlayerFromCharacter(t.Parent)
  1199. if(not IsWhitelisted((plr and plr.UserId or 0),t.Parent.Name))then
  1200. t.Parent:breakJoints()
  1201. Ragdoll(t.Parent)
  1202. end
  1203. end
  1204. end
  1205. end)
  1206. coroutine.wrap(function()
  1207. for i = 1, 0, -.05 do
  1208. Head.Transparency = i
  1209. for _,v in next, Char:children() do
  1210. if(v:IsA'Accessory')then v.Handle.Transparency = i end
  1211. end
  1212. swait()
  1213. end
  1214. Head.Transparency = 0
  1215. for _,v in next, Char:children() do
  1216. if(v:IsA'Accessory')then v.Handle.Transparency = 0 end
  1217. end
  1218. end)()
  1219. delay(2, function()
  1220. for i = 0, 1, .05 do
  1221. projectile.Transparency = i
  1222. swait()
  1223. end
  1224. projectile:destroy()
  1225. end)
  1226. swait(30)
  1227. NeutralAnims = true
  1228. Attack = false
  1229. end
  1230.  
  1231. function An_Error_Has_Occureedddddddddd()
  1232. Attack = true
  1233. coroutine.wrap(function()
  1234. while true do
  1235. swait()
  1236. local pow = 75
  1237. FT.Parent = Torso
  1238. RA.Parent = RArm
  1239. LA.Parent = LArm
  1240. RL.Parent = RLeg
  1241. LL.Parent = LLeg
  1242. for _,v in next, Char:GetDescendants() do
  1243. if(v:IsA'DataModelMesh')then
  1244. v.Offset = V3.N(M.RNG(-pow,pow)/100,M.RNG(-pow,pow)/100,M.RNG(-pow,pow)/100)
  1245. end
  1246. end
  1247. end
  1248. end)()
  1249. Chat("I.. Need... Help.. "..string.rep("SaVeMe",25))
  1250. swait(30)
  1251. coroutine.wrap(function()
  1252. local tp = Music.TimePosition
  1253. while true do
  1254. swait(30)
  1255. Music.TimePosition = tp
  1256. end
  1257. end)()
  1258. swait(60)
  1259. for _,v in next, workspace:GetDescendants() do
  1260. if(v:FindFirstChildOfClass'Humanoid')then
  1261. coroutine.wrap(function() Ragdoll(v,false,true) end)()
  1262. end
  1263. end
  1264. end
  1265.  
  1266. Mouse.KeyDown:connect(function(k)
  1267. if(Attack)then return end
  1268. if(k == 'q')then You_Cant_Hide() end
  1269. if(k == 'z')then F_Is_For_Friends() end
  1270. if(k == 'x')then Brutal_Overlord() end
  1271. if(k == 'c')then Tear_My_Life_Into_Pieces() end
  1272. if(k == 't')then Tear_My_Life_Into_Taunts() end
  1273. if(k == 'v')then An_Error_Has_Occureedddddddddd() end
  1274. end)
  1275.  
  1276. --// Wrap it all up \\--
  1277.  
  1278.  
  1279. coroutine.wrap(function()
  1280. while true do
  1281. swait()
  1282. for puddle,data in next, BloodPuddles do
  1283. if(puddle.Transparency > 0.9)then
  1284. BloodPuddles[puddle] = nil
  1285. puddle:destroy()
  1286. end
  1287. data.Frame = data.Frame + 1
  1288. if(data.Frame > Frame_Speed*4)then
  1289. local trans = (data.Frame-Frame_Speed*4)/Frame_Speed*2
  1290. puddle.Transparency = trans
  1291. if(puddle:FindFirstChild'CylinderMesh' and puddle.CylinderMesh.Scale.Z > 0)then
  1292. puddle.CylinderMesh.Scale = puddle.CylinderMesh.Scale-V3.N(.1,0,.1)
  1293. end
  1294. else
  1295. puddle.Transparency = 0
  1296. end
  1297. end
  1298. end
  1299. end)()
  1300.  
  1301. Hum.WalkSpeed = 8
  1302. while true do
  1303. swait()
  1304. if(not Music or not Music.Parent)then
  1305. local a = Music.TimePosition
  1306. Music = Sound(Char,MusicID,1,3,true,false,true)
  1307. Music.Name = 'Music'
  1308. Music.TimePosition = a
  1309. end
  1310. Music.Volume = 5
  1311. Sine = Sine + Change
  1312. 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)
  1313. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  1314. local State = (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")
  1315. if(State == 'Walk')then
  1316. local Alpha = math.min(.2*(Hum.WalkSpeed/16),1)
  1317. if(Hum.WalkSpeed < 14)then
  1318. local wsVal = 14 / (Hum.WalkSpeed/5)
  1319. Change = 1
  1320. RH.C1 = RH.C1:lerp(CF.N(0,.985-.15*M.S(Sine/wsVal),0+.2*-M.C(Sine/wsVal))*CF.A(M.R(0+20*M.C(Sine/wsVal)),0,0),Alpha)
  1321. LH.C1 = LH.C1:lerp(CF.N(0,.985-.15*-M.S(Sine/wsVal),0+.2*M.C(Sine/wsVal))*CF.A(M.R(0-20*M.C(Sine/wsVal)),0,0),Alpha)
  1322. elseif(Hum.WalkSpeed >= 14)then
  1323. local wsVal = 7 / (Hum.WalkSpeed/16)
  1324. Change = 2/3
  1325. RH.C1 = RH.C1:lerp(CF.N(0,1-.25*M.S(Sine/wsVal),0+.2*-M.C(Sine/wsVal))*CF.A(M.R(15+25*M.C(Sine/wsVal)),0,0),Alpha)
  1326. LH.C1 = LH.C1:lerp(CF.N(0,1-.25*-M.S(Sine/wsVal),0+.2*M.C(Sine/wsVal))*CF.A(M.R(15-25*M.C(Sine/wsVal)),0,0),Alpha)
  1327. end
  1328. else
  1329. RH.C1 = RH.C1:lerp(CF.N(0,1,0),.3)
  1330. LH.C1 = LH.C1:lerp(CF.N(0,1,0),.3)
  1331. end
  1332. local twitch = M.RNG(1,250)
  1333. if(twitch == 1 and not Twitch and time()-LastTwitch > TwitchMinTime)then
  1334. Twitch = true
  1335. LastTwitch = time()
  1336. end
  1337. if(time()-LastTwitch > M.RNG(75,150)/100)then
  1338. Twitch = false
  1339. end
  1340. if(Twitch)then
  1341. local pow = 75
  1342. NK.C1 = NK.C1:lerp(CF.A(-M.R(15)-M.RRNG(15,45),-(M.R(25)+M.RRNG(-100,100)/100),0),.3)
  1343. Music.Pitch = .8
  1344. --[[FT.Parent = Torso
  1345. RA.Parent = RArm
  1346. LA.Parent = LArm
  1347. RL.Parent = RLeg
  1348. LL.Parent = LLeg
  1349. for _,v in next, Char:GetDescendants() do
  1350. if(v:IsA'DataModelMesh')then
  1351. v.Offset = V3.N(M.RNG(-pow,pow)/100,M.RNG(-pow,pow)/100,M.RNG(-pow,pow)/100)
  1352. end
  1353. end]]
  1354. else
  1355. NK.C1 = NK.C1:lerp(CF.N(),.3)
  1356. Music.Pitch = 1
  1357. --[[FT.Parent = nil
  1358. RA.Parent = nil
  1359. LA.Parent = nil
  1360. RL.Parent = nil
  1361. LL.Parent = nil
  1362. for _,v in next, Char:GetDescendants() do
  1363. if(v:IsA'DataModelMesh')then
  1364. v.Offset = V3.N()
  1365. end
  1366. end]]
  1367. end
  1368. if(Victim and (not Victim:FindFirstChildOfClass'Humanoid' or not Victim.Parent or not GetTorso(Victim)))then
  1369. Victim = nil
  1370. end
  1371. if(not Victim)then
  1372. Target.Adornee = nil
  1373. Target.Enabled = false
  1374. elseif(GetTorso(Victim))then
  1375. Target.Adornee = GetTorso(Victim)
  1376. Target.Enabled = true
  1377. end
  1378. TargetImg1.Rotation = TargetImg1.Rotation + 2
  1379. TargetImg2.Rotation = TargetImg2.Rotation - 2
  1380.  
  1381. if(NeutralAnims)then
  1382. if(State == 'Idle')then
  1383. local Alpha = .2
  1384. RJ.C0 = RJ.C0:lerp(RJC0*CF.N(0,-.15+.1*M.C(Sine/24),0)*CF.A(M.R(-25),0,0),Alpha)
  1385. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,.1*M.C(Sine/24),0)*CF.A(M.R(25),0,M.R(-5-5*M.C(Sine/24))),Alpha)
  1386. RS.C0 = RS.C0:lerp(RSC0*CF.N(0,.1*M.C(Sine/24),0)*CF.A(M.R(25),0,M.R(5+5*M.C(Sine/24))),Alpha)
  1387. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,-.1*M.C(Sine/24),0)*CF.A(M.R(25),0,M.R(-5)),Alpha)
  1388. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,-.1*M.C(Sine/24),0)*CF.A(M.R(25),0,M.R(5)),Alpha)
  1389. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,-.2)*CF.A(M.R(-25),0,0)*CF.A(M.RRNG(-5,5),M.RRNG(-10,10),0),.1)
  1390. elseif(State == 'Walk')then
  1391. local Alpha = .3
  1392. if(Hum.WalkSpeed < 14)then
  1393. local wsVal = 14 / (Hum.WalkSpeed/5)
  1394. NK.C0 = clerp(NK.C0,CFrame.new(1.2824883e-05, 1.52978039, -0.358495057, 1.00000012, 2.7930364e-06, 1.10529363e-05, -9.7640368e-06, 0.710427284, 0.703770578, -5.88688999e-06, -0.703770638, 0.710427284),Alpha)
  1395. LH.C0 = clerp(LH.C0,LHC0*CF.N(0,0+.1*-M.C(Sine/(wsVal/2)),0),Alpha)
  1396. RH.C0 = clerp(RH.C0,RHC0*CF.N(0,0+.1*-M.C(Sine/(wsVal/2)),0),Alpha)
  1397. RJ.C0 = clerp(RJ.C0,RJC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0),Alpha)
  1398. RS.C0 = clerp(RS.C0,RSC0*CF.A(M.R(0+20*M.C(Sine/wsVal)),0,M.R(5)),Alpha)
  1399. LS.C0 = clerp(LS.C0,LSC0*CF.A(M.R(0+20*-M.C(Sine/wsVal)),0,M.R(-5)),Alpha)
  1400. elseif(Hum.WalkSpeed >= 14)then
  1401. local wsVal = 7 / (Hum.WalkSpeed/16)
  1402. NK.C0 = clerp(NK.C0,CFrame.new(1.2824883e-05, 1.52978039, -0.358495057, 1.00000012, 2.7930364e-06, 1.10529363e-05, -9.7640368e-06, 0.710427284, 0.703770578, -5.88688999e-06, -0.703770638, 0.710427284),Alpha)
  1403. LH.C0 = clerp(LH.C0,LHC0*CF.N(0,0+.1*-M.C(Sine/(wsVal/2)),0),Alpha)
  1404. RH.C0 = clerp(RH.C0,RHC0*CF.N(0,0+.1*-M.C(Sine/(wsVal/2)),0),Alpha)
  1405. RJ.C0 = clerp(RJ.C0,RJC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0),Alpha)
  1406. RS.C0 = clerp(RS.C0,RSC0*CF.A(M.R(0+25*M.C(Sine/wsVal)),0,M.R(5)),Alpha)
  1407. LS.C0 = clerp(LS.C0,LSC0*CF.A(M.R(0+25*-M.C(Sine/wsVal)),0,M.R(-5)),Alpha)
  1408. end
  1409. elseif(State == 'Jump' or State == 'Fall')then
  1410. IdleCounter = 0
  1411. if(Walking)then
  1412. local Alpha = .2
  1413. 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)
  1414. 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)
  1415. 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)
  1416. 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)
  1417. 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)
  1418. 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)
  1419. else
  1420. local Alpha = .2
  1421. 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)
  1422. 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)
  1423. 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)
  1424. 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)
  1425. 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)
  1426. 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)
  1427. end
  1428. end
  1429. end
  1430. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement