Advertisement
cat568

Untitled

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