Advertisement
SurgeonDoob

faces

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