Advertisement
heyoooooooooo

Untitled

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