Advertisement
Oscar55555

Untitled

Mar 1st, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 199.07 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. -- I leaked this because Noki sold it without permission.
  153.  
  154. -- Created by Nebula_Zorua --
  155. -- Noki's Custom (Preech) --
  156. -- yeet he paid me $7 --
  157. -- Not like that matters anymore, of course. --
  158. -- Discord: Nebula the Zorua#6969
  159. -- Youtube: https://www.youtube.com/channel/UCo9oU9dCw8jnuVLuy4_SATA
  160.  
  161.  
  162. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  163.  
  164. local plr = S.Players.LocalPlayer
  165. local char = plr.Character
  166. local hum = char.Humanoid
  167. local rarm = char["Right Arm"]
  168. local larm= char["Left Arm"]
  169. local rleg= char["Right Leg"]
  170. local lleg = char["Left Leg"]
  171. local root = char:FindFirstChild'HumanoidRootPart'
  172. local torso = char.Torso
  173. local head = char.Head
  174. local sine = 0;
  175. local combo = 1;
  176. local lastClick = time()
  177. local change = 1;
  178. local runService = S.RunService
  179. local mouse = plr:GetMouse()
  180. local Attack = false
  181. local neutralAnims = true
  182. local PaintBody = "Really black"
  183. local PlayerSize = 2.5
  184. local Debounces = {Debounces={}}
  185. local Hit = {}
  186. local BloodPuddles = {}
  187. local Teamed = {}
  188. local WalkSpeed = 8
  189. local Puddle = nil;
  190. local Alpha = 0.3
  191. function Debounces:New(name,cooldown)
  192. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  193. setmetatable(aaaaa,{__index = Debounces})
  194. Debounces.Debounces[name] = aaaaa
  195. return aaaaa
  196. end
  197.  
  198. function Debounces:Use(overrideUsable)
  199. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  200. if(self.Usable or overrideUsable)then
  201. self.Usable = false
  202. self.CoolingDown = true
  203. local LastUse = time()
  204. self.LastUse = LastUse
  205. delay(self.Cooldown or 2,function()
  206. if(self.LastUse == LastUse)then
  207. self.CoolingDown = false
  208. self.Usable = true
  209. end
  210. end)
  211. end
  212. end
  213.  
  214. function Debounces:Get(name)
  215. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  216. for i,v in next, Debounces.Debounces do
  217. if(i == name)then
  218. return v;
  219. end
  220. end
  221. end
  222.  
  223. function Debounces:GetProgressPercentage()
  224. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  225. if(self.CoolingDown and not self.Usable)then
  226. return math.max(
  227. math.floor(
  228. (
  229. (time()-self.LastUse)/self.Cooldown or 2
  230. )*100
  231. )
  232. )
  233. else
  234. return 100
  235. end
  236. end
  237.  
  238. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  239. local V3 = {N=Vector3.new}
  240. local M = {C=math.cos,R=math.rad,S=math.sin,P=math.pi,RNG=math.random,MRS=math.randomseed,H=math.huge}
  241.  
  242. local Effects,Sounds = {},{};
  243. --Stop animations
  244. for _,v in next, hum:GetPlayingAnimationTracks() do
  245. v:Stop();
  246. end
  247.  
  248. pcall(game.Destroy,char:FindFirstChild'Animate')
  249. pcall(game.Destroy,hum:FindFirstChild'Animator')
  250.  
  251. -- Sounds
  252. Sounds['Wet'] = {Id=256738023,Loop=false,Pitch=1}
  253. Sounds['Swoosh1'] = {Id=320557353,Loop=false,Pitch=1,Volume=6}
  254. Sounds['Swoosh2'] = {Id=320557382,Loop=false,Pitch=1,Volume=6}
  255. Sounds['Swoosh3'] = {Id=320557413,Loop=false,Pitch=1,Volume=6}
  256. Sounds['Swoosh4'] = {Id=320557453,Loop=false,Pitch=1,Volume=6}
  257. Sounds['Swoosh5'] = {Id=320557487,Loop=false,Pitch=1,Volume=6}
  258. Sounds['Swoosh6'] = {Id=320557537,Loop=false,Pitch=1,Volume=6}
  259. Sounds['Swoosh7'] = {Id=320557563,Loop=false,Pitch=1,Volume=6}
  260. Sounds['Swoosh8'] = {Id=320557518,Loop=false,Pitch=1,Volume=6}
  261. Sounds['SmallBoom'] = {Id=341336485,Loop=false,Volume=5,Pitch=1}
  262. Sounds['ChaosBuster'] = {Id=333534812,Loop=false,Volume=5,Pitch=0.75}
  263. Sounds['Magic'] = {Id=315743350,Loop=false,Volume=5,Pitch=1}
  264. Sounds['ShrekRemix'] = {Id=163306929,Loop=true,Pitch=1,Volume = 4}
  265. Sounds['CreoDimension'] = {Id=927529620,Loop=true,Pitch=1,Volume=4}
  266. Sounds['BlackBlizzard'] = {Id=657626121,Loop=true,Pitch=1,Volume=4}
  267. Sounds['ColbreakzFantasy'] = {Id=876981900,Loop=true,Pitch=1,Volume=4}
  268. Sounds['NeflCrystals'] = {Id=340106355,Loop=true,Pitch=1,Volume=4}
  269. Sounds['EvilMortyRemix'] = {Id=1057401232,Loop=true,Pitch=1,Volume=10}
  270. Sounds['Creep'] = {Id=421358540, Loop=true,Pitch=1,Volume=5}
  271. -- Functions
  272. local NewInstance = function(instance,parent,properties)
  273. local inst = Instance.new(instance)
  274. if(properties)then
  275. for i,v in next, properties do
  276. pcall(function() inst[i] = v end)
  277. end
  278. end
  279. inst.Parent = parent
  280. return inst;
  281. end
  282.  
  283.  
  284. ArtificialHB = NewInstance("BindableEvent", script,{
  285. Parent = script,
  286. Name = "Heartbeat",
  287. })
  288.  
  289. script:WaitForChild("Heartbeat")
  290.  
  291. frame = 1 / 60
  292. tf = 0
  293. allowframeloss = false
  294. tossremainder = false
  295. lastframe = tick()
  296. script.Heartbeat:Fire()
  297.  
  298. game:GetService("RunService").Heartbeat:connect(function(s, p)
  299. tf = tf + s
  300. if tf >= frame then
  301. if allowframeloss then
  302. script.Heartbeat:Fire()
  303. lastframe = tick()
  304. else
  305. for i = 1, math.floor(tf / frame) do
  306. script.Heartbeat:Fire()
  307. end
  308. lastframe = tick()
  309. end
  310. if tossremainder then
  311. tf = 0
  312. else
  313. tf = tf - frame * math.floor(tf / frame)
  314. end
  315. end
  316. end)
  317.  
  318. function swait(num)
  319. if num == 0 or num == nil then
  320. ArtificialHB.Event:wait()
  321. else
  322. for i = 0, num do
  323. ArtificialHB.Event:wait()
  324. end
  325. end
  326. end
  327.  
  328.  
  329. function clerp(startCF,endCF,alpha)
  330. return startCF:lerp(endCF, alpha)
  331. end
  332. local sndFromData = function(data,parent)
  333. assert(typeof(data) == 'table',"sndFromData's first argument must be a table!")
  334. local snd = NewInstance("Sound",parent or char,{SoundId = "rbxassetid://"..data.Id,Looped=data.Loop or false,Pitch = data.Pitch or 1,Volume = data.Volume or 1})
  335. if(not snd.Looped)then
  336. snd.Ended:connect(function()
  337. snd:Stop()
  338. snd:destroy()
  339. end)
  340. end
  341. return snd;
  342. end
  343. local FX = function(ID,vol,pitch,parent)
  344. return coroutine.wrap(function()
  345. local snd = NewInstance("Sound",parent or torso, {Pitch=pitch or 1, Volume = vol or 1,SoundId = "rbxassetid://"..ID})
  346. snd:Play()
  347.  
  348. delay(snd.TimeLength+2,function()
  349. snd:Stop()
  350. snd:Destroy()
  351. end)
  352. return snd
  353. end)()
  354. end
  355. function ClearChildrenWithClass(where,class,recursive)
  356. local children = (recursive and where:GetDescendants() or where:GetChildren())
  357. for _,v in next, children do
  358. if(v:IsA(class))then
  359. v:destroy()
  360. end
  361. end
  362. end
  363.  
  364. function UnbindLoops()
  365. pcall(runService.UnbindFromRenderStep,runService,"N_Effects")
  366. pcall(runService.UnbindFromRenderStep,runService,"N_Animations")
  367. end;
  368.  
  369. UnbindLoops() -- Just so if the loops already exist from previously running a script using this template, there's no errors
  370.  
  371. -- Joints, etc
  372. char:WaitForChild'Body Colors':destroy()
  373. swait(30)
  374. for _,v in next, char:children() do
  375. if(v:IsA'BasePart')then
  376. v.Color = Color3.new(0,0,0)
  377. end
  378. end
  379. ClearChildrenWithClass(char,"Clothing")
  380. ClearChildrenWithClass(char,"Decal",true)
  381. if(PlayerSize ~= 1)then
  382. for _,v in next, char:GetDescendants() do
  383. if(v:IsA'BasePart' and v ~= head)then
  384. v.Size = v.Size + V3.N(0,PlayerSize,0)
  385. end
  386. end
  387. end
  388.  
  389.  
  390. -- Model
  391.  
  392. local Music = sndFromData(Sounds.Creep,torso) -- incase u want music
  393. Music.MaxDistance = 150
  394. Music:Play()
  395.  
  396. New = function(Object, Parent, Name, Data)
  397. local Object = Instance.new(Object)
  398. for Index, Value in pairs(Data or {}) do
  399. Object[Index] = Value
  400. end
  401. Object.Parent = Parent
  402. Object.Name = Name
  403. return Object
  404. end
  405.  
  406.  
  407. RightHand = New("Model",char,"RightHand",{})
  408. RightThumb3 = New("Part",RightHand,"RightThumb3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.506300628, 0.122097097, 0.0965319052),CFrame = CFrame.new(-2.88806152, 3.8542099, 40.4611397, -0.556201279, 0.830963016, -0.0114059215, -0.77162528, -0.511289954, 0.37838766, 0.308594495, 0.219260782, 0.925572097),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  409. Mesh = New("SpecialMesh",RightThumb3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  410. RT3 = New("Motor",RightThumb3,"RT3",{Part0 = RightThumb3,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.556202769, -0.77162528, 0.3085953, 0.830965281, -0.511289954, 0.219261378, -0.0114059523, 0.37838766, 0.925574541),C1 = CFrame.new(-0.0785162449, -2.89579725, 0.67080307, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  411. RightThumb1 = New("Part",RightHand,"RightThumb1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.691401064, 0.182097122, 0.146531895),CFrame = CFrame.new(-2.74397039, 4.38701391, 40.2574272, 9.31322575e-10, 0.999929607, -0.0114095779, -0.925635219, 0.00431760168, 0.378392458, 0.378415048, 0.0105611067, 0.925570071),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  412. Mesh = New("SpecialMesh",RightThumb1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  413. RT1 = New("Motor",RightThumb1,"RT1",{Part0 = RightThumb1,Part1 = rarm,C0 = CFrame.new(0, 0, 0, 4.65661287e-10, -0.925635219, 0.378416061, 0.999932289, 0.00431760168, 0.0105611347, -0.0114096077, 0.378392458, 0.925572515),C1 = CFrame.new(0.0632407665, -2.36299324, 0.465457916, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  414. RightThumb2 = New("Part",RightHand,"RightThumb2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.506300628, 0.182097122, 0.146531895),CFrame = CFrame.new(-2.78564548, 4.1021471, 40.3736534, -0.265260637, 0.964103878, -0.0114056403, -0.893617094, -0.241390631, 0.378390133, 0.36205411, 0.110564254, 0.925571144),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  415. Mesh = New("SpecialMesh",RightThumb2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  416. RT2 = New("Motor",RightThumb2,"RT2",{Part0 = RightThumb2,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.265261322, -0.893617094, 0.362055063, 0.964106381, -0.241390631, 0.110564545, -0.011405671, 0.378390133, 0.925573587),C1 = CFrame.new(0.0228948593, -2.64786005, 0.58215332, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  417. RightRing1 = New("Part",RightHand,"RightRing1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.903318703, 0.237910748, 0.191444606),CFrame = CFrame.new(-2.70223427, 4.42609978, 39.6372681, -8.74571682e-16, 0.999929726, -0.01140894, -1, 8.7280996e-16, 4.78783679e-16, -4.85722573e-16, 0.01140894, 0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  418. Mesh = New("SpecialMesh",RightRing1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  419. RR1 = New("Motor",RightRing1,"RR1",{Part0 = RightRing1,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -4.36662425e-16, -1, -2.42861287e-16, 0.999932349, 4.35659617e-16, 0.0114089698, -0.0114089698, 2.42861287e-16, 0.999932349),C1 = CFrame.new(0.0978963375, -2.32390738, -0.155139923, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  420. RightRing2 = New("Part",RightHand,"RightRing2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.237910748, 0.191444606),CFrame = CFrame.new(-2.75668097, 4.02412987, 39.6369858, -0.265260428, 0.964103818, -0.0114074284, -0.964171648, -0.265279233, -2.93453445e-06, -0.00302898232, 0.0109979399, 0.999929607),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  421. Mesh = New("SpecialMesh",RightRing2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  422. RR2 = New("Motor",RightRing2,"RR2",{Part0 = RightRing2,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.265261173, -0.964171648, -0.0030289907, 0.964106381, -0.265279233, 0.0109979697, -0.0114074592, -2.93453445e-06, 0.999932289),C1 = CFrame.new(0.0434498787, -2.72587729, -0.154800415, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  423. RightRing3 = New("Part",RightHand,"RightRing3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.187910721, 0.121444605),CFrame = CFrame.new(-2.9025352, 3.68893909, 39.6421776, -0.556200862, 0.830963194, -0.0114040468, -0.831021726, -0.556240082, -5.50785398e-06, -0.00634796359, 0.00947394595, 0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  424. Mesh = New("SpecialMesh",RightRing3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  425. RR3 = New("Motor",RightRing3,"RR3",{Part0 = RightRing3,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.556202352, -0.831021726, -0.00634798082, 0.830965459, -0.556240082, 0.00947397202, -0.0114040766, -5.50785398e-06, 0.999932349),C1 = CFrame.new(-0.102335691, -3.06106806, -0.147941589, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  426. RightSmall3 = New("Part",RightHand,"RightSmall3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.492783368, 0.139987156, 0.090472132),CFrame = CFrame.new(-2.89148712, 3.86882091, 39.3824615, -0.556200862, 0.830963194, -0.0114040468, -0.831021726, -0.556240082, -5.50785398e-06, -0.00634796359, 0.00947394595, 0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  427. Mesh = New("SpecialMesh",RightSmall3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  428. RS3 = New("Motor",RightSmall3,"RS3",{Part0 = RightSmall3,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.556202352, -0.831021726, -0.00634798082, 0.830965459, -0.556240082, 0.00947397202, -0.0114040766, -5.50785398e-06, 0.999932349),C1 = CFrame.new(-0.0942525864, -2.88118625, -0.40776825, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  429. RightSmall2 = New("Part",RightHand,"RightSmall2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.492783368, 0.177235484, 0.142619774),CFrame = CFrame.new(-2.78283048, 4.11852694, 39.3785858, -0.265260428, 0.964103818, -0.0114074284, -0.964171648, -0.265279233, -2.93453445e-06, -0.00302898232, 0.0109979399, 0.999929607),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  430. Mesh = New("SpecialMesh",RightSmall2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  431. RS2 = New("Motor",RightSmall2,"RS2",{Part0 = RightSmall2,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.265261173, -0.964171648, -0.0030289907, 0.964106381, -0.265279233, 0.0109979697, -0.0114074592, -2.93453445e-06, 0.999932289),C1 = CFrame.new(0.0143530369, -2.63148022, -0.412883759, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  432. RightSmall1 = New("Part",RightHand,"RightSmall1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.672941983, 0.177235484, 0.142619774),CFrame = CFrame.new(-2.74226999, 4.41798067, 39.3787918, -8.74571682e-16, 0.999929726, -0.01140894, -1, 8.7280996e-16, 4.78783679e-16, -4.85722573e-16, 0.01140894, 0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  433. Mesh = New("SpecialMesh",RightSmall1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  434. RS1 = New("Motor",RightSmall1,"RS1",{Part0 = RightSmall1,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -4.36662425e-16, -1, -2.42861287e-16, 0.999932349, 4.35659617e-16, 0.0114089698, -0.0114089698, 2.42861287e-16, 0.999932349),C1 = CFrame.new(0.0549132824, -2.33202648, -0.413139343, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  435. RightMiddle2 = New("Part",RightHand,"RightMiddle2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.237910748, 0.191444606),CFrame = CFrame.new(-2.75668097, 4.02412987, 39.8659973, -0.265260428, 0.964103818, -0.0114074284, -0.964171648, -0.265279233, -2.93453445e-06, -0.00302898232, 0.0109979399, 0.999929607),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  436. Mesh = New("SpecialMesh",RightMiddle2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  437. RM2 = New("Motor",RightMiddle2,"RM2",{Part0 = RightMiddle2,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.265261173, -0.964171648, -0.0030289907, 0.964106381, -0.265279233, 0.0109979697, -0.0114074592, -2.93453445e-06, 0.999932289),C1 = CFrame.new(0.0460636616, -2.72587729, 0.0741958618, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  438. RightMiddle3 = New("Part",RightHand,"RightMiddle3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.187910721, 0.121444605),CFrame = CFrame.new(-2.9025352, 3.68893909, 39.8711929, -0.556200862, 0.830963194, -0.0114040468, -0.831021726, -0.556240082, -5.50785398e-06, -0.00634796359, 0.00947394595, 0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  439. Mesh = New("SpecialMesh",RightMiddle3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  440. RM3 = New("Motor",RightMiddle3,"RM3",{Part0 = RightMiddle3,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.556202352, -0.831021726, -0.00634798082, 0.830965459, -0.556240082, 0.00947397202, -0.0114040766, -5.50785398e-06, 0.999932349),C1 = CFrame.new(-0.099722147, -3.06106806, 0.0810585022, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  441. RightMiddle1 = New("Part",RightHand,"RightMiddle1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.903318703, 0.237910748, 0.191444606),CFrame = CFrame.new(-2.70223451, 4.42609978, 39.8662796, -8.74571682e-16, 0.999929726, -0.01140894, -1, 8.7280996e-16, 4.78783679e-16, -4.85722573e-16, 0.01140894, 0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  442. Mesh = New("SpecialMesh",RightMiddle1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  443. RM1 = New("Motor",RightMiddle1,"RM1",{Part0 = RightMiddle1,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -4.36662425e-16, -1, -2.42861287e-16, 0.999932349, 4.35659617e-16, 0.0114089698, -0.0114089698, 2.42861287e-16, 0.999932349),C1 = CFrame.new(0.100509882, -2.32390738, 0.0738601685, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  444. RightPoint2 = New("Part",RightHand,"RightPoint2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.237910748, 0.191444606),CFrame = CFrame.new(-2.75668097, 4.02412987, 40.1189232, -0.265260428, 0.964103818, -0.0114074284, -0.964171648, -0.265279233, -2.93453445e-06, -0.00302898232, 0.0109979399, 0.999929607),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  445. Mesh = New("SpecialMesh",RightPoint2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  446. RP2 = New("Motor",RightPoint2,"RP2",{Part0 = RightPoint2,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.265261173, -0.964171648, -0.0030289907, 0.964106381, -0.265279233, 0.0109979697, -0.0114074592, -2.93453445e-06, 0.999932289),C1 = CFrame.new(0.0489501953, -2.72587729, 0.327106476, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  447. RightPoint1 = New("Part",RightHand,"RightPoint1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.903318703, 0.237910748, 0.191444606),CFrame = CFrame.new(-2.70223427, 4.42609978, 40.1192055, -8.74571682e-16, 0.999929726, -0.01140894, -1, 8.7280996e-16, 4.78783679e-16, -4.85722573e-16, 0.01140894, 0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  448. Mesh = New("SpecialMesh",RightPoint1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  449. RP1 = New("Motor",RightPoint1,"RP1",{Part0 = RightPoint1,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -4.36662425e-16, -1, -2.42861287e-16, 0.999932349, 4.35659617e-16, 0.0114089698, -0.0114089698, 2.42861287e-16, 0.999932349),C1 = CFrame.new(0.103396654, -2.32390738, 0.326766968, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  450. RightPoint3 = New("Part",RightHand,"RightPoint3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.187910721, 0.121444605),CFrame = CFrame.new(-2.9025352, 3.68893909, 40.1241188, -0.556200862, 0.830963194, -0.0114040468, -0.831021726, -0.556240082, -5.50785398e-06, -0.00634796359, 0.00947394595, 0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  451. Mesh = New("SpecialMesh",RightPoint3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  452. RP3 = New("Motor",RightPoint3,"RP3",{Part0 = RightPoint3,Part1 = rarm,C0 = CFrame.new(0, 0, 0, -0.556202352, -0.831021726, -0.00634798082, 0.830965459, -0.556240082, 0.00947397202, -0.0114040766, -5.50785398e-06, 0.999932349),C1 = CFrame.new(-0.0968353748, -3.06106806, 0.333969116, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  453.  
  454. LeftHand = New("Model",char,"LeftHand",{})
  455. LeftRing3 = New("Part",LeftHand,"LeftRing3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.187910721, 0.121444605),CFrame = CFrame.new(-5.87245798, 3.68893909, 39.6276245, 0.556200862, -0.830963194, 0.0114040468, -0.831021726, -0.556240082, -5.50785398e-06, 0.00634796359, -0.00947394595, -0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  456. Mesh = New("SpecialMesh",LeftRing3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  457. LR3 = New("Motor",LeftRing3,"LR3",{Part0 = LeftRing3,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.556202352, -0.831021726, 0.00634798082, -0.830965459, -0.556240082, -0.00947397202, 0.0114040766, -5.50785398e-06, -0.999932349),C1 = CFrame.new(-0.0719299316, -3.06106091, -0.128562927, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  458. LeftThumb3 = New("Part",LeftHand,"LeftThumb3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.506300628, 0.122097097, 0.0965319052),CFrame = CFrame.new(-5.84988785, 3.84491587, 40.4669914, 0.556201041, -0.830963075, 0.0114058144, -0.763831854, -0.516578019, -0.386921287, 0.327409238, 0.206493899, -0.922037423),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  459. Mesh = New("SpecialMesh",LeftThumb3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  460. LT3 = New("Motor",LeftThumb3,"LT3",{Part0 = LeftThumb3,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.556202531, -0.763831854, 0.327410102, -0.83096534, -0.516578019, 0.206494436, 0.0114058452, -0.386921287, -0.922039866),C1 = CFrame.new(-0.0397815704, -2.90508413, 0.71049118, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  461. LeftThumb1 = New("Part",LeftHand,"LeftThumb1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.691401064, 0.182097122, 0.146531895),CFrame = CFrame.new(-5.99397993, 4.36571169, 40.2342873, 0, -0.999929726, 0.0114097474, -0.92210412, -0.00441493373, -0.386916876, 0.386939973, -0.0105209723, -0.922039211),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  462. Mesh = New("SpecialMesh",LeftThumb1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  463. LT1 = New("Motor",LeftThumb1,"LT1",{Part0 = LeftThumb1,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0, -0.92210412, 0.386941016, -0.999932349, -0.00441493373, -0.0105210003, 0.0114097772, -0.386916876, -0.922041655),C1 = CFrame.new(-0.186520576, -2.38428831, 0.479446411, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  464. LeftThumb2 = New("Part",LeftHand,"LeftThumb2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.506300628, 0.182097122, 0.146531895),CFrame = CFrame.new(-5.95230389, 4.08209562, 40.3535271, 0.265260607, -0.964103758, 0.0114053031, -0.887895226, -0.24887003, -0.386918515, 0.375868112, 0.0925075412, -0.922038496),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  465. Mesh = New("SpecialMesh",LeftThumb2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  466. LT2 = New("Motor",LeftThumb2,"LT2",{Part0 = LeftThumb2,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.265261352, -0.887895226, 0.375869095, -0.964106321, -0.24887003, 0.0925077796, 0.0114053339, -0.386918515, -0.922040939),C1 = CFrame.new(-0.143486023, -2.66790438, 0.598205566, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  467. LeftRing2 = New("Part",LeftHand,"LeftRing2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.237910748, 0.191444606),CFrame = CFrame.new(-6.0183115, 4.02412987, 39.6328354, 0.265260428, -0.964103818, 0.0114074284, -0.964171648, -0.265279233, -2.93453445e-06, 0.00302898232, -0.0109979399, -0.999929607),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  468. Mesh = New("SpecialMesh",LeftRing2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  469. LR2 = New("Motor",LeftRing2,"LR2",{Part0 = LeftRing2,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.265261173, -0.964171648, 0.0030289907, -0.964106381, -0.265279233, -0.0109979697, 0.0114074592, -2.93453445e-06, -0.999932289),C1 = CFrame.new(-0.217714787, -2.72587013, -0.121688843, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  470. LeftRing1 = New("Part",LeftHand,"LeftRing1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.903318703, 0.237910748, 0.191444606),CFrame = CFrame.new(-6.07275867, 4.42609978, 39.6325493, -8.74571682e-16, -0.999929726, 0.01140894, -1, -8.7280996e-16, -4.78783679e-16, -4.85722573e-16, -0.01140894, -0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  471. Mesh = New("SpecialMesh",LeftRing1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  472. LR1 = New("Motor",LeftRing1,"LR1",{Part0 = LeftRing1,Part1 = larm,C0 = CFrame.new(0, 0, 0, -4.36662425e-16, -1, -2.42861287e-16, -0.999932349, -4.35659617e-16, -0.0114089698, 0.0114089698, -2.42861287e-16, -0.999932349),C1 = CFrame.new(-0.272161484, -2.32390022, -0.121353149, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  473. LeftSmall1 = New("Part",LeftHand,"LeftSmall1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.672941983, 0.177235484, 0.142619774),CFrame = CFrame.new(-6.03272295, 4.41798019, 39.3710022, -8.74571682e-16, -0.999929726, 0.01140894, -1, -8.7280996e-16, -4.78783679e-16, -4.85722573e-16, -0.01140894, -0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  474. Mesh = New("SpecialMesh",LeftSmall1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  475. LS1 = New("Motor",LeftSmall1,"LS1",{Part0 = LeftSmall1,Part1 = larm,C0 = CFrame.new(0, 0, 0, -4.36662425e-16, -1, -2.42861287e-16, -0.999932349, -4.35659617e-16, -0.0114089698, 0.0114089698, -2.42861287e-16, -0.999932349),C1 = CFrame.new(-0.235113621, -2.33201981, -0.383338928, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  476. LeftMiddle3 = New("Part",LeftHand,"LeftMiddle3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.187910721, 0.121444605),CFrame = CFrame.new(-5.8724575, 3.68893909, 39.8385582, 0.556200862, -0.830963194, 0.0114040468, -0.831021726, -0.556240082, -5.50785398e-06, 0.00634796359, -0.00947394595, -0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  477. Mesh = New("SpecialMesh",LeftMiddle3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  478. LM3 = New("Motor",LeftMiddle3,"LM3",{Part0 = LeftMiddle3,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.556202352, -0.831021726, 0.00634798082, -0.830965459, -0.556240082, -0.00947397202, 0.0114040766, -5.50785398e-06, -0.999932349),C1 = CFrame.new(-0.0695223808, -3.06106091, 0.0823554993, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  479. LeftSmall3 = New("Part",LeftHand,"LeftSmall3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.492783368, 0.139987156, 0.090472132),CFrame = CFrame.new(-5.88350391, 3.86882091, 39.3673401, 0.556200862, -0.830963194, 0.0114040468, -0.831021726, -0.556240082, -5.50785398e-06, 0.00634796359, -0.00947394595, -0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  480. Mesh = New("SpecialMesh",LeftSmall3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  481. LS3 = New("Motor",LeftSmall3,"LS3",{Part0 = LeftSmall3,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.556202352, -0.831021726, 0.00634798082, -0.830965459, -0.556240082, -0.00947397202, 0.0114040766, -5.50785398e-06, -0.999932349),C1 = CFrame.new(-0.0859460831, -2.88117909, -0.388706207, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  482. LeftPoint2 = New("Part",LeftHand,"LeftPoint2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.237910748, 0.191444606),CFrame = CFrame.new(-6.01831102, 4.02412987, 40.0808601, 0.265260428, -0.964103818, 0.0114074284, -0.964171648, -0.265279233, -2.93453445e-06, 0.00302898232, -0.0109979399, -0.999929607),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  483. Mesh = New("SpecialMesh",LeftPoint2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  484. LP2 = New("Motor",LeftPoint2,"LP2",{Part0 = LeftPoint2,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.265261173, -0.964171648, 0.0030289907, -0.964106381, -0.265279233, -0.0109979697, 0.0114074592, -2.93453445e-06, -0.999932289),C1 = CFrame.new(-0.212601185, -2.72587013, 0.326309204, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  485. LeftPoint1 = New("Part",LeftHand,"LeftPoint1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.903318703, 0.237910748, 0.191444606),CFrame = CFrame.new(-6.07275915, 4.42609978, 40.080574, -8.74571682e-16, -0.999929726, 0.01140894, -1, -8.7280996e-16, -4.78783679e-16, -4.85722573e-16, -0.01140894, -0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  486. Mesh = New("SpecialMesh",LeftPoint1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  487. LP1 = New("Motor",LeftPoint1,"LP1",{Part0 = LeftPoint1,Part1 = larm,C0 = CFrame.new(0, 0, 0, -4.36662425e-16, -1, -2.42861287e-16, -0.999932349, -4.35659617e-16, -0.0114089698, 0.0114089698, -2.42861287e-16, -0.999932349),C1 = CFrame.new(-0.267048836, -2.32390022, 0.326644897, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  488. LeftMiddle1 = New("Part",LeftHand,"LeftMiddle1",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.903318703, 0.237910748, 0.191444606),CFrame = CFrame.new(-6.07275915, 4.42609978, 39.8434753, -8.74571682e-16, -0.999929726, 0.01140894, -1, -8.7280996e-16, -4.78783679e-16, -4.85722573e-16, -0.01140894, -0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  489. Mesh = New("SpecialMesh",LeftMiddle1,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  490. LM1 = New("Motor",LeftMiddle1,"LM1",{Part0 = LeftMiddle1,Part1 = larm,C0 = CFrame.new(0, 0, 0, -4.36662425e-16, -1, -2.42861287e-16, -0.999932349, -4.35659617e-16, -0.0114089698, 0.0114089698, -2.42861287e-16, -0.999932349),C1 = CFrame.new(-0.269754887, -2.32390022, 0.0895614624, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  491. LeftSmall2 = New("Part",LeftHand,"LeftSmall2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.492783368, 0.177235484, 0.142619774),CFrame = CFrame.new(-5.99216223, 4.11852694, 39.3712234, 0.265260428, -0.964103818, 0.0114074284, -0.964171648, -0.265279233, -2.93453445e-06, 0.00302898232, -0.0109979399, -0.999929607),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  492. Mesh = New("SpecialMesh",LeftSmall2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  493. LS2 = New("Motor",LeftSmall2,"LS2",{Part0 = LeftSmall2,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.265261173, -0.964171648, 0.0030289907, -0.964106381, -0.265279233, -0.0109979697, 0.0114074592, -2.93453445e-06, -0.999932289),C1 = CFrame.new(-0.194552898, -2.63147306, -0.383583069, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  494. LeftMiddle2 = New("Part",LeftHand,"LeftMiddle2",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.237910748, 0.191444606),CFrame = CFrame.new(-6.01831198, 4.02412987, 39.8437614, 0.265260428, -0.964103818, 0.0114074284, -0.964171648, -0.265279233, -2.93453445e-06, 0.00302898232, -0.0109979399, -0.999929607),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  495. Mesh = New("SpecialMesh",LeftMiddle2,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  496. LM2 = New("Motor",LeftMiddle2,"LM2",{Part0 = LeftMiddle2,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.265261173, -0.964171648, 0.0030289907, -0.964106381, -0.265279233, -0.0109979697, 0.0114074592, -2.93453445e-06, -0.999932289),C1 = CFrame.new(-0.215307713, -2.72587013, 0.089225769, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  497. LeftPoint3 = New("Part",LeftHand,"LeftPoint3",{BrickColor = BrickColor.new("Institutional white"),Size = Vector3.new(0.661484122, 0.187910721, 0.121444605),CFrame = CFrame.new(-5.87245798, 3.68893909, 40.0756569, 0.556200862, -0.830963194, 0.0114040468, -0.831021726, -0.556240082, -5.50785398e-06, 0.00634796359, -0.00947394595, -0.999929726),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0,0,0),})
  498. Mesh = New("SpecialMesh",LeftPoint3,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  499. LP3 = New("Motor",LeftPoint3,"LP3",{Part0 = LeftPoint3,Part1 = larm,C0 = CFrame.new(0, 0, 0, 0.556202352, -0.831021726, 0.00634798082, -0.830965459, -0.556240082, -0.00947397202, 0.0114040766, -5.50785398e-06, -0.999932349),C1 = CFrame.new(-0.0668168068, -3.06106091, 0.319438934, 0.999933541, -3.70949382e-11, 0.011412913, 3.63313581e-11, 1, 6.71462261e-11, -0.011412913, -6.67270544e-11, 0.999933541),})
  500.  
  501. EyeModel = New("Model",char,"Model",{})
  502. Eye = New("Part",EyeModel,"Eye",{BrickColor = BrickColor.new("Bright violet"),Material = Enum.Material.Neon,Size = Vector3.new(0.427516103, 0.102584302, 0.371444672),CFrame = CFrame.new(-4.31106234, 9.50574684, 39.2028084, -1.44810004e-08, -6.24196239e-15, -1, -1, -8.88213606e-07, -1.44810004e-08, 8.88213606e-07, 1, 6.24196112e-15),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.419608, 0.196078, 0.486275),})
  503. Mesh = New("SpecialMesh",Eye,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  504. Part = New("Part",EyeModel,"Part",{BrickColor = BrickColor.new("Really black"),Size = Vector3.new(0.427516103, 0.132767469, 0.155850768),CFrame = CFrame.new(-4.31104565, 9.50574684, 39.2092743, -4.34430021e-08, -5.73125531e-14, -1, -1, -2.66464076e-06, -4.34430021e-08, 2.66464076e-06, 1, 5.73125531e-14),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.0666667, 0.0666667, 0.0666667),})
  505. Mesh = New("SpecialMesh",Part,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  506. mot = New("Motor",Part,"mot",{Part0 = Part,Part1 = Eye,C0 = CFrame.new(0, 0, 0, -1.44810004e-08, -1, 8.88213606e-07, -6.24196239e-15, -8.88213606e-07, 1, -1, -1.44810004e-08, 6.24196112e-15),C1 = CFrame.new(0, 0.00646591187, -1.66893005e-05, -1.44810004e-08, -1, 8.88213606e-07, -6.24196239e-15, -8.88213606e-07, 1, -1, -1.44810004e-08, 6.24196112e-15),})
  507. -- joints
  508. local LS = NewInstance('Motor',char,{Part0=torso,Part1=larm,C0 = CF.N(-1.5,0.5,0),C1 = CF.N(0,.5,0)})
  509. local RS = NewInstance('Motor',char,{Part0=torso,Part1=rarm,C0 = CF.N(1.5,0.5,0),C1 = CF.N(0,.5,0)})
  510. local NK = NewInstance('Motor',char,{Part0=torso,Part1=head,C0 = CF.N(0,torso.Size.y/2+.5,0)})
  511. local LH = NewInstance('Motor',char,{Part0=torso,Part1=lleg,C0 = CF.N(-.5,-1 - PlayerSize,0),C1 = CF.N(0,1,0)})
  512. local RH = NewInstance('Motor',char,{Part0=torso,Part1=rleg,C0 = CF.N(.5,-1 - PlayerSize,0),C1 = CF.N(0,1,0)})
  513. local RJ = NewInstance('Motor',char,{Part0=root,Part1=torso})
  514. local EW = NewInstance('Motor',char,{Part0=head,Part1=Eye,C0=CF.N(0,0,-.6)*CF.A(M.R(90),M.R(90),0)})
  515.  
  516. for _,v in next, LeftHand:GetDescendants() do
  517. if(v:IsA'JointInstance')then
  518. v.C0 = v.C0 * v.C1:inverse()
  519. v.C1 = CF.N()
  520. end
  521. end
  522. for _,v in next, RightHand:GetDescendants() do
  523. if(v:IsA'JointInstance')then
  524. v.C0 = v.C0 * v.C1:inverse()
  525. v.C1 = CF.N()
  526. end
  527. end
  528.  
  529. --local HW = NewInstance('Motor',char,{Part0=rarm,Part1=Handle,C0 = CF.N(0,.5,0)})
  530. hum.CameraOffset = V3.N(0,PlayerSize/2,0)
  531.  
  532. -- Default C0s
  533. local LSD=LS.C0
  534. local RSD=RS.C0
  535. local HD=NK.C0
  536. local TD=RJ.C0
  537. local LHD=LH.C0
  538. local RHD=RH.C0
  539.  
  540. -- Check State
  541. function CheckState(rPart)
  542. if(rPart.Velocity.y > .35 and hum:GetState() == Enum.HumanoidStateType.Freefall)then
  543. return 'Jump';
  544. elseif(rPart.Velocity.y < -.35 and hum:GetState() == Enum.HumanoidStateType.Freefall)then
  545. return 'Fall';
  546. elseif(math.abs(rPart.Velocity.x) > 2 or math.abs(rPart.Velocity.z) > 2 and hum:GetState() ~= Enum.HumanoidStateType.Freefall)then
  547. return 'Walk';
  548. end
  549. return 'Idle';
  550. end
  551.  
  552. -- Effect Functions
  553. function SphereFX(duration,color,scale,pos,endScale)
  554. local rng = Instance.new("Part", char)
  555. rng.Anchored = true
  556. rng.BrickColor = color
  557. rng.CanCollide = false
  558. rng.FormFactor = 3
  559. rng.Name = "Ring"
  560. rng.Size = Vector3.new(1,1,1)
  561. rng.Transparency = 0
  562. rng.TopSurface = 0
  563. rng.BottomSurface = 0
  564. rng.CFrame = pos
  565. local rngm = Instance.new("SpecialMesh", rng)
  566. rngm.MeshType = "Sphere"
  567. rngm.Scale = scale
  568. table.insert(Effects, {Frame = 0, Effect="Sphere", Duration = duration or 30, Part=rng, Mesh = rngm, Scale = scale, EndScale = endScale or scale*2, Position = pos})
  569. return rng
  570. end
  571.  
  572. function BlastFX(duration,color,scale,pos,endScale)
  573. local rng = Instance.new("Part", char)
  574. rng.Anchored = true
  575. rng.BrickColor = color
  576. rng.CanCollide = false
  577. rng.FormFactor = 3
  578. rng.Name = "Ring"
  579. rng.Size = Vector3.new(1,1,1)
  580. rng.Transparency = 0
  581. rng.TopSurface = 0
  582. rng.BottomSurface = 0
  583. rng.CFrame = pos
  584. local rngm = Instance.new("SpecialMesh", rng)
  585. rngm.MeshType = "FileMesh"
  586. rngm.MeshId = 'rbxassetid://20329976'
  587. rngm.Scale = scale
  588. table.insert(Effects, {Frame = 0, Effect="Sphere", Duration = duration or 30, Part=rng, Mesh = rngm, Scale = scale, EndScale = endScale or scale*2, Position = pos})
  589. return rng
  590. end
  591.  
  592. function BlockFX(duration,color,scale,pos,endScale)
  593. local rng = Instance.new("Part", char)
  594. rng.Anchored = true
  595. rng.BrickColor = color
  596. rng.CanCollide = false
  597. rng.FormFactor = 3
  598. rng.Name = "Ring"
  599. rng.Size = Vector3.new(1,1,1)
  600. rng.Transparency = 0
  601. rng.TopSurface = 0
  602. rng.BottomSurface = 0
  603. rng.CFrame = pos
  604. local rngm = Instance.new("BlockMesh", rng)
  605. rngm.Scale = scale
  606. table.insert(Effects, {Frame = 0, Effect="Block", Duration = duration or 30, Part=rng, Mesh = rngm, Scale = scale, EndScale = endScale or scale*2, Position = pos})
  607. return rng
  608. end
  609.  
  610.  
  611. function BloodDrop(pos,dir,maxsize)
  612. local owo = NewInstance("Part",char,{Material=BloodMaterial,BrickColor=BloodColor,Shape=Enum.PartType.Ball,Size=V3.N(.25,.25,.25), CanCollide = false})
  613. owo.CFrame=CF.N(pos,dir)
  614. local bv = Instance.new("BodyVelocity",owo)
  615. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  616. 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
  617. bv.Name = "MOVE"
  618. game:service'Debris':AddItem(bv,0.05)
  619. local touch
  620. touch = owo.Touched:connect(function(hit)
  621. if(hit.Anchored==true)then
  622. touch:disconnect()
  623. BloodPuddle(owo.Position+V3.N(0,1,0),10,maxsize,owo)
  624. owo:destroy()
  625. end
  626. end)
  627. end
  628. function BloodPuddle(position,range,maxSize,where)
  629. local hit, pos, norm = workspace:FindPartOnRayWithIgnoreList(Ray.new(
  630. position,CF.N(position,position+V3.N(0,-1,0)).lookVector * range
  631. ),{where,char},false,true)
  632. if(hit)then
  633. if(BloodPuddles[hit])then
  634. BloodPuddles[hit].Frame = 0
  635. if(hit:FindFirstChild'CylinderMesh' and hit.CylinderMesh.Scale.Z < BloodPuddles[hit].MaxSize)then
  636. hit.CylinderMesh.Scale = hit.CylinderMesh.Scale + V3.N(.1,0,.1)
  637. end
  638. else
  639. local Puddle = NewInstance('Part',workspace,{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'})
  640. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  641. BloodPuddles[Puddle] = {MaxSize=maxSize or 7,Frame=0}
  642. end
  643. end
  644. end
  645.  
  646. function AcidDrop(pos,dir,maxsize)
  647. print'acid'
  648. local owo = NewInstance("Part",char,{Material=Enum.Material.Glass,BrickColor=BrickColor.new'Royal purple',Shape=Enum.PartType.Ball,Size=V3.N(.4,.4,.4), CanCollide = false})
  649. owo.CFrame=CF.N(pos,dir)
  650. local bv = Instance.new("BodyVelocity",owo)
  651. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  652. 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
  653. bv.Name = "MOVE"
  654. game:service'Debris':AddItem(bv,0.05)
  655. local touch
  656. touch = owo.Touched:connect(function(hit)
  657. if(hit.Anchored==true and hit.Parent ~= char and hit.CanCollide)then
  658. touch:disconnect()
  659. AcidPuddle(owo.Position+V3.N(0,1,0),10,maxsize,owo)
  660. owo:destroy()
  661. end
  662. end)
  663. end
  664. function AcidPuddle(position,range,maxSize,where)
  665. local hit, pos, norm = workspace:FindPartOnRayWithIgnoreList(Ray.new(
  666. position,CF.N(position,position+V3.N(0,-1,0)).lookVector * range
  667. ),{where,char},false,true)
  668. if(hit)then
  669. if(not BloodPuddles[hit] and hit.Anchored and hit.CanCollide)then
  670. Puddle = NewInstance('Part',workspace,{Material=Enum.Material.Glass,BrickColor=BrickColor.new'Royal purple',Size=V3.N(6,.05,6),CFrame=CF.N(pos,pos+norm)*CF.A(90*M.P/180,0,0),Anchored=true,CanCollide=false,Archivable=false,Locked=true,Name='BloodPuddle'})
  671. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  672. coroutine.wrap(function()
  673. local Puddle = Puddle
  674. swait(60*5)
  675. for i = 0, 1, .05 do
  676. Puddle.Transparency = i
  677. Puddle.Size = Puddle.Size - V3.N(.29,0,.29)
  678. swait()
  679. end
  680. Puddle:destroy()
  681. end)()
  682. end
  683. end
  684. end
  685.  
  686. function LaserFX(duration,color,cframe,scale,endScale)
  687. local rng = Instance.new("Part", char)
  688. rng.Anchored = true
  689. rng.BrickColor = color
  690. rng.CanCollide = false
  691. rng.FormFactor = 3
  692. rng.Material = Enum.Material.Neon
  693. rng.Name = "Laser"
  694. rng.Size = Vector3.new(.5,.5,.5)
  695. rng.Transparency = 0
  696. rng.TopSurface = 0
  697. rng.BottomSurface = 0
  698. rng.CFrame = cframe
  699. local rngm = Instance.new("CylinderMesh", rng)
  700. rngm.Scale = scale
  701. table.insert(Effects, {Frame = 0, Effect="Sphere", Duration = duration or 30, Part=rng, Mesh = rngm, Scale = scale, EndScale = endScale or scale*2, Position = cframe})
  702. return rng
  703. end
  704.  
  705. function ShatterFX(duration,color,scale,cframe)
  706. local rng = Instance.new("Part", char)
  707. rng.Anchored = true
  708. rng.BrickColor = color
  709. rng.CanCollide = false
  710. rng.FormFactor = 3
  711. rng.Name = "Ring"
  712. rng.Size = Vector3.new(1,1,1)
  713. rng.Transparency = 0
  714. rng.TopSurface = 0
  715. rng.BottomSurface = 0
  716. rng.CFrame = cframe * CF.fEA(M.RNG(-50, 50), M.RNG(-50, 50), M.RNG(-50, 50))
  717. local rngm = Instance.new("SpecialMesh", rng)
  718. rngm.Scale = scale
  719. rngm.MeshType = "Sphere"
  720. table.insert(Effects, {Frame = 0, Effect="Shatter", Duration = duration or 30, Part=rng, Mesh = rngm, Scale = scale,Position=rng.CFrame})
  721. end
  722.  
  723. function RingFX(duration,color,scale,pos,endScale)
  724. local type = type
  725. local rng = Instance.new("Part", char)
  726. rng.Anchored = true
  727. rng.BrickColor = color
  728. rng.CanCollide = false
  729. rng.FormFactor = 3
  730. rng.Name = "Ring"
  731. rng.Size = Vector3.new(1,1,1)
  732. rng.Transparency = 0
  733. rng.TopSurface = 0
  734. rng.BottomSurface = 0
  735. rng.CFrame = pos
  736. local rngm = Instance.new("SpecialMesh", rng)
  737. rngm.MeshId = "rbxassetid://3270017"
  738. rngm.Scale = scale
  739. table.insert(Effects, {Frame = 0, Effect="Sphere", Duration = duration or 30, Part=rng, Mesh = rngm, Scale = scale, EndScale = endScale or scale*2, Position = pos})
  740. return rng
  741. end
  742.  
  743. function Shoot(StartCF,EndCF,Spread,Speed,Num,Color,Drop,MinDamage,MaxDamage)
  744. local Spread = V3.N(M.RNG(-Spread,Spread),M.RNG(-Spread,Spread),M.RNG(-Spread,Spread))
  745. local Start = StartCF.p
  746. local End = EndCF.p
  747. local SpreadPos = End + Spread
  748. local Look = CF.N((Start + SpreadPos) / 2, SpreadPos)
  749. local Count = Num
  750. spawn(function()
  751. repeat
  752. wait()
  753. local hit, pos = workspace:findPartOnRay(Ray.new(
  754. Start,(Look.lookVector).unit * Speed
  755. ),char,false,true)
  756. local dist = (Start-pos).magnitude
  757. local yScale = dist * (Speed / (Speed/2))
  758. local aa = CF.N((Start + pos) / 2, pos) * CFrame.Angles(1.57, 0, 0)
  759. LaserFX(25,Color,aa,Vector3.new(1,yScale,1),Vector3.new(-1,yScale,-1))
  760. Start = Start + Look.lookVector * Speed
  761. Look = Look * CF.A(M.R(Drop or -1),0,0)
  762. Count = Count - 1
  763.  
  764. if(hit)then
  765. Count = 0
  766. MagniDamage(pos,10,MinDamage,MaxDamage,0,'Normal')
  767. end
  768. if(Count <= 0)then
  769. local sphere = SphereFX(25,Color,Vector3.new(5,5,5),CF.N(pos),Vector3.new(15,15,15))
  770. local ring = RingFX(25,Color,Vector3.new(6,6,6),CF.N(pos) * CF.A(0,M.R(90),0) * CF.A(M.R(M.RNG(-360,360)),M.R(M.RNG(-360,360)),M.R(M.RNG(-360,360))),Vector3.new(16,16,16))
  771. end
  772. until Count <= 0
  773. end)
  774. end
  775.  
  776. -- Effect Loop
  777.  
  778. runService:BindToRenderStep("N_Effects",Enum.RenderPriority.Character.Value + 2,function()
  779. for _,data in next, Effects do
  780. local frame,effect,duration = data.Frame,data.Effect,data.Duration
  781. local transparency = (frame / duration)
  782. local opacity = 1 - transparency
  783. if(frame > duration)then
  784. Effects[_] = nil
  785. end
  786. frame = frame + 1
  787. data.Frame = frame
  788. if(effect == 'Sphere')then
  789. local Part,Mesh,Scale,CF,eScale = data.Part,data.Mesh,data.Scale,data.Position,data.EndScale
  790. Mesh.Scale = Mesh.Scale:lerp(eScale, transparency/6)
  791. Part.Transparency = transparency
  792. if(frame > duration)then
  793. Part:destroy()
  794. end
  795. elseif(effect == 'Shatter')then
  796. local Part,Mesh,Scale,Position,Thingie,Thingie2,Inc = data.Part,
  797. data.Mesh,
  798. data.Scale,
  799. data.Position,
  800. (data.Thingie or 0),
  801. (data.Thingie2 or M.RNG(50, 100) / 100),
  802. (data.Inc or M.RNG() - M.RNG())
  803. Part.Transparency = transparency
  804. Position = Position * CF.N(0,Thingie2,0)
  805. Part.CFrame = Position * CF.fEA(Thingie,0,0)
  806. Thingie = Thingie + Inc
  807.  
  808. data.Position = Position
  809. data.Thingie = Thingie
  810. data.Thingie2 = Thingie2
  811. data.Inc = Inc
  812. elseif(effect == 'Block')then
  813. local Part,Mesh,Scale,CF,eScale = data.Part,data.Mesh,data.Scale,data.Position,data.EndScale
  814. Mesh.Scale = Mesh.Scale:lerp(eScale, transparency/6)
  815. Part.Transparency = transparency
  816. Part.CFrame = CF * CFrame.Angles(M.R(M.RNG(-360,360)),M.R(M.RNG(-360,360)),M.R(M.RNG(-360,360)))
  817. if(frame > duration)then
  818. Part:destroy()
  819. end
  820. end
  821. end
  822. for puddle,data in next, BloodPuddles do
  823. if(puddle.Transparency > 0.9)then
  824. BloodPuddles[puddle] = nil
  825. puddle:destroy()
  826. end
  827. data.Frame = data.Frame + 1
  828. if(data.Frame > 105)then
  829. local trans = (data.Frame-105)/90
  830. puddle.Transparency = trans
  831. if(puddle:FindFirstChild'CylinderMesh' and puddle.CylinderMesh.Scale.Z > 0)then
  832. puddle.CylinderMesh.Scale = puddle.CylinderMesh.Scale-V3.N(.1,0,.1)
  833. end
  834. else
  835. puddle.Transparency = 0
  836. end
  837. end
  838. if(Puddle and Puddle.Parent)then
  839. for _,v in next, workspace:children() do
  840. if(v:IsA'Model')then
  841. local h = v:FindFirstChild'Head'
  842. local hu = v:FindFirstChildOfClass'Humanoid'
  843. if(h and h:IsA'BasePart' and hu)then
  844. if((h.CFrame.p-Puddle.CFrame.p).magnitude < 7)then
  845. DealDamage(v,3,6,1,"Freeze")
  846. end
  847. end
  848. end
  849. end
  850. end
  851. end)
  852.  
  853. -- Animation Loop
  854. runService:BindToRenderStep("N_Animations",Enum.RenderPriority.Character.Value + 1,function()
  855. sine=sine+change
  856. hum.WalkSpeed = WalkSpeed
  857. local hitfloor,posfloor = workspace:FindPartOnRay(Ray.new(root.CFrame.p,((CFrame.new(root.Position,root.Position - Vector3.new(0,1,0))).lookVector).unit * 8), char)
  858. local State = (not hitfloor and root.Velocity.y < -1 and "Fall" or not hitfloor and root.Velocity.y > 1 and "Jump" or hitfloor and (math.abs(root.Velocity.x) > 1 or math.abs(root.Velocity.z) > 1) and "Walk" or hitfloor and "Idle")
  859.  
  860.  
  861. local wsVal = 6 / (hum.WalkSpeed / 16)
  862. local exactVel = CFrame.new(root.CFrame:vectorToObjectSpace(root.Velocity))
  863. if(State == 'Walk')then
  864. change = 2/3
  865. RH.C1 = clerp(RH.C1,CF.N(0,0.8-.25*M.S(sine/wsVal),-M.R(15+65*M.C(sine/wsVal)))*CF.A(M.R(15+65*M.C(sine/wsVal)),0,0)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),.2*(hum.WalkSpeed/16))
  866. LH.C1 = clerp(LH.C1,CF.N(0,0.8+.25*M.S(sine/wsVal),M.R(15+65*M.C(sine/wsVal)))*CF.A(M.R(15+65*-M.C(sine/wsVal)),0,0)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),.2*(hum.WalkSpeed/16))
  867. else
  868. RH.C1 = clerp(RH.C1,CF.N(0,1,0),.1)
  869. LH.C1 = clerp(LH.C1,CF.N(0,1,0),.1)
  870. end
  871. if(neutralAnims)then
  872. if(State == 'Idle')then
  873. -- Idle anim
  874. local Alpha = .2
  875. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00653425185, -0.367415309, -0.572485209, 0.999995291, -0.00257562893, -0.000296123326, 0.00257599982, 0.974187136, 0.22572732, -0.000292910263, -0.225727022, 0.974189222),Alpha)
  876. LH.C0 = clerp(LH.C0,CFrame.new(-0.503953636, -3.23575497, -0.0791287646, 1, 0.000350067159, -1.45565718e-06, -0.00034994795, 0.999533594, -0.0305390507, -9.23592597e-06, 0.0305390656, 0.999533653)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),Alpha)
  877. RH.C0 = clerp(RH.C0,CFrame.new(0.49835059, -3.15593815, -0.187087312, 0.999996603, 0.00258975197, -0.000121647492, -0.00257564802, 0.987003267, -0.160680294, -0.000296056271, 0.1606801, 0.987006545)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),Alpha)
  878. LS.C0 = clerp(LS.C0,CFrame.new(-1.43127036, 0.451340854, -0.462174714, 0.997353315, 0.0727057606, -0.000517063774, -0.0693833008, 0.949603021, -0.305679858, -0.0217336789, 0.304906696, 0.952134252)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),Alpha)
  879. RS.C0 = clerp(RS.C0,CFrame.new(1.41581738, 0.455256999, -0.457439601, 0.996124089, -0.0879578516, -0.000504340976, 0.0835438147, 0.947897792, -0.307425261, 0.0275185313, 0.306191564, 0.95157218)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),Alpha)
  880. NK.C0 = clerp(NK.C0,CFrame.new(-1.90670835e-06, 2.74999475, -7.62939453e-06, 1, 2.32830644e-10, -9.31322575e-10, 2.32830644e-10, 1, 0, -9.31322575e-10, 0, 1)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),Alpha)
  881. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  882. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  883. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  884. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  885. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  886. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  887. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  888. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  889. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  890. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  891. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  892. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  893. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  894. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  895. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  896. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  897. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  898. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  899. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  900. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  901. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  902. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  903. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  904. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  905. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  906. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  907. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  908. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  909. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  910. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  911. elseif(State == 'Walk')then
  912. -- Walk anim
  913. local Alpha = .2*(hum.WalkSpeed/16)
  914.  
  915. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00653425185, -0.367415309+.2*M.C(sine/wsVal), -0.572485209, 0.999995291, -0.00257562893, -0.000296123326, 0.00257599982, 0.974187136, 0.22572732, -0.000292910263, -0.225727022, 0.974189222),Alpha)
  916. LH.C0 = clerp(LH.C0,CFrame.new(-0.503953636, -3.23575497-.2*M.C(sine/wsVal), -0.0791287646, 1, 0.000350067159, -1.45565718e-06, -0.00034994795, 0.999533594, -0.0305390507, -9.23592597e-06, 0.0305390656, 0.999533653)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),Alpha)
  917. RH.C0 = clerp(RH.C0,CFrame.new(0.49835059, -3.15593815-.2*M.C(sine/wsVal), -0.187087312, 0.999996603, 0.00258975197, -0.000121647492, -0.00257564802, 0.987003267, -0.160680294, -0.000296056271, 0.1606801, 0.987006545)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),Alpha)
  918. LS.C0 = clerp(LS.C0,CFrame.new(-1.43127036, 0.451340854+M.R(0+25*-M.C(sine/wsVal)), -0.462174714-M.R(0+25*-M.C(sine/wsVal)), 0.997353315, 0.0727057606, -0.000517063774, -0.0693833008, 0.949603021, -0.305679858, -0.0217336789, 0.304906696, 0.952134252)*CF.A(M.R(0+25*-M.C(sine/wsVal)),0,0),Alpha)
  919. RS.C0 = clerp(RS.C0,CFrame.new(1.41581738, 0.455256999+M.R(0+25*M.C(sine/wsVal)), -0.457439601-M.R(0+25*M.C(sine/wsVal)), 0.996124089, -0.0879578516, -0.000504340976, 0.0835438147, 0.947897792, -0.307425261, 0.0275185313, 0.306191564, 0.95157218)*CF.A(M.R(0+25*M.C(sine/wsVal)),0,0),Alpha)
  920. NK.C0 = clerp(NK.C0,CFrame.new(-1.90670835e-06, 2.74999475, -7.62939453e-06, 1, 2.32830644e-10, -9.31322575e-10, 2.32830644e-10, 1, 0, -9.31322575e-10, 0, 1)*CF.A(M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7)),M.R(M.RNG(-7,7))),Alpha)
  921. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  922. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  923. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  924. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  925. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  926. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  927. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  928. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  929. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  930. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  931. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  932. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  933. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  934. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  935. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  936. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  937. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  938. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  939. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  940. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  941. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  942. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  943. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  944. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  945. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  946. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  947. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  948. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  949. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  950. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  951. elseif(State == 'Jump' or State == 'Fall')then
  952. RJ.C0 = clerp(RJ.C0,CFrame.new(0, 0, 0, 0.999989688, 1.3632216e-15, 0, 1.3632216e-15, 1, 2.56739074e-16, 0, 2.56739074e-16, 0.999989688),0.3)
  953. LH.C0 = clerp(LH.C0,CFrame.new(-0.499998271, -2.86761332, -0.423956037, 0.999994934, -3.7997961e-07, 1.88313425e-06, 3.7084294e-11, 0.980262458, 0.197700962, -1.92131847e-06, -0.197699949, 0.980257392),0.3)
  954. RH.C0 = clerp(RH.C0,CFrame.new(0.500029027, -1.90648031, -0.953526855, 0.999994934, 2.6863534e-05, -3.10875475e-05, 3.70871632e-11, 0.756630182, 0.653843105, 4.1087158e-05, -0.653839707, 0.756626308),0.3)
  955. LS.C0 = clerp(LS.C0,CFrame.new(-1.38248646, 0.493521869, -1.50245069e-05, 0.993936718, 0.109907441, -3.99537385e-07, -0.109908015, 0.993941784, -1.59255274e-06, 2.21654773e-07, 1.62678771e-06, 0.999994814),0.3)
  956. RS.C0 = clerp(RS.C0,CFrame.new(1.41221583, 0.513182044, 6.27265626e-06, 0.994822443, -0.101577446, -8.69855285e-07, 0.101577975, 0.994827569, -2.39775818e-06, 1.10827386e-06, 2.29699071e-06, 0.999994814),0.3)
  957. NK.C0 = clerp(NK.C0,CFrame.new(-3.79963094e-05, 2.73334718, -0.0034930706, 0.999994874, -1.12627167e-05, -4.15872782e-05, 3.7087295e-11, 0.965229452, -0.261404276, 4.30857763e-05, 0.261402935, 0.965224504),0.3)
  958. RT3.C0 = clerp(RT3.C0,CFrame.new(-2.48913026, -1.5558306, 0.47474587, -0.552640975, -0.771628797, 0.314923763, 0.833418965, -0.511285722, 0.209760875, -0.000841505826, 0.378385961, 0.925647557),0.3)
  959. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366272, -0.0526191629, 0.463347465, 0.00431827921, -0.925636768, 0.378388733, 0.999990344, 0.00431696139, -0.000851770863, -0.000845058821, 0.378388762, 0.925646424),0.3)
  960. RT2.C0 = clerp(RT2.C0,CFrame.new(-2.57271767, -0.719182789, 0.463071942, -0.261110842, -0.893618882, 0.365056634, 0.965308487, -0.24138996, 0.0995513573, -0.000839968212, 0.37838617, 0.925647497),0.3)
  961. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32390428, -0.097856693, 0.155154705, 2.66222014e-06, -1, -3.41096893e-08, 1, 2.65463132e-06, -4.00096178e-06, 4.00003046e-06, -3.3993274e-08, 1),0.3)
  962. RR2.C0 = clerp(RR2.C0,CFrame.new(-2.61669111, -0.764986992, 0.154791445, -0.265275598, -0.964172542, -1.34762377e-06, 0.964172661, -0.265275627, -7.10878521e-06, 6.49597496e-06, -3.18500679e-06, 1),0.3)
  963. RR3.C0 = clerp(RR3.C0,CFrame.new(-2.60074496, -1.61762106, 0.147935733, -0.556236446, -0.83102411, 1.56415626e-06, 0.83102411, -0.556236386, -1.0849908e-05, 9.88598913e-06, -4.73484397e-06, 1),0.3)
  964. RS3.C0 = clerp(RS3.C0,CFrame.new(-2.44675827, -1.52428663, 0.407759368, -0.556236446, -0.83102411, 1.56415626e-06, 0.83102411, -0.556236386, -1.0849908e-05, 9.88598913e-06, -4.73484397e-06, 1),0.3)
  965. RS2.C0 = clerp(RS2.C0,CFrame.new(-2.53339791, -0.711884439, 0.41287148, -0.265275598, -0.964172542, -1.34762377e-06, 0.964172661, -0.265275627, -7.10878521e-06, 6.49597496e-06, -3.18500679e-06, 1),0.3)
  966. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202195, -0.0548965856, 0.413165748, 2.66222014e-06, -1, -3.41096893e-08, 1, 2.65463132e-06, -4.00096178e-06, 4.00003046e-06, -3.3993274e-08, 1),0.3)
  967. RM2.C0 = clerp(RM2.C0,CFrame.new(-2.61600137, -0.767494082, -0.0741972104, -0.265275598, -0.964172542, -1.34762377e-06, 0.964172661, -0.265275627, -7.10878521e-06, 6.49597496e-06, -3.18500679e-06, 1),0.3)
  968. RM3.C0 = clerp(RM3.C0,CFrame.new(-2.59929419, -1.61978698, -0.081060566, -0.556236446, -0.83102411, 1.56415626e-06, 0.83102411, -0.556236386, -1.0849908e-05, 9.88598913e-06, -4.73484397e-06, 1),0.3)
  969. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.32390523, -0.100487918, -0.0738377646, 2.66222014e-06, -1, -3.41096893e-08, 1, 2.65463132e-06, -4.00096178e-06, 4.00003046e-06, -3.3993274e-08, 1),0.3)
  970. RP2.C0 = clerp(RP2.C0,CFrame.new(-2.61523294, -0.770287812, -0.327115476, -0.265275598, -0.964172542, -1.34762377e-06, 0.964172661, -0.265275627, -7.10878521e-06, 6.49597496e-06, -3.18500679e-06, 1),0.3)
  971. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32390428, -0.103370823, -0.326767474, 2.66222014e-06, -1, -3.41096893e-08, 1, 2.65463132e-06, -4.00096178e-06, 4.00003046e-06, -3.3993274e-08, 1),0.3)
  972. RP3.C0 = clerp(RP3.C0,CFrame.new(-2.59769011, -1.62218094, -0.333978832, -0.556236446, -0.83102411, 1.56415626e-06, 0.83102411, -0.556236386, -1.0849908e-05, 9.88598913e-06, -4.73484397e-06, 1),0.3)
  973. LR3.C0 = clerp(LR3.C0,CFrame.new(-2.50364566, -1.76268733, -0.128605217, 0.556235969, -0.831024528, -2.17696652e-06, -0.831024587, -0.556235909, 9.77423042e-06, -9.33278352e-06, -3.62750143e-06, -1),0.3)
  974. LT3.C0 = clerp(LT3.C0,CFrame.new(-2.42466164, -1.68733382, -0.468865991, 0.559901595, -0.763835311, 0.321038753, -0.828558743, -0.516576529, 0.215961084, 0.000882378779, -0.386916399, -0.922114372),0.3)
  975. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.38324189, -0.197767839, -0.480271369, 0.00441723922, -0.922106087, 0.386912167, -0.999989986, -0.00441567414, 0.000892929733, 0.000885100104, -0.386912197, -0.92211616),0.3)
  976. LT2.C0 = clerp(LT2.C0,CFrame.new(-2.55308509, -0.864325583, -0.480534732, 0.269532174, -0.887898088, 0.372813046, -0.962990999, -0.248868316, 0.103503212, 0.000881056301, -0.386913002, -0.922115803),0.3)
  977. LR2.C0 = clerp(LR2.C0,CFrame.new(-2.57038689, -0.933300614, -0.121713795, 0.265275717, -0.964172661, -1.28813554e-06, -0.964172781, -0.265275747, 5.76023012e-06, -5.89434057e-06, -2.8591603e-07, -1),0.3)
  978. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390785, -0.272437274, -0.12138094, -1.29211003e-07, -1.00000012, 1.16415322e-10, -1.00000012, 1.36600647e-07, 4.00003046e-06, -4.00096178e-06, 0, -1),0.3)
  979. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202553, -0.23541078, -0.383358955, -1.29211003e-07, -1.00000012, 1.16415322e-10, -1.00000012, 1.36600647e-07, 4.00003046e-06, -4.00096178e-06, 0, -1),0.3)
  980. LM3.C0 = clerp(LM3.C0,CFrame.new(-2.50498247, -1.76070154, 0.0823208541, 0.556235969, -0.831024528, -2.17696652e-06, -0.831024587, -0.556235909, 9.77423042e-06, -9.33278352e-06, -3.62750143e-06, -1),0.3)
  981. LS3.C0 = clerp(LS3.C0,CFrame.new(-2.34636188, -1.67428231, -0.388740361, 0.556235969, -0.831024528, -2.17696652e-06, -0.831024587, -0.556235909, 9.77423042e-06, -9.33278352e-06, -3.62750143e-06, -1),0.3)
  982. LP2.C0 = clerp(LP2.C0,CFrame.new(-2.57174277, -0.928374887, 0.326284289, 0.265275717, -0.964172661, -1.28813554e-06, -0.964172781, -0.265275747, 5.76023012e-06, -5.89434057e-06, -2.8591603e-07, -1),0.3)
  983. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390833, -0.267327368, 0.326617122, -1.29211003e-07, -1.00000012, 1.16415322e-10, -1.00000012, 1.36600647e-07, 4.00003046e-06, -4.00096178e-06, 0, -1),0.3)
  984. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390881, -0.27002722, 0.0895336792, -1.29211003e-07, -1.00000012, 1.16415322e-10, -1.00000012, 1.36600647e-07, 4.00003046e-06, -4.00096178e-06, 0, -1),0.3)
  985. LS2.C0 = clerp(LS2.C0,CFrame.new(-2.48551011, -0.88594687, -0.38360405, 0.265275717, -0.964172661, -1.28813554e-06, -0.964172781, -0.265275747, 5.76023012e-06, -5.89434057e-06, -2.8591603e-07, -1),0.3)
  986. LM2.C0 = clerp(LM2.C0,CFrame.new(-2.57101965, -0.931007206, 0.0892008319, 0.265275717, -0.964172661, -1.28813554e-06, -0.964172781, -0.265275747, 5.76023012e-06, -5.89434057e-06, -2.8591603e-07, -1),0.3)
  987. LP3.C0 = clerp(LP3.C0,CFrame.new(-2.5064826, -1.75845838, 0.319396675, 0.556235969, -0.831024528, -2.17696652e-06, -0.831024587, -0.556235909, 9.77423042e-06, -9.33278352e-06, -3.62750143e-06, -1),0.3)
  988. end
  989. end
  990. end)
  991.  
  992. -- Died event
  993.  
  994. hum.Died:connect(function() -- When the player dies
  995. UnbindLoops() -- Unbind all of the loops used
  996. end)
  997.  
  998.  
  999. -- Everything else
  1000.  
  1001.  
  1002. FindNearestTorso = function(pos)
  1003. local list = (workspace:children())
  1004. local torso = nil
  1005. local dist = 1000
  1006. local temp, human, temp2 = nil, nil, nil
  1007. for x = 1, #list do
  1008. temp2 = list[x]
  1009. if temp2.className == "Model" and temp2 ~= char then
  1010. temp = GetTorso(temp2)
  1011. human = temp2:findFirstChildOfClass("Humanoid")
  1012. if temp ~= nil and human ~= nil and human.Health > 0 and (temp.Position - pos).magnitude < dist then
  1013. local dohit = true
  1014. if dohit == true then
  1015. torso = temp
  1016. dist = (temp.Position - pos).magnitude
  1017. end
  1018. end
  1019. end
  1020. end
  1021. return torso, dist
  1022. end
  1023.  
  1024. function Eat()
  1025. Attack = true
  1026. neutralAnims = false
  1027. WalkSpeed = 0
  1028. local hd = Instance.new("SpecialMesh",head)
  1029. hd.MeshId,hd.Scale = "rbxasset://fonts/head.mesh",V3.N(1,1,1)
  1030. for i = 0, 1, 0.1 do
  1031. swait()
  1032. root.Anchored = true
  1033. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0101976926, -2.47471642, -0.893443644, 0.999990284, -0.00300977356, -0.000401013531, 0.00300900009, 0.964597106, 0.263710856, -0.00040689297, -0.263709486, 0.964596748),0.3)
  1034. LH.C0 = clerp(LH.C0,CFrame.new(-0.498538464, -3.07820082, 1.32450998, 0.99999541, 0.00170646049, 0.00251151482, -0.00300980965, 0.66629684, 0.74568063, -0.000400940888, -0.745684743, 0.666298866),0.3)
  1035. RH.C0 = clerp(RH.C0,CFrame.new(0.500001013, -1.22442114, -0.705207109, 1.00000012, 0, 0, 2.32830644e-10, 0.976968884, -0.213381797, 0, 0.213381797, 0.976968884),0.3)
  1036. LS.C0 = clerp(LS.C0,CFrame.new(-1.49999487, 0.499998093, 7.64429569e-06, 1.00000012, 2.32830644e-10, 0, 2.32830644e-10, 1, 2.98023224e-08, 0, 2.98023224e-08, 1),0.3)
  1037. RS.C0 = clerp(RS.C0,CFrame.new(2.25000691, 1.27095723, -0.543794036, 0.70252949, -0.711654782, 1.53109431e-06, 0.366290569, 0.361591935, -0.857369542, 0.610150456, 0.602327943, 0.514701426),0.3)
  1038. NK.C0 = clerp(NK.C0,CFrame.new(4.29084639e-06, 2.72478557, -0.152842045, 1.00000012, -4.65661287e-10, 9.31322575e-10, 2.32830644e-10, 0.962414801, 0.271584034, 0, -0.271584034, 0.962414801),0.3)
  1039. RT3.C0 = clerp(RT3.C0,CFrame.new(-2.48910928, -1.55584359, 0.474784255, -0.552643597, -0.771626472, 0.314925104, 0.833417356, -0.511287332, 0.209764272, -0.000842422247, 0.378388971, 0.925646305),0.3)
  1040. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36365271, -0.0526320674, 0.463361204, 0.00431946665, -0.925634444, 0.378394425, 0.999990284, 0.00431928039, -0.000849217176, -0.000848323107, 0.378394485, 0.92564404),0.3)
  1041. RT2.C0 = clerp(RT2.C0,CFrame.new(-2.57269263, -0.719203055, 0.46306473, -0.261112005, -0.893619657, 0.365054309, 0.96530813, -0.241389707, 0.0995550901, -0.000844031572, 0.378385007, 0.925647974),0.3)
  1042. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32387304, -0.097885251, 0.155142546, -1.07288361e-06, -1.00000012, 4.17232513e-06, 1.00000012, -1.10268593e-06, 3.54647636e-06, -3.51667404e-06, 4.2617321e-06, 1),0.3)
  1043. RR2.C0 = clerp(RR2.C0,CFrame.new(-2.61666203, -0.764983475, 0.154808551, -0.265274137, -0.964173198, 2.41398811e-06, 0.964173079, -0.265274137, -5.96046448e-08, 7.15255737e-07, 2.29477882e-06, 1),0.3)
  1044. RR3.C0 = clerp(RR3.C0,CFrame.new(-2.60072613, -1.61763632, 0.147929713, -0.556239188, -0.831022382, -3.81469727e-06, 0.831022322, -0.556239247, -9.4845891e-06, 5.75184822e-06, -8.43405724e-06, 1),0.3)
  1045. RS3.C0 = clerp(RS3.C0,CFrame.new(-2.44672871, -1.52428532, 0.407729238, -0.556239188, -0.831022382, -3.81469727e-06, 0.831022322, -0.556239247, -9.4845891e-06, 5.75184822e-06, -8.43405724e-06, 1),0.3)
  1046. RS2.C0 = clerp(RS2.C0,CFrame.new(-2.53335905, -0.71188271, 0.412876427, -0.265274137, -0.964173198, 2.41398811e-06, 0.964173079, -0.265274137, -5.96046448e-08, 7.15255737e-07, 2.29477882e-06, 1),0.3)
  1047. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33200312, -0.054913681, 0.413159013, -1.07288361e-06, -1.00000012, 4.17232513e-06, 1.00000012, -1.10268593e-06, 3.54647636e-06, -3.51667404e-06, 4.2617321e-06, 1),0.3)
  1048. RM2.C0 = clerp(RM2.C0,CFrame.new(-2.61599159, -0.767508984, -0.074164845, -0.265274137, -0.964173198, 2.41398811e-06, 0.964173079, -0.265274137, -5.96046448e-08, 7.15255737e-07, 2.29477882e-06, 1),0.3)
  1049. RM3.C0 = clerp(RM3.C0,CFrame.new(-2.59927201, -1.61979878, -0.0810761154, -0.556239188, -0.831022382, -3.81469727e-06, 0.831022322, -0.556239247, -9.4845891e-06, 5.75184822e-06, -8.43405724e-06, 1),0.3)
  1050. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.32387781, -0.100504853, -0.0738613531, -1.07288361e-06, -1.00000012, 4.17232513e-06, 1.00000012, -1.10268593e-06, 3.54647636e-06, -3.51667404e-06, 4.2617321e-06, 1),0.3)
  1051. RP2.C0 = clerp(RP2.C0,CFrame.new(-2.61522508, -0.770296931, -0.32709071, -0.265274137, -0.964173198, 2.41398811e-06, 0.964173079, -0.265274137, -5.96046448e-08, 7.15255737e-07, 2.29477882e-06, 1),0.3)
  1052. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32390761, -0.103397295, -0.326749057, -1.07288361e-06, -1.00000012, 4.17232513e-06, 1.00000012, -1.10268593e-06, 3.54647636e-06, -3.51667404e-06, 4.2617321e-06, 1),0.3)
  1053. RP3.C0 = clerp(RP3.C0,CFrame.new(-2.59765124, -1.62218916, -0.334011555, -0.556239188, -0.831022382, -3.81469727e-06, 0.831022322, -0.556239247, -9.4845891e-06, 5.75184822e-06, -8.43405724e-06, 1),0.3)
  1054. LR3.C0 = clerp(LR3.C0,CFrame.new(-2.50362992, -1.76269734, -0.128634736, 0.556237459, -0.831023574, 4.00841236e-06, -0.831023574, -0.556237459, 1.33663416e-05, -8.86525959e-06, -1.07884407e-05, -1),0.3)
  1055. LT3.C0 = clerp(LT3.C0,CFrame.new(-2.42464662, -1.68733966, -0.468871891, 0.559900582, -0.763834238, 0.321043193, -0.828559458, -0.516575158, 0.21596168, 0.000884024426, -0.386920452, -0.922112703),0.3)
  1056. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.38322973, -0.197773054, -0.480284244, 0.0044150874, -0.922103882, 0.386917174, -0.999989986, -0.00441437121, 0.000890459865, 0.000886899419, -0.386917293, -0.922114015),0.3)
  1057. LT2.C0 = clerp(LT2.C0,CFrame.new(-2.55306935, -0.864338696, -0.480546713, 0.269532502, -0.887895465, 0.372818857, -0.96299094, -0.24887079, 0.103498176, 0.000888162293, -0.386917353, -0.922114015),0.3)
  1058. LR2.C0 = clerp(LR2.C0,CFrame.new(-2.57037282, -0.933312833, -0.121727049, 0.265276462, -0.964172423, 6.33299351e-06, -0.964172423, -0.265276462, 3.02866101e-06, -1.24704093e-06, -6.91413879e-06, -1.00000012),0.3)
  1059. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390285, -0.272462189, -0.121371761, 1.28755346e-07, -1, 9.83476639e-07, -1.00000012, -1.28755346e-07, 4.12110239e-06, -4.12203372e-06, -9.53674316e-07, -1.00000012),0.3)
  1060. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33201838, -0.235411346, -0.383384138, 1.28755346e-07, -1, 9.83476639e-07, -1.00000012, -1.28755346e-07, 4.12110239e-06, -4.12203372e-06, -9.53674316e-07, -1.00000012),0.3)
  1061. LM3.C0 = clerp(LM3.C0,CFrame.new(-2.50496888, -1.76070094, 0.0822837129, 0.556237459, -0.831023574, 4.00841236e-06, -0.831023574, -0.556237459, 1.33663416e-05, -8.86525959e-06, -1.07884407e-05, -1),0.3)
  1062. LS3.C0 = clerp(LS3.C0,CFrame.new(-2.34634662, -1.67428362, -0.388776213, 0.556237459, -0.831023574, 4.00841236e-06, -0.831023574, -0.556237459, 1.33663416e-05, -8.86525959e-06, -1.07884407e-05, -1),0.3)
  1063. LP2.C0 = clerp(LP2.C0,CFrame.new(-2.57173181, -0.928385198, 0.326259613, 0.265276462, -0.964172423, 6.33299351e-06, -0.964172423, -0.265276462, 3.02866101e-06, -1.24704093e-06, -6.91413879e-06, -1.00000012),0.3)
  1064. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32389855, -0.267353296, 0.326584399, 1.28755346e-07, -1, 9.83476639e-07, -1.00000012, -1.28755346e-07, 4.12110239e-06, -4.12203372e-06, -9.53674316e-07, -1.00000012),0.3)
  1065. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390594, -0.27005741, 0.089539066, 1.28755346e-07, -1, 9.83476639e-07, -1.00000012, -1.28755346e-07, 4.12110239e-06, -4.12203372e-06, -9.53674316e-07, -1.00000012),0.3)
  1066. LS2.C0 = clerp(LS2.C0,CFrame.new(-2.48550367, -0.885939538, -0.383639723, 0.265276462, -0.964172423, 6.33299351e-06, -0.964172423, -0.265276462, 3.02866101e-06, -1.24704093e-06, -6.91413879e-06, -1.00000012),0.3)
  1067. LM2.C0 = clerp(LM2.C0,CFrame.new(-2.57101417, -0.930994511, 0.089172326, 0.265276462, -0.964172423, 6.33299351e-06, -0.964172423, -0.265276462, 3.02866101e-06, -1.24704093e-06, -6.91413879e-06, -1.00000012),0.3)
  1068. LP3.C0 = clerp(LP3.C0,CFrame.new(-2.50647783, -1.75845778, 0.31936717, 0.556237459, -0.831023574, 4.00841236e-06, -0.831023574, -0.556237459, 1.33663416e-05, -8.86525959e-06, -1.07884407e-05, -1),0.3)
  1069. end
  1070. swait(30)
  1071. for i = 0, 1, 0.1 do
  1072. swait()
  1073. root.Anchored = true
  1074. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0101976926, -2.47471642, -0.893443644, 0.999990284, -0.00300977356, -0.000401013531, 0.00300900009, 0.964597106, 0.263710856, -0.00040689297, -0.263709486, 0.964596748),0.3)
  1075. LH.C0 = clerp(LH.C0,CFrame.new(-0.498538464, -3.07820082, 1.32450998, 0.99999541, 0.00170646049, 0.00251151482, -0.00300980965, 0.66629684, 0.74568063, -0.000400940888, -0.745684743, 0.666298866),0.3)
  1076. RH.C0 = clerp(RH.C0,CFrame.new(0.500001013, -1.22442114, -0.705207109, 1.00000012, 0, 0, 2.32830644e-10, 0.976968884, -0.213381797, 0, 0.213381797, 0.976968884),0.3)
  1077. LS.C0 = clerp(LS.C0,CFrame.new(-1.49999487, 0.499998093, 7.64429569e-06, 1.00000012, 2.32830644e-10, 0, 2.32830644e-10, 1, 2.98023224e-08, 0, 2.98023224e-08, 1),0.3)
  1078. RS.C0 = clerp(RS.C0,CFrame.new(0.72810775, 1.02041888, -0.961069465, 0.768898249, 0.639371336, 1.03712082e-05, -0.329080999, 0.395761818, -0.857367218, -0.548179865, 0.659224689, 0.514705479),0.3)
  1079. NK.C0 = clerp(NK.C0,CFrame.new(4.29084639e-06, 2.72478557, -0.152842045, 1.00000012, -4.65661287e-10, 9.31322575e-10, 2.32830644e-10, 0.962414801, 0.271584034, 0, -0.271584034, 0.962414801),0.3)
  1080. RT3.C0 = clerp(RT3.C0,CFrame.new(-2.48910928, -1.55584586, 0.474794269, -0.552643836, -0.77162528, 0.314927697, 0.833417177, -0.511287987, 0.209763288, -0.000839859247, 0.378390521, 0.925645828),0.3)
  1081. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366034, -0.0526347235, 0.46338138, 0.00431755185, -0.925634682, 0.378394067, 0.999990404, 0.00431737304, -0.00084900856, -0.00084772706, 0.378393948, 0.925644398),0.3)
  1082. RT2.C0 = clerp(RT2.C0,CFrame.new(-2.57268977, -0.719206929, 0.463082612, -0.261111975, -0.893618345, 0.365057409, 0.96530813, -0.24138999, 0.0995542705, -0.000842303038, 0.37838769, 0.925646961),0.3)
  1083. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32388043, -0.0978889093, 0.155152023, -2.65240669e-06, -1.00000012, 4.29153442e-06, 1.00000012, -2.57790089e-06, 2.08616257e-06, -2.11596489e-06, 4.29153442e-06, 1.00000012),0.3)
  1084. RR2.C0 = clerp(RR2.C0,CFrame.new(-2.61666441, -0.764981449, 0.154823169, -0.265272617, -0.964173615, 5.36441803e-06, 0.964173496, -0.265272617, 1.57952309e-06, -8.94069672e-08, 5.54323196e-06, 1.00000012),0.3)
  1085. RR3.C0 = clerp(RR3.C0,CFrame.new(-2.60074186, -1.61763227, 0.147942692, -0.55623579, -0.831024587, -1.2665987e-06, 0.831024528, -0.55623585, -1.13844872e-05, 8.7916851e-06, -7.42077827e-06, 1.00000024),0.3)
  1086. RS3.C0 = clerp(RS3.C0,CFrame.new(-2.44673991, -1.52428043, 0.407743961, -0.55623579, -0.831024587, -1.2665987e-06, 0.831024528, -0.55623585, -1.13844872e-05, 8.7916851e-06, -7.42077827e-06, 1.00000024),0.3)
  1087. RS2.C0 = clerp(RS2.C0,CFrame.new(-2.5333724, -0.71187973, 0.412902206, -0.265272617, -0.964173615, 5.36441803e-06, 0.964173496, -0.265272617, 1.57952309e-06, -8.94069672e-08, 5.54323196e-06, 1.00000012),0.3)
  1088. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33201051, -0.0549177267, 0.413168609, -2.65240669e-06, -1.00000012, 4.29153442e-06, 1.00000012, -2.57790089e-06, 2.08616257e-06, -2.11596489e-06, 4.29153442e-06, 1.00000012),0.3)
  1089. RM2.C0 = clerp(RM2.C0,CFrame.new(-2.61599779, -0.767502367, -0.0741483271, -0.265272617, -0.964173615, 5.36441803e-06, 0.964173496, -0.265272617, 1.57952309e-06, -8.94069672e-08, 5.54323196e-06, 1.00000012),0.3)
  1090. RM3.C0 = clerp(RM3.C0,CFrame.new(-2.59928036, -1.61978889, -0.0810651034, -0.55623579, -0.831024587, -1.2665987e-06, 0.831024528, -0.55623585, -1.13844872e-05, 8.7916851e-06, -7.42077827e-06, 1.00000024),0.3)
  1091. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.3238852, -0.10051199, -0.0738480836, -2.65240669e-06, -1.00000012, 4.29153442e-06, 1.00000012, -2.57790089e-06, 2.08616257e-06, -2.11596489e-06, 4.29153442e-06, 1.00000012),0.3)
  1092. RP2.C0 = clerp(RP2.C0,CFrame.new(-2.61523342, -0.770293057, -0.32707423, -0.265272617, -0.964173615, 5.36441803e-06, 0.964173496, -0.265272617, 1.57952309e-06, -8.94069672e-08, 5.54323196e-06, 1.00000012),0.3)
  1093. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391119, -0.103400238, -0.326743454, -2.65240669e-06, -1.00000012, 4.29153442e-06, 1.00000012, -2.57790089e-06, 2.08616257e-06, -2.11596489e-06, 4.29153442e-06, 1.00000012),0.3)
  1094. RP3.C0 = clerp(RP3.C0,CFrame.new(-2.59765935, -1.62217629, -0.334010154, -0.55623579, -0.831024587, -1.2665987e-06, 0.831024528, -0.55623585, -1.13844872e-05, 8.7916851e-06, -7.42077827e-06, 1.00000024),0.3)
  1095. LR3.C0 = clerp(LR3.C0,CFrame.new(-2.50362992, -1.76269734, -0.128634736, 0.556237459, -0.831023574, 4.00841236e-06, -0.831023574, -0.556237459, 1.33663416e-05, -8.86525959e-06, -1.07884407e-05, -1),0.3)
  1096. LT3.C0 = clerp(LT3.C0,CFrame.new(-2.42464662, -1.68733966, -0.468871891, 0.559900582, -0.763834238, 0.321043193, -0.828559458, -0.516575158, 0.21596168, 0.000884024426, -0.386920452, -0.922112703),0.3)
  1097. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.38322973, -0.197773054, -0.480284244, 0.0044150874, -0.922103882, 0.386917174, -0.999989986, -0.00441437121, 0.000890459865, 0.000886899419, -0.386917293, -0.922114015),0.3)
  1098. LT2.C0 = clerp(LT2.C0,CFrame.new(-2.55306935, -0.864338696, -0.480546713, 0.269532502, -0.887895465, 0.372818857, -0.96299094, -0.24887079, 0.103498176, 0.000888162293, -0.386917353, -0.922114015),0.3)
  1099. LR2.C0 = clerp(LR2.C0,CFrame.new(-2.57037282, -0.933312833, -0.121727049, 0.265276462, -0.964172423, 6.33299351e-06, -0.964172423, -0.265276462, 3.02866101e-06, -1.24704093e-06, -6.91413879e-06, -1.00000012),0.3)
  1100. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390285, -0.272462189, -0.121371761, 1.28755346e-07, -1, 9.83476639e-07, -1.00000012, -1.28755346e-07, 4.12110239e-06, -4.12203372e-06, -9.53674316e-07, -1.00000012),0.3)
  1101. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33201838, -0.235411346, -0.383384138, 1.28755346e-07, -1, 9.83476639e-07, -1.00000012, -1.28755346e-07, 4.12110239e-06, -4.12203372e-06, -9.53674316e-07, -1.00000012),0.3)
  1102. LM3.C0 = clerp(LM3.C0,CFrame.new(-2.50496888, -1.76070094, 0.0822837129, 0.556237459, -0.831023574, 4.00841236e-06, -0.831023574, -0.556237459, 1.33663416e-05, -8.86525959e-06, -1.07884407e-05, -1),0.3)
  1103. LS3.C0 = clerp(LS3.C0,CFrame.new(-2.34634662, -1.67428362, -0.388776213, 0.556237459, -0.831023574, 4.00841236e-06, -0.831023574, -0.556237459, 1.33663416e-05, -8.86525959e-06, -1.07884407e-05, -1),0.3)
  1104. LP2.C0 = clerp(LP2.C0,CFrame.new(-2.57173181, -0.928385198, 0.326259613, 0.265276462, -0.964172423, 6.33299351e-06, -0.964172423, -0.265276462, 3.02866101e-06, -1.24704093e-06, -6.91413879e-06, -1.00000012),0.3)
  1105. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32389855, -0.267353296, 0.326584399, 1.28755346e-07, -1, 9.83476639e-07, -1.00000012, -1.28755346e-07, 4.12110239e-06, -4.12203372e-06, -9.53674316e-07, -1.00000012),0.3)
  1106. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390594, -0.27005741, 0.089539066, 1.28755346e-07, -1, 9.83476639e-07, -1.00000012, -1.28755346e-07, 4.12110239e-06, -4.12203372e-06, -9.53674316e-07, -1.00000012),0.3)
  1107. LS2.C0 = clerp(LS2.C0,CFrame.new(-2.48550367, -0.885939538, -0.383639723, 0.265276462, -0.964172423, 6.33299351e-06, -0.964172423, -0.265276462, 3.02866101e-06, -1.24704093e-06, -6.91413879e-06, -1.00000012),0.3)
  1108. LM2.C0 = clerp(LM2.C0,CFrame.new(-2.57101417, -0.930994511, 0.089172326, 0.265276462, -0.964172423, 6.33299351e-06, -0.964172423, -0.265276462, 3.02866101e-06, -1.24704093e-06, -6.91413879e-06, -1.00000012),0.3)
  1109. LP3.C0 = clerp(LP3.C0,CFrame.new(-2.50647783, -1.75845778, 0.31936717, 0.556237459, -0.831023574, 4.00841236e-06, -0.831023574, -0.556237459, 1.33663416e-05, -8.86525959e-06, -1.07884407e-05, -1),0.3)
  1110. end
  1111. local torso,dist = FindNearestTorso(torso.CFrame.p)
  1112. local h = (torso and torso.Parent and torso.Parent:FindFirstChildOfClass'Humanoid' or nil)
  1113. if(torso and dist <= 5 and h)then
  1114. for _,v in next, torso.Parent:children() do
  1115. if(v:IsA'BasePart')then
  1116. v.CanCollide = false
  1117. v.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  1118. end
  1119. end
  1120. -- grab sound
  1121. FX(169380525,1,1,torso)
  1122. h.PlatformStand = true
  1123. for i = 0, 6, .1 do
  1124. swait()
  1125. torso.CFrame = rarm.CFrame * CF.N(0,-2.5,0)*CF.A(M.R(-90),0,0)
  1126. h.PlatformStand = true
  1127. root.Anchored = true
  1128. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  1129. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  1130. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  1131. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1132. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1133. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1134. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  1135. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  1136. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1137. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1138. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1139. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1140. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1141. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1142. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1143. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1144. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  1145. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  1146. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  1147. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1148. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1149. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1150. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1151. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1152. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1153. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1154. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1155. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1156. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1157. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1158. end
  1159. Tween(hd,{Scale=V3.N(2,2,2)},1,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1160. for i = 0, 6, 0.1 do
  1161. swait()
  1162. torso.CFrame = rarm.CFrame * CF.N(0,-2.5,0)*CF.A(M.R(-90),0,0)
  1163. h.PlatformStand = true
  1164. root.Anchored = true
  1165. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0101976926, -2.47471642, -0.893443644, 0.999990284, -0.00300977356, -0.000401013531, 0.00300900009, 0.964597106, 0.263710856, -0.00040689297, -0.263709486, 0.964596748),0.3)
  1166. LH.C0 = clerp(LH.C0,CFrame.new(-0.498538464, -3.07820082, 1.32450998, 0.99999541, 0.00170646049, 0.00251151482, -0.00300980965, 0.66629684, 0.74568063, -0.000400940888, -0.745684743, 0.666298866),0.3)
  1167. RH.C0 = clerp(RH.C0,CFrame.new(0.500001013, -1.22442114, -0.705207109, 1.00000012, 0, 0, 2.32830644e-10, 0.976968884, -0.213381797, 0, 0.213381797, 0.976968884),0.3)
  1168. LS.C0 = clerp(LS.C0,CFrame.new(-1.49999487, 0.499998093, 7.64429569e-06, 1.00000012, 2.32830644e-10, 0, 2.32830644e-10, 1, 2.98023224e-08, 0, 2.98023224e-08, 1),0.3)
  1169. RS.C0 = clerp(RS.C0,CFrame.new(1.02310264, 1.39472663, 0.0915519893, 0.99869597, 0.0413880646, -0.0298938304, -0.0262705293, -0.0854785889, -0.995993614, -0.0437775292, 0.995480001, -0.0842798054),0.3)
  1170. NK.C0 = clerp(NK.C0,CFrame.new(4.29084639e-06, 2.72478557, -0.152842045, 1.00000012, -4.65661287e-10, 9.31322575e-10, 2.32830644e-10, 0.962414801, 0.271584034, 0, -0.271584034, 0.962414801),0.3)
  1171. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  1172. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  1173. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  1174. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1175. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1176. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1177. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  1178. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  1179. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1180. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1181. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1182. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1183. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1184. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1185. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1186. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1187. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  1188. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  1189. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  1190. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1191. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1192. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1193. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1194. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1195. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1196. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1197. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1198. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1199. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1200. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1201. end
  1202. for i = 0, 3, 0.1 do
  1203. swait()
  1204. torso.CFrame = rarm.CFrame * CF.N(0,-2.5,0)*CF.A(M.R(-65),0,0)
  1205. h.PlatformStand = true
  1206. root.Anchored = true
  1207. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0101976926, -2.47471642, -0.893443644, 0.999990284, -0.00300977356, -0.000401013531, 0.00300900009, 0.964597106, 0.263710856, -0.00040689297, -0.263709486, 0.964596748),0.3)
  1208. LH.C0 = clerp(LH.C0,CFrame.new(-0.498538464, -3.07820082, 1.32450998, 0.99999541, 0.00170646049, 0.00251151482, -0.00300980965, 0.66629684, 0.74568063, -0.000400940888, -0.745684743, 0.666298866),0.3)
  1209. RH.C0 = clerp(RH.C0,CFrame.new(0.500001013, -1.22442114, -0.705207109, 1.00000012, 0, 0, 2.32830644e-10, 0.976968884, -0.213381797, 0, 0.213381797, 0.976968884),0.3)
  1210. LS.C0 = clerp(LS.C0,CFrame.new(-1.49999487, 0.499998093, 7.64429569e-06, 1.00000012, 2.32830644e-10, 0, 2.32830644e-10, 1, 2.98023224e-08, 0, 2.98023224e-08, 1),0.3)
  1211. RS.C0 = clerp(RS.C0,CFrame.new(1.60629869, -0.170540944, -0.141343355, 0.893960059, 0.446698248, 0.0360007249, 0.387383848, -0.729863763, -0.563234091, -0.225320011, 0.517454803, -0.825512767),0.3)
  1212. NK.C0 = clerp(NK.C0,CFrame.new(4.29084639e-06, 2.72478557, -0.152842045, 1.00000012, -4.65661287e-10, 9.31322575e-10, 2.32830644e-10, 0.962414801, 0.271584034, 0, -0.271584034, 0.962414801),0.3)
  1213. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  1214. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  1215. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  1216. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1217. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1218. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1219. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  1220. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  1221. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1222. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1223. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1224. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1225. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1226. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1227. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1228. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1229. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  1230. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  1231. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  1232. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1233. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1234. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1235. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1236. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1237. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1238. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1239. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1240. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1241. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1242. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1243. end
  1244. -- thanks shuggy
  1245. local bloodie = Instance.new("Part",char)
  1246. bloodie.Transparency = 1
  1247. bloodie.Size = V3.N(1,1,1)
  1248. local bloodieW = Instance.new("Weld",bloodie)
  1249. bloodieW.Part0 = head
  1250. bloodieW.Part1 = bloodie
  1251. bloodieW.C0 = CF.N(0,-.5,-1)
  1252. local p1mit = Instance.new("ParticleEmitter",bloodie)
  1253. p1mit.Texture = "rbxasset://textures/particles/fire_main.dds"
  1254. p1mit.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(.6,0,0)),ColorSequenceKeypoint.new(1,Color3.new(.6,0,0))})
  1255. p1mit.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,1),NumberSequenceKeypoint.new(1,0)})
  1256. p1mit.Lifetime = NumberRange.new(6)
  1257. p1mit.Rate = 100
  1258. p1mit.Enabled = true
  1259. p1mit.Acceleration = Vector3.new(0,-10,0)
  1260. p1mit.Rotation = NumberRange.new(0,359)
  1261. p1mit.Speed = NumberRange.new(0)
  1262. delay(5, function()
  1263. p1mit.Enabled = false
  1264. end)
  1265. game:service'Debris':AddItem(p1mit,10)
  1266. FX(429400881,1,1,head)
  1267. if(torso and torso.Parent and torso.Parent:FindFirstChild'Head')then
  1268. torso.Parent.Head:destroy()
  1269. end
  1270. end
  1271. swait(30)
  1272. Tween(hd,{Scale=V3.N(1,1,1)},1,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1273. swait(60)
  1274. hd:Destroy()
  1275. root.Anchored = false
  1276. WalkSpeed = 8
  1277. neutralAnims = true
  1278. Attack = false
  1279. end
  1280. function getRegion(point,range,ignore)
  1281. return workspace:FindPartsInRegion3WithIgnoreList(Region3.new(point-Vector3.new(1,1,1)*range/2,point+Vector3.new(1,1,1)*range/2),ignore,100)
  1282. end
  1283.  
  1284. function Tween(obj,props,time,easing,direction,repeats,backwards)
  1285. local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
  1286. local tween = S.TweenService:Create(obj, info, props)
  1287.  
  1288. tween:Play()
  1289. end
  1290.  
  1291. function Stomp()
  1292. Attack = true
  1293. neutralAnims = false
  1294. WalkSpeed = 0
  1295. for i = 0, 1, 0.1 do
  1296. swait()
  1297. RJ.C0 = clerp(RJ.C0,CFrame.new(0.0149606867, -0.414370447, 1.31077337, 0.999976575, 0.00583649054, -0.00160982274, -0.00583899952, 0.859376848, -0.511309505, -0.00160080846, 0.511306942, 0.859390676),0.3)
  1298. LH.C0 = clerp(LH.C0,CFrame.new(-0.494830847, -3.32493114, 0.452066779, 0.999976575, -0.00583899952, -0.00160080846, 0.00583649054, 0.859376848, 0.511306942, -0.00160982274, -0.511309505, 0.859390676),0.3)
  1299. RH.C0 = clerp(RH.C0,CFrame.new(0.499999106, -1.56153071, -0.998121262, 1.00000012, -8.76025297e-08, -9.95583832e-07, 5.10830432e-07, 0.900910258, 0.434005529, 8.58679414e-07, -0.434005469, 0.900910199),0.3)
  1300. LS.C0 = clerp(LS.C0,CFrame.new(-1.8556273, 2.15271449, 0.597766876, 0.928429008, 0.371509999, 1.45630911e-05, 0.313250482, -0.782855511, 0.537597895, 0.19973436, -0.499116778, -0.843201399),0.3)
  1301. RS.C0 = clerp(RS.C0,CFrame.new(1.94845712, 2.27057123, 0.356615961, 0.893861949, -0.448342502, -6.85127452e-06, -0.394066334, -0.785658598, 0.476919919, -0.213828832, -0.426297784, -0.878946781),0.3)
  1302. NK.C0 = clerp(NK.C0,CFrame.new(-9.5367443e-07, 2.74997544, 7.62939408e-06, 1.00000012, 0, 0, 0, 1.00000012, 0, 0, 0, 0.99999994),0.3)
  1303. RT3.C0 = clerp(RT3.C0,CFrame.new(-2.48913026, -1.5558573, 0.474763274, -0.552640617, -0.771631122, 0.314919144, 0.833419323, -0.51128757, 0.209755421, -0.000839561224, 0.378379047, 0.925650477),0.3)
  1304. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36367607, -0.0526439659, 0.463351578, 0.00431717932, -0.925637841, 0.378385901, 0.999990463, 0.00431641936, -0.00085029006, -0.000846236944, 0.378386021, 0.925647676),0.3)
  1305. RT2.C0 = clerp(RT2.C0,CFrame.new(-2.57271957, -0.719195843, 0.463060319, -0.261100143, -0.893624783, 0.365050167, 0.965311408, -0.241380781, 0.0995453894, -0.000840097666, 0.378378451, 0.925650716),0.3)
  1306. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391405, -0.0978988633, 0.155138284, 7.15255737e-07, -1, -3.06963921e-06, 1, 7.15255737e-07, -8.7916851e-07, 8.49366188e-07, -3.12924385e-06, 1),0.3)
  1307. RR2.C0 = clerp(RR2.C0,CFrame.new(-2.61670589, -0.764987886, 0.154807672, -0.265270501, -0.964174151, -4.08291817e-06, 0.964174092, -0.265270472, -8.85874033e-06, 7.4505806e-06, -6.31809235e-06, 1),0.3)
  1308. RR3.C0 = clerp(RR3.C0,CFrame.new(-2.60071802, -1.61763024, 0.147904918, -0.556236863, -0.831023872, -1.04308128e-06, 0.831023991, -0.556236804, -1.44280493e-05, 1.13844872e-05, -8.94069672e-06, 1.00000012),0.3)
  1309. RS3.C0 = clerp(RS3.C0,CFrame.new(-2.44675589, -1.52430558, 0.40774554, -0.556236863, -0.831023872, -1.04308128e-06, 0.831023991, -0.556236804, -1.44280493e-05, 1.13844872e-05, -8.94069672e-06, 1.00000012),0.3)
  1310. RS2.C0 = clerp(RS2.C0,CFrame.new(-2.53338361, -0.711885929, 0.412868947, -0.265270501, -0.964174151, -4.08291817e-06, 0.964174092, -0.265270472, -8.85874033e-06, 7.4505806e-06, -6.31809235e-06, 1),0.3)
  1311. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33204389, -0.0549074486, 0.413162529, 7.15255737e-07, -1, -3.06963921e-06, 1, 7.15255737e-07, -8.7916851e-07, 8.49366188e-07, -3.12924385e-06, 1),0.3)
  1312. RM2.C0 = clerp(RM2.C0,CFrame.new(-2.61601782, -0.767512858, -0.074173376, -0.265270501, -0.964174151, -4.08291817e-06, 0.964174092, -0.265270472, -8.85874033e-06, 7.4505806e-06, -6.31809235e-06, 1),0.3)
  1313. RM3.C0 = clerp(RM3.C0,CFrame.new(-2.59928656, -1.61981332, -0.0810437351, -0.556236863, -0.831023872, -1.04308128e-06, 0.831023991, -0.556236804, -1.44280493e-05, 1.13844872e-05, -8.94069672e-06, 1.00000012),0.3)
  1314. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.32391715, -0.100507915, -0.0738599002, 7.15255737e-07, -1, -3.06963921e-06, 1, 7.15255737e-07, -8.7916851e-07, 8.49366188e-07, -3.12924385e-06, 1),0.3)
  1315. RP2.C0 = clerp(RP2.C0,CFrame.new(-2.61523223, -0.770289779, -0.327118337, -0.265270501, -0.964174151, -4.08291817e-06, 0.964174092, -0.265270472, -8.85874033e-06, 7.4505806e-06, -6.31809235e-06, 1),0.3)
  1316. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391644, -0.103391603, -0.326751441, 7.15255737e-07, -1, -3.06963921e-06, 1, 7.15255737e-07, -8.7916851e-07, 8.49366188e-07, -3.12924385e-06, 1),0.3)
  1317. RP3.C0 = clerp(RP3.C0,CFrame.new(-2.59768414, -1.62221014, -0.333992541, -0.556236863, -0.831023872, -1.04308128e-06, 0.831023991, -0.556236804, -1.44280493e-05, 1.13844872e-05, -8.94069672e-06, 1.00000012),0.3)
  1318. LR3.C0 = clerp(LR3.C0,CFrame.new(-2.50364661, -1.76271212, -0.128631443, 0.556247711, -0.831016541, 2.47359276e-06, -0.83101666, -0.556247711, 9.41753387e-06, -6.46710396e-06, -7.27176666e-06, -1.00000012),0.3)
  1319. LT3.C0 = clerp(LT3.C0,CFrame.new(-2.42465901, -1.68734121, -0.468866467, 0.559909225, -0.763830543, 0.321036994, -0.828553557, -0.516581178, 0.215969831, 0.000877350569, -0.386919856, -0.922112942),0.3)
  1320. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.38323689, -0.197773248, -0.480273008, 0.00442521274, -0.922103941, 0.386916906, -0.999989986, -0.00442284346, 0.000896409154, 0.00088468194, -0.386916965, -0.922114134),0.3)
  1321. LT2.C0 = clerp(LT2.C0,CFrame.new(-2.55306888, -0.864331484, -0.480577469, 0.26954022, -0.887892246, 0.372820735, -0.962988675, -0.248876914, 0.103503615, 0.000886380672, -0.386920631, -0.922112584),0.3)
  1322. LR2.C0 = clerp(LR2.C0,CFrame.new(-2.57039857, -0.933297694, -0.121736571, 0.265281469, -0.964171052, 5.78165054e-06, -0.964171052, -0.265281498, 9.72300768e-06, -7.85291195e-06, -8.13603401e-06, -1),0.3)
  1323. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390261, -0.272461981, -0.121395558, 1.0818243e-05, -1.00000012, 5.00679016e-06, -1, -1.08480453e-05, -1.3038516e-05, 1.3038516e-05, -5.00679016e-06, -0.99999994),0.3)
  1324. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33204222, -0.235423818, -0.383398056, 1.0818243e-05, -1.00000012, 5.00679016e-06, -1, -1.08480453e-05, -1.3038516e-05, 1.3038516e-05, -5.00679016e-06, -0.99999994),0.3)
  1325. LM3.C0 = clerp(LM3.C0,CFrame.new(-2.50498033, -1.76070869, 0.082287021, 0.556247711, -0.831016541, 2.47359276e-06, -0.83101666, -0.556247711, 9.41753387e-06, -6.46710396e-06, -7.27176666e-06, -1.00000012),0.3)
  1326. LS3.C0 = clerp(LS3.C0,CFrame.new(-2.34634924, -1.67430735, -0.388748765, 0.556247711, -0.831016541, 2.47359276e-06, -0.83101666, -0.556247711, 9.41753387e-06, -6.46710396e-06, -7.27176666e-06, -1.00000012),0.3)
  1327. LP2.C0 = clerp(LP2.C0,CFrame.new(-2.57174945, -0.928372383, 0.32624054, 0.265281469, -0.964171052, 5.78165054e-06, -0.964171052, -0.265281498, 9.72300768e-06, -7.85291195e-06, -8.13603401e-06, -1),0.3)
  1328. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390499, -0.267353982, 0.326602399, 1.0818243e-05, -1.00000012, 5.00679016e-06, -1, -1.08480453e-05, -1.3038516e-05, 1.3038516e-05, -5.00679016e-06, -0.99999994),0.3)
  1329. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32391906, -0.270055026, 0.0895333141, 1.0818243e-05, -1.00000012, 5.00679016e-06, -1, -1.08480453e-05, -1.3038516e-05, 1.3038516e-05, -5.00679016e-06, -0.99999994),0.3)
  1330. LS2.C0 = clerp(LS2.C0,CFrame.new(-2.48551512, -0.885928094, -0.383646071, 0.265281469, -0.964171052, 5.78165054e-06, -0.964171052, -0.265281498, 9.72300768e-06, -7.85291195e-06, -8.13603401e-06, -1),0.3)
  1331. LM2.C0 = clerp(LM2.C0,CFrame.new(-2.57103992, -0.930986404, 0.0891713798, 0.265281469, -0.964171052, 5.78165054e-06, -0.964171052, -0.265281498, 9.72300768e-06, -7.85291195e-06, -8.13603401e-06, -1),0.3)
  1332. LP3.C0 = clerp(LP3.C0,CFrame.new(-2.50646663, -1.75845659, 0.31939435, 0.556247711, -0.831016541, 2.47359276e-06, -0.83101666, -0.556247711, 9.41753387e-06, -6.46710396e-06, -7.27176666e-06, -1.00000012),0.3)
  1333. end
  1334. swait(30)
  1335. local RL = Instance.new("SpecialMesh",rleg)
  1336. RL.MeshId,RL.Scale = "rbxasset://fonts/rightleg.mesh",V3.N(1,PlayerSize,1)
  1337. Tween(RL,{Scale=V3.N(2,PlayerSize,1)},.6,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1338. swait(36)
  1339. Tween(RL,{Scale=V3.N(2,PlayerSize,2)},.6,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1340. swait(36)
  1341. for i = 0, .9, 0.1 do
  1342. swait()
  1343. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0108745974, -1.25186658, -0.952733994, 0.999976397, -0.00586278876, -0.00162208173, 0.00586399902, 0.85814631, 0.513371766, -0.00161780789, -0.513369143, 0.858160377),0.3)
  1344. LH.C0 = clerp(LH.C0,CFrame.new(-0.503836155, -2.41545725, -0.335738778, 0.999976397, 0.00586399902, -0.00161780789, -0.00586278876, 0.85814631, -0.513369143, -0.00162208173, 0.513371766, 0.858160377),0.3)
  1345. RH.C0 = clerp(RH.C0,CFrame.new(1.43907547, -2.20140982, -1.52517509, 0.999931633, 0.0116824051, 0.00069081597, -0.0100521259, 0.887619972, -0.460467011, -0.00599254388, 0.460428506, 0.887676656),0.3)
  1346. LS.C0 = clerp(LS.C0,CFrame.new(-1.14841616, 0.652297139, -1.08734488, 0.972524107, -0.226930693, -0.0519557931, 0.120456055, 0.681488216, -0.721847832, 0.199216664, 0.695755959, 0.690098882),0.3)
  1347. RS.C0 = clerp(RS.C0,CFrame.new(0.878460109, 0.664811909, -1.09500289, 0.940693557, 0.327670962, -0.0879075155, -0.289187342, 0.638985872, -0.712788701, -0.177388534, 0.695937455, 0.695847988),0.3)
  1348. NK.C0 = clerp(NK.C0,CFrame.new(1.00135803e-05, 2.74997139, 1.90734863e-05, 1, 0, 0, 0, 1, 0, 0, 0, 1),0.3)
  1349. RT3.C0 = clerp(RT3.C0,CFrame.new(-2.48911357, -1.55585802, 0.474724293, -0.552640557, -0.77163136, 0.314918667, 0.833419502, -0.511288702, 0.209752262, -0.000837064814, 0.378376961, 0.925651312),0.3)
  1350. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36363268, -0.052654691, 0.463338047, 0.0043214038, -0.925638735, 0.378383785, 0.999990404, 0.00432076212, -0.000850709621, -0.000847461633, 0.378383875, 0.925648451),0.3)
  1351. RT2.C0 = clerp(RT2.C0,CFrame.new(-2.57269716, -0.71919471, 0.46302259, -0.261101305, -0.893626034, 0.365046114, 0.96531117, -0.241381153, 0.0995475352, -0.000843007583, 0.378375083, 0.925651968),0.3)
  1352. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32388234, -0.0979054198, 0.155136421, 2.57161446e-06, -1, -2.98023224e-08, 1.00000012, 2.55089253e-06, 3.23494896e-06, -3.25404108e-06, 0, 1),0.3)
  1353. RR2.C0 = clerp(RR2.C0,CFrame.new(-2.61665893, -0.764993608, 0.154808521, -0.265272409, -0.964173555, -7.09295273e-06, 0.964173615, -0.265272349, -5.17070293e-06, 3.08873132e-06, -8.16583633e-06, 0.99999994),0.3)
  1354. RR3.C0 = clerp(RR3.C0,CFrame.new(-2.60069489, -1.61760163, 0.14783819, -0.55623138, -0.831027687, -6.09457493e-06, 0.831027627, -0.55623126, -2.35140324e-05, 1.61430798e-05, -1.8119812e-05, 1),0.3)
  1355. RS3.C0 = clerp(RS3.C0,CFrame.new(-2.44674897, -1.52429092, 0.407717556, -0.55623138, -0.831027687, -6.09457493e-06, 0.831027627, -0.55623126, -2.35140324e-05, 1.61430798e-05, -1.8119812e-05, 1),0.3)
  1356. RS2.C0 = clerp(RS2.C0,CFrame.new(-2.53335404, -0.711890757, 0.412843108, -0.265272409, -0.964173555, -7.09295273e-06, 0.964173615, -0.265272349, -5.17070293e-06, 3.08873132e-06, -8.16583633e-06, 0.99999994),0.3)
  1357. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33201814, -0.0549086258, 0.41316241, 2.57161446e-06, -1, -2.98023224e-08, 1.00000012, 2.55089253e-06, 3.23494896e-06, -3.25404108e-06, 0, 1),0.3)
  1358. RM2.C0 = clerp(RM2.C0,CFrame.new(-2.61599565, -0.767519593, -0.0742144436, -0.265272409, -0.964173555, -7.09295273e-06, 0.964173615, -0.265272349, -5.17070293e-06, 3.08873132e-06, -8.16583633e-06, 0.99999994),0.3)
  1359. RM3.C0 = clerp(RM3.C0,CFrame.new(-2.59925842, -1.61979342, -0.0811047256, -0.55623138, -0.831027687, -6.09457493e-06, 0.831027627, -0.55623126, -2.35140324e-05, 1.61430798e-05, -1.8119812e-05, 1),0.3)
  1360. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.32389092, -0.100519225, -0.0738827288, 2.57161446e-06, -1, -2.98023224e-08, 1.00000012, 2.55089253e-06, 3.23494896e-06, -3.25404108e-06, 0, 1),0.3)
  1361. RP2.C0 = clerp(RP2.C0,CFrame.new(-2.61518931, -0.770304918, -0.327144116, -0.265272409, -0.964173555, -7.09295273e-06, 0.964173615, -0.265272349, -5.17070293e-06, 3.08873132e-06, -8.16583633e-06, 0.99999994),0.3)
  1362. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32388139, -0.103401095, -0.326785713, 2.57161446e-06, -1, -2.98023224e-08, 1.00000012, 2.55089253e-06, 3.23494896e-06, -3.25404108e-06, 0, 1),0.3)
  1363. RP3.C0 = clerp(RP3.C0,CFrame.new(-2.59765077, -1.62217653, -0.334061176, -0.55623138, -0.831027687, -6.09457493e-06, 0.831027627, -0.55623126, -2.35140324e-05, 1.61430798e-05, -1.8119812e-05, 1),0.3)
  1364. LR3.C0 = clerp(LR3.C0,CFrame.new(-2.50362754, -1.76269495, -0.128636867, 0.556252837, -0.831013322, 6.51180744e-06, -0.831013143, -0.556252837, -4.09781933e-06, 7.01844692e-06, -3.12924385e-06, -1.00000012),0.3)
  1365. LT3.C0 = clerp(LT3.C0,CFrame.new(-2.42464495, -1.68732333, -0.468877375, 0.559906721, -0.76382637, 0.3210513, -0.828555167, -0.516583681, 0.215957373, 0.000895902514, -0.386924744, -0.922111094),0.3)
  1366. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.38321137, -0.197761506, -0.480284184, 0.00442438386, -0.922103286, 0.386918634, -0.999989927, -0.00442464277, 0.000890053809, 0.000891245902, -0.386918634, -0.922113538),0.3)
  1367. LT2.C0 = clerp(LT2.C0,CFrame.new(-2.55305004, -0.864332676, -0.480571091, 0.269542992, -0.887895226, 0.372812331, -0.962987959, -0.248886049, 0.103488967, 0.000900432467, -0.386908501, -0.922117829),0.3)
  1368. LR2.C0 = clerp(LR2.C0,CFrame.new(-2.57040381, -0.933295071, -0.121735282, 0.265284121, -0.964170456, -7.30156898e-07, -0.964170277, -0.265284151, 2.69711018e-06, -2.79396772e-06, -1.49011612e-08, -1.00000012),0.3)
  1369. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.3238914, -0.272474736, -0.121387586, 1.98073685e-05, -1, 3.84449959e-06, -1.00000012, -1.98241323e-05, -3.2402575e-05, 3.2402575e-05, -3.84449959e-06, -1),0.3)
  1370. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.332026, -0.235441238, -0.383450896, 1.98073685e-05, -1, 3.84449959e-06, -1.00000012, -1.98241323e-05, -3.2402575e-05, 3.2402575e-05, -3.84449959e-06, -1),0.3)
  1371. LM3.C0 = clerp(LM3.C0,CFrame.new(-2.50494647, -1.76068807, 0.0822853819, 0.556252837, -0.831013322, 6.51180744e-06, -0.831013143, -0.556252837, -4.09781933e-06, 7.01844692e-06, -3.12924385e-06, -1.00000012),0.3)
  1372. LS3.C0 = clerp(LS3.C0,CFrame.new(-2.3463347, -1.67428887, -0.388733745, 0.556252837, -0.831013322, 6.51180744e-06, -0.831013143, -0.556252837, -4.09781933e-06, 7.01844692e-06, -3.12924385e-06, -1.00000012),0.3)
  1373. LP2.C0 = clerp(LP2.C0,CFrame.new(-2.57173133, -0.928351641, 0.326236129, 0.265284121, -0.964170456, -7.30156898e-07, -0.964170277, -0.265284151, 2.69711018e-06, -2.79396772e-06, -1.49011612e-08, -1.00000012),0.3)
  1374. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32387996, -0.267357588, 0.326587409, 1.98073685e-05, -1, 3.84449959e-06, -1.00000012, -1.98241323e-05, -3.2402575e-05, 3.2402575e-05, -3.84449959e-06, -1),0.3)
  1375. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32389045, -0.270063698, 0.089538388, 1.98073685e-05, -1, 3.84449959e-06, -1.00000012, -1.98241323e-05, -3.2402575e-05, 3.2402575e-05, -3.84449959e-06, -1),0.3)
  1376. LS2.C0 = clerp(LS2.C0,CFrame.new(-2.48548055, -0.885903299, -0.383629501, 0.265284121, -0.964170456, -7.30156898e-07, -0.964170277, -0.265284151, 2.69711018e-06, -2.79396772e-06, -1.49011612e-08, -1.00000012),0.3)
  1377. LM2.C0 = clerp(LM2.C0,CFrame.new(-2.57099605, -0.93097049, 0.0891641006, 0.265284121, -0.964170456, -7.30156898e-07, -0.964170277, -0.265284151, 2.69711018e-06, -2.79396772e-06, -1.49011612e-08, -1.00000012),0.3)
  1378. LP3.C0 = clerp(LP3.C0,CFrame.new(-2.50646234, -1.75844562, 0.319372624, 0.556252837, -0.831013322, 6.51180744e-06, -0.831013143, -0.556252837, -4.09781933e-06, 7.01844692e-06, -3.12924385e-06, -1.00000012),0.3)
  1379. end
  1380. BlastFX(30,BrickColor.new'Light stone grey',V3.N(2,PlayerSize,2),rleg.CFrame*CF.N(0,-2,0),V3.N(10,1,10))
  1381. local hit = getRegion(torso.CFrame.p,15,{char})
  1382. for _,v in next, hit do
  1383. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid')then
  1384. DealDamage(v.Parent,15,30,1,"Normal")
  1385. end
  1386. end
  1387. local n = 180
  1388. for i = 1, n do
  1389. coroutine.wrap(function()
  1390. local cf = lleg.CFrame * CF.N(0,-2,0) * CF.A(0,M.P*2/n*i,0)*CF.N(0,0,10)
  1391. local hitfloor,posfloor = workspace:FindPartOnRay(Ray.new(cf.p,((CFrame.new(cf.p,cf.p - Vector3.new(0,1,0))).lookVector).unit * 4), char)
  1392. if(hitfloor)then
  1393. local block = NewInstance("Part",workspace,{CanCollide=false,Anchored=false,CFrame=cf*CF.N(0,1,0),BrickColor = hitfloor.BrickColor,Transparency=hitfloor.Transparency,Reflectance=hitfloor.Reflectance,Material=hitfloor.Material,Size=V3.N(2+M.RNG(-25,75)/100,2+M.RNG(-25,75)/100,2+M.RNG(-25,75)/100)})
  1394. local velocity = NewInstance("BodyVelocity",block,{P=500,maxForce=V3.N(M.H,M.H,M.H),velocity=V3.N(M.RNG(-10,10),M.RNG(5,10),M.RNG(-10,10))})
  1395. swait(15)
  1396. velocity:destroy()
  1397. end
  1398. end)()
  1399. end
  1400. swait(120)
  1401. neutralAnims = true
  1402. WalkSpeed = 8
  1403. Tween(RL,{Scale=V3.N(1,PlayerSize,2)},.6,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1404. swait(36)
  1405. Tween(RL,{Scale=V3.N(1,PlayerSize,1)},.6,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1406. swait(36)
  1407. Attack = false
  1408. RL:destroy()
  1409. end
  1410. function Taunt()
  1411. Attack = true
  1412. neutralAnims = false
  1413. local giggle = FX(176265509,10,1,head)
  1414. while giggle.Playing do
  1415. local Alpha = .2
  1416. swait()
  1417. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00653425185, -0.367415309+.4*M.S(time()*12), -0.572485209, 0.999995291, -0.00257562893, -0.000296123326, 0.00257599982, 0.974187136, 0.22572732, -0.000292910263, -0.225727022, 0.974189222),Alpha)
  1418. LH.C0 = clerp(LH.C0,CFrame.new(-0.503953636, -3.23575497-.4*M.S(time()*12), -0.0791287646, 1, 0.000350067159, -1.45565718e-06, -0.00034994795, 0.999533594, -0.0305390507, -9.23592597e-06, 0.0305390656, 0.999533653)*CF.A(M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30))),Alpha)
  1419. RH.C0 = clerp(RH.C0,CFrame.new(0.49835059, -3.15593815-.4*M.S(time()*12), -0.187087312, 0.999996603, 0.00258975197, -0.000121647492, -0.00257564802, 0.987003267, -0.160680294, -0.000296056271, 0.1606801, 0.987006545)*CF.A(M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30))),Alpha)
  1420. LS.C0 = clerp(LS.C0,CFrame.new(-1.43127036, 0.451340854, -0.462174714, 0.997353315, 0.0727057606, -0.000517063774, -0.0693833008, 0.949603021, -0.305679858, -0.0217336789, 0.304906696, 0.952134252)*CF.A(M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30))),Alpha)
  1421. RS.C0 = clerp(RS.C0,CFrame.new(1.41581738, 0.455256999, -0.457439601, 0.996124089, -0.0879578516, -0.000504340976, 0.0835438147, 0.947897792, -0.307425261, 0.0275185313, 0.306191564, 0.95157218)*CF.A(M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30))),Alpha)
  1422. NK.C0 = clerp(NK.C0,CFrame.new(-1.90670835e-06, 2.74999475, -7.62939453e-06, 1, 2.32830644e-10, -9.31322575e-10, 2.32830644e-10, 1, 0, -9.31322575e-10, 0, 1)*CF.A(M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30)),M.R(M.RNG(-30,30))),Alpha)
  1423. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  1424. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  1425. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  1426. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1427. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1428. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1429. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  1430. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  1431. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1432. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1433. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1434. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1435. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1436. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1437. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1438. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1439. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  1440. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  1441. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  1442. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1443. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1444. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1445. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1446. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1447. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1448. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1449. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1450. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1451. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1452. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1453. end
  1454. Attack = false
  1455. neutralAnims = true
  1456. end
  1457.  
  1458. function FuckYou()
  1459. Attack = true
  1460. neutralAnims = false
  1461. for i = 0, 1, 0.1 do
  1462. swait()
  1463. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.00491022924, 0.150342643, -0.430241644, 0.999993742, -0.00153528806, -0.00010153465, 0.00153500005, 0.990909874, 0.134519234, -0.000105913728, -0.134518534, 0.990906),0.3)
  1464. LH.C0 = clerp(LH.C0,CFrame.new(-0.500732899, -3.67427373, -0.0646588951, 0.999993742, 0.00153500005, -0.000105913728, -0.00153528806, 0.990909874, -0.134518534, -0.00010153465, 0.134519234, 0.990906),0.3)
  1465. RH.C0 = clerp(RH.C0,CFrame.new(0.499253213, -3.67580914, -0.0647604018, 0.999993742, 0.00153500005, -0.000105913728, -0.00153528806, 0.990909874, -0.134518534, -0.00010153465, 0.134519234, 0.990906),0.3)
  1466. LS.C0 = clerp(LS.C0,CFrame.new(-1.43846512, 0.498227417, -4.07661537e-06, 0.998342752, 0.0575486869, -9.6578151e-07, -0.0575486869, 0.998342752, -2.25007534e-06, 8.32602382e-07, 2.30967999e-06, 1.00000012),0.3)
  1467. RS.C0 = clerp(RS.C0,CFrame.new(0.940297365, 1.64152968, -0.0374116302, -0.0358937122, -0.0253289044, -0.999034703, -0.95639807, -0.28907603, 0.0416908972, -0.289852977, 0.956971049, -0.0138485003),0.3)
  1468. NK.C0 = clerp(NK.C0,CFrame.new(1.19201377e-06, 2.74261379, -0.000996351242, 1.00000012, -2.91038305e-11, 0, 1.16415322e-10, 0.993324518, -0.115354955, 9.31322575e-10, 0.11535497, 0.993324518),0.3)
  1469. RT3.C0 = clerp(RT3.C0,CFrame.new(-2.48911524, -1.55586731, 0.474759281, -0.552649975, -0.771624744, 0.314917922, 0.833413184, -0.511293769, 0.209765062, -0.000844340771, 0.378383338, 0.92564863),0.3)
  1470. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36367702, -0.0526425689, 0.4633497, 0.00430683792, -0.925637126, 0.378387868, 0.999990523, 0.00430384278, -0.00085362047, -0.000838372856, 0.378387809, 0.925646842),0.3)
  1471. RT2.C0 = clerp(RT2.C0,CFrame.new(-2.57269597, -0.719226956, 0.463091969, -0.261123598, -0.893614113, 0.365059316, 0.965305209, -0.241402701, 0.099553816, -0.000836394727, 0.378389418, 0.925646245),0.3)
  1472. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32395005, -0.097909227, 0.155159667, -1.07884407e-05, -1, 5.35137951e-06, 1.00000012, -1.07884407e-05, 6.40703365e-06, -6.40703365e-06, 5.34951687e-06, 1.00000012),0.3)
  1473. RR2.C0 = clerp(RR2.C0,CFrame.new(-2.6166935, -0.764995873, 0.154831141, -0.265279979, -0.96417141, 4.18908894e-06, 0.964171648, -0.265280008, -9.983778e-07, 2.0749867e-06, 3.77744436e-06, 1.00000012),0.3)
  1474. RR3.C0 = clerp(RR3.C0,CFrame.new(-2.60076976, -1.61759865, 0.147939563, -0.556234598, -0.831025302, 1.52736902e-06, 0.831025481, -0.556234598, -9.31881368e-06, 8.60122964e-06, -3.9152801e-06, 1.00000012),0.3)
  1475. RS3.C0 = clerp(RS3.C0,CFrame.new(-2.44678545, -1.52428412, 0.407759637, -0.556234598, -0.831025302, 1.52736902e-06, 0.831025481, -0.556234598, -9.31881368e-06, 8.60122964e-06, -3.9152801e-06, 1.00000012),0.3)
  1476. RS2.C0 = clerp(RS2.C0,CFrame.new(-2.5334239, -0.711895049, 0.412882298, -0.265279979, -0.96417141, 4.18908894e-06, 0.964171648, -0.265280008, -9.983778e-07, 2.0749867e-06, 3.77744436e-06, 1.00000012),0.3)
  1477. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33206296, -0.0549341328, 0.413169026, -1.07884407e-05, -1, 5.35137951e-06, 1.00000012, -1.07884407e-05, 6.40703365e-06, -6.40703365e-06, 5.34951687e-06, 1.00000012),0.3)
  1478. RM2.C0 = clerp(RM2.C0,CFrame.new(-0.98091644, -2.5455389, -0.462086409, -0.941852868, -0.314071566, -0.119467556, 0.32696858, -0.93857801, -0.110285565, -0.0774920732, -0.142934874, 0.986693859),0.3)
  1479. RM3.C0 = clerp(RM3.C0,CFrame.new(-0.48635602, -2.79032993, -0.468960643, -0.996911287, -0.00154927373, -0.0785218477, 0.0127522349, -0.989730775, -0.142374128, -0.0774949342, -0.142935663, 0.986693442),0.3)
  1480. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.32390904, -0.100513272, -0.0738428086, -1.07884407e-05, -1, 5.35137951e-06, 1.00000012, -1.07884407e-05, 6.40703365e-06, -6.40703365e-06, 5.34951687e-06, 1.00000012),0.3)
  1481. RP2.C0 = clerp(RP2.C0,CFrame.new(-2.61524796, -0.770285487, -0.327097982, -0.265279979, -0.96417141, 4.18908894e-06, 0.964171648, -0.265280008, -9.983778e-07, 2.0749867e-06, 3.77744436e-06, 1.00000012),0.3)
  1482. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32393694, -0.103402615, -0.326755345, -1.07884407e-05, -1, 5.35137951e-06, 1.00000012, -1.07884407e-05, 6.40703365e-06, -6.40703365e-06, 5.34951687e-06, 1.00000012),0.3)
  1483. RP3.C0 = clerp(RP3.C0,CFrame.new(-2.5977087, -1.62216866, -0.333958834, -0.556234598, -0.831025302, 1.52736902e-06, 0.831025481, -0.556234598, -9.31881368e-06, 8.60122964e-06, -3.9152801e-06, 1.00000012),0.3)
  1484. LR3.C0 = clerp(LR3.C0,CFrame.new(-2.50363731, -1.76269853, -0.128623277, 0.556233406, -0.831026256, -1.01327896e-06, -0.831026137, -0.556233406, 9.69320536e-06, -8.61659646e-06, -4.55975533e-06, -1),0.3)
  1485. LT3.C0 = clerp(LT3.C0,CFrame.new(-2.42464828, -1.68734479, -0.468878269, 0.559899807, -0.763836026, 0.321040273, -0.828559816, -0.516573429, 0.215964258, 0.000879591331, -0.386919409, -0.92211324),0.3)
  1486. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.38323879, -0.197775438, -0.480279565, 0.00441244617, -0.922105789, 0.386912972, -0.999989867, -0.00441200566, 0.00088926591, 0.000887067989, -0.386912942, -0.922115922),0.3)
  1487. LT2.C0 = clerp(LT2.C0,CFrame.new(-2.55308461, -0.864341974, -0.480537415, 0.269529641, -0.887898803, 0.372812748, -0.962991655, -0.248866722, 0.10350062, 0.000882614404, -0.386912107, -0.92211622),0.3)
  1488. LR2.C0 = clerp(LR2.C0,CFrame.new(-2.57037759, -0.93331933, -0.121699877, 0.265274286, -0.964173079, -5.96046448e-08, -0.964172959, -0.265274346, 3.81655991e-06, -3.69176269e-06, -9.53674316e-07, -1),0.3)
  1489. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390833, -0.272465348, -0.121396132, -3.04076821e-06, -1.00000012, 2.98023224e-08, -0.99999994, 3.03401612e-06, 3.37697566e-06, -3.37138772e-06, -4.47034836e-08, -1),0.3)
  1490. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.3320241, -0.235415176, -0.383377969, -3.04076821e-06, -1.00000012, 2.98023224e-08, -0.99999994, 3.03401612e-06, 3.37697566e-06, -3.37138772e-06, -4.47034836e-08, -1),0.3)
  1491. LM3.C0 = clerp(LM3.C0,CFrame.new(-2.50497794, -1.76070499, 0.0823027939, 0.556233406, -0.831026256, -1.01327896e-06, -0.831026137, -0.556233406, 9.69320536e-06, -8.61659646e-06, -4.55975533e-06, -1),0.3)
  1492. LS3.C0 = clerp(LS3.C0,CFrame.new(-2.34635568, -1.67428637, -0.388765872, 0.556233406, -0.831026256, -1.01327896e-06, -0.831026137, -0.556233406, 9.69320536e-06, -8.61659646e-06, -4.55975533e-06, -1),0.3)
  1493. LP2.C0 = clerp(LP2.C0,CFrame.new(-2.57173824, -0.928392828, 0.326286733, 0.265274286, -0.964173079, -5.96046448e-08, -0.964172959, -0.265274346, 3.81655991e-06, -3.69176269e-06, -9.53674316e-07, -1),0.3)
  1494. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390881, -0.26735279, 0.32663244, -3.04076821e-06, -1.00000012, 2.98023224e-08, -0.99999994, 3.03401612e-06, 3.37697566e-06, -3.37138772e-06, -4.47034836e-08, -1),0.3)
  1495. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390547, -0.27005899, 0.0895337462, -3.04076821e-06, -1.00000012, 2.98023224e-08, -0.99999994, 3.03401612e-06, 3.37697566e-06, -3.37138772e-06, -4.47034836e-08, -1),0.3)
  1496. LS2.C0 = clerp(LS2.C0,CFrame.new(-2.48551345, -0.885946035, -0.383605361, 0.265274286, -0.964173079, -5.96046448e-08, -0.964172959, -0.265274346, 3.81655991e-06, -3.69176269e-06, -9.53674316e-07, -1),0.3)
  1497. LM2.C0 = clerp(LM2.C0,CFrame.new(-2.5710206, -0.931001067, 0.0891880393, 0.265274286, -0.964173079, -5.96046448e-08, -0.964172959, -0.265274346, 3.81655991e-06, -3.69176269e-06, -9.53674316e-07, -1),0.3)
  1498. LP3.C0 = clerp(LP3.C0,CFrame.new(-2.50648189, -1.75845611, 0.319393873, 0.556233406, -0.831026256, -1.01327896e-06, -0.831026137, -0.556233406, 9.69320536e-06, -8.61659646e-06, -4.55975533e-06, -1),0.3)
  1499. end
  1500. swait(90)
  1501. neutralAnims = true
  1502. Attack = false
  1503. end
  1504.  
  1505. function GetTorso(char)
  1506. return char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart'
  1507. end
  1508.  
  1509. function DealDamage(who,minDam,maxDam,Knock,Type)
  1510. if(who)then
  1511. local hum = who:FindFirstChildOfClass'Humanoid'
  1512. local Damage = M.RNG(minDam,maxDam)
  1513. local canHit = true
  1514. if(hum)then
  1515. for _, p in pairs(Hit) do
  1516. if p[1] == hum then
  1517. if(time() - p[2] < 0.1) then
  1518. canHit = false
  1519. else
  1520. Hit[_] = nil
  1521. end
  1522. end
  1523. end
  1524. if(canHit)then
  1525. if(hum.Health >= math.huge)then
  1526. who:BreakJoints()
  1527. else
  1528. local player = S.Players:GetPlayerFromCharacter(who)
  1529. if(not player or not Teamed[player])then
  1530. if(Type == "Fire")then
  1531. --idk..
  1532. else
  1533. local c = Instance.new("ObjectValue",hum)
  1534. c.Name = "creator"
  1535. c.Value = plr
  1536. game:service'Debris':AddItem(c,0.35)
  1537. hum.Health = hum.Health - Damage
  1538. if(Type == 'Knockback' and GetTorso(who))then
  1539. local angle = GetTorso(who).Position - root.Position + Vector3.new(0, 0, 0).unit
  1540. local body = NewInstance('BodyVelocity',GetTorso(who),{
  1541. P = 500,
  1542. maxForce = V3.N(math.huge,0,math.huge),
  1543. velocity = root.CFrame.lookVector * Knock + root.Velocity / 1.05
  1544. })
  1545. game:service'Debris':AddItem(body,.5)
  1546. elseif(Type == 'Freeze' and GetTorso(who))then
  1547. local angle = GetTorso(who).Position - root.Position + Vector3.new(0, 0, 0).unit
  1548. local body = NewInstance('BodyPosition',GetTorso(who),{
  1549. P = 500,
  1550. D = 1,
  1551. MaxForce = V3.N(math.huge,0,math.huge),
  1552. Position = GetTorso(who).CFrame.p
  1553. })
  1554. game:service'Debris':AddItem(body,.5)
  1555. elseif(Type == 'Knockdown' and GetTorso(who))then
  1556. local rek = GetTorso(who)
  1557. print(rek)
  1558. hum.PlatformStand = true
  1559. delay(1,function()
  1560. hum.PlatformStand = false
  1561. end)
  1562. local angle = (GetTorso(who).Position - (root.Position + Vector3.new(0, 0, 0))).unit
  1563. local bodvol = NewInstance("BodyVelocity",rek,{
  1564. velocity = angle * Knock,
  1565. P = 5000,
  1566. maxForce = Vector3.new(8e+003, 8e+003, 8e+003),
  1567. })
  1568. local rl = NewInstance("BodyAngularVelocity",rek,{
  1569. P = 3000,
  1570. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  1571. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  1572. })
  1573. game:GetService("Debris"):AddItem(bodvol, .5)
  1574. game:GetService("Debris"):AddItem(rl, .5)
  1575. end
  1576. end
  1577. end
  1578. end
  1579. table.insert(Hit,{hum,time()})
  1580. end
  1581. end
  1582. end
  1583. end
  1584.  
  1585. function MagniDamage(pos,radius,mindamage,maxdamage,knockback,damagetype)
  1586. local Recursive
  1587. Recursive = function(whom)
  1588. for _,c in next, whom:children() do
  1589. local hum = c:FindFirstChildOfClass'Humanoid'
  1590. local hed = c:FindFirstChild'Torso' or c:FindFirstChild'UpperTorso' or c:FindFirstChild'LowerTorso'
  1591. if(hum and hed)then
  1592. local mag = (hed.CFrame.p - pos).magnitude
  1593. if(mag <= radius and c ~= char)then
  1594. DealDamage(c,mindamage,maxdamage,knockback,damagetype)
  1595. end
  1596. end
  1597. Recursive(c)
  1598. end
  1599. end
  1600. Recursive(workspace)
  1601. end
  1602.  
  1603. function MagniHeal(pos,radius,heal,needsTeamed)
  1604. for _,v in next, workspace:GetDescendants() do
  1605. local player = S.Players:GetPlayerFromCharacter(v)
  1606. local hum = v:FindFirstChildOfClass'Humanoid'
  1607. if(hum and v:IsA'Model')then
  1608. if(not needsTeamed or player and (not plr.Neutral and player.TeamColor == plr.TeamColor))then
  1609. local pp = v.PrimaryPart or v:FindFirstChild'Torso' or v:FindFirstChild'UpperTorso' or v:FindFirstChild'LowerTorso'
  1610. if(pp and (pp.CFrame.p-pos).magnitude <= radius)then
  1611. hum.Health = hum.Health + heal
  1612. end
  1613. end
  1614. end
  1615. end
  1616. end
  1617.  
  1618.  
  1619. Debounces:New('how2use',1) -- name, cooldown
  1620.  
  1621. function SpitAcid()
  1622. Attack = true
  1623. neutralAnims = false
  1624. if(Puddle)then Puddle:destroy() Puddle = nil end
  1625. for i = 0, 1, 0.1 do
  1626. swait()
  1627. RJ.C0 = clerp(RJ.C0,CFrame.new(0.015540313, -0.194137305, 1.36152554, 0.999978483, 0.00553973578, -0.00143473037, -0.00553999934, 0.874346554, -0.485270619, -0.00143382046, 0.485268205, 0.874358296),0.3)
  1628. LH.C0 = clerp(LH.C0,CFrame.new(-0.495259553, -3.55402684, 0.41450882, 0.999978483, -0.00553999934, -0.00143382046, 0.00553973578, 0.874346554, 0.485268205, -0.00143473037, -0.485270619, 0.874358296),0.3)
  1629. RH.C0 = clerp(RH.C0,CFrame.new(0.504710793, -3.54848552, 0.413077593, 0.999978483, -0.00553999934, -0.00143382046, 0.00553973578, 0.874346554, 0.485268205, -0.00143473037, -0.485270619, 0.874358296),0.3)
  1630. LS.C0 = clerp(LS.C0,CFrame.new(-1.66483569, -0.274379343, -0.698251367, 0.384908408, -0.477027953, 0.790120065, -0.21145758, -0.878884673, -0.427606821, 0.898404837, -0.00248748064, -0.439161271),0.3)
  1631. RS.C0 = clerp(RS.C0,CFrame.new(1.37159514, -0.44847852, -1.23277056, 0.521697402, 0.274750113, -0.807678282, 0.301484585, -0.945011377, -0.12673144, -0.798084557, -0.177387089, -0.575842798),0.3)
  1632. NK.C0 = clerp(NK.C0,CFrame.new(-3.1007221e-06, 2.74997783, 1.91554427e-05, 1, -4.65661287e-10, -9.31322575e-10, -4.65661287e-10, 1.00000024, 2.98023224e-08, -9.31322575e-10, 2.98023224e-08, 1),0.3)
  1633. RT3.C0 = clerp(RT3.C0,CFrame.new(-2.4890492, -1.55583262, 0.474699855, -0.552634418, -0.771629453, 0.314933747, 0.833423376, -0.511281967, 0.209752887, -0.000831574202, 0.378389925, 0.925646067),0.3)
  1634. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36362505, -0.0526267663, 0.463311166, 0.00432950258, -0.925636709, 0.378388762, 0.999990284, 0.00432765484, -0.000855326653, -0.000845819712, 0.378388792, 0.925646544),0.3)
  1635. RT2.C0 = clerp(RT2.C0,CFrame.new(-2.57266617, -0.719199896, 0.463027179, -0.261096984, -0.893622637, 0.365057617, 0.965312362, -0.241375238, 0.0995507389, -0.000844955444, 0.378387004, 0.92564714),0.3)
  1636. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32386756, -0.0978833809, 0.155133307, 3.75509262e-06, -1.00000012, 6.49690628e-06, 1, 3.7252903e-06, -7.65919685e-06, 7.68899918e-06, 6.49690628e-06, 1.00000012),0.3)
  1637. RR2.C0 = clerp(RR2.C0,CFrame.new(-2.61664414, -0.764966667, 0.154766977, -0.265265912, -0.964175463, 5.96046448e-08, 0.964175403, -0.265265882, -3.85940075e-06, 3.69548798e-06, -1.01327896e-06, 1),0.3)
  1638. RR3.C0 = clerp(RR3.C0,CFrame.new(-2.60068607, -1.61760664, 0.147925094, -0.556230366, -0.831028283, 1.02221966e-05, 0.831028283, -0.556230366, -1.60038471e-05, 1.89840794e-05, -4.17232513e-07, 1),0.3)
  1639. RS3.C0 = clerp(RS3.C0,CFrame.new(-2.4467001, -1.52426553, 0.407730699, -0.556230366, -0.831028283, 1.02221966e-05, 0.831028283, -0.556230366, -1.60038471e-05, 1.89840794e-05, -4.17232513e-07, 1),0.3)
  1640. RS2.C0 = clerp(RS2.C0,CFrame.new(-2.53333163, -0.711880744, 0.412846714, -0.265265912, -0.964175463, 5.96046448e-08, 0.964175403, -0.265265882, -3.85940075e-06, 3.69548798e-06, -1.01327896e-06, 1),0.3)
  1641. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.3319757, -0.054920394, 0.413150311, 3.75509262e-06, -1.00000012, 6.49690628e-06, 1, 3.7252903e-06, -7.65919685e-06, 7.68899918e-06, 6.49690628e-06, 1.00000012),0.3)
  1642. RM2.C0 = clerp(RM2.C0,CFrame.new(-2.61595607, -0.767494619, -0.074202612, -0.265265912, -0.964175463, 5.96046448e-08, 0.964175403, -0.265265882, -3.85940075e-06, 3.69548798e-06, -1.01327896e-06, 1),0.3)
  1643. RM3.C0 = clerp(RM3.C0,CFrame.new(-2.59923792, -1.61976969, -0.081080772, -0.556230366, -0.831028283, 1.02221966e-05, 0.831028283, -0.556230366, -1.60038471e-05, 1.89840794e-05, -4.17232513e-07, 1),0.3)
  1644. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.32380795, -0.100540474, -0.0739126056, 3.75509262e-06, -1.00000012, 6.49690628e-06, 1, 3.7252903e-06, -7.65919685e-06, 7.68899918e-06, 6.49690628e-06, 1.00000012),0.3)
  1645. RP2.C0 = clerp(RP2.C0,CFrame.new(-2.61518192, -0.770279586, -0.327113241, -0.265265912, -0.964175463, 5.96046448e-08, 0.964175403, -0.265265882, -3.85940075e-06, 3.69548798e-06, -1.01327896e-06, 1),0.3)
  1646. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.3238554, -0.103376672, -0.32674697, 3.75509262e-06, -1.00000012, 6.49690628e-06, 1, 3.7252903e-06, -7.65919685e-06, 7.68899918e-06, 6.49690628e-06, 1.00000012),0.3)
  1647. RP3.C0 = clerp(RP3.C0,CFrame.new(-2.5976193, -1.62214637, -0.333983809, -0.556230366, -0.831028283, 1.02221966e-05, 0.831028283, -0.556230366, -1.60038471e-05, 1.89840794e-05, -4.17232513e-07, 1),0.3)
  1648. LR3.C0 = clerp(LR3.C0,CFrame.new(-2.50360489, -1.7626704, -0.128580347, 0.556239069, -0.831022382, -8.19563866e-06, -0.831022322, -0.556239009, 1.50501728e-05, -1.70469284e-05, -1.54972076e-06, -1),0.3)
  1649. LT3.C0 = clerp(LT3.C0,CFrame.new(-2.42460489, -1.68731928, -0.468825698, 0.559906244, -0.763835907, 0.321029454, -0.828555644, -0.516578794, 0.215967864, 0.00087299943, -0.386912465, -0.922115982),0.3)
  1650. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.38321996, -0.19776459, -0.480273247, 0.00442242622, -0.922105253, 0.386913955, -0.999989867, -0.00441715121, 0.000902920961, 0.000876456499, -0.386913955, -0.922115326),0.3)
  1651. LT2.C0 = clerp(LT2.C0,CFrame.new(-2.55304503, -0.864306688, -0.480517149, 0.269535363, -0.887896836, 0.372813493, -0.962990224, -0.248867005, 0.103514582, 0.000870674849, -0.386916608, -0.922114253),0.3)
  1652. LR2.C0 = clerp(LR2.C0,CFrame.new(-2.57033348, -0.933283329, -0.121752061, 0.265276402, -0.964172482, 1.11758709e-05, -0.964172482, -0.265276432, 1.46627426e-05, -1.11460686e-05, -1.4603138e-05, -1),0.3)
  1653. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32388091, -0.272441268, -0.12135601, -2.50339508e-06, -1, -8.40425491e-06, -1, 2.44379044e-06, 5.1856041e-06, -5.1856041e-06, 8.40425491e-06, -1),0.3)
  1654. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202934, -0.235401109, -0.383343428, -2.50339508e-06, -1, -8.40425491e-06, -1, 2.44379044e-06, 5.1856041e-06, -5.1856041e-06, 8.40425491e-06, -1),0.3)
  1655. LM3.C0 = clerp(LM3.C0,CFrame.new(-2.50493479, -1.76065683, 0.0823381245, 0.556239069, -0.831022382, -8.19563866e-06, -0.831022322, -0.556239009, 1.50501728e-05, -1.70469284e-05, -1.54972076e-06, -1),0.3)
  1656. LS3.C0 = clerp(LS3.C0,CFrame.new(-2.34629893, -1.67424059, -0.388719767, 0.556239069, -0.831022382, -8.19563866e-06, -0.831022322, -0.556239009, 1.50501728e-05, -1.70469284e-05, -1.54972076e-06, -1),0.3)
  1657. LP2.C0 = clerp(LP2.C0,CFrame.new(-2.57168937, -0.928365827, 0.326213628, 0.265276402, -0.964172482, 1.11758709e-05, -0.964172482, -0.265276432, 1.46627426e-05, -1.11460686e-05, -1.4603138e-05, -1),0.3)
  1658. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32388473, -0.26733762, 0.326647788, -2.50339508e-06, -1, -8.40425491e-06, -1, 2.44379044e-06, 5.1856041e-06, -5.1856041e-06, 8.40425491e-06, -1),0.3)
  1659. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32385445, -0.270041019, 0.0895910338, -2.50339508e-06, -1, -8.40425491e-06, -1, 2.44379044e-06, 5.1856041e-06, -5.1856041e-06, 8.40425491e-06, -1),0.3)
  1660. LS2.C0 = clerp(LS2.C0,CFrame.new(-2.4854672, -0.885924935, -0.383642733, 0.265276402, -0.964172482, 1.11758709e-05, -0.964172482, -0.265276432, 1.46627426e-05, -1.11460686e-05, -1.4603138e-05, -1),0.3)
  1661. LM2.C0 = clerp(LM2.C0,CFrame.new(-2.57099056, -0.930950284, 0.0891320631, 0.265276402, -0.964172482, 1.11758709e-05, -0.964172482, -0.265276432, 1.46627426e-05, -1.11460686e-05, -1.4603138e-05, -1),0.3)
  1662. LP3.C0 = clerp(LP3.C0,CFrame.new(-2.50642467, -1.75841117, 0.319392979, 0.556239069, -0.831022382, -8.19563866e-06, -0.831022322, -0.556239009, 1.50501728e-05, -1.70469284e-05, -1.54972076e-06, -1),0.3)
  1663. end
  1664. swait(30)
  1665. for i = 0, 1, 0.1 do
  1666. swait()
  1667. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0100999596, -0.039863795, -0.884889722, 0.99998647, -0.00401634211, -0.000728871673, 0.00401599938, 0.93604964, 0.351844996, -0.000730870292, -0.351843148, 0.936053157),0.3)
  1668. LH.C0 = clerp(LH.C0,CFrame.new(-0.504433215, -3.54822564, -0.388769776, 0.99998647, 0.00401599938, -0.000730870292, -0.00401634211, 0.93604964, -0.351843148, -0.000728871673, 0.351844996, 0.936053157),0.3)
  1669. RH.C0 = clerp(RH.C0,CFrame.new(0.495588422, -3.56614351, -0.260721803, 0.999991715, 0.00408073515, -9.31769609e-05, -0.00401603896, 0.979543746, -0.201191202, -0.000729737803, 0.201189905, 0.979552031),0.3)
  1670. LS.C0 = clerp(LS.C0,CFrame.new(-1.7998625, 0.724884272, 0.87759918, 0.940968871, 0.338493019, -7.06408173e-07, -0.254011005, 0.706120729, 0.66096282, 0.223731786, -0.621945262, 0.750418663),0.3)
  1671. RS.C0 = clerp(RS.C0,CFrame.new(1.83249497, 0.794908404, 0.798889935, 0.956190884, -0.292743772, 1.0044314e-06, 0.212052315, 0.692630231, 0.689418018, -0.201823533, -0.659215093, 0.724363804),0.3)
  1672. NK.C0 = clerp(NK.C0,CFrame.new(1.07289861e-05, 2.72116423, -0.0044926405, 0.99999994, 5.82076609e-11, 0, -2.32830644e-10, 0.95272857, -0.303822696, -9.31322575e-10, 0.303822726, 0.95272857),0.3)
  1673. RT3.C0 = clerp(RT3.C0,CFrame.new(-2.48910308, -1.55586052, 0.474731147, -0.552644491, -0.77162528, 0.314926207, 0.83341676, -0.511289656, 0.209760725, -0.000838162377, 0.378387868, 0.925646842),0.3)
  1674. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366558, -0.0526419058, 0.463345706, 0.00431899726, -0.925635695, 0.378391564, 0.999990344, 0.00431863964, -0.000849686563, -0.00084762834, 0.378391474, 0.925645351),0.3)
  1675. RT2.C0 = clerp(RT2.C0,CFrame.new(-2.57270837, -0.719227016, 0.463089645, -0.261113733, -0.89361608, 0.365061849, 0.965307832, -0.241391331, 0.0995555148, -0.000841636211, 0.378392309, 0.925645173),0.3)
  1676. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32389426, -0.0979051962, 0.155150056, -1.11758709e-06, -1.00000012, 3.60608101e-06, 1.00000012, -1.11758709e-06, -1.8030405e-06, 1.78068876e-06, 3.60608101e-06, 1.00000012),0.3)
  1677. RR2.C0 = clerp(RR2.C0,CFrame.new(-2.61667109, -0.765011787, 0.154783443, -0.265277117, -0.964172244, -4.29153442e-06, 0.964172304, -0.265277088, -9.9777244e-06, 8.47131014e-06, -6.7949295e-06, 1.00000012),0.3)
  1678. RR3.C0 = clerp(RR3.C0,CFrame.new(-2.60072637, -1.61763644, 0.147926226, -0.556236744, -0.831024051, 2.68220901e-06, 0.831023932, -0.556236744, -3.23355198e-06, 4.14997339e-06, 4.47034836e-07, 1.00000012),0.3)
  1679. RS3.C0 = clerp(RS3.C0,CFrame.new(-2.44674635, -1.52429295, 0.40773946, -0.556236744, -0.831024051, 2.68220901e-06, 0.831023932, -0.556236744, -3.23355198e-06, 4.14997339e-06, 4.47034836e-07, 1.00000012),0.3)
  1680. RS2.C0 = clerp(RS2.C0,CFrame.new(-2.53337574, -0.711913884, 0.412858188, -0.265277117, -0.964172244, -4.29153442e-06, 0.964172304, -0.265277088, -9.9777244e-06, 8.47131014e-06, -6.7949295e-06, 1.00000012),0.3)
  1681. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33200336, -0.0549254641, 0.413162977, -1.11758709e-06, -1.00000012, 3.60608101e-06, 1.00000012, -1.11758709e-06, -1.8030405e-06, 1.78068876e-06, 3.60608101e-06, 1.00000012),0.3)
  1682. RM2.C0 = clerp(RM2.C0,CFrame.new(-2.61597395, -0.76752615, -0.0742166862, -0.265277117, -0.964172244, -4.29153442e-06, 0.964172304, -0.265277088, -9.9777244e-06, 8.47131014e-06, -6.7949295e-06, 1.00000012),0.3)
  1683. RM3.C0 = clerp(RM3.C0,CFrame.new(-2.59925842, -1.6197958, -0.0810529143, -0.556236744, -0.831024051, 2.68220901e-06, 0.831023932, -0.556236744, -3.23355198e-06, 4.14997339e-06, 4.47034836e-07, 1.00000012),0.3)
  1684. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.32389116, -0.100515939, -0.0738443434, -1.11758709e-06, -1.00000012, 3.60608101e-06, 1.00000012, -1.11758709e-06, -1.8030405e-06, 1.78068876e-06, 3.60608101e-06, 1.00000012),0.3)
  1685. RP2.C0 = clerp(RP2.C0,CFrame.new(-2.61521149, -0.770304263, -0.327131152, -0.265277117, -0.964172244, -4.29153442e-06, 0.964172304, -0.265277088, -9.9777244e-06, 8.47131014e-06, -6.7949295e-06, 1.00000012),0.3)
  1686. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32389212, -0.10340035, -0.326758802, -1.11758709e-06, -1.00000012, 3.60608101e-06, 1.00000012, -1.11758709e-06, -1.8030405e-06, 1.78068876e-06, 3.60608101e-06, 1.00000012),0.3)
  1687. RP3.C0 = clerp(RP3.C0,CFrame.new(-2.59766221, -1.62219429, -0.333963573, -0.556236744, -0.831024051, 2.68220901e-06, 0.831023932, -0.556236744, -3.23355198e-06, 4.14997339e-06, 4.47034836e-07, 1.00000012),0.3)
  1688. LR3.C0 = clerp(LR3.C0,CFrame.new(-2.50363922, -1.76270425, -0.128624678, 0.556234479, -0.831025481, 4.11272049e-06, -0.831025481, -0.556234419, 1.07884407e-05, -6.67572021e-06, -9.41753387e-06, -1.00000012),0.3)
  1689. LT3.C0 = clerp(LT3.C0,CFrame.new(-2.42464781, -1.68734825, -0.468857884, 0.559899807, -0.763837337, 0.321036875, -0.828559816, -0.516575038, 0.215960354, 0.000881046057, -0.386914432, -0.922115326),0.3)
  1690. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.38323569, -0.197784454, -0.48027727, 0.00441706181, -0.922104299, 0.38691622, -0.999989927, -0.00441691279, 0.000889614224, 0.000888649374, -0.38691619, -0.922114551),0.3)
  1691. LT2.C0 = clerp(LT2.C0,CFrame.new(-2.55306029, -0.864338577, -0.480565965, 0.269529104, -0.88789624, 0.372819602, -0.962991893, -0.248865172, 0.103502877, 0.00088198483, -0.38691923, -0.922113359),0.3)
  1692. LR2.C0 = clerp(LR2.C0,CFrame.new(-2.57037544, -0.933318377, -0.1217224, 0.265274465, -0.9641729, -1.13248825e-06, -0.9641729, -0.265274465, 6.37769699e-06, -6.43730164e-06, -5.96046448e-07, -1.00000012),0.3)
  1693. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32389402, -0.272476882, -0.121381931, 1.22189522e-06, -1, 1.37090683e-06, -1, -1.25169754e-06, 2.69711018e-06, -2.68220901e-06, -1.40070915e-06, -1),0.3)
  1694. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33200383, -0.235421643, -0.383394331, 1.22189522e-06, -1, 1.37090683e-06, -1, -1.25169754e-06, 2.69711018e-06, -2.68220901e-06, -1.40070915e-06, -1),0.3)
  1695. LM3.C0 = clerp(LM3.C0,CFrame.new(-2.50497532, -1.7607044, 0.0823014155, 0.556234479, -0.831025481, 4.11272049e-06, -0.831025481, -0.556234419, 1.07884407e-05, -6.67572021e-06, -9.41753387e-06, -1.00000012),0.3)
  1696. LS3.C0 = clerp(LS3.C0,CFrame.new(-2.3463378, -1.67427754, -0.388777852, 0.556234479, -0.831025481, 4.11272049e-06, -0.831025481, -0.556234419, 1.07884407e-05, -6.67572021e-06, -9.41753387e-06, -1.00000012),0.3)
  1697. LP2.C0 = clerp(LP2.C0,CFrame.new(-2.57172728, -0.928390741, 0.326271892, 0.265274465, -0.9641729, -1.13248825e-06, -0.9641729, -0.265274465, 6.37769699e-06, -6.43730164e-06, -5.96046448e-07, -1.00000012),0.3)
  1698. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32388711, -0.267366409, 0.326589435, 1.22189522e-06, -1, 1.37090683e-06, -1, -1.25169754e-06, 2.69711018e-06, -2.68220901e-06, -1.40070915e-06, -1),0.3)
  1699. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32389832, -0.270066559, 0.0895250589, 1.22189522e-06, -1, 1.37090683e-06, -1, -1.25169754e-06, 2.69711018e-06, -2.68220901e-06, -1.40070915e-06, -1),0.3)
  1700. LS2.C0 = clerp(LS2.C0,CFrame.new(-2.48550272, -0.885945439, -0.383622199, 0.265274465, -0.9641729, -1.13248825e-06, -0.9641729, -0.265274465, 6.37769699e-06, -6.43730164e-06, -5.96046448e-07, -1.00000012),0.3)
  1701. LM2.C0 = clerp(LM2.C0,CFrame.new(-2.57100058, -0.93100369, 0.089171268, 0.265274465, -0.9641729, -1.13248825e-06, -0.9641729, -0.265274465, 6.37769699e-06, -6.43730164e-06, -5.96046448e-07, -1.00000012),0.3)
  1702. LP3.C0 = clerp(LP3.C0,CFrame.new(-2.50648022, -1.75845373, 0.319384903, 0.556234479, -0.831025481, 4.11272049e-06, -0.831025481, -0.556234419, 1.07884407e-05, -6.67572021e-06, -9.41753387e-06, -1.00000012),0.3)
  1703. end
  1704. AcidDrop(head.CFrame * CF.N(0,0,head.Size.Z/2).p,head.CFrame * CF.N(0,0,-head.Size.Z).p,10)
  1705. swait(30)
  1706. neutralAnims = true
  1707. Attack = false
  1708. end
  1709.  
  1710.  
  1711.  
  1712. function newBezier(startpos, pos2, pos3, endpos, t)
  1713. local A = startpos:lerp(pos2, t)
  1714. local B =pos2:lerp(pos3, t)
  1715. local C = pos3:lerp(endpos, t)
  1716. local lerp1 = A:lerp(B, t)
  1717. local lerp2 = B:lerp(C, t)
  1718. local cubic = lerp1:lerp(lerp2, t)
  1719. return cubic
  1720. end
  1721.  
  1722. function HandOut()
  1723. if(Puddle and Puddle.Parent and Puddle:IsA'BasePart')then
  1724. local hand = NewInstance("Part",char,{Name='Hand',Size = V3.N(3, 5, 3),Anchored=true,CanCollide=false,CFrame = Puddle.CFrame*CF.N(0,2,0)*CF.A(M.R(90),0,0),BrickColor=BrickColor.new'Royal purple'})
  1725. local mesh = NewInstance("SpecialMesh",hand,{MeshId = 'http://www.roblox.com/asset/?id=32054761'})
  1726. local origin = Puddle.CFrame.p
  1727. swait(60)
  1728.  
  1729. for i = 0, 1, .005 do
  1730. hand.CFrame = hand.CFrame:lerp(Puddle.CFrame*CF.N(0,-1,0),i)
  1731. swait()
  1732. end
  1733. swait()
  1734. local MPos
  1735. if(mouse.Target and mouse.Target.Parent and not mouse.Target.Anchored and mouse.Target.Parent:FindFirstChildOfClass'Humanoid')then
  1736. MPos = NewInstance("Part",char,{Size=V3.N(.05,.05,.05),Anchored=false,CFrame = mouse.Target.CFrame,CanCollide=false,Transparency = 1})
  1737. NewInstance("Weld",MPos,{Part0=MPos,Part1=mouse.Target})
  1738. else
  1739. MPos = NewInstance("Part",char,{Size=V3.N(.05,.05,.05),Anchored=true,CanCollide=false,CFrame=CF.N(mouse.Hit.p),Transparency = 1})
  1740. end
  1741. local onefourth = hand.CFrame.p:Lerp(MPos.CFrame.p, 0.25) + Vector3.new(0, 125, 0)
  1742. local threefourths = hand.CFrame.p:Lerp(MPos.CFrame.p, 0.75) + Vector3.new(0, 15, 0)
  1743. hand.CanCollide = true
  1744. hand.Touched:connect(function(t)
  1745. if(t and t ~= Puddle and not char:IsAncestorOf(t))then
  1746. if(t.Parent)then DealDamage(t.Parent,24,37,1,"Freeze") end
  1747. for i = 1, M.RNG(4,12) do
  1748. ShatterFX(75,BrickColor.new'Royal purple',V3.N(.75,3,.75),hand.CFrame)
  1749. end
  1750. hand:remove()
  1751. end
  1752. end)
  1753. for i = 0, 1, .01 do
  1754. hand.CFrame = CFrame.new(newBezier(origin, onefourth, threefourths, MPos.CFrame.p, i))
  1755. swait()
  1756. end
  1757. if(not MPos:FindFirstChildOfClass'JointInstance')then
  1758. MPos:destroy()
  1759. end
  1760. if(hand.Parent)then
  1761. local hit = getRegion(hand.CFrame.p,5,{char})
  1762. for _,t in next, hit do if(t.Parent)then DealDamage(t.Parent,24,37,1,"Freeze") end end
  1763. for i = 1, M.RNG(4,12) do
  1764. ShatterFX(75,BrickColor.new'Royal purple',V3.N(.75,3,.75),hand.CFrame)
  1765. end
  1766. hand:destroy()
  1767. end
  1768. end
  1769. end
  1770. function ClickCombo()
  1771. Attack = true
  1772. neutralAnims = false
  1773. if(combo == 1)then
  1774. for i = 0, 1, 0.1 do
  1775. swait()
  1776. RJ.C0 = clerp(RJ.C0,CFrame.new(-7.02885164e-23, -0.477379799, 0, 1.00000012, 1.47238149e-22, -9.31322575e-10, 1.47238149e-22, 1, 0, -9.31322575e-10, 0, 1.00000012),0.3)
  1777. LH.C0 = clerp(LH.C0,CFrame.new(-0.500006497, -3.31968737, -0.306620896, 1.00000012, -8.39726999e-06, 1.92523003e-05, -1.22691697e-14, 0.916591704, 0.399824798, -2.10031867e-05, -0.399824798, 0.916591704),0.3)
  1778. RH.C0 = clerp(RH.C0,CFrame.new(0.499969989, -3.0428009, -0.199903578, 1.00000012, -7.1967952e-06, 3.52757052e-05, -1.22692028e-14, 0.979815483, 0.199904054, -3.60021368e-05, -0.199904054, 0.979815543),0.3)
  1779. LS.C0 = clerp(LS.C0,CFrame.new(-1.49998367, 0.867262006, 0.637470126, 1.00000012, 1.93808228e-06, 5.10830432e-07, -1.22691249e-14, 0.25498715, -0.966944456, -2.00420618e-06, 0.966944575, 0.254987121),0.3)
  1780. RS.C0 = clerp(RS.C0,CFrame.new(1.70605004, 0.556896687, 0.0270632394, 0.986828983, -0.140310809, -0.0805086344, 0.140768006, 0.990042686, 3.39962594e-06, 0.0797065049, -0.0113363955, 0.996753991),0.3)
  1781. NK.C0 = clerp(NK.C0,CFrame.new(4.04903294e-22, 2.74998903, 0, 1.00000012, 1.47238149e-22, -9.31322575e-10, 1.47238149e-22, 1, 0, -9.31322575e-10, 0, 1.00000012),0.3)
  1782. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  1783. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  1784. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  1785. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1786. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1787. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1788. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  1789. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  1790. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1791. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1792. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1793. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1794. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1795. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1796. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1797. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1798. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  1799. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  1800. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  1801. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1802. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1803. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1804. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1805. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1806. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1807. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1808. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1809. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1810. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1811. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1812. end
  1813. for i = 0, 1, 0.1 do
  1814. swait()
  1815. RJ.C0 = clerp(RJ.C0,CFrame.new(-2.90067487e-22, -1.97005653, 0, 1.00000012, 1.47238149e-22, -9.31322575e-10, 1.47238149e-22, 1, 0, -9.31322575e-10, 0, 1.00000012),0.3)
  1816. LH.C0 = clerp(LH.C0,CFrame.new(-0.500014246, -1.98754454, -0.674639285, 1.00000012, -8.39726999e-06, 1.92523003e-05, -1.22691697e-14, 0.916591704, 0.399824798, -2.10031867e-05, -0.399824798, 0.916591704),0.3)
  1817. RH.C0 = clerp(RH.C0,CFrame.new(0.499993473, -3.04685092, 0.134115517, 1, -5.18932939e-05, 3.91616486e-05, -1.22692697e-14, 0.602376044, 0.798212409, -6.50119036e-05, -0.798212469, 0.602376044),0.3)
  1818. LS.C0 = clerp(LS.C0,CFrame.new(-0.715852439, 1.21197295, -1.48773456, 1.00000012, 8.87550414e-07, 4.703179e-07, -1.22691223e-14, 0.468247831, -0.883597195, -1.00489706e-06, 0.883597255, 0.468247861),0.3)
  1819. RS.C0 = clerp(RS.C0,CFrame.new(1.70605004, 0.556896687, 0.0270632394, 0.986828983, -0.140310809, -0.0805086344, 0.140768006, 0.990042686, 3.39962594e-06, 0.0797065049, -0.0113363955, 0.996753991),0.3)
  1820. NK.C0 = clerp(NK.C0,CFrame.new(-1.38261557e-05, 2.72929239, -0.13027066, 1, 3.25473957e-06, -1.0503456e-05, -1.22690944e-14, 0.955193102, 0.295983344, 1.09951943e-05, -0.295983374, 0.955193102),0.3)
  1821. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  1822. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  1823. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  1824. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1825. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1826. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1827. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  1828. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  1829. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1830. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1831. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1832. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1833. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1834. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1835. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1836. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1837. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  1838. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  1839. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  1840. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1841. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1842. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1843. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1844. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1845. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1846. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1847. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1848. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1849. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1850. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1851. end
  1852. combo = 2
  1853. elseif(combo == 2)then
  1854. for i = 0, 1, 0.1 do
  1855. swait()
  1856. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0719693825, -0.353631526, -0.413391739, 0.962401688, -0.001369123, -0.27162689, 0.033931002, 0.992760718, 0.115217045, 0.269502699, -0.120101668, 0.955481052),0.3)
  1857. LH.C0 = clerp(LH.C0,CFrame.new(-0.433303148, -3.2528758, 0.0569465011, 0.962403357, -0.0090713799, 0.27147305, -0.00136984326, 0.999267459, 0.0382471755, -0.271621138, -0.0371810794, 0.961685956),0.3)
  1858. RH.C0 = clerp(RH.C0,CFrame.new(0.53891623, -3.13483143, -0.180416405, 0.962402523, 0.0551176146, 0.265976518, -0.00136948295, 0.980168343, -0.198162407, -0.271623999, 0.190347731, 0.943391919),0.3)
  1859. LS.C0 = clerp(LS.C0,CFrame.new(-1.6279037, 0.576236188, 2.61447967e-05, 0.990744352, 0.135740772, -2.68220901e-07, -0.135740772, 0.990744531, 6.82473183e-06, 1.1920929e-06, -6.73532486e-06, 1.00000012),0.3)
  1860. RS.C0 = clerp(RS.C0,CFrame.new(1.49999416, 1.29762685, 0.522052169, 1.00000012, -3.66717577e-05, -5.24520874e-05, -2.49557197e-05, 0.5315485, -0.847027957, 5.89191914e-05, 0.847027898, 0.53154856),0.3)
  1861. NK.C0 = clerp(NK.C0,CFrame.new(0.0391526669, 2.73919129, -0.109213173, 0.962416291, -0.0704210624, 0.262289673, -4.28291969e-06, 0.965792358, 0.259317219, -0.271578759, -0.249572277, 0.929493904),0.3)
  1862. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  1863. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  1864. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  1865. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1866. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1867. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1868. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  1869. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  1870. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1871. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1872. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1873. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1874. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1875. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1876. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1877. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1878. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  1879. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  1880. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  1881. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1882. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1883. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1884. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1885. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1886. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1887. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1888. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1889. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1890. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1891. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1892. end
  1893. for i = 0, 1, 0.1 do
  1894. swait()
  1895. RJ.C0 = clerp(RJ.C0,CFrame.new(-0.0813708305, -2.69321704, -1.23718476, 0.962178767, -0.00437435461, -0.272383779, 0.108303025, 0.923599899, 0.367741197, 0.249964997, -0.383332729, 0.889142096),0.3)
  1896. LH.C0 = clerp(LH.C0,CFrame.new(-0.612414181, -2.61676741, -0.58435607, 0.962175846, -0.176673144, 0.207375079, -0.00436975388, 0.751099944, 0.660174072, -0.272394449, -0.63610971, 0.721918225),0.3)
  1897. RH.C0 = clerp(RH.C0,CFrame.new(0.631126463, -1.96321011, 0.126580298, 0.962188601, -0.0960594863, 0.254884005, -0.00438930653, 0.930161417, 0.367124468, -0.272349089, -0.354361773, 0.894569099),0.3)
  1898. LS.C0 = clerp(LS.C0,CFrame.new(-1.62790465, 0.576236606, 1.48463241e-05, 0.99074477, 0.13573873, 1.93715096e-07, -0.135738745, 0.99074465, 1.45435333e-05, 1.75833702e-06, -1.44839287e-05, 1),0.3)
  1899. RS.C0 = clerp(RS.C0,CFrame.new(0.0498194098, 1.70575428, -1.8470602, 0.881212294, 0.303609133, -0.362334967, -0.352427393, -0.0888988078, -0.931607127, -0.315055639, 0.948640347, 0.0286614001),0.3)
  1900. NK.C0 = clerp(NK.C0,CFrame.new(0.0391607434, 2.73919177, -0.10924077, 0.96241641, -0.0704233274, 0.262288958, -4.28315252e-06, 0.965789855, 0.259325653, -0.27157864, -0.249580353, 0.929491699),0.3)
  1901. RT3.C0 = clerp(RT3.C0,CFrame.new(1.61375785, -1.76555657, -0.513190091, -0.55665189, 0.810403109, 0.182717308, -0.771965683, -0.585860789, 0.24665007, 0.306932837, -0.00375326723, 0.951723814),Alpha)
  1902. RT1.C0 = clerp(RT1.C0,CFrame.new(-2.36366892, -0.0526333712, 0.463351786, 0.00432222337, -0.925635338, 0.378392518, 0.999990284, 0.00432161195, -0.000850837678, -0.000847693533, 0.378392458, 0.925644875),Alpha)
  1903. RT2.C0 = clerp(RT2.C0,CFrame.new(1.2538718, -2.21410918, -0.524856687, -0.771987855, 0.583863854, 0.251272887, -0.556619704, -0.811843097, 0.176310748, 0.306935579, -0.00375370681, 0.95172298),Alpha)
  1904. RR1.C0 = clerp(RR1.C0,CFrame.new(-2.32391119, -0.0978909656, 0.155143276, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1905. RR2.C0 = clerp(RR2.C0,CFrame.new(1.25468278, -2.23918462, 0.480947077, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1906. RR3.C0 = clerp(RR3.C0,CFrame.new(1.53806043, -1.79355478, 0.474106222, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1907. RS3.C0 = clerp(RS3.C0,CFrame.new(1.49055731, -1.77398741, 0.730609715, -0.660822511, 0.739318788, -0.129311174, -0.748390913, -0.662110388, 0.0389984399, -0.0567859784, 0.12254636, 0.990836978),Alpha)
  1908. RS2.C0 = clerp(RS2.C0,CFrame.new(1.12350154, -2.19243288, 0.735727072, -0.863375664, 0.492343336, -0.110365942, -0.501357257, -0.861730874, 0.0778523907, -0.0567756221, 0.122548625, 0.990837216),Alpha)
  1909. RS1.C0 = clerp(RS1.C0,CFrame.new(-2.33202672, -0.0549109876, 0.413173437, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1910. RM2.C0 = clerp(RM2.C0,CFrame.new(1.255373, -2.24170375, 0.251963019, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1911. RM3.C0 = clerp(RM3.C0,CFrame.new(1.5395211, -1.79571998, 0.245096236, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1912. RM1.C0 = clerp(RM1.C0,CFrame.new(-2.323915, -0.100503564, -0.0738568455, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1913. RP2.C0 = clerp(RP2.C0,CFrame.new(1.25615263, -2.2444911, -0.000960677862, -0.837398887, 0.534489512, -0.114386044, -0.543847382, -0.835691392, 0.0764864087, -0.0547102317, 0.12625818, 0.990487635),Alpha)
  1914. RP1.C0 = clerp(RP1.C0,CFrame.new(-2.32391214, -0.103389643, -0.32676369, 1.57009345e-06, -1.00000012, -2.98023224e-08, 1.00000012, 1.5682308e-06, -4.15183604e-06, 4.15369868e-06, -2.98023224e-08, 1.00000012),Alpha)
  1915. RP3.C0 = clerp(RP3.C0,CFrame.new(1.54112804, -1.79812348, -0.0077983737, -0.622754991, 0.771082699, -0.132693976, -0.780500948, -0.624092042, 0.0364325941, -0.0547206923, 0.126256362, 0.990487337),Alpha)
  1916. LR3.C0 = clerp(LR3.C0,CFrame.new(1.45705879, -1.89598083, -0.385099679, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1917. LT3.C0 = clerp(LT3.C0,CFrame.new(1.40952325, -1.97281897, 0.526059091, 0.671315253, 0.714624286, 0.196591273, 0.679187477, -0.699324131, 0.222823307, 0.296715915, -0.0160623491, -0.954830825),Alpha)
  1918. LT1.C0 = clerp(LT1.C0,CFrame.new(-2.3832376, -0.197773144, -0.480284959, 0.00441737333, -0.922104299, 0.38691628, -0.999989927, -0.00441598753, 0.000892503187, 0.000885637477, -0.38691628, -0.922114491),Alpha)
  1919. LT2.C0 = clerp(LT2.C0,CFrame.new(0.99463892, -2.34625196, 0.514375746, 0.851474643, 0.457154393, 0.256906241, 0.432377875, -0.889242351, 0.14932391, 0.296715945, -0.0160649493, -0.954830766),Alpha)
  1920. LR2.C0 = clerp(LR2.C0,CFrame.new(1.14547455, -2.31078553, -0.378219754, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1921. LR1.C0 = clerp(LR1.C0,CFrame.new(-2.32390952, -0.272462696, -0.121384747, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1922. LS1.C0 = clerp(LS1.C0,CFrame.new(-2.33202744, -0.23541376, -0.383374184, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1923. LM3.C0 = clerp(LM3.C0,CFrame.new(1.45572555, -1.89398086, -0.174214169, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1924. LS3.C0 = clerp(LS3.C0,CFrame.new(1.49722528, -1.81738269, -0.636980891, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1925. LP2.C0 = clerp(LP2.C0,CFrame.new(1.14411652, -2.30584955, 0.0697559863, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1926. LP1.C0 = clerp(LP1.C0,CFrame.new(-2.32390475, -0.267352402, 0.326590419, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1927. LM1.C0 = clerp(LM1.C0,CFrame.new(-2.32390952, -0.270056516, 0.0895184278, 1.38167525e-06, -1.00000012, -2.98023224e-08, -1.00000012, -1.37358438e-06, 4.16254625e-06, -4.16301191e-06, 2.23517418e-08, -1),Alpha)
  1928. LS2.C0 = clerp(LS2.C0,CFrame.new(1.11611402, -2.23573709, -0.631830394, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1929. LM2.C0 = clerp(LM2.C0,CFrame.new(1.14484239, -2.30846381, -0.167330459, 0.893870652, 0.431845099, -0.120437428, 0.43948552, -0.897118986, 0.0450592563, -0.0885880589, -0.0932076424, -0.991697848),Alpha)
  1930. LP3.C0 = clerp(LP3.C0,CFrame.new(1.45421648, -1.89172983, 0.0628871024, 0.709296346, 0.693098009, -0.128506631, 0.699321926, -0.714791417, 0.00471635535, -0.088586539, -0.0932127982, -0.99169755),Alpha)
  1931. end
  1932. combo = 1
  1933. end
  1934. lastClick = time()
  1935. neutralAnims = true
  1936. Attack = false
  1937. end
  1938. mouse.Button1Down:connect(function()
  1939. if(Attack)then return end
  1940. ClickCombo()
  1941. end)
  1942. mouse.KeyDown:connect(function(k)
  1943. if(Attack)then return end
  1944. if(k == '\\')then
  1945. FuckYou()
  1946. elseif(k == 'q')then
  1947. SpitAcid()
  1948. elseif(k == 'e')then
  1949. Stomp()
  1950. elseif(k == 't')then
  1951. Taunt()
  1952. elseif(k == 'f')then
  1953. HandOut()
  1954. elseif(k == 'r')then
  1955. Eat()
  1956. elseif(k == 'y')then
  1957. torso.CFrame = mouse.Hit*CF.N(0,PlayerSize+.5,0)
  1958. end
  1959. end)
  1960.  
  1961. runService.RenderStepped:connect(function()
  1962. if(not Attack and combo ~= 1 and time()-lastClick > 0.4)then
  1963. combo = 1
  1964. end
  1965. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement