Advertisement
zXzGamePROzXz

Insanity powers

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