Advertisement
trickawsome

Sonic.EXE Script V.1

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