Advertisement
okban

Untitled

Mar 18th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 195.14 KB | None | 0 0
  1. -- DONT EDIT NOTHING IN THE SCRIPT IF YOU DONT KNOW WHAT YOU DOING!
  2. -- This script is for iiFireGamingOfDoom.
  3. wait(2)
  4. local InputService=game:GetService("UserInputService")
  5. local Camera=game.Workspace.CurrentCamera
  6. local Player=game.Players.LocalPlayer
  7. local Character=Player.Character
  8. local Head=Character.Head
  9. local Torso=Character.Torso
  10. local RootPart=Character.HumanoidRootPart
  11. local RootJoint=RootPart.RootJoint
  12. local Neck=Torso.Neck
  13. Camera.FieldOfView=90
  14. Camera.CameraType="Scriptable"
  15. InputService.MouseBehavior = Enum.MouseBehavior.LockCenter
  16.  
  17.  
  18.  
  19. local v3=Vector3.new
  20. local cf=CFrame.new
  21. local components=cf().components
  22. local inverse=cf().inverse
  23. local fromAxisAngle=CFrame.fromAxisAngle
  24. local atan,atan2=math.atan,math.atan2
  25. local acos=math.acos
  26.  
  27. local function toAxisAngleFromVector(v)
  28. local z=v.z
  29. return z*z<0.99999 and v3(v.y,-v.x,0).unit*acos(-z) or v3()
  30. end
  31.  
  32. local function AxisAngleLookOrientation(c,v,t)--CFrame,Vector,Tween
  33. local c=c-c.p
  34. local rv=(inverse(c)*v).unit
  35. local rz=rv.z
  36. return rz*rz<0.99999 and c*fromAxisAngle(v3(rv.y,-rv.x,0),acos(-rz)*(t or 1)) or c
  37. end
  38.  
  39. local function AxisAngleLookNew(v,t)--CFrame,Vector,Tween
  40. local rv=v.unit
  41. local rz=rv.z
  42. return rz*rz<0.99999 and fromAxisAngle(v3(rv.y,-rv.x,0),acos(-rz)*(t or 1)) or cf()
  43. end
  44.  
  45. local function AxisAngleLook(c,v,t)--CFrame,Vector,Tween
  46. local rv=(inverse(c)*v).unit
  47. local rz=rv.z
  48. return rz*rz<0.99999 and c*fromAxisAngle(v3(rv.y,-rv.x,0),acos(-rz)*(t or 1)) or c
  49. end
  50.  
  51.  
  52.  
  53.  
  54. local Sensitivity=0.005
  55.  
  56.  
  57. local CameraDirection=Vector3.new(0,0,1)
  58.  
  59. local function EulerAnglesYX(l)
  60. local x,z=l.x,l.z
  61. return atan(l.y/(x*x+z*z)^0.5),-atan2(x,-z)
  62. end
  63.  
  64. local function AnglesXY(l)
  65. local z=l.z
  66. return atan2(l.y,-z),-atan2(l.x,-z)
  67. end
  68.  
  69. local function MouseMoved(Input)
  70. if Input.UserInputType==Enum.UserInputType.MouseMovement then
  71. local dx,dy=Input.Delta.x*Sensitivity,Input.Delta.y*Sensitivity
  72. local m2=dx*dx+dy*dy
  73. if m2>0 then
  74. CameraDirection=(AxisAngleLookOrientation(RootPart.CFrame,CameraDirection)*fromAxisAngle(v3(-dy,-dx,0),m2^0.5)).lookVector
  75. end
  76. local RootOrientation=RootPart.CFrame-RootPart.Position
  77. local RelativeDirection=RootOrientation:inverse()*CameraDirection
  78. local AngX,AngY=AnglesXY(RelativeDirection)--RootOrientation:inverse()*
  79. if AngX<-1.57*11/12 then
  80. local y,z,c,s=RelativeDirection.y,RelativeDirection.z,math.cos(-1.57*11/12-AngX),-math.sin(-1.57*11/12-AngX)
  81. z,y=z*c-y*s,z*s+y*c
  82. CameraDirection=RootOrientation*v3(RelativeDirection.x<0 and -(1-y*y-z*z)^0.5 or (1-y*y-z*z)^0.5,y,z)
  83. elseif AngX>1.57*11/12 then
  84. local y,z,c,s=RelativeDirection.y,RelativeDirection.z,math.cos(1.57*11/12-AngX),-math.sin(1.57*11/12-AngX)
  85. z,y=z*c-y*s,z*s+y*c
  86. CameraDirection=RootOrientation*v3(RelativeDirection.x<0 and -(1-y*y-z*z)^0.5 or (1-y*y-z*z)^0.5,y,z)
  87. end
  88. end
  89. end
  90.  
  91. local Mouse=Player:GetMouse()
  92.  
  93. local Zoom=-0.5
  94.  
  95. Mouse.KeyDown:connect(function(k)
  96. if k=="e" then
  97. Zoom=-0.5
  98. elseif k=="q" then
  99. Zoom=-0.5
  100. end
  101. end)
  102.  
  103. InputService.InputChanged:connect(MouseMoved)
  104.  
  105. Neck.C1=cf()
  106.  
  107. local _
  108. local DirectionBound=3.14159/3
  109. local CurrentAngY=0
  110.  
  111. local function CameraUpdate()
  112. Camera.CameraType="Scriptable"
  113. local cx,cz=CameraDirection.x,CameraDirection.z
  114. local rvx,rvz=RootPart.Velocity.x,RootPart.Velocity.z
  115. if rvx*rvx+rvz*rvz>4 and cx*rvx+cz*rvz<-0.5*(cx*cx+cz*cz)^0.5*(rvx*rvx+rvz*rvz)^0.5 then
  116. DirectionBound=math.min(DirectionBound*0.9,math.abs(CurrentAngY*0.9))
  117. else
  118. DirectionBound=DirectionBound*0.1+3.14159/3*0.9
  119. end
  120. local AngX,AngY=EulerAnglesYX((RootPart.CFrame-RootPart.Position):inverse()*CameraDirection)
  121. if AngY>DirectionBound then
  122. RootPart.CFrame=RootPart.CFrame*CFrame.Angles(0,AngY-DirectionBound,0)
  123. elseif AngY<-DirectionBound then
  124. RootPart.CFrame=RootPart.CFrame*CFrame.Angles(0,AngY+DirectionBound,0)
  125. end
  126. _,CurrentAngY=EulerAnglesYX((RootPart.CFrame-RootPart.Position):inverse()*CameraDirection)
  127. local CameraOrientation=AxisAngleLookNew((RootPart.CFrame-RootPart.Position):inverse()*CameraDirection,1)
  128. Neck.C0=CFrame.new(0,1,0)*CameraOrientation*CFrame.new(0,0.5,0)
  129. local PreCam=AxisAngleLook(RootPart.CFrame*cf(0,1,0),RootPart.CFrame*v3(0,1,0)+CameraDirection)*CFrame.new(0,0.825,0)
  130. if Zoom==8 then
  131. local Part,Position=Workspace:findPartOnRay(Ray.new(PreCam.p,PreCam.lookVector*-8),Character)
  132. Camera.CoordinateFrame=PreCam*CFrame.new(0,0,(Position-PreCam.p).magnitude)
  133. else
  134. Camera.CoordinateFrame=PreCam*CFrame.new(0,0,Zoom)
  135. end
  136. end
  137.  
  138. game:GetService("RunService").RenderStepped:connect(CameraUpdate)
  139. wait(1)
  140.  
  141. --Blade throw fixed, other various fixes.
  142.  
  143. script.Name = "Ether Blades"
  144. wait(0.05)
  145. local Module_Id = 0
  146. local Player = game:service("Players").LocalPlayer
  147. repeat
  148. wait()
  149. until Player.Character
  150. local Character = Player.Character
  151. local Char, Plr = Character, Player
  152. local Mouse = Player:GetMouse()
  153. local height = 0
  154. local IsLanded = false
  155. local NotifyKeyPresses = false
  156. local CanRun = false
  157. local CanJump = true
  158. local Torso = Char:WaitForChild("Torso")
  159. z = Instance.new("Sound", Torso)
  160. z.SoundId = "rbxassetid://170033633" -- Put Music ID Here.
  161. z.Looped = true
  162. z.Pitch = 0.85
  163. z.Volume = 1
  164. wait(.1)
  165. z:Play()
  166. local Head = Char:WaitForChild("Head")
  167. local Left_Arm = Char:WaitForChild("Left Arm")
  168. local Right_Arm = Char:WaitForChild("Right Arm")
  169. local Left_Leg = Char:WaitForChild("Left Leg")
  170. local Right_Leg = Char:WaitForChild("Right Leg")
  171. local HumanoidRootPart = Char:WaitForChild("HumanoidRootPart")
  172. local Humanoid = Char:WaitForChild("Humanoid")
  173. local DebounceKeyDown, DebounceState = false, false
  174. local DebounceAFKAnimations = false
  175. local sp = Torso
  176. local State, LastState, Mode = "Idle", "Normal", nil
  177. local AFKAnimSequenceCount, MaxSequenceCount = 0, 500
  178. local char, Char, plr, Plr = Character, Character, Player, Player
  179. local mouse, ms = Mouse, Mouse
  180. local dkd, debkd = DebounceKeyDown, DebounceKeyDown
  181. local dst, debst, ds, debs = DebounceState, DebounceState, DebounceState, DebounceState
  182. local daa, dafk, debafk = DebounceAFKAnimations, DebounceAFKAnimations, DebounceAFKAnimations
  183. local rs = game:service("RunService")
  184. local lrs = rs.RenderStepped
  185. local srs = rs.Heartbeat
  186. local lleg, rleg = Left_Leg, Right_Leg
  187. local larm, rarm = Left_Arm, Right_Arm
  188. local hed, torr, torso = Head, Torso, Torso
  189. local hum, root = Humanoid, HumanoidRootPart
  190. local vec3, vec2 = Vector3.new, Vector2.new
  191. local sin, cos, atan, rad, rand, rands = math.sin, math.cos, math.atan, math.rad, math.random, math.randomseed
  192. local cf, ang, eu = CFrame.new, CFrame.Angles, CFrame.fromEulerAnglesXYZ
  193. local bc, bcr, c3 = BrickColor.new, BrickColor.Random, Color3.new
  194. if hed:FindFirstChild("Running") then
  195. hed:WaitForChild("Running").Volume = 0
  196. end
  197. if Char:FindFirstChild("Animate") then
  198. local Anim = Char:WaitForChild("Animate")
  199. local Anim_2 = Anim:Clone()
  200. Anim_2.Disabled = true
  201. Anim_2.Parent = Char
  202. Anim.Disabled = true
  203. Anim_2.Disabled = false
  204. end
  205. do
  206. if Char:FindFirstChild("Health") then
  207. ypcall(game.Destroy, Char.Health)
  208. end
  209. Weld = function(to, from, c1)
  210.  
  211. local New_Weld = Instance.new("Weld", to)
  212. New_Weld.Part0 = from
  213. New_Weld.Part1 = to
  214. New_Weld.C1 = c1
  215. return New_Weld
  216. end
  217.  
  218. clerp = function(c1, c2, al)
  219.  
  220. local com1 = {c1.X, c1.Y, c1.Z, c1:toEulerAnglesXYZ()}
  221. local com2 = {c2.X, c2.Y, c2.Z, c2:toEulerAnglesXYZ()}
  222. for i,v in pairs(com1) do
  223. com1[i] = v + (com2[i] - v) * al
  224. end
  225. return cf(com1[1], com1[2], com1[3]) * ang(select(4, unpack(com1)))
  226. end
  227.  
  228. lerp = function(c1, c2, al)
  229.  
  230. return c1:lerp(c2, al)
  231. end
  232.  
  233. snd = function(Id, Parent)
  234.  
  235. local Sound = Instance.new("Sound", Parent)
  236. Sound.Pitch = 1
  237. Sound.Volume = 0.25
  238. Sound.Looped = false
  239. return Sound
  240. end
  241.  
  242. local sine, change = 0, 1
  243. local m = Instance.new("Model")
  244. m.Name = "Blade_"
  245. p1 = Instance.new("Part", m)
  246. p1.BrickColor = bc("Mulberry")
  247. p1.Material = Enum.Material.Ice
  248. p1.CFrame = cf(-7.75327206, 0.249948442, 23.8050709, 8.42213703e-05, -1.84584439e-06, 1, 8.27520998e-05, -1, -1.85281419e-06, 1, 8.27522599e-05, -8.42212103e-05)
  249. p1.CanCollide = false
  250. p1.FormFactor = Enum.FormFactor.Custom
  251. p1.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  252. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  253. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  254. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  255. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  256. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  257. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  258. b1 = Instance.new("SpecialMesh", p1)
  259. b1.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  260. b1.TextureId = ""
  261. b1.MeshType = Enum.MeshType.FileMesh
  262. b1.Name = "Mesh"
  263. b1.Scale = vec3(0.300000012, 0.200000003, 0.600000024)
  264. p2 = Instance.new("Part", m)
  265. p2.BrickColor = bc("Mulberry")
  266. p2.Material = Enum.Material.Ice
  267. p2.CFrame = cf(-7.75327206, 0.249948442, 23.8050709, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  268. p2.CanCollide = false
  269. p2.FormFactor = Enum.FormFactor.Custom
  270. p2.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  271. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  272. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  273. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  274. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  275. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  276. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  277. b2 = Instance.new("SpecialMesh", p2)
  278. b2.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  279. b2.TextureId = ""
  280. b2.MeshType = Enum.MeshType.FileMesh
  281. b2.Name = "Mesh"
  282. b2.Scale = vec3(0.300000012, 0.200000003, 0.600000024)
  283. p3 = Instance.new("Part", m)
  284. p3.BrickColor = bc("Mulberry")
  285. p3.Material = Enum.Material.Ice
  286. p3.CFrame = cf(-7.75324965, 0.44994536, 23.8050613, 8.42213703e-05, -1.84584439e-06, 1, 8.27520998e-05, -1, -1.85281419e-06, 1, 8.27522599e-05, -8.42212103e-05)
  287. p3.CanCollide = false
  288. p3.FormFactor = Enum.FormFactor.Custom
  289. p3.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  290. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  291. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  292. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  293. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  294. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  295. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  296. b3 = Instance.new("SpecialMesh", p3)
  297. b3.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  298. b3.TextureId = ""
  299. b3.MeshType = Enum.MeshType.FileMesh
  300. b3.Name = "Mesh"
  301. b3.Scale = vec3(0.300000012, 0.200000003, 0.600000024)
  302. p4 = Instance.new("Part", m)
  303. p4.BrickColor = bc("Really black")
  304. p4.Material = Enum.Material.SmoothPlastic
  305. p4.CFrame = cf(-7.75311041, 0.10003978, 26.0050869, 1, 1.71142547e-05, -3.41671621e-05, 1.71118536e-05, -1, -7.0290509e-05, -3.4168359e-05, 7.0289927e-05, -1)
  306. p4.CanCollide = false
  307. p4.FormFactor = Enum.FormFactor.Custom
  308. p4.Size = vec3(0.200000003, 0.200000003, 0.600000024)
  309. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  310. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  311. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  312. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  313. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  314. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  315. b4 = Instance.new("SpecialMesh", p4)
  316. b4.MeshType = Enum.MeshType.Wedge
  317. b4.Name = "Mesh"
  318. b4.Scale = vec3(0.5, 1, 1)
  319. p5 = Instance.new("Part", m)
  320. p5.BrickColor = bc("Really black")
  321. p5.Material = Enum.Material.SmoothPlastic
  322. p5.CFrame = cf(-8.00326824, 0.349939257, 23.5050945, 9.51142374e-06, -1, 2.92663335e-05, 1, 9.51279071e-06, 4.67159698e-05, -4.67162536e-05, 2.92658788e-05, 1)
  323. p5.CanCollide = false
  324. p5.FormFactor = Enum.FormFactor.Custom
  325. p5.Size = vec3(0.300000012, 0.5, 0.800000012)
  326. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  327. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  328. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  329. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  330. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  331. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  332. b5 = Instance.new("SpecialMesh", p5)
  333. b5.MeshType = Enum.MeshType.Wedge
  334. b5.Name = "Mesh"
  335. p6 = Instance.new("Part", m)
  336. p6.BrickColor = bc("Mulberry")
  337. p6.Material = Enum.Material.Ice
  338. p6.CFrame = cf(-7.75324965, 0.44994536, 23.8050613, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  339. p6.CanCollide = false
  340. p6.FormFactor = Enum.FormFactor.Custom
  341. p6.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  342. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  343. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  344. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  345. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  346. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  347. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  348. b6 = Instance.new("SpecialMesh", p6)
  349. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  350. b6.TextureId = ""
  351. b6.MeshType = Enum.MeshType.FileMesh
  352. b6.Name = "Mesh"
  353. b6.Scale = vec3(0.300000012, 0.200000003, 0.600000024)
  354. p7 = Instance.new("Part", m)
  355. p7.BrickColor = bc("Really black")
  356. p7.Material = Enum.Material.Sand
  357. p7.Name = "Handle"
  358. p7.CFrame = cf(-7.75322247, 0.350003362, 24.805069, -3.06218935e-05, 1.84542239e-06, 1, -8.27810727e-05, 1, -1.84795761e-06, -1, -8.27811309e-05, -3.06217335e-05)
  359. p7.CanCollide = false
  360. p7.FormFactor = Enum.FormFactor.Custom
  361. p7.Size = vec3(1.80000019, 0.300000012, 0.300000012)
  362. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  363. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  364. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  365. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  366. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  367. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  368. b7 = Instance.new("SpecialMesh", p7)
  369. b7.MeshType = Enum.MeshType.Cylinder
  370. b7.Name = "Mesh"
  371. p8 = Instance.new("Part", m)
  372. p8.BrickColor = bc("Mulberry")
  373. p8.Material = Enum.Material.Ice
  374. p8.CFrame = cf(-7.75307512, 0.350043178, 26.3050995, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  375. p8.CanCollide = false
  376. p8.FormFactor = Enum.FormFactor.Custom
  377. p8.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  378. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  379. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  380. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  381. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  382. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  383. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  384. b8 = Instance.new("SpecialMesh", p8)
  385. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  386. b8.TextureId = ""
  387. b8.MeshType = Enum.MeshType.FileMesh
  388. b8.Name = "Mesh"
  389. b8.Scale = vec3(0.219999999, 0.219999999, 0.5)
  390. p9 = Instance.new("Part", m)
  391. p9.BrickColor = bc("Really black")
  392. p9.Material = Enum.Material.SmoothPlastic
  393. p9.CFrame = cf(-7.50327206, 0.349928707, 23.5050468, -7.36239599e-05, 1, 8.20992573e-05, -1, -7.36337388e-05, 0.000119003467, 0.000119009514, -8.2090497e-05, 1)
  394. p9.CanCollide = false
  395. p9.FormFactor = Enum.FormFactor.Custom
  396. p9.Size = vec3(0.300000012, 0.5, 0.800000012)
  397. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  398. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  399. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  400. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  401. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  402. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  403. b9 = Instance.new("SpecialMesh", p9)
  404. b9.MeshType = Enum.MeshType.Wedge
  405. b9.Name = "Mesh"
  406. p10 = Instance.new("Part", m)
  407. p10.BrickColor = bc("Really black")
  408. p10.Material = Enum.Material.SmoothPlastic
  409. p10.CFrame = cf(-7.75313997, 0.600024462, 25.6050415, 1, 4.18487289e-05, 4.77320209e-05, -4.18528361e-05, 1, 8.60911168e-05, -4.7728412e-05, -8.60931177e-05, 1)
  410. p10.CanCollide = false
  411. p10.FormFactor = Enum.FormFactor.Custom
  412. p10.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  413. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  414. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  415. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  416. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  417. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  418. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  419. b10 = Instance.new("SpecialMesh", p10)
  420. b10.MeshType = Enum.MeshType.Wedge
  421. b10.Name = "Mesh"
  422. b10.Scale = vec3(0.5, 1, 1)
  423. p11 = Instance.new("Part", m)
  424. p11.BrickColor = bc("Really black")
  425. p11.Material = Enum.Material.SmoothPlastic
  426. p11.CFrame = cf(-8.00310135, 0.350052655, 26.0050964, 9.95122991e-06, -1, -8.21789436e-05, -1, -9.94328821e-06, -9.66310618e-05, 9.66302468e-05, 8.2179904e-05, -1)
  427. p11.CanCollide = false
  428. p11.FormFactor = Enum.FormFactor.Custom
  429. p11.Size = vec3(0.200000003, 0.200000003, 0.600000024)
  430. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  431. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  432. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  433. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  434. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  435. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  436. b11 = Instance.new("SpecialMesh", p11)
  437. b11.MeshType = Enum.MeshType.Wedge
  438. b11.Name = "Mesh"
  439. b11.Scale = vec3(0.5, 1, 1)
  440. p12 = Instance.new("Part", m)
  441. p12.BrickColor = bc("Really black")
  442. p12.Material = Enum.Material.SmoothPlastic
  443. p12.CFrame = cf(-8.00315189, 0.350035429, 25.6050777, 9.51142374e-06, -1, 2.92663335e-05, 1, 9.51279071e-06, 4.67159698e-05, -4.67162536e-05, 2.92658788e-05, 1)
  444. p12.CanCollide = false
  445. p12.FormFactor = Enum.FormFactor.Custom
  446. p12.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  447. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  448. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  449. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  450. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  451. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  452. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  453. b12 = Instance.new("SpecialMesh", p12)
  454. b12.MeshType = Enum.MeshType.Wedge
  455. b12.Name = "Mesh"
  456. b12.Scale = vec3(0.5, 1, 1)
  457. p13 = Instance.new("Part", m)
  458. p13.BrickColor = bc("Really black")
  459. p13.Material = Enum.Material.SmoothPlastic
  460. p13.CFrame = cf(-7.75314856, 0.35003832, 25.7050858, -3.06218935e-05, 1.84542239e-06, 1, -8.27810727e-05, 1, -1.84795761e-06, -1, -8.27811309e-05, -3.06217335e-05)
  461. p13.CanCollide = false
  462. p13.FormFactor = Enum.FormFactor.Custom
  463. p13.Size = vec3(0.400000006, 0.400000006, 0.400000006)
  464. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  465. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  466. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  467. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  468. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  469. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  470. b13 = Instance.new("SpecialMesh", p13)
  471. b13.MeshType = Enum.MeshType.Cylinder
  472. b13.Name = "Mesh"
  473. p14 = Instance.new("Part", m)
  474. p14.BrickColor = bc("Eggplant")
  475. p14.Material = Enum.Material.SmoothPlastic
  476. p14.CFrame = cf(-7.75314379, 0.350039691, 25.6050682, -0.258816183, -0.965926707, 1.57904815e-05, -6.06896647e-05, 3.26090558e-05, 1, -0.965926707, 0.258816183, -6.70615118e-05)
  477. p14.CanCollide = false
  478. p14.FormFactor = Enum.FormFactor.Custom
  479. p14.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  480. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  481. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  482. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  483. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  484. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  485. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  486. b14 = Instance.new("SpecialMesh", p14)
  487. b14.MeshType = Enum.MeshType.Cylinder
  488. b14.Name = "Mesh"
  489. b14.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  490. p15 = Instance.new("Part", m)
  491. p15.BrickColor = bc("Really black")
  492. p15.Material = Enum.Material.SmoothPlastic
  493. p15.CFrame = cf(-7.5031414, 0.350024939, 25.6050282, 4.12494637e-06, 1, 7.09887754e-05, -1, 4.11876863e-06, 8.70211079e-05, 8.70208169e-05, -7.09891247e-05, 1)
  494. p15.CanCollide = false
  495. p15.FormFactor = Enum.FormFactor.Custom
  496. p15.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  497. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  498. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  499. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  500. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  501. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  502. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  503. b15 = Instance.new("SpecialMesh", p15)
  504. b15.MeshType = Enum.MeshType.Wedge
  505. b15.Name = "Mesh"
  506. b15.Scale = vec3(0.5, 1, 1)
  507. p16 = Instance.new("Part", m)
  508. p16.BrickColor = bc("Really black")
  509. p16.Material = Enum.Material.SmoothPlastic
  510. p16.CFrame = cf(-7.50310516, 0.350042135, 26.0050392, -6.84391198e-05, 1, -4.03960548e-05, 1, 6.84385304e-05, -1.46136626e-05, -1.46109032e-05, -4.0397048e-05, -1)
  511. p16.CanCollide = false
  512. p16.FormFactor = Enum.FormFactor.Custom
  513. p16.Size = vec3(0.200000003, 0.200000003, 0.600000024)
  514. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  515. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  516. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  517. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  518. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  519. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  520. b16 = Instance.new("SpecialMesh", p16)
  521. b16.MeshType = Enum.MeshType.Wedge
  522. b16.Name = "Mesh"
  523. b16.Scale = vec3(0.5, 1, 1)
  524. p17 = Instance.new("Part", m)
  525. p17.BrickColor = bc("Dark indigo")
  526. p17.Material = Enum.Material.Neon
  527. p17.CFrame = cf(-7.48066139, 0.349874318, 22.2413902, -4.01375701e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382795e-06, -3.89064262e-05, -1, -1.83268639e-06)
  528. p17.CanCollide = false
  529. p17.FormFactor = Enum.FormFactor.Custom
  530. p17.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  531. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  532. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  533. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  534. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  535. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  536. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  537. b17 = Instance.new("SpecialMesh", p17)
  538. b17.MeshType = Enum.MeshType.Wedge
  539. b17.Name = "Mesh"
  540. b17.Scale = vec3(0.250003815, 1, 1)
  541. p18 = Instance.new("Part", m)
  542. p18.BrickColor = bc("Really black")
  543. p18.Material = Enum.Material.SmoothPlastic
  544. p18.CFrame = cf(-7.7531147, 0.600037873, 26.0050888, -1, 5.76474013e-05, -7.5282238e-05, 5.76494494e-05, 1, -2.71398258e-05, 7.52806664e-05, -2.71441659e-05, -1)
  545. p18.CanCollide = false
  546. p18.FormFactor = Enum.FormFactor.Custom
  547. p18.Size = vec3(0.200000003, 0.200000003, 0.600000024)
  548. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  549. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  550. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  551. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  552. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  553. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  554. b18 = Instance.new("SpecialMesh", p18)
  555. b18.MeshType = Enum.MeshType.Wedge
  556. b18.Name = "Mesh"
  557. b18.Scale = vec3(0.5, 1, 1)
  558. p19 = Instance.new("Part", m)
  559. p19.BrickColor = bc("Really black")
  560. p19.Material = Enum.Material.SmoothPlastic
  561. p19.CFrame = cf(-7.75312138, 0.100024462, 25.6050739, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  562. p19.CanCollide = false
  563. p19.FormFactor = Enum.FormFactor.Custom
  564. p19.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  565. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  566. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  567. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  568. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  569. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  570. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  571. b19 = Instance.new("SpecialMesh", p19)
  572. b19.MeshType = Enum.MeshType.Wedge
  573. b19.Name = "Mesh"
  574. b19.Scale = vec3(0.5, 1, 1)
  575. p20 = Instance.new("Part", m)
  576. p20.BrickColor = bc("Really black")
  577. p20.Material = Enum.Material.SmoothPlastic
  578. p20.CFrame = cf(-7.50325012, 0.34996599, 24.1050472, -6.28492053e-05, 1, -5.15577158e-05, 1, 6.28489579e-05, -4.93691687e-06, -4.93368634e-06, -5.15580177e-05, -1)
  579. p20.CanCollide = false
  580. p20.FormFactor = Enum.FormFactor.Custom
  581. p20.Size = vec3(0.300000012, 0.5, 0.400000006)
  582. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  583. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  584. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  585. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  586. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  587. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  588. b20 = Instance.new("SpecialMesh", p20)
  589. b20.MeshType = Enum.MeshType.Wedge
  590. b20.Name = "Mesh"
  591. p21 = Instance.new("Part", m)
  592. p21.BrickColor = bc("Really black")
  593. p21.Material = Enum.Material.SmoothPlastic
  594. p21.CFrame = cf(-8.00323772, 0.349970788, 24.105072, -9.59882018e-05, -1, -8.21833164e-05, -1, 9.59911267e-05, -3.54550102e-05, 3.54628974e-05, 8.2179904e-05, -1)
  595. p21.CanCollide = false
  596. p21.FormFactor = Enum.FormFactor.Custom
  597. p21.Size = vec3(0.300000012, 0.5, 0.400000006)
  598. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  599. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  600. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  601. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  602. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  603. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  604. b21 = Instance.new("SpecialMesh", p21)
  605. b21.MeshType = Enum.MeshType.Wedge
  606. b21.Name = "Mesh"
  607. p22 = Instance.new("Part", m)
  608. p22.BrickColor = bc("Dark indigo")
  609. p22.Material = Enum.Material.Neon
  610. p22.CFrame = cf(-8.02601433, 0.349957824, 23.6959991, -5.19071705e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25360747e-07, 0.000109730543, -1, -5.73098077e-05)
  611. p22.CanCollide = false
  612. p22.FormFactor = Enum.FormFactor.Custom
  613. p22.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  614. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  615. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  616. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  617. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  618. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  619. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  620. b22 = Instance.new("SpecialMesh", p22)
  621. b22.MeshType = Enum.MeshType.Wedge
  622. b22.Name = "Mesh"
  623. b22.Scale = vec3(0.250003815, 1, 1)
  624. p23 = Instance.new("Part", m)
  625. p23.BrickColor = bc("Really black")
  626. p23.Material = Enum.Material.Ice
  627. p23.CFrame = cf(-7.52600813, 0.349938989, 23.5595779, -6.28492053e-05, 1, -5.15577158e-05, 1, 6.28489579e-05, -4.93691687e-06, -4.93368634e-06, -5.15580177e-05, -1)
  628. p23.CanCollide = false
  629. p23.FormFactor = Enum.FormFactor.Custom
  630. p23.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  631. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  632. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  633. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  634. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  635. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  636. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  637. b23 = Instance.new("SpecialMesh", p23)
  638. b23.MeshType = Enum.MeshType.Wedge
  639. b23.Name = "Mesh"
  640. b23.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  641. p24 = Instance.new("Part", m)
  642. p24.BrickColor = bc("Really black")
  643. p24.Material = Enum.Material.Ice
  644. p24.CFrame = cf(-7.98062706, 0.349924982, 22.6505337, -5.19071705e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25360747e-07, 0.000109730543, -1, -5.73098077e-05)
  645. p24.CanCollide = false
  646. p24.FormFactor = Enum.FormFactor.Custom
  647. p24.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  648. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  649. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  650. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  651. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  652. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  653. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  654. b24 = Instance.new("SpecialMesh", p24)
  655. b24.MeshType = Enum.MeshType.Wedge
  656. b24.Name = "Mesh"
  657. b24.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  658. p25 = Instance.new("Part", m)
  659. p25.BrickColor = bc("Really black")
  660. p25.Material = Enum.Material.Ice
  661. p25.CFrame = cf(-7.5260458, 0.349902958, 22.8322964, -6.28492053e-05, 1, -5.15577158e-05, 1, 6.28489579e-05, -4.93691687e-06, -4.93368634e-06, -5.15580177e-05, -1)
  662. p25.CanCollide = false
  663. p25.FormFactor = Enum.FormFactor.Custom
  664. p25.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  665. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  666. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  667. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  668. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  669. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  670. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  671. b25 = Instance.new("SpecialMesh", p25)
  672. b25.MeshType = Enum.MeshType.Wedge
  673. b25.Name = "Mesh"
  674. b25.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  675. p26 = Instance.new("Part", m)
  676. p26.BrickColor = bc("Really black")
  677. p26.Material = Enum.Material.Ice
  678. p26.CFrame = cf(-7.9806242, 0.34990871, 22.8323402, -9.59882018e-05, -1, -8.21833164e-05, -1, 9.59911267e-05, -3.54550102e-05, 3.54628974e-05, 8.2179904e-05, -1)
  679. p26.CanCollide = false
  680. p26.FormFactor = Enum.FormFactor.Custom
  681. p26.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  682. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  683. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  684. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  685. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  686. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  687. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  688. b26 = Instance.new("SpecialMesh", p26)
  689. b26.MeshType = Enum.MeshType.Wedge
  690. b26.Name = "Mesh"
  691. b26.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  692. p27 = Instance.new("Part", m)
  693. p27.BrickColor = bc("Really black")
  694. p27.Material = Enum.Material.Ice
  695. p27.CFrame = cf(-7.52608395, 0.349913508, 22.6504936, -4.01375701e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382795e-06, -3.89064262e-05, -1, -1.83268639e-06)
  696. p27.CanCollide = false
  697. p27.FormFactor = Enum.FormFactor.Custom
  698. p27.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  699. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  700. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  701. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  702. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  703. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  704. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  705. b27 = Instance.new("SpecialMesh", p27)
  706. b27.MeshType = Enum.MeshType.Wedge
  707. b27.Name = "Mesh"
  708. b27.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  709. p28 = Instance.new("Part", m)
  710. p28.BrickColor = bc("Really black")
  711. p28.Material = Enum.Material.Ice
  712. p28.CFrame = cf(-7.98055124, 0.349968553, 23.7414322, -5.19071705e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25360747e-07, 0.000109730543, -1, -5.73098077e-05)
  713. p28.CanCollide = false
  714. p28.FormFactor = Enum.FormFactor.Custom
  715. p28.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  716. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  717. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  718. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  719. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  720. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  721. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  722. b28 = Instance.new("SpecialMesh", p28)
  723. b28.MeshType = Enum.MeshType.Wedge
  724. b28.Name = "Mesh"
  725. b28.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  726. p29 = Instance.new("Part", m)
  727. p29.BrickColor = bc("Really black")
  728. p29.Material = Enum.Material.Ice
  729. p29.CFrame = cf(-7.98051929, 0.349963725, 23.9232483, -9.59882018e-05, -1, -8.21833164e-05, -1, 9.59911267e-05, -3.54550102e-05, 3.54628974e-05, 8.2179904e-05, -1)
  730. p29.CanCollide = false
  731. p29.FormFactor = Enum.FormFactor.Custom
  732. p29.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  733. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  734. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  735. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  736. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  737. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  738. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  739. b29 = Instance.new("SpecialMesh", p29)
  740. b29.MeshType = Enum.MeshType.Wedge
  741. b29.Name = "Mesh"
  742. b29.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  743. p30 = Instance.new("Part", m)
  744. p30.BrickColor = bc("Really black")
  745. p30.Material = Enum.Material.Ice
  746. p30.CFrame = cf(-7.5260582, 0.349928647, 23.0141258, -4.01375701e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382795e-06, -3.89064262e-05, -1, -1.83268639e-06)
  747. p30.CanCollide = false
  748. p30.FormFactor = Enum.FormFactor.Custom
  749. p30.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  750. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  751. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  752. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  753. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  754. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  755. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  756. b30 = Instance.new("SpecialMesh", p30)
  757. b30.MeshType = Enum.MeshType.Wedge
  758. b30.Name = "Mesh"
  759. b30.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  760. p31 = Instance.new("Part", m)
  761. p31.BrickColor = bc("Really black")
  762. p31.Material = Enum.Material.Ice
  763. p31.CFrame = cf(-7.52605438, 0.349933356, 23.1959419, -6.28492053e-05, 1, -5.15577158e-05, 1, 6.28489579e-05, -4.93691687e-06, -4.93368634e-06, -5.15580177e-05, -1)
  764. p31.CanCollide = false
  765. p31.FormFactor = Enum.FormFactor.Custom
  766. p31.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  767. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  768. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  769. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  770. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  771. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  772. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  773. b31 = Instance.new("SpecialMesh", p31)
  774. b31.MeshType = Enum.MeshType.Wedge
  775. b31.Name = "Mesh"
  776. b31.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  777. p32 = Instance.new("Part", m)
  778. p32.BrickColor = bc("Really black")
  779. p32.Material = Enum.Material.Ice
  780. p32.CFrame = cf(-7.98059559, 0.349938273, 23.0141697, -5.19071705e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25360747e-07, 0.000109730543, -1, -5.73098077e-05)
  781. p32.CanCollide = false
  782. p32.FormFactor = Enum.FormFactor.Custom
  783. p32.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  784. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  785. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  786. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  787. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  788. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  789. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  790. b32 = Instance.new("SpecialMesh", p32)
  791. b32.MeshType = Enum.MeshType.Wedge
  792. b32.Name = "Mesh"
  793. b32.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  794. p33 = Instance.new("Part", m)
  795. p33.BrickColor = bc("Really black")
  796. p33.Material = Enum.Material.Ice
  797. p33.CFrame = cf(-7.98059845, 0.34994489, 23.1959801, -9.59882018e-05, -1, -8.21833164e-05, -1, 9.59911267e-05, -3.54550102e-05, 3.54628974e-05, 8.2179904e-05, -1)
  798. p33.CanCollide = false
  799. p33.FormFactor = Enum.FormFactor.Custom
  800. p33.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  801. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  802. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  803. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  804. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  805. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  806. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  807. b33 = Instance.new("SpecialMesh", p33)
  808. b33.MeshType = Enum.MeshType.Wedge
  809. b33.Name = "Mesh"
  810. b33.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  811. p34 = Instance.new("Part", m)
  812. p34.BrickColor = bc("Really black")
  813. p34.Material = Enum.Material.Ice
  814. p34.CFrame = cf(-7.52599716, 0.349962771, 23.7413921, -4.01375701e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382795e-06, -3.89064262e-05, -1, -1.83268639e-06)
  815. p34.CanCollide = false
  816. p34.FormFactor = Enum.FormFactor.Custom
  817. p34.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  818. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  819. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  820. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  821. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  822. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  823. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  824. b34 = Instance.new("SpecialMesh", p34)
  825. b34.MeshType = Enum.MeshType.Wedge
  826. b34.Name = "Mesh"
  827. b34.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  828. p35 = Instance.new("Part", m)
  829. p35.BrickColor = bc("Really black")
  830. p35.Material = Enum.Material.Ice
  831. p35.CFrame = cf(-7.5259881, 0.349954128, 23.9232235, -6.28492053e-05, 1, -5.15577158e-05, 1, 6.28489579e-05, -4.93691687e-06, -4.93368634e-06, -5.15580177e-05, -1)
  832. p35.CanCollide = false
  833. p35.FormFactor = Enum.FormFactor.Custom
  834. p35.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  835. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  836. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  837. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  838. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  839. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  840. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  841. b35 = Instance.new("SpecialMesh", p35)
  842. b35.MeshType = Enum.MeshType.Wedge
  843. b35.Name = "Mesh"
  844. b35.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  845. p36 = Instance.new("Part", m)
  846. p36.BrickColor = bc("Really black")
  847. p36.Material = Enum.Material.Ice
  848. p36.CFrame = cf(-8.02608013, 0.349911034, 22.3323441, 9.51142374e-06, -1, 2.92663335e-05, 1, 9.51279071e-06, 4.67159698e-05, -4.67162536e-05, 2.92658788e-05, 1)
  849. p36.CanCollide = false
  850. p36.FormFactor = Enum.FormFactor.Custom
  851. p36.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  852. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  853. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  854. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  855. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  856. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  857. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  858. b36 = Instance.new("SpecialMesh", p36)
  859. b36.MeshType = Enum.MeshType.Wedge
  860. b36.Name = "Mesh"
  861. b36.Scale = vec3(0.500007629, 0.454546124, 0.454546481)
  862. p37 = Instance.new("Part", m)
  863. p37.BrickColor = bc("Really black")
  864. p37.Material = Enum.Material.Ice
  865. p37.CFrame = cf(-7.48064137, 0.349888116, 22.332283, -7.36239599e-05, 1, 8.20992573e-05, -1, -7.36337388e-05, 0.000119003467, 0.000119009514, -8.2090497e-05, 1)
  866. p37.CanCollide = false
  867. p37.FormFactor = Enum.FormFactor.Custom
  868. p37.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  869. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  870. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  871. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  872. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  873. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  874. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  875. b37 = Instance.new("SpecialMesh", p37)
  876. b37.MeshType = Enum.MeshType.Wedge
  877. b37.Name = "Mesh"
  878. b37.Scale = vec3(0.500007629, 0.454546124, 0.454546481)
  879. p38 = Instance.new("Part", m)
  880. p38.BrickColor = bc("Really black")
  881. p38.Material = Enum.Material.Ice
  882. p38.CFrame = cf(-7.93526602, 0.34984082, 21.241415, -9.59882018e-05, -1, -8.21833164e-05, -1, 9.59911267e-05, -3.54550102e-05, 3.54628974e-05, 8.2179904e-05, -1)
  883. p38.CanCollide = false
  884. p38.FormFactor = Enum.FormFactor.Custom
  885. p38.Size = vec3(0.200000003, 0.200000003, 2.27273226)
  886. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  887. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  888. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  889. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  890. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  891. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  892. b38 = Instance.new("BlockMesh", p38)
  893. b38.Name = "Mesh"
  894. b38.Scale = vec3(0.500007629, 0.454546124, 1)
  895. p39 = Instance.new("Part", m)
  896. p39.BrickColor = bc("Really black")
  897. p39.Material = Enum.Material.Ice
  898. p39.CFrame = cf(-7.57164097, 0.349846482, 21.241394, -6.28492053e-05, 1, -5.15577158e-05, 1, 6.28489579e-05, -4.93691687e-06, -4.93368634e-06, -5.15580177e-05, -1)
  899. p39.CanCollide = false
  900. p39.FormFactor = Enum.FormFactor.Custom
  901. p39.Size = vec3(0.200000003, 0.200000003, 2.27273226)
  902. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  903. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  904. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  905. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  906. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  907. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  908. b39 = Instance.new("BlockMesh", p39)
  909. b39.Name = "Mesh"
  910. b39.Scale = vec3(0.500007629, 0.454546124, 1)
  911. p40 = Instance.new("Part", m)
  912. p40.BrickColor = bc("Really black")
  913. p40.Material = Enum.Material.Ice
  914. p40.CFrame = cf(-7.52610397, 0.349906892, 22.4686661, -6.28492053e-05, 1, -5.15577158e-05, 1, 6.28489579e-05, -4.93691687e-06, -4.93368634e-06, -5.15580177e-05, -1)
  915. p40.CanCollide = false
  916. p40.FormFactor = Enum.FormFactor.Custom
  917. p40.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  918. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  919. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  920. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  921. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  922. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  923. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  924. b40 = Instance.new("SpecialMesh", p40)
  925. b40.MeshType = Enum.MeshType.Wedge
  926. b40.Name = "Mesh"
  927. b40.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  928. p41 = Instance.new("Part", m)
  929. p41.BrickColor = bc("Really black")
  930. p41.Material = Enum.Material.Ice
  931. p41.CFrame = cf(-7.98055553, 0.349950492, 23.5596161, -9.59882018e-05, -1, -8.21833164e-05, -1, 9.59911267e-05, -3.54550102e-05, 3.54628974e-05, 8.2179904e-05, -1)
  932. p41.CanCollide = false
  933. p41.FormFactor = Enum.FormFactor.Custom
  934. p41.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  935. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  936. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  937. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  938. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  939. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  940. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  941. b41 = Instance.new("SpecialMesh", p41)
  942. b41.MeshType = Enum.MeshType.Wedge
  943. b41.Name = "Mesh"
  944. b41.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  945. p42 = Instance.new("Part", m)
  946. p42.BrickColor = bc("Really black")
  947. p42.Material = Enum.Material.Ice
  948. p42.CFrame = cf(-7.98056698, 0.349928617, 23.3778133, -5.19071705e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25360747e-07, 0.000109730543, -1, -5.73098077e-05)
  949. p42.CanCollide = false
  950. p42.FormFactor = Enum.FormFactor.Custom
  951. p42.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  952. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  953. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  954. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  955. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  956. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  957. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  958. b42 = Instance.new("SpecialMesh", p42)
  959. b42.MeshType = Enum.MeshType.Wedge
  960. b42.Name = "Mesh"
  961. b42.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  962. p43 = Instance.new("Part", m)
  963. p43.BrickColor = bc("Really black")
  964. p43.Material = Enum.Material.Ice
  965. p43.CFrame = cf(-7.75338221, 0.34988299, 22.059576, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  966. p43.CanCollide = false
  967. p43.FormFactor = Enum.FormFactor.Custom
  968. p43.Size = vec3(0.300004601, 0.200000003, 3.90909958)
  969. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  970. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  971. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  972. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  973. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  974. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  975. b43 = Instance.new("BlockMesh", p43)
  976. b43.Name = "Mesh"
  977. b43.Scale = vec3(1, 0.454546124, 1)
  978. p44 = Instance.new("Part", m)
  979. p44.BrickColor = bc("Bright violet")
  980. p44.Material = Enum.Material.Ice
  981. p44.CFrame = cf(-7.75330973, 0.299918205, 23.2414284, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  982. p44.CanCollide = false
  983. p44.FormFactor = Enum.FormFactor.Custom
  984. p44.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  985. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  986. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  987. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  988. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  989. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  990. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  991. b44 = Instance.new("SpecialMesh", p44)
  992. b44.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  993. b44.TextureId = ""
  994. b44.MeshType = Enum.MeshType.FileMesh
  995. b44.Name = "Mesh"
  996. b44.Scale = vec3(0.150002301, 0.0909092277, 0.909092903)
  997. p45 = Instance.new("Part", m)
  998. p45.BrickColor = bc("Bright violet")
  999. p45.Material = Enum.Material.Ice
  1000. p45.CFrame = cf(-7.75330544, 0.399947196, 23.241436, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  1001. p45.CanCollide = false
  1002. p45.FormFactor = Enum.FormFactor.Custom
  1003. p45.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1004. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1005. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1006. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1007. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1008. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1009. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1010. b45 = Instance.new("SpecialMesh", p45)
  1011. b45.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1012. b45.TextureId = ""
  1013. b45.MeshType = Enum.MeshType.FileMesh
  1014. b45.Name = "Mesh"
  1015. b45.Scale = vec3(0.150002301, 0.0909092277, 0.909092903)
  1016. p46 = Instance.new("Part", m)
  1017. p46.BrickColor = bc("Bright violet")
  1018. p46.Material = Enum.Material.Ice
  1019. p46.CFrame = cf(-7.75333023, 0.399924815, 22.9686947, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  1020. p46.CanCollide = false
  1021. p46.FormFactor = Enum.FormFactor.Custom
  1022. p46.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1023. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1024. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1025. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1026. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1027. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1028. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1029. b46 = Instance.new("SpecialMesh", p46)
  1030. b46.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1031. b46.TextureId = ""
  1032. b46.MeshType = Enum.MeshType.FileMesh
  1033. b46.Name = "Mesh"
  1034. b46.Scale = vec3(0.150002301, 0.0909092277, 0.909092903)
  1035. p47 = Instance.new("Part", m)
  1036. p47.BrickColor = bc("Bright violet")
  1037. p47.Material = Enum.Material.Ice
  1038. p47.CFrame = cf(-7.75332451, 0.299913019, 22.9686737, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  1039. p47.CanCollide = false
  1040. p47.FormFactor = Enum.FormFactor.Custom
  1041. p47.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1042. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1043. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1044. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1045. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1046. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1047. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1048. b47 = Instance.new("SpecialMesh", p47)
  1049. b47.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1050. b47.TextureId = ""
  1051. b47.MeshType = Enum.MeshType.FileMesh
  1052. b47.Name = "Mesh"
  1053. b47.Scale = vec3(0.150002301, 0.0909092277, 0.909092903)
  1054. p48 = Instance.new("Part", m)
  1055. p48.BrickColor = bc("Bright violet")
  1056. p48.Material = Enum.Material.Ice
  1057. p48.CFrame = cf(-7.75334263, 0.299892604, 22.6959686, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  1058. p48.CanCollide = false
  1059. p48.FormFactor = Enum.FormFactor.Custom
  1060. p48.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1061. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1062. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1063. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1064. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1065. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1066. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1067. b48 = Instance.new("SpecialMesh", p48)
  1068. b48.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1069. b48.TextureId = ""
  1070. b48.MeshType = Enum.MeshType.FileMesh
  1071. b48.Name = "Mesh"
  1072. b48.Scale = vec3(0.150002301, 0.0909092277, 0.909092903)
  1073. p49 = Instance.new("Part", m)
  1074. p49.BrickColor = bc("Bright violet")
  1075. p49.Material = Enum.Material.Ice
  1076. p49.CFrame = cf(-7.75335121, 0.399919689, 22.6959419, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  1077. p49.CanCollide = false
  1078. p49.FormFactor = Enum.FormFactor.Custom
  1079. p49.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1080. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1081. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1082. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1083. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1084. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1085. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1086. b49 = Instance.new("SpecialMesh", p49)
  1087. b49.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1088. b49.TextureId = ""
  1089. b49.MeshType = Enum.MeshType.FileMesh
  1090. b49.Name = "Mesh"
  1091. b49.Scale = vec3(0.150002301, 0.0909092277, 0.909092903)
  1092. p50 = Instance.new("Part", m)
  1093. p50.BrickColor = bc("Bright violet")
  1094. p50.Material = Enum.Material.Ice
  1095. p50.CFrame = cf(-7.75338411, 0.399899274, 22.423233, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  1096. p50.CanCollide = false
  1097. p50.FormFactor = Enum.FormFactor.Custom
  1098. p50.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1099. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1100. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1101. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1102. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1103. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1104. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1105. b50 = Instance.new("SpecialMesh", p50)
  1106. b50.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1107. b50.TextureId = ""
  1108. b50.MeshType = Enum.MeshType.FileMesh
  1109. b50.Name = "Mesh"
  1110. b50.Scale = vec3(0.150002301, 0.0909092277, 0.909092903)
  1111. p51 = Instance.new("Part", m)
  1112. p51.BrickColor = bc("Bright violet")
  1113. p51.Material = Enum.Material.Ice
  1114. p51.CFrame = cf(-7.75336504, 0.299874097, 22.4232197, -1, -4.1876061e-05, 0.000126350584, 4.18869386e-05, -1, 8.60874643e-05, 0.00012634696, 8.60927539e-05, 1)
  1115. p51.CanCollide = false
  1116. p51.FormFactor = Enum.FormFactor.Custom
  1117. p51.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1118. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1119. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1120. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1121. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1122. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1123. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1124. b51 = Instance.new("SpecialMesh", p51)
  1125. b51.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1126. b51.TextureId = ""
  1127. b51.MeshType = Enum.MeshType.FileMesh
  1128. b51.Name = "Mesh"
  1129. b51.Scale = vec3(0.150002301, 0.0909092277, 0.909092903)
  1130. p52 = Instance.new("Part", m)
  1131. p52.BrickColor = bc("Really black")
  1132. p52.Material = Enum.Material.Ice
  1133. p52.CFrame = cf(-7.86718607, 0.349782139, 19.6959324, 9.51142556e-06, -1, 2.92663335e-05, 1, 9.51279344e-06, 4.67159698e-05, -4.67162536e-05, 2.92658715e-05, 1)
  1134. p52.CanCollide = false
  1135. p52.FormFactor = Enum.FormFactor.Custom
  1136. p52.Size = vec3(0.200000003, 0.227273062, 0.818183661)
  1137. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1138. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1139. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1140. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1141. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1142. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1143. b52 = Instance.new("SpecialMesh", p52)
  1144. b52.MeshType = Enum.MeshType.Wedge
  1145. b52.Name = "Mesh"
  1146. b52.Scale = vec3(0.500007629, 1, 1)
  1147. p53 = Instance.new("Part", m)
  1148. p53.BrickColor = bc("Really black")
  1149. p53.Material = Enum.Material.Ice
  1150. p53.CFrame = cf(-7.63989449, 0.349779248, 19.6959114, -7.36239672e-05, 1, 8.20992573e-05, -1, -7.36337388e-05, 0.000119003467, 0.000119009514, -8.20904825e-05, 1)
  1151. p53.CanCollide = false
  1152. p53.FormFactor = Enum.FormFactor.Custom
  1153. p53.Size = vec3(0.200000003, 0.227273062, 0.818183601)
  1154. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1155. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1156. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1157. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1158. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1159. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1160. b53 = Instance.new("SpecialMesh", p53)
  1161. b53.MeshType = Enum.MeshType.Wedge
  1162. b53.Name = "Mesh"
  1163. b53.Scale = vec3(0.500007629, 1, 1)
  1164. p54 = Instance.new("Part", m)
  1165. p54.BrickColor = bc("Dark indigo")
  1166. p54.Material = Enum.Material.Neon
  1167. p54.CFrame = cf(-7.59446192, 0.349770248, 19.6049919, -7.36239672e-05, 1, 8.20992573e-05, -1, -7.36337388e-05, 0.000119003467, 0.000119009514, -8.20904825e-05, 1)
  1168. p54.CanCollide = false
  1169. p54.FormFactor = Enum.FormFactor.Custom
  1170. p54.Size = vec3(0.200000003, 0.31818229, 1.00000226)
  1171. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1172. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1173. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1174. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1175. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1177. b54 = Instance.new("SpecialMesh", p54)
  1178. b54.MeshType = Enum.MeshType.Wedge
  1179. b54.Name = "Mesh"
  1180. b54.Scale = vec3(0.250003815, 1, 1)
  1181. p55 = Instance.new("Part", m)
  1182. p55.BrickColor = bc("Dark indigo")
  1183. p55.Material = Enum.Material.Neon
  1184. p55.CFrame = cf(-7.91264153, 0.349778861, 19.6050339, 9.51142556e-06, -1, 2.92663335e-05, 1, 9.51279344e-06, 4.67159698e-05, -4.67162536e-05, 2.92658715e-05, 1)
  1185. p55.CanCollide = false
  1186. p55.FormFactor = Enum.FormFactor.Custom
  1187. p55.Size = vec3(0.200000003, 0.31818229, 1.00000226)
  1188. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1190. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1191. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1192. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1193. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. b55 = Instance.new("SpecialMesh", p55)
  1195. b55.MeshType = Enum.MeshType.Wedge
  1196. b55.Name = "Mesh"
  1197. b55.Scale = vec3(0.250003815, 1, 1)
  1198. p56 = Instance.new("Part", m)
  1199. p56.BrickColor = bc("Really black")
  1200. p56.Material = Enum.Material.Ice
  1201. p56.CFrame = cf(-7.98063278, 0.349910736, 22.4687004, -9.59882091e-05, -1, -8.21833164e-05, -1, 9.59911267e-05, -3.54550102e-05, 3.54628974e-05, 8.21798967e-05, -1)
  1202. p56.CanCollide = false
  1203. p56.FormFactor = Enum.FormFactor.Custom
  1204. p56.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1205. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1206. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. b56 = Instance.new("SpecialMesh", p56)
  1212. b56.MeshType = Enum.MeshType.Wedge
  1213. b56.Name = "Mesh"
  1214. b56.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  1215. p57 = Instance.new("Part", m)
  1216. p57.BrickColor = bc("Really black")
  1217. p57.Material = Enum.Material.Ice
  1218. p57.CFrame = cf(-7.52603769, 0.349922836, 23.3777695, -4.01375519e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382567e-06, -3.89064262e-05, -1, -1.83269367e-06)
  1219. p57.CanCollide = false
  1220. p57.FormFactor = Enum.FormFactor.Custom
  1221. p57.Size = vec3(0.200000003, 0.200000003, 0.200000003)
  1222. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1223. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. b57 = Instance.new("SpecialMesh", p57)
  1229. b57.MeshType = Enum.MeshType.Wedge
  1230. b57.Name = "Mesh"
  1231. b57.Scale = vec3(0.500007629, 0.909092247, 0.909092963)
  1232. p58 = Instance.new("Part", m)
  1233. p58.BrickColor = bc("Dark indigo")
  1234. p58.Material = Enum.Material.Neon
  1235. p58.CFrame = cf(-8.02618599, 0.349850088, 21.1959724, -5.19073751e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25363021e-07, 0.000109730543, -1, -5.73098005e-05)
  1236. p58.CanCollide = false
  1237. p58.FormFactor = Enum.FormFactor.Custom
  1238. p58.Size = vec3(0.200000003, 2.18182158, 0.200000003)
  1239. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1242. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1243. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1245. b58 = Instance.new("SpecialMesh", p58)
  1246. b58.MeshType = Enum.MeshType.Brick
  1247. b58.Name = "Mesh"
  1248. b58.Scale = vec3(0.250003815, 1, 0.454546511)
  1249. p59 = Instance.new("Part", m)
  1250. p59.BrickColor = bc("Dark indigo")
  1251. p59.Material = Enum.Material.Neon
  1252. p59.CFrame = cf(-7.52618933, 0.349854857, 21.1959248, -4.01375519e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382567e-06, -3.89064262e-05, -1, -1.83269367e-06)
  1253. p59.CanCollide = false
  1254. p59.FormFactor = Enum.FormFactor.Custom
  1255. p59.Size = vec3(0.200000003, 2.18182158, 0.200000003)
  1256. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1262. b59 = Instance.new("SpecialMesh", p59)
  1263. b59.MeshType = Enum.MeshType.Brick
  1264. b59.Name = "Mesh"
  1265. b59.Scale = vec3(0.250003815, 1, 0.909092963)
  1266. p60 = Instance.new("Part", m)
  1267. p60.BrickColor = bc("Dark indigo")
  1268. p60.Material = Enum.Material.Neon
  1269. p60.CFrame = cf(-8.02598763, 0.349980175, 23.9687328, 6.09254312e-05, 4.14997376e-05, 1, 1, 7.6401062e-05, -6.09286035e-05, -7.6403594e-05, 1, -4.14950664e-05)
  1270. p60.CanCollide = false
  1271. p60.FormFactor = Enum.FormFactor.Custom
  1272. p60.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1273. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1279. b60 = Instance.new("SpecialMesh", p60)
  1280. b60.MeshType = Enum.MeshType.Wedge
  1281. b60.Name = "Mesh"
  1282. b60.Scale = vec3(0.250003815, 1, 1)
  1283. p61 = Instance.new("Part", m)
  1284. p61.BrickColor = bc("Dark indigo")
  1285. p61.Material = Enum.Material.Neon
  1286. p61.CFrame = cf(-7.48053026, 0.349959135, 23.9686871, 4.27772102e-05, 5.73098732e-05, -1, -1, 3.47651221e-05, -4.27752166e-05, 3.47626737e-05, 1, 5.73113502e-05)
  1287. p61.CanCollide = false
  1288. p61.FormFactor = Enum.FormFactor.Custom
  1289. p61.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1290. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1291. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1293. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1294. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1295. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1296. b61 = Instance.new("SpecialMesh", p61)
  1297. b61.MeshType = Enum.MeshType.Wedge
  1298. b61.Name = "Mesh"
  1299. b61.Scale = vec3(0.250003815, 1, 1)
  1300. p62 = Instance.new("Part", m)
  1301. p62.BrickColor = bc("Dark indigo")
  1302. p62.Material = Enum.Material.Neon
  1303. p62.CFrame = cf(-7.48055792, 0.349948227, 23.6959743, -4.01375519e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382567e-06, -3.89064262e-05, -1, -1.83269367e-06)
  1304. p62.CanCollide = false
  1305. p62.FormFactor = Enum.FormFactor.Custom
  1306. p62.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1307. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1309. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1310. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1311. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1312. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1313. b62 = Instance.new("SpecialMesh", p62)
  1314. b62.MeshType = Enum.MeshType.Wedge
  1315. b62.Name = "Mesh"
  1316. b62.Scale = vec3(0.250003815, 1, 1)
  1317. p63 = Instance.new("Part", m)
  1318. p63.BrickColor = bc("Dark indigo")
  1319. p63.Material = Enum.Material.Neon
  1320. p63.CFrame = cf(-8.02604008, 0.349936932, 23.3323536, -5.19073751e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25363021e-07, 0.000109730543, -1, -5.73098005e-05)
  1321. p63.CanCollide = false
  1322. p63.FormFactor = Enum.FormFactor.Custom
  1323. p63.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1324. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1325. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1326. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1327. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1328. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1329. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1330. b63 = Instance.new("SpecialMesh", p63)
  1331. b63.MeshType = Enum.MeshType.Wedge
  1332. b63.Name = "Mesh"
  1333. b63.Scale = vec3(0.250003815, 1, 1)
  1334. p64 = Instance.new("Part", m)
  1335. p64.BrickColor = bc("Dark indigo")
  1336. p64.Material = Enum.Material.Neon
  1337. p64.CFrame = cf(-8.02602291, 0.349961221, 23.6050816, 6.09254312e-05, 4.14997376e-05, 1, 1, 7.6401062e-05, -6.09286035e-05, -7.6403594e-05, 1, -4.14950664e-05)
  1338. p64.CanCollide = false
  1339. p64.FormFactor = Enum.FormFactor.Custom
  1340. p64.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1341. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1342. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1343. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1344. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1345. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1346. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1347. b64 = Instance.new("SpecialMesh", p64)
  1348. b64.MeshType = Enum.MeshType.Wedge
  1349. b64.Name = "Mesh"
  1350. b64.Scale = vec3(0.250003815, 1, 1)
  1351. p65 = Instance.new("Part", m)
  1352. p65.BrickColor = bc("Dark indigo")
  1353. p65.Material = Enum.Material.Neon
  1354. p65.CFrame = cf(-7.48055267, 0.349930644, 23.6050472, 4.27772102e-05, 5.73098732e-05, -1, -1, 3.47651221e-05, -4.27752166e-05, 3.47626737e-05, 1, 5.73113502e-05)
  1355. p65.CanCollide = false
  1356. p65.FormFactor = Enum.FormFactor.Custom
  1357. p65.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1358. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1359. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1360. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1361. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1362. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1363. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1364. b65 = Instance.new("SpecialMesh", p65)
  1365. b65.MeshType = Enum.MeshType.Wedge
  1366. b65.Name = "Mesh"
  1367. b65.Scale = vec3(0.250003815, 1, 1)
  1368. p66 = Instance.new("Part", m)
  1369. p66.BrickColor = bc("Dark indigo")
  1370. p66.Material = Enum.Material.Neon
  1371. p66.CFrame = cf(-7.48057842, 0.349927366, 23.3323174, -4.01375519e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382567e-06, -3.89064262e-05, -1, -1.83269367e-06)
  1372. p66.CanCollide = false
  1373. p66.FormFactor = Enum.FormFactor.Custom
  1374. p66.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1375. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1376. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1377. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1378. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1379. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1380. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1381. b66 = Instance.new("SpecialMesh", p66)
  1382. b66.MeshType = Enum.MeshType.Wedge
  1383. b66.Name = "Mesh"
  1384. b66.Scale = vec3(0.250003815, 1, 1)
  1385. p67 = Instance.new("Part", m)
  1386. p67.BrickColor = bc("Dark indigo")
  1387. p67.Material = Enum.Material.Neon
  1388. p67.CFrame = cf(-8.02605343, 0.349935144, 22.9687195, -5.19073751e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25363021e-07, 0.000109730543, -1, -5.73098005e-05)
  1389. p67.CanCollide = false
  1390. p67.FormFactor = Enum.FormFactor.Custom
  1391. p67.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1392. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1393. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1394. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1395. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1396. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1397. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1398. b67 = Instance.new("SpecialMesh", p67)
  1399. b67.MeshType = Enum.MeshType.Wedge
  1400. b67.Name = "Mesh"
  1401. b67.Scale = vec3(0.250003815, 1, 1)
  1402. p68 = Instance.new("Part", m)
  1403. p68.BrickColor = bc("Dark indigo")
  1404. p68.Material = Enum.Material.Neon
  1405. p68.CFrame = cf(-8.02603722, 0.349947959, 23.2414474, 6.09254312e-05, 4.14997376e-05, 1, 1, 7.6401062e-05, -6.09286035e-05, -7.6403594e-05, 1, -4.14950664e-05)
  1406. p68.CanCollide = false
  1407. p68.FormFactor = Enum.FormFactor.Custom
  1408. p68.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1409. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1410. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1411. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1412. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1413. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1414. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1415. b68 = Instance.new("SpecialMesh", p68)
  1416. b68.MeshType = Enum.MeshType.Wedge
  1417. b68.Name = "Mesh"
  1418. b68.Scale = vec3(0.250003815, 1, 1)
  1419. p69 = Instance.new("Part", m)
  1420. p69.BrickColor = bc("Dark indigo")
  1421. p69.Material = Enum.Material.Neon
  1422. p69.CFrame = cf(-7.48058844, 0.349928856, 23.241396, 4.27772102e-05, 5.73098732e-05, -1, -1, 3.47651221e-05, -4.27752166e-05, 3.47626737e-05, 1, 5.73113502e-05)
  1423. p69.CanCollide = false
  1424. p69.FormFactor = Enum.FormFactor.Custom
  1425. p69.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1426. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1429. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1430. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1431. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1432. b69 = Instance.new("SpecialMesh", p69)
  1433. b69.MeshType = Enum.MeshType.Wedge
  1434. b69.Name = "Mesh"
  1435. b69.Scale = vec3(0.250003815, 1, 1)
  1436. p70 = Instance.new("Part", m)
  1437. p70.BrickColor = bc("Dark indigo")
  1438. p70.Material = Enum.Material.Neon
  1439. p70.CFrame = cf(-7.48060369, 0.349908412, 22.9686832, -4.01375519e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382567e-06, -3.89064262e-05, -1, -1.83269367e-06)
  1440. p70.CanCollide = false
  1441. p70.FormFactor = Enum.FormFactor.Custom
  1442. p70.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1443. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1444. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1446. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1447. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1448. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1449. b70 = Instance.new("SpecialMesh", p70)
  1450. b70.MeshType = Enum.MeshType.Wedge
  1451. b70.Name = "Mesh"
  1452. b70.Scale = vec3(0.250003815, 1, 1)
  1453. p71 = Instance.new("Part", m)
  1454. p71.BrickColor = bc("Dark indigo")
  1455. p71.Material = Enum.Material.Neon
  1456. p71.CFrame = cf(-8.02607059, 0.34991619, 22.6050758, -5.19073751e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25363021e-07, 0.000109730543, -1, -5.73098005e-05)
  1457. p71.CanCollide = false
  1458. p71.FormFactor = Enum.FormFactor.Custom
  1459. p71.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1460. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1463. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1464. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1465. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1466. b71 = Instance.new("SpecialMesh", p71)
  1467. b71.MeshType = Enum.MeshType.Wedge
  1468. b71.Name = "Mesh"
  1469. b71.Scale = vec3(0.250003815, 1, 1)
  1470. p72 = Instance.new("Part", m)
  1471. p72.BrickColor = bc("Dark indigo")
  1472. p72.Material = Enum.Material.Neon
  1473. p72.CFrame = cf(-8.02606297, 0.349921376, 22.8778057, 6.09254312e-05, 4.14997376e-05, 1, 1, 7.6401062e-05, -6.09286035e-05, -7.6403594e-05, 1, -4.14950664e-05)
  1474. p72.CanCollide = false
  1475. p72.FormFactor = Enum.FormFactor.Custom
  1476. p72.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1477. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1478. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1481. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1482. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1483. b72 = Instance.new("SpecialMesh", p72)
  1484. b72.MeshType = Enum.MeshType.Wedge
  1485. b72.Name = "Mesh"
  1486. b72.Scale = vec3(0.250003815, 1, 1)
  1487. p73 = Instance.new("Part", m)
  1488. p73.BrickColor = bc("Dark indigo")
  1489. p73.Material = Enum.Material.Neon
  1490. p73.CFrame = cf(-7.48059034, 0.349900365, 22.8777714, 4.27772102e-05, 5.73098732e-05, -1, -1, 3.47651221e-05, -4.27752166e-05, 3.47626737e-05, 1, 5.73113502e-05)
  1491. p73.CanCollide = false
  1492. p73.FormFactor = Enum.FormFactor.Custom
  1493. p73.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1494. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1500. b73 = Instance.new("SpecialMesh", p73)
  1501. b73.MeshType = Enum.MeshType.Wedge
  1502. b73.Name = "Mesh"
  1503. b73.Scale = vec3(0.250003815, 1, 1)
  1504. p74 = Instance.new("Part", m)
  1505. p74.BrickColor = bc("Dark indigo")
  1506. p74.Material = Enum.Material.Neon
  1507. p74.CFrame = cf(-7.48063612, 0.349904716, 22.6050358, -4.01375519e-06, 1.83283555e-06, -1, 1, -3.89064116e-05, -4.01382567e-06, -3.89064262e-05, -1, -1.83269367e-06)
  1508. p74.CanCollide = false
  1509. p74.FormFactor = Enum.FormFactor.Custom
  1510. p74.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1511. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1513. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. b74 = Instance.new("SpecialMesh", p74)
  1518. b74.MeshType = Enum.MeshType.Wedge
  1519. b74.Name = "Mesh"
  1520. b74.Scale = vec3(0.250003815, 1, 1)
  1521. p75 = Instance.new("Part", m)
  1522. p75.BrickColor = bc("Dark indigo")
  1523. p75.Material = Enum.Material.Neon
  1524. p75.CFrame = cf(-8.02609253, 0.349906802, 22.2414341, -5.19073751e-07, -5.73098732e-05, 1, -1, -0.000109730514, -5.25363021e-07, 0.000109730543, -1, -5.73098005e-05)
  1525. p75.CanCollide = false
  1526. p75.FormFactor = Enum.FormFactor.Custom
  1527. p75.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1528. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1529. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1532. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. b75 = Instance.new("SpecialMesh", p75)
  1535. b75.MeshType = Enum.MeshType.Wedge
  1536. b75.Name = "Mesh"
  1537. b75.Scale = vec3(0.250003815, 1, 1)
  1538. p76 = Instance.new("Part", m)
  1539. p76.BrickColor = bc("Dark indigo")
  1540. p76.Material = Enum.Material.Neon
  1541. p76.CFrame = cf(-8.02607727, 0.349911958, 22.5141621, 6.09254312e-05, 4.14997376e-05, 1, 1, 7.6401062e-05, -6.09286035e-05, -7.6403594e-05, 1, -4.14950664e-05)
  1542. p76.CanCollide = false
  1543. p76.FormFactor = Enum.FormFactor.Custom
  1544. p76.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1545. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1546. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1547. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. b76 = Instance.new("SpecialMesh", p76)
  1552. b76.MeshType = Enum.MeshType.Wedge
  1553. b76.Name = "Mesh"
  1554. b76.Scale = vec3(0.250003815, 1, 1)
  1555. p77 = Instance.new("Part", m)
  1556. p77.BrickColor = bc("Dark indigo")
  1557. p77.Material = Enum.Material.Neon
  1558. p77.CFrame = cf(-7.48062325, 0.349887103, 22.5141106, 4.27772102e-05, 5.73098732e-05, -1, -1, 3.47651221e-05, -4.27752166e-05, 3.47626737e-05, 1, 5.73113502e-05)
  1559. p77.CanCollide = false
  1560. p77.FormFactor = Enum.FormFactor.Custom
  1561. p77.Size = vec3(0.200000003, 0.272727698, 0.272727877)
  1562. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1563. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1564. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1565. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1566. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1567. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1568. b77 = Instance.new("SpecialMesh", p77)
  1569. b77.MeshType = Enum.MeshType.Wedge
  1570. b77.Name = "Mesh"
  1571. b77.Scale = vec3(0.250003815, 1, 1)
  1572. p78 = Instance.new("Part", m)
  1573. p78.BrickColor = bc("Eggplant")
  1574. p78.Material = Enum.Material.SmoothPlastic
  1575. p78.CFrame = cf(-7.75317383, 0.350023478, 25.4050617, 0.258784294, -0.965935171, -4.55241388e-05, -7.79460024e-05, -6.80121666e-05, 1, -0.965935111, -0.258784324, -9.28912705e-05)
  1576. p78.CanCollide = false
  1577. p78.FormFactor = Enum.FormFactor.Custom
  1578. p78.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1579. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1580. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1581. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1582. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1583. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1584. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1585. b78 = Instance.new("SpecialMesh", p78)
  1586. b78.MeshType = Enum.MeshType.Cylinder
  1587. b78.Name = "Mesh"
  1588. b78.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1589. p79 = Instance.new("Part", m)
  1590. p79.BrickColor = bc("Eggplant")
  1591. p79.Material = Enum.Material.SmoothPlastic
  1592. p79.CFrame = cf(-7.75317383, 0.350023478, 25.4050617, -0.258816183, -0.965926707, 1.57904833e-05, -6.06896647e-05, 3.26090558e-05, 1, -0.965926707, 0.258816183, -6.70615118e-05)
  1593. p79.CanCollide = false
  1594. p79.FormFactor = Enum.FormFactor.Custom
  1595. p79.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1596. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1597. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1598. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1599. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1600. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1601. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1602. b79 = Instance.new("SpecialMesh", p79)
  1603. b79.MeshType = Enum.MeshType.Cylinder
  1604. b79.Name = "Mesh"
  1605. b79.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1606. p80 = Instance.new("Part", m)
  1607. p80.BrickColor = bc("Eggplant")
  1608. p80.Material = Enum.Material.SmoothPlastic
  1609. p80.CFrame = cf(-7.75318909, 0.350022495, 25.2050705, 0.258784294, -0.965935171, -4.55241388e-05, -7.79460024e-05, -6.80121666e-05, 1, -0.965935111, -0.258784324, -9.28912705e-05)
  1610. p80.CanCollide = false
  1611. p80.FormFactor = Enum.FormFactor.Custom
  1612. p80.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1613. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1614. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1615. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1616. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1617. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1618. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1619. b80 = Instance.new("SpecialMesh", p80)
  1620. b80.MeshType = Enum.MeshType.Cylinder
  1621. b80.Name = "Mesh"
  1622. b80.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1623. p81 = Instance.new("Part", m)
  1624. p81.BrickColor = bc("Eggplant")
  1625. p81.Material = Enum.Material.SmoothPlastic
  1626. p81.CFrame = cf(-7.75318909, 0.350022495, 25.2050705, -0.258816183, -0.965926707, 1.57904833e-05, -6.06896647e-05, 3.26090558e-05, 1, -0.965926707, 0.258816183, -6.70615118e-05)
  1627. p81.CanCollide = false
  1628. p81.FormFactor = Enum.FormFactor.Custom
  1629. p81.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1630. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1631. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1632. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1633. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1634. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1635. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1636. b81 = Instance.new("SpecialMesh", p81)
  1637. b81.MeshType = Enum.MeshType.Cylinder
  1638. b81.Name = "Mesh"
  1639. b81.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1640. p82 = Instance.new("Part", m)
  1641. p82.BrickColor = bc("Eggplant")
  1642. p82.Material = Enum.Material.SmoothPlastic
  1643. p82.CFrame = cf(-7.75321913, 0.350011975, 25.0050659, 0.258784294, -0.965935171, -4.55241388e-05, -7.79460024e-05, -6.80121666e-05, 1, -0.965935111, -0.258784324, -9.28912705e-05)
  1644. p82.CanCollide = false
  1645. p82.FormFactor = Enum.FormFactor.Custom
  1646. p82.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1647. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1648. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1649. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1650. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1651. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1652. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1653. b82 = Instance.new("SpecialMesh", p82)
  1654. b82.MeshType = Enum.MeshType.Cylinder
  1655. b82.Name = "Mesh"
  1656. b82.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1657. p83 = Instance.new("Part", m)
  1658. p83.BrickColor = bc("Eggplant")
  1659. p83.Material = Enum.Material.SmoothPlastic
  1660. p83.CFrame = cf(-7.75321913, 0.350011975, 25.0050659, -0.258816183, -0.965926707, 1.57904833e-05, -6.06896647e-05, 3.26090558e-05, 1, -0.965926707, 0.258816183, -6.70615118e-05)
  1661. p83.CanCollide = false
  1662. p83.FormFactor = Enum.FormFactor.Custom
  1663. p83.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1664. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1665. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1666. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1667. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1668. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1669. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1670. b83 = Instance.new("SpecialMesh", p83)
  1671. b83.MeshType = Enum.MeshType.Cylinder
  1672. b83.Name = "Mesh"
  1673. b83.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1674. p84 = Instance.new("Part", m)
  1675. p84.BrickColor = bc("Eggplant")
  1676. p84.Material = Enum.Material.SmoothPlastic
  1677. p84.CFrame = cf(-7.75322247, 0.350003362, 24.805069, -0.258816183, -0.965926707, 1.57904833e-05, -6.06896647e-05, 3.26090558e-05, 1, -0.965926707, 0.258816183, -6.70615118e-05)
  1678. p84.CanCollide = false
  1679. p84.FormFactor = Enum.FormFactor.Custom
  1680. p84.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1681. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1682. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1683. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1684. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1685. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1686. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1687. b84 = Instance.new("SpecialMesh", p84)
  1688. b84.MeshType = Enum.MeshType.Cylinder
  1689. b84.Name = "Mesh"
  1690. b84.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1691. p85 = Instance.new("Part", m)
  1692. p85.BrickColor = bc("Eggplant")
  1693. p85.Material = Enum.Material.SmoothPlastic
  1694. p85.CFrame = cf(-7.75322247, 0.350003362, 24.805069, 0.258784294, -0.965935171, -4.55241388e-05, -7.79460024e-05, -6.80121666e-05, 1, -0.965935111, -0.258784324, -9.28912705e-05)
  1695. p85.CanCollide = false
  1696. p85.FormFactor = Enum.FormFactor.Custom
  1697. p85.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1698. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1699. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1700. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1701. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1702. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1703. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1704. b85 = Instance.new("SpecialMesh", p85)
  1705. b85.MeshType = Enum.MeshType.Cylinder
  1706. b85.Name = "Mesh"
  1707. b85.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1708. p86 = Instance.new("Part", m)
  1709. p86.BrickColor = bc("Eggplant")
  1710. p86.Material = Enum.Material.SmoothPlastic
  1711. p86.CFrame = cf(-7.75320053, 0.349996626, 24.6050606, 0.258784294, -0.965935171, -4.55241388e-05, -7.79460024e-05, -6.80121666e-05, 1, -0.965935111, -0.258784324, -9.28912705e-05)
  1712. p86.CanCollide = false
  1713. p86.FormFactor = Enum.FormFactor.Custom
  1714. p86.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1715. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1716. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1717. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1718. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1719. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1720. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1721. b86 = Instance.new("SpecialMesh", p86)
  1722. b86.MeshType = Enum.MeshType.Cylinder
  1723. b86.Name = "Mesh"
  1724. b86.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1725. p87 = Instance.new("Part", m)
  1726. p87.BrickColor = bc("Eggplant")
  1727. p87.Material = Enum.Material.SmoothPlastic
  1728. p87.CFrame = cf(-7.75320053, 0.349996626, 24.6050606, -0.258816183, -0.965926707, 1.57904833e-05, -6.06896647e-05, 3.26090558e-05, 1, -0.965926707, 0.258816183, -6.70615118e-05)
  1729. p87.CanCollide = false
  1730. p87.FormFactor = Enum.FormFactor.Custom
  1731. p87.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1732. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1733. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1734. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1735. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1736. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1737. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1738. b87 = Instance.new("SpecialMesh", p87)
  1739. b87.MeshType = Enum.MeshType.Cylinder
  1740. b87.Name = "Mesh"
  1741. b87.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1742. p88 = Instance.new("Part", m)
  1743. p88.BrickColor = bc("Eggplant")
  1744. p88.Material = Enum.Material.SmoothPlastic
  1745. p88.CFrame = cf(-7.75323677, 0.349980384, 24.4050598, -0.258816183, -0.965926707, 1.57904833e-05, -6.06896647e-05, 3.26090558e-05, 1, -0.965926707, 0.258816183, -6.70615118e-05)
  1746. p88.CanCollide = false
  1747. p88.FormFactor = Enum.FormFactor.Custom
  1748. p88.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1749. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1750. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1751. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1753. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1754. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1755. b88 = Instance.new("SpecialMesh", p88)
  1756. b88.MeshType = Enum.MeshType.Cylinder
  1757. b88.Name = "Mesh"
  1758. b88.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1759. p89 = Instance.new("Part", m)
  1760. p89.BrickColor = bc("Eggplant")
  1761. p89.Material = Enum.Material.SmoothPlastic
  1762. p89.CFrame = cf(-7.75323677, 0.349980384, 24.4050598, 0.258784294, -0.965935171, -4.55241388e-05, -7.79460024e-05, -6.80121666e-05, 1, -0.965935111, -0.258784324, -9.28912705e-05)
  1763. p89.CanCollide = false
  1764. p89.FormFactor = Enum.FormFactor.Custom
  1765. p89.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1766. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1767. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1768. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1769. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1770. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1771. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1772. b89 = Instance.new("SpecialMesh", p89)
  1773. b89.MeshType = Enum.MeshType.Cylinder
  1774. b89.Name = "Mesh"
  1775. b89.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1776. p90 = Instance.new("Part", m)
  1777. p90.BrickColor = bc("Eggplant")
  1778. p90.Material = Enum.Material.SmoothPlastic
  1779. p90.CFrame = cf(-7.75314379, 0.350039691, 25.6050682, 0.258784294, -0.965935171, -4.55241388e-05, -7.79460024e-05, -6.80121666e-05, 1, -0.965935111, -0.258784324, -9.28912705e-05)
  1780. p90.CanCollide = false
  1781. p90.FormFactor = Enum.FormFactor.Custom
  1782. p90.Size = vec3(0.200000003, 0.400000006, 0.400000006)
  1783. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1784. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1785. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1786. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1787. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1788. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1789. b90 = Instance.new("SpecialMesh", p90)
  1790. b90.MeshType = Enum.MeshType.Cylinder
  1791. b90.Name = "Mesh"
  1792. b90.Scale = vec3(0.200000003, 0.800000012, 0.800000012)
  1793. p91 = Instance.new("Part", m)
  1794. p91.BrickColor = bc("Really black")
  1795. p91.Material = Enum.Material.Sand
  1796. p91.Transparency = 1
  1797. p91.Name = "HitBox"
  1798. p91.CFrame = cf(-7.75318241, 0.350110948, 21.305069, -3.06218863e-05, 1.84542478e-06, 1, -8.27810727e-05, 1, -1.84795965e-06, -1, -8.27811309e-05, -3.06217335e-05)
  1799. p91.CanCollide = false
  1800. p91.FormFactor = Enum.FormFactor.Custom
  1801. p91.Size = vec3(5.20000029, 0.300000012, 1.5)
  1802. p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1803. p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1804. p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1805. p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1806. p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1807. p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. p92 = Instance.new("Part", m)
  1809. p92.BrickColor = bc("Really black")
  1810. p92.Material = Enum.Material.Sand
  1811. p92.Transparency = 1
  1812. p92.Name = "TrailBox"
  1813. p92.CFrame = cf(-7.75318193, 0.350110888, 21.305069, -3.06218935e-05, 1.84542444e-06, 1, -8.27810727e-05, 1, -1.84795999e-06, -1, -8.27811309e-05, -3.06217262e-05)
  1814. p92.CanCollide = false
  1815. p92.FormFactor = Enum.FormFactor.Custom
  1816. p92.Size = vec3(4.4000001, 0.300000012, 0.699999988)
  1817. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1818. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1819. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1820. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1821. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1822. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1823. w1 = Instance.new("Weld", p1)
  1824. w1.Name = "PartW"
  1825. w1.Part0 = p1
  1826. w1.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1827. w1.Part1 = p7
  1828. w1.C1 = cf(1.00000572, -0.0999721438, -1.85966492e-05, -1, 2.88709998e-08, 5.35994768e-05, -2.88709998e-08, -1, -4.19536406e-10, 5.35994768e-05, -4.21147783e-10, 1)
  1829. w2 = Instance.new("Weld", p2)
  1830. w2.Name = "PartW"
  1831. w2.Part0 = p2
  1832. w2.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1833. w2.Part1 = p7
  1834. w2.C1 = cf(1.00000572, -0.0999721438, -1.85966492e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  1835. w3 = Instance.new("Weld", p3)
  1836. w3.Name = "PartW"
  1837. w3.Part0 = p3
  1838. w3.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1839. w3.Part1 = p7
  1840. w3.C1 = cf(1, 0.10002479, 3.33786011e-06, -1, 2.88709998e-08, 5.35994768e-05, -2.88709998e-08, -1, -4.19536406e-10, 5.35994768e-05, -4.21147783e-10, 1)
  1841. w4 = Instance.new("Weld", p4)
  1842. w4.Name = "PartW"
  1843. w4.Part0 = p4
  1844. w4.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1845. w4.Part1 = p7
  1846. w4.C1 = cf(-1.19999695, -0.250062913, 7.58171082e-05, 3.54505755e-06, 1.24906219e-05, 1, 1.89601033e-05, -1, 1.24905564e-05, 1, 1.89600596e-05, -3.54529038e-06)
  1847. w5 = Instance.new("Weld", p5)
  1848. w5.Name = "PartW"
  1849. w5.Part0 = p5
  1850. w5.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1851. w5.Part1 = p7
  1852. w5.C1 = cf(1.29998207, 4.30345535e-05, -0.250005722, -3.60651138e-05, 1.35521987e-06, -1, 1, 7.66494486e-06, -3.60651065e-05, 7.66489666e-06, -1, -1.35549453e-06)
  1853. w6 = Instance.new("Weld", p6)
  1854. w6.Name = "PartW"
  1855. w6.Part0 = p6
  1856. w6.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1857. w6.Part1 = p7
  1858. w6.C1 = cf(1, 0.10002479, 3.33786011e-06, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  1859. w7 = Instance.new("Weld", p7)
  1860. w7.Name = "HandleW"
  1861. w7.Part0 = p7
  1862. w7.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1863. w7.Part1 = p7
  1864. w7.C1 = cf(0, 0, 0, 1, 0, 0, 0, 1, 2.62012634e-14, 0, 2.62012634e-14, 1)
  1865. w8 = Instance.new("Weld", p8)
  1866. w8.Name = "PartW"
  1867. w8.Part0 = p8
  1868. w8.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1869. w8.Part1 = p7
  1870. w8.C1 = cf(-1.50003052, -8.43703747e-05, 0.000101566315, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  1871. w9 = Instance.new("Weld", p9)
  1872. w9.Name = "PartW"
  1873. w9.Part0 = p9
  1874. w9.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1875. w9.Part1 = p7
  1876. w9.C1 = cf(1.3000145, 3.34382057e-05, 0.249989986, -3.62261853e-05, 5.14747007e-05, -1, -1, -7.17815201e-05, 3.62224891e-05, -7.17796502e-05, 1, 5.14772983e-05)
  1877. w10 = Instance.new("Weld", p10)
  1878. w10.Name = "PartW"
  1879. w10.Part0 = p10
  1880. w10.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1881. w10.Part1 = p7
  1882. w10.C1 = cf(-0.799993515, 0.249954909, 5.76972961e-05, 1.71099891e-05, 3.31076444e-06, -1, -4.00034623e-05, 1, 3.31007323e-06, 1, 4.00034078e-05, 1.71101201e-05)
  1883. w11 = Instance.new("Weld", p11)
  1884. w11.Name = "PartW"
  1885. w11.Part0 = p11
  1886. w11.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1887. w11.Part1 = p7
  1888. w11.C1 = cf(-1.20001984, -5.05149364e-05, -0.249916077, -1.38494797e-05, -5.15571955e-05, 1, -1, -1.17955142e-05, -1.38500836e-05, 1.17962281e-05, -1, -5.15570282e-05)
  1889. w12 = Instance.new("Weld", p12)
  1890. w12.Name = "PartW"
  1891. w12.Part0 = p12
  1892. w12.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1893. w12.Part1 = p7
  1894. w12.C1 = cf(-0.800001144, -3.46302986e-05, -0.249954224, -3.60651138e-05, 1.35521987e-06, -1, 1, 7.66494486e-06, -3.60651065e-05, 7.66489666e-06, -1, -1.35549453e-06)
  1895. w13 = Instance.new("Weld", p13)
  1896. w13.Name = "PartW"
  1897. w13.Part0 = p13
  1898. w13.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1899. w13.Part1 = p7
  1900. w13.C1 = cf(-0.900016785, -3.95476818e-05, 4.62532043e-05, 1, 0, 0, 0, 1, 2.62012634e-14, 0, 2.62012634e-14, 1)
  1901. w14 = Instance.new("Weld", p14)
  1902. w14.Name = "PartW"
  1903. w14.Part0 = p14
  1904. w14.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1905. w14.Part1 = p7
  1906. w14.C1 = cf(-0.799999237, -2.98917294e-05, 5.4359436e-05, 0.965934634, -0.258786619, -1.57200484e-05, 1.87932164e-05, 9.40141217e-06, 1, -0.258786619, -0.965934634, 1.39445774e-05)
  1907. w15 = Instance.new("Weld", p15)
  1908. w15.Name = "PartW"
  1909. w15.Part0 = p15
  1910. w15.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1911. w15.Part1 = p7
  1912. w15.C1 = cf(-0.799966812, -4.41968441e-05, 0.250056744, -4.23986785e-06, 4.03668964e-05, -1, -1, 5.97006783e-06, 4.24010796e-06, 5.97023882e-06, 1, 4.03668746e-05)
  1913. w16 = Instance.new("Weld", p16)
  1914. w16.Name = "PartW"
  1915. w16.Part0 = p16
  1916. w16.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1917. w16.Part1 = p7
  1918. w16.C1 = cf(-1.19997787, -6.01112843e-05, 0.250080585, -6.81680758e-05, 9.76949741e-06, 1, 1, 7.02872931e-05, 6.81673919e-05, -7.02866309e-05, 1, -9.77428863e-06)
  1919. w17 = Instance.new("Weld", p17)
  1920. w17.Name = "PartW"
  1921. w17.Part0 = p17
  1922. w17.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1923. w17.Part1 = p7
  1924. w17.C1 = cf(2.56367111, 8.36849213e-05, 0.272639751, -4.38745265e-05, 1, 3.24549037e-05, 1, 4.38747193e-05, -5.85909902e-06, -5.86052283e-06, 3.2454649e-05, -1)
  1925. w18 = Instance.new("Weld", p18)
  1926. w18.Name = "PartW"
  1927. w18.Part0 = p18
  1928. w18.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1929. w18.Part1 = p7
  1930. w18.C1 = cf(-1.20004082, 0.24993518, 7.05718994e-05, -4.46635531e-05, -5.56386731e-05, 1, 5.57977946e-05, 1, 5.56411651e-05, -1, 5.58002757e-05, -4.46604463e-05)
  1931. w19 = Instance.new("Weld", p19)
  1932. w19.Name = "PartW"
  1933. w19.Part0 = p19
  1934. w19.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1935. w19.Part1 = p7
  1936. w19.C1 = cf(-0.799983978, -0.250045121, 7.72476196e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  1937. w20 = Instance.new("Weld", p20)
  1938. w20.Name = "PartW"
  1939. w20.Part0 = p20
  1940. w20.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1941. w20.Part1 = p7
  1942. w20.C1 = cf(0.700014114, 2.10404396e-05, 0.249993801, -7.78454632e-05, 2.09309292e-05, 1, 1, 6.46986446e-05, 7.78441172e-05, -6.46970147e-05, 1, -2.09359641e-05)
  1943. w21 = Instance.new("Weld", p21)
  1944. w21.Name = "PartW"
  1945. w21.Part0 = p21
  1946. w21.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1947. w21.Part1 = p7
  1948. w21.C1 = cf(0.700004578, 2.49147415e-05, -0.249994278, 4.73211148e-05, -5.15659631e-05, 1, -1, 9.41389007e-05, 4.73259679e-05, -9.41413309e-05, -1, -5.15615102e-05)
  1949. w22 = Instance.new("Weld", p22)
  1950. w22.Name = "PartW"
  1951. w22.Part0 = p22
  1952. w22.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1953. w22.Part1 = p7
  1954. w22.C1 = cf(1.10907745, 4.57763672e-05, -0.27275753, -2.69494558e-05, 1, 2.66879651e-05, -1, -2.69494922e-05, 1.32480614e-06, 1.32552543e-06, -2.66879288e-05, 1)
  1955. w23 = Instance.new("Weld", p23)
  1956. w23.Name = "PartW"
  1957. w23.Part0 = p23
  1958. w23.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1959. w23.Part1 = p7
  1960. w23.C1 = cf(1.2454834, 3.91602516e-05, 0.227252483, -7.78454632e-05, 2.09309292e-05, 1, 1, 6.46986446e-05, 7.78441172e-05, -6.46970147e-05, 1, -2.09359641e-05)
  1961. w24 = Instance.new("Weld", p24)
  1962. w24.Name = "PartW"
  1963. w24.Part0 = p24
  1964. w24.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1965. w24.Part1 = p7
  1966. w24.C1 = cf(2.15454292, 9.95695591e-05, -0.227338791, -2.69494558e-05, 1, 2.66879651e-05, -1, -2.69494922e-05, 1.32480614e-06, 1.32552543e-06, -2.66879288e-05, 1)
  1967. w25 = Instance.new("Weld", p25)
  1968. w25.Name = "PartW"
  1969. w25.Part0 = p25
  1970. w25.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1971. w25.Part1 = p7
  1972. w25.C1 = cf(1.97276497, 6.33299351e-05, 0.227237225, -7.78454632e-05, 2.09309292e-05, 1, 1, 6.46986446e-05, 7.78441172e-05, -6.46970147e-05, 1, -2.09359641e-05)
  1973. w26 = Instance.new("Weld", p26)
  1974. w26.Name = "PartW"
  1975. w26.Part0 = p26
  1976. w26.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1977. w26.Part1 = p7
  1978. w26.C1 = cf(1.97273636, 6.82473183e-05, -0.227341175, 4.73211148e-05, -5.15659631e-05, 1, -1, 9.41389007e-05, 4.73259679e-05, -9.41413309e-05, -1, -5.15615102e-05)
  1979. w27 = Instance.new("Weld", p27)
  1980. w27.Name = "PartW"
  1981. w27.Part0 = p27
  1982. w27.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1983. w27.Part1 = p7
  1984. w27.C1 = cf(2.15456772, 8.893013e-05, 0.227204323, -4.38745265e-05, 1, 3.24549037e-05, 1, 4.38747193e-05, -5.85909902e-06, -5.86052283e-06, 3.2454649e-05, -1)
  1985. w28 = Instance.new("Weld", p28)
  1986. w28.Name = "PartW"
  1987. w28.Part0 = p28
  1988. w28.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1989. w28.Part1 = p7
  1990. w28.C1 = cf(1.06364441, 5.28097153e-05, -0.227296352, -2.69494558e-05, 1, 2.66879651e-05, -1, -2.69494922e-05, 1.32480614e-06, 1.32552543e-06, -2.66879288e-05, 1)
  1991. w29 = Instance.new("Weld", p29)
  1992. w29.Name = "PartW"
  1993. w29.Part0 = p29
  1994. w29.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1995. w29.Part1 = p7
  1996. w29.C1 = cf(0.881828308, 3.29315662e-05, -0.22726965, 4.73211148e-05, -5.15659631e-05, 1, -1, 9.41389007e-05, 4.73259679e-05, -9.41413309e-05, -1, -5.15615102e-05)
  1997. w30 = Instance.new("Weld", p30)
  1998. w30.Name = "PartW"
  1999. w30.Part0 = p30
  2000. w30.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2001. w30.Part1 = p7
  2002. w30.C1 = cf(1.79093552, 7.39693642e-05, 0.227219105, -4.38745265e-05, 1, 3.24549037e-05, 1, 4.38747193e-05, -5.85909902e-06, -5.86052283e-06, 3.2454649e-05, -1)
  2003. w31 = Instance.new("Weld", p31)
  2004. w31.Name = "PartW"
  2005. w31.Part0 = p31
  2006. w31.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2007. w31.Part1 = p7
  2008. w31.C1 = cf(1.60911942, 6.36279583e-05, 0.227217197, -7.78454632e-05, 2.09309292e-05, 1, 1, 6.46986446e-05, 7.78441172e-05, -6.46970147e-05, 1, -2.09359641e-05)
  2009. w32 = Instance.new("Weld", p32)
  2010. w32.Name = "PartW"
  2011. w32.Part0 = p32
  2012. w32.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2013. w32.Part1 = p7
  2014. w32.C1 = cf(1.79090691, 8.27312469e-05, -0.227318287, -2.69494558e-05, 1, 2.66879651e-05, -1, -2.69494922e-05, 1.32480614e-06, 1.32552543e-06, -2.66879288e-05, 1)
  2015. w33 = Instance.new("Weld", p33)
  2016. w33.Name = "PartW"
  2017. w33.Part0 = p33
  2018. w33.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2019. w33.Part1 = p7
  2020. w33.C1 = cf(1.60909653, 7.42971897e-05, -0.22732687, 4.73211148e-05, -5.15659631e-05, 1, -1, 9.41389007e-05, 4.73259679e-05, -9.41413309e-05, -1, -5.15615102e-05)
  2021. w34 = Instance.new("Weld", p34)
  2022. w34.Name = "PartW"
  2023. w34.Part0 = p34
  2024. w34.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2025. w34.Part1 = p7
  2026. w34.C1 = cf(1.0636692, 4.78923321e-05, 0.227257729, -4.38745265e-05, 1, 3.24549037e-05, 1, 4.38747193e-05, -5.85909902e-06, -5.86052283e-06, 3.2454649e-05, -1)
  2027. w35 = Instance.new("Weld", p35)
  2028. w35.Name = "PartW"
  2029. w35.Part0 = p35
  2030. w35.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2031. w35.Part1 = p7
  2032. w35.C1 = cf(0.881837845, 2.41994858e-05, 0.227261543, -7.78454632e-05, 2.09309292e-05, 1, 1, 6.46986446e-05, 7.78441172e-05, -6.46970147e-05, 1, -2.09359641e-05)
  2033. w36 = Instance.new("Weld", p36)
  2034. w36.Name = "PartW"
  2035. w36.Part0 = p36
  2036. w36.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2037. w36.Part1 = p7
  2038. w36.C1 = cf(2.47273254, 0.000111877918, -0.272782326, -3.60651138e-05, 1.35521987e-06, -1, 1, 7.66494486e-06, -3.60651065e-05, 7.66489666e-06, -1, -1.35549453e-06)
  2039. w37 = Instance.new("Weld", p37)
  2040. w37.Name = "PartW"
  2041. w37.Part0 = p37
  2042. w37.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2043. w37.Part1 = p7
  2044. w37.C1 = cf(2.47277832, 8.9943409e-05, 0.272656918, -3.62261853e-05, 5.14747007e-05, -1, -1, -7.17815201e-05, 3.62224891e-05, -7.17796502e-05, 1, 5.14772983e-05)
  2045. w38 = Instance.new("Weld", p38)
  2046. w38.Name = "PartW"
  2047. w38.Part0 = p38
  2048. w38.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2049. w38.Part1 = p7
  2050. w38.C1 = cf(3.56365967, 0.000132113695, -0.181934357, 4.73211148e-05, -5.15659631e-05, 1, -1, 9.41389007e-05, 4.73259679e-05, -9.41413309e-05, -1, -5.15615102e-05)
  2051. w39 = Instance.new("Weld", p39)
  2052. w39.Name = "PartW"
  2053. w39.Part0 = p39
  2054. w39.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2055. w39.Part1 = p7
  2056. w39.C1 = cf(3.5636692, 0.00013846159, 0.181690693, -7.78454632e-05, 2.09309292e-05, 1, 1, 6.46986446e-05, 7.78441172e-05, -6.46970147e-05, 1, -2.09359641e-05)
  2057. w40 = Instance.new("Weld", p40)
  2058. w40.Name = "PartW"
  2059. w40.Part0 = p40
  2060. w40.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2061. w40.Part1 = p7
  2062. w40.C1 = cf(2.33639526, 9.73641872e-05, 0.227190018, -7.78454632e-05, 2.09309292e-05, 1, 1, 6.46986446e-05, 7.78441172e-05, -6.46970147e-05, 1, -2.09359641e-05)
  2063. w41 = Instance.new("Weld", p41)
  2064. w41.Name = "PartW"
  2065. w41.Part0 = p41
  2066. w41.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2067. w41.Part1 = p7
  2068. w41.C1 = cf(1.24546051, 4.97996807e-05, -0.227294922, 4.73211148e-05, -5.15659631e-05, 1, -1, 9.41389007e-05, 4.73259679e-05, -9.41413309e-05, -1, -5.15615102e-05)
  2069. w42 = Instance.new("Weld", p42)
  2070. w42.Name = "PartW"
  2071. w42.Part0 = p42
  2072. w42.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2073. w42.Part1 = p7
  2074. w42.C1 = cf(1.42726326, 4.29749489e-05, -0.227300644, -2.69494558e-05, 1, 2.66879651e-05, -1, -2.69494922e-05, 1.32480614e-06, 1.32552543e-06, -2.66879288e-05, 1)
  2075. w43 = Instance.new("Weld", p43)
  2076. w43.Name = "PartW"
  2077. w43.Part0 = p43
  2078. w43.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2079. w43.Part1 = p7
  2080. w43.C1 = cf(2.74549294, 0.00010690093, -7.58171082e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2081. w44 = Instance.new("Weld", p44)
  2082. w44.Name = "PartW"
  2083. w44.Part0 = p44
  2084. w44.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2085. w44.Part1 = p7
  2086. w44.C1 = cf(1.56364441, -0.0499557257, -3.9100647e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2087. w45 = Instance.new("Weld", p45)
  2088. w45.Name = "PartW"
  2089. w45.Part0 = p45
  2090. w45.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2091. w45.Part1 = p7
  2092. w45.C1 = cf(1.56362915, 0.050073266, -3.52859497e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2093. w46 = Instance.new("Weld", p46)
  2094. w46.Name = "PartW"
  2095. w46.Part0 = p46
  2096. w46.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2097. w46.Part1 = p7
  2098. w46.C1 = cf(1.83637047, 0.0500734746, -5.14984131e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2099. w47 = Instance.new("Weld", p47)
  2100. w47.Name = "PartW"
  2101. w47.Part0 = p47
  2102. w47.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2103. w47.Part1 = p7
  2104. w47.C1 = cf(1.83639908, -0.0499383211, -4.57763672e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2105. w48 = Instance.new("Weld", p48)
  2106. w48.Name = "PartW"
  2107. w48.Part0 = p48
  2108. w48.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2109. w48.Part1 = p7
  2110. w48.C1 = cf(2.10910416, -0.0499361753, -5.53131104e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2111. w49 = Instance.new("Weld", p49)
  2112. w49.Name = "PartW"
  2113. w49.Part0 = p49
  2114. w49.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2115. w49.Part1 = p7
  2116. w49.C1 = cf(2.10912323, 0.050090909, -6.43730164e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2117. w50 = Instance.new("Weld", p50)
  2118. w50.Name = "PartW"
  2119. w50.Part0 = p50
  2120. w50.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2121. w50.Part1 = p7
  2122. w50.C1 = cf(2.38183212, 0.0500930846, -8.86917114e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2123. w51 = Instance.new("Weld", p51)
  2124. w51.Name = "PartW"
  2125. w51.Part0 = p51
  2126. w51.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2127. w51.Part1 = p7
  2128. w51.C1 = cf(2.3818531, -0.0499320924, -6.96182251e-05, -9.57285374e-05, -3.31040064e-06, -1, 4.00310564e-05, -1, 3.30656621e-06, -1, -4.00307399e-05, 9.57286757e-05)
  2129. w52 = Instance.new("Weld", p52)
  2130. w52.Name = "PartW"
  2131. w52.Part0 = p52
  2132. w52.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2133. w52.Part1 = p7
  2134. w52.C1 = cf(5.1091404, 0.000201493502, -0.113807201, -3.60651138e-05, 1.35522714e-06, -1, 1, 7.66494759e-06, -3.60651065e-05, 7.66489848e-06, -1, -1.35549453e-06)
  2135. w53 = Instance.new("Weld", p53)
  2136. w53.Name = "PartW"
  2137. w53.Part0 = p53
  2138. w53.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2139. w53.Part1 = p7
  2140. w53.C1 = cf(5.10915375, 0.000199049711, 0.113484383, -3.62261853e-05, 5.14746935e-05, -1, -1, -7.17815201e-05, 3.62224891e-05, -7.17796574e-05, 1, 5.14772983e-05)
  2141. w54 = Instance.new("Weld", p54)
  2142. w54.Name = "PartW"
  2143. w54.Part0 = p54
  2144. w54.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2145. w54.Part1 = p7
  2146. w54.C1 = cf(5.20007133, 0.000197649002, 0.158919811, -3.62261853e-05, 5.14746935e-05, -1, -1, -7.17815201e-05, 3.62224891e-05, -7.17796574e-05, 1, 5.14772983e-05)
  2147. w55 = Instance.new("Weld", p55)
  2148. w55.Name = "PartW"
  2149. w55.Part0 = p55
  2150. w55.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2151. w55.Part1 = p7
  2152. w55.C1 = cf(5.20004082, 0.000205665827, -0.159259796, -3.60651138e-05, 1.35522714e-06, -1, 1, 7.66494759e-06, -3.60651065e-05, 7.66489848e-06, -1, -1.35549453e-06)
  2153. w56 = Instance.new("Weld", p56)
  2154. w56.Name = "PartW"
  2155. w56.Part0 = p56
  2156. w56.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2157. w56.Part1 = p7
  2158. w56.C1 = cf(2.33637619, 0.000100374222, -0.227338791, 4.73211148e-05, -5.15659558e-05, 1, -1, 9.41389007e-05, 4.73259679e-05, -9.41413382e-05, -1, -5.15615102e-05)
  2159. w57 = Instance.new("Weld", p57)
  2160. w57.Name = "PartW"
  2161. w57.Part0 = p57
  2162. w57.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2163. w57.Part1 = p7
  2164. w57.C1 = cf(1.42729187, 3.80575657e-05, 0.227228642, -4.38745265e-05, 1, 3.2454911e-05, 1, 4.38747193e-05, -5.85909675e-06, -5.86052101e-06, 3.2454649e-05, -1)
  2165. w58 = Instance.new("Weld", p58)
  2166. w58.Name = "PartW"
  2167. w58.Part0 = p58
  2168. w58.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2169. w58.Part1 = p7
  2170. w58.C1 = cf(3.60910416, 0.000144988298, -0.272852898, -2.69494558e-05, 1, 2.66879579e-05, -1, -2.69494922e-05, 1.32480386e-06, 1.32552339e-06, -2.66879288e-05, 1)
  2171. w59 = Instance.new("Weld", p59)
  2172. w59.Name = "PartW"
  2173. w59.Part0 = p59
  2174. w59.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2175. w59.Part1 = p7
  2176. w59.C1 = cf(3.60913658, 0.000150680542, 0.227143764, -4.38745265e-05, 1, 3.2454911e-05, 1, 4.38747193e-05, -5.85909675e-06, -5.86052101e-06, 3.2454649e-05, -1)
  2177. w60 = Instance.new("Weld", p60)
  2178. w60.Name = "PartW"
  2179. w60.Part0 = p60
  2180. w60.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2181. w60.Part1 = p7
  2182. w60.C1 = cf(0.836343765, 4.55379486e-05, -0.27273941, -6.37934863e-06, -1, 1.08782224e-05, 1, -6.37998892e-06, -5.90797426e-05, 5.90798118e-05, 1.08778549e-05, 1)
  2183. w61 = Instance.new("Weld", p61)
  2184. w61.Name = "PartW"
  2185. w61.Part0 = p61
  2186. w61.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2187. w61.Part1 = p7
  2188. w61.C1 = cf(0.836374283, 2.5510788e-05, 0.272717953, 4.80170893e-05, -1, -2.66859206e-05, -1, -4.80158997e-05, -4.46253835e-05, 4.46241029e-05, 2.6688067e-05, -1)
  2189. w62 = Instance.new("Weld", p62)
  2190. w62.Name = "PartW"
  2191. w62.Part0 = p62
  2192. w62.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2193. w62.Part1 = p7
  2194. w62.C1 = cf(1.10908699, 3.71932983e-05, 0.272698402, -4.38745265e-05, 1, 3.2454911e-05, 1, 4.38747193e-05, -5.85909675e-06, -5.86052101e-06, 3.2454649e-05, -1)
  2195. w63 = Instance.new("Weld", p63)
  2196. w63.Name = "PartW"
  2197. w63.Part0 = p63
  2198. w63.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2199. w63.Part1 = p7
  2200. w63.C1 = cf(1.47272301, 5.49852848e-05, -0.272772789, -2.69494558e-05, 1, 2.66879579e-05, -1, -2.69494922e-05, 1.32480386e-06, 1.32552339e-06, -2.66879288e-05, 1)
  2201. w64 = Instance.new("Weld", p64)
  2202. w64.Name = "PartW"
  2203. w64.Part0 = p64
  2204. w64.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2205. w64.Part1 = p7
  2206. w64.C1 = cf(1.19999504, 5.66840172e-05, -0.272763252, -6.37934863e-06, -1, 1.08782224e-05, 1, -6.37998892e-06, -5.90797426e-05, 5.90798118e-05, 1.08778549e-05, 1)
  2207. w65 = Instance.new("Weld", p65)
  2208. w65.Name = "PartW"
  2209. w65.Part0 = p65
  2210. w65.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2211. w65.Part1 = p7
  2212. w65.C1 = cf(1.20001411, 2.71201134e-05, 0.272706509, 4.80170893e-05, -1, -2.66859206e-05, -1, -4.80158997e-05, -4.46253835e-05, 4.46241029e-05, 2.6688067e-05, -1)
  2213. w66 = Instance.new("Weld", p66)
  2214. w66.Name = "PartW"
  2215. w66.Part0 = p66
  2216. w66.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2217. w66.Part1 = p7
  2218. w66.C1 = cf(1.47274399, 4.64320183e-05, 0.272689342, -4.38745265e-05, 1, 3.2454911e-05, 1, 4.38747193e-05, -5.85909675e-06, -5.86052101e-06, 3.2454649e-05, -1)
  2219. w67 = Instance.new("Weld", p67)
  2220. w67.Name = "PartW"
  2221. w67.Part0 = p67
  2222. w67.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2223. w67.Part1 = p7
  2224. w67.C1 = cf(1.83635712, 8.32974911e-05, -0.272774696, -2.69494558e-05, 1, 2.66879579e-05, -1, -2.69494922e-05, 1.32480386e-06, 1.32552339e-06, -2.66879288e-05, 1)
  2225. w68 = Instance.new("Weld", p68)
  2226. w68.Name = "PartW"
  2227. w68.Part0 = p68
  2228. w68.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2229. w68.Part1 = p7
  2230. w68.C1 = cf(1.56362915, 7.35223293e-05, -0.272767067, -6.37934863e-06, -1, 1.08782224e-05, 1, -6.37998892e-06, -5.90797426e-05, 5.90798118e-05, 1.08778549e-05, 1)
  2231. w69 = Instance.new("Weld", p69)
  2232. w69.Name = "PartW"
  2233. w69.Part0 = p69
  2234. w69.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2235. w69.Part1 = p7
  2236. w69.C1 = cf(1.56366539, 5.54323196e-05, 0.272681713, 4.80170893e-05, -1, -2.66859206e-05, -1, -4.80158997e-05, -4.46253835e-05, 4.46241029e-05, 2.6688067e-05, -1)
  2237. w70 = Instance.new("Weld", p70)
  2238. w70.Name = "PartW"
  2239. w70.Part0 = p70
  2240. w70.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2241. w70.Part1 = p7
  2242. w70.C1 = cf(1.8363781, 5.75780869e-05, 0.272675037, -4.38745265e-05, 1, 3.2454911e-05, 1, 4.38747193e-05, -5.85909675e-06, -5.86052101e-06, 3.2454649e-05, -1)
  2243. w71 = Instance.new("Weld", p71)
  2244. w71.Name = "PartW"
  2245. w71.Part0 = p71
  2246. w71.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2247. w71.Part1 = p7
  2248. w71.C1 = cf(2.20000076, 9.44435596e-05, -0.272780418, -2.69494558e-05, 1, 2.66879579e-05, -1, -2.69494922e-05, 1.32480386e-06, 1.32552339e-06, -2.66879288e-05, 1)
  2249. w72 = Instance.new("Weld", p72)
  2250. w72.Name = "PartW"
  2251. w72.Part0 = p72
  2252. w72.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2253. w72.Part1 = p7
  2254. w72.C1 = cf(1.92727089, 7.70390034e-05, -0.272781372, -6.37934863e-06, -1, 1.08782224e-05, 1, -6.37998892e-06, -5.90797426e-05, 5.90798118e-05, 1.08778549e-05, 1)
  2255. w73 = Instance.new("Weld", p73)
  2256. w73.Name = "PartW"
  2257. w73.Part0 = p73
  2258. w73.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2259. w73.Part1 = p7
  2260. w73.C1 = cf(1.92728996, 5.70416451e-05, 0.27269125, 4.80170893e-05, -1, -2.66859206e-05, -1, -4.80158997e-05, -4.46253835e-05, 4.46241029e-05, 2.6688067e-05, -1)
  2261. w74 = Instance.new("Weld", p74)
  2262. w74.Name = "PartW"
  2263. w74.Part0 = p74
  2264. w74.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2265. w74.Part1 = p7
  2266. w74.C1 = cf(2.20002556, 8.39829445e-05, 0.27265358, -4.38745265e-05, 1, 3.2454911e-05, 1, 4.38747193e-05, -5.85909675e-06, -5.86052101e-06, 3.2454649e-05, -1)
  2267. w75 = Instance.new("Weld", p75)
  2268. w75.Name = "PartW"
  2269. w75.Part0 = p75
  2270. w75.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2271. w75.Part1 = p7
  2272. w75.C1 = cf(2.5636425, 0.000115156174, -0.272791862, -2.69494558e-05, 1, 2.66879579e-05, -1, -2.69494922e-05, 1.32480386e-06, 1.32552339e-06, -2.66879288e-05, 1)
  2273. w76 = Instance.new("Weld", p76)
  2274. w76.Name = "PartW"
  2275. w76.Part0 = p76
  2276. w76.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2277. w76.Part1 = p7
  2278. w76.C1 = cf(2.29091454, 9.77218151e-05, -0.272784233, -6.37934863e-06, -1, 1.08782224e-05, 1, -6.37998892e-06, -5.90797426e-05, 5.90798118e-05, 1.08778549e-05, 1)
  2279. w77 = Instance.new("Weld", p77)
  2280. w77.Name = "PartW"
  2281. w77.Part0 = p77
  2282. w77.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2283. w77.Part1 = p7
  2284. w77.C1 = cf(2.29095078, 7.38799572e-05, 0.272669315, 4.80170893e-05, -1, -2.66859206e-05, -1, -4.80158997e-05, -4.46253835e-05, 4.46241029e-05, 2.6688067e-05, -1)
  2285. w78 = Instance.new("Weld", p78)
  2286. w78.Name = "PartW"
  2287. w78.Part0 = p78
  2288. w78.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2289. w78.Part1 = p7
  2290. w78.C1 = cf(-0.599992752, -2.95639038e-05, 3.0040741e-05, 0.965927184, 0.258813888, 1.01115875e-05, 2.49276491e-06, -4.83722688e-05, 1, 0.258813858, -0.965927243, -4.73692526e-05)
  2291. w79 = Instance.new("Weld", p79)
  2292. w79.Name = "PartW"
  2293. w79.Part0 = p79
  2294. w79.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2295. w79.Part1 = p7
  2296. w79.C1 = cf(-0.599992752, -2.95639038e-05, 3.0040741e-05, 0.965934634, -0.258786619, -1.57200484e-05, 1.87932164e-05, 9.40141217e-06, 1, -0.258786619, -0.965934634, 1.39445792e-05)
  2297. w80 = Instance.new("Weld", p80)
  2298. w80.Name = "PartW"
  2299. w80.Part0 = p80
  2300. w80.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2301. w80.Part1 = p7
  2302. w80.C1 = cf(-0.400001526, -1.39772892e-05, 2.0980835e-05, 0.965927184, 0.258813888, 1.01115875e-05, 2.49276491e-06, -4.83722688e-05, 1, 0.258813858, -0.965927243, -4.73692526e-05)
  2303. w81 = Instance.new("Weld", p81)
  2304. w81.Name = "PartW"
  2305. w81.Part0 = p81
  2306. w81.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2307. w81.Part1 = p7
  2308. w81.C1 = cf(-0.400001526, -1.39772892e-05, 2.0980835e-05, 0.965934634, -0.258786619, -1.57200484e-05, 1.87932164e-05, 9.40141217e-06, 1, -0.258786619, -0.965934634, 1.39445792e-05)
  2309. w82 = Instance.new("Weld", p82)
  2310. w82.Name = "PartW"
  2311. w82.Part0 = p82
  2312. w82.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2313. w82.Part1 = p7
  2314. w82.C1 = cf(-0.199996948, -7.95722008e-06, -2.86102295e-06, 0.965927184, 0.258813888, 1.01115875e-05, 2.49276491e-06, -4.83722688e-05, 1, 0.258813858, -0.965927243, -4.73692526e-05)
  2315. w83 = Instance.new("Weld", p83)
  2316. w83.Name = "PartW"
  2317. w83.Part0 = p83
  2318. w83.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2319. w83.Part1 = p7
  2320. w83.C1 = cf(-0.199996948, -7.95722008e-06, -2.86102295e-06, 0.965934634, -0.258786619, -1.57200484e-05, 1.87932164e-05, 9.40141217e-06, 1, -0.258786619, -0.965934634, 1.39445792e-05)
  2321. w84 = Instance.new("Weld", p84)
  2322. w84.Name = "PartW"
  2323. w84.Part0 = p84
  2324. w84.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2325. w84.Part1 = p7
  2326. w84.C1 = cf(0, 0, 0, 0.965934634, -0.258786619, -1.57200484e-05, 1.87932164e-05, 9.40141217e-06, 1, -0.258786619, -0.965934634, 1.39445792e-05)
  2327. w85 = Instance.new("Weld", p85)
  2328. w85.Name = "PartW"
  2329. w85.Part0 = p85
  2330. w85.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2331. w85.Part1 = p7
  2332. w85.C1 = cf(0, 0, 0, 0.965927184, 0.258813888, 1.01115875e-05, 2.49276491e-06, -4.83722688e-05, 1, 0.258813858, -0.965927243, -4.73692526e-05)
  2333. w86 = Instance.new("Weld", p86)
  2334. w86.Name = "PartW"
  2335. w86.Part0 = p86
  2336. w86.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2337. w86.Part1 = p7
  2338. w86.C1 = cf(0.200008392, 9.83476639e-06, 2.81333923e-05, 0.965927184, 0.258813888, 1.01115875e-05, 2.49276491e-06, -4.83722688e-05, 1, 0.258813858, -0.965927243, -4.73692526e-05)
  2339. w87 = Instance.new("Weld", p87)
  2340. w87.Name = "PartW"
  2341. w87.Part0 = p87
  2342. w87.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2343. w87.Part1 = p7
  2344. w87.C1 = cf(0.200008392, 9.83476639e-06, 2.81333923e-05, 0.965934634, -0.258786619, -1.57200484e-05, 1.87932164e-05, 9.40141217e-06, 1, -0.258786619, -0.965934634, 1.39445792e-05)
  2345. w88 = Instance.new("Weld", p88)
  2346. w88.Name = "PartW"
  2347. w88.Part0 = p88
  2348. w88.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2349. w88.Part1 = p7
  2350. w88.C1 = cf(0.400009155, 1.01327896e-05, -1.90734863e-06, 0.965934634, -0.258786619, -1.57200484e-05, 1.87932164e-05, 9.40141217e-06, 1, -0.258786619, -0.965934634, 1.39445792e-05)
  2351. w89 = Instance.new("Weld", p89)
  2352. w89.Name = "PartW"
  2353. w89.Part0 = p89
  2354. w89.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2355. w89.Part1 = p7
  2356. w89.C1 = cf(0.400009155, 1.01327896e-05, -1.90734863e-06, 0.965927184, 0.258813888, 1.01115875e-05, 2.49276491e-06, -4.83722688e-05, 1, 0.258813858, -0.965927243, -4.73692526e-05)
  2357. w90 = Instance.new("Weld", p90)
  2358. w90.Name = "PartW"
  2359. w90.Part0 = p90
  2360. w90.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2361. w90.Part1 = p7
  2362. w90.C1 = cf(-0.799999237, -2.98917294e-05, 5.4359436e-05, 0.965927184, 0.258813888, 1.01115875e-05, 2.49276491e-06, -4.83722688e-05, 1, 0.258813858, -0.965927243, -4.73692526e-05)
  2363. w91 = Instance.new("Weld", p91)
  2364. w91.Name = "HitBoxW"
  2365. w91.Part0 = p91
  2366. w91.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2367. w91.Part1 = p7
  2368. w91.C1 = cf(3.5, 0.000397324562, 0.000147342682, 1, 0, -7.27595761e-12, 0, 1, -2.36122233e-12, 0, 2.07256434e-12, 1)
  2369. w92 = Instance.new("Weld", p92)
  2370. w92.Name = "TrailBoxW"
  2371. w92.Part0 = p92
  2372. w92.C0 = cf(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2373. w92.Part1 = p7
  2374. w92.C1 = cf(3.5, 0.000397264957, 0.000147819519, 1, 0, -7.27595761e-12, 0, 1, -2.36122233e-12, 0, 2.07256434e-12, 1)
  2375. m.Parent = Char
  2376. for i,v in pairs(m:children()) do
  2377. if v:IsA("BasePart") then
  2378. v.Locked = true
  2379. end
  2380. end
  2381. local m2 = m:Clone()
  2382. m2.Parent = Char
  2383. local handle1 = m:WaitForChild("Handle")
  2384. local hitbox1 = m:WaitForChild("HitBox")
  2385. local trailbox1 = m:WaitForChild("TrailBox")
  2386. local handle2 = m2:WaitForChild("Handle")
  2387. local hitbox2 = m2:WaitForChild("HitBox")
  2388. local trailbox2 = m2:WaitForChild("TrailBox")
  2389. local llw = Weld(Left_Leg, Torso, cf(0.5, 2, 0))
  2390. local rlw = Weld(Right_Leg, Torso, cf(-0.5, 2, 0))
  2391. local raw = Weld(Right_Arm, Torso, cf(-1.5, 0, 0))
  2392. local law = Weld(Left_Arm, Torso, cf(1.5, 0, 0))
  2393. local torw = Weld(Torso, HumanoidRootPart, cf(0, 0, 0))
  2394. local hedw = Weld(Head, Torso, cf(0, -1.5, 0))
  2395. local h1w = Weld(larm, handle1, cf(0, -1, 0) * ang(rad(90), 0, rad(90)))
  2396. local h2w = Weld(rarm, handle2, cf(0, -1, 0) * ang(rad(90), 0, rad(90)))
  2397. local Used = {
  2398. Executed = {}
  2399. ,
  2400. Failed = {}
  2401. }
  2402. local BindKey = function(Name, Key, Function)
  2403.  
  2404. local keydown = nil
  2405. keydown = mouse.KeyDown:connect(function(key)
  2406.  
  2407. if Key:lower() == key:lower() then
  2408. if dkd then
  2409. table.insert(Used.Failed, {Name, Key, Function})
  2410. else
  2411. if NotifyKeyPresses then
  2412. warn("executed(" .. Name .. ", \"" .. tostring(Key:upper()) .. "\")")
  2413. end
  2414. Function(Name, Key)
  2415. if NotifyKeyPresses then
  2416. warn("ended(" .. Name .. ")")
  2417. end
  2418. table.insert(Used.Executed, {Name, Key, Function})
  2419. end
  2420. end
  2421. end
  2422. )
  2423. end
  2424.  
  2425. FaceMouse = function()
  2426.  
  2427. local torso, torsoPos = Torso, HumanoidRootPart.Position
  2428. local torso = Char:FindFirstChild("Torso")
  2429. if torso then
  2430. torsoPos = HumanoidRootPart.CFrame.p
  2431. HumanoidRootPart.CFrame = lerp(HumanoidRootPart.CFrame, CFrame.new(torsoPos, Vector3.new(mouse.Hit.X, torsoPos.Y, mouse.Hit.Z)), 0.5)
  2432. end
  2433. end
  2434.  
  2435. local TrailFXModel = Instance.new("Model", Character)
  2436. IsLimb = function(Object)
  2437.  
  2438. local Limbs = {"Right Arm", "Left Arm", "Left Leg", "Right Leg", "Torso", "Head"}
  2439. local Value, Integer = false, "Not Defined"
  2440. for Index,String in next do
  2441. if Object.Name:lower() == String:lower() then
  2442. Value = true
  2443. Integer = Index
  2444. end
  2445. end
  2446. return {Value, Integer}
  2447. end
  2448.  
  2449. local LimbsLast = {["Right Arm"] = CFrame.new(0, 0, 0), ["Left Arm"] = CFrame.new(0, 0, 0), ["Left Leg"] = CFrame.new(0, 0, 0), ["Right Leg"] = CFrame.new(0, 0, 0), Torso = CFrame.new(0, 0, 0), Head = CFrame.new(0, 0, 0)}
  2450. BodyTrail = function(Time, Colour)
  2451.  
  2452. TrailFXModel:BreakJoints()
  2453. for Index,Object in pairs(Char:children()) do
  2454. do
  2455. if Object:IsA("BasePart") and Object.Name ~= "HumanoidRootPart" and IsLimb(Object)[1] == true then
  2456. do
  2457. spawn(function()
  2458.  
  2459. local NewObj = Instance.new("Part")
  2460. NewObj.Color = BrickColor.new(Colour).Color
  2461. NewObj.CanCollide = false
  2462. NewObj.Anchored = true
  2463. NewObj.TopSurface = 0
  2464. NewObj.Transparency = 0
  2465. NewObj.Material = "Granite"
  2466. NewObj.CFrame = Object.CFrame
  2467. local Pos = LimbsLast[Object.Name].p
  2468. wait()
  2469. local Pos2 = Object.CFrame.p
  2470. local Distance = Pos - Pos2.magnitude
  2471. local LimbsAndSizes = {
  2472. ["Right Arm"] = {1, 2}
  2473. ,
  2474. ["Left Arm"] = {1, 2}
  2475. ,
  2476. ["Left Leg"] = {1, 2}
  2477. ,
  2478. ["Right Leg"] = {1, 2}
  2479. ,
  2480. Torso = {2, 2}
  2481. ,
  2482. Head = {2, 1}
  2483. }
  2484. for Limb,XY in next do
  2485. if Object.Name:lower() == Limb:lower() then
  2486. LimbsLast[Limb] = Object.CFrame
  2487. NewObj.Name = Object.Name
  2488. NewObj.Size = Vector3.new(XY[1], XY[2], Distance)
  2489. end
  2490. end
  2491. NewObj.CFrame = CFrame.new(Pos, Pos2) * CFrame.new(0, 0, -(Distance / 2))
  2492. NewObj.Parent = TrailFXModel
  2493. delay(Time / 2, function()
  2494.  
  2495. local integer = 0.05
  2496. for i = 0, 1, integer do
  2497. NewObj.Transparency = i
  2498. wait()
  2499. end
  2500. NewObj:Destroy()
  2501. end
  2502. )
  2503. end
  2504. )
  2505. -- DECOMPILER ERROR at PC30: LeaveBlock: unexpected jumping out IF_THEN_STMT
  2506.  
  2507. -- DECOMPILER ERROR at PC30: LeaveBlock: unexpected jumping out IF_STMT
  2508.  
  2509. end
  2510. end
  2511. end
  2512. end
  2513. end
  2514.  
  2515. rainb = function(hue)
  2516.  
  2517. local section = hue % 1 * 3
  2518. local secondary = 0.5 * math.pi * (section % 1)
  2519. if section < 1 then
  2520. return c3(1, 1 - cos(secondary), 1 - sin(secondary))
  2521. else
  2522. if section < 2 then
  2523. return c3(1 - sin(secondary), 1, 1 - cos(secondary))
  2524. else
  2525. return c3(1 - cos(secondary), 1 - sin(secondary), 1)
  2526. end
  2527. end
  2528. end
  2529.  
  2530. local CRIT = false
  2531. showDamage = function(Parent, Txt, RemovalTime, Clr)
  2532.  
  2533. ypcall(function()
  2534.  
  2535. if string.find("critical", Txt:lower()) then
  2536. Clr = "Really red"
  2537. print("crit")
  2538. end
  2539. local Clr_Raw = Clr
  2540. if Clr == nil then
  2541. Clr = "Mulberry"
  2542. end
  2543. Clr = bc(Clr).Color
  2544. local Pert = Instance.new("Part", Parent)
  2545. Pert.Size = vec3(0.2, 0.2, 0.2)
  2546. Pert.Transparency = 1
  2547. Pert.CanCollide = false
  2548. Pert.Anchored = true
  2549. Pert.CFrame = Parent:FindFirstChild("Head").CFrame
  2550. Pert.BrickColor = bc("Really black")
  2551. local Gui = Instance.new("BillboardGui", Pert)
  2552. Gui.Adornee = Pert
  2553. local n2 = 10
  2554. Gui.Size = UDim2.new(n2, 0, n2, 0)
  2555. local TextL = Instance.new("TextLabel", Gui)
  2556. local r, g, b = Clr.r, Clr.g, Clr.b
  2557. local clr = c3(r, g, b)
  2558. if Clr_Raw:lower() == "rainbow" then
  2559. lrs:connect(function()
  2560.  
  2561. Clr = rainb(tick() / 3)
  2562. r = Clr.r
  2563. clr = c3(r, g, b)
  2564. end
  2565. )
  2566. end
  2567. ypcall(function()
  2568.  
  2569. if type(tonumber(Txt)) == "number" then
  2570. TextL.Text = tostring(math.floor(tonumber(Txt)))
  2571. else
  2572. TextL.Text = tostring(Txt)
  2573. end
  2574. end
  2575. )
  2576. TextL.BackgroundTransparency = 1
  2577. TextL.Font = "Bodoni"
  2578. TextL.Size = UDim2.new(6, 0, 0.5, 0)
  2579. TextL.Position = UDim2.new(-3, 0, -0.05, 0)
  2580. TextL.TextScaled = true
  2581. TextL.FontSize = "Size28"
  2582. TextL.TextColor3 = clr
  2583. local n = 10
  2584. local sp = Pert.CFrame * cf(rand(-n, n), rand(-n, n), rand(-n, n))
  2585. lrs:connect(function()
  2586.  
  2587. Pert.CFrame = clerp(Pert.CFrame, sp, 0.01)
  2588. clr = c3(r, g, b)
  2589. TextL.TextColor3 = clr
  2590. end
  2591. )
  2592. delay(RemovalTime / 2 + 1, function()
  2593.  
  2594. local rn, bn, gn = 1 - r, 1 - b, 1 - g
  2595. spawn(function()
  2596.  
  2597. for i = 0, 1, 0.025 do
  2598. TextL.TextTransparency = i
  2599. lrs:wait()
  2600. end
  2601. Pert:Destroy()
  2602. end
  2603. )
  2604. spawn(function()
  2605.  
  2606. for i = 0, rn, 0.01 do
  2607. r = rn - i
  2608. lrs:wait()
  2609. end
  2610. end
  2611. )
  2612. spawn(function()
  2613.  
  2614. for i = 0, bn, 0.01 do
  2615. b = bn - i
  2616. lrs:wait()
  2617. end
  2618. end
  2619. )
  2620. spawn(function()
  2621.  
  2622. for i = 0, gn, 0.01 do
  2623. g = gn - i
  2624. lrs:wait()
  2625. end
  2626. end
  2627. )
  2628. end
  2629. )
  2630. end
  2631. )
  2632. end
  2633.  
  2634. CheckIfLanded = function()
  2635.  
  2636. local Ray = Ray.new(torso.Position, vec3(0, -1, 0) * 10)
  2637. local Ignore = {Char}
  2638. local Hit, Pos, SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray, Ignore)
  2639. if Hit == nil then
  2640. return false, nil
  2641. end
  2642. return true, Hit
  2643. end
  2644.  
  2645. FindNearestTorso = function(Position, Distance, SinglePlayer)
  2646.  
  2647. if SinglePlayer.Torso.CFrame.p - Position.magnitude >= Distance then
  2648. do return not SinglePlayer end
  2649. do
  2650. local List = {}
  2651. for i,v in pairs(workspace:GetChildren()) do
  2652. if v:IsA("Model") and (v:findFirstChild("Torso") or v:findFirstChild("HumanoidRootPart")) and v ~= Char and v.HumanoidRootPart.Position - Position.magnitude <= Distance then
  2653. table.insert(List, v)
  2654. end
  2655. end
  2656. do return List end
  2657. -- DECOMPILER ERROR: 4 unprocessed JMP targets
  2658. end
  2659. end
  2660. end
  2661.  
  2662. DebounceHit = false
  2663. local pitches = {0.75, 0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1, 1.15, 1.2, 1.25}
  2664. local swing_sfx = {134012322}
  2665. local cut_sfx = {220833976}
  2666. local bash_sfx = {386946017}
  2667. local sounds = {}
  2668. sounds.swing = function(self)
  2669.  
  2670. local s = Instance.new("Sound", sp)
  2671. s.Pitch = 1.25 + pitches[rand(1, #pitches)]
  2672. s.SoundId = swing_sfx[rand(1, #swing_sfx)]
  2673. return s
  2674. end
  2675.  
  2676. sounds.cut = function(self)
  2677.  
  2678. local s = Instance.new("Sound", sp)
  2679. s.Pitch = pitches[rand(1, #pitches)]
  2680. s.SoundId = cut_sfx[rand(1, #cut_sfx)]
  2681. return s
  2682. end
  2683.  
  2684. sounds.bash = function(self)
  2685.  
  2686. local s = Instance.new("Sound", sp)
  2687. s.Pitch = pitches[rand(1, #pitches)]
  2688. s.SoundId = bash_sfx[rand(1, #bash_sfx)]
  2689. return s
  2690. end
  2691.  
  2692. NewFXBox = function(name, prnt)
  2693.  
  2694. if prnt == nil then
  2695. prnt = Character
  2696. end
  2697. local FXBox = Instance.new("Model", prnt)
  2698. FXBox.Name = "FXBox"
  2699. if name then
  2700. FXBox.Name = name
  2701. end
  2702. local Count = 0
  2703. local Check = nil
  2704. Check = FXBox.ChildAdded:connect(function(Object)
  2705.  
  2706. if Object:IsA("BasePart") then
  2707. FXBox.PrimaryPart = Object
  2708. Check:disconnect()
  2709. end
  2710. end
  2711. )
  2712. return FXBox
  2713. end
  2714.  
  2715. ReSurface = function(Part, Integer)
  2716.  
  2717. if Part ~= nil and Part:IsA("BasePart") then
  2718. Part.TopSurface = Integer
  2719. Part.BottomSurface = Integer
  2720. Part.LeftSurface = Integer
  2721. Part.RightSurface = Integer
  2722. Part.FrontSurface = Integer
  2723. Part.BackSurface = Integer
  2724. end
  2725. end
  2726.  
  2727. ni = function(name, prnt)
  2728.  
  2729. return Instance.new(tostring(name), prnt)
  2730. end
  2731.  
  2732. local TrailModel = NewFXBox("TrailBOX")
  2733. NewPart = function(prnt)
  2734.  
  2735. local NPart = ni("Part", prnt)
  2736. ReSurface(NPart, 10)
  2737. if prnt:IsA("BasePart") then
  2738. NPart.CFrame = prnt.CFrame
  2739. end
  2740. NPart.Anchored = true
  2741. NPart.Size = vec3(1, 1, 1)
  2742. NPart.CanCollide = false
  2743. NPart.BrickColor = bc("Royal purple")
  2744. return NPart
  2745. end
  2746.  
  2747. HandleSP = function(func)
  2748.  
  2749. for i,v in next do
  2750. if v:IsA("Sound") then
  2751. v:Stop()
  2752. func(v)
  2753. end
  2754. end
  2755. end
  2756.  
  2757. GenTrail = function(Origin, Time)
  2758.  
  2759. end
  2760.  
  2761. MagDmg = function(Part, magni, knock, func)
  2762.  
  2763. for _,c in pairs(workspace:children()) do
  2764. local hum = c:findFirstChild("Humanoid")
  2765. if hum ~= nil then
  2766. local head = c:findFirstChild("HumanoidRootPart")
  2767. if head ~= nil then
  2768. local targ = head.Position - Part.Position
  2769. local mag = targ.magnitude
  2770. if mag <= magni and c.Name ~= Player.Name then
  2771. local bv = Instance.new("BodyVelocity", head)
  2772. do
  2773. -- bv.MaxVelocity = vec3(1 / 0, 0, 1 / 0)
  2774. bv.Velocity = HumanoidRootPart.CFrame.lookVector * knock-- + 2
  2775. delay(0.1, function()
  2776.  
  2777. bv:Destroy()
  2778. end
  2779. )
  2780. func(c, hum)
  2781. end
  2782. end
  2783. end
  2784. end
  2785. end
  2786. end
  2787.  
  2788. BindKey("Ground Breaker", "x", function(AttackName, Key)
  2789.  
  2790. ds = true
  2791. for i = 0, 1, 0.05 do
  2792. local animspd = 0.1
  2793. torw.C0 = clerp(torw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2794. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2795. law.C0 = clerp(law.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2796. raw.C0 = clerp(raw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2797. rlw.C0 = clerp(rlw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2798. llw.C0 = clerp(llw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2799. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2800. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2801. lrs:wait()
  2802. end
  2803. for i = 0, 1, 0.05 do
  2804. local animspd = 0.1
  2805. torw.C0 = clerp(torw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2806. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2807. law.C0 = clerp(law.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2808. raw.C0 = clerp(raw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2809. rlw.C0 = clerp(rlw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2810. llw.C0 = clerp(llw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2811. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2812. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2813. lrs:wait()
  2814. end
  2815. ds = false
  2816. end
  2817. )
  2818. local LA = {"Left", "Right"}
  2819. local LastArm = LA[math.random(1, #LA)]
  2820. local gDown = false
  2821. local CanLoopG = true
  2822. BindKey("Blink", "g", function(AttackName, Key)
  2823.  
  2824. ds = true
  2825. BodyTrail(0, "Magenta")
  2826. HumanoidRootPart.CFrame = HumanoidRootPart.CFrame * cf(0, 0, -15)
  2827. BodyTrail(0, "Magenta")
  2828. if LastArm == LA[1] then
  2829. LastArm = LA[2]
  2830. for i = 0, 1, 0.15 do
  2831. local animspd = 0.75
  2832. torw.C0 = clerp(torw.C0, CFrame.new(0, -0.0468509197, -0.211326599, 1, 0, 0, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876) * ang(0, 0, 0), animspd)
  2833. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.0227189064, -0.26047188, 1, 0, 0, 0, 0.984807789, -0.173647925, 0, 0.173647925, 0.984807789) * ang(0, 0, 0), animspd)
  2834. law.C0 = clerp(law.C0, CFrame.new(0.278717279, 0.591294587, 0.10480696, 0.819151103, -0.57357794, 4.34693362e-07, 0.0499908626, 0.0713932812, -0.99619472, 0.571395278, 0.816033959, 0.0871555209) * ang(0, 0, 0), animspd)
  2835. raw.C0 = clerp(raw.C0, CFrame.new(0.0113945007, 0.161766201, 0.349781126, 0.992404103, 0.0868226364, -0.0871557891, 0.0211326815, 0.577615142, 0.816035628, 0.121192873, -0.811678946, 0.571392715) * ang(0, 0, 0), animspd)
  2836. rlw.C0 = clerp(rlw.C0, CFrame.new(0, 0.375620604, -0.433983207, 1, 0, 0, 0, 0.965925574, -0.258819878, 0, 0.258819878, 0.965925574) * ang(0, 0, 0), animspd)
  2837. llw.C0 = clerp(llw.C0, CFrame.new(0, 1.07288361e-05, 4.76837158e-06, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 0.999999881) * ang(0, 0, 0), animspd)
  2838. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2839. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2840. lrs:wait()
  2841. end
  2842. else
  2843. do
  2844. if LastArm == LA[2] then
  2845. LastArm = LA[1]
  2846. for i = 0, 1, 0.15 do
  2847. local animspd = 0.75
  2848. torw.C0 = clerp(torw.C0, CFrame.new(0, -0.0468509197, -0.211326599, 1, 0, 0, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876) * ang(0, 0, 0), animspd)
  2849. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.0227189064, -0.26047188, 1, 0, 0, 0, 0.984807789, -0.173647925, 0, 0.173647925, 0.984807789) * ang(0, 0, 0), animspd)
  2850. law.C0 = clerp(law.C0, CFrame.new(0.0881265402, 0.374933362, 0.499300212, 0.992403924, -0.0868240818, -0.087155737, 0.121112585, 0.565171182, 0.816035032, -0.0215935856, -0.820392013, 0.571393549) * ang(0, 0, 0), animspd)
  2851. raw.C0 = clerp(raw.C0, CFrame.new(-0.279206991, 0.591076076, 0.104926825, 0.819152057, 0.57357645, 0, -0.0499906242, 0.0713940263, -0.996194661, -0.571393788, 0.816034913, 0.0871560276) * ang(0, 0, 0), animspd)
  2852. rlw.C0 = clerp(rlw.C0, CFrame.new(-0.000478506088, 0.000445604324, 0.00016617775, 1, 0, 0, 0, 0.999999881, 3.57627869e-07, 0, -3.57627869e-07, 0.999999881) * ang(0, 0, 0), animspd)
  2853. llw.C0 = clerp(llw.C0, CFrame.new(-0.00047826767, 0.376046538, -0.433818698, 1, 0, 0, 0, 0.965925872, -0.258818686, 0, 0.258818686, 0.965925872) * ang(0, 0, 0), animspd)
  2854. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2855. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2856. lrs:wait()
  2857. end
  2858. else
  2859. do
  2860. error("local LastArm value invalid", 1)
  2861. ds = false
  2862. end
  2863. end
  2864. end
  2865. end
  2866. end
  2867. )
  2868. BindKey("Backflip Slash", "q", function(AttackName, Key)
  2869. --[[if height > 0 then
  2870. return
  2871. end
  2872. if not IsLanded then
  2873. return
  2874. end]]
  2875. ds = true
  2876. hum.WalkSpeed = 0
  2877. for i = 0, 1, 0.035 do
  2878. local animspd = 0.15
  2879. torw.C0 = clerp(torw.C0, CFrame.new(0.000422000885, -0.0971133709, 1.31130219e-05, 1, 0, 0, 0, 0.866025448, 0.500000298, 0, -0.500000298, 0.866025388) * ang(0, 0, 0), animspd)
  2880. hedw.C0 = clerp(hedw.C0, CFrame.new(2.38418579e-07, 0.0394052267, 0.20832628, 1, 0, 0, 0, 0.965925992, 0.25881961, 0, -0.25881955, 0.965925932) * ang(0, 0, 0), animspd)
  2881. law.C0 = lerp(law.C0, CFrame.new(-0.500982285, -0.466032803, 0.61457634, 0.866025567, 0.499999821, 1.11829343e-06, -0.421695679, 0.730397582, 0.537301302, 0.268649727, -0.465317041, 0.843390584) * ang(0, 0, 0), animspd)
  2882. raw.C0 = lerp(raw.C0, CFrame.new(0.550538659, -0.46602726, 0.614567757, 0.866025388, -0.5, 0, 0.421695888, 0.730398655, 0.537299573, -0.268649757, -0.465314984, 0.843391716) * ang(0, 0, 0), animspd)
  2883. rlw.C0 = clerp(rlw.C0, CFrame.new(0, 0.411981583, 0.122371793, 1, 0, 0, 0, 0.866025448, -0.500000298, 0, 0.500000298, 0.866025388) * ang(0, 0, 0), animspd)
  2884. llw.C0 = clerp(llw.C0, CFrame.new(-1.93119049e-05, -0.0656920671, -0.479138374, 1, 0, 0, 0, 0.939692616, 0.34202075, 0, -0.34202075, 0.939692557) * ang(0, 0, 0), animspd)
  2885. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2886. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  2887. lrs:wait()
  2888. end
  2889. local debhet2, debhet = false, false
  2890. local vel = Instance.new("BodyVelocity", HumanoidRootPart)
  2891. vel.MaxForce = vec3(1 / 0, 1 / 0, 1 / 0)
  2892. vel.Velocity = HumanoidRootPart.CFrame.lookVector * -120 + vec3(0, 50, 0)
  2893. delay(0.01, function()
  2894.  
  2895. vel:Destroy()
  2896. end
  2897. )
  2898. for i = 0, 0.8, 0.05 do
  2899. MagDmg(hitbox2, 5, 5, function(chr, h)
  2900.  
  2901. if debhet2 == false then
  2902. debhet2 = true
  2903. local crit = false
  2904. do
  2905. ypcall(function()
  2906.  
  2907. chr.Health:Destroy()
  2908. end
  2909. )
  2910. local d = rand()
  2911. if d > 0.95 then
  2912. crit = true
  2913. dot = true
  2914. end
  2915. delay(0.5, function()
  2916.  
  2917. debhet2 = false
  2918. end
  2919. )
  2920. local damage = rand(5, 8)
  2921. if crit then
  2922. damage = damage + rand(3, 8)
  2923. end
  2924. h.Health = h.Health - (damage)
  2925. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  2926. if dot == true then
  2927. do
  2928. spawn(function()
  2929.  
  2930. for i = 0, rand(2, 5) do
  2931. h.Health = h.Health - damage / 4
  2932. showDamage(h.Parent, "(Dmg Ovr Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  2933. wait(0.8)
  2934. end
  2935. ds = false
  2936. end
  2937. )
  2938. -- DECOMPILER ERROR at PC53: LeaveBlock: unexpected jumping out IF_THEN_STMT
  2939.  
  2940. -- DECOMPILER ERROR at PC53: LeaveBlock: unexpected jumping out IF_STMT
  2941.  
  2942. end
  2943. end
  2944. end
  2945. end
  2946. end
  2947. )
  2948. MagDmg(hitbox1, 5, 5, function(chr, h)
  2949.  
  2950. if debhet == false then
  2951. debhet = true
  2952. local crit = false
  2953. do
  2954. ypcall(function()
  2955.  
  2956. chr.Health:Destroy()
  2957. end
  2958. )
  2959. local d = rand()
  2960. if d > 0.95 then
  2961. crit = true
  2962. dot = true
  2963. end
  2964. delay(0.5, function()
  2965.  
  2966. debhet = false
  2967. end
  2968. )
  2969. local damage = rand(5, 8)
  2970. if crit then
  2971. damage = damage + rand(3, 8)
  2972. end
  2973. h.Health = h.Health - (damage)
  2974. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  2975. if dot == true then
  2976. do
  2977. spawn(function()
  2978.  
  2979. for i = 0, rand(2, 5) do
  2980. h.Health = h.Health - damage / 4
  2981. showDamage(h.Parent, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  2982. wait(0.8)
  2983. end
  2984. end
  2985. )
  2986. -- DECOMPILER ERROR at PC53: LeaveBlock: unexpected jumping out IF_THEN_STMT
  2987.  
  2988. -- DECOMPILER ERROR at PC53: LeaveBlock: unexpected jumping out IF_STMT
  2989.  
  2990. end
  2991. end
  2992. end
  2993. end
  2994. end
  2995. )
  2996. local animspd = 0.3
  2997. torw.C0 = lerp(torw.C0, cf(0, 0, 0) * ang(rad(560 * i), 0, 0), animspd)
  2998. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.0903711319, -0.463028312, 1, 0, 0, 0, 0.939693093, -0.342018992, 0, 0.342019022, 0.939693093) * ang(0, 0, 0), animspd)
  2999. law.C0 = lerp(law.C0, CFrame.new(0.144277692, 0.799976468, -0.629216552, 0.99619478, -0.0871558562, 1.1790172e-06, -0.0333519913, -0.381226987, -0.923879683, 0.0805219784, 0.920364022, -0.382683128) * ang(0, 0, 0), animspd)
  3000. raw.C0 = lerp(raw.C0, CFrame.new(-0.0945549011, 0.799960315, -0.629431963, 0.99619472, 0.087155737, 0, 0.033353053, -0.381227165, -0.923879564, -0.0805214047, 0.920363963, -0.382683396) * ang(0, 0, 0), animspd)
  3001. rlw.C0 = clerp(rlw.C0, CFrame.new(0, -0.0170865059, -0.26105395, 1, 0, 0, 0, 0.991444767, 0.130526975, 0, -0.130526975, 0.991444767) * ang(0, 0, 0), animspd)
  3002. llw.C0 = clerp(llw.C0, CFrame.new(0, -0.18736732, -0.845235884, 1, 0, 0, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876) * ang(0, 0, 0), animspd)
  3003. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3004. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3005. lrs:wait()
  3006. end
  3007. spawn(function()
  3008.  
  3009. repeat
  3010. local animspd = 0.3
  3011. torw.C0 = lerp(torw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3012. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.0903711319, -0.463028312, 1, 0, 0, 0, 0.939693093, -0.342018992, 0, 0.342019022, 0.939693093) * ang(0, 0, 0), animspd)
  3013. law.C0 = lerp(law.C0, CFrame.new(0.144277692, 0.799976468, -0.629216552, 0.99619478, -0.0871558562, 1.1790172e-06, -0.0333519913, -0.381226987, -0.923879683, 0.0805219784, 0.920364022, -0.382683128) * ang(0, 0, 0), animspd)
  3014. raw.C0 = lerp(raw.C0, CFrame.new(-0.0945549011, 0.799960315, -0.629431963, 0.99619472, 0.087155737, 0, 0.033353053, -0.381227165, -0.923879564, -0.0805214047, 0.920363963, -0.382683396) * ang(0, 0, 0), animspd)
  3015. rlw.C0 = clerp(rlw.C0, CFrame.new(0, -0.0170865059, -0.26105395, 1, 0, 0, 0, 0.991444767, 0.130526975, 0, -0.130526975, 0.991444767) * ang(0, 0, 0), animspd)
  3016. llw.C0 = clerp(llw.C0, CFrame.new(0, -0.18736732, -0.845235884, 1, 0, 0, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876) * ang(0, 0, 0), animspd)
  3017. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3018. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3019. lrs:wait()
  3020. until ds == false
  3021. end
  3022. )
  3023. --[[ repeat
  3024. lrs:wait()
  3025. until IsLanded]]
  3026. local vel = Instance.new("BodyVelocity", HumanoidRootPart)
  3027. vel.MaxForce = vec3(1 / 0, 0, 1 / 0)
  3028. vel.Velocity = HumanoidRootPart.CFrame.lookVector * -50
  3029. wait(0.2)
  3030. vel:Destroy()
  3031. ds = false
  3032. end
  3033. )
  3034. BindKey("Void Blast", "r", function(AttackName, Key)
  3035.  
  3036. ds = true
  3037. local fb = NewFXBox()
  3038. for i = 0, 1, 0.025 do
  3039. do
  3040. local animspd = 0.15
  3041. torw.C0 = clerp(torw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3042. hedw.C0 = clerp(hedw.C0, cf(0, 0, rad(15)) * ang(-rad(15), 0, 0), animspd)
  3043. law.C0 = clerp(law.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3044. raw.C0 = clerp(raw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3045. rlw.C0 = clerp(rlw.C0, cf(-rad(3), 0, 0) * ang(0, 0, rad(3)), animspd)
  3046. llw.C0 = clerp(llw.C0, cf(rad(3), 0, 0) * ang(0, 0, -rad(3)), animspd)
  3047. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3048. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3049. lrs:wait()
  3050. end
  3051. end
  3052. do
  3053. for i,v in pairs(m:children()) do
  3054. if v.Name ~= "TrailBox" and v.Name ~= "HitBox" and v:IsA("BasePart") then
  3055. spawn(function()
  3056.  
  3057. local m, int = 1, 0.05
  3058. for i = 0, m + int, int do
  3059. v.Transparency = i
  3060. lrs:wait()
  3061. end
  3062. end
  3063. )
  3064. end
  3065. end
  3066. end
  3067. for i,v in pairs(m:children()) do
  3068. if v.Name ~= "TrailBox" and v.Name ~= "HitBox" and v:IsA("BasePart") then
  3069. spawn(function()
  3070.  
  3071. local m, int = 1, 0.05
  3072. for i = 0, m + int, int do
  3073. v.Transparency = i
  3074. lrs:wait()
  3075. end
  3076. end
  3077. )
  3078. end
  3079. end
  3080. for i = 0, 1, 0.05 do
  3081. local animspd = 0.4
  3082. torw.C0 = clerp(torw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3083. hedw.C0 = clerp(hedw.C0, cf(0, 0, rad(15)) * ang(-rad(15), 0, 0), animspd)
  3084. law.C0 = lerp(law.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3085. raw.C0 = lerp(raw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3086. rlw.C0 = clerp(rlw.C0, cf(-rad(3), 0, 0) * ang(0, 0, rad(3)), animspd)
  3087. llw.C0 = clerp(llw.C0, cf(rad(3), 0, 0) * ang(0, 0, -rad(3)), animspd)
  3088. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3089. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3090. lrs:wait()
  3091. end
  3092. local pert = Instance.new("Part", fb)
  3093. ReSurface(pert, 10)
  3094. pert.Material = "Granite"
  3095. pert.BrickColor = bc("Royal purple")
  3096. pert.Anchored = true
  3097. pert.Size = vec3(2, 2, 2)
  3098. pert.CanCollide = false
  3099. pert.CFrame = HumanoidRootPart.CFrame * cf(0, 3, -4) * ang(rand(-360, 360), rand(-360, 360), rand(-360, 360))
  3100. local int = 0
  3101. local int2 = 0
  3102. for i = 0, 1, 0.005 do
  3103. int = int + 1
  3104. pert.Size = pert.Size + vec3(0.025, 0.025, 0.025)
  3105. pert.CFrame = lerp(pert.CFrame, HumanoidRootPart.CFrame * cf(0, 2, -4 - (int2)) * ang(rad(int), rad((int) * 3), rad((int) * 2)), 0.05)
  3106. local animspd = 0.15
  3107. torw.C0 = clerp(torw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3108. hedw.C0 = clerp(hedw.C0, cf(0, 0, -rad(25)) * ang(rad(25), 0, 0), animspd)
  3109. law.C0 = lerp(law.C0, cf(-rad(90), 0.3, -1.5) * ang(rad(80), 0, -rad(80)), animspd)
  3110. raw.C0 = lerp(raw.C0, cf(rad(90), 0.3, -1.5) * ang(rad(80), 0, rad(80)), animspd)
  3111. rlw.C0 = clerp(rlw.C0, cf(-rad(3), 0, 0) * ang(0, 0, rad(3)), animspd)
  3112. llw.C0 = clerp(llw.C0, cf(rad(3), 0, 0) * ang(0, 0, -rad(3)), animspd)
  3113. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3114. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3115. lrs:wait()
  3116. end
  3117. for i = 0, 1, 0.1 do
  3118. pert.CFrame = lerp(pert.CFrame, HumanoidRootPart.CFrame * cf(0, 2, -4 - (int2)) * ang(rad(int), rad((int) * 3), rad((int) * 2)), 0.1)
  3119. lrs:wait()
  3120. end
  3121. for i,v in pairs(m:children()) do
  3122. if v.Name ~= "TrailBox" and v.Name ~= "HitBox" and v:IsA("BasePart") then
  3123. spawn(function()
  3124.  
  3125. local m, int = 1, 0.05
  3126. for i = 0, m + int, int do
  3127. v.Transparency = 1 - i
  3128. lrs:wait()
  3129. end
  3130. end
  3131. )
  3132. end
  3133. end
  3134. for i,v in pairs(m:children()) do
  3135. if v.Name ~= "TrailBox" and v.Name ~= "HitBox" and v:IsA("BasePart") then
  3136. spawn(function()
  3137.  
  3138. local m, int = 1, 0.05
  3139. for i = 0, m + int, int do
  3140. v.Transparency = 1 - i
  3141. lrs:wait()
  3142. end
  3143. end
  3144. )
  3145. end
  3146. end
  3147. fb:Destroy()
  3148. ds = false
  3149. end
  3150. )
  3151. BindKey("Beserk Blades", "e", function(AttackName, Key)
  3152.  
  3153. ds = true
  3154. local debhet1, debhet2 = false, false
  3155. hum.WalkSpeed = 11
  3156. local fb = NewFXBox()
  3157. local s1 = Instance.new("Sound", sp)
  3158. s1.SoundId = "rbxassetid://201858168"
  3159. s1.Pitch = 1.05
  3160. local s2 = Instance.new("Sound", sp)
  3161. s2.SoundId = "rbxassetid://163619849"
  3162. s2.Pitch = 1.1
  3163. local s4 = Instance.new("Sound", sp)
  3164. s4.SoundId = "rbxassetid://180120107"
  3165. s4.Pitch = 0.9
  3166. for i = 1, 5 do
  3167. local s3 = Instance.new("Sound", sp)
  3168. s3.SoundId = "rbxassetid://206083107"
  3169. s3.Pitch = pitches[rand(1, #pitches)]
  3170. lrs:wait()
  3171. s3:Play()
  3172. for i = 0, 360, 35 do
  3173. spawn(function()
  3174.  
  3175. GenTrail(trailbox1.CFrame * cf(0, 1, 0), 30)
  3176. end
  3177. )
  3178. MagDmg(hitbox2, 5, 5, function(chr, h)
  3179.  
  3180. if debhet2 == false then
  3181. debhet2 = true
  3182. local crit = false
  3183. do
  3184. ypcall(function()
  3185.  
  3186. chr.Health:Destroy()
  3187. end
  3188. )
  3189. local d = rand()
  3190. if d > 0.95 then
  3191. crit = true
  3192. dot = true
  3193. end
  3194. delay(0.5, function()
  3195.  
  3196. debhet2 = false
  3197. end
  3198. )
  3199. local damage = rand(5, 8)
  3200. if crit then
  3201. damage = damage + rand(5, 15)
  3202. end
  3203. h.Health = h.Health - (damage)
  3204. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  3205. if dot == true then
  3206. do
  3207. spawn(function()
  3208.  
  3209. for i = 1, rand(5, 12) do
  3210. h.Health = h.Health - damage / 4
  3211. showDamage(h.Parent, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  3212. wait(0.8)
  3213. end
  3214. end
  3215. )
  3216. -- DECOMPILER ERROR at PC53: LeaveBlock: unexpected jumping out IF_THEN_STMT
  3217.  
  3218. -- DECOMPILER ERROR at PC53: LeaveBlock: unexpected jumping out IF_STMT
  3219.  
  3220. end
  3221. end
  3222. end
  3223. end
  3224. end
  3225. )
  3226. MagDmg(hitbox1, 5, 5, function(chr, h)
  3227.  
  3228. ypcall(function()
  3229.  
  3230. chr.Health:Destroy()
  3231. end
  3232. )
  3233. if debhet1 == false then
  3234. debhet1 = true
  3235. local crit = false
  3236. do
  3237. local d = rand()
  3238. if d > 0.98 then
  3239. warn("crit(" .. d .. ")")
  3240. crit = true
  3241. dot = true
  3242. end
  3243. delay(0.5, function()
  3244.  
  3245. debhet1 = false
  3246. end
  3247. )
  3248. local damage = rand(5, 8)
  3249. if crit then
  3250. damage = damage + rand(5, 15)
  3251. end
  3252. h.Health = h.Health - (damage)
  3253. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  3254. if dot == true then
  3255. do
  3256. spawn(function()
  3257.  
  3258. for i = 1, rand(5, 12) do
  3259. h.Health = h.Health - damage / 4
  3260. showDamage(h.Parent, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  3261. wait(0.8)
  3262. end
  3263. end
  3264. )
  3265. -- DECOMPILER ERROR at PC59: LeaveBlock: unexpected jumping out IF_THEN_STMT
  3266.  
  3267. -- DECOMPILER ERROR at PC59: LeaveBlock: unexpected jumping out IF_STMT
  3268.  
  3269. end
  3270. end
  3271. end
  3272. end
  3273. end
  3274. )
  3275. local animspd = 0.25
  3276. torw.C0 = lerp(torw.C0, cf(0, height, 0) * ang(-rad(15), math.rad(i), 0), 0.3)
  3277. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3278. law.C0 = lerp(law.C0, cf(-2, -1, 0) * ang(0, 0, -rad(90)), animspd)
  3279. raw.C0 = lerp(raw.C0, cf(2, -1, 0) * ang(0, 0, rad(90)), animspd)
  3280. rlw.C0 = clerp(rlw.C0, cf(-rad(8), 0, 0) * ang(0, 0, rad(8)), animspd)
  3281. llw.C0 = clerp(llw.C0, cf(rad(8), 0, 0) * ang(0, 0, -rad(8)), animspd)
  3282. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, rad(45), 0), animspd)
  3283. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, rad(135), 0), animspd)
  3284. lrs:wait()
  3285. end
  3286. end
  3287. hum.WalkSpeed = 1
  3288. s2:Play()
  3289. ds = false
  3290. end
  3291. )
  3292. BindKey("Blade Spear", "f", function(AttackName, Key)
  3293. if ds then
  3294. return
  3295. end
  3296. local fb = NewFXBox()
  3297. ds = true
  3298. local s1 = Instance.new("Sound", sp)
  3299. s1.SoundId = "rbxassetid://215395236"
  3300. s1.Pitch = 1.5
  3301. s1.Volume = 1
  3302. local s2 = Instance.new("Sound", sp)
  3303. s2.SoundId = "rbxassetid://134012322"
  3304. s2.Pitch = 1
  3305. s2.Volume = 1
  3306. local s3 = Instance.new("Sound", sp)
  3307. s3.SoundId = "rbxassetid://186772924"
  3308. s3.Pitch = 0.75
  3309. s3.Volume = 1
  3310. local s4 = Instance.new("Sound", sp)
  3311. s4.SoundId = "rbxassetid://282061340"
  3312. s4.Pitch = 0.75
  3313. s4.Volume = 1
  3314. wait()
  3315. for i = 0, 15 do
  3316. local animspd = 0.25
  3317. torw.C0 = clerp(torw.C0, cf(0, height, 0) * ang(-rad(12.5), -rad(50), 0), animspd)
  3318. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, rad(50), 0), animspd)
  3319. law.C0 = clerp(law.C0, cf(-rad(4), -rad(8), 0) * ang(0, 0, -rad(8)), animspd)
  3320. raw.C0 = lerp(raw.C0, cf(1.15, 0.5, -1.75) * ang(rad(90), 0, rad(60)), animspd)
  3321. rlw.C0 = clerp(rlw.C0, cf(0.1, -0.1, 0.1) * ang(-rad(6.25), rad(12.5), 0), animspd)
  3322. llw.C0 = clerp(llw.C0, cf(0.25, -0.15, 0) * ang(rad(20), 0, -rad(12.5)), animspd)
  3323. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3324. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, rad(77.5)), animspd)
  3325. lrs:wait()
  3326. end
  3327. s1:Play()
  3328. for i = 0, 15 do
  3329. do
  3330. local animspd = 0.25
  3331. torw.C0 = clerp(torw.C0, cf(0, height, 0) * ang(-rad(12.5), -rad(50), 0), animspd)
  3332. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, rad(50), 0), animspd)
  3333. law.C0 = clerp(law.C0, cf(-rad(4), -rad(8), 0) * ang(0, 0, -rad(8)), animspd)
  3334. raw.C0 = lerp(raw.C0, cf(0.05, 0.5, -1.25) * ang(rad(90), 0, rad(10)), animspd)
  3335. rlw.C0 = clerp(rlw.C0, cf(0.1, -0.1, 0.1) * ang(-rad(6.25), rad(12.5), 0), animspd)
  3336. llw.C0 = clerp(llw.C0, cf(0.25, -0.15, 0) * ang(rad(20), 0, -rad(12.5)), animspd)
  3337. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3338. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, rad(160), rad(77.5)), animspd)
  3339. lrs:wait()
  3340. end
  3341. end
  3342. h2w:Destroy()
  3343. handle2.Anchored = true
  3344. local weld = Instance.new("Weld", fb)
  3345. weld.Part0 = HumanoidRootPart
  3346. weld.Part1 = handle2
  3347. weld.C1 = handle2.CFrame:inverse() * HumanoidRootPart.CFrame * ang(0, rad(7), -rad(5))
  3348. weld.Name = "W"
  3349. handle2.Anchored = false
  3350. local val, val2 = 0, 0
  3351. do
  3352. local debhet = false
  3353. s2:Play()
  3354. do
  3355. for i = 0, 3.75 do
  3356. MagDmg(hitbox2, 8, 15, function(chr, h)
  3357. if debhet == false then
  3358. debhet = true
  3359. ypcall(function()
  3360. chr.Health:Destroy()
  3361. end
  3362. )
  3363. local crit = false
  3364. do
  3365. local d = rand()
  3366. if d > 0.65 then
  3367. crit = true
  3368. dot = true
  3369. end
  3370. delay(0.01, function()
  3371.  
  3372. debhet = false
  3373. end
  3374. )
  3375. local damage = rand(7, 16)
  3376. if crit then
  3377. damage = damage + rand(5, 15)
  3378. end
  3379. h.Health = h.Health - (damage) + 2
  3380. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  3381. if dot == true then
  3382. do
  3383. spawn(function()
  3384.  
  3385. for i = 1, rand(2, 6) do
  3386. h.Health = h.Health - damage / 4 + 2
  3387. showDamage(h.Parent, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  3388. wait(rand(0.8, 2.5))
  3389. end
  3390. end
  3391. )
  3392. end
  3393. end
  3394. end
  3395. end
  3396. end
  3397. )
  3398. val = val + 4
  3399. local animspd = 0.5
  3400. weld.C0 = clerp(weld.C0, cf(0, 0, -(val)), animspd)
  3401. torw.C0 = lerp(torw.C0, cf(0, height, 0) * ang(-rad(12.5), rad(20), 0), animspd)
  3402. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, -rad(20), 0), animspd)
  3403. law.C0 = clerp(law.C0, cf(-rad(4), -rad(8), 0) * ang(0, 0, -rad(8)), animspd)
  3404. raw.C0 = lerp(raw.C0, cf(-0.5, 0.5, -0.1) * ang(rad(90), 0, -rad(60)), animspd)
  3405. rlw.C0 = clerp(rlw.C0, cf(0.1, -0.1, 0.1) * ang(-rad(6.25), rad(12.5), 0), animspd)
  3406. llw.C0 = clerp(llw.C0, cf(0.25, -0.15, 0) * ang(rad(20), 0, -rad(12.5)), animspd)
  3407. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3408. lrs:wait()
  3409. end
  3410. end
  3411. hum.WalkSpeed = 0
  3412. torso.Anchored = true
  3413. for i = 1, 5, 0.25 do
  3414. local animspd = 0.2
  3415. val = val + 1
  3416. weld.C0 = clerp(weld.C0, cf(0, 0, -(val)), animspd)
  3417. local pe = Instance.new("Part", fb)
  3418. pe.Anchored = true
  3419. pe.Transparency = 0.65
  3420. pe.CanCollide = false
  3421. pe.Size = vec3(0.6, 0.6, 0.6)
  3422. pe.TopSurface = 0
  3423. pe.Color = bc("Magenta").Color
  3424. pe.CFrame = handle2.CFrame * cf(1 * -i, 0, 0) * ang(rand(-360, 360), rand(-360, 360), rand(-360, 360))
  3425. spawn(function()
  3426. for i = 0, 0.35, 0.05 do
  3427. pe.Transparency = 0.65 + i
  3428. lrs:wait()
  3429. end
  3430. pe:Destroy()
  3431. end
  3432. )
  3433. lrs:wait()
  3434. end
  3435. for i = 1, 7, 0.25 do
  3436. local animspd = 0.2
  3437. local pe = Instance.new("Part", fb)
  3438. pe.Anchored = true
  3439. pe.Transparency = 1
  3440. pe.CanCollide = false
  3441. pe.Size = vec3(1.5, 1.5, 1.5)
  3442. pe.TopSurface = 0
  3443. pe.Color = bc("Royal purple").Color
  3444. pe.CFrame = handle2.CFrame * cf(-2 + i, 0, 0) * ang(rand(-360, 360), rand(-360, 360), rand(-360, 360))
  3445. local weld2 = Instance.new("Weld", Character)
  3446. weld2.Part0 = pe
  3447. weld2.Part1 = handle2
  3448. weld2.C1 = handle2.CFrame:inverse() * pe.CFrame
  3449. weld2.Name = "W2"
  3450. spawn(function()
  3451.  
  3452. for i = 0, 1, 0.05 do
  3453. pe.Transparency = 1.65 - i
  3454. lrs:wait()
  3455. end
  3456. end
  3457. )
  3458. delay(1.5, function()
  3459.  
  3460. for i = 0, 1, 0.05 do
  3461. pe.Transparency = i
  3462. lrs:wait()
  3463. end
  3464. pe:Destroy()
  3465. weld2:Destroy()
  3466. end
  3467. )
  3468. lrs:wait()
  3469. end
  3470. s3:Play()
  3471. lrs:wait()
  3472. local p1 = Instance.new("Part", fb)
  3473. p1.Anchored = true
  3474. p1.Transparency = 1
  3475. p1.CanCollide = false
  3476. p1.Size = vec3(12, 12, 12)
  3477. p1.TopSurface = 0
  3478. p1.Color = bc("Royal purple").Color
  3479. p1.CFrame = handle2.CFrame * ang(rad(90), rad(0), rad(90)) * cf(0, -2, 0)
  3480. local me1 = Instance.new("SpecialMesh", p1)
  3481. me1.MeshType = "FileMesh"
  3482. me1.MeshId = "rbxassetid://3270017"
  3483. me1.Scale = vec3(1.5, 10, 1.5)
  3484. local p2 = Instance.new("Part", fb)
  3485. p2.Anchored = true
  3486. p2.Transparency = 1
  3487. p2.CanCollide = false
  3488. p2.Size = vec3(1.5, 3, 1.5)
  3489. p2.TopSurface = 0
  3490. p2.Color = bc("Royal purple").Color
  3491. p2.CFrame = handle2.CFrame * ang(0, rad(0), rad(90)) * cf(0, -2, 0)
  3492. local me2 = Instance.new("SpecialMesh", p2)
  3493. me2.MeshType = "FileMesh"
  3494. me2.MeshId = "rbxassetid://3270017"
  3495. me2.Scale = vec3(1.5, 10, 1.5)
  3496. torso.Anchored = false
  3497. delay(0.1, function()
  3498. ds = false
  3499. end
  3500. )
  3501. for i = 0, 1, 0.05 do
  3502. p1.Transparency = 1 - i
  3503. lrs:wait()
  3504. end
  3505. handle2.Anchored = true
  3506. m2.Parent = nil
  3507. for i = 0, 1, 0.025 do
  3508. p1.CFrame = p1.CFrame * ang(0, rad(5), 0)
  3509. lrs:wait()
  3510. end
  3511. for i = 0, 1, 0.05 do
  3512. p1.Transparency = i
  3513. lrs:wait()
  3514. end
  3515. p1:Destroy()
  3516. p2:Destroy()
  3517. for i,v in pairs(m:children()) do
  3518. v.Transparency = 1
  3519. end
  3520. m2.Parent = Character
  3521. h2w = Weld(rarm, handle2, cf(0, -1, 0) * ang(rad(90), 0, rad(90)))
  3522. h2w.C0 = cf(0, 0, 0) * ang(rad(0), 0, -rad(180))
  3523. handle2.Anchored = false
  3524. delay(0.75, function()
  3525.  
  3526. s4:Play()
  3527. end
  3528. )
  3529. for i,v in pairs(m:children()) do
  3530. spawn(function()
  3531.  
  3532. for i = 0, 5, 0.1 do
  3533. if v.Name ~= "TrailBox" and v.Name ~= "HitBox" and v:IsA("BasePart") then
  3534. v.Transparency = 5 - i
  3535. lrs:wait()
  3536. end
  3537. end
  3538. end
  3539. )
  3540. for i_,v_ in pairs(m:children()) do
  3541. spawn(function()
  3542.  
  3543. for i = 0, 5, 0.1 do
  3544. if v_.Name ~= "TrailBox" and v_.Name ~= "HitBox" and v_:IsA("BasePart") then
  3545. v_.Transparency = 5 - i
  3546. lrs:wait()
  3547. end
  3548. end
  3549. end
  3550. )
  3551. end
  3552. end
  3553. wait(0.25)
  3554. fb:Destroy()
  3555. dkd = false
  3556. end
  3557. end
  3558. )
  3559. BindKey("Sit", "z", function(AttackName, Key)
  3560. ds = true
  3561. hum.WalkSpeed = 2
  3562. for i = 0, 1, 0.03 do
  3563. local animspd = 0.2
  3564. torw.C0 = clerp(torw.C0, CFrame.new(0.0734259486, -1.07769084, 0.591883659, 0.921220124, 0.374676734, -0.10474202, -0.159497008, 0.609295309, 0.776736736, 0.354844034, -0.698839426, 0.621054947) * ang(0, 0, 0), animspd)
  3565. hedw.C0 = clerp(hedw.C0, CFrame.new(-0.122578576, -0.0169298649, -0.356238186, 0.991444886, -2.98023224e-08, -0.130526453, -0.0337826014, 0.965926051, -0.256603986, 0.126078874, 0.258818179, 0.957662463) * ang(0, 0, 0), animspd)
  3566. law.C0 = clerp(law.C0, CFrame.new(-0.392519593, -0.30513835, -0.272547394, 0.923879862, 0.38268286, -2.38418579e-07, -0.36964336, 0.89239943, -0.258818567, -0.099045217, 0.239117295, 0.965926051) * ang(0, 0, 0), animspd)
  3567. raw.C0 = clerp(raw.C0, CFrame.new(0.469016552, -0.646901846, -1.26597059, 0.811113179, -0.464953005, 0.354844034, 0.560471714, 0.444404036, -0.698839426, 0.167233378, 0.765717924, 0.621054947) * ang(0, 0, 0), animspd)
  3568. rlw.C0 = clerp(rlw.C0, CFrame.new(-0.359871984, 0.707089186, 0.157295704, 0.921220124, -0.271241635, 0.278893471, 0.374676734, 0.811566949, -0.448304027, -0.10474202, 0.517481565, 0.849259734) * ang(0, 0, 0), animspd)
  3569. llw.C0 = clerp(llw.C0, CFrame.new(0.0101166964, -0.0557525158, -0.912290573, 1.00000012, 2.98023224e-08, 1.49011612e-08, -4.47034836e-08, 0.953716874, 0.30070588, -1.49011612e-08, -0.30070591, 0.953717053) * ang(0, 0, 0), animspd)
  3570. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3571. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3572. lrs:wait()
  3573. end
  3574. hum.WalkSpeed = 0
  3575. delay(1.5, function()
  3576. hum.WalkSpeed = 8
  3577. end
  3578. )
  3579. repeat
  3580. local animspd = 0.3
  3581. torw.C0 = clerp(torw.C0, CFrame.new(0, -1.91698706, 0.27142334, 1, 0, 0, 0, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414) * ang(0, 0, 0), animspd)
  3582. hedw.C0 = clerp(hedw.C0, CFrame.new(0, -0.0828192234, 0.134720802, 1, 0, 0, 0, 1.00000012, 0, 0, 0, 1.00000012) * ang(0, 0, 0), animspd)
  3583. law.C0 = clerp(law.C0, CFrame.new(-0.390914202, -0.17002362, 0.809981823, 0.939692616, 0.342020124, 0, -0.208208516, 0.572048187, 0.793353736, 0.271342933, -0.745508611, 0.608761013) * ang(0, 0, 0), animspd)
  3584. raw.C0 = clerp(raw.C0, CFrame.new(0.340461493, -0.170115292, 0.809848785, 0.939692974, -0.34201932, 4.22700623e-07, 0.208207637, 0.572048366, 0.793353915, -0.271342605, -0.745508909, 0.608760834) * ang(0, 0, 0), animspd)
  3585. rlw.C0 = clerp(rlw.C0, CFrame.new(-0.271476805, -0.740630507, 0.567320943, 0.976296008, -0.21643962, 0, 0.139124796, 0.627551377, -0.76604414, 0.1658023, 0.747885823, 0.642787993) * ang(0, 0, 0), animspd)
  3586. llw.C0 = clerp(llw.C0, CFrame.new(0.171023369, -0.740502715, 0.56757009, 0.976296365, 0.21643807, 0, -0.139123812, 0.627551615, -0.76604414, -0.165801108, 0.747886121, 0.642788053) * ang(0, 0, 0), animspd)
  3587. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3588. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3589. lrs:wait()
  3590. until State ~= "Idle"
  3591. hum.WalkSpeed = 0
  3592. for i = 0, 1, 0.03 do
  3593. local animspd = 0.2
  3594. torw.C0 = clerp(torw.C0, CFrame.new(0.0734259486, -1.07769084, 0.591883659, 0.921220124, 0.374676734, -0.10474202, -0.159497008, 0.609295309, 0.776736736, 0.354844034, -0.698839426, 0.621054947) * ang(0, 0, 0), animspd)
  3595. hedw.C0 = clerp(hedw.C0, CFrame.new(-0.122578576, -0.0169298649, -0.356238186, 0.991444886, -2.98023224e-08, -0.130526453, -0.0337826014, 0.965926051, -0.256603986, 0.126078874, 0.258818179, 0.957662463) * ang(0, 0, 0), animspd)
  3596. law.C0 = clerp(law.C0, CFrame.new(-0.392519593, -0.30513835, -0.272547394, 0.923879862, 0.38268286, -2.38418579e-07, -0.36964336, 0.89239943, -0.258818567, -0.099045217, 0.239117295, 0.965926051) * ang(0, 0, 0), animspd)
  3597. raw.C0 = clerp(raw.C0, CFrame.new(0.469016552, -0.646901846, -1.26597059, 0.811113179, -0.464953005, 0.354844034, 0.560471714, 0.444404036, -0.698839426, 0.167233378, 0.765717924, 0.621054947) * ang(0, 0, 0), animspd)
  3598. rlw.C0 = clerp(rlw.C0, CFrame.new(-0.359871984, 0.707089186, 0.157295704, 0.921220124, -0.271241635, 0.278893471, 0.374676734, 0.811566949, -0.448304027, -0.10474202, 0.517481565, 0.849259734) * ang(0, 0, 0), animspd)
  3599. llw.C0 = clerp(llw.C0, CFrame.new(0.0101166964, -0.0557525158, -0.912290573, 1.00000012, 2.98023224e-08, 1.49011612e-08, -4.47034836e-08, 0.953716874, 0.30070588, -1.49011612e-08, -0.30070591, 0.953717053) * ang(0, 0, 0), animspd)
  3600. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3601. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3602. lrs:wait()
  3603. end
  3604. ds = false
  3605. end
  3606. )
  3607. BindKey("Lay Down", "c", function(AttackName, Key)
  3608. ds = true
  3609. hum.WalkSpeed = 2
  3610. for i = 0, 1, 0.03 do
  3611. local animspd = 0.2
  3612. torw.C0 = clerp(torw.C0, CFrame.new(0.0734259486, -1.07769084, 0.591883659, 0.921220124, 0.374676734, -0.10474202, -0.159497008, 0.609295309, 0.776736736, 0.354844034, -0.698839426, 0.621054947) * ang(0, 0, 0), animspd)
  3613. hedw.C0 = clerp(hedw.C0, CFrame.new(-0.122578576, -0.0169298649, -0.356238186, 0.991444886, -2.98023224e-08, -0.130526453, -0.0337826014, 0.965926051, -0.256603986, 0.126078874, 0.258818179, 0.957662463) * ang(0, 0, 0), animspd)
  3614. law.C0 = clerp(law.C0, CFrame.new(-0.392519593, -0.30513835, -0.272547394, 0.923879862, 0.38268286, -2.38418579e-07, -0.36964336, 0.89239943, -0.258818567, -0.099045217, 0.239117295, 0.965926051) * ang(0, 0, 0), animspd)
  3615. raw.C0 = clerp(raw.C0, CFrame.new(0.469016552, -0.646901846, -1.26597059, 0.811113179, -0.464953005, 0.354844034, 0.560471714, 0.444404036, -0.698839426, 0.167233378, 0.765717924, 0.621054947) * ang(0, 0, 0), animspd)
  3616. rlw.C0 = clerp(rlw.C0, CFrame.new(-0.359871984, 0.707089186, 0.157295704, 0.921220124, -0.271241635, 0.278893471, 0.374676734, 0.811566949, -0.448304027, -0.10474202, 0.517481565, 0.849259734) * ang(0, 0, 0), animspd)
  3617. llw.C0 = clerp(llw.C0, CFrame.new(0.0101166964, -0.0557525158, -0.912290573, 1.00000012, 2.98023224e-08, 1.49011612e-08, -4.47034836e-08, 0.953716874, 0.30070588, -1.49011612e-08, -0.30070591, 0.953717053) * ang(0, 0, 0), animspd)
  3618. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3619. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3620. lrs:wait()
  3621. end
  3622. hum.WalkSpeed = 0
  3623. delay(1.5, function()
  3624.  
  3625. hum.WalkSpeed = 8
  3626. end
  3627. )
  3628. repeat
  3629. local animspd = 0.2
  3630. torw.C0 = clerp(torw.C0, CFrame.new(0, -2.47821784, 0.499558449, 1, 0, 0, 0, 0.0436210111, -0.999048233, 0, 0.999048233, 0.0436210148) * ang(0, 0, 0), animspd)
  3631. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.231482744, 0.17876941, 1, 0, 0, 0, 0.923879504, 0.382683724, 0, -0.382683724, 0.923879504) * ang(0, 0, 0), animspd)
  3632. law.C0 = clerp(law.C0, CFrame.new(0.685811996, 1.17431498, 0.0763368756, 0.923879623, -0.373611987, -0.0828278661, -0.382683128, -0.901980102, -0.199964315, -2.98023224e-08, 0.216439784, -0.976296127) * ang(0, 0, 0), animspd)
  3633. raw.C0 = clerp(raw.C0, CFrame.new(-0.578729153, 0.838823795, 0.111681841, 0.819151878, 0.573576689, -8.70478743e-07, 0.57303077, -0.818372488, -0.0436173975, -0.0250186287, 0.0357287712, -0.999048412) * ang(0, 0, 0), animspd)
  3634. rlw.C0 = clerp(rlw.C0, CFrame.new(0, 0.338772655, -1.24918079, 1, 0, 0, 0, 0.887010515, 0.461749405, 0, -0.461749405, 0.887010515) * ang(0, 0, 0), animspd)
  3635. llw.C0 = clerp(llw.C0, CFrame.new(0, 2.14576721e-06, -4.04566526e-06, 1, 0, 0, 0, 1.00000012, 3.7252903e-09, 0, 3.7252903e-09, 1.00000012) * ang(0, 0, 0), animspd)
  3636. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, -rad(90)), animspd)
  3637. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, rad(90)), animspd)
  3638. lrs:wait()
  3639. until State ~= "Idle"
  3640. hum.WalkSpeed = 0
  3641. for i = 0, 1, 0.03 do
  3642. local animspd = 0.2
  3643. torw.C0 = clerp(torw.C0, CFrame.new(0.0734259486, -1.07769084, 0.591883659, 0.921220124, 0.374676734, -0.10474202, -0.159497008, 0.609295309, 0.776736736, 0.354844034, -0.698839426, 0.621054947) * ang(0, 0, 0), animspd)
  3644. hedw.C0 = clerp(hedw.C0, CFrame.new(-0.122578576, -0.0169298649, -0.356238186, 0.991444886, -2.98023224e-08, -0.130526453, -0.0337826014, 0.965926051, -0.256603986, 0.126078874, 0.258818179, 0.957662463) * ang(0, 0, 0), animspd)
  3645. law.C0 = clerp(law.C0, CFrame.new(-0.392519593, -0.30513835, -0.272547394, 0.923879862, 0.38268286, -2.38418579e-07, -0.36964336, 0.89239943, -0.258818567, -0.099045217, 0.239117295, 0.965926051) * ang(0, 0, 0), animspd)
  3646. raw.C0 = clerp(raw.C0, CFrame.new(0.469016552, -0.646901846, -1.26597059, 0.811113179, -0.464953005, 0.354844034, 0.560471714, 0.444404036, -0.698839426, 0.167233378, 0.765717924, 0.621054947) * ang(0, 0, 0), animspd)
  3647. rlw.C0 = clerp(rlw.C0, CFrame.new(-0.359871984, 0.707089186, 0.157295704, 0.921220124, -0.271241635, 0.278893471, 0.374676734, 0.811566949, -0.448304027, -0.10474202, 0.517481565, 0.849259734) * ang(0, 0, 0), animspd)
  3648. llw.C0 = clerp(llw.C0, CFrame.new(0.0101166964, -0.0557525158, -0.912290573, 1.00000012, 2.98023224e-08, 1.49011612e-08, -4.47034836e-08, 0.953716874, 0.30070588, -1.49011612e-08, -0.30070591, 0.953717053) * ang(0, 0, 0), animspd)
  3649. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3650. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3651. lrs:wait()
  3652. end
  3653. ds = false
  3654. end
  3655. )
  3656. BindKey("Custom Jump", " ", function(AttackName, Key)
  3657.  
  3658. if CanJump == false then
  3659. return
  3660. end
  3661. --[[if not IsLanded then
  3662. return
  3663. end]]
  3664. CanJump = false
  3665. delay(5, function()
  3666.  
  3667. CanJump = true
  3668. end
  3669. )
  3670. ds = true
  3671. hum.WalkSpeed = 2
  3672. local s1 = Instance.new("Sound", sp)
  3673. s1.SoundId = "rbxassetid://142070127"
  3674. s1.Pitch = 1.15
  3675. s1.Volume = 1
  3676. local s2 = Instance.new("Sound", sp)
  3677. s2.SoundId = "rbxassetid://157878578"
  3678. s2.Pitch = 1.15
  3679. s2.Volume = 1
  3680. local s3 = Instance.new("Sound", sp)
  3681. s3.SoundId = "rbxassetid://180204562"
  3682. s3.Pitch = 1.15
  3683. s3.Volume = 1
  3684. local s5 = Instance.new("Sound", sp)
  3685. s5.SoundId = "rbxassetid://222942614"
  3686. s5.Pitch = 1
  3687. s5.Volume = 1
  3688. local s4 = Instance.new("Sound", sp)
  3689. s4.SoundId = "rbxassetid://244578911"
  3690. s4.Pitch = 2
  3691. s4.Volume = 0.1
  3692. s4.Looped = true
  3693. wait()
  3694. s3:Play()
  3695. delay(0.5, function()
  3696.  
  3697. s4:Play()
  3698. end
  3699. )
  3700. local fb = NewFXBox()
  3701. for i = 0, 1, 0.05 do
  3702. local animspd = 0.3
  3703. torw.C0 = clerp(torw.C0, CFrame.new(0, -0.688065529, -0.19135952, 1, 0, 0, 0, 0.9238801, 0.382682055, 0, -0.382682055, 0.9238801) * ang(0, 0, 0), animspd)
  3704. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.127452612, 0.203455865, 1, 0, 0, 0, 0.965925694, 0.258819848, 0, -0.258819848, 0.965925694) * ang(0, 0, 0), animspd)
  3705. law.C0 = clerp(law.C0, CFrame.new(0.405900359, 0.622551918, 0.37040484, 0.737276912, -0.675590754, 1.06186019e-06, 0.17485714, 0.19082129, -0.965925574, 0.652570188, 0.712154806, 0.258819938) * ang(0, 0, 0), animspd)
  3706. raw.C0 = clerp(raw.C0, CFrame.new(-9.53674316e-07, 0.0237717628, 0.334566593, 1, 0, 0, 0, 0.819152832, 0.573575437, 0, -0.573575437, 0.819152832) * ang(0, 0, 0), animspd)
  3707. rlw.C0 = clerp(rlw.C0, CFrame.new(0, 0.591989636, 0.139762461, 1, 0, 0, 0, 0.906307757, -0.422618419, 0, 0.422618419, 0.906307757) * ang(0, 0, 0), animspd)
  3708. llw.C0 = clerp(llw.C0, CFrame.new(1.04308128e-06, -0.277914524, -0.890877604, 1, 0, 0, 0, 0.793353081, 0.608761728, 0, -0.608761728, 0.793353081) * ang(0, 0, 0), animspd)
  3709. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, -rad(55), -rad(90)), animspd)
  3710. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3711. lrs:wait()
  3712. end
  3713. local per = Instance.new("Part", fb)
  3714. per.CanCollide = false
  3715. ReSurface(per, 10)
  3716. per.Transparency = 0.5
  3717. per.Material = "Granite"
  3718. per.Anchored = true
  3719. per.BrickColor = bc("Royal purple")
  3720. per.Size = vec3(4, 0.2, 4)
  3721. per.CFrame = cf(Torso.CFrame.p) * cf(0, -3, 0) * ang(rad(90), 0, 0)
  3722. local me1 = Instance.new("SpecialMesh", per)
  3723. me1.MeshType = "FileMesh"
  3724. me1.MeshId = "rbxassetid://3270017"
  3725. me1.Scale = vec3(1, 1, 1)
  3726. spawn(function()
  3727.  
  3728. local mx, it = 1, 0.05
  3729. for i = 0, mx + it, it do
  3730. me1.Scale = me1.Scale + vec3(2, 2, 2)
  3731. per.Transparency = 0.5 + i
  3732. lrs:wait()
  3733. end
  3734. end
  3735. )
  3736. s5:Play()
  3737. local bv = Instance.new("BodyVelocity", HumanoidRootPart)
  3738. bv.MaxForce = Vector3.new(1 / 0, 1 / 0, 1 / 0)
  3739. bv.Velocity = Vector3.new(0, 150, 0)
  3740. spawn(function()
  3741.  
  3742. wait()
  3743. bv:Destroy()
  3744. end
  3745. )
  3746. hum.WalkSpeed = 250
  3747. local int = 0
  3748. local ting = 0
  3749. do
  3750. do
  3751. for i = 0, 1, 0.05 do
  3752. if i < 0.9 then
  3753. ting = ting + 0.25
  3754. if ting >= 1 then
  3755. ting = 0
  3756. BodyTrail(0, "Magenta")
  3757. end
  3758. local p = Instance.new("Part", fb)
  3759. p.Size = Vector3.new(3, 3, 3)
  3760. local anglez = ang(rad(rand(-360, 360)), rad(rand(-360, 360)), rad(rand(-360, 360)))
  3761. local setp = HumanoidRootPart.CFrame * CFrame.new(0, 2, 0):inverse() * anglez
  3762. p.CFrame = setp
  3763. p.CanCollide = false
  3764. p.Anchored = true
  3765. p.Material = "Granite"
  3766. p.Color = BrickColor.new("Magenta").Color
  3767. game.Debris:AddItem(p, 4)
  3768. spawn(function()
  3769.  
  3770. for i = 0, 1, 0.05 do
  3771. p.Size = p.Size + Vector3.new(0.5, 0.5, 0.5)
  3772. p.CFrame = setp
  3773. p.Transparency = i
  3774. lrs:wait()
  3775. end
  3776. p:Destroy()
  3777. end
  3778. )
  3779. end
  3780. do
  3781. int = int + 36
  3782. do
  3783. local animspd = 0.2
  3784. torw.C0 = lerp(torw.C0, cf(0, 0, 0) * ang(0, rad(int), 0), animspd)
  3785. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.051027298, -0.188228667, 1, 0, 0, 0, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872) * ang(0, 0, 0), animspd)
  3786. law.C0 = lerp(law.C0, CFrame.new(0.309529305, 0.494719565, 0.188925743, 0.939692855, -0.342019558, -8.41849669e-07, 0.0298099965, 0.081900008, 0.99619472, -0.340717971, -0.936117053, 0.0871564522) * ang(0, 0, 0), animspd)
  3787. raw.C0 = clerp(raw.C0, CFrame.new(-0.485822797, 0.499988556, -0.275978863, 0.923879743, 0.38268292, 0, 0, 0, -1, -0.38268292, 0.923879743, 0) * ang(0, 0, 0), animspd)
  3788. rlw.C0 = clerp(rlw.C0, CFrame.new(-3.09944153e-06, 0.162638426, -1.09523427, 1, 0, 0, 0, 0.906308293, 0.422617137, 0, -0.422617137, 0.906308293) * ang(0, 0, 0), animspd)
  3789. llw.C0 = clerp(llw.C0, CFrame.new(-2.14576721e-06, -0.00759673119, -0.174313933, 1, 0, 0, 0, 0.996194661, 0.0871569663, 0, -0.0871569663, 0.996194661) * ang(0, 0, 0), animspd)
  3790. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(-rad(90), rad(90), 0) * ang(-rad(45), 0, 0), animspd)
  3791. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(-rad(90), rad(90), 0) * ang(rad(45), 0, 0), animspd)
  3792. lrs:wait()
  3793. -- DECOMPILER ERROR at PC693: LeaveBlock: unexpected jumping out DO_STMT
  3794.  
  3795. end
  3796. end
  3797. end
  3798. end
  3799. hum.WalkSpeed = 30
  3800. local ting2 = 0
  3801. repeat
  3802. ting2 = ting2 + 0.25
  3803. if ting2 >= 1 then
  3804. ting2 = 0
  3805. BodyTrail(0, "Institutional white")
  3806. end
  3807. local animspd = 0.3
  3808. torw.C0 = lerp(torw.C0, CFrame.new(0, 0, 0) * ang(0, 0, 0), animspd)
  3809. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.00565493107, -0.130732462, 1, 0, 0, 0, 0.99619478, -0.0871549696, 0, 0.087154977, 0.99619478) * ang(0, 0, 0), animspd)
  3810. law.C0 = lerp(law.C0, CFrame.new(-1.04904175e-05, 1.15000439, -0.349998474, 1, 0, 0, 0, -0.6755898, -0.737277806, 0, 0.737277806, -0.6755898) * ang(0, 0, 0), animspd)
  3811. raw.C0 = lerp(raw.C0, CFrame.new(-0.000442504883, 1.14998817, -0.350416183, 1, 0, 0, 0, -0.675590217, -0.737277329, 0, 0.737277329, -0.675590217) * ang(0, 0, 0), animspd)
  3812. rlw.C0 = clerp(rlw.C0, CFrame.new(0, 0.374032259, -1.07349765, 1, 0, 0, 0, 0.887011111, 0.461748064, 0, -0.461748064, 0.887011111) * ang(0, 0, 0), animspd)
  3813. llw.C0 = clerp(llw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3814. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3815. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3816. lrs:wait()
  3817. until IsLanded == true
  3818. s4:Stop()
  3819. s1:Play()
  3820. s2:Play()
  3821. hum.WalkSpeed = 0
  3822. for Index,Player in next do
  3823. if Player:FindFirstChild("Humanoid") then
  3824. local h = Player.Humanoid
  3825. h.PlatformStand = true
  3826. ypcall(function()
  3827.  
  3828. chr.Health:Destroy()
  3829. end
  3830. )
  3831. local bv = Instance.new("BodyVelocity", h.Parent.HumanoidRootPart)
  3832. bv.MaxForce = Vector3.new(1 / 0, 1 / 0, 1 / 0)
  3833. local rn = 60
  3834. bv.Velocity = Vector3.new(rand(-rn, rn), rand(15, 40), rand(-rn, rn))
  3835. spawn(function()
  3836.  
  3837. wait()
  3838. bv:Destroy()
  3839. end
  3840. )
  3841. local crit = false
  3842. local d = rand()
  3843. if d > 0.85 then
  3844. crit = true
  3845. dot = true
  3846. end
  3847. local damage = rand(25, 35)
  3848. if crit then
  3849. damage = damage + rand(5, 15)
  3850. end
  3851. h.Health = h.Health - (damage) + 2
  3852. showDamage(h.Parent.HumanoidRootPart, tostring(damage), 1, "Royal purple")
  3853. if dot == true then
  3854. spawn(function()
  3855.  
  3856. for i = 1, rand(2, 6) do
  3857. h.Health = h.Health - damage / 4 + 2
  3858. showDamage(h.Parent.HumanoidRootPart, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  3859. wait(rand(0.8, 2.5))
  3860. end
  3861. end
  3862. )
  3863. end
  3864. end
  3865. end
  3866. spawn(function()
  3867.  
  3868. local origin = HumanoidRootPart.CFrame
  3869. for i = 1, 4 do
  3870. local p = Instance.new("Part", fb)
  3871. do
  3872. p.Size = Vector3.new(3, 3, 3)
  3873. local anglez = ang(rad(rand(-360, 360)), rad(rand(-360, 360)), rad(rand(-360, 360)))
  3874. local setp = origin * cf(0, 2, 0):inverse() * anglez
  3875. p.CFrame = setp
  3876. p.CanCollide = false
  3877. p.Anchored = true
  3878. p.Material = "Granite"
  3879. p.Color = BrickColor.new("Magenta").Color
  3880. local otp = p.Touched:connect(function(hit)
  3881.  
  3882. if not hit:IsDescendantOf(Character) and not hit.Parent:FindFirstChild("Humanoid") and hit.Name ~= "Base" and hit.Name ~= "Wall" then
  3883. print(hit.Name)
  3884. hit.Anchored = false
  3885. hit:BreakJoints()
  3886. wait()
  3887. local bv = Instance.new("BodyVelocity", hit)
  3888. do
  3889. bv.MaxForce = Vector3.new(1 / 0, 1 / 0, 1 / 0)
  3890. bv.Velocity = Vector3.new(rand(-150, 150), rand(-150, 150), rand(-150, 150))
  3891. spawn(function()
  3892.  
  3893. wait()
  3894. bv:Destroy()
  3895. end
  3896. )
  3897. end
  3898. end
  3899. end
  3900. )
  3901. spawn(function()
  3902.  
  3903. for i = 0, 1.05, 0.05 do
  3904. p.Transparency = i
  3905. p.Size = p.Size + vec3(0.5, 0.5, 0.5)
  3906. p.CFrame = setp * ang(rad(i * 3), rad(i * 3), rad(i * 3))
  3907. lrs:wait()
  3908. end
  3909. otp:disconnect()
  3910. p:Destroy()
  3911. end
  3912. )
  3913. end
  3914. end
  3915. end
  3916. )
  3917. for i = 0, 1, 0.05 do
  3918. local animspd = 0.2
  3919. torw.C0 = clerp(torw.C0, CFrame.new(-9.53674316e-07, -0.940428734, -0.286800385, 1, 0, 0, 0, 0.819152594, 0.573575675, 0, -0.573575675, 0.819152594) * ang(0, 0, 0), animspd)
  3920. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.153496861, 0.154758215, 1, 0, 0, 0, 0.965925753, 0.258819431, 0, -0.258819431, 0.965925753) * ang(0, 0, 0), animspd)
  3921. law.C0 = clerp(law.C0, CFrame.new(-0.000436782837, 1.04063034, -0.613723755, 1, 0, 0, 0, -0.537298799, -0.843392015, 0, 0.843392015, -0.537298799) * ang(0, 0, 0), animspd)
  3922. raw.C0 = clerp(raw.C0, CFrame.new(-0.0504407883, 1.04063225, -0.613725662, 1, 0, 0, 0, -0.537298322, -0.843392372, 0, 0.843392372, -0.537298322) * ang(0, 0, 0), animspd)
  3923. rlw.C0 = clerp(rlw.C0, CFrame.new(0, 0.965613842, 0.123298049, 1, 0, 0, 0, 0.819152594, -0.573575675, 0, 0.573575675, 0.819152594) * ang(0, 0, 0), animspd)
  3924. llw.C0 = clerp(llw.C0, CFrame.new(0, 0.116882801, -1.07864153, 1, 0, 0, 0, 0.843390703, 0.537300885, 0, -0.537300885, 0.843390703) * ang(0, 0, 0), animspd)
  3925. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3926. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  3927. lrs:wait()
  3928. end
  3929. game.Debris:AddItem(fb, 10)
  3930. HandleSP(function(s)
  3931.  
  3932. s:Destroy()
  3933. end
  3934. )
  3935. ds = false
  3936. end
  3937. end
  3938. )
  3939. Attack1 = function()
  3940.  
  3941. ds = true
  3942. local sw = sounds:swing()
  3943. for i = 0, 1, 0.1 do
  3944. local animspd = 0.5
  3945. torw.C0 = clerp(torw.C0, cf(0, height, 0) * ang(0, rad(55), 0), animspd)
  3946. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, -rad(55), 0), animspd)
  3947. law.C0 = lerp(law.C0, cf(-rad(25), 0.5, -1) * ang(rad(80), rad(20), -rad(25)), animspd)
  3948. raw.C0 = lerp(raw.C0, cf(rad(12), -0.25, 0.3) * ang(-rad(15), 0, rad(15)), animspd)
  3949. rlw.C0 = clerp(rlw.C0, cf(-rad(4), 0, 0) * ang(0, 0, rad(4)), animspd)
  3950. llw.C0 = clerp(llw.C0, cf(rad(5), 0, 0) * ang(0, 0, -rad(5)), animspd)
  3951. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, rad(0), -rad(90)), animspd)
  3952. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, rad(180), rad(25)), animspd)
  3953. lrs:wait()
  3954. end
  3955. sw:Play()
  3956. local debhet = false
  3957. for i = 0, 1, 0.1 do
  3958. GenTrail(trailbox1.CFrame * cf(0, 1, 0), 30)
  3959. MagDmg(hitbox1, 5, 15, function(chr, h)
  3960.  
  3961. if debhet == false then
  3962. debhet = true
  3963. local crit = false
  3964. do
  3965. local d = rand()
  3966. if d > 0.8 then
  3967. crit = true
  3968. dot = true
  3969. end
  3970. delay(0.05, function()
  3971.  
  3972. debhet = false
  3973. end
  3974. )
  3975. local damage = rand(5, 12)
  3976. h.Health = h.Health - damage + 2
  3977. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  3978. if dot == true then
  3979. do
  3980. spawn(function()
  3981.  
  3982. for i = 1, rand(2, 6) do
  3983. h.Health = h.Health - damage / 4 + 2
  3984. showDamage(h.Parent, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  3985. wait(rand(0.8, 2.5))
  3986. end
  3987. end
  3988. )
  3989. -- DECOMPILER ERROR at PC43: LeaveBlock: unexpected jumping out IF_THEN_STMT
  3990.  
  3991. -- DECOMPILER ERROR at PC43: LeaveBlock: unexpected jumping out IF_STMT
  3992.  
  3993. end
  3994. end
  3995. end
  3996. end
  3997. end
  3998. )
  3999. local animspd = 0.5
  4000. torw.C0 = clerp(torw.C0, cf(0, height, 0) * ang(0, -rad(55), 0), animspd)
  4001. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, rad(55), 0), animspd)
  4002. law.C0 = lerp(law.C0, cf(rad(45), 1, 0) * ang(rad(80), rad(20), rad(45)), animspd)
  4003. raw.C0 = lerp(raw.C0, cf(rad(12), -0.25, 0.3) * ang(-rad(15), 0, rad(15)), animspd)
  4004. rlw.C0 = clerp(rlw.C0, cf(-rad(4), 0, 0) * ang(0, 0, rad(4)), animspd)
  4005. llw.C0 = clerp(llw.C0, cf(rad(5), 0, 0) * ang(0, 0, -rad(5)), animspd)
  4006. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, rad(60), -rad(90)), animspd)
  4007. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, rad(195), rad(40)), animspd)
  4008. lrs:wait()
  4009. end
  4010. dkd = false
  4011. end
  4012.  
  4013. Attack2 = function()
  4014.  
  4015. ds = true
  4016. for i = 0, 1, 0.075 do
  4017. local animspd = 0.3
  4018. torw.C0 = clerp(torw.C0, CFrame.new(0, height + -0.316644907, -0.127640963, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872), animspd)
  4019. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.00565731525, -0.13073346, 1, 0, 0, 0, 0.99619478, -0.0871558785, 0, 0.0871558785, 0.99619478), animspd)
  4020. law.C0 = clerp(law.C0, cf(0, 0, 0) * ang(rad(90), -rad(30), rad(30)), animspd)
  4021. raw.C0 = clerp(raw.C0, cf(0, 0, 0) * ang(rad(100), rad(30), -rad(30)), animspd)
  4022. rlw.C0 = clerp(rlw.C0, CFrame.new(0, 0.357986093, -0.299931765, 1, 0, 0, 0, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872), animspd)
  4023. llw.C0 = clerp(llw.C0, CFrame.new(0, -0.220270157, -0.902203202, 1, 0, 0, 0, 0.819152355, 0.573576093, 0, -0.573576093, 0.819152355), animspd)
  4024. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, rad(180), 0), animspd)
  4025. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, rad(180), 0), animspd)
  4026. lrs:wait()
  4027. end
  4028. HumanoidRootPart.Velocity = HumanoidRootPart.CFrame.lookVector * 50
  4029. delay(0.1, function()
  4030.  
  4031. HumanoidRootPart.Velocity = HumanoidRootPart.CFrame.lookVector * 0
  4032. end
  4033. )
  4034. local debhet1, debhet = false, false
  4035. hum.WalkSpeed = 5
  4036. for i = 0, 1, 0.075 do
  4037. MagDmg(hitbox1, 5, 8, function(chr, h)
  4038.  
  4039. if debhet == false then
  4040. debhet = true
  4041. local crit = false
  4042. do
  4043. local d = rand()
  4044. if d > 0.9 then
  4045. crit = true
  4046. dot = true
  4047. end
  4048. delay(0.2, function()
  4049.  
  4050. debhet = false
  4051. end
  4052. )
  4053. local damage = rand(12, 18)
  4054. h.Health = h.Health - damage + 2
  4055. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  4056. if dot == true then
  4057. do
  4058. spawn(function()
  4059.  
  4060. for i = 1, rand(2, 6) do
  4061. h.Health = h.Health - damage / 4 + 2
  4062. showDamage(h.Parent, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  4063. wait(rand(0.8, 2.5))
  4064. end
  4065. end
  4066. )
  4067. -- DECOMPILER ERROR at PC43: LeaveBlock: unexpected jumping out IF_THEN_STMT
  4068.  
  4069. -- DECOMPILER ERROR at PC43: LeaveBlock: unexpected jumping out IF_STMT
  4070.  
  4071. end
  4072. end
  4073. end
  4074. end
  4075. end
  4076. )
  4077. MagDmg(hitbox2, 5, 8, function(chr, h)
  4078.  
  4079. if debhet1 == false then
  4080. debhet1 = true
  4081. local crit = false
  4082. do
  4083. local d = rand()
  4084. if d > 0.9 then
  4085. crit = true
  4086. dot = true
  4087. end
  4088. delay(0.2, function()
  4089.  
  4090. debhet1 = false
  4091. end
  4092. )
  4093. local damage = rand(12, 18)
  4094. h.Health = h.Health - damage + 2
  4095. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  4096. if dot == true then
  4097. do
  4098. spawn(function()
  4099.  
  4100. for i = 1, rand(2, 6) do
  4101. h.Health = h.Health - damage / 4 + 2
  4102. showDamage(h.Parent, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  4103. wait(rand(0.8, 2.5))
  4104. end
  4105. end
  4106. )
  4107. -- DECOMPILER ERROR at PC43: LeaveBlock: unexpected jumping out IF_THEN_STMT
  4108.  
  4109. -- DECOMPILER ERROR at PC43: LeaveBlock: unexpected jumping out IF_STMT
  4110.  
  4111. end
  4112. end
  4113. end
  4114. end
  4115. end
  4116. )
  4117. local animspd = 0.3
  4118. torw.C0 = clerp(torw.C0, CFrame.new(0, height + -0.316644907, -0.127640963, 1, 0, 0, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872), animspd)
  4119. hedw.C0 = clerp(hedw.C0, CFrame.new(0, 0.00565731525, -0.13073346, 1, 0, 0, 0, 0.99619478, -0.0871558785, 0, 0.0871558785, 0.99619478), animspd)
  4120. law.C0 = lerp(law.C0, CFrame.new(-0.238501668, -0.489723861, -0.596781075, 0.907673419, 0.258819282, -0.330365866, -0.412760526, 0.408217788, -0.814240098, -0.0758797824, 0.875426173, 0.477358788), animspd)
  4121. raw.C0 = lerp(raw.C0, CFrame.new(0.338492751, -0.393148661, -0.570888698, 0.907674551, -0.258814812, 0.330366135, 0.412759483, 0.408227324, -0.814236045, 0.0758718997, 0.875423074, 0.477365732), animspd)
  4122. rlw.C0 = clerp(rlw.C0, CFrame.new(0, 0.238677025, 0.0656869411, 1, 0, 0, 0, 0.819152296, -0.573576212, 0, 0.573576212, 0.819152296), animspd)
  4123. llw.C0 = clerp(llw.C0, CFrame.new(0, -0.220270157, -0.902203202, 1, 0, 0, 0, 0.819152355, 0.573576093, 0, -0.573576093, 0.819152355), animspd)
  4124. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, rad(120), 0), animspd)
  4125. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, rad(120), 0), animspd)
  4126. lrs:wait()
  4127. end
  4128. dkd = false
  4129. end
  4130.  
  4131. Attack3 = function()
  4132.  
  4133. dkd = true
  4134. for i = 0, 1, 0.05 do
  4135. local animspd = 0.35
  4136. torw.C0 = clerp(torw.C0, CFrame.new(-3.81469727e-06, height + 0, 8.10623169e-06, 0.76604414, 0, -0.642788053, 0, 1, 0, 0.642788053, 0, 0.76604414), animspd)
  4137. hedw.C0 = clerp(hedw.C0, CFrame.new(0, -7.91549683e-05, 0, 0.76604414, 0, 0.642788053, 0, 1, 0, -0.642788053, 0, 0.76604414), animspd)
  4138. law.C0 = clerp(law.C0, CFrame.new(-0.231363416, -0.313025355, -0.0123214126, 0.939692736, 0.342020154, -1.51991844e-06, -0.342020124, 0.939692676, -2.54413351e-07, 1.31130219e-06, 7.4505806e-07, 1.00000012), animspd)
  4139. raw.C0 = clerp(raw.C0, CFrame.new(0.774468005, 1.68742216, -1.05526197, 0.526540399, -0.554391623, 0.644519508, -0.39162308, -0.831067145, -0.394916266, 0.754577219, -0.0444693267, -0.654702842), animspd)
  4140. rlw.C0 = clerp(rlw.C0, CFrame.new(-4.82797623e-06, 1.90734863e-05, 9.53674316e-07, 1.00000012, 0, 0, 0, 1, 0, 0, 0, 1.00000012), animspd)
  4141. llw.C0 = clerp(llw.C0, CFrame.new(0.242321491, -0.181349516, -0.62571007, 0.977650642, 0.126749054, 0.167731822, -0.167730987, 0.951251507, 0.258818567, -0.126750082, -0.281167984, 0.951251388), animspd)
  4142. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4143. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, rad(90)), animspd)
  4144. lrs:wait()
  4145. end
  4146. for i = 0, 1, 0.075 do
  4147. MagDmg(hitbox2, 5, 8, function(chr, h)
  4148.  
  4149. if debhet1 == false then
  4150. debhet1 = true
  4151. local crit = false
  4152. do
  4153. local d = rand()
  4154. if d > 0.9 then
  4155. crit = true
  4156. dot = true
  4157. end
  4158. delay(0.2, function()
  4159.  
  4160. debhet1 = false
  4161. end
  4162. )
  4163. local damage = rand(12, 18)
  4164. h.Health = h.Health - damage + 2
  4165. showDamage(h.Parent, tostring(damage), 1, "Royal purple")
  4166. if dot == true then
  4167. do
  4168. spawn(function()
  4169.  
  4170. for i = 1, rand(2, 6) do
  4171. h.Health = h.Health - damage / 4 + 2
  4172. showDamage(h.Parent, "(Dmg Over Time)\n" .. tostring(math.floor(damage / 3)), 0.3, "Toothpaste")
  4173. wait(rand(0.8, 2.5))
  4174. end
  4175. end
  4176. )
  4177. -- DECOMPILER ERROR at PC42: LeaveBlock: unexpected jumping out IF_THEN_STMT
  4178.  
  4179. -- DECOMPILER ERROR at PC42: LeaveBlock: unexpected jumping out IF_STMT
  4180.  
  4181. end
  4182. end
  4183. end
  4184. end
  4185. end
  4186. )
  4187. local animspd = 0.35
  4188. torw.C0 = clerp(torw.C0, CFrame.new(-0.0466222763, height + -0.690346003, -0.282869935, 0.984836638, -0.09323778, 0.146299437, -0.0075959973, 0.819316864, 0.573290706, -0.173317939, -0.565708995, 0.806185007), animspd)
  4189. hedw.C0 = clerp(hedw.C0, CFrame.new(0.0227015726, 0.0227335691, -0.259479046, 0.99619472, -0.015133746, -0.0858321339, -8.30739737e-07, 0.98480767, -0.173649102, 0.0871561095, 0.172988325, 0.981060147), animspd)
  4190. law.C0 = clerp(law.C0, CFrame.new(-0.423365831, -0.805190384, 0.442436278, 0.749662578, 0.630910277, 0.199895933, -0.65233624, 0.653458774, 0.383991092, 0.111640185, -0.418263078, 0.90143919), animspd)
  4191. raw.C0 = clerp(raw.C0, CFrame.new(0.0403805971, 0.54813695, -0.608423054, 0.984808505, -0.0735414475, -0.157301858, -0.0996458605, 0.502540171, -0.858792305, 0.142207339, 0.861420274, 0.487577677), animspd)
  4192. rlw.C0 = clerp(rlw.C0, CFrame.new(0.130929023, -0.107013583, -0.285914183, 0.984808505, 0.132908016, -0.111748315, -0.0996458605, 0.959596634, 0.263144672, 0.142207339, -0.248011827, 0.958262563), animspd)
  4193. llw.C0 = clerp(llw.C0, CFrame.new(0.0952451527, 0.272332788, 0.228919625, 0.984808505, -0.0153057612, -0.172968075, -0.0996458605, 0.765958309, -0.635121047, 0.142207339, 0.642708182, 0.752797008), animspd)
  4194. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4195. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, rad(135), 0), 1)
  4196. lrs:wait()
  4197. end
  4198. dkd = false
  4199. end
  4200.  
  4201. Attack4 = function()
  4202.  
  4203. dkd = true
  4204. for i = 0, 1, 0.025 do
  4205. local animspd = 0.15
  4206. torw.C0 = clerp(torw.C0, CFrame.new(-0.0466222763, height + -0.690346003, -0.282869577, 0.984836638, -0.09323778, 0.146299437, -0.0075959973, 0.819316864, 0.573290706, -0.173317939, -0.565708995, 0.806185007), animspd)
  4207. hedw.C0 = clerp(hedw.C0, CFrame.new(0.0227025263, 0.0227332115, -0.25947845, 0.99619472, -0.015133746, -0.0858321339, -8.30739737e-07, 0.98480767, -0.173649102, 0.0871561095, 0.172988325, 0.981060147), animspd)
  4208. law.C0 = clerp(law.C0, CFrame.new(0.0528661013, 0.335999966, -0.483066082, 0.928495824, -0.224704504, -0.295640707, -0.344109386, -0.221375376, -0.912459195, 0.139586136, 0.948947251, -0.282869011), animspd)
  4209. raw.C0 = clerp(raw.C0, CFrame.new(0.135996819, -0.360626996, 0.131640285, 0.959433854, -0.180004746, -0.216991097, 0.246674418, 0.908648968, 0.336910933, 0.136523187, -0.376769871, 0.916190982), animspd)
  4210. rlw.C0 = clerp(rlw.C0, CFrame.new(0.130929977, -0.107013106, -0.285915136, 0.984808505, 0.132908016, -0.111748315, -0.0996458605, 0.959596634, 0.263144672, 0.142207339, -0.248011827, 0.958262563), animspd)
  4211. llw.C0 = clerp(llw.C0, CFrame.new(0.0952461064, 0.272332549, 0.228919744, 0.984808505, -0.0153057612, -0.172968075, -0.0996458605, 0.765958309, -0.635121047, 0.142207339, 0.642708182, 0.752797008), animspd)
  4212. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4213. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4214. lrs:wait()
  4215. end
  4216. height = 14
  4217. local bp = nil
  4218. local debhet1 = false
  4219. for i = 0, 1, 0.05 do
  4220. MagDmg(hitbox1, 8, 0, function(chr, h)
  4221.  
  4222. if debhet1 == false then
  4223. debhet1 = true
  4224. warn("k")
  4225. bp = Instance.new("BodyPosition", chr.HumanoidRootPart)
  4226. bp.Position = HumanoidRootPart.CFrame * cf(0, height, -3).p
  4227. bp.MaxForce = vec3(9000000000, 9000000000, 9000000000)
  4228. bp.P = 10000
  4229. bp.D = 300
  4230. delay(1, function()
  4231.  
  4232. debhet1 = false
  4233. end
  4234. )
  4235. end
  4236. end
  4237. )
  4238. local animspd = 0.2
  4239. torw.C0 = clerp(torw.C0, CFrame.new(-0.0466208458, height + 0.409653425, 0.117130518, 1, 0, 0, 0, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872), animspd)
  4240. hedw.C0 = clerp(hedw.C0, CFrame.new(-0.00449903309, -0.0233068466, 0.0928348526, 0.999496222, -0.0235671494, 0.0212592408, 0.0217354894, 0.99634409, 0.082620576, -0.0231286511, -0.0821168572, 0.996354342), animspd)
  4241. law.C0 = clerp(law.C0, CFrame.new(0.150065541, 0.380384982, -0.504315972, 0.966921747, -0.229312122, -0.111706652, -0.163986176, -0.223409697, -0.960831404, 0.195373923, 0.947366953, -0.253623724), animspd)
  4242. raw.C0 = clerp(raw.C0, CFrame.new(0.556985497, -0.373821795, 0.787944138, 0.828413546, -0.559688926, 0.0218946207, 0.421200305, 0.648246408, 0.634324133, -0.369217277, -0.516260624, 0.772757173), animspd)
  4243. rlw.C0 = clerp(rlw.C0, CFrame.new(-0.0711208582, 0.0647822618, -0.705621958, 0.99681288, -0.0797582269, 0.00164395967, 0.0682673156, 0.863500178, 0.499706984, -0.0412752926, -0.498002112, 0.866192997), animspd)
  4244. llw.C0 = clerp(llw.C0, CFrame.new(0.101902485, 0.00366866589, -0.193562478, 0.999971092, 0.00753792096, -0.000994257745, -0.00725150481, 0.984837651, 0.173327416, 0.00228571077, -0.173315212, 0.984863758), animspd)
  4245. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, rad(175), 0), animspd)
  4246. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4247. lrs:wait()
  4248. end
  4249. Humanoid.WalkSpeed = 1
  4250. dkd = false
  4251. print("press an attack button to attack mid-air")
  4252. wait(0.75)
  4253. repeat
  4254. lrs:wait()
  4255. until dkd == false
  4256. height = 0
  4257. warn("ended")
  4258. pcall(function()
  4259.  
  4260. bp.P = 0
  4261. bp.D = 0
  4262. bp.MaxForce = vec3(0, 0, 0)
  4263. bp.Parent = workspace
  4264. end
  4265. )
  4266. end
  4267.  
  4268. local ComboResetTime, canatk = 0.3, true
  4269. local combo = 0
  4270. ComboUp = function()
  4271.  
  4272. if dkd == true then
  4273. return
  4274. end
  4275. if combo == 0 and canatk == true then
  4276. canatk = false
  4277. Attack1()
  4278. combo = 1
  4279. canatk = true
  4280. spawn(function()
  4281.  
  4282. ds = true
  4283. wait(ComboResetTime)
  4284. if canatk == true then
  4285. ds = false
  4286. end
  4287. if combo == 1 and not ds then
  4288. combo = 0
  4289. print("combo reset")
  4290. end
  4291. end
  4292. )
  4293. return
  4294. end
  4295. if combo == 1 and canatk == true then
  4296. canatk = false
  4297. Attack2()
  4298. combo = 2
  4299. canatk = true
  4300. spawn(function()
  4301.  
  4302. ds = true
  4303. wait(ComboResetTime)
  4304. if canatk == true then
  4305. ds = false
  4306. end
  4307. if combo == 2 and not ds then
  4308. combo = 0
  4309. print("combo reset")
  4310. end
  4311. end
  4312. )
  4313. return
  4314. end
  4315. if combo == 2 and canatk == true then
  4316. canatk = false
  4317. Attack3()
  4318. combo = 3
  4319. canatk = true
  4320. spawn(function()
  4321.  
  4322. ds = true
  4323. wait(ComboResetTime)
  4324. if canatk == true then
  4325. ds = false
  4326. end
  4327. if combo == 3 and not ds then
  4328. combo = 0
  4329. print("combo reset")
  4330. end
  4331. end
  4332. )
  4333. return
  4334. end
  4335. if combo == 3 and canatk == true then
  4336. canatk = false
  4337. Attack4()
  4338. combo = 0
  4339. wait(ComboResetTime)
  4340. canatk = true
  4341. spawn(function()
  4342.  
  4343. if canatk == true then
  4344. ds = false
  4345. end
  4346. wait(ComboResetTime / 4)
  4347. if combo == 0 and not ds then
  4348. combo = 0
  4349. print("combo reset")
  4350. end
  4351. end
  4352. )
  4353. return
  4354. end
  4355. end
  4356.  
  4357. mouse.Button1Down:connect(function()
  4358.  
  4359. ComboUp()
  4360. end
  4361. )
  4362. LookAround_AFKAnim = function()
  4363.  
  4364. ds = true
  4365. for i = 0, 1, 0.05 do
  4366. torw.C0 = lerp(torw.C0, cf(0, 0, 0) * ang(-rad(0), -rad(65), 0), 0.125)
  4367. hedw.C0 = clerp(hedw.C0, cf(0, 0, -rad(9)) * ang(rad(9), rad(65), 0) * eu(-rad(8), 0, 0), 0.125)
  4368. raw.C0 = lerp(raw.C0, cf(0, 0.5, 0.25) * ang(rad(90), 0, -rad(65)), animspd)
  4369. law.C0 = lerp(law.C0, cf(-0.65, 0.5, -1) * ang(rad(90), 0, -rad(32.5)), animspd)
  4370. rlw.C0 = clerp(rlw.C0, cf(-0.2, -0.15, 0) * ang(0, 0, rad(12.5)), animspd)
  4371. llw.C0 = clerp(llw.C0, cf(0, 0, -0.35) * ang(0, rad(32.5), -rad(5)), animspd)
  4372. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, -rad(45), -rad(55)), animspd)
  4373. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, -rad(55), rad(45)), animspd)
  4374. lrs:wait()
  4375. end
  4376. for i = 0, 1, 0.05 do
  4377. torw.C0 = lerp(torw.C0, cf(0, 0, 0) * ang(-rad(0), -rad(65), 0), 0.125)
  4378. hedw.C0 = clerp(hedw.C0, cf(0, 0, -rad(9)) * ang(rad(9), rad(65), 0) * eu(-rad(8), 0, 0), 0.125)
  4379. raw.C0 = lerp(raw.C0, cf(0, 0.5, 0.25) * ang(rad(90), 0, -rad(65)), animspd)
  4380. law.C0 = lerp(law.C0, cf(-0.65, 0.5, -1) * ang(rad(90), 0, -rad(32.5)), animspd)
  4381. rlw.C0 = clerp(rlw.C0, cf(-0.2, -0.15, 0) * ang(0, 0, rad(12.5)), animspd)
  4382. llw.C0 = clerp(llw.C0, cf(0, 0, -0.35) * ang(0, rad(32.5), -rad(5)), animspd)
  4383. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, -rad(45), -rad(55)), animspd)
  4384. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, -rad(55), rad(45)), animspd)
  4385. lrs:wait()
  4386. end
  4387. ds = false
  4388. end
  4389.  
  4390. Fiddle_AKFAnim = function()
  4391.  
  4392. print("Fiddle Played")
  4393. end
  4394.  
  4395. hum.MaxHealth = 200
  4396. wait(0.1)
  4397. hum.Health = 200
  4398. HumanoidRootPart.Transparency = 1
  4399. lrs:connect(function()
  4400. hum.MaxHealth = OverallHealth
  4401. if torso.CFrame.Y < -40 then
  4402. torso.CFrame = CFrame.new(math.random(-100, 100), 10, math.random(-100, 100))
  4403. end
  4404. local tmag_y = torso.Velocity.Y
  4405. local trot = torso.RotVelocity.Y / 50
  4406. local cap = 2
  4407. sine = sine + change
  4408. Char.Humanoid.FreeFalling:connect(function(FF)
  4409. if DebounceFallin == true then
  4410. return
  4411. end
  4412. if FF then
  4413. FreeFalling = true
  4414. else
  4415. FreeFalling = false
  4416. end
  4417. end)
  4418. hum.JumpPower = 0
  4419. hum.WalkSpeed = 9
  4420. if ds then
  4421. return
  4422. end
  4423. if FreeFalling == true and DebounceState == false and ds == false then
  4424. State = "FreeFalling"
  4425. else
  4426. if (torso.Velocity * Vector3.new(1, 1, 1)).magnitude < 5 and DebounceState == false and ds == false then
  4427. State = "Idle"
  4428. else
  4429. if (torso.Velocity * Vector3.new(1, 1, 1)).magnitude > 6 and DebounceState == false and ds == false then
  4430. State = "Walking"
  4431. else
  4432. if Attacking == true then
  4433. State = "Attacking"
  4434. else
  4435. if DebounceState == true or ds == true then
  4436. State = "Debouncing"
  4437. end
  4438. end
  4439. end
  4440. end
  4441. end
  4442. if State == "FreeFalling" then
  4443. change = 2
  4444. local animspd = 0.1
  4445. torw.C0 = clerp(torw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4446. hedw.C0 = clerp(hedw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4447. law.C0 = clerp(law.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4448. raw.C0 = clerp(raw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4449. rlw.C0 = clerp(rlw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4450. llw.C0 = clerp(llw.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4451. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4452. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, 0, 0), animspd)
  4453. else
  4454. if State == "Idle" then
  4455. local animspd = 0.2
  4456. local change = 1.25
  4457. torw.C0 = lerp(torw.C0, cf(0, sin(sine / 15) / 25, 0) * ang(-rad(0), -rad(65), cos(sine / 15) / 30), 0.125)
  4458. hedw.C0 = clerp(hedw.C0, cf(-cos(sine / 15) / 20, 0, -rad(9) + -cos(sine / 15) / 40) * ang(rad(9), rad(65), 0) * eu(-rad(8) + cos(sine / 15) / 20, 0, 0), 0.125)
  4459. raw.C0 = lerp(raw.C0, cf(0, 0.5 + sin(sine / 15) / 12, 0.25) * ang(rad(90), -sin(sine / 15) / 12, -rad(65)), animspd)
  4460. law.C0 = lerp(law.C0, cf(-0.65, 0.5 + sin(sine / 15) / 12, -1) * ang(rad(90), 0, -rad(32.5)), animspd)
  4461. rlw.C0 = clerp(rlw.C0, cf(-0.2, -0.15 + -sin(sine / 15) / 25, 0) * ang(0, 0, rad(12.5) + -cos(sine / 15) / 30), animspd)
  4462. llw.C0 = clerp(llw.C0, cf(0, -sin(sine / 15) / 25, -0.35) * ang(0, rad(32.5), -rad(5) + -cos(sine / 15) / 30), animspd)
  4463. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(0, -rad(45), -rad(55)), animspd)
  4464. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(0, -rad(55), rad(45)), animspd)
  4465. else
  4466. if State == "Walking" then
  4467. local animspd = 0.1
  4468. change = 1.35
  4469. torw.C0 = lerp(torw.C0, cf(trot * 8, cos(sine / 3) / 8, 0) * ang(-rad(10) + cos(sine / 3) / 8, cos(sine / 6) / 8, trot), animspd)
  4470. hedw.C0 = clerp(hedw.C0, cf(0, 0, -0.2 + cos(sine / 3) / 8) * ang(rad(10) + -cos(sine / 3) / 8, trot + -cos(sine / 6) / 8, 0), animspd)
  4471. law.C0 = lerp(law.C0, cf(-0.25, -0.3, -cos(sine / 6) / 3) * ang(cos(sine / 6) / 3, 0, -rad(20)), animspd)
  4472. raw.C0 = lerp(raw.C0, cf(0.5, 0.25 + cos(sine / 3) / 8, -1.25) * ang(rad(80) + cos(sine / 3) / 8, rad(7), rad(35)), animspd)
  4473. rlw.C0 = clerp(rlw.C0, cf(-0.034, -sin(sine / 6) / 4, -0.4 + -cos(sine / 6) / 2 + sin(sine / 6) / 2) * ang(-rad(5) + sin(sine / 6) / 3, -cos(sine / 6) / 8, rad(2)), animspd)
  4474. llw.C0 = clerp(llw.C0, cf(0.034, sin(sine / 6) / 4, -0.4 + cos(sine / 6) / 2 + -sin(sine / 6) / 2) * ang(-rad(5) + -sin(sine / 6) / 3, -cos(sine / 6) / 8, -rad(2)), animspd)
  4475. h1w.C0 = lerp(h1w.C0, cf(0, 0, 0) * ang(-rad(15), -rad(30), rad(15)), animspd)
  4476. h2w.C0 = lerp(h2w.C0, cf(0, 0, 0) * ang(rad(15), rad(245), -rad(7)), animspd)
  4477. end
  4478. end
  4479. end
  4480. if State == "Attacking" then
  4481. end
  4482. end)
  4483. end
  4484. print("Ether loaded.")
  4485. print("----Controls----")
  4486. print 'Backflip Slash - Q'
  4487. print 'Blade Spear - F (WIP do not use)'
  4488. print 'Blade Berserk - E'
  4489. print 'Sit - Z'
  4490. print 'Ground Breaker - X (WIP)'
  4491. print 'Lie Down - C'
  4492. print 'Void Blast - R (WIP)'
  4493. print 'Working on issue with custom jump'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement