Advertisement
Orangeplayer1431

^-^

Apr 1st, 2017
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 430.26 KB | None | 0 0
  1. local p = game.Players.LocalPlayer--300899323
  2. local char = p.Character
  3. local mouse = p:GetMouse()
  4. local larm = char["Left Arm"]
  5. local rarm = char["Right Arm"]
  6.  
  7.  
  8. local Mesh1 = Instance.new("SpecialMesh",larm)
  9. Mesh1.MeshId = "rbxassetid://184866952"
  10. Mesh1.Offset = Vector3.new(-0.800000012, -1, 0)
  11. Mesh1.Scale = Vector3.new(2, 2, 2)
  12. Mesh1.VertexColor = Vector3.new(1, 1, 1)
  13. Mesh1.TextureId = "rbxassetid://184867153"
  14.  
  15. wait(1)
  16.  
  17. local lleg = char["Left Leg"]
  18. local rleg = char["Right Leg"]
  19. local hed = char.Head
  20. local torso = char.Torso
  21. local hum = char.Humanoid
  22. local cam = game.Workspace.CurrentCamera
  23. local root = char.HumanoidRootPart
  24. local rj = root.RootJoint
  25. local deb = false
  26. local shot = 0
  27. local stanceToggle = "Idle1"
  28. local l = game:GetService("Lighting")
  29. local rs = game:GetService("RunService").RenderStepped
  30. local hb = game:GetService("RunService").Heartbeat
  31. local Stepped = game:GetService("RunService").Stepped
  32. math.randomseed(os.time())
  33. hum.JumpPower = 100
  34. hed.face:Remove()
  35. ----------------------------------------------------
  36. fat = Instance.new("BindableEvent",script)
  37. fat.Name = "Heartbeat"
  38.  
  39. script:WaitForChild("Heartbeat")
  40.  
  41. frame = 1/30
  42. tf = 0
  43. allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater.
  44. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  45. lastframe = tick()
  46. script.Heartbeat:Fire() --ayy lmao
  47.  
  48. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  49. tf = tf + s
  50. if tf >= frame then
  51. if allowframeloss then
  52. script.Heartbeat:Fire()
  53. lastframe=tick()
  54. else
  55. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  56. for i=1, math.floor(tf/frame) do
  57. script.Heartbeat:Fire()
  58. end
  59. lastframe=tick()
  60. end
  61. if tossremainder then
  62. tf = 0
  63. else
  64. tf = tf - frame * math.floor(tf/frame)
  65. end
  66. end
  67. end)
  68. ----------------------------------------------------
  69. for i,v in pairs(char:children()) do
  70. if v:IsA("Hat") then
  71. v:Destroy()
  72. end
  73. end
  74. for i,v in pairs (hed:GetChildren()) do
  75. if v:IsA("Sound") then
  76. v:Destroy()
  77. end
  78. end
  79. ----------------------------------------------------
  80. Debounces = {
  81. CanAttack = true;
  82. CanJoke = true;
  83. NoIdl = false;
  84. Slashing = false;
  85. Slashed = false;
  86. ks = false;
  87. }
  88. ----------------------------------------------------
  89. function weld5(part0, part1, c0, c1)
  90. weeld=Instance.new("Weld", part0)
  91. weeld.Part0=part0
  92. weeld.Part1=part1
  93. weeld.C0=c0
  94. weeld.C1=c1
  95. return weeld
  96. end
  97. ----------------------------------------------------
  98. function NewPart(prnt,siz,cf,trans,anc,mat,col)
  99. local prt=Instance.new("Part")
  100. prt.Parent=prnt
  101. prt.Name="Part"
  102. prt.Size=siz
  103. prt.CanCollide=false
  104. prt.Anchored=anc
  105. prt.Locked=true
  106. prt.Transparency = trans
  107. prt.TopSurface=10
  108. prt.BottomSurface=10
  109. prt.FrontSurface=10
  110. prt.BackSurface=10
  111. prt.LeftSurface=10
  112. prt.RightSurface=10
  113. prt:BreakJoints()
  114. prt.CFrame=cf or CFrame.new(30,10,30)
  115. prt.Material=mat
  116. prt.BrickColor=BrickColor.new(col)
  117. m=Instance.new("SpecialMesh",prt)
  118. m.MeshType=6
  119. return prt
  120. end
  121. ----------------------------------------------------
  122. function lerp(a, b, t) -- Linear interpolation
  123. return a + (b - a)*t
  124. end
  125.  
  126. function slerp(a, b, t) --Spherical interpolation
  127. dot = a:Dot(b)
  128. if dot > 0.99999 or dot < -0.99999 then
  129. return t <= 0.5 and a or b
  130. else
  131. r = math.acos(dot)
  132. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  133. end
  134. end
  135.  
  136. function matrixInterpolate(a, b, t)
  137. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  138. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  139. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  140. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  141. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  142. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  143. local t = v1:Dot(v2)
  144. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  145. return CFrame.new()
  146. end
  147. return CFrame.new(
  148. v0.x, v0.y, v0.z,
  149. v1.x, v1.y, v1.z,
  150. v2.x, v2.y, v2.z,
  151. v3.x, v3.y, v3.z)
  152. end
  153. ----------------------------------------------------
  154. function genWeld(a,b)
  155. local w = Instance.new("Weld",a)
  156. w.Part0 = a
  157. w.Part1 = b
  158. return w
  159. end
  160. function weld(a, b)
  161. local weld = Instance.new("Weld")
  162. weld.Name = "W"
  163. weld.Part0 = a
  164. weld.Part1 = b
  165. weld.C0 = a.CFrame:inverse() * b.CFrame
  166. weld.Parent = a
  167. return weld;
  168. end
  169. ----------------------------------------------------
  170. function Lerp(c1,c2,al)
  171. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  172. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  173. for i,v in pairs(com1) do
  174. com1[i] = v+(com2[i]-v)*al
  175. end
  176. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  177. end
  178. ----------------------------------------------------
  179. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  180. local wld = Instance.new("Weld", wp1)
  181. wld.Part0 = wp0
  182. wld.Part1 = wp1
  183. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  184. end
  185. ----------------------------------------------------
  186. newWeld(torso, larm, -1.5, 0.5, 0)
  187. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  188. newWeld(torso, rarm, 1.5, 0.5, 0)
  189. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  190. newWeld(torso, hed, 0, 1.5, 0)
  191. newWeld(torso, lleg, -0.5, -1, 0)
  192. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  193. newWeld(torso, rleg, 0.5, -1, 0)
  194. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  195. newWeld(root, torso, 0, -1, 0)
  196. torso.Weld.C1 = CFrame.new(0, -1, 0)
  197. ----------------------------------------------------
  198. z = Instance.new("Sound",char) --Smile: print("â?º")
  199. z.SoundId = "rbxassetid://515119624"--410761150, 411368002
  200. z.Looped = true
  201. z.Pitch = 1
  202. z.Volume = 6
  203. wait(0.1)
  204. z:Play()
  205. ----------------------------------------------------
  206. New = function(Object, Parent, Name, Data)
  207. local Object = Instance.new(Object)
  208. for Index, Value in pairs(Data or {}) do
  209. Object[Index] = Value
  210. end
  211. Object.Parent = Parent
  212. Object.Name = Name
  213. return Object
  214. end
  215. ----------------------------------------------------
  216. pr = Instance.new("Part",hed)
  217. pr.BrickColor = BrickColor.new("Black")
  218. pr.Material = "Metal"
  219. pr.Reflectance = 0.04
  220. pr.Anchored = false
  221. pr.CanCollide = false
  222. pr.Archivable = false
  223. pr.Locked = true
  224. pr.Size = Vector3.new(2,0.8,1)
  225. prm = Instance.new("SpecialMesh",pr)
  226. prm.MeshType = "FileMesh"
  227. prm.MeshId = "rbxassetid://16952952"
  228. prm.Scale = Vector3.new(1,1,1)
  229. newWeld(hed, pr, 0, 0.35, 0)
  230. pr.Weld.C1 = CFrame.new(0,0,0)
  231. --Left Arm
  232. m = Instance.new("Model")
  233. m.Name = "LeftArm"
  234. p1 = Instance.new("Part", m)
  235. p1.BrickColor = BrickColor.new("Lime green")
  236. p1.Material = Enum.Material.Granite
  237. p1.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  238. p1.Size = Vector3.new(1, 0.200000048, 1)
  239. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  240. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  241. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  242. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  243. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  244. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  245. b1 = Instance.new("SpecialMesh", p1)
  246. b1.MeshType = Enum.MeshType.Brick
  247. b1.Name = "Mesh"
  248. b1.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  249. p2 = Instance.new("Part", m)
  250. p2.BrickColor = BrickColor.new("Lime green")
  251. p2.Material = Enum.Material.Granite
  252. p2.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  253. p2.Size = Vector3.new(1, 0.200000048, 1)
  254. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  255. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  256. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  257. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  258. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  259. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  260. b2 = Instance.new("SpecialMesh", p2)
  261. b2.MeshType = Enum.MeshType.Brick
  262. b2.Name = "Mesh"
  263. b2.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  264. p3 = Instance.new("Part", m)
  265. p3.BrickColor = BrickColor.new("Lime green")
  266. p3.Material = Enum.Material.Granite
  267. p3.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  268. p3.Size = Vector3.new(1, 0.200000048, 1)
  269. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  270. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  271. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  272. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  273. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  274. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  275. b3 = Instance.new("SpecialMesh", p3)
  276. b3.MeshType = Enum.MeshType.Brick
  277. b3.Name = "Mesh"
  278. b3.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  279. p4 = Instance.new("Part", m)
  280. p4.BrickColor = BrickColor.new("Black")
  281. p4.Material = Enum.Material.SmoothPlastic
  282. p4.Name = "LeftArmPlate"
  283. p4.Size = Vector3.new(1, 2, 1)
  284. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  285. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  286. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  287. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  288. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  289. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  290. b4 = Instance.new("SpecialMesh", p4)
  291. b4.MeshType = Enum.MeshType.Brick
  292. b4.Name = "Mesh"
  293. b4.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  294. p5 = Instance.new("Part", m)
  295. p5.BrickColor = BrickColor.new("Lime green")
  296. p5.Material = Enum.Material.Granite
  297. p5.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  298. p5.Size = Vector3.new(1, 0.200000048, 1)
  299. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  300. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  301. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  302. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  303. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  304. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  305. b5 = Instance.new("SpecialMesh", p5)
  306. b5.MeshType = Enum.MeshType.Brick
  307. b5.Name = "Mesh"
  308. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  309. p6 = Instance.new("Part", m)
  310. p6.BrickColor = BrickColor.new("Lime green")
  311. p6.Material = Enum.Material.Granite
  312. p6.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  313. p6.Size = Vector3.new(1, 0.200000048, 1)
  314. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  315. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  316. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  317. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  318. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  319. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  320. b6 = Instance.new("SpecialMesh", p6)
  321. b6.MeshType = Enum.MeshType.Brick
  322. b6.Name = "Mesh"
  323. b6.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  324. p7 = Instance.new("Part", m)
  325. p7.BrickColor = BrickColor.new("Lime green")
  326. p7.Material = Enum.Material.Granite
  327. p7.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  328. p7.FormFactor = Enum.FormFactor.Custom
  329. p7.Size = Vector3.new(1, 0.200000048, 1)
  330. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  331. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  332. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  333. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  334. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  335. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  336. b7 = Instance.new("SpecialMesh", p7)
  337. b7.MeshType = Enum.MeshType.Brick
  338. b7.Name = "Mesh"
  339. b7.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  340. p8 = Instance.new("Part", m)
  341. p8.BrickColor = BrickColor.new("Lime green")
  342. p8.Material = Enum.Material.Granite
  343. p8.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  344. p8.FormFactor = Enum.FormFactor.Custom
  345. p8.Size = Vector3.new(1, 0.200000048, 1)
  346. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  347. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  348. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  349. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  350. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  351. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  352. b8 = Instance.new("SpecialMesh", p8)
  353. b8.MeshType = Enum.MeshType.Brick
  354. b8.Name = "Mesh"
  355. b8.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  356. p9 = Instance.new("Part", m)
  357. p9.BrickColor = BrickColor.new("Lime green")
  358. p9.Material = Enum.Material.Granite
  359. p9.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  360. p9.FormFactor = Enum.FormFactor.Custom
  361. p9.Size = Vector3.new(1, 0.200000048, 1)
  362. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  363. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  364. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  365. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  366. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  367. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  368. b9 = Instance.new("SpecialMesh", p9)
  369. b9.MeshType = Enum.MeshType.Brick
  370. b9.Name = "Mesh"
  371. b9.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  372. p10 = Instance.new("Part", m)
  373. p10.BrickColor = BrickColor.new("Black")
  374. p10.Material = Enum.Material.SmoothPlastic
  375. p10.CFrame = CFrame.new(-1.5, 6.78969193, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  376. p10.FormFactor = Enum.FormFactor.Custom
  377. p10.Size = Vector3.new(1, 0.349999994, 1)
  378. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  379. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  380. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  381. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  382. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  383. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  384. b10 = Instance.new("SpecialMesh", p10)
  385. b10.MeshType = Enum.MeshType.Brick
  386. b10.Name = "Mesh"
  387. b10.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  388. p11 = Instance.new("Part", m)
  389. p11.BrickColor = BrickColor.new("Black")
  390. p11.Material = Enum.Material.Metal
  391. p11.CFrame = CFrame.new(-1.5, 6.48969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  392. p11.FormFactor = Enum.FormFactor.Custom
  393. p11.Size = Vector3.new(1, 0.25, 1)
  394. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  395. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  396. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  397. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  398. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  399. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  400. b11 = Instance.new("SpecialMesh", p11)
  401. b11.MeshType = Enum.MeshType.Brick
  402. b11.Name = "Mesh"
  403. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  404. p12 = Instance.new("Part", m)
  405. p12.BrickColor = BrickColor.new("Black")
  406. p12.Material = Enum.Material.Metal
  407. p12.CFrame = CFrame.new(-1.5, 6.18969154, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  408. p12.FormFactor = Enum.FormFactor.Custom
  409. p12.Size = Vector3.new(1, 0.25, 1)
  410. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  411. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  412. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  413. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  414. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  415. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  416. b12 = Instance.new("SpecialMesh", p12)
  417. b12.MeshType = Enum.MeshType.Brick
  418. b12.Name = "Mesh"
  419. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  420. p13 = Instance.new("Part", m)
  421. p13.BrickColor = BrickColor.new("Black")
  422. p13.Material = Enum.Material.Metal
  423. p13.CFrame = CFrame.new(-1.5, 5.88968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  424. p13.FormFactor = Enum.FormFactor.Custom
  425. p13.Size = Vector3.new(1, 0.25, 1)
  426. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  427. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  428. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  429. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  430. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  431. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  432. b13 = Instance.new("SpecialMesh", p13)
  433. b13.MeshType = Enum.MeshType.Brick
  434. b13.Name = "Mesh"
  435. b13.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  436. p14 = Instance.new("Part", m)
  437. p14.BrickColor = BrickColor.new("Black")
  438. p14.Material = Enum.Material.Metal
  439. p14.CFrame = CFrame.new(-1.5, 5.58969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  440. p14.FormFactor = Enum.FormFactor.Custom
  441. p14.Size = Vector3.new(1, 0.25, 1)
  442. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  443. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  444. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  445. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  446. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  447. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  448. b14 = Instance.new("SpecialMesh", p14)
  449. b14.MeshType = Enum.MeshType.Brick
  450. b14.Name = "Mesh"
  451. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  452. p15 = Instance.new("Part", m)
  453. p15.BrickColor = BrickColor.new("Lime green")
  454. p15.Material = Enum.Material.Granite
  455. p15.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  456. p15.FormFactor = Enum.FormFactor.Custom
  457. p15.Size = Vector3.new(1, 1, 1)
  458. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  459. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  460. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  461. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  462. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  463. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  464. b15 = Instance.new("SpecialMesh", p15)
  465. b15.MeshType = Enum.MeshType.Sphere
  466. b15.Name = "Mesh"
  467. p16 = Instance.new("Part", m)
  468. p16.BrickColor = BrickColor.new("Black")
  469. p16.Material = Enum.Material.Metal
  470. p16.CFrame = CFrame.new(-1.49142194, 4.80968094, 21.7695732, 1, 1.67448022e-007, -1.06342185e-007, -2.04123751e-007, 0.500000119, -0.866025269, -6.57511308e-008, 0.866025329, 0.5)
  471. p16.FormFactor = Enum.FormFactor.Custom
  472. p16.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  473. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  474. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  475. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  476. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  477. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  478. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  479. b16 = Instance.new("SpecialMesh", p16)
  480. b16.MeshType = Enum.MeshType.Brick
  481. b16.Name = "Mesh"
  482. b16.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  483. p17 = Instance.new("Part", m)
  484. p17.BrickColor = BrickColor.new("Black")
  485. p17.Material = Enum.Material.SmoothPlastic
  486. p17.CFrame = CFrame.new(-1.50000083, 5.33968592, 22.4999943, 1, -9.44388034e-009, 5.2184074e-008, -7.54702114e-008, 0.999999881, 2.38418579e-007, 2.60919535e-008, 1.1920929e-007, 0.999999881)
  487. p17.FormFactor = Enum.FormFactor.Custom
  488. p17.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  489. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  490. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  491. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  492. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  493. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  494. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  495. b17 = Instance.new("SpecialMesh", p17)
  496. b17.MeshType = Enum.MeshType.Brick
  497. b17.Name = "Mesh"
  498. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  499. p18 = Instance.new("Part", m)
  500. p18.BrickColor = BrickColor.new("Black")
  501. p18.Material = Enum.Material.SmoothPlastic
  502. p18.CFrame = CFrame.new(-1.50000072, 5.33968782, 22.4999962, 1, -3.77485776e-008, 7.82760807e-008, -1.03774902e-007, 0.999999881, 3.57627869e-007, 5.21839532e-008, 2.38418565e-007, 0.999999881)
  503. p18.FormFactor = Enum.FormFactor.Custom
  504. p18.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  505. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  506. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  507. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  508. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  509. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  510. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  511. b18 = Instance.new("SpecialMesh", p18)
  512. b18.MeshType = Enum.MeshType.Brick
  513. b18.Name = "Mesh"
  514. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  515. p19 = Instance.new("Part", m)
  516. p19.BrickColor = BrickColor.new("Black")
  517. p19.Material = Enum.Material.SmoothPlastic
  518. p19.CFrame = CFrame.new(-1.5000006, 5.33968973, 22.4999981, 1, -6.60532748e-008, 1.04368084e-007, -1.32079592e-007, 0.999999881, 4.76837158e-007, 7.82759457e-008, 3.5762784e-007, 0.999999881)
  519. p19.FormFactor = Enum.FormFactor.Custom
  520. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  521. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  522. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  523. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  524. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  525. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  526. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  527. b19 = Instance.new("SpecialMesh", p19)
  528. b19.MeshType = Enum.MeshType.Brick
  529. b19.Name = "Mesh"
  530. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  531. p20 = Instance.new("Part", m)
  532. p20.BrickColor = BrickColor.new("Really black")
  533. p20.Material = Enum.Material.SmoothPlastic
  534. p20.CFrame = CFrame.new(-1.50000048, 5.33969164, 22.5, 1, -9.4357965e-008, 1.3046008e-007, -1.60384275e-007, 0.999999881, 5.96046448e-007, 1.04367942e-007, 4.76837101e-007, 0.999999881)
  535. p20.FormFactor = Enum.FormFactor.Custom
  536. p20.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  537. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  538. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  539. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  540. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  541. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  542. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  543. b20 = Instance.new("SpecialMesh", p20)
  544. b20.MeshType = Enum.MeshType.Brick
  545. b20.Name = "Mesh"
  546. b20.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  547. p21 = Instance.new("Part", m)
  548. p21.BrickColor = BrickColor.new("Black")
  549. p21.Material = Enum.Material.Metal
  550. p21.CFrame = CFrame.new(-1.93255413, 4.43040705, 22.5000057, -1.61368675e-007, -0.707106769, -0.707106769, -4.62050195e-007, -0.707106471, 0.707106948, -0.999999881, -5.86611463e-007, 4.45824725e-007)
  551. p21.FormFactor = Enum.FormFactor.Custom
  552. p21.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  553. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  554. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  555. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  556. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  557. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  558. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  559. b21 = Instance.new("SpecialMesh", p21)
  560. b21.MeshType = Enum.MeshType.Wedge
  561. b21.Name = "Mesh"
  562. b21.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  563. p22 = Instance.new("Part", m)
  564. p22.BrickColor = BrickColor.new("Black")
  565. p22.Material = Enum.Material.Metal
  566. p22.CFrame = CFrame.new(-2.22184062, 4.80970049, 22.5000057, -6.50768897e-008, 0.866025269, 0.50000006, -7.82806978e-007, 0.499999732, -0.866025329, -0.999999881, 3.74247918e-007, -2.56530342e-007)
  567. p22.FormFactor = Enum.FormFactor.Custom
  568. p22.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  569. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  570. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  571. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  572. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  573. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  574. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  575. b22 = Instance.new("SpecialMesh", p22)
  576. b22.MeshType = Enum.MeshType.Brick
  577. b22.Name = "Mesh"
  578. b22.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  579. p23 = Instance.new("Part", m)
  580. p23.BrickColor = BrickColor.new("Black")
  581. p23.Material = Enum.Material.Metal
  582. p23.CFrame = CFrame.new(-2.41184235, 5.35969734, 22.5000076, -1.73507274e-007, 0.98480767, 0.17364803, -8.28146199e-007, 0.173647702, -0.984807611, -0.999999881, 1.49283139e-007, -3.43238185e-007)
  583. p23.FormFactor = Enum.FormFactor.Custom
  584. p23.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  585. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  586. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  587. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  588. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  589. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  590. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  591. b23 = Instance.new("SpecialMesh", p23)
  592. b23.MeshType = Enum.MeshType.Brick
  593. b23.Name = "Mesh"
  594. b23.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  595. p24 = Instance.new("Part", m)
  596. p24.BrickColor = BrickColor.new("Black")
  597. p24.Material = Enum.Material.Metal
  598. p24.CFrame = CFrame.new(-2.41184616, 5.92969847, 22.5000076, -1.73507232e-007, 0.984807611, -0.173648104, -8.12965368e-007, -0.173648402, -0.984807432, -0.999999881, 2.02498356e-008, -3.8854634e-007)
  599. p24.FormFactor = Enum.FormFactor.Custom
  600. p24.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  601. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  602. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  603. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  604. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  605. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  606. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  607. b24 = Instance.new("SpecialMesh", p24)
  608. b24.MeshType = Enum.MeshType.Brick
  609. b24.Name = "Mesh"
  610. b24.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  611. p25 = Instance.new("Part", m)
  612. p25.BrickColor = BrickColor.new("Black")
  613. p25.Material = Enum.Material.Metal
  614. p25.CFrame = CFrame.new(-2.14142036, 6.39827347, 22.5000114, -7.7074823e-008, 0.707106829, -0.70710659, -7.54731559e-007, -0.707106769, -0.707106471, -0.999999881, -1.79262827e-007, -4.39258827e-007)
  615. p25.FormFactor = Enum.FormFactor.Custom
  616. p25.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  617. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  618. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  619. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  620. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  621. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  622. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  623. b25 = Instance.new("SpecialMesh", p25)
  624. b25.MeshType = Enum.MeshType.Brick
  625. b25.Name = "Mesh"
  626. b25.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  627. p26 = Instance.new("Part", m)
  628. p26.BrickColor = BrickColor.new("Black")
  629. p26.Material = Enum.Material.Metal
  630. p26.CFrame = CFrame.new(-1.49142087, 6.39827442, 23.1500168, -0.999999881, 1.1920929e-007, 2.68220901e-007, 1.49011612e-007, -0.707106948, -0.707106233, -1.77625395e-007, -0.707107306, 0.707106113)
  631. p26.FormFactor = Enum.FormFactor.Custom
  632. p26.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  633. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  634. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  635. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  636. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  637. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  638. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  639. b26 = Instance.new("SpecialMesh", p26)
  640. b26.MeshType = Enum.MeshType.Brick
  641. b26.Name = "Mesh"
  642. b26.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  643. p27 = Instance.new("Part", m)
  644. p27.BrickColor = BrickColor.new("Black")
  645. p27.Material = Enum.Material.Metal
  646. p27.CFrame = CFrame.new(-1.49141955, 5.92969704, 23.420433, -0.999999881, -3.03310628e-007, 3.64177367e-007, 1.73600242e-007, -0.173648864, -0.984807312, 2.67648517e-008, -0.98480773, 0.173647434)
  647. p27.FormFactor = Enum.FormFactor.Custom
  648. p27.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  649. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  650. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  651. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  652. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  653. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  654. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  655. b27 = Instance.new("SpecialMesh", p27)
  656. b27.MeshType = Enum.MeshType.Brick
  657. b27.Name = "Mesh"
  658. b27.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  659. p28 = Instance.new("Part", m)
  660. p28.BrickColor = BrickColor.new("Black")
  661. p28.Material = Enum.Material.Metal
  662. p28.CFrame = CFrame.new(-1.49141943, 5.35969734, 23.4204254, -0.999999881, -3.81113438e-007, 3.10304756e-007, 1.64414772e-007, 0.173647091, -0.984807551, -6.59209363e-008, -0.984807372, -0.17364876)
  663. p28.FormFactor = Enum.FormFactor.Custom
  664. p28.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  665. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  666. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  667. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  668. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  669. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  670. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  671. b28 = Instance.new("SpecialMesh", p28)
  672. b28.MeshType = Enum.MeshType.Brick
  673. b28.Name = "Mesh"
  674. b28.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  675. p29 = Instance.new("Part", m)
  676. p29.BrickColor = BrickColor.new("Black")
  677. p29.Material = Enum.Material.Metal
  678. p29.CFrame = CFrame.new(-1.49141932, 4.80969858, 23.2304344, -0.999999881, -4.47128798e-007, 1.98065763e-007, 1.97699791e-007, 0.499998987, -0.866025448, -1.51352623e-007, -0.866024613, -0.500000715)
  679. p29.FormFactor = Enum.FormFactor.Custom
  680. p29.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  681. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  682. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  683. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  684. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  685. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  686. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  687. b29 = Instance.new("SpecialMesh", p29)
  688. b29.MeshType = Enum.MeshType.Brick
  689. b29.Name = "Mesh"
  690. b29.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  691. p30 = Instance.new("Part", m)
  692. p30.BrickColor = BrickColor.new("Black")
  693. p30.Material = Enum.Material.Metal
  694. p30.CFrame = CFrame.new(-1.49142027, 4.43040895, 22.9411469, -0.999999881, 4.25206935e-007, 1.94115486e-007, 4.85997248e-007, -0.707105517, 0.707107246, -5.38012159e-008, 0.707105875, 0.707107246)
  695. p30.FormFactor = Enum.FormFactor.Custom
  696. p30.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  697. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  698. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  699. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  700. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  701. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  702. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  703. b30 = Instance.new("SpecialMesh", p30)
  704. b30.MeshType = Enum.MeshType.Wedge
  705. b30.Name = "Mesh"
  706. b30.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  707. p31 = Instance.new("Part", m)
  708. p31.BrickColor = BrickColor.new("Black")
  709. p31.Material = Enum.Material.Metal
  710. p31.CFrame = CFrame.new(-1.49141979, 6.39827871, 21.8500175, 0.999999881, 3.40091276e-007, -1.70074486e-007, -5.85792634e-007, -0.707105458, -0.707107246, 1.83170471e-007, 0.707105815, -0.707107365)
  711. p31.FormFactor = Enum.FormFactor.Custom
  712. p31.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  713. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  714. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  715. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  716. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  717. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  718. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  719. b31 = Instance.new("SpecialMesh", p31)
  720. b31.MeshType = Enum.MeshType.Brick
  721. b31.Name = "Mesh"
  722. b31.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  723. p32 = Instance.new("Part", m)
  724. p32.BrickColor = BrickColor.new("Black")
  725. p32.Material = Enum.Material.Metal
  726. p32.CFrame = CFrame.new(-1.49141908, 4.43041086, 22.0588818, 0.999999881, -5.29441166e-008, -6.45117154e-007, -3.43892481e-007, -0.707107067, 0.707105517, 1.02492642e-007, -0.707107663, -0.707105637)
  727. p32.FormFactor = Enum.FormFactor.Custom
  728. p32.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  729. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  730. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  731. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  732. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  733. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  734. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  735. b32 = Instance.new("SpecialMesh", p32)
  736. b32.MeshType = Enum.MeshType.Wedge
  737. b32.Name = "Mesh"
  738. b32.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  739. p33 = Instance.new("Part", m)
  740. p33.BrickColor = BrickColor.new("Black")
  741. p33.Material = Enum.Material.Metal
  742. p33.CFrame = CFrame.new(-1.4914217, 5.92970181, 21.5795879, 0.999999881, 5.22213554e-007, 2.83446013e-008, -7.00635724e-007, -0.173646629, -0.984807253, 1.38921934e-007, 0.984807372, -0.17364946)
  743. p33.FormFactor = Enum.FormFactor.Custom
  744. p33.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  745. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  746. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  747. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  748. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  749. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  750. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  751. b33 = Instance.new("SpecialMesh", p33)
  752. b33.MeshType = Enum.MeshType.Brick
  753. b33.Name = "Mesh"
  754. b33.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  755. p34 = Instance.new("Part", m)
  756. p34.BrickColor = BrickColor.new("Black")
  757. p34.Material = Enum.Material.Metal
  758. p34.CFrame = CFrame.new(-1.49141932, 5.35969925, 21.5795956, 0.999999881, 5.04442426e-007, 2.22697935e-007, -7.44121166e-007, 0.17364943, -0.984806716, 1.65013844e-007, 0.984807849, 0.173646525)
  759. p34.FormFactor = Enum.FormFactor.Custom
  760. p34.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  761. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  762. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  763. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  764. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  765. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  766. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  767. b34 = Instance.new("SpecialMesh", p34)
  768. b34.MeshType = Enum.MeshType.Brick
  769. b34.Name = "Mesh"
  770. b34.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  771. w1 = Instance.new("Weld", p1)
  772. w1.Name = "Part_Weld"
  773. w1.Part0 = p1
  774. w1.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  775. w1.Part1 = p2
  776. w1.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  777. w2 = Instance.new("Weld", p2)
  778. w2.Name = "Part_Weld"
  779. w2.Part0 = p2
  780. w2.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  781. w2.Part1 = p3
  782. w2.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  783. w3 = Instance.new("Weld", p3)
  784. w3.Name = "LeftArmPlate_Weld"
  785. w3.Part0 = p3
  786. w3.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  787. w3.Part1 = p4
  788. w3.C1 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  789. w4 = Instance.new("Weld", p4)
  790. w4.Name = "Part_Weld"
  791. w4.Part0 = p4
  792. w4.C0 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  793. w4.Part1 = p5
  794. w4.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  795. w5 = Instance.new("Weld", p5)
  796. w5.Name = "Part_Weld"
  797. w5.Part0 = p5
  798. w5.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  799. w5.Part1 = p6
  800. w5.C1 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  801. w6 = Instance.new("Weld", p6)
  802. w6.Name = "Part_Weld"
  803. w6.Part0 = p6
  804. w6.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  805. w6.Part1 = p7
  806. w6.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  807. w7 = Instance.new("Weld", p7)
  808. w7.Name = "Part_Weld"
  809. w7.Part0 = p7
  810. w7.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  811. w7.Part1 = p8
  812. w7.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  813. w8 = Instance.new("Weld", p8)
  814. w8.Name = "Part_Weld"
  815. w8.Part0 = p8
  816. w8.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  817. w8.Part1 = p9
  818. w8.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  819. w9 = Instance.new("Weld", p9)
  820. w9.Name = "Part_Weld"
  821. w9.Part0 = p9
  822. w9.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  823. w9.Part1 = p10
  824. w9.C1 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  825. w10 = Instance.new("Weld", p10)
  826. w10.Name = "Part_Weld"
  827. w10.Part0 = p10
  828. w10.C0 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  829. w10.Part1 = p11
  830. w10.C1 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  831. w11 = Instance.new("Weld", p11)
  832. w11.Name = "Part_Weld"
  833. w11.Part0 = p11
  834. w11.C0 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  835. w11.Part1 = p12
  836. w11.C1 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  837. w12 = Instance.new("Weld", p12)
  838. w12.Name = "Part_Weld"
  839. w12.Part0 = p12
  840. w12.C0 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  841. w12.Part1 = p13
  842. w12.C1 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  843. w13 = Instance.new("Weld", p13)
  844. w13.Name = "Part_Weld"
  845. w13.Part0 = p13
  846. w13.C0 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  847. w13.Part1 = p14
  848. w13.C1 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  849. w14 = Instance.new("Weld", p14)
  850. w14.Name = "Part_Weld"
  851. w14.Part0 = p14
  852. w14.C0 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  853. w14.Part1 = p15
  854. w14.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  855. w15 = Instance.new("Weld", p15)
  856. w15.Name = "Part_Weld"
  857. w15.Part0 = p15
  858. w15.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  859. w15.Part1 = p16
  860. w15.C1 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
  861. w16 = Instance.new("Weld", p16)
  862. w16.Name = "Part_Weld"
  863. w16.Part0 = p16
  864. w16.C0 = CFrame.new(1.49142683, -27.338007, 3.81166649, 1, -2.04123751e-007, -6.57511308e-008, 1.67448022e-007, 0.500000119, 0.866025329, -1.06342185e-007, -0.866025269, 0.5)
  865. w16.Part1 = p17
  866. w16.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  867. w17 = Instance.new("Weld", p17)
  868. w17.Name = "Part_Weld"
  869. w17.Part0 = p17
  870. w17.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  871. w17.Part1 = p18
  872. w17.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  873. w18 = Instance.new("Weld", p18)
  874. w18.Name = "Part_Weld"
  875. w18.Part0 = p18
  876. w18.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  877. w18.Part1 = p19
  878. w18.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  879. w19 = Instance.new("Weld", p19)
  880. w19.Name = "Part_Weld"
  881. w19.Part0 = p19
  882. w19.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  883. w19.Part1 = p20
  884. w19.C1 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  885. w20 = Instance.new("Weld", p20)
  886. w20.Name = "Part_Weld"
  887. w20.Part0 = p20
  888. w20.C0 = CFrame.new(1.50000179, -17.5000076, -22.4999943, 1, -4.71655142e-008, -4.97379915e-014, 1.88608098e-008, 1, 2.98023224e-008, 2.60920601e-008, 8.94069672e-008, 1)
  889. w20.Part1 = p21
  890. w20.C1 = CFrame.new(22.4999943, 10.3648901, -13.0979404, -3.09086232e-008, 1.63798575e-007, -1, -0.707106888, -0.70710665, -9.39673512e-008, -0.70710665, 0.707106888, 1.37678796e-007)
  891. w21 = Instance.new("Weld", p21)
  892. w21.Name = "Part_Weld"
  893. w21.Part0 = p21
  894. w21.C0 = CFrame.new(22.4999943, 10.3648901, -13.0979404, -3.09086232e-008, 1.63798575e-007, -1, -0.707106888, -0.70710665, -9.39673512e-008, -0.70710665, 0.707106888, 1.37678796e-007)
  895. w21.Part1 = p22
  896. w21.C1 = CFrame.new(22.4999981, -6.56083632, 15.8073826, 6.53831052e-008, -1.56958208e-007, -1, 0.866025388, 0.5, -2.18557226e-008, 0.5, -0.866025388, 1.68621398e-007)
  897. w22 = Instance.new("Weld", p22)
  898. w22.Name = "Part_Weld"
  899. w22.Part0 = p22
  900. w22.C0 = CFrame.new(22.4999981, -6.56083632, 15.8073826, 6.53831052e-008, -1.56958208e-007, -1, 0.866025388, 0.5, -2.18557226e-008, 0.5, -0.866025388, 1.68621398e-007)
  901. w22.Part1 = p23
  902. w22.C1 = CFrame.new(22.5, -0.667109907, 17.6726532, -4.30473222e-008, -2.02297542e-007, -1, 0.984807789, 0.17364794, -7.75219178e-008, 0.17364794, -0.984807789, 1.91749166e-007)
  903. w23 = Instance.new("Weld", p23)
  904. w23.Name = "Part_Weld"
  905. w23.Part0 = p23
  906. w23.C0 = CFrame.new(22.5, -0.667109907, 17.6726532, -4.30473222e-008, -2.02297542e-007, -1, 0.984807789, 0.17364794, -7.75219178e-008, 0.17364794, -0.984807789, 1.91749166e-007)
  907. w23.Part1 = p24
  908. w23.C1 = CFrame.new(22.5, 5.5165062, 17.3963699, -4.30473079e-008, -1.87116754e-007, -1, 0.98480773, -0.173648238, -9.9008588e-009, -0.173648238, -0.98480773, 1.91749152e-007)
  909. w24 = Instance.new("Weld", p24)
  910. w24.Name = "Part_Weld"
  911. w24.Part0 = p24
  912. w24.C0 = CFrame.new(22.5, 5.5165062, 17.3963699, -4.30473079e-008, -1.87116754e-007, -1, 0.98480773, -0.173648238, -9.9008588e-009, -0.173648238, -0.98480773, 1.91749152e-007)
  913. w24.Part1 = p25
  914. w24.C1 = CFrame.new(22.5000019, 14.6371164, 11.6086912, 5.33850866e-008, -1.28882959e-007, -1, 0.707106829, -0.707106769, 1.28882959e-007, -0.707106769, -0.707106829, 5.33851079e-008)
  915. w25 = Instance.new("Weld", p25)
  916. w25.Name = "Part_Weld"
  917. w25.Part0 = p25
  918. w25.C0 = CFrame.new(22.5000019, 14.6371164, 11.6086912, 5.33850866e-008, -1.28882959e-007, -1, 0.707106829, -0.707106769, 1.28882959e-007, -0.707106769, -0.707106829, 5.33851079e-008)
  919. w25.Part1 = p26
  920. w25.C1 = CFrame.new(-1.49141967, 29.4924316, -3.24661636, -1, -1.1920929e-007, -4.71654928e-008, 1.1920929e-007, -0.707106709, -0.707106888, 8.94069672e-008, -0.707106829, 0.70710665)
  921. w26 = Instance.new("Weld", p26)
  922. w26.Name = "Part_Weld"
  923. w26.Part0 = p26
  924. w26.C0 = CFrame.new(-1.49141967, 29.4924316, -3.24661636, -1, -1.1920929e-007, -4.71654928e-008, 1.1920929e-007, -0.707106709, -0.707106888, 8.94069672e-008, -0.707106829, 0.70710665)
  925. w26.Part1 = p27
  926. w26.C1 = CFrame.new(-1.49142396, 26.2059097, 13.748271, -1, -1.22925456e-007, 1.83316814e-007, -1.79966634e-007, -0.173648238, -0.98480773, 1.85296102e-007, -0.98480773, 0.173648149)
  927. w27 = Instance.new("Weld", p27)
  928. w27.Name = "Part_Weld"
  929. w27.Part0 = p27
  930. w27.C0 = CFrame.new(-1.49142396, 26.2059097, 13.748271, -1, -1.22925456e-007, 1.83316814e-007, -1.79966634e-007, -0.173648238, -0.98480773, 1.85296102e-007, -0.98480773, 0.173648149)
  931. w27.Part1 = p28
  932. w27.C1 = CFrame.new(-1.49142182, 20.0222931, 21.3207512, -1, -1.60415567e-007, 1.16723079e-007, -1.73416339e-007, 0.17364794, -0.98480773, 1.61053634e-007, -0.98480773, -0.173648015)
  933. w28 = Instance.new("Weld", p28)
  934. w28.Name = "Part_Weld"
  935. w28.Part0 = p28
  936. w28.C0 = CFrame.new(-1.49142182, 20.0222931, 21.3207512, -1, -1.60415567e-007, 1.16723079e-007, -1.73416339e-007, 0.17364794, -0.98480773, 1.61053634e-007, -0.98480773, -0.173648015)
  937. w28.Part1 = p29
  938. w28.C1 = CFrame.new(-1.49142063, 11.6331291, 26.311676, -1, -1.55435174e-007, 5.73833887e-008, -1.6416179e-007, 0.5, -0.866025329, 1.17385696e-007, -0.866025329, -0.500000119)
  939. w29 = Instance.new("Weld", p29)
  940. w29.Name = "Part_Weld"
  941. w29.Part0 = p29
  942. w29.C0 = CFrame.new(-1.49142063, 11.6331291, 26.311676, -1, -1.55435174e-007, 5.73833887e-008, -1.6416179e-007, 0.5, -0.866025329, 1.17385696e-007, -0.866025329, -0.500000119)
  943. w29.Part1 = p30
  944. w29.C1 = CFrame.new(-1.49142897, -4.49042225, -27.9532433, -1, 1.04557571e-007, 1.81026579e-007, 9.25360411e-008, -0.70710665, 0.707106829, 2.00373876e-007, 0.707106888, 0.707106769)
  945. w30 = Instance.new("Weld", p30)
  946. w30.Name = "Part_Weld"
  947. w30.Part0 = p30
  948. w30.C0 = CFrame.new(-1.49142897, -4.49042225, -27.9532433, -1, 1.04557571e-007, 1.81026579e-007, 9.25360411e-008, -0.70710665, 0.707106829, 2.00373876e-007, 0.707106888, 0.707106769)
  949. w30.Part1 = p31
  950. w30.C1 = CFrame.new(1.49142683, -2.32737827, 28.5731888, 1, -1.76048474e-007, -7.77491636e-008, -3.10438502e-008, -0.707106709, 0.707106769, -1.77897419e-007, -0.707106829, -0.707106829)
  951. w31 = Instance.new("Weld", p31)
  952. w31.Name = "Part_Weld"
  953. w31.Part0 = p31
  954. w31.C0 = CFrame.new(1.49142683, -2.32737827, 28.5731888, 1, -1.76048474e-007, -7.77491636e-008, -3.10438502e-008, -0.707106709, 0.707106769, -1.77897419e-007, -0.707106829, -0.707106829)
  955. w31.Part1 = p32
  956. w31.C1 = CFrame.new(1.49142444, 27.3293839, 3.86655521, 1, 9.41566256e-008, -1.8451928e-007, -6.23315088e-008, -0.70710665, -0.707107008, -2.35517859e-007, 0.707106888, -0.70710659)
  957. w32 = Instance.new("Weld", p32)
  958. w32.Name = "Part_Weld"
  959. w32.Part0 = p32
  960. w32.C0 = CFrame.new(1.49142444, 27.3293839, 3.86655521, 1, 9.41566256e-008, -1.8451928e-007, -6.23315088e-008, -0.70710665, -0.707107008, -2.35517859e-007, 0.707106888, -0.70710659)
  961. w32.Part1 = p33
  962. w32.C1 = CFrame.new(1.49143207, -18.1104279, 21.5624332, 1, -2.34282282e-007, -1.74181523e-007, 1.61463277e-007, -0.173648089, 0.98480773, -2.37625457e-007, -0.98480773, -0.173648238)
  963. w33 = Instance.new("Weld", p33)
  964. w33.Name = "Part_Weld"
  965. w33.Part0 = p33
  966. w33.C0 = CFrame.new(1.49143207, -18.1104279, 21.5624332, 1, -2.34282282e-007, -1.74181523e-007, 1.61463277e-007, -0.173648089, 0.98480773, -2.37625457e-007, -0.98480773, -0.173648238)
  967. w33.Part1 = p34
  968. w33.C1 = CFrame.new(1.49143016, -24.2940445, 13.5065851, 1, -2.49463085e-007, -1.74181523e-007, 2.35634644e-007, 0.173648074, 0.98480773, -1.83021399e-007, -0.98480773, 0.17364794)
  969. m.Parent = larm
  970. m:MakeJoints()
  971. ----------------------------------------------------
  972. local cor = Instance.new("Part", larm.LeftArm)
  973. cor.Name = "Thingy"
  974. cor.Locked = true
  975. cor.BottomSurface = 0
  976. cor.CanCollide = false
  977. cor.Size = Vector3.new(1, 1, 1)
  978. cor.Transparency = 1
  979. cor.TopSurface = 0
  980. corw = Instance.new("Weld", cor)
  981. corw.Part0 = larm
  982. corw.Part1 = cor
  983. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  984. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  985. weld1 = Instance.new("Weld", larm.LeftArm)
  986. weld1.Part0 = cor
  987. weld1.Part1 = larm.LeftArm.LeftArmPlate
  988. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  989. --Right Arm
  990. m2 = Instance.new("Model")
  991. m2.Name = "RightArm"
  992. p1 = Instance.new("Part", m2)
  993. p1.BrickColor = BrickColor.new("Lime green")
  994. p1.Material = Enum.Material.Granite
  995. p1.CFrame = CFrame.new(3.5, -9.44201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  996. p1.FormFactor = Enum.FormFactor.Custom
  997. p1.Size = Vector3.new(1, 0.200000048, 1)
  998. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  999. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1002. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1003. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. b1 = Instance.new("SpecialMesh", p1)
  1005. b1.MeshType = Enum.MeshType.Brick
  1006. b1.Name = "Mesh"
  1007. b1.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1008. p2 = Instance.new("Part", m2)
  1009. p2.BrickColor = BrickColor.new("Lime green")
  1010. p2.Material = Enum.Material.Granite
  1011. p2.CFrame = CFrame.new(3.5, -9.74201393, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1012. p2.FormFactor = Enum.FormFactor.Custom
  1013. p2.Size = Vector3.new(1, 0.200000048, 1)
  1014. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1015. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1016. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1017. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1018. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. b2 = Instance.new("SpecialMesh", p2)
  1021. b2.MeshType = Enum.MeshType.Brick
  1022. b2.Name = "Mesh"
  1023. b2.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1024. p3 = Instance.new("Part", m2)
  1025. p3.BrickColor = BrickColor.new("Lime green")
  1026. p3.Material = Enum.Material.Granite
  1027. p3.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1028. p3.FormFactor = Enum.FormFactor.Custom
  1029. p3.Size = Vector3.new(1, 0.200000048, 1)
  1030. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1031. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1032. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1033. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1034. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1035. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. b3 = Instance.new("SpecialMesh", p3)
  1037. b3.MeshType = Enum.MeshType.Brick
  1038. b3.Name = "Mesh"
  1039. b3.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1040. p4 = Instance.new("Part", m2)
  1041. p4.BrickColor = BrickColor.new("Lime green")
  1042. p4.Material = Enum.Material.Granite
  1043. p4.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1044. p4.FormFactor = Enum.FormFactor.Custom
  1045. p4.Size = Vector3.new(1, 0.200000048, 1)
  1046. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1047. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1048. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1049. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1050. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1051. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1052. b4 = Instance.new("SpecialMesh", p4)
  1053. b4.MeshType = Enum.MeshType.Brick
  1054. b4.Name = "Mesh"
  1055. b4.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1056. p5 = Instance.new("Part", m2)
  1057. p5.BrickColor = BrickColor.new("Lime green")
  1058. p5.Material = Enum.Material.Granite
  1059. p5.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1060. p5.FormFactor = Enum.FormFactor.Custom
  1061. p5.Size = Vector3.new(1, 0.200000048, 1)
  1062. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1063. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1064. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1065. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1066. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1067. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1068. b5 = Instance.new("SpecialMesh", p5)
  1069. b5.MeshType = Enum.MeshType.Brick
  1070. b5.Name = "Mesh"
  1071. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1072. p6 = Instance.new("Part", m2)
  1073. p6.BrickColor = BrickColor.new("Lime green")
  1074. p6.Material = Enum.Material.Granite
  1075. p6.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1076. p6.FormFactor = Enum.FormFactor.Custom
  1077. p6.Size = Vector3.new(1, 1, 1)
  1078. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1079. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1080. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1081. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1082. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1083. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1084. b6 = Instance.new("SpecialMesh", p6)
  1085. b6.MeshType = Enum.MeshType.Sphere
  1086. b6.Name = "Mesh"
  1087. p7 = Instance.new("Part", m2)
  1088. p7.BrickColor = BrickColor.new("Black")
  1089. p7.Material = Enum.Material.SmoothPlastic
  1090. p7.Name = "RightArmPlate"
  1091. p7.CFrame = CFrame.new(3.5, -9.54201603, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1092. p7.FormFactor = Enum.FormFactor.Symmetric
  1093. p7.Size = Vector3.new(1, 2, 1)
  1094. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1095. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1097. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1098. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1099. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1100. b7 = Instance.new("SpecialMesh", p7)
  1101. b7.MeshType = Enum.MeshType.Brick
  1102. b7.Name = "Mesh"
  1103. b7.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1104. p8 = Instance.new("Part", m2)
  1105. p8.BrickColor = BrickColor.new("Lime green")
  1106. p8.Material = Enum.Material.Granite
  1107. p8.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1108. p8.FormFactor = Enum.FormFactor.Custom
  1109. p8.Size = Vector3.new(1, 0.200000048, 1)
  1110. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1111. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1114. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1115. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. b8 = Instance.new("SpecialMesh", p8)
  1117. b8.MeshType = Enum.MeshType.Brick
  1118. b8.Name = "Mesh"
  1119. b8.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1120. p9 = Instance.new("Part", m2)
  1121. p9.BrickColor = BrickColor.new("Black")
  1122. p9.Material = Enum.Material.SmoothPlastic
  1123. p9.CFrame = CFrame.new(3.5, -8.69201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1124. p9.FormFactor = Enum.FormFactor.Custom
  1125. p9.Size = Vector3.new(1, 0.349999994, 1)
  1126. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1128. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1129. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1130. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1131. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. b9 = Instance.new("SpecialMesh", p9)
  1133. b9.MeshType = Enum.MeshType.Brick
  1134. b9.Name = "Mesh"
  1135. b9.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  1136. p10 = Instance.new("Part", m2)
  1137. p10.BrickColor = BrickColor.new("Black")
  1138. p10.Material = Enum.Material.Metal
  1139. p10.CFrame = CFrame.new(3.5, -8.99201584, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1140. p10.FormFactor = Enum.FormFactor.Custom
  1141. p10.Size = Vector3.new(1, 0.25, 1)
  1142. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1143. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1146. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. b10 = Instance.new("SpecialMesh", p10)
  1149. b10.MeshType = Enum.MeshType.Brick
  1150. b10.Name = "Mesh"
  1151. b10.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1152. p11 = Instance.new("Part", m2)
  1153. p11.BrickColor = BrickColor.new("Black")
  1154. p11.Material = Enum.Material.Metal
  1155. p11.CFrame = CFrame.new(3.5, -9.29201508, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1156. p11.FormFactor = Enum.FormFactor.Custom
  1157. p11.Size = Vector3.new(1, 0.25, 1)
  1158. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1159. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1160. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1161. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1162. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1163. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. b11 = Instance.new("SpecialMesh", p11)
  1165. b11.MeshType = Enum.MeshType.Brick
  1166. b11.Name = "Mesh"
  1167. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1168. p12 = Instance.new("Part", m2)
  1169. p12.BrickColor = BrickColor.new("Black")
  1170. p12.Material = Enum.Material.Metal
  1171. p12.CFrame = CFrame.new(3.5, -9.59201431, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1172. p12.FormFactor = Enum.FormFactor.Custom
  1173. p12.Size = Vector3.new(1, 0.25, 1)
  1174. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1175. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1177. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1178. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1179. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1180. b12 = Instance.new("SpecialMesh", p12)
  1181. b12.MeshType = Enum.MeshType.Brick
  1182. b12.Name = "Mesh"
  1183. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1184. p13 = Instance.new("Part", m2)
  1185. p13.BrickColor = BrickColor.new("Lime green")
  1186. p13.Material = Enum.Material.Granite
  1187. p13.CFrame = CFrame.new(3.5, -9.44201088, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1188. p13.FormFactor = Enum.FormFactor.Custom
  1189. p13.Size = Vector3.new(1, 0.200000048, 1)
  1190. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1191. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1192. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1193. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1195. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1196. b13 = Instance.new("SpecialMesh", p13)
  1197. b13.MeshType = Enum.MeshType.Brick
  1198. b13.Name = "Mesh"
  1199. b13.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1200. p14 = Instance.new("Part", m2)
  1201. p14.BrickColor = BrickColor.new("Black")
  1202. p14.Material = Enum.Material.Metal
  1203. p14.CFrame = CFrame.new(3.5, -9.89201069, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1204. p14.FormFactor = Enum.FormFactor.Custom
  1205. p14.Size = Vector3.new(1, 0.25, 1)
  1206. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1212. b14 = Instance.new("SpecialMesh", p14)
  1213. b14.MeshType = Enum.MeshType.Brick
  1214. b14.Name = "Mesh"
  1215. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1216. p15 = Instance.new("Part", m2)
  1217. p15.BrickColor = BrickColor.new("Lime green")
  1218. p15.Material = Enum.Material.Granite
  1219. p15.CFrame = CFrame.new(3.5, -9.74201298, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1220. p15.FormFactor = Enum.FormFactor.Custom
  1221. p15.Size = Vector3.new(1, 0.200000048, 1)
  1222. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1223. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. b15 = Instance.new("SpecialMesh", p15)
  1229. b15.MeshType = Enum.MeshType.Brick
  1230. b15.Name = "Mesh"
  1231. b15.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1232. p16 = Instance.new("Part", m2)
  1233. p16.BrickColor = BrickColor.new("Black")
  1234. p16.Material = Enum.Material.SmoothPlastic
  1235. p16.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1236. p16.FormFactor = Enum.FormFactor.Custom
  1237. p16.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  1238. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1239. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1242. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1243. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. b16 = Instance.new("SpecialMesh", p16)
  1245. b16.MeshType = Enum.MeshType.Brick
  1246. b16.Name = "Mesh"
  1247. b16.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1248. p17 = Instance.new("Part", m2)
  1249. p17.BrickColor = BrickColor.new("Black")
  1250. p17.Material = Enum.Material.SmoothPlastic
  1251. p17.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1252. p17.FormFactor = Enum.FormFactor.Custom
  1253. p17.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  1254. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1256. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. b17 = Instance.new("SpecialMesh", p17)
  1261. b17.MeshType = Enum.MeshType.Brick
  1262. b17.Name = "Mesh"
  1263. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1264. p18 = Instance.new("Part", m2)
  1265. p18.BrickColor = BrickColor.new("Really black")
  1266. p18.Material = Enum.Material.SmoothPlastic
  1267. p18.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1268. p18.FormFactor = Enum.FormFactor.Custom
  1269. p18.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1270. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1271. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1272. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1273. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. b18 = Instance.new("SpecialMesh", p18)
  1277. b18.MeshType = Enum.MeshType.Brick
  1278. b18.Name = "Mesh"
  1279. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1280. p19 = Instance.new("Part", m2)
  1281. p19.BrickColor = BrickColor.new("Black")
  1282. p19.Material = Enum.Material.SmoothPlastic
  1283. p19.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1284. p19.FormFactor = Enum.FormFactor.Custom
  1285. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1286. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1290. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1291. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. b19 = Instance.new("SpecialMesh", p19)
  1293. b19.MeshType = Enum.MeshType.Brick
  1294. b19.Name = "Mesh"
  1295. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  1296. w1 = Instance.new("Weld", p1)
  1297. w1.Name = "Part_Weld"
  1298. w1.Part0 = p1
  1299. w1.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1300. w1.Part1 = p2
  1301. w1.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1302. w2 = Instance.new("Weld", p2)
  1303. w2.Name = "Part_Weld"
  1304. w2.Part0 = p2
  1305. w2.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1306. w2.Part1 = p3
  1307. w2.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1308. w3 = Instance.new("Weld", p3)
  1309. w3.Name = "Part_Weld"
  1310. w3.Part0 = p3
  1311. w3.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1312. w3.Part1 = p4
  1313. w3.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1314. w4 = Instance.new("Weld", p4)
  1315. w4.Name = "Part_Weld"
  1316. w4.Part0 = p4
  1317. w4.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1318. w4.Part1 = p5
  1319. w4.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1320. w5 = Instance.new("Weld", p5)
  1321. w5.Name = "Part_Weld"
  1322. w5.Part0 = p5
  1323. w5.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1324. w5.Part1 = p6
  1325. w5.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1326. w6 = Instance.new("Weld", p6)
  1327. w6.Name = "RightArmPlate_Weld"
  1328. w6.Part0 = p6
  1329. w6.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1330. w6.Part1 = p7
  1331. w6.C1 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1332. w7 = Instance.new("Weld", p7)
  1333. w7.Name = "Part_Weld"
  1334. w7.Part0 = p7
  1335. w7.C0 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1336. w7.Part1 = p8
  1337. w7.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1338. w8 = Instance.new("Weld", p8)
  1339. w8.Name = "Part_Weld"
  1340. w8.Part0 = p8
  1341. w8.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1342. w8.Part1 = p9
  1343. w8.C1 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1344. w9 = Instance.new("Weld", p9)
  1345. w9.Name = "Part_Weld"
  1346. w9.Part0 = p9
  1347. w9.C0 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1348. w9.Part1 = p10
  1349. w9.C1 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1350. w10 = Instance.new("Weld", p10)
  1351. w10.Name = "Part_Weld"
  1352. w10.Part0 = p10
  1353. w10.C0 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1354. w10.Part1 = p11
  1355. w10.C1 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1356. w11 = Instance.new("Weld", p11)
  1357. w11.Name = "Part_Weld"
  1358. w11.Part0 = p11
  1359. w11.C0 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1360. w11.Part1 = p12
  1361. w11.C1 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1362. w12 = Instance.new("Weld", p12)
  1363. w12.Name = "Part_Weld"
  1364. w12.Part0 = p12
  1365. w12.C0 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1366. w12.Part1 = p13
  1367. w12.C1 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1368. w13 = Instance.new("Weld", p13)
  1369. w13.Name = "Part_Weld"
  1370. w13.Part0 = p13
  1371. w13.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1372. w13.Part1 = p14
  1373. w13.C1 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1374. w14 = Instance.new("Weld", p14)
  1375. w14.Name = "Part_Weld"
  1376. w14.Part0 = p14
  1377. w14.C0 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1378. w14.Part1 = p15
  1379. w14.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1380. w15 = Instance.new("Weld", p15)
  1381. w15.Name = "Part_Weld"
  1382. w15.Part0 = p15
  1383. w15.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1384. w15.Part1 = p16
  1385. w15.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1386. w16 = Instance.new("Weld", p16)
  1387. w16.Name = "Part_Weld"
  1388. w16.Part0 = p16
  1389. w16.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1390. w16.Part1 = p17
  1391. w16.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1392. w17 = Instance.new("Weld", p17)
  1393. w17.Name = "Part_Weld"
  1394. w17.Part0 = p17
  1395. w17.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1396. w17.Part1 = p18
  1397. w17.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1398. w18 = Instance.new("Weld", p18)
  1399. w18.Name = "Part_Weld"
  1400. w18.Part0 = p18
  1401. w18.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1402. w18.Part1 = p19
  1403. w18.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1404. m2.Parent = rarm
  1405. m2:MakeJoints()
  1406. ----------------------------------------------------
  1407. local cor2 = Instance.new("Part", rarm.RightArm)
  1408. cor2.Name = "Thingy"
  1409. cor2.Locked = true
  1410. cor2.BottomSurface = 0
  1411. cor2.CanCollide = false
  1412. cor2.Size = Vector3.new(1, 1, 1)
  1413. cor2.Transparency = 1
  1414. cor2.TopSurface = 0
  1415. corw2 = Instance.new("Weld", cor2)
  1416. corw2.Part0 = rarm
  1417. corw2.Part1 = cor2
  1418. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1419. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1420. weld2 = Instance.new("Weld", rarm.RightArm)
  1421. weld2.Part0 = cor2
  1422. weld2.Part1 = rarm.RightArm.RightArmPlate
  1423. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1424. --Torso
  1425. m3 = Instance.new("Model")
  1426. m3.Name = "Torso"
  1427. p1 = Instance.new("Part", m3)
  1428. p1.BrickColor = BrickColor.new("Really black")
  1429. p1.Material = Enum.Material.Metal
  1430. p1.Name = "TorsoPlate"
  1431. p1.CFrame = CFrame.new(0, 3.10002589, 0.50000006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1432. p1.CanCollide = false
  1433. p1.Locked = true
  1434. p1.FormFactor = Enum.FormFactor.Custom
  1435. p1.Size = Vector3.new(2, 2, 1)
  1436. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1437. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1438. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1439. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1440. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1441. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1442. b1 = Instance.new("SpecialMesh", p1)
  1443. b1.MeshType = Enum.MeshType.Brick
  1444. b1.Name = "Mesh"
  1445. b1.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1446. p2 = Instance.new("Part", m3)
  1447. p2.BrickColor = BrickColor.new("Really black")
  1448. p2.Material = Enum.Material.Metal
  1449. p2.CFrame = CFrame.new(-0.450000942, 4.05002356, -0.100002818, -0.685070276, 0.686094284, 0.244853854, 0.616745472, 0.367372453, 0.696177125, 0.387690574, 0.627942622, -0.674821496)
  1450. p2.CanCollide = false
  1451. p2.Locked = true
  1452. p2.FormFactor = Enum.FormFactor.Custom
  1453. p2.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1454. b2 = Instance.new("SpecialMesh", p2)
  1455. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1456. b2.TextureId = ""
  1457. b2.MeshType = Enum.MeshType.FileMesh
  1458. b2.Name = "Mesh"
  1459. b2.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1460. p3 = Instance.new("Part", m3)
  1461. p3.BrickColor = BrickColor.new("Black")
  1462. p3.Material = Enum.Material.Metal
  1463. p3.CFrame = CFrame.new(0, 3.10002589, 0.970001996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1464. p3.CanCollide = false
  1465. p3.Locked = true
  1466. p3.FormFactor = Enum.FormFactor.Custom
  1467. p3.Size = Vector3.new(2, 2, 0.200000018)
  1468. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1469. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1470. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1471. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1472. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1473. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1474. b3 = Instance.new("SpecialMesh", p3)
  1475. b3.MeshType = Enum.MeshType.Brick
  1476. b3.Name = "Mesh"
  1477. b3.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1478. p4 = Instance.new("Part", m3)
  1479. p4.BrickColor = BrickColor.new("Black")
  1480. p4.Material = Enum.Material.Metal
  1481. p4.CFrame = CFrame.new(0, 4.00002623, 0.529999971, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  1482. p4.CanCollide = false
  1483. p4.Locked = true
  1484. p4.FormFactor = Enum.FormFactor.Custom
  1485. p4.Size = Vector3.new(2, 1.04000008, 0.239999995)
  1486. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1487. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1488. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1489. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1490. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1491. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1492. b4 = Instance.new("SpecialMesh", p4)
  1493. b4.MeshType = Enum.MeshType.Brick
  1494. b4.Name = "Mesh"
  1495. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1496. p5 = Instance.new("Part", m3)
  1497. p5.BrickColor = BrickColor.new("Black")
  1498. p5.Material = Enum.Material.Metal
  1499. p5.CFrame = CFrame.new(-0.499999821, 3.15002489, 0.0999978557, 7.54979084e-008, 1, 0, 4.37113918e-008, 0, 1, 1, -7.54978942e-008, -4.37113883e-008)
  1500. p5.CanCollide = false
  1501. p5.Locked = true
  1502. p5.FormFactor = Enum.FormFactor.Custom
  1503. p5.Size = Vector3.new(0.300000012, 1, 1.89999998)
  1504. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1505. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1506. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1507. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1508. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1509. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1510. b5 = Instance.new("SpecialMesh", p5)
  1511. b5.MeshType = Enum.MeshType.Wedge
  1512. b5.Name = "Mesh"
  1513. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1514. p6 = Instance.new("Part", m3)
  1515. p6.BrickColor = BrickColor.new("Black")
  1516. p6.Material = Enum.Material.Metal
  1517. p6.CFrame = CFrame.new(0.500000179, 3.15002489, 0.0999980345, -4.37113918e-008, -1, 0, -4.37113812e-008, 0, 1, -1, 4.37113847e-008, -4.37113883e-008)
  1518. p6.CanCollide = false
  1519. p6.Locked = true
  1520. p6.FormFactor = Enum.FormFactor.Custom
  1521. p6.Size = Vector3.new(0.300000012, 0.99999994, 1.89999998)
  1522. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1523. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1524. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1525. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1526. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1527. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1528. b6 = Instance.new("SpecialMesh", p6)
  1529. b6.MeshType = Enum.MeshType.Wedge
  1530. b6.Name = "Mesh"
  1531. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1532. p7 = Instance.new("Part", m3)
  1533. p7.BrickColor = BrickColor.new("Black")
  1534. p7.Material = Enum.Material.Metal
  1535. p7.CFrame = CFrame.new(1.63912773e-007, 3.20002794, 0.0999980569, -3.09086197e-008, -0.707106829, -0.707106769, -7.46200044e-008, -0.707106769, 0.707106829, -1, 7.46200044e-008, -3.09086197e-008)
  1536. p7.CanCollide = false
  1537. p7.Locked = true
  1538. p7.FormFactor = Enum.FormFactor.Custom
  1539. p7.Size = Vector3.new(0.300000012, 1.20000005, 1.20000005)
  1540. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1541. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1542. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1543. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1544. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1545. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1546. b7 = Instance.new("SpecialMesh", p7)
  1547. b7.MeshType = Enum.MeshType.Wedge
  1548. b7.Name = "Mesh"
  1549. p8 = Instance.new("Part", m3)
  1550. p8.BrickColor = BrickColor.new("Black")
  1551. p8.Material = Enum.Material.Metal
  1552. p8.CFrame = CFrame.new(-1, 3.10002613, 0.520000935, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1553. p8.CanCollide = false
  1554. p8.Locked = true
  1555. p8.FormFactor = Enum.FormFactor.Custom
  1556. p8.Size = Vector3.new(1, 2, 0.200000018)
  1557. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1558. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1559. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1560. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1561. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1562. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1563. b8 = Instance.new("SpecialMesh", p8)
  1564. b8.MeshType = Enum.MeshType.Brick
  1565. b8.Name = "Mesh"
  1566. b8.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1567. p9 = Instance.new("Part", m3)
  1568. p9.BrickColor = BrickColor.new("Black")
  1569. p9.Material = Enum.Material.Metal
  1570. p9.CFrame = CFrame.new(1, 3.10002613, 0.520001054, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1571. p9.CanCollide = false
  1572. p9.Locked = true
  1573. p9.FormFactor = Enum.FormFactor.Custom
  1574. p9.Size = Vector3.new(1, 2, 0.200000018)
  1575. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1576. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1577. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1578. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1579. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1580. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1581. b9 = Instance.new("SpecialMesh", p9)
  1582. b9.MeshType = Enum.MeshType.Brick
  1583. b9.Name = "Mesh"
  1584. b9.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1585. p10 = Instance.new("Part", m3)
  1586. p10.BrickColor = BrickColor.new("Black")
  1587. p10.Material = Enum.Material.Metal
  1588. p10.CFrame = CFrame.new(0, 2.05002642, 0.539999843, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  1589. p10.CanCollide = false
  1590. p10.Locked = true
  1591. p10.FormFactor = Enum.FormFactor.Custom
  1592. p10.Size = Vector3.new(2, 1.0200001, 0.239999995)
  1593. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1594. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1595. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1596. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1597. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1598. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1599. b10 = Instance.new("SpecialMesh", p10)
  1600. b10.MeshType = Enum.MeshType.Brick
  1601. b10.Name = "Mesh"
  1602. b10.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1603. p11 = Instance.new("Part", m3)
  1604. p11.BrickColor = BrickColor.new("Really black")
  1605. p11.Material = Enum.Material.Metal
  1606. p11.CFrame = CFrame.new(0.499999523, 4.05002451, -0.0499982014, 1.00000024, -8.94069672e-008, -1.78813934e-007, -2.98023224e-008, 0.906307817, -0.422618449, -2.23517418e-007, 0.42261821, 0.906307697)
  1607. p11.CanCollide = false
  1608. p11.Locked = true
  1609. p11.FormFactor = Enum.FormFactor.Custom
  1610. p11.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1611. b11 = Instance.new("SpecialMesh", p11)
  1612. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1613. b11.TextureId = ""
  1614. b11.MeshType = Enum.MeshType.FileMesh
  1615. b11.Name = "Mesh"
  1616. b11.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1617. p12 = Instance.new("Part", m3)
  1618. p12.BrickColor = BrickColor.new("Really black")
  1619. p12.Material = Enum.Material.Metal
  1620. p12.Transparency = 1
  1621. p12.Name = "Chain2Torso"
  1622. p12.CFrame = CFrame.new(0.0500000007, 3.35002589, 0.0200020671, -4.37113883e-008, -1, 0, -4.37113883e-008, 1.91068547e-015, -1, 1, -4.37113883e-008, -4.37113883e-008)
  1623. p12.CanCollide = false
  1624. p12.Locked = true
  1625. p12.FormFactor = Enum.FormFactor.Custom
  1626. p12.Size = Vector3.new(0.699999988, 0.300000012, 0.300000012)
  1627. b12 = Instance.new("SpecialMesh", p12)
  1628. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1629. b12.TextureId = ""
  1630. b12.MeshType = Enum.MeshType.FileMesh
  1631. b12.Name = "Mesh"
  1632. b12.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1633. p13 = Instance.new("Part", m3)
  1634. p13.BrickColor = BrickColor.new("Really black")
  1635. p13.Material = Enum.Material.Metal
  1636. p13.CFrame = CFrame.new(-0.700000763, 4.25002289, 0.349998087, -0.606457233, -0.374239564, 0.70153743, -0.641863465, -0.290311694, -0.709739804, 0.469277143, -0.880717754, -0.0641489923)
  1637. p13.CanCollide = false
  1638. p13.Locked = true
  1639. p13.FormFactor = Enum.FormFactor.Custom
  1640. p13.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1641. b13 = Instance.new("SpecialMesh", p13)
  1642. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1643. b13.TextureId = ""
  1644. b13.MeshType = Enum.MeshType.FileMesh
  1645. b13.Name = "Mesh"
  1646. b13.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1647. p14 = Instance.new("Part", m3)
  1648. p14.BrickColor = BrickColor.new("Really black")
  1649. p14.Material = Enum.Material.Metal
  1650. p14.CFrame = CFrame.new(-0.0500002243, 3.50002766, -0.150001988, -0.331867754, 0.457445055, -0.824989557, 0.877285957, -0.171802372, -0.448166817, -0.346746802, -0.87248385, -0.344294399)
  1651. p14.CanCollide = false
  1652. p14.Locked = true
  1653. p14.FormFactor = Enum.FormFactor.Custom
  1654. p14.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1655. b14 = Instance.new("SpecialMesh", p14)
  1656. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1657. b14.TextureId = ""
  1658. b14.MeshType = Enum.MeshType.FileMesh
  1659. b14.Name = "Mesh"
  1660. b14.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1661. p15 = Instance.new("Part", m3)
  1662. p15.BrickColor = BrickColor.new("Really black")
  1663. p15.Material = Enum.Material.Metal
  1664. p15.CFrame = CFrame.new(0.199999034, 3.55002332, -0.150001839, -0.0627828911, -0.802308202, -0.593599737, 0.678633273, -0.470427632, 0.564052343, -0.731789052, -0.367423117, 0.57400763)
  1665. p15.CanCollide = false
  1666. p15.Locked = true
  1667. p15.FormFactor = Enum.FormFactor.Custom
  1668. p15.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1669. b15 = Instance.new("SpecialMesh", p15)
  1670. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1671. b15.TextureId = ""
  1672. b15.MeshType = Enum.MeshType.FileMesh
  1673. b15.Name = "Mesh"
  1674. b15.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1675. p16 = Instance.new("Part", m3)
  1676. p16.BrickColor = BrickColor.new("Really black")
  1677. p16.Material = Enum.Material.Metal
  1678. p16.CFrame = CFrame.new(0.349999189, 3.70002842, -0.150001973, 0.994292557, 0.0709807873, 0.0796526894, -0.0587368309, 0.987431884, -0.146726117, -0.0890666768, 0.141209915, 0.985964835)
  1679. p16.CanCollide = false
  1680. p16.Locked = true
  1681. p16.FormFactor = Enum.FormFactor.Custom
  1682. p16.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1683. b16 = Instance.new("SpecialMesh", p16)
  1684. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1685. b16.TextureId = ""
  1686. b16.MeshType = Enum.MeshType.FileMesh
  1687. b16.Name = "Mesh"
  1688. b16.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1689. p17 = Instance.new("Part", m3)
  1690. p17.BrickColor = BrickColor.new("Really black")
  1691. p17.Material = Enum.Material.Metal
  1692. p17.CFrame = CFrame.new(-0.200000346, 3.70002747, -0.150002211, 0.964791715, 0.0184034109, -0.262370646, -0.0587368906, 0.987431884, -0.146726027, 0.256372869, 0.156970888, 0.953746974)
  1693. p17.CanCollide = false
  1694. p17.Locked = true
  1695. p17.FormFactor = Enum.FormFactor.Custom
  1696. p17.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1697. b17 = Instance.new("SpecialMesh", p17)
  1698. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1699. b17.TextureId = ""
  1700. b17.MeshType = Enum.MeshType.FileMesh
  1701. b17.Name = "Mesh"
  1702. b17.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1703. p18 = Instance.new("Part", m3)
  1704. p18.BrickColor = BrickColor.new("Really black")
  1705. p18.Material = Enum.Material.Metal
  1706. p18.CFrame = CFrame.new(-0.35000062, 3.85002661, -0.150002271, 0.407530367, -0.427938014, 0.806714416, 0.0989350602, 0.898891687, 0.426855773, -0.907816589, -0.0941444039, 0.40866372)
  1707. p18.CanCollide = false
  1708. p18.Locked = true
  1709. p18.FormFactor = Enum.FormFactor.Custom
  1710. p18.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1711. b18 = Instance.new("SpecialMesh", p18)
  1712. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1713. b18.TextureId = ""
  1714. b18.MeshType = Enum.MeshType.FileMesh
  1715. b18.Name = "Mesh"
  1716. b18.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1717. p19 = Instance.new("Part", m3)
  1718. p19.BrickColor = BrickColor.new("Really black")
  1719. p19.Material = Enum.Material.Metal
  1720. p19.CFrame = CFrame.new(0.599999547, 4.25002337, 1.49011612e-008, 0.450589776, 0.596651912, -0.664060116, 0.322663993, 0.584720135, 0.744305372, 0.832379937, -0.549644768, 0.0709509254)
  1721. p19.CanCollide = false
  1722. p19.Locked = true
  1723. p19.FormFactor = Enum.FormFactor.Custom
  1724. p19.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1725. b19 = Instance.new("SpecialMesh", p19)
  1726. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1727. b19.TextureId = ""
  1728. b19.MeshType = Enum.MeshType.FileMesh
  1729. b19.Name = "Mesh"
  1730. b19.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1731. p20 = Instance.new("Part", m3)
  1732. p20.BrickColor = BrickColor.new("Really black")
  1733. p20.Material = Enum.Material.Metal
  1734. p20.CFrame = CFrame.new(0.449999154, 3.90002728, -0.150000244, 0.148452312, 0.508259773, -0.848312676, -0.212012291, 0.85422945, 0.474703223, 0.965925753, 0.109381542, 0.234569833)
  1735. p20.CanCollide = false
  1736. p20.Locked = true
  1737. p20.FormFactor = Enum.FormFactor.Custom
  1738. p20.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1739. b20 = Instance.new("SpecialMesh", p20)
  1740. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1741. b20.TextureId = ""
  1742. b20.MeshType = Enum.MeshType.FileMesh
  1743. b20.Name = "Mesh"
  1744. b20.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1745. p21 = Instance.new("Part", m3)
  1746. p21.BrickColor = BrickColor.new("Really black")
  1747. p21.Material = Enum.Material.Metal
  1748. p21.CFrame = CFrame.new(0.699999869, 4.25002337, 0.200001985, -0.0996009707, 0.981125295, 0.165750414, -0.142243966, -0.178907469, 0.973529041, 0.98480773, 0.0733870864, 0.157378286)
  1749. p21.CanCollide = false
  1750. p21.Locked = true
  1751. p21.FormFactor = Enum.FormFactor.Custom
  1752. p21.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1753. b21 = Instance.new("SpecialMesh", p21)
  1754. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1755. b21.TextureId = ""
  1756. b21.MeshType = Enum.MeshType.FileMesh
  1757. b21.Name = "Mesh"
  1758. b21.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1759. p22 = Instance.new("Part", m3)
  1760. p22.BrickColor = BrickColor.new("Really black")
  1761. p22.Material = Enum.Material.Metal
  1762. p22.CFrame = CFrame.new(0.69999975, 4.25002289, 0.450001955, -0.167731196, 0.167446673, 0.971508265, 0.0449438766, -0.983146012, 0.17721194, 0.984807789, 0.0733873621, 0.157378122)
  1763. p22.CanCollide = false
  1764. p22.Locked = true
  1765. p22.FormFactor = Enum.FormFactor.Custom
  1766. p22.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1767. b22 = Instance.new("SpecialMesh", p22)
  1768. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1769. b22.TextureId = ""
  1770. b22.MeshType = Enum.MeshType.FileMesh
  1771. b22.Name = "Mesh"
  1772. b22.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1773. p23 = Instance.new("Part", m3)
  1774. p23.BrickColor = BrickColor.new("Really black")
  1775. p23.Material = Enum.Material.Metal
  1776. p23.CFrame = CFrame.new(0.699999511, 4.25002289, 0.700001478, 0.0593914539, -0.993999004, 0.0918651819, 0.163175613, -0.0811224878, -0.98325628, 0.984807849, 0.0733875483, 0.157378405)
  1777. p23.CanCollide = false
  1778. p23.Locked = true
  1779. p23.FormFactor = Enum.FormFactor.Custom
  1780. p23.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1781. b23 = Instance.new("SpecialMesh", p23)
  1782. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1783. b23.TextureId = ""
  1784. b23.MeshType = Enum.MeshType.FileMesh
  1785. b23.Name = "Mesh"
  1786. b23.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1787. p24 = Instance.new("Part", m3)
  1788. p24.BrickColor = BrickColor.new("Really black")
  1789. p24.Material = Enum.Material.Metal
  1790. p24.CFrame = CFrame.new(0.699999452, 4.25002289, 0.900001347, -0.197025463, -0.431517303, 0.880326331, 0.133022487, -0.90138948, -0.412070453, 0.971332312, 0.0359149873, 0.234997824)
  1791. p24.CanCollide = false
  1792. p24.Locked = true
  1793. p24.FormFactor = Enum.FormFactor.Custom
  1794. p24.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1795. b24 = Instance.new("SpecialMesh", p24)
  1796. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1797. b24.TextureId = ""
  1798. b24.MeshType = Enum.MeshType.FileMesh
  1799. b24.Name = "Mesh"
  1800. b24.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1801. p25 = Instance.new("Part", m3)
  1802. p25.BrickColor = BrickColor.new("Really black")
  1803. p25.Material = Enum.Material.Metal
  1804. p25.CFrame = CFrame.new(0.599999249, 4.25002289, 1.05000341, -0.793593884, -0.433597952, 0.42685172, 0.426002622, 0.104941569, 0.898615122, -0.434431762, 0.894975305, 0.101432741)
  1805. p25.CanCollide = false
  1806. p25.Locked = true
  1807. p25.FormFactor = Enum.FormFactor.Custom
  1808. p25.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1809. b25 = Instance.new("SpecialMesh", p25)
  1810. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1811. b25.TextureId = ""
  1812. b25.MeshType = Enum.MeshType.FileMesh
  1813. b25.Name = "Mesh"
  1814. b25.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1815. p26 = Instance.new("Part", m3)
  1816. p26.BrickColor = BrickColor.new("Really black")
  1817. p26.Material = Enum.Material.Metal
  1818. p26.CFrame = CFrame.new(0.399999261, 4.25002289, 1.09999716, 0.474074066, -0.73934859, 0.478140384, 0.876810074, 0.445984155, -0.17972827, -0.0803612769, 0.504442811, 0.859697402)
  1819. p26.CanCollide = false
  1820. p26.Locked = true
  1821. p26.FormFactor = Enum.FormFactor.Custom
  1822. p26.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1823. b26 = Instance.new("SpecialMesh", p26)
  1824. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1825. b26.TextureId = ""
  1826. b26.MeshType = Enum.MeshType.FileMesh
  1827. b26.Name = "Mesh"
  1828. b26.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1829. p27 = Instance.new("Part", m3)
  1830. p27.BrickColor = BrickColor.new("Really black")
  1831. p27.Material = Enum.Material.Metal
  1832. p27.CFrame = CFrame.new(0.249999076, 4.25002289, 1.20000076, 0.524626255, -0.838181257, 0.149064019, -0.503709316, -0.446768612, -0.739374638, 0.686326742, 0.31281051, -0.656585932)
  1833. p27.CanCollide = false
  1834. p27.Locked = true
  1835. p27.FormFactor = Enum.FormFactor.Custom
  1836. p27.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1837. b27 = Instance.new("SpecialMesh", p27)
  1838. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1839. b27.TextureId = ""
  1840. b27.MeshType = Enum.MeshType.FileMesh
  1841. b27.Name = "Mesh"
  1842. b27.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1843. p28 = Instance.new("Part", m3)
  1844. p28.BrickColor = BrickColor.new("Really black")
  1845. p28.Material = Enum.Material.Metal
  1846. p28.CFrame = CFrame.new(0.0499990731, 4.25002289, 1.20000088, 0.524626136, -0.838181317, 0.149063885, 0.588431716, 0.230477661, -0.775002301, 0.615236104, 0.494300276, 0.614126861)
  1847. p28.CanCollide = false
  1848. p28.Locked = true
  1849. p28.FormFactor = Enum.FormFactor.Custom
  1850. p28.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1851. b28 = Instance.new("SpecialMesh", p28)
  1852. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1853. b28.TextureId = ""
  1854. b28.MeshType = Enum.MeshType.FileMesh
  1855. b28.Name = "Mesh"
  1856. b28.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1857. p29 = Instance.new("Part", m3)
  1858. p29.BrickColor = BrickColor.new("Really black")
  1859. p29.Material = Enum.Material.Metal
  1860. p29.CFrame = CFrame.new(-0.200000852, 4.25002289, 1.20000088, 0.524626195, -0.838181257, 0.149063647, 0.664180398, 0.512506962, 0.544243872, -0.532571197, -0.186519295, 0.825577736)
  1861. p29.CanCollide = false
  1862. p29.Locked = true
  1863. p29.FormFactor = Enum.FormFactor.Custom
  1864. p29.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1865. b29 = Instance.new("SpecialMesh", p29)
  1866. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1867. b29.TextureId = ""
  1868. b29.MeshType = Enum.MeshType.FileMesh
  1869. b29.Name = "Mesh"
  1870. b29.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1871. p30 = Instance.new("Part", m3)
  1872. p30.BrickColor = BrickColor.new("Really black")
  1873. p30.Material = Enum.Material.Metal
  1874. p30.CFrame = CFrame.new(-0.400000989, 4.25002289, 1.15000105, -0.205189675, -0.942334533, -0.264392197, 0.472657442, 0.141141802, -0.869870245, 0.857025325, -0.303455055, 0.416440606)
  1875. p30.CanCollide = false
  1876. p30.Locked = true
  1877. p30.FormFactor = Enum.FormFactor.Custom
  1878. p30.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1879. b30 = Instance.new("SpecialMesh", p30)
  1880. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1881. b30.TextureId = ""
  1882. b30.MeshType = Enum.MeshType.FileMesh
  1883. b30.Name = "Mesh"
  1884. b30.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1885. p31 = Instance.new("Part", m3)
  1886. p31.BrickColor = BrickColor.new("Really black")
  1887. p31.Material = Enum.Material.Metal
  1888. p31.CFrame = CFrame.new(-0.550001025, 4.25002337, 0.999999702, 0.151335806, -0.651350021, -0.743532896, 0.979139984, 0.201951638, 0.022377044, 0.135582238, -0.731408894, 0.668325186)
  1889. p31.CanCollide = false
  1890. p31.Locked = true
  1891. p31.FormFactor = Enum.FormFactor.Custom
  1892. p31.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1893. b31 = Instance.new("SpecialMesh", p31)
  1894. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1895. b31.TextureId = ""
  1896. b31.MeshType = Enum.MeshType.FileMesh
  1897. b31.Name = "Mesh"
  1898. b31.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1899. p32 = Instance.new("Part", m3)
  1900. p32.BrickColor = BrickColor.new("Really black")
  1901. p32.Material = Enum.Material.Metal
  1902. p32.CFrame = CFrame.new(-0.700000763, 4.25002337, 0.800000489, -0.804778874, -0.593520701, 0.0080409348, 0.142058611, -0.205740049, -0.968240976, 0.576325178, -0.778077364, 0.249890015)
  1903. p32.CanCollide = false
  1904. p32.Locked = true
  1905. p32.FormFactor = Enum.FormFactor.Custom
  1906. p32.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1907. b32 = Instance.new("SpecialMesh", p32)
  1908. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1909. b32.TextureId = ""
  1910. b32.MeshType = Enum.MeshType.FileMesh
  1911. b32.Name = "Mesh"
  1912. b32.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1913. p33 = Instance.new("Part", m3)
  1914. p33.BrickColor = BrickColor.new("Really black")
  1915. p33.Material = Enum.Material.Metal
  1916. p33.CFrame = CFrame.new(-0.700000942, 4.25002289, 0.549999833, -0.526802063, -0.220915288, -0.820777893, 0.708702326, 0.418966174, -0.567634225, 0.469277024, -0.880717933, -0.0641489923)
  1917. p33.CanCollide = false
  1918. p33.Locked = true
  1919. p33.FormFactor = Enum.FormFactor.Custom
  1920. p33.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1921. b33 = Instance.new("SpecialMesh", p33)
  1922. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1923. b33.TextureId = ""
  1924. b33.MeshType = Enum.MeshType.FileMesh
  1925. b33.Name = "Mesh"
  1926. b33.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1927. p34 = Instance.new("Part", m3)
  1928. p34.BrickColor = BrickColor.new("Really black")
  1929. p34.Material = Enum.Material.Metal
  1930. p34.Name = "Connection"
  1931. p34.CFrame = CFrame.new(0.0551848896, 3.35002589, -0.131655902, 0.635109425, -0.765570045, -0.102657467, -0.766416311, -0.641122162, 0.0396047123, -0.0961361453, 0.0535250306, -0.993928015)
  1932. p34.CanCollide = false
  1933. p34.Locked = true
  1934. p34.FormFactor = Enum.FormFactor.Custom
  1935. p34.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1936. b34 = Instance.new("SpecialMesh", p34)
  1937. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1938. b34.TextureId = ""
  1939. b34.MeshType = Enum.MeshType.FileMesh
  1940. b34.Name = "Mesh"
  1941. b34.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1942. p35 = Instance.new("Part", m3)
  1943. p35.BrickColor = BrickColor.new("Really black")
  1944. p35.Material = Enum.Material.Metal
  1945. p35.CFrame = CFrame.new(-0.600001037, 4.25002289, 0.149997264, 0.493824095, 0.604460001, 0.62511301, -0.565569818, -0.322785676, 0.758907318, 0.660506427, -0.728311539, 0.182464883)
  1946. p35.CanCollide = false
  1947. p35.Locked = true
  1948. p35.FormFactor = Enum.FormFactor.Custom
  1949. p35.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1950. b35 = Instance.new("SpecialMesh", p35)
  1951. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1952. b35.TextureId = ""
  1953. b35.MeshType = Enum.MeshType.FileMesh
  1954. b35.Name = "Mesh"
  1955. b35.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1956. p36 = Instance.new("Part", m3)
  1957. p36.BrickColor = BrickColor.new("Really black")
  1958. p36.Material = Enum.Material.Metal
  1959. p36.CFrame = CFrame.new(-0.500000834, 4.2000227, -2.52574682e-006, -0.285961747, 0.418113738, -0.862210572, 0.191904813, 0.906544387, 0.375965416, 0.93882823, -0.0579507053, -0.339474916)
  1960. p36.CanCollide = false
  1961. p36.Locked = true
  1962. p36.FormFactor = Enum.FormFactor.Custom
  1963. p36.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1964. b36 = Instance.new("SpecialMesh", p36)
  1965. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1966. b36.TextureId = ""
  1967. b36.MeshType = Enum.MeshType.FileMesh
  1968. b36.Name = "Mesh"
  1969. b36.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1970. w1 = Instance.new("Weld", p2)
  1971. w1.Name = "Joint"
  1972. w1.Part0 = p2
  1973. w1.C0 = CFrame.new(-0.211238861, -0.0362606049, -0.0810072422, -0.57012105, 0.811055779, -0.130959615, -0.254106343, -0.022495009, 0.966914535, 0.781275749, 0.584536016, 0.218919396)
  1974. w1.Part1 = p18
  1975. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1976. w2 = Instance.new("Weld", p3)
  1977. w2.Name = "Joint"
  1978. w2.Part0 = p3
  1979. w2.C0 = CFrame.new(0, 0, -0.470001936, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1980. w2.Part1 = p1
  1981. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1982. w3 = Instance.new("Weld", p4)
  1983. w3.Name = "Joint"
  1984. w3.Part0 = p4
  1985. w3.C0 = CFrame.new(0, 0.0299999714, -0.900000334, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  1986. w3.Part1 = p1
  1987. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1988. w4 = Instance.new("Weld", p5)
  1989. w4.Name = "Joint"
  1990. w4.Part0 = p5
  1991. w4.C0 = CFrame.new(2.38418579e-007, 0.5, 0.0500030518, -1, -9.67369829e-009, -5.33850759e-008, 4.45892816e-008, -0.707106829, -0.707106769, -3.09086161e-008, -0.707106769, 0.707106829)
  1992. w4.Part1 = p7
  1993. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1994. w5 = Instance.new("Weld", p6)
  1995. w5.Name = "Joint"
  1996. w5.Part0 = p6
  1997. w5.C0 = CFrame.new(0, 0.5, 0.0500030518, 1, -1.28027651e-008, 3.09086197e-008, -1.28027686e-008, 0.707106829, 0.707106769, -3.09086161e-008, -0.707106769, 0.707106829)
  1998. w5.Part1 = p7
  1999. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2000. w6 = Instance.new("Weld", p7)
  2001. w6.Name = "Joint"
  2002. w6.Part0 = p7
  2003. w6.C0 = CFrame.new(-0.400002003, 0.070712328, -0.0707120895, -3.09086197e-008, -7.46200044e-008, -1, -0.707106829, -0.707106769, 7.46200044e-008, -0.707106769, 0.707106829, -3.09086197e-008)
  2004. w6.Part1 = p1
  2005. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2006. w7 = Instance.new("Weld", p8)
  2007. w7.Name = "Joint"
  2008. w7.Part0 = p8
  2009. w7.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, -1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2010. w7.Part1 = p1
  2011. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2012. w8 = Instance.new("Weld", p9)
  2013. w8.Name = "Joint"
  2014. w8.Part0 = p9
  2015. w8.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, 1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2016. w8.Part1 = p1
  2017. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2018. w9 = Instance.new("Weld", p10)
  2019. w9.Name = "Joint"
  2020. w9.Part0 = p10
  2021. w9.C0 = CFrame.new(0, 0.0399997234, 1.04999948, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  2022. w9.Part1 = p1
  2023. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2024. w10 = Instance.new("Weld", p11)
  2025. w10.Name = "Joint"
  2026. w10.Part0 = p11
  2027. w10.C0 = CFrame.new(0.100000024, 0.202390671, -0.0392093658, 0.450589836, 0.596651673, -0.664059937, 0.644212067, 0.297646403, 0.704554796, 0.618028879, -0.745260656, -0.250253737)
  2028. w10.Part1 = p19
  2029. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2030. w11 = Instance.new("Weld", p12)
  2031. w11.Name = "Joint"
  2032. w11.Part0 = p12
  2033. w11.C0 = CFrame.new(0.479997993, 0.0499999784, 0.25, -4.37113883e-008, -4.37113883e-008, 1, -1, 1.91068547e-015, -4.37113883e-008, 0, -1, -4.37113883e-008)
  2034. w11.Part1 = p1
  2035. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2036. w12 = Instance.new("Weld", p13)
  2037. w12.Name = "Joint"
  2038. w12.Part0 = p13
  2039. w12.C0 = CFrame.new(-0.1545012, 0.138720512, 0.0829834938, 0.373496056, -0.501174688, -0.780592561, -0.602336764, 0.50893271, -0.614961803, 0.70547235, 0.699865282, -0.111791633)
  2040. w12.Part1 = p35
  2041. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2042. w13 = Instance.new("Weld", p14)
  2043. w13.Name = "Joint"
  2044. w13.Part0 = p14
  2045. w13.C0 = CFrame.new(-0.172863483, 0.0578804016, -0.0258672237, -0.849803627, -0.326939017, 0.413454711, 0.506076992, -0.286759645, 0.813421786, -0.147377193, 0.900488615, 0.409145683)
  2046. w13.Part1 = p34
  2047. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2048. w14 = Instance.new("Weld", p15)
  2049. w14.Name = "Joint"
  2050. w14.Part0 = p15
  2051. w14.C0 = CFrame.new(0.0923810005, -0.190912724, -0.00442934036, -0.0371075198, 0.56231159, -0.826092422, -0.73737216, -0.573347449, -0.357148677, -0.674466848, 0.595884562, 0.435908347)
  2052. w14.Part1 = p16
  2053. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2054. w15 = Instance.new("Weld", p16)
  2055. w15.Name = "Joint"
  2056. w15.Part0 = p16
  2057. w15.C0 = CFrame.new(0.0876817107, 0.204583645, -0.0213780403, 0.074026458, 0.445441723, -0.892245352, -0.0624118894, 0.895015597, 0.441646636, 0.995301366, 0.022993207, 0.0940556675)
  2058. w15.Part1 = p20
  2059. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2060. w16 = Instance.new("Weld", p17)
  2061. w16.Name = "Joint"
  2062. w16.Part0 = p17
  2063. w16.C0 = CFrame.new(0.156466246, -0.194725513, -0.0100102425, -0.460608691, 0.227749109, -0.85788697, 0.80572325, -0.29817903, -0.51176101, -0.372357011, -0.926941037, -0.0461589098)
  2064. w16.Part1 = p14
  2065. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2066. w17 = Instance.new("Weld", p18)
  2067. w17.Name = "Joint"
  2068. w17.Part0 = p18
  2069. w17.C0 = CFrame.new(0.046289444, -0.199023724, 0.0569794178, 0.154631272, -0.0373091251, -0.987267554, -0.489805043, 0.864940584, -0.109402351, 0.858009458, 0.500485599, 0.115472674)
  2070. w17.Part1 = p17
  2071. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2072. w18 = Instance.new("Weld", p19)
  2073. w18.Name = "Joint"
  2074. w18.Part0 = p19
  2075. w18.C0 = CFrame.new(0.211536884, -0.0502645969, -0.0522158146, 0.728958309, 0.445444137, 0.519806981, -0.683894217, 0.440442294, 0.581635118, 0.0301409438, -0.779480696, 0.625700712)
  2076. w18.Part1 = p21
  2077. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2078. w19 = Instance.new("Weld", p20)
  2079. w19.Name = "Joint"
  2080. w19.Part0 = p20
  2081. w19.C0 = CFrame.new(0.0722160339, 0.164483547, 0.0522456169, 0.148452476, 0.216069669, 0.965026319, 0.508259654, 0.820421398, -0.261879444, -0.848312438, 0.529360592, 0.0119740963)
  2082. w19.Part1 = p11
  2083. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2084. w20 = Instance.new("Weld", p21)
  2085. w20.Name = "Joint"
  2086. w20.Part0 = p21
  2087. w20.C0 = CFrame.new(0.246201992, 0.0183468163, 0.0393443108, 0.980159461, 0.195441127, 0.0330170989, -0.100333519, 0.345563769, 0.933016002, 0.170940176, -0.917817175, 0.358316928)
  2088. w20.Part1 = p22
  2089. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2090. w21 = Instance.new("Weld", p22)
  2091. w21.Name = "Joint"
  2092. w21.Part0 = p22
  2093. w21.C0 = CFrame.new(0.246201515, 0.0183467865, 0.0393443108, 0.96721822, 0.235350817, 0.0953874439, -0.0782081187, -0.0813006833, 0.993616521, 0.241603509, -0.968504071, -0.060229145)
  2094. w21.Part1 = p23
  2095. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2096. w22 = Instance.new("Weld", p23)
  2097. w22.Name = "Joint"
  2098. w22.Part0 = p23
  2099. w22.C0 = CFrame.new(0.196961403, 0.014677465, 0.031475544, 0.966579735, -0.137344033, 0.21647194, 0.256335169, 0.504686236, -0.824368834, 0.0039717555, 0.852307677, 0.523025632)
  2100. w22.Part1 = p24
  2101. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2102. w23 = Instance.new("Weld", p24)
  2103. w23.Name = "Joint"
  2104. w23.Part0 = p24
  2105. w23.C0 = CFrame.new(0.16540432, 0.0485391617, -0.0527825356, -0.208951756, 0.968707323, 0.133960381, -0.0571475253, 0.124654606, -0.990553021, -0.976254702, -0.214633241, 0.0293123852)
  2106. w23.Part1 = p25
  2107. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2108. w24 = Instance.new("Weld", p25)
  2109. w24.Name = "Joint"
  2110. w24.Part0 = p25
  2111. w24.C0 = CFrame.new(0.136999726, 0.131462574, -0.0802993774, 0.0322127938, 0.557586372, -0.829493642, -0.185464859, 0.81884563, 0.543226421, 0.982122838, 0.136343077, 0.129789978)
  2112. w24.Part1 = p26
  2113. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2114. w25 = Instance.new("Weld", p26)
  2115. w25.Name = "Joint"
  2116. w25.Part0 = p26
  2117. w25.C0 = CFrame.new(-0.0791475773, 0.161348343, 0.014251709, -0.2480997, -0.814228892, -0.524859786, -0.266315132, 0.578250885, -0.771169424, 0.931409001, -0.0515488982, -0.360305429)
  2118. w25.Part1 = p27
  2119. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2120. w26 = Instance.new("Weld", p27)
  2121. w26.Name = "Joint"
  2122. w26.Part0 = p27
  2123. w26.C0 = CFrame.new(-0.104925156, 0.167636156, -0.0298128128, 0.401087224, -0.216573805, 0.890070021, -0.510172248, 0.754199564, 0.413409412, -0.760824084, -0.619902253, 0.192009777)
  2124. w26.Part1 = p28
  2125. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2126. w27 = Instance.new("Weld", p28)
  2127. w27.Name = "Joint"
  2128. w27.Part0 = p28
  2129. w27.C0 = CFrame.new(-0.131156445, 0.209545135, -0.037266016, 0.338400394, -0.252909899, 0.906378388, -0.549903035, 0.728472173, 0.408576787, -0.763604522, -0.636682749, 0.10743928)
  2130. w27.Part1 = p29
  2131. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2132. w28 = Instance.new("Weld", p29)
  2133. w28.Name = "Joint"
  2134. w28.Part0 = p29
  2135. w28.C0 = CFrame.new(-0.0782968998, 0.176962137, -0.0710916519, -0.250144869, -0.239018306, -0.938241899, 0.254374206, 0.918783069, -0.301879942, 0.934195518, -0.314178288, -0.169028759)
  2136. w28.Part1 = p30
  2137. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2138. w29 = Instance.new("Weld", p30)
  2139. w29.Name = "Joint"
  2140. w29.Part0 = p30
  2141. w29.C0 = CFrame.new(-0.097776413, 0.186868906, -0.022808075, 0.547942579, -0.39773193, 0.735913277, -0.0455548018, 0.864242792, 0.501007974, -0.835274637, -0.30804801, 0.455436885)
  2142. w29.Part1 = p31
  2143. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2144. w30 = Instance.new("Weld", p31)
  2145. w30.Name = "Joint"
  2146. w30.Part0 = p31
  2147. w30.C0 = CFrame.new(-0.0498166084, 0.243983507, -0.0221347809, 0.0954426825, -0.396762908, -0.912945747, 0.131352007, 0.914132595, -0.38354671, 0.986730695, -0.0833105743, 0.139362901)
  2148. w30.Part1 = p32
  2149. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2150. w31 = Instance.new("Weld", p32)
  2151. w31.Name = "Joint"
  2152. w31.Part0 = p32
  2153. w31.C0 = CFrame.new(-0.144081593, 0.194519997, -0.0624723434, 0.795092285, -0.270274341, 0.542936563, -0.198274553, 0.730186164, 0.653846622, -0.573162735, -0.627518892, 0.526976764)
  2154. w31.Part1 = p33
  2155. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2156. w32 = Instance.new("Weld", p33)
  2157. w32.Name = "Joint"
  2158. w32.Part0 = p33
  2159. w32.C0 = CFrame.new(-0.0938563347, 0.176145077, 0.0128297806, 0.0848137587, -0.421895206, -0.902668893, -0.548244178, 0.736708403, -0.39583993, 0.832006574, 0.528455555, -0.168818489)
  2160. w32.Part1 = p13
  2161. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2162. w33 = Instance.new("Weld", p34)
  2163. w33.Name = "Joint"
  2164. w33.Part0 = p34
  2165. w33.C0 = CFrame.new(-0.0178728104, 0.0120868683, -0.150204837, -0.0961361453, -0.635109425, 0.766416311, 0.0535250939, 0.765570045, 0.641122162, -0.993928015, 0.102657512, -0.0396046676)
  2166. w33.Part1 = p12
  2167. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2168. w34 = Instance.new("Weld", p35)
  2169. w34.Name = "Joint"
  2170. w34.Part0 = p35
  2171. w34.C0 = CFrame.new(-0.0214147568, 0.185832024, -0.00280380249, 0.370351821, -0.344516218, -0.862640202, -0.918555975, 0.00231964141, -0.395284295, 0.138182849, 0.938777506, -0.315598398)
  2172. w34.Part1 = p36
  2173. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2174. w35 = Instance.new("Weld", p36)
  2175. w35.Name = "Joint"
  2176. w35.Part0 = p36
  2177. w35.C0 = CFrame.new(-0.136966705, -0.109280109, -0.0655572414, 0.678235054, 0.463834167, -0.569960475, 0.250202835, 0.583515286, 0.772598565, 0.690938354, -0.666609228, 0.279707849)
  2178. w35.Part1 = p2
  2179. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2180. m3.Parent = torso
  2181. m3:MakeJoints()
  2182. ----------------------------------------------------
  2183. local cor3 = Instance.new("Part", torso.Torso)
  2184. cor3.Name = "Thingy"
  2185. cor3.Locked = true
  2186. cor3.BottomSurface = 0
  2187. cor3.CanCollide = false
  2188. cor3.Size = Vector3.new(1, 1, 1)
  2189. cor3.Transparency = 1
  2190. cor3.TopSurface = 0
  2191. corw3 = Instance.new("Weld", cor3)
  2192. corw3.Part0 = torso
  2193. corw3.Part1 = cor3
  2194. corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2195. corw3.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2196. weld3 = Instance.new("Weld", torso.Torso)
  2197. weld3.Part0 = cor3
  2198. weld3.Part1 = torso.Torso.TorsoPlate
  2199. weld3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2200. --Left Leg
  2201. m4 = Instance.new("Model")
  2202. m4.Name = "LeftLeg"
  2203. p1 = Instance.new("Part", m4)
  2204. p1.BrickColor = BrickColor.new("Really black")
  2205. p1.Material = Enum.Material.Metal
  2206. p1.Name = "LeftLegPlate"
  2207. p1.CFrame = CFrame.new(-1.5, 4.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2208. p1.Anchored = false
  2209. p1.CanCollide = false
  2210. p1.FormFactor = Enum.FormFactor.Custom
  2211. p1.Size = Vector3.new(1, 2, 1)
  2212. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2213. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2214. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2216. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2217. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2218. b1 = Instance.new("SpecialMesh", p1)
  2219. b1.MeshType = Enum.MeshType.Brick
  2220. b1.Name = "Mesh"
  2221. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2222. p2 = Instance.new("Part", m4)
  2223. p2.BrickColor = BrickColor.new("Really black")
  2224. p2.Material = Enum.Material.Metal
  2225. p2.CFrame = CFrame.new(-2.0999999, 5.44442606, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2226. p2.Anchored = false
  2227. p2.CanCollide = false
  2228. p2.FormFactor = Enum.FormFactor.Custom
  2229. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2230. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2231. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2232. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2236. b2 = Instance.new("SpecialMesh", p2)
  2237. b2.MeshType = Enum.MeshType.Brick
  2238. b2.Name = "Mesh"
  2239. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2240. p3 = Instance.new("Part", m4)
  2241. p3.BrickColor = BrickColor.new("Really black")
  2242. p3.Material = Enum.Material.Metal
  2243. p3.CFrame = CFrame.new(-2.0999999, 5.04442501, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2244. p3.Anchored = false
  2245. p3.CanCollide = false
  2246. p3.FormFactor = Enum.FormFactor.Custom
  2247. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2248. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2249. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2250. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2251. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2252. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2253. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2254. b3 = Instance.new("SpecialMesh", p3)
  2255. b3.MeshType = Enum.MeshType.Brick
  2256. b3.Name = "Mesh"
  2257. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2258. p4 = Instance.new("Part", m4)
  2259. p4.BrickColor = BrickColor.new("Black")
  2260. p4.Material = Enum.Material.Metal
  2261. p4.CFrame = CFrame.new(-1.5, 4.74442291, -7.02999783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2262. p4.Anchored = false
  2263. p4.CanCollide = false
  2264. p4.FormFactor = Enum.FormFactor.Custom
  2265. p4.Size = Vector3.new(1, 2, 0.200000018)
  2266. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2267. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2268. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2269. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2270. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2271. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2272. b4 = Instance.new("SpecialMesh", p4)
  2273. b4.MeshType = Enum.MeshType.Brick
  2274. b4.Name = "Mesh"
  2275. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2276. p5 = Instance.new("Part", m4)
  2277. p5.BrickColor = BrickColor.new("Black")
  2278. p5.Material = Enum.Material.Metal
  2279. p5.CFrame = CFrame.new(-2, 4.74442291, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2280. p5.Anchored = false
  2281. p5.CanCollide = false
  2282. p5.FormFactor = Enum.FormFactor.Custom
  2283. p5.Size = Vector3.new(1, 2, 0.200000018)
  2284. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2285. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2286. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2287. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2288. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2289. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2290. b5 = Instance.new("SpecialMesh", p5)
  2291. b5.MeshType = Enum.MeshType.Brick
  2292. b5.Name = "Mesh"
  2293. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2294. p6 = Instance.new("Part", m4)
  2295. p6.BrickColor = BrickColor.new("Black")
  2296. p6.Material = Enum.Material.Metal
  2297. p6.CFrame = CFrame.new(-1.50999999, 3.74442887, -7.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2298. p6.Anchored = false
  2299. p6.CanCollide = false
  2300. p6.FormFactor = Enum.FormFactor.Custom
  2301. p6.Size = Vector3.new(1, 0.200000048, 0.980000019)
  2302. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2303. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2304. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2305. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2306. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2307. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2308. b6 = Instance.new("SpecialMesh", p6)
  2309. b6.MeshType = Enum.MeshType.Brick
  2310. b6.Name = "Mesh"
  2311. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2312. p7 = Instance.new("Part", m4)
  2313. p7.BrickColor = BrickColor.new("Black")
  2314. p7.Material = Enum.Material.Metal
  2315. p7.CFrame = CFrame.new(-1.5, 5.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2316. p7.Anchored = false
  2317. p7.CanCollide = false
  2318. p7.FormFactor = Enum.FormFactor.Custom
  2319. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2320. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2321. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2322. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2324. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2325. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2326. b7 = Instance.new("SpecialMesh", p7)
  2327. b7.MeshType = Enum.MeshType.Brick
  2328. b7.Name = "Mesh"
  2329. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2330. w1 = Instance.new("Weld", p2)
  2331. w1.Name = "Joint"
  2332. w1.Part0 = p2
  2333. w1.C0 = CFrame.new(0, -0.40000093, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2334. w1.Part1 = p3
  2335. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2336. w2 = Instance.new("Weld", p3)
  2337. w2.Name = "Joint"
  2338. w2.Part0 = p3
  2339. w2.C0 = CFrame.new(0.0999999046, -0.300002098, 0.0200009346, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2340. w2.Part1 = p5
  2341. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2342. w3 = Instance.new("Weld", p4)
  2343. w3.Name = "Joint"
  2344. w3.Part0 = p4
  2345. w3.C0 = CFrame.new(0, 0, -0.470002174, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2346. w3.Part1 = p1
  2347. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2348. w4 = Instance.new("Weld", p5)
  2349. w4.Name = "Joint"
  2350. w4.Part0 = p5
  2351. w4.C0 = CFrame.new(-0.0200009346, 0, -0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2352. w4.Part1 = p1
  2353. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2354. w5 = Instance.new("Weld", p6)
  2355. w5.Name = "Joint"
  2356. w5.Part0 = p6
  2357. w5.C0 = CFrame.new(0, 0.99999404, -0.00999999046, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2358. w5.Part1 = p1
  2359. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2360. w6 = Instance.new("Weld", p7)
  2361. w6.Name = "Joint"
  2362. w6.Part0 = p7
  2363. w6.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2364. w6.Part1 = p1
  2365. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2366. m4.Parent = lleg
  2367. m4:MakeJoints()
  2368. ----------------------------------------------------
  2369. local cor4 = Instance.new("Part", lleg.LeftLeg)
  2370. cor4.Name = "Thingy"
  2371. cor4.Locked = true
  2372. cor4.BottomSurface = 0
  2373. cor4.CanCollide = false
  2374. cor4.Size = Vector3.new(1, 1, 1)
  2375. cor4.Transparency = 1
  2376. cor4.TopSurface = 0
  2377. corw4 = Instance.new("Weld", cor4)
  2378. corw4.Part0 = lleg
  2379. corw4.Part1 = cor4
  2380. corw4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2381. corw4.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2382. weld4 = Instance.new("Weld", lleg.LeftLeg)
  2383. weld4.Part0 = cor4
  2384. weld4.Part1 = lleg.LeftLeg.LeftLegPlate
  2385. weld4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2386. --Right Leg
  2387. m5 = Instance.new("Model")
  2388. m5.Name = "RightLeg"
  2389. p1 = Instance.new("Part", m5)
  2390. p1.BrickColor = BrickColor.new("Really black")
  2391. p1.Material = Enum.Material.Metal
  2392. p1.Name = "RightLegPlate"
  2393. p1.CFrame = CFrame.new(1.5, 4.74441528, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2394. p1.Anchored = false
  2395. p1.CanCollide = false
  2396. p1.FormFactor = Enum.FormFactor.Custom
  2397. p1.Size = Vector3.new(1, 2, 1)
  2398. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2399. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2400. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2401. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2402. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2403. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2404. b1 = Instance.new("SpecialMesh", p1)
  2405. b1.MeshType = Enum.MeshType.Brick
  2406. b1.Name = "Mesh"
  2407. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2408. p2 = Instance.new("Part", m5)
  2409. p2.BrickColor = BrickColor.new("Really black")
  2410. p2.Material = Enum.Material.Metal
  2411. p2.CFrame = CFrame.new(2.05000019, 5.44441557, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2412. p2.Anchored = false
  2413. p2.CanCollide = false
  2414. p2.FormFactor = Enum.FormFactor.Custom
  2415. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2416. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2417. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2418. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2419. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2420. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2421. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2422. b2 = Instance.new("SpecialMesh", p2)
  2423. b2.MeshType = Enum.MeshType.Brick
  2424. b2.Name = "Mesh"
  2425. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2426. p3 = Instance.new("Part", m5)
  2427. p3.BrickColor = BrickColor.new("Really black")
  2428. p3.Material = Enum.Material.Metal
  2429. p3.CFrame = CFrame.new(2.05000019, 5.04441547, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2430. p3.Anchored = false
  2431. p3.CanCollide = false
  2432. p3.FormFactor = Enum.FormFactor.Custom
  2433. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2434. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2435. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2436. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2437. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2438. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2439. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2440. b3 = Instance.new("SpecialMesh", p3)
  2441. b3.MeshType = Enum.MeshType.Brick
  2442. b3.Name = "Mesh"
  2443. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2444. p4 = Instance.new("Part", m5)
  2445. p4.BrickColor = BrickColor.new("Black")
  2446. p4.Material = Enum.Material.Metal
  2447. p4.CFrame = CFrame.new(1.5, 4.74441528, -7.0299983, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2448. p4.Anchored = false
  2449. p4.CanCollide = false
  2450. p4.FormFactor = Enum.FormFactor.Custom
  2451. p4.Size = Vector3.new(1, 2, 0.200000018)
  2452. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2453. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2454. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2455. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2456. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2457. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2458. b4 = Instance.new("SpecialMesh", p4)
  2459. b4.MeshType = Enum.MeshType.Brick
  2460. b4.Name = "Mesh"
  2461. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2462. p5 = Instance.new("Part", m5)
  2463. p5.BrickColor = BrickColor.new("Black")
  2464. p5.Material = Enum.Material.Metal
  2465. p5.CFrame = CFrame.new(2, 4.74441528, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2466. p5.Anchored = false
  2467. p5.CanCollide = false
  2468. p5.FormFactor = Enum.FormFactor.Custom
  2469. p5.Size = Vector3.new(1, 2, 0.200000018)
  2470. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2471. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2472. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2473. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2474. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2475. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2476. b5 = Instance.new("SpecialMesh", p5)
  2477. b5.MeshType = Enum.MeshType.Brick
  2478. b5.Name = "Mesh"
  2479. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2480. p6 = Instance.new("Part", m5)
  2481. p6.BrickColor = BrickColor.new("Black")
  2482. p6.Material = Enum.Material.Metal
  2483. p6.CFrame = CFrame.new(1.505, 3.74442124, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2484. p6.Anchored = false
  2485. p6.CanCollide = false
  2486. p6.FormFactor = Enum.FormFactor.Custom
  2487. p6.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2488. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2489. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2490. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2491. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2492. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2493. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2494. b6 = Instance.new("SpecialMesh", p6)
  2495. b6.MeshType = Enum.MeshType.Brick
  2496. b6.Name = "Mesh"
  2497. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2498. p7 = Instance.new("Part", m5)
  2499. p7.BrickColor = BrickColor.new("Black")
  2500. p7.Material = Enum.Material.Metal
  2501. p7.CFrame = CFrame.new(1.505, 5.69442129, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2502. p7.Anchored = false
  2503. p7.CanCollide = false
  2504. p7.FormFactor = Enum.FormFactor.Custom
  2505. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2506. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2507. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2508. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2509. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2510. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2511. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2512. b7 = Instance.new("SpecialMesh", p7)
  2513. b7.MeshType = Enum.MeshType.Brick
  2514. b7.Name = "Mesh"
  2515. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2516. w1 = Instance.new("Weld", p2)
  2517. w1.Name = "Joint"
  2518. w1.Part0 = p2
  2519. w1.C0 = CFrame.new(0, -0.400000095, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2520. w1.Part1 = p3
  2521. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2522. w2 = Instance.new("Weld", p3)
  2523. w2.Name = "Joint"
  2524. w2.Part0 = p3
  2525. w2.C0 = CFrame.new(-0.0500001907, -0.300000191, 0.0200004578, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2526. w2.Part1 = p5
  2527. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2528. w3 = Instance.new("Weld", p4)
  2529. w3.Name = "Joint"
  2530. w3.Part0 = p4
  2531. w3.C0 = CFrame.new(0, 0, -0.470001221, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2532. w3.Part1 = p1
  2533. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2534. w4 = Instance.new("Weld", p5)
  2535. w4.Name = "Joint"
  2536. w4.Part0 = p5
  2537. w4.C0 = CFrame.new(-0.0200004578, 0, 0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2538. w4.Part1 = p1
  2539. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2540. w5 = Instance.new("Weld", p6)
  2541. w5.Name = "Joint"
  2542. w5.Part0 = p6
  2543. w5.C0 = CFrame.new(0, 0.99999404, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2544. w5.Part1 = p1
  2545. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2546. w6 = Instance.new("Weld", p7)
  2547. w6.Name = "Joint"
  2548. w6.Part0 = p7
  2549. w6.C0 = CFrame.new(0, -0.950006008, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2550. w6.Part1 = p1
  2551. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2552. m5.Parent = rleg
  2553. m5:MakeJoints()
  2554. ----------------------------------------------------
  2555. local cor5 = Instance.new("Part", rleg.RightLeg)
  2556. cor5.Name = "Thingy"
  2557. cor5.Locked = true
  2558. cor5.BottomSurface = 0
  2559. cor5.CanCollide = false
  2560. cor5.Size = Vector3.new(1, 1, 1)
  2561. cor5.Transparency = 1
  2562. cor5.TopSurface = 0
  2563. corw5 = Instance.new("Weld", cor5)
  2564. corw5.Part0 = rleg
  2565. corw5.Part1 = cor5
  2566. corw5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2567. corw5.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2568. wld5 = Instance.new("Weld", rleg.RightLeg)
  2569. wld5.Part0 = cor5
  2570. wld5.Part1 = rleg.RightLeg.RightLegPlate
  2571. wld5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2572. --Cape
  2573. m6 = Instance.new("Model")
  2574. m6.Name = "Cloak"
  2575. p1 = Instance.new("WedgePart", m6)
  2576. p1.BrickColor = BrickColor.new("Lime green")
  2577. p1.Material = Enum.Material.SmoothPlastic
  2578. p1.Name = "Wedge"
  2579. p1.CFrame = CFrame.new(0.959278464, 4.40979004, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2580. p1.CanCollide = false
  2581. p1.Locked = true
  2582. p1.FormFactor = Enum.FormFactor.Custom
  2583. p1.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2584. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2585. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2586. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2588. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2590. b1 = Instance.new("SpecialMesh", p1)
  2591. b1.MeshType = Enum.MeshType.Wedge
  2592. b1.Name = "Mesh"
  2593. b1.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2594. p2 = Instance.new("WedgePart", m6)
  2595. p2.BrickColor = BrickColor.new("Black")
  2596. p2.Material = Enum.Material.SmoothPlastic
  2597. p2.Name = "Wedge"
  2598. p2.CFrame = CFrame.new(-1.27945054, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  2599. p2.CanCollide = false
  2600. p2.Locked = true
  2601. p2.FormFactor = Enum.FormFactor.Custom
  2602. p2.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2603. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2604. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2606. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2607. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2608. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2609. b2 = Instance.new("SpecialMesh", p2)
  2610. b2.MeshType = Enum.MeshType.Wedge
  2611. b2.Name = "Mesh"
  2612. b2.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2613. p3 = Instance.new("Part", m6)
  2614. p3.BrickColor = BrickColor.new("Black")
  2615. p3.Material = Enum.Material.SmoothPlastic
  2616. p3.Name = "CapeLevel2"
  2617. p3.CFrame = CFrame.new(-0.300008506, 3.78014231, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2618. p3.CanCollide = false
  2619. p3.Locked = true
  2620. p3.FormFactor = Enum.FormFactor.Custom
  2621. p3.Size = Vector3.new(2.09881067, 0.559682727, 0.232357636)
  2622. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. b3 = Instance.new("BlockMesh", p3)
  2629. b3.Name = "Mesh"
  2630. b3.Scale = Vector3.new(1, 1, 0.602178097)
  2631. p4 = Instance.new("Part", m6)
  2632. p4.BrickColor = BrickColor.new("Black")
  2633. p4.Material = Enum.Material.SmoothPlastic
  2634. p4.CFrame = CFrame.new(-1.8391341, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2635. p4.CanCollide = false
  2636. p4.Locked = true
  2637. p4.FormFactor = Enum.FormFactor.Custom
  2638. p4.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2639. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2640. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2641. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2642. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2643. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. b4 = Instance.new("BlockMesh", p4)
  2646. b4.Name = "Mesh"
  2647. b4.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2648. p5 = Instance.new("Part", m6)
  2649. p5.BrickColor = BrickColor.new("Black")
  2650. p5.Material = Enum.Material.SmoothPlastic
  2651. p5.CFrame = CFrame.new(-1.69921267, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2652. p5.CanCollide = false
  2653. p5.Locked = true
  2654. p5.FormFactor = Enum.FormFactor.Custom
  2655. p5.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2656. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2657. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2658. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2659. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2660. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2661. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2662. b5 = Instance.new("BlockMesh", p5)
  2663. b5.Name = "Mesh"
  2664. b5.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2665. p6 = Instance.new("Part", m6)
  2666. p6.BrickColor = BrickColor.new("Black")
  2667. p6.Material = Enum.Material.SmoothPlastic
  2668. p6.Name = "CapeLevel1"
  2669. p6.CFrame = CFrame.new(-0.300008506, 4.6896286, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2670. p6.CanCollide = false
  2671. p6.Locked = true
  2672. p6.FormFactor = Enum.FormFactor.Custom
  2673. p6.Size = Vector3.new(1.25928628, 0.232357651, 0.232357636)
  2674. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2675. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2676. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2677. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2678. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2679. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2680. b6 = Instance.new("BlockMesh", p6)
  2681. b6.Name = "Mesh"
  2682. b6.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2683. p7 = Instance.new("Part", m6)
  2684. p7.BrickColor = BrickColor.new("Black")
  2685. p7.Material = Enum.Material.SmoothPlastic
  2686. p7.CFrame = CFrame.new(1.23912418, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2687. p7.CanCollide = false
  2688. p7.Locked = true
  2689. p7.FormFactor = Enum.FormFactor.Custom
  2690. p7.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2691. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2692. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2693. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2694. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2695. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2696. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2697. b7 = Instance.new("BlockMesh", p7)
  2698. b7.Name = "Mesh"
  2699. b7.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2700. p8 = Instance.new("Part", m6)
  2701. p8.BrickColor = BrickColor.new("Black")
  2702. p8.Material = Enum.Material.SmoothPlastic
  2703. p8.CFrame = CFrame.new(0.539517641, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2704. p8.CanCollide = false
  2705. p8.Locked = true
  2706. p8.FormFactor = Enum.FormFactor.Custom
  2707. p8.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2708. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2709. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2710. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2711. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2712. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2713. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2714. b8 = Instance.new("BlockMesh", p8)
  2715. b8.Name = "Mesh"
  2716. b8.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2717. p9 = Instance.new("Part", m6)
  2718. p9.BrickColor = BrickColor.new("Black")
  2719. p9.Material = Enum.Material.SmoothPlastic
  2720. p9.CFrame = CFrame.new(-0.300009966, 2.03112936, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2721. p9.CanCollide = false
  2722. p9.Locked = true
  2723. p9.FormFactor = Enum.FormFactor.Custom
  2724. p9.Size = Vector3.new(0.419762105, 0.419762105, 0.232357636)
  2725. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2726. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2727. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2728. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2729. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2730. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2731. b9 = Instance.new("BlockMesh", p9)
  2732. b9.Name = "Mesh"
  2733. b9.Scale = Vector3.new(1, 1, 0.602178097)
  2734. p10 = Instance.new("Part", m6)
  2735. p10.BrickColor = BrickColor.new("Black")
  2736. p10.Material = Enum.Material.SmoothPlastic
  2737. p10.CFrame = CFrame.new(1.09920263, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2738. p10.CanCollide = false
  2739. p10.Locked = true
  2740. p10.FormFactor = Enum.FormFactor.Custom
  2741. p10.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2742. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2743. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2744. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2745. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2746. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2747. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2748. b10 = Instance.new("BlockMesh", p10)
  2749. b10.Name = "Mesh"
  2750. b10.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2751. p11 = Instance.new("Part", m6)
  2752. p11.BrickColor = BrickColor.new("Black")
  2753. p11.Material = Enum.Material.SmoothPlastic
  2754. p11.CFrame = CFrame.new(-1.13953161, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2755. p11.CanCollide = false
  2756. p11.Locked = true
  2757. p11.FormFactor = Enum.FormFactor.Custom
  2758. p11.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2759. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2760. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2763. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2764. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2765. b11 = Instance.new("BlockMesh", p11)
  2766. b11.Name = "Mesh"
  2767. b11.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2768. p12 = Instance.new("Part", m6)
  2769. p12.BrickColor = BrickColor.new("Black")
  2770. p12.Material = Enum.Material.SmoothPlastic
  2771. p12.CFrame = CFrame.new(-1.6992135, 3.29041815, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2772. p12.CanCollide = false
  2773. p12.Locked = true
  2774. p12.FormFactor = Enum.FormFactor.Custom
  2775. p12.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2776. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2777. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2779. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2780. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2781. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2782. b12 = Instance.new("BlockMesh", p12)
  2783. b12.Name = "Mesh"
  2784. b12.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2785. p13 = Instance.new("Part", m6)
  2786. p13.BrickColor = BrickColor.new("Black")
  2787. p13.Material = Enum.Material.SmoothPlastic
  2788. p13.Name = "BottomLeftFlap"
  2789. p13.CFrame = CFrame.new(-1.13953161, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2790. p13.CanCollide = false
  2791. p13.Locked = true
  2792. p13.FormFactor = Enum.FormFactor.Custom
  2793. p13.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  2794. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2795. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2797. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2798. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2799. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2800. b13 = Instance.new("BlockMesh", p13)
  2801. b13.Name = "Mesh"
  2802. b13.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2803. p14 = Instance.new("Part", m6)
  2804. p14.BrickColor = BrickColor.new("Black")
  2805. p14.Material = Enum.Material.SmoothPlastic
  2806. p14.Transparency = 1
  2807. p14.Name = "Rotater"
  2808. p14.CFrame = CFrame.new(-0.300001532, 4.82954979, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2809. p14.CanCollide = false
  2810. p14.Locked = true
  2811. p14.FormFactor = Enum.FormFactor.Custom
  2812. p14.Size = Vector3.new(1.25928617, 0.232357651, 0.232357636)
  2813. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2814. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2815. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2816. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2817. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2818. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2819. b14 = Instance.new("BlockMesh", p14)
  2820. b14.Name = "Mesh"
  2821. b14.Scale = Vector3.new(1, 0.632287025, 0.632287025)
  2822. p15 = Instance.new("Part", m6)
  2823. p15.BrickColor = BrickColor.new("Black")
  2824. p15.Material = Enum.Material.SmoothPlastic
  2825. p15.CFrame = CFrame.new(-1.41937125, 4.40979004, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2826. p15.CanCollide = false
  2827. p15.Locked = true
  2828. p15.FormFactor = Enum.FormFactor.Custom
  2829. p15.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2830. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2831. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2832. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2833. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2834. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2835. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2836. b15 = Instance.new("BlockMesh", p15)
  2837. b15.Name = "Mesh"
  2838. b15.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2839. p16 = Instance.new("Part", m6)
  2840. p16.BrickColor = BrickColor.new("Black")
  2841. p16.Material = Enum.Material.SmoothPlastic
  2842. p16.Name = "BottomCenterFlap"
  2843. p16.CFrame = CFrame.new(-0.300009966, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2844. p16.CanCollide = false
  2845. p16.Locked = true
  2846. p16.FormFactor = Enum.FormFactor.Custom
  2847. p16.Size = Vector3.new(0.699603498, 0.232357651, 0.232357636)
  2848. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2849. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2850. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2851. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2852. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2853. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2854. b16 = Instance.new("BlockMesh", p16)
  2855. b16.Name = "Mesh"
  2856. b16.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2857. p17 = Instance.new("Part", m6)
  2858. p17.BrickColor = BrickColor.new("Black")
  2859. p17.Material = Enum.Material.SmoothPlastic
  2860. p17.CFrame = CFrame.new(-1.27945054, 4.26986647, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2861. p17.CanCollide = false
  2862. p17.Locked = true
  2863. p17.FormFactor = Enum.FormFactor.Custom
  2864. p17.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2865. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2866. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2867. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2868. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2869. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2870. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2871. b17 = Instance.new("BlockMesh", p17)
  2872. b17.Name = "Mesh"
  2873. b17.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2874. p18 = Instance.new("Part", m6)
  2875. p18.BrickColor = BrickColor.new("Black")
  2876. p18.Material = Enum.Material.SmoothPlastic
  2877. p18.CFrame = CFrame.new(0.679436207, 4.26986647, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2878. p18.CanCollide = false
  2879. p18.Locked = true
  2880. p18.FormFactor = Enum.FormFactor.Custom
  2881. p18.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2882. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2883. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2884. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2886. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2887. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2888. b18 = Instance.new("BlockMesh", p18)
  2889. b18.Name = "Mesh"
  2890. b18.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2891. p19 = Instance.new("WedgePart", m6)
  2892. p19.BrickColor = BrickColor.new("Lime green")
  2893. p19.Name = "Wedge"
  2894. p19.CFrame = CFrame.new(-0.265017539, 1.47144794, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  2895. p19.CanCollide = false
  2896. p19.Locked = true
  2897. p19.FormFactor = Enum.FormFactor.Custom
  2898. p19.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2899. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2900. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2901. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2902. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2903. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2904. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2905. b19 = Instance.new("SpecialMesh", p19)
  2906. b19.MeshType = Enum.MeshType.Wedge
  2907. b19.Name = "Mesh"
  2908. b19.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  2909. p20 = Instance.new("Part", m6)
  2910. p20.BrickColor = BrickColor.new("Black")
  2911. p20.Material = Enum.Material.SmoothPlastic
  2912. p20.CFrame = CFrame.new(1.09919691, 3.29041815, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2913. p20.CanCollide = false
  2914. p20.Locked = true
  2915. p20.FormFactor = Enum.FormFactor.Custom
  2916. p20.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2917. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2918. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2919. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2920. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2921. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2922. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2923. b20 = Instance.new("BlockMesh", p20)
  2924. b20.Name = "Mesh"
  2925. b20.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2926. p21 = Instance.new("Part", m6)
  2927. p21.BrickColor = BrickColor.new("Black")
  2928. p21.Material = Enum.Material.SmoothPlastic
  2929. p21.CFrame = CFrame.new(0.959275484, 3.1504972, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2930. p21.CanCollide = false
  2931. p21.Locked = true
  2932. p21.FormFactor = Enum.FormFactor.Custom
  2933. p21.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2934. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2935. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2936. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2937. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2938. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2939. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2940. b21 = Instance.new("BlockMesh", p21)
  2941. b21.Name = "Mesh"
  2942. b21.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2943. p22 = Instance.new("WedgePart", m6)
  2944. p22.BrickColor = BrickColor.new("Lime green")
  2945. p22.Name = "Wedge"
  2946. p22.CFrame = CFrame.new(0.50454706, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  2947. p22.CanCollide = false
  2948. p22.Locked = true
  2949. p22.FormFactor = Enum.FormFactor.Custom
  2950. p22.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2951. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2952. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2953. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2954. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2955. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2956. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2957. b22 = Instance.new("SpecialMesh", p22)
  2958. b22.MeshType = Enum.MeshType.Wedge
  2959. b22.Name = "Mesh"
  2960. b22.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  2961. p23 = Instance.new("WedgePart", m6)
  2962. p23.BrickColor = BrickColor.new("Lime green")
  2963. p23.Material = Enum.Material.SmoothPlastic
  2964. p23.Name = "Wedge"
  2965. p23.CFrame = CFrame.new(1.09919691, 3.85010386, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2966. p23.CanCollide = false
  2967. p23.Locked = true
  2968. p23.FormFactor = Enum.FormFactor.Custom
  2969. p23.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2970. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2971. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2972. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2973. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2974. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2975. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2976. b23 = Instance.new("SpecialMesh", p23)
  2977. b23.MeshType = Enum.MeshType.Wedge
  2978. b23.Name = "Mesh"
  2979. b23.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2980. p24 = Instance.new("WedgePart", m6)
  2981. p24.BrickColor = BrickColor.new("Black")
  2982. p24.Material = Enum.Material.SmoothPlastic
  2983. p24.Name = "Wedge"
  2984. p24.CFrame = CFrame.new(0.959281087, 2.45089102, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  2985. p24.CanCollide = false
  2986. p24.Locked = true
  2987. p24.FormFactor = Enum.FormFactor.Custom
  2988. p24.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2989. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2990. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2991. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2992. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2993. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2994. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2995. b24 = Instance.new("SpecialMesh", p24)
  2996. b24.MeshType = Enum.MeshType.Wedge
  2997. b24.Name = "Mesh"
  2998. b24.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2999. p25 = Instance.new("WedgePart", m6)
  3000. p25.BrickColor = BrickColor.new("Lime green")
  3001. p25.Name = "Wedge"
  3002. p25.CFrame = CFrame.new(0.574507415, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3003. p25.CanCollide = false
  3004. p25.Locked = true
  3005. p25.FormFactor = Enum.FormFactor.Custom
  3006. p25.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3007. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3008. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3009. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3010. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3011. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3012. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3013. b25 = Instance.new("SpecialMesh", p25)
  3014. b25.MeshType = Enum.MeshType.Wedge
  3015. b25.Name = "Mesh"
  3016. b25.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3017. p26 = Instance.new("WedgePart", m6)
  3018. p26.BrickColor = BrickColor.new("Black")
  3019. p26.Material = Enum.Material.SmoothPlastic
  3020. p26.Name = "Wedge"
  3021. p26.CFrame = CFrame.new(-1.06957662, 4.68963194, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3022. p26.CanCollide = false
  3023. p26.Locked = true
  3024. p26.FormFactor = Enum.FormFactor.Custom
  3025. p26.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3026. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3027. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3028. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3029. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3030. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3031. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3032. b26 = Instance.new("SpecialMesh", p26)
  3033. b26.MeshType = Enum.MeshType.Wedge
  3034. b26.Name = "Mesh"
  3035. b26.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3036. p27 = Instance.new("Part", m6)
  3037. p27.BrickColor = BrickColor.new("Black")
  3038. p27.Material = Enum.Material.SmoothPlastic
  3039. p27.CFrame = CFrame.new(-1.55929208, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3040. p27.CanCollide = false
  3041. p27.Locked = true
  3042. p27.FormFactor = Enum.FormFactor.Custom
  3043. p27.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3044. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3045. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3046. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3047. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3048. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3049. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3050. b27 = Instance.new("BlockMesh", p27)
  3051. b27.Name = "Mesh"
  3052. b27.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3053. p28 = Instance.new("WedgePart", m6)
  3054. p28.BrickColor = BrickColor.new("Black")
  3055. p28.Material = Enum.Material.SmoothPlastic
  3056. p28.Name = "Wedge"
  3057. p28.CFrame = CFrame.new(0.959275484, 3.71018291, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3058. p28.CanCollide = false
  3059. p28.Locked = true
  3060. p28.FormFactor = Enum.FormFactor.Custom
  3061. p28.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3062. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3063. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3064. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3065. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3066. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3067. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3068. b28 = Instance.new("SpecialMesh", p28)
  3069. b28.MeshType = Enum.MeshType.Wedge
  3070. b28.Name = "Mesh"
  3071. b28.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3072. p29 = Instance.new("Part", m6)
  3073. p29.BrickColor = BrickColor.new("Black")
  3074. p29.Material = Enum.Material.SmoothPlastic
  3075. p29.CFrame = CFrame.new(-1.55929208, 3.15049648, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3076. p29.CanCollide = false
  3077. p29.Locked = true
  3078. p29.FormFactor = Enum.FormFactor.Custom
  3079. p29.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3080. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3081. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3082. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3083. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3084. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3085. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3086. b29 = Instance.new("BlockMesh", p29)
  3087. b29.Name = "Mesh"
  3088. b29.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3089. p30 = Instance.new("WedgePart", m6)
  3090. p30.BrickColor = BrickColor.new("Black")
  3091. p30.Material = Enum.Material.SmoothPlastic
  3092. p30.Name = "Wedge"
  3093. p30.CFrame = CFrame.new(1.09919691, 3.15049744, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3094. p30.CanCollide = false
  3095. p30.Locked = true
  3096. p30.FormFactor = Enum.FormFactor.Custom
  3097. p30.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3098. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3099. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3100. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3101. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3102. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3103. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3104. b30 = Instance.new("SpecialMesh", p30)
  3105. b30.MeshType = Enum.MeshType.Wedge
  3106. b30.Name = "Mesh"
  3107. b30.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3108. p31 = Instance.new("WedgePart", m6)
  3109. p31.BrickColor = BrickColor.new("Black")
  3110. p31.Material = Enum.Material.SmoothPlastic
  3111. p31.Name = "Wedge"
  3112. p31.CFrame = CFrame.new(0.119759142, 2.31096911, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3113. p31.CanCollide = false
  3114. p31.Locked = true
  3115. p31.FormFactor = Enum.FormFactor.Custom
  3116. p31.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3117. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3118. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3119. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3120. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3121. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3122. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3123. b31 = Instance.new("SpecialMesh", p31)
  3124. b31.MeshType = Enum.MeshType.Wedge
  3125. b31.Name = "Mesh"
  3126. b31.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3127. p32 = Instance.new("Part", m6)
  3128. p32.BrickColor = BrickColor.new("Black")
  3129. p32.Material = Enum.Material.SmoothPlastic
  3130. p32.Name = "BottomRightFlap"
  3131. p32.CFrame = CFrame.new(0.539517641, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3132. p32.CanCollide = false
  3133. p32.Locked = true
  3134. p32.FormFactor = Enum.FormFactor.Custom
  3135. p32.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  3136. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3137. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3138. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3139. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3140. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3141. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3142. b32 = Instance.new("BlockMesh", p32)
  3143. b32.Name = "Mesh"
  3144. b32.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3145. p33 = Instance.new("WedgePart", m6)
  3146. p33.BrickColor = BrickColor.new("Black")
  3147. p33.Material = Enum.Material.SmoothPlastic
  3148. p33.Name = "Wedge"
  3149. p33.CFrame = CFrame.new(1.02923799, 3.43033957, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3150. p33.CanCollide = false
  3151. p33.Locked = true
  3152. p33.FormFactor = Enum.FormFactor.Custom
  3153. p33.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3154. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3155. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3156. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3157. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3158. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3159. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3160. b33 = Instance.new("SpecialMesh", p33)
  3161. b33.MeshType = Enum.MeshType.Wedge
  3162. b33.Name = "Mesh"
  3163. b33.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3164. p34 = Instance.new("WedgePart", m6)
  3165. p34.BrickColor = BrickColor.new("Black")
  3166. p34.Material = Enum.Material.SmoothPlastic
  3167. p34.Name = "Wedge"
  3168. p34.CFrame = CFrame.new(-1.55929208, 2.45089054, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3169. p34.CanCollide = false
  3170. p34.Locked = true
  3171. p34.FormFactor = Enum.FormFactor.Custom
  3172. p34.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3173. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3174. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3175. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3176. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3177. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3178. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3179. b34 = Instance.new("SpecialMesh", p34)
  3180. b34.MeshType = Enum.MeshType.Wedge
  3181. b34.Name = "Mesh"
  3182. b34.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3183. p35 = Instance.new("Part", m6)
  3184. p35.BrickColor = BrickColor.new("Black")
  3185. p35.Material = Enum.Material.SmoothPlastic
  3186. p35.CFrame = CFrame.new(0.959275484, 3.85010386, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3187. p35.CanCollide = false
  3188. p35.Locked = true
  3189. p35.FormFactor = Enum.FormFactor.Custom
  3190. p35.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3191. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3192. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3193. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3194. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3195. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3196. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3197. b35 = Instance.new("BlockMesh", p35)
  3198. b35.Name = "Mesh"
  3199. b35.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3200. p36 = Instance.new("WedgePart", m6)
  3201. p36.BrickColor = BrickColor.new("Black")
  3202. p36.Material = Enum.Material.SmoothPlastic
  3203. p36.Name = "Wedge"
  3204. p36.CFrame = CFrame.new(-1.62925327, 3.43033957, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3205. p36.CanCollide = false
  3206. p36.Locked = true
  3207. p36.FormFactor = Enum.FormFactor.Custom
  3208. p36.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3209. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3210. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3211. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3212. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3213. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3214. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3215. b36 = Instance.new("SpecialMesh", p36)
  3216. b36.MeshType = Enum.MeshType.Wedge
  3217. b36.Name = "Mesh"
  3218. b36.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3219. p37 = Instance.new("Part", m6)
  3220. p37.BrickColor = BrickColor.new("Black")
  3221. p37.Material = Enum.Material.SmoothPlastic
  3222. p37.Name = "CapeLevel3"
  3223. p37.CFrame = CFrame.new(-0.300008506, 3.22045994, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3224. p37.CanCollide = false
  3225. p37.Locked = true
  3226. p37.FormFactor = Enum.FormFactor.Custom
  3227. p37.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3228. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3229. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3230. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3231. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3232. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3233. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3234. b37 = Instance.new("BlockMesh", p37)
  3235. b37.Name = "Mesh"
  3236. b37.Scale = Vector3.new(1, 1, 0.602178097)
  3237. p38 = Instance.new("WedgePart", m6)
  3238. p38.BrickColor = BrickColor.new("Lime green")
  3239. p38.Material = Enum.Material.SmoothPlastic
  3240. p38.Name = "Wedge"
  3241. p38.CFrame = CFrame.new(-1.97905517, 2.73073244, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3242. p38.CanCollide = false
  3243. p38.Locked = true
  3244. p38.FormFactor = Enum.FormFactor.Custom
  3245. p38.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3246. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3247. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3248. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3249. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3250. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3251. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3252. b38 = Instance.new("SpecialMesh", p38)
  3253. b38.MeshType = Enum.MeshType.Wedge
  3254. b38.Name = "Mesh"
  3255. b38.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3256. p39 = Instance.new("WedgePart", m6)
  3257. p39.BrickColor = BrickColor.new("Lime green")
  3258. p39.Material = Enum.Material.SmoothPlastic
  3259. p39.Name = "Wedge"
  3260. p39.CFrame = CFrame.new(-1.83913493, 3.29041815, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3261. p39.CanCollide = false
  3262. p39.Locked = true
  3263. p39.FormFactor = Enum.FormFactor.Custom
  3264. p39.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3265. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3266. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3267. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3268. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3269. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3270. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3271. b39 = Instance.new("SpecialMesh", p39)
  3272. b39.MeshType = Enum.MeshType.Wedge
  3273. b39.Name = "Mesh"
  3274. b39.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3275. p40 = Instance.new("WedgePart", m6)
  3276. p40.BrickColor = BrickColor.new("Black")
  3277. p40.Material = Enum.Material.SmoothPlastic
  3278. p40.Name = "Wedge"
  3279. p40.CFrame = CFrame.new(-1.48933268, 3.99002528, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3280. p40.CanCollide = false
  3281. p40.Locked = true
  3282. p40.FormFactor = Enum.FormFactor.Custom
  3283. p40.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3284. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3285. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3286. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3287. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3288. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3289. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3290. b40 = Instance.new("SpecialMesh", p40)
  3291. b40.MeshType = Enum.MeshType.Wedge
  3292. b40.Name = "Mesh"
  3293. b40.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3294. p41 = Instance.new("WedgePart", m6)
  3295. p41.BrickColor = BrickColor.new("Black")
  3296. p41.Material = Enum.Material.SmoothPlastic
  3297. p41.Name = "Wedge"
  3298. p41.CFrame = CFrame.new(-1.76917338, 2.59081101, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3299. p41.CanCollide = false
  3300. p41.Locked = true
  3301. p41.FormFactor = Enum.FormFactor.Custom
  3302. p41.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3303. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3304. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3305. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3306. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3308. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3309. b41 = Instance.new("SpecialMesh", p41)
  3310. b41.MeshType = Enum.MeshType.Wedge
  3311. b41.Name = "Mesh"
  3312. b41.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3313. p42 = Instance.new("WedgePart", m6)
  3314. p42.BrickColor = BrickColor.new("Black")
  3315. p42.Material = Enum.Material.SmoothPlastic
  3316. p42.Name = "Wedge"
  3317. p42.CFrame = CFrame.new(0.679442644, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3318. p42.CanCollide = false
  3319. p42.Locked = true
  3320. p42.FormFactor = Enum.FormFactor.Custom
  3321. p42.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3322. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3323. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3324. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3325. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3326. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3327. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3328. b42 = Instance.new("SpecialMesh", p42)
  3329. b42.MeshType = Enum.MeshType.Wedge
  3330. b42.Name = "Mesh"
  3331. b42.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3332. p43 = Instance.new("WedgePart", m6)
  3333. p43.BrickColor = BrickColor.new("Black")
  3334. p43.Material = Enum.Material.SmoothPlastic
  3335. p43.Name = "Wedge"
  3336. p43.CFrame = CFrame.new(-1.76917338, 2.87065363, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3337. p43.CanCollide = false
  3338. p43.Locked = true
  3339. p43.FormFactor = Enum.FormFactor.Custom
  3340. p43.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3341. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3342. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3343. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3344. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3345. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3346. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3347. b43 = Instance.new("SpecialMesh", p43)
  3348. b43.MeshType = Enum.MeshType.Wedge
  3349. b43.Name = "Mesh"
  3350. b43.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3351. p44 = Instance.new("WedgePart", m6)
  3352. p44.BrickColor = BrickColor.new("Black")
  3353. p44.Material = Enum.Material.SmoothPlastic
  3354. p44.Name = "Wedge"
  3355. p44.CFrame = CFrame.new(-1.41937125, 4.26986837, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3356. p44.CanCollide = false
  3357. p44.Locked = true
  3358. p44.FormFactor = Enum.FormFactor.Custom
  3359. p44.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3360. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3361. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3362. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3363. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3364. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3365. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3366. b44 = Instance.new("SpecialMesh", p44)
  3367. b44.MeshType = Enum.MeshType.Wedge
  3368. b44.Name = "Mesh"
  3369. b44.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3370. p45 = Instance.new("WedgePart", m6)
  3371. p45.BrickColor = BrickColor.new("Black")
  3372. p45.Material = Enum.Material.SmoothPlastic
  3373. p45.Name = "Wedge"
  3374. p45.CFrame = CFrame.new(-0.999610066, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3375. p45.CanCollide = false
  3376. p45.Locked = true
  3377. p45.FormFactor = Enum.FormFactor.Custom
  3378. p45.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3379. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3380. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3381. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3382. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3383. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3384. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3385. b45 = Instance.new("SpecialMesh", p45)
  3386. b45.MeshType = Enum.MeshType.Wedge
  3387. b45.Name = "Mesh"
  3388. b45.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3389. p46 = Instance.new("WedgePart", m6)
  3390. p46.BrickColor = BrickColor.new("Black")
  3391. p46.Material = Enum.Material.SmoothPlastic
  3392. p46.Name = "Wedge"
  3393. p46.CFrame = CFrame.new(0.46955356, 4.68963194, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3394. p46.CanCollide = false
  3395. p46.Locked = true
  3396. p46.FormFactor = Enum.FormFactor.Custom
  3397. p46.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3398. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3399. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3400. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3401. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3402. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3403. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3404. b46 = Instance.new("SpecialMesh", p46)
  3405. b46.MeshType = Enum.MeshType.Wedge
  3406. b46.Name = "Mesh"
  3407. b46.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3408. p47 = Instance.new("Part", m6)
  3409. p47.BrickColor = BrickColor.new("Black")
  3410. p47.Material = Enum.Material.SmoothPlastic
  3411. p47.CFrame = CFrame.new(0.819356859, 4.40979004, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3412. p47.CanCollide = false
  3413. p47.Locked = true
  3414. p47.FormFactor = Enum.FormFactor.Custom
  3415. p47.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3416. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3417. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3418. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3419. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3420. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3421. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3422. b47 = Instance.new("BlockMesh", p47)
  3423. b47.Name = "Mesh"
  3424. b47.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3425. p48 = Instance.new("Part", m6)
  3426. p48.BrickColor = BrickColor.new("Black")
  3427. p48.Material = Enum.Material.SmoothPlastic
  3428. p48.Name = "CapeLevel4"
  3429. p48.CFrame = CFrame.new(-0.300008506, 2.66077495, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3430. p48.CanCollide = false
  3431. p48.Locked = true
  3432. p48.FormFactor = Enum.FormFactor.Custom
  3433. p48.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3434. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3435. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3436. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3437. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3438. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3439. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3440. b48 = Instance.new("BlockMesh", p48)
  3441. b48.Name = "Mesh"
  3442. b48.Scale = Vector3.new(1, 1, 0.602178097)
  3443. p49 = Instance.new("WedgePart", m6)
  3444. p49.BrickColor = BrickColor.new("Black")
  3445. p49.Material = Enum.Material.SmoothPlastic
  3446. p49.Name = "Wedge"
  3447. p49.CFrame = CFrame.new(0.819356859, 4.26986837, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3448. p49.CanCollide = false
  3449. p49.Locked = true
  3450. p49.FormFactor = Enum.FormFactor.Custom
  3451. p49.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3452. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3453. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3454. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3455. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3456. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3457. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3458. b49 = Instance.new("SpecialMesh", p49)
  3459. b49.MeshType = Enum.MeshType.Wedge
  3460. b49.Name = "Mesh"
  3461. b49.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3462. p50 = Instance.new("Part", m6)
  3463. p50.BrickColor = BrickColor.new("Black")
  3464. p50.Material = Enum.Material.SmoothPlastic
  3465. p50.Name = "CapeLevel1SubPart"
  3466. p50.CFrame = CFrame.new(-0.300008506, 4.33982658, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3467. p50.CanCollide = false
  3468. p50.Locked = true
  3469. p50.FormFactor = Enum.FormFactor.Custom
  3470. p50.Size = Vector3.new(1.81896901, 0.559682727, 0.232357636)
  3471. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3472. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3473. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3474. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3475. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3476. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3477. b50 = Instance.new("BlockMesh", p50)
  3478. b50.Name = "Mesh"
  3479. b50.Scale = Vector3.new(1, 1, 0.602178097)
  3480. p51 = Instance.new("Part", m6)
  3481. p51.BrickColor = BrickColor.new("Black")
  3482. p51.Material = Enum.Material.SmoothPlastic
  3483. p51.CFrame = CFrame.new(-1.55929291, 3.85010386, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3484. p51.CanCollide = false
  3485. p51.Locked = true
  3486. p51.FormFactor = Enum.FormFactor.Custom
  3487. p51.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3488. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3489. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3490. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3491. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3492. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3493. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3494. b51 = Instance.new("BlockMesh", p51)
  3495. b51.Name = "Mesh"
  3496. b51.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3497. p52 = Instance.new("Part", m6)
  3498. p52.BrickColor = BrickColor.new("Black")
  3499. p52.Material = Enum.Material.SmoothPlastic
  3500. p52.CFrame = CFrame.new(-1.41937149, 3.71018171, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3501. p52.CanCollide = false
  3502. p52.Locked = true
  3503. p52.FormFactor = Enum.FormFactor.Custom
  3504. p52.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3505. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3506. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3507. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3508. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3509. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3510. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3511. b52 = Instance.new("BlockMesh", p52)
  3512. b52.Name = "Mesh"
  3513. b52.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3514. p53 = Instance.new("WedgePart", m6)
  3515. p53.BrickColor = BrickColor.new("Black")
  3516. p53.Material = Enum.Material.SmoothPlastic
  3517. p53.Name = "Wedge"
  3518. p53.CFrame = CFrame.new(-0.0201580226, 2.03113341, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3519. p53.CanCollide = false
  3520. p53.Locked = true
  3521. p53.FormFactor = Enum.FormFactor.Custom
  3522. p53.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3523. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3524. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3525. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3526. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3527. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3528. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3529. b53 = Instance.new("SpecialMesh", p53)
  3530. b53.MeshType = Enum.MeshType.Wedge
  3531. b53.Name = "Mesh"
  3532. b53.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3533. p54 = Instance.new("Part", m6)
  3534. p54.BrickColor = BrickColor.new("Black")
  3535. p54.Material = Enum.Material.SmoothPlastic
  3536. p54.CFrame = CFrame.new(-0.300009966, 1.68132639, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3537. p54.CanCollide = false
  3538. p54.Locked = true
  3539. p54.FormFactor = Enum.FormFactor.Custom
  3540. p54.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  3541. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3542. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3543. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3544. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3545. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3546. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3547. b54 = Instance.new("BlockMesh", p54)
  3548. b54.Name = "Mesh"
  3549. b54.Scale = Vector3.new(0.602178395, 1, 0.602178097)
  3550. p55 = Instance.new("WedgePart", m6)
  3551. p55.BrickColor = BrickColor.new("Black")
  3552. p55.Material = Enum.Material.SmoothPlastic
  3553. p55.Name = "Wedge"
  3554. p55.CFrame = CFrame.new(0.39960131, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3555. p55.CanCollide = false
  3556. p55.Locked = true
  3557. p55.FormFactor = Enum.FormFactor.Custom
  3558. p55.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3559. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3560. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3561. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3562. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3563. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3564. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3565. b55 = Instance.new("SpecialMesh", p55)
  3566. b55.MeshType = Enum.MeshType.Wedge
  3567. b55.Name = "Mesh"
  3568. b55.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3569. p56 = Instance.new("WedgePart", m6)
  3570. p56.BrickColor = BrickColor.new("Lime green")
  3571. p56.Material = Enum.Material.SmoothPlastic
  3572. p56.Name = "Wedge"
  3573. p56.CFrame = CFrame.new(1.23911822, 3.29041815, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3574. p56.CanCollide = false
  3575. p56.Locked = true
  3576. p56.FormFactor = Enum.FormFactor.Custom
  3577. p56.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3578. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3579. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3580. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3581. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3582. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3583. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3584. b56 = Instance.new("SpecialMesh", p56)
  3585. b56.MeshType = Enum.MeshType.Wedge
  3586. b56.Name = "Mesh"
  3587. b56.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3588. p57 = Instance.new("WedgePart", m6)
  3589. p57.BrickColor = BrickColor.new("Black")
  3590. p57.Material = Enum.Material.SmoothPlastic
  3591. p57.Name = "Wedge"
  3592. p57.CFrame = CFrame.new(0.749394774, 4.54971123, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3593. p57.CanCollide = false
  3594. p57.Locked = true
  3595. p57.FormFactor = Enum.FormFactor.Custom
  3596. p57.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3597. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3598. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3599. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3600. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3601. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3602. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3603. b57 = Instance.new("SpecialMesh", p57)
  3604. b57.MeshType = Enum.MeshType.Wedge
  3605. b57.Name = "Mesh"
  3606. b57.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3607. p58 = Instance.new("Part", m6)
  3608. p58.BrickColor = BrickColor.new("Black")
  3609. p58.Material = Enum.Material.SmoothPlastic
  3610. p58.CFrame = CFrame.new(0.819354892, 3.71018171, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3611. p58.CanCollide = false
  3612. p58.Locked = true
  3613. p58.FormFactor = Enum.FormFactor.Custom
  3614. p58.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3615. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3616. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3617. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3618. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3619. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3620. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3621. b58 = Instance.new("BlockMesh", p58)
  3622. b58.Name = "Mesh"
  3623. b58.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3624. p59 = Instance.new("WedgePart", m6)
  3625. p59.BrickColor = BrickColor.new("Black")
  3626. p59.Material = Enum.Material.SmoothPlastic
  3627. p59.Name = "Wedge"
  3628. p59.CFrame = CFrame.new(0.259678036, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3629. p59.CanCollide = false
  3630. p59.Locked = true
  3631. p59.FormFactor = Enum.FormFactor.Custom
  3632. p59.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3633. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3634. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3635. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3636. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3637. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3638. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3639. b59 = Instance.new("SpecialMesh", p59)
  3640. b59.MeshType = Enum.MeshType.Wedge
  3641. b59.Name = "Mesh"
  3642. b59.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3643. p60 = Instance.new("Part", m6)
  3644. p60.BrickColor = BrickColor.new("Black")
  3645. p60.Material = Enum.Material.SmoothPlastic
  3646. p60.Name = "NeckPart"
  3647. p60.CFrame = CFrame.new(-0.300008506, 4.82955122, 3.8997519, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3648. p60.CanCollide = false
  3649. p60.Locked = true
  3650. p60.FormFactor = Enum.FormFactor.Custom
  3651. p60.Size = Vector3.new(1.25928628, 0.232357651, 0.419762105)
  3652. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3653. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3654. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3655. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3656. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3657. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3658. b60 = Instance.new("BlockMesh", p60)
  3659. b60.Name = "Mesh"
  3660. b60.Scale = Vector3.new(1, 0.602178097, 1)
  3661. p61 = Instance.new("Part", m6)
  3662. p61.BrickColor = BrickColor.new("Black")
  3663. p61.Material = Enum.Material.SmoothPlastic
  3664. p61.CFrame = CFrame.new(0.959281087, 2.73073363, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3665. p61.CanCollide = false
  3666. p61.Locked = true
  3667. p61.FormFactor = Enum.FormFactor.Custom
  3668. p61.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3669. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3670. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3671. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3672. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3673. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3674. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3675. b61 = Instance.new("BlockMesh", p61)
  3676. b61.Name = "Mesh"
  3677. b61.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3678. p62 = Instance.new("WedgePart", m6)
  3679. p62.BrickColor = BrickColor.new("Black")
  3680. p62.Material = Enum.Material.SmoothPlastic
  3681. p62.Name = "Wedge"
  3682. p62.CFrame = CFrame.new(1.16916382, 2.87065434, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3683. p62.CanCollide = false
  3684. p62.Locked = true
  3685. p62.FormFactor = Enum.FormFactor.Custom
  3686. p62.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3687. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3688. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3689. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3690. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3691. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3692. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3693. b62 = Instance.new("SpecialMesh", p62)
  3694. b62.MeshType = Enum.MeshType.Wedge
  3695. b62.Name = "Mesh"
  3696. b62.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3697. p63 = Instance.new("WedgePart", m6)
  3698. p63.BrickColor = BrickColor.new("Lime green")
  3699. p63.Material = Enum.Material.SmoothPlastic
  3700. p63.Name = "Wedge"
  3701. p63.CFrame = CFrame.new(1.37904489, 2.73073268, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3702. p63.CanCollide = false
  3703. p63.Locked = true
  3704. p63.FormFactor = Enum.FormFactor.Custom
  3705. p63.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3706. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3707. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3708. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3709. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3710. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3711. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3712. b63 = Instance.new("SpecialMesh", p63)
  3713. b63.MeshType = Enum.MeshType.Wedge
  3714. b63.Name = "Mesh"
  3715. b63.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3716. p64 = Instance.new("WedgePart", m6)
  3717. p64.BrickColor = BrickColor.new("Black")
  3718. p64.Material = Enum.Material.SmoothPlastic
  3719. p64.Name = "Wedge"
  3720. p64.CFrame = CFrame.new(-0.439923674, 1.68132377, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3721. p64.CanCollide = false
  3722. p64.Locked = true
  3723. p64.FormFactor = Enum.FormFactor.Custom
  3724. p64.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  3725. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3726. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3727. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3728. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3729. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3730. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3731. b64 = Instance.new("SpecialMesh", p64)
  3732. b64.MeshType = Enum.MeshType.Wedge
  3733. b64.Name = "Mesh"
  3734. b64.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3735. p65 = Instance.new("WedgePart", m6)
  3736. p65.BrickColor = BrickColor.new("Black")
  3737. p65.Material = Enum.Material.SmoothPlastic
  3738. p65.Name = "Wedge"
  3739. p65.CFrame = CFrame.new(-0.859687686, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3740. p65.CanCollide = false
  3741. p65.Locked = true
  3742. p65.FormFactor = Enum.FormFactor.Custom
  3743. p65.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3744. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3745. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3746. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3747. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3748. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3749. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3750. b65 = Instance.new("SpecialMesh", p65)
  3751. b65.MeshType = Enum.MeshType.Wedge
  3752. b65.Name = "Mesh"
  3753. b65.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3754. p66 = Instance.new("WedgePart", m6)
  3755. p66.BrickColor = BrickColor.new("Black")
  3756. p66.Material = Enum.Material.SmoothPlastic
  3757. p66.Name = "Wedge"
  3758. p66.CFrame = CFrame.new(-1.55929291, 3.71018267, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3759. p66.CanCollide = false
  3760. p66.Locked = true
  3761. p66.FormFactor = Enum.FormFactor.Custom
  3762. p66.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3763. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3764. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3765. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3766. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3767. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3768. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3769. b66 = Instance.new("SpecialMesh", p66)
  3770. b66.MeshType = Enum.MeshType.Wedge
  3771. b66.Name = "Mesh"
  3772. b66.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3773. p67 = Instance.new("WedgePart", m6)
  3774. p67.BrickColor = BrickColor.new("Black")
  3775. p67.Material = Enum.Material.SmoothPlastic
  3776. p67.Name = "Wedge"
  3777. p67.CFrame = CFrame.new(-0.719767809, 2.31096911, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3778. p67.CanCollide = false
  3779. p67.Locked = true
  3780. p67.FormFactor = Enum.FormFactor.Custom
  3781. p67.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3782. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3783. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3784. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3785. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3786. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3787. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3788. b67 = Instance.new("SpecialMesh", p67)
  3789. b67.MeshType = Enum.MeshType.Wedge
  3790. b67.Name = "Mesh"
  3791. b67.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3792. p68 = Instance.new("WedgePart", m6)
  3793. p68.BrickColor = BrickColor.new("Lime green")
  3794. p68.Name = "Wedge"
  3795. p68.CFrame = CFrame.new(-1.17450571, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3796. p68.CanCollide = false
  3797. p68.Locked = true
  3798. p68.FormFactor = Enum.FormFactor.Custom
  3799. p68.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3800. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3801. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3802. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3803. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3804. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3805. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3806. b68 = Instance.new("SpecialMesh", p68)
  3807. b68.MeshType = Enum.MeshType.Wedge
  3808. b68.Name = "Mesh"
  3809. b68.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3810. p69 = Instance.new("WedgePart", m6)
  3811. p69.BrickColor = BrickColor.new("Lime green")
  3812. p69.Name = "Wedge"
  3813. p69.CFrame = CFrame.new(-1.10454547, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3814. p69.CanCollide = false
  3815. p69.Locked = true
  3816. p69.FormFactor = Enum.FormFactor.Custom
  3817. p69.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3818. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3819. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3820. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3821. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3822. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3823. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3824. b69 = Instance.new("SpecialMesh", p69)
  3825. b69.MeshType = Enum.MeshType.Wedge
  3826. b69.Name = "Mesh"
  3827. b69.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3828. p70 = Instance.new("WedgePart", m6)
  3829. p70.BrickColor = BrickColor.new("Black")
  3830. p70.Material = Enum.Material.SmoothPlastic
  3831. p70.Name = "Wedge"
  3832. p70.CFrame = CFrame.new(0.889316559, 3.99002528, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3833. p70.CanCollide = false
  3834. p70.Locked = true
  3835. p70.FormFactor = Enum.FormFactor.Custom
  3836. p70.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3837. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3838. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3839. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3840. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3841. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3842. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3843. b70 = Instance.new("SpecialMesh", p70)
  3844. b70.MeshType = Enum.MeshType.Wedge
  3845. b70.Name = "Mesh"
  3846. b70.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3847. p71 = Instance.new("WedgePart", m6)
  3848. p71.BrickColor = BrickColor.new("Lime green")
  3849. p71.Name = "Wedge"
  3850. p71.CFrame = CFrame.new(-0.334977895, 1.47144794, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3851. p71.CanCollide = false
  3852. p71.Locked = true
  3853. p71.FormFactor = Enum.FormFactor.Custom
  3854. p71.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3855. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3856. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3857. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3858. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3859. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3860. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3861. b71 = Instance.new("SpecialMesh", p71)
  3862. b71.MeshType = Enum.MeshType.Wedge
  3863. b71.Name = "Mesh"
  3864. b71.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3865. p72 = Instance.new("WedgePart", m6)
  3866. p72.BrickColor = BrickColor.new("Black")
  3867. p72.Material = Enum.Material.SmoothPlastic
  3868. p72.Name = "Wedge"
  3869. p72.CFrame = CFrame.new(-0.579845786, 2.03112626, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3870. p72.CanCollide = false
  3871. p72.Locked = true
  3872. p72.FormFactor = Enum.FormFactor.Custom
  3873. p72.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3874. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3875. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3876. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3877. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3878. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3879. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3880. b72 = Instance.new("SpecialMesh", p72)
  3881. b72.MeshType = Enum.MeshType.Wedge
  3882. b72.Name = "Mesh"
  3883. b72.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3884. p73 = Instance.new("WedgePart", m6)
  3885. p73.BrickColor = BrickColor.new("Black")
  3886. p73.Material = Enum.Material.SmoothPlastic
  3887. p73.Name = "Wedge"
  3888. p73.CFrame = CFrame.new(-1.41937125, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3889. p73.CanCollide = false
  3890. p73.Locked = true
  3891. p73.FormFactor = Enum.FormFactor.Custom
  3892. p73.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3893. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3894. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3895. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3896. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3897. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3898. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3899. b73 = Instance.new("SpecialMesh", p73)
  3900. b73.MeshType = Enum.MeshType.Wedge
  3901. b73.Name = "Mesh"
  3902. b73.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3903. p74 = Instance.new("WedgePart", m6)
  3904. p74.BrickColor = BrickColor.new("Black")
  3905. p74.Material = Enum.Material.SmoothPlastic
  3906. p74.Name = "Wedge"
  3907. p74.CFrame = CFrame.new(1.16916382, 2.59081125, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3908. p74.CanCollide = false
  3909. p74.Locked = true
  3910. p74.FormFactor = Enum.FormFactor.Custom
  3911. p74.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3912. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3913. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3914. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3915. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3916. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3917. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3918. b74 = Instance.new("SpecialMesh", p74)
  3919. b74.MeshType = Enum.MeshType.Wedge
  3920. b74.Name = "Mesh"
  3921. b74.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3922. p75 = Instance.new("WedgePart", m6)
  3923. p75.BrickColor = BrickColor.new("Black")
  3924. p75.Material = Enum.Material.SmoothPlastic
  3925. p75.Name = "Wedge"
  3926. p75.CFrame = CFrame.new(-0.160081401, 1.68132377, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3927. p75.CanCollide = false
  3928. p75.Locked = true
  3929. p75.FormFactor = Enum.FormFactor.Custom
  3930. p75.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3931. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3932. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3933. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3934. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3935. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3936. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3937. b75 = Instance.new("SpecialMesh", p75)
  3938. b75.MeshType = Enum.MeshType.Wedge
  3939. b75.Name = "Mesh"
  3940. b75.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3941. p76 = Instance.new("WedgePart", m6)
  3942. p76.BrickColor = BrickColor.new("Black")
  3943. p76.Material = Enum.Material.SmoothPlastic
  3944. p76.Name = "Wedge"
  3945. p76.CFrame = CFrame.new(0.819362521, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3946. p76.CanCollide = false
  3947. p76.Locked = true
  3948. p76.FormFactor = Enum.FormFactor.Custom
  3949. p76.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3950. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3951. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3952. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3953. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3954. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3955. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3956. b76 = Instance.new("SpecialMesh", p76)
  3957. b76.MeshType = Enum.MeshType.Wedge
  3958. b76.Name = "Mesh"
  3959. b76.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3960. p77 = Instance.new("WedgePart", m6)
  3961. p77.BrickColor = BrickColor.new("Lime green")
  3962. p77.Material = Enum.Material.SmoothPlastic
  3963. p77.Name = "Wedge"
  3964. p77.CFrame = CFrame.new(-1.55929291, 4.40979004, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3965. p77.CanCollide = false
  3966. p77.Locked = true
  3967. p77.FormFactor = Enum.FormFactor.Custom
  3968. p77.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3969. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3970. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3971. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3972. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3973. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3974. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3975. b77 = Instance.new("SpecialMesh", p77)
  3976. b77.MeshType = Enum.MeshType.Wedge
  3977. b77.Name = "Mesh"
  3978. b77.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3979. p78 = Instance.new("WedgePart", m6)
  3980. p78.BrickColor = BrickColor.new("Black")
  3981. p78.Material = Enum.Material.SmoothPlastic
  3982. p78.Name = "Wedge"
  3983. p78.CFrame = CFrame.new(-1.34941173, 4.54971123, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3984. p78.CanCollide = false
  3985. p78.Locked = true
  3986. p78.FormFactor = Enum.FormFactor.Custom
  3987. p78.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3988. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3989. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3990. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3991. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3992. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3993. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3994. b78 = Instance.new("SpecialMesh", p78)
  3995. b78.MeshType = Enum.MeshType.Wedge
  3996. b78.Name = "Mesh"
  3997. b78.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3998. p79 = Instance.new("WedgePart", m6)
  3999. p79.BrickColor = BrickColor.new("Lime green")
  4000. p79.Material = Enum.Material.SmoothPlastic
  4001. p79.Name = "Wedge"
  4002. p79.CFrame = CFrame.new(-1.6992141, 3.85010386, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4003. p79.CanCollide = false
  4004. p79.Locked = true
  4005. p79.FormFactor = Enum.FormFactor.Custom
  4006. p79.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4007. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4008. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4009. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4010. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4011. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4012. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4013. b79 = Instance.new("SpecialMesh", p79)
  4014. b79.MeshType = Enum.MeshType.Wedge
  4015. b79.Name = "Mesh"
  4016. b79.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4017. p80 = Instance.new("WedgePart", m6)
  4018. p80.BrickColor = BrickColor.new("Black")
  4019. p80.Material = Enum.Material.SmoothPlastic
  4020. p80.Name = "Wedge"
  4021. p80.CFrame = CFrame.new(-1.6992135, 3.1504972, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4022. p80.CanCollide = false
  4023. p80.Locked = true
  4024. p80.FormFactor = Enum.FormFactor.Custom
  4025. p80.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4026. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4027. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4028. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4029. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4030. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4031. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4032. b80 = Instance.new("SpecialMesh", p80)
  4033. b80.MeshType = Enum.MeshType.Wedge
  4034. b80.Name = "Mesh"
  4035. b80.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4036. w1 = Instance.new("Weld", p1)
  4037. w1.Name = "Joint"
  4038. w1.Part0 = p1
  4039. w1.C0 = CFrame.new(0, 0, 0.139921591, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4040. w1.Part1 = p47
  4041. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4042. w2 = Instance.new("Weld", p2)
  4043. w2.Name = "Joint"
  4044. w2.Part0 = p2
  4045. w2.C0 = CFrame.new(0, -2.7097974e-006, 0.139918938, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4046. w2.Part1 = p11
  4047. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4048. w3 = Instance.new("Weld", p3)
  4049. w3.Name = "Joint"
  4050. w3.Part0 = p3
  4051. w3.C0 = CFrame.new(0, 0.559684455, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4052. w3.Part1 = p50
  4053. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4054. w4 = Instance.new("Weld", p4)
  4055. w4.Name = "Joint"
  4056. w4.Part0 = p4
  4057. w4.C0 = CFrame.new(-0.139921427, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4058. w4.Part1 = p5
  4059. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4060. w5 = Instance.new("Weld", p5)
  4061. w5.Name = "Joint"
  4062. w5.Part0 = p5
  4063. w5.C0 = CFrame.new(-0.139920607, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4064. w5.Part1 = p27
  4065. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4066. w6 = Instance.new("Weld", p6)
  4067. w6.Name = "Joint"
  4068. w6.Part0 = p6
  4069. w6.C0 = CFrame.new(6.98293934e-006, 0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4070. w6.Part1 = p14
  4071. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4072. w7 = Instance.new("Weld", p7)
  4073. w7.Name = "Joint"
  4074. w7.Part0 = p7
  4075. w7.C0 = CFrame.new(-0.139921531, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4076. w7.Part1 = p10
  4077. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4078. w8 = Instance.new("Weld", p8)
  4079. w8.Name = "Joint"
  4080. w8.Part0 = p8
  4081. w8.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4082. w8.Part1 = p32
  4083. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4084. w9 = Instance.new("Weld", p9)
  4085. w9.Name = "Joint"
  4086. w9.Part0 = p9
  4087. w9.C0 = CFrame.new(0, 0.279842764, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4088. w9.Part1 = p16
  4089. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4090. w10 = Instance.new("Weld", p10)
  4091. w10.Name = "Joint"
  4092. w10.Part0 = p10
  4093. w10.C0 = CFrame.new(-0.139921531, 1.04222977e-006, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4094. w10.Part1 = p61
  4095. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4096. w11 = Instance.new("Weld", p11)
  4097. w11.Name = "Joint"
  4098. w11.Part0 = p11
  4099. w11.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4100. w11.Part1 = p13
  4101. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4102. w12 = Instance.new("Weld", p12)
  4103. w12.Name = "Joint"
  4104. w12.Part0 = p12
  4105. w12.C0 = CFrame.new(-0.139921427, -0.139921635, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4106. w12.Part1 = p29
  4107. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4108. w13 = Instance.new("Weld", p13)
  4109. w13.Name = "Joint"
  4110. w13.Part0 = p13
  4111. w13.C0 = CFrame.new(0.839523137, 0.349802732, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4112. w13.Part1 = p48
  4113. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4114. w14 = Instance.new("Weld", p14)
  4115. w14.Name = "Joint"
  4116. w14.Part0 = p14
  4117. w14.C0 = CFrame.new(-6.98293934e-006, 1.25067584e-006, -0.139921844, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4118. w14.Part1 = p60
  4119. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4120. w15 = Instance.new("Weld", p15)
  4121. w15.Name = "Joint"
  4122. w15.Part0 = p15
  4123. w15.C0 = CFrame.new(-0.139920712, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4124. w15.Part1 = p17
  4125. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4126. w16 = Instance.new("Weld", p16)
  4127. w16.Name = "Joint"
  4128. w16.Part0 = p16
  4129. w16.C0 = CFrame.new(1.45912168e-006, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4130. w16.Part1 = p48
  4131. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4132. w17 = Instance.new("Weld", p17)
  4133. w17.Name = "Joint"
  4134. w17.Part0 = p17
  4135. w17.C0 = CFrame.new(-0.97944206, 0.0699603036, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4136. w17.Part1 = p50
  4137. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4138. w18 = Instance.new("Weld", p18)
  4139. w18.Name = "Joint"
  4140. w18.Part0 = p18
  4141. w18.C0 = CFrame.new(-0.979444683, 0.0699603036, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4142. w18.Part1 = p50
  4143. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4144. w19 = Instance.new("Weld", p19)
  4145. w19.Name = "Joint"
  4146. w19.Part0 = p19
  4147. w19.C0 = CFrame.new(0, -0.2098784, 0.0349924229, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4148. w19.Part1 = p54
  4149. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4150. w20 = Instance.new("Weld", p20)
  4151. w20.Name = "Joint"
  4152. w20.Part0 = p20
  4153. w20.C0 = CFrame.new(-0.139921427, -0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4154. w20.Part1 = p21
  4155. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4156. w21 = Instance.new("Weld", p21)
  4157. w21.Name = "Joint"
  4158. w21.Part0 = p21
  4159. w21.C0 = CFrame.new(-1.25928402, 0.0699627995, -1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4160. w21.Part1 = p37
  4161. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4162. w22 = Instance.new("Weld", p22)
  4163. w22.Name = "Joint"
  4164. w22.Part0 = p22
  4165. w22.C0 = CFrame.new(0, -0.209878504, 0.0349705629, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4166. w22.Part1 = p8
  4167. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4168. w23 = Instance.new("Weld", p23)
  4169. w23.Name = "Joint"
  4170. w23.Part0 = p23
  4171. w23.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4172. w23.Part1 = p35
  4173. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4174. w24 = Instance.new("Weld", p24)
  4175. w24.Name = "Joint"
  4176. w24.Part0 = p24
  4177. w24.C0 = CFrame.new(8.33783815e-007, -0.209883824, 1.25928962, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4178. w24.Part1 = p48
  4179. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4180. w25 = Instance.new("Weld", p25)
  4181. w25.Name = "Joint"
  4182. w25.Part0 = p25
  4183. w25.C0 = CFrame.new(0, -0.209878504, 0.0349897929, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4184. w25.Part1 = p8
  4185. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4186. w26 = Instance.new("Weld", p26)
  4187. w26.Name = "Joint"
  4188. w26.Part0 = p26
  4189. w26.C0 = CFrame.new(0, -3.33513526e-006, 0.769568086, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4190. w26.Part1 = p6
  4191. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4192. w27 = Instance.new("Weld", p27)
  4193. w27.Name = "Joint"
  4194. w27.Part0 = p27
  4195. w27.C0 = CFrame.new(-1.25928354, -0.0699575916, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4196. w27.Part1 = p48
  4197. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4198. w28 = Instance.new("Weld", p28)
  4199. w28.Name = "Joint"
  4200. w28.Part0 = p28
  4201. w28.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4202. w28.Part1 = p35
  4203. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4204. w29 = Instance.new("Weld", p29)
  4205. w29.Name = "Joint"
  4206. w29.Part0 = p29
  4207. w29.C0 = CFrame.new(-1.25928354, 0.0699634254, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4208. w29.Part1 = p37
  4209. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4210. w30 = Instance.new("Weld", p30)
  4211. w30.Name = "Joint"
  4212. w30.Part0 = p30
  4213. w30.C0 = CFrame.new(0, -0.139920816, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4214. w30.Part1 = p20
  4215. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4216. w31 = Instance.new("Weld", p31)
  4217. w31.Name = "Joint"
  4218. w31.Part0 = p31
  4219. w31.C0 = CFrame.new(0, -3.02246644e-006, 0.419769108, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4220. w31.Part1 = p16
  4221. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4222. w32 = Instance.new("Weld", p32)
  4223. w32.Name = "Joint"
  4224. w32.Part0 = p32
  4225. w32.C0 = CFrame.new(-0.839526176, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4226. w32.Part1 = p48
  4227. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4228. w33 = Instance.new("Weld", p33)
  4229. w33.Name = "Joint"
  4230. w33.Part0 = p33
  4231. w33.C0 = CFrame.new(1.3548987e-006, -0.279842436, 0.0699624866, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4232. w33.Part1 = p21
  4233. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4234. w34 = Instance.new("Weld", p34)
  4235. w34.Name = "Joint"
  4236. w34.Part0 = p34
  4237. w34.C0 = CFrame.new(0, -0.279842019, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4238. w34.Part1 = p27
  4239. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4240. w35 = Instance.new("Weld", p35)
  4241. w35.Name = "Joint"
  4242. w35.Part0 = p35
  4243. w35.C0 = CFrame.new(-0.139920607, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4244. w35.Part1 = p58
  4245. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4246. w36 = Instance.new("Weld", p36)
  4247. w36.Name = "Joint"
  4248. w36.Part0 = p36
  4249. w36.C0 = CFrame.new(0, -0.279843062, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4250. w36.Part1 = p29
  4251. w36.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4252. w37 = Instance.new("Weld", p37)
  4253. w37.Name = "Joint"
  4254. w37.Part0 = p37
  4255. w37.C0 = CFrame.new(0, 0.559682429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4256. w37.Part1 = p3
  4257. w37.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4258. w38 = Instance.new("Weld", p38)
  4259. w38.Name = "Joint"
  4260. w38.Part0 = p38
  4261. w38.C0 = CFrame.new(0, 0, 0.13992101, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4262. w38.Part1 = p4
  4263. w38.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4264. w39 = Instance.new("Weld", p39)
  4265. w39.Name = "Joint"
  4266. w39.Part0 = p39
  4267. w39.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4268. w39.Part1 = p12
  4269. w39.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4270. w40 = Instance.new("Weld", p40)
  4271. w40.Name = "Joint"
  4272. w40.Part0 = p40
  4273. w40.C0 = CFrame.new(0, -0.279843479, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4274. w40.Part1 = p52
  4275. w40.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4276. w41 = Instance.new("Weld", p41)
  4277. w41.Name = "Joint"
  4278. w41.Part0 = p41
  4279. w41.C0 = CFrame.new(0, -0.139921427, 0.0699607134, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4280. w41.Part1 = p5
  4281. w41.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4282. w42 = Instance.new("Weld", p42)
  4283. w42.Name = "Joint"
  4284. w42.Part0 = p42
  4285. w42.C0 = CFrame.new(0, -2.7097974e-006, 0.139925033, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4286. w42.Part1 = p8
  4287. w42.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4288. w43 = Instance.new("Weld", p43)
  4289. w43.Name = "Joint"
  4290. w43.Part0 = p43
  4291. w43.C0 = CFrame.new(0, -0.139921218, 0.0699607134, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4292. w43.Part1 = p5
  4293. w43.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4294. w44 = Instance.new("Weld", p44)
  4295. w44.Name = "Joint"
  4296. w44.Part0 = p44
  4297. w44.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4298. w44.Part1 = p15
  4299. w44.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4300. w45 = Instance.new("Weld", p45)
  4301. w45.Name = "Joint"
  4302. w45.Part0 = p45
  4303. w45.C0 = CFrame.new(0, -2.7097974e-006, 0.139921531, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4304. w45.Part1 = p11
  4305. w45.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4306. w46 = Instance.new("Weld", p46)
  4307. w46.Name = "Joint"
  4308. w46.Part0 = p46
  4309. w46.C0 = CFrame.new(0, -3.33513526e-006, 0.769562066, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4310. w46.Part1 = p6
  4311. w46.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4312. w47 = Instance.new("Weld", p47)
  4313. w47.Name = "Joint"
  4314. w47.Part0 = p47
  4315. w47.C0 = CFrame.new(-0.139920652, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4316. w47.Part1 = p18
  4317. w47.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4318. w48 = Instance.new("Weld", p48)
  4319. w48.Name = "Joint"
  4320. w48.Part0 = p48
  4321. w48.C0 = CFrame.new(0, 0.559684873, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4322. w48.Part1 = p37
  4323. w48.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4324. w49 = Instance.new("Weld", p49)
  4325. w49.Name = "Joint"
  4326. w49.Part0 = p49
  4327. w49.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4328. w49.Part1 = p47
  4329. w49.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4330. w50 = Instance.new("Weld", p50)
  4331. w50.Name = "Joint"
  4332. w50.Part0 = p50
  4333. w50.C0 = CFrame.new(0, 0.349801898, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4334. w50.Part1 = p6
  4335. w50.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4336. w51 = Instance.new("Weld", p51)
  4337. w51.Name = "Joint"
  4338. w51.Part0 = p51
  4339. w51.C0 = CFrame.new(-0.139921427, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4340. w51.Part1 = p52
  4341. w51.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4342. w52 = Instance.new("Weld", p52)
  4343. w52.Name = "Joint"
  4344. w52.Part0 = p52
  4345. w52.C0 = CFrame.new(-1.11936295, 0.0699607134, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4346. w52.Part1 = p3
  4347. w52.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4348. w53 = Instance.new("Weld", p53)
  4349. w53.Name = "Joint"
  4350. w53.Part0 = p53
  4351. w53.C0 = CFrame.new(0, 3.9604729e-006, 0.279851943, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4352. w53.Part1 = p9
  4353. w53.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4354. w54 = Instance.new("Weld", p54)
  4355. w54.Name = "Joint"
  4356. w54.Part0 = p54
  4357. w54.C0 = CFrame.new(0, 0.349802941, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4358. w54.Part1 = p9
  4359. w54.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4360. w55 = Instance.new("Weld", p55)
  4361. w55.Name = "Joint"
  4362. w55.Part0 = p55
  4363. w55.C0 = CFrame.new(0, -2.7097974e-006, 0.139916331, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4364. w55.Part1 = p8
  4365. w55.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4366. w56 = Instance.new("Weld", p56)
  4367. w56.Name = "Joint"
  4368. w56.Part0 = p56
  4369. w56.C0 = CFrame.new(0, 0, 0.139921322, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4370. w56.Part1 = p20
  4371. w56.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4372. w57 = Instance.new("Weld", p57)
  4373. w57.Name = "Joint"
  4374. w57.Part0 = p57
  4375. w57.C0 = CFrame.new(0, -0.139921427, -0.0699620694, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4376. w57.Part1 = p47
  4377. w57.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4378. w58 = Instance.new("Weld", p58)
  4379. w58.Name = "Joint"
  4380. w58.Part0 = p58
  4381. w58.C0 = CFrame.new(-1.11936343, 0.0699607134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4382. w58.Part1 = p3
  4383. w58.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4384. w59 = Instance.new("Weld", p59)
  4385. w59.Name = "Joint"
  4386. w59.Part0 = p59
  4387. w59.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4388. w59.Part1 = p32
  4389. w59.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4390. w60 = Instance.new("Weld", p61)
  4391. w60.Name = "Joint"
  4392. w60.Part0 = p61
  4393. w60.C0 = CFrame.new(-1.25928962, -0.0699586272, -8.33783815e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4394. w60.Part1 = p48
  4395. w60.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4396. w61 = Instance.new("Weld", p62)
  4397. w61.Name = "Joint"
  4398. w61.Part0 = p62
  4399. w61.C0 = CFrame.new(0, -0.139921635, 0.0699612424, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4400. w61.Part1 = p10
  4401. w61.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4402. w62 = Instance.new("Weld", p63)
  4403. w62.Name = "Joint"
  4404. w62.Part0 = p63
  4405. w62.C0 = CFrame.new(0, 0, 0.139920712, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4406. w62.Part1 = p7
  4407. w62.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4408. w63 = Instance.new("Weld", p64)
  4409. w63.Name = "Joint"
  4410. w63.Part0 = p64
  4411. w63.C0 = CFrame.new(0, -2.60557431e-006, 0.139913708, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4412. w63.Part1 = p54
  4413. w63.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4414. w64 = Instance.new("Weld", p65)
  4415. w64.Name = "Joint"
  4416. w64.Part0 = p65
  4417. w64.C0 = CFrame.new(0, -2.50135167e-006, 0.279843956, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4418. w64.Part1 = p13
  4419. w64.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4420. w65 = Instance.new("Weld", p66)
  4421. w65.Name = "Joint"
  4422. w65.Part0 = p66
  4423. w65.C0 = CFrame.new(0, 1.04222977e-006, 0.139921427, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4424. w65.Part1 = p52
  4425. w65.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4426. w66 = Instance.new("Weld", p67)
  4427. w66.Name = "Joint"
  4428. w66.Part0 = p67
  4429. w66.C0 = CFrame.new(0, -3.02246644e-006, 0.419757843, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4430. w66.Part1 = p16
  4431. w66.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4432. w67 = Instance.new("Weld", p68)
  4433. w67.Name = "Joint"
  4434. w67.Part0 = p68
  4435. w67.C0 = CFrame.new(0, -0.209878504, 0.0349741057, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4436. w67.Part1 = p11
  4437. w67.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4438. w68 = Instance.new("Weld", p69)
  4439. w68.Name = "Joint"
  4440. w68.Part0 = p69
  4441. w68.C0 = CFrame.new(0, -0.209878504, 0.0349861942, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4442. w68.Part1 = p11
  4443. w68.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4444. w69 = Instance.new("Weld", p70)
  4445. w69.Name = "Joint"
  4446. w69.Part0 = p70
  4447. w69.C0 = CFrame.new(0, -0.279843479, 0.0699616596, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4448. w69.Part1 = p58
  4449. w69.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4450. w70 = Instance.new("Weld", p71)
  4451. w70.Name = "Joint"
  4452. w70.Part0 = p71
  4453. w70.C0 = CFrame.new(0, -0.2098784, 0.0349679329, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4454. w70.Part1 = p54
  4455. w70.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4456. w71 = Instance.new("Weld", p72)
  4457. w71.Name = "Joint"
  4458. w71.Part0 = p72
  4459. w71.C0 = CFrame.new(0, -3.02246644e-006, 0.27983579, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4460. w71.Part1 = p9
  4461. w71.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4462. w72 = Instance.new("Weld", p73)
  4463. w72.Name = "Joint"
  4464. w72.Part0 = p73
  4465. w72.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4466. w72.Part1 = p13
  4467. w72.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4468. w73 = Instance.new("Weld", p74)
  4469. w73.Name = "Joint"
  4470. w73.Part0 = p74
  4471. w73.C0 = CFrame.new(0, -0.139921427, 0.0699612424, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4472. w73.Part1 = p10
  4473. w73.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4474. w74 = Instance.new("Weld", p75)
  4475. w74.Name = "Joint"
  4476. w74.Part0 = p75
  4477. w74.C0 = CFrame.new(0, -2.60557431e-006, 0.139928564, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4478. w74.Part1 = p54
  4479. w74.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4480. w75 = Instance.new("Weld", p76)
  4481. w75.Name = "Joint"
  4482. w75.Part0 = p76
  4483. w75.C0 = CFrame.new(0, -2.50135167e-006, 0.27984485, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4484. w75.Part1 = p32
  4485. w75.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4486. w76 = Instance.new("Weld", p77)
  4487. w76.Name = "Joint"
  4488. w76.Part0 = p77
  4489. w76.C0 = CFrame.new(0, 0, 0.139921635, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4490. w76.Part1 = p15
  4491. w76.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4492. w77 = Instance.new("Weld", p78)
  4493. w77.Name = "Joint"
  4494. w77.Part0 = p78
  4495. w77.C0 = CFrame.new(0, -0.139921427, -0.0699594691, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4496. w77.Part1 = p15
  4497. w77.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4498. w78 = Instance.new("Weld", p79)
  4499. w78.Name = "Joint"
  4500. w78.Part0 = p79
  4501. w78.C0 = CFrame.new(0, 0, 0.139921218, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4502. w78.Part1 = p51
  4503. w78.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4504. w79 = Instance.new("Weld", p80)
  4505. w79.Name = "Joint"
  4506. w79.Part0 = p80
  4507. w79.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4508. w79.Part1 = p12
  4509. w79.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4510. m6.Parent = torso
  4511. m6:MakeJoints()
  4512. ----------------------------------------------------
  4513. local cor6 = Instance.new("Part", torso.Cloak)
  4514. cor6.Name = "Thingy"
  4515. cor6.Locked = true
  4516. cor6.BottomSurface = 0
  4517. cor6.CanCollide = false
  4518. cor6.Size = Vector3.new(1,1,1)
  4519. cor6.Transparency = 1
  4520. cor6.TopSurface = 0
  4521. corw6 = Instance.new("Weld", cor6)
  4522. corw6.Part0 = torso
  4523. corw6.Part1 = cor6
  4524. corw6.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4525. corw6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4526. weld6 = Instance.new("Weld", torso.Cloak.NeckPart)
  4527. weld6.Part0 = cor6
  4528. weld6.Part1 = torso.Cloak.NeckPart
  4529. weld6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4530. --Amulet
  4531. m7 = Instance.new("Model")
  4532. m7.Name = "Amulet"
  4533. p1 = Instance.new("Part", m7)
  4534. p1.BrickColor = BrickColor.new("Lime green")
  4535. p1.Material = Enum.Material.Neon
  4536. p1.Name = "Center"
  4537. p1.CFrame = CFrame.new(-1.0658141e-014, 14.4125643, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4538. p1.CanCollide = false
  4539. p1.Locked = true
  4540. p1.FormFactor = Enum.FormFactor.Custom
  4541. p1.Shape = Enum.PartType.Cylinder
  4542. p1.Size = Vector3.new(0.5, 0.5, 0.5)
  4543. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4544. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4545. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4546. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4547. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4548. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4549. p2 = Instance.new("Part", m7)
  4550. p2.BrickColor = BrickColor.new("Really black")
  4551. p2.Material = Enum.Material.Metal
  4552. p2.Name = "Bottom"
  4553. p2.CFrame = CFrame.new(1.19209318e-007, 14.1625719, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4554. p2.CanCollide = false
  4555. p2.Locked = true
  4556. p2.FormFactor = Enum.FormFactor.Custom
  4557. p2.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  4558. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4559. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4560. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4561. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4562. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4563. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4564. b1 = Instance.new("SpecialMesh", p2)
  4565. b1.MeshType = Enum.MeshType.Cylinder
  4566. b1.Name = "Mesh"
  4567. p3 = Instance.new("Part", m7)
  4568. p3.BrickColor = BrickColor.new("Really black")
  4569. p3.Material = Enum.Material.Metal
  4570. p3.CFrame = CFrame.new(1.23580463e-007, 14.4625673, -0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4571. p3.CanCollide = false
  4572. p3.Locked = true
  4573. p3.FormFactor = Enum.FormFactor.Custom
  4574. p3.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4575. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4576. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4577. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4578. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4579. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4580. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4581. b2 = Instance.new("SpecialMesh", p3)
  4582. b2.MeshType = Enum.MeshType.Brick
  4583. b2.Name = "Mesh"
  4584. b2.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4585. p4 = Instance.new("Part", m7)
  4586. p4.BrickColor = BrickColor.new("Really black")
  4587. p4.Material = Enum.Material.Metal
  4588. p4.CFrame = CFrame.new(1.19209318e-007, 14.4625673, 0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4589. p4.CanCollide = false
  4590. p4.Locked = true
  4591. p4.FormFactor = Enum.FormFactor.Custom
  4592. p4.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4593. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4594. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4595. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4596. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4597. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4598. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4599. b3 = Instance.new("SpecialMesh", p4)
  4600. b3.MeshType = Enum.MeshType.Brick
  4601. b3.Name = "Mesh"
  4602. b3.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4603. p5 = Instance.new("Part", m7)
  4604. p5.BrickColor = BrickColor.new("Really black")
  4605. p5.Material = Enum.Material.Metal
  4606. p5.CFrame = CFrame.new(0.14000012, 14.4625673, -0.242487118, -3.78551732e-008, -0.866025388, -0.5, 1, -4.37113883e-008, 0, -2.18556941e-008, -0.5, 0.866025388)
  4607. p5.CanCollide = false
  4608. p5.Locked = true
  4609. p5.FormFactor = Enum.FormFactor.Custom
  4610. p5.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4611. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4612. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4613. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4614. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4615. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4616. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4617. b4 = Instance.new("SpecialMesh", p5)
  4618. b4.MeshType = Enum.MeshType.Brick
  4619. b4.Name = "Mesh"
  4620. b4.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4621. p6 = Instance.new("Part", m7)
  4622. p6.BrickColor = BrickColor.new("Really black")
  4623. p6.Material = Enum.Material.Metal
  4624. p6.CFrame = CFrame.new(-0.139999881, 14.4625673, 0.242487103, -3.78551732e-008, -0.866025388, -0.5, 1, -4.37113883e-008, 0, -2.18556941e-008, -0.5, 0.866025388)
  4625. p6.CanCollide = false
  4626. p6.Locked = true
  4627. p6.FormFactor = Enum.FormFactor.Custom
  4628. p6.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4629. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4630. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4631. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4632. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4633. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4634. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4635. b5 = Instance.new("SpecialMesh", p6)
  4636. b5.MeshType = Enum.MeshType.Brick
  4637. b5.Name = "Mesh"
  4638. b5.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4639. p7 = Instance.new("Part", m7)
  4640. p7.BrickColor = BrickColor.new("Really black")
  4641. p7.Material = Enum.Material.Metal
  4642. p7.CFrame = CFrame.new(-0.242486984, 14.4625673, 0.139999986, -2.18556924e-008, -0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551732e-008, -0.866025388, 0.5)
  4643. p7.CanCollide = false
  4644. p7.Locked = true
  4645. p7.FormFactor = Enum.FormFactor.Custom
  4646. p7.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4647. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4648. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4649. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4650. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4651. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4652. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4653. b6 = Instance.new("SpecialMesh", p7)
  4654. b6.MeshType = Enum.MeshType.Brick
  4655. b6.Name = "Mesh"
  4656. b6.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4657. p8 = Instance.new("Part", m7)
  4658. p8.BrickColor = BrickColor.new("Really black")
  4659. p8.Material = Enum.Material.Metal
  4660. p8.CFrame = CFrame.new(0.242487192, 14.4625673, -0.139999971, -2.18556924e-008, -0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551732e-008, -0.866025388, 0.5)
  4661. p8.CanCollide = false
  4662. p8.Locked = true
  4663. p8.FormFactor = Enum.FormFactor.Custom
  4664. p8.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4665. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4666. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4667. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4668. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4669. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4670. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4671. b7 = Instance.new("SpecialMesh", p8)
  4672. b7.MeshType = Enum.MeshType.Brick
  4673. b7.Name = "Mesh"
  4674. b7.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4675. p9 = Instance.new("Part", m7)
  4676. p9.BrickColor = BrickColor.new("Really black")
  4677. p9.Material = Enum.Material.Metal
  4678. p9.CFrame = CFrame.new(0.280000091, 14.4625673, -1.64313008e-014, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  4679. p9.CanCollide = false
  4680. p9.Locked = true
  4681. p9.FormFactor = Enum.FormFactor.Custom
  4682. p9.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4683. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4684. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4685. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4686. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4687. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4688. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4689. b8 = Instance.new("SpecialMesh", p9)
  4690. b8.MeshType = Enum.MeshType.Brick
  4691. b8.Name = "Mesh"
  4692. b8.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4693. p10 = Instance.new("Part", m7)
  4694. p10.BrickColor = BrickColor.new("Really black")
  4695. p10.Material = Enum.Material.Metal
  4696. p10.CFrame = CFrame.new(-0.279999852, 14.4625673, -1.49011772e-008, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  4697. p10.CanCollide = false
  4698. p10.Locked = true
  4699. p10.FormFactor = Enum.FormFactor.Custom
  4700. p10.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4701. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4702. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4703. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4704. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4705. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4706. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4707. b9 = Instance.new("SpecialMesh", p10)
  4708. b9.MeshType = Enum.MeshType.Brick
  4709. b9.Name = "Mesh"
  4710. b9.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4711. p11 = Instance.new("Part", m7)
  4712. p11.BrickColor = BrickColor.new("Really black")
  4713. p11.Material = Enum.Material.Metal
  4714. p11.CFrame = CFrame.new(-0.242486984, 14.4625673, -0.139999986, 2.18556906e-008, 0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551697e-008, -0.866025388, -0.5)
  4715. p11.CanCollide = false
  4716. p11.Locked = true
  4717. p11.FormFactor = Enum.FormFactor.Custom
  4718. p11.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4719. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4720. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4721. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4722. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4723. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4724. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4725. b10 = Instance.new("SpecialMesh", p11)
  4726. b10.MeshType = Enum.MeshType.Brick
  4727. b10.Name = "Mesh"
  4728. b10.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4729. p12 = Instance.new("Part", m7)
  4730. p12.BrickColor = BrickColor.new("Really black")
  4731. p12.Material = Enum.Material.Metal
  4732. p12.CFrame = CFrame.new(0.242487192, 14.4625673, 0.139999971, 2.18556906e-008, 0.5, -0.866025388, 1, -4.37113847e-008, 0, -3.78551697e-008, -0.866025388, -0.5)
  4733. p12.CanCollide = false
  4734. p12.Locked = true
  4735. p12.FormFactor = Enum.FormFactor.Custom
  4736. p12.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4737. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4738. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4739. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4740. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4741. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4742. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4743. b11 = Instance.new("SpecialMesh", p12)
  4744. b11.MeshType = Enum.MeshType.Brick
  4745. b11.Name = "Mesh"
  4746. b11.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4747. p13 = Instance.new("Part", m7)
  4748. p13.BrickColor = BrickColor.new("Really black")
  4749. p13.Material = Enum.Material.Metal
  4750. p13.CFrame = CFrame.new(-0.139999866, 14.4625673, -0.242487073, 3.78551732e-008, 0.866025388, -0.5, 1, -4.37113812e-008, 1.77635684e-015, -2.18556924e-008, -0.5, -0.866025388)
  4751. p13.CanCollide = false
  4752. p13.Locked = true
  4753. p13.FormFactor = Enum.FormFactor.Custom
  4754. p13.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4755. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4756. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4757. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4758. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4759. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4760. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4761. b12 = Instance.new("SpecialMesh", p13)
  4762. b12.MeshType = Enum.MeshType.Brick
  4763. b12.Name = "Mesh"
  4764. b12.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4765. p14 = Instance.new("Part", m7)
  4766. p14.BrickColor = BrickColor.new("Really black")
  4767. p14.Material = Enum.Material.Metal
  4768. p14.CFrame = CFrame.new(0.14000012, 14.4625673, 0.242487073, 3.78551732e-008, 0.866025388, -0.5, 1, -4.37113812e-008, 1.77635684e-015, -2.18556924e-008, -0.5, -0.866025388)
  4769. p14.CanCollide = false
  4770. p14.Locked = true
  4771. p14.FormFactor = Enum.FormFactor.Custom
  4772. p14.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4773. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4774. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4775. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4776. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4777. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4778. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4779. b13 = Instance.new("SpecialMesh", p14)
  4780. b13.MeshType = Enum.MeshType.Brick
  4781. b13.Name = "Mesh"
  4782. b13.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4783. p15 = Instance.new("Part", m7)
  4784. p15.BrickColor = BrickColor.new("Really black")
  4785. p15.Material = Enum.Material.Metal
  4786. p15.Name = "Top"
  4787. p15.CFrame = CFrame.new(0, 14.7125645, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4788. p15.CanCollide = false
  4789. p15.Locked = true
  4790. p15.FormFactor = Enum.FormFactor.Custom
  4791. p15.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  4792. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4793. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4794. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4795. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4796. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4797. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4798. b14 = Instance.new("SpecialMesh", p15)
  4799. b14.MeshType = Enum.MeshType.Cylinder
  4800. b14.Name = "Mesh"
  4801. w1 = Instance.new("Weld", p1)
  4802. w1.Name = "Joint"
  4803. w1.Part0 = p1
  4804. w1.C0 = CFrame.new(0.300000191, -1.31134357e-008, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4805. w1.Part1 = p15
  4806. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4807. w2 = Instance.new("Weld", p2)
  4808. w2.Name = "Joint"
  4809. w2.Part0 = p2
  4810. w2.C0 = CFrame.new(0.249992371, 1.08281824e-007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4811. w2.Part1 = p1
  4812. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4813. w3 = Instance.new("Weld", p3)
  4814. w3.Name = "Joint"
  4815. w3.Part0 = p3
  4816. w3.C0 = CFrame.new(-0.0500030518, 1.25766178e-007, 0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4817. w3.Part1 = p1
  4818. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4819. w4 = Instance.new("Weld", p4)
  4820. w4.Name = "Joint"
  4821. w4.Part0 = p4
  4822. w4.C0 = CFrame.new(-0.0500030518, 1.21395033e-007, -0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4823. w4.Part1 = p1
  4824. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4825. w5 = Instance.new("Weld", p5)
  4826. w5.Name = "Joint"
  4827. w5.Part0 = p5
  4828. w5.C0 = CFrame.new(-0.0500030518, 1.00163732e-007, 0.280000061, 1, -5.85621507e-009, -2.18556941e-008, -5.85621507e-009, 0.866025388, -0.5, 2.18556941e-008, 0.5, 0.866025388)
  4829. w5.Part1 = p1
  4830. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4831. w6 = Instance.new("Weld", p6)
  4832. w6.Name = "Joint"
  4833. w6.Part0 = p6
  4834. w6.C0 = CFrame.new(-0.0500030518, 1.00163732e-007, -0.279999942, 1, -5.85621507e-009, -2.18556941e-008, -5.85621507e-009, 0.866025388, -0.5, 2.18556941e-008, 0.5, 0.866025388)
  4835. w6.Part1 = p1
  4836. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4837. w7 = Instance.new("Weld", p7)
  4838. w7.Name = "Joint"
  4839. w7.Part0 = p7
  4840. w7.C0 = CFrame.new(-0.0500030518, 5.54602479e-008, -0.279999882, 1, -2.18556959e-008, -3.78551732e-008, -2.18556906e-008, 0.5, -0.866025388, 3.78551732e-008, 0.866025388, 0.5)
  4841. w7.Part1 = p1
  4842. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4843. w8 = Instance.new("Weld", p8)
  4844. w8.Name = "Joint"
  4845. w8.Part0 = p8
  4846. w8.C0 = CFrame.new(-0.0500030518, 7.03614091e-008, 0.280000061, 1, -2.18556959e-008, -3.78551732e-008, -2.18556906e-008, 0.5, -0.866025388, 3.78551732e-008, 0.866025388, 0.5)
  4847. w8.Part1 = p1
  4848. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4849. w9 = Instance.new("Weld", p9)
  4850. w9.Name = "Joint"
  4851. w9.Part0 = p9
  4852. w9.C0 = CFrame.new(-0.0500030518, 2.1856863e-009, 0.280000091, 1, -4.37113883e-008, -4.37113847e-008, -4.37113847e-008, 1.91068525e-015, -1, 4.37113883e-008, 1, 0)
  4853. w9.Part1 = p1
  4854. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4855. w10 = Instance.new("Weld", p10)
  4856. w10.Name = "Joint"
  4857. w10.Part0 = p10
  4858. w10.C0 = CFrame.new(-0.0500030518, -1.27154749e-008, -0.279999852, 1, -4.37113883e-008, -4.37113847e-008, -4.37113847e-008, 1.91068525e-015, -1, 4.37113883e-008, 1, 0)
  4859. w10.Part1 = p1
  4860. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4861. w11 = Instance.new("Weld", p11)
  4862. w11.Name = "Joint"
  4863. w11.Part0 = p11
  4864. w11.C0 = CFrame.new(-0.0500030518, -5.6298461e-008, -0.279999882, 1, -6.55670789e-008, -3.78551697e-008, -6.55670789e-008, -0.5, -0.866025388, 3.78551732e-008, 0.866025388, -0.5)
  4865. w11.Part1 = p1
  4866. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4867. w12 = Instance.new("Weld", p12)
  4868. w12.Name = "Joint"
  4869. w12.Part0 = p12
  4870. w12.C0 = CFrame.new(-0.0500030518, -6.37490416e-008, 0.280000061, 1, -6.55670789e-008, -3.78551697e-008, -6.55670789e-008, -0.5, -0.866025388, 3.78551732e-008, 0.866025388, -0.5)
  4871. w12.Part1 = p1
  4872. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4873. w13 = Instance.new("Weld", p13)
  4874. w13.Name = "Joint"
  4875. w13.Part0 = p13
  4876. w13.C0 = CFrame.new(-0.0500030518, -1.01001945e-007, -0.279999912, 1, -8.15665615e-008, -2.18556924e-008, -8.15665544e-008, -0.866025388, -0.5, 2.18556959e-008, 0.5, -0.866025388)
  4877. w13.Part1 = p1
  4878. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4879. w14 = Instance.new("Weld", p14)
  4880. w14.Name = "Joint"
  4881. w14.Part0 = p14
  4882. w14.C0 = CFrame.new(-0.0500030518, -1.08452525e-007, 0.280000031, 1, -8.15665615e-008, -2.18556924e-008, -8.15665544e-008, -0.866025388, -0.5, 2.18556959e-008, 0.5, -0.866025388)
  4883. w14.Part1 = p1
  4884. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4885. m7.Parent = torso
  4886. m7:MakeJoints()
  4887. ----------------------------------------------------
  4888. local cor7 = Instance.new("Part", torso.Amulet)
  4889. cor7.Name = "Thingy"
  4890. cor7.Locked = true
  4891. cor7.BottomSurface = 0
  4892. cor7.CanCollide = false
  4893. cor7.Size = Vector3.new(1, 1, 1)
  4894. cor7.Transparency = 1
  4895. cor7.TopSurface = 0
  4896. corw7 = Instance.new("Weld", cor7)
  4897. corw7.Part0 = torso.Torso.Connection
  4898. corw7.Part1 = cor7
  4899. corw7.C0 = CFrame.new(0, 0.26, 0.1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  4900. corw7.C1 = CFrame.new(0, -0.2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(140))
  4901. weld7 = Instance.new("Weld", torso.Amulet)
  4902. weld7.Part0 = cor7
  4903. weld7.Part1 = torso.Amulet.Top
  4904. weld7.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4905. --Zyrodoxa
  4906. m8 = Instance.new("Model")
  4907. m8.Name = "Zyrodoxa"
  4908. p1 = Instance.new("Part", m8)
  4909. p1.BrickColor = BrickColor.new("Really black")
  4910. p1.Material = Enum.Material.Metal
  4911. p1.Reflectance = 0.40000000596046
  4912. p1.Name = "Block"
  4913. p1.CFrame = CFrame.new(2.70000019e-005, -11.6870832, 1.45529819, 1, -1.44446419e-008, -1.27813706e-008, -1.84925408e-008, -0.906311333, -0.422620147, -5.47969492e-009, 0.422620773, -0.906312048)
  4914. p1.CanCollide = false
  4915. p1.Locked = true
  4916. p1.FormFactor = Enum.FormFactor.Custom
  4917. p1.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4918. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4919. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4920. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4921. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4922. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4923. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4924. b1 = Instance.new("BlockMesh", p1)
  4925. b1.Name = "Mesh"
  4926. b1.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  4927. p2 = Instance.new("Part", m8)
  4928. p2.BrickColor = BrickColor.new("Black")
  4929. p2.Material = Enum.Material.Metal
  4930. p2.Reflectance = 0.40000000596046
  4931. p2.Name = "Block"
  4932. p2.CFrame = CFrame.new(2.7e-005, -11.9090996, 0.428020298, 1, -1.85014493e-008, -5.47575318e-009, -1.85010585e-008, -1.00000393, -1.49011612e-007, -5.47616175e-009, 4.91738319e-007, -1.00000477)
  4933. p2.CanCollide = false
  4934. p2.Locked = true
  4935. p2.FormFactor = Enum.FormFactor.Custom
  4936. p2.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4937. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4938. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4939. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4940. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4941. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4942. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4943. b2 = Instance.new("BlockMesh", p2)
  4944. b2.Name = "Mesh"
  4945. b2.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  4946. p3 = Instance.new("Part", m8)
  4947. p3.BrickColor = BrickColor.new("Black")
  4948. p3.Material = Enum.Material.Metal
  4949. p3.Reflectance = 0.40000000596046
  4950. p3.Name = "Block"
  4951. p3.CFrame = CFrame.new(2.7e-005, -11.9091024, 0.959298849, 1, -1.85014493e-008, -5.47575318e-009, -1.85010585e-008, -1.00000393, -1.49011612e-007, -5.47616175e-009, 4.91738319e-007, -1.00000477)
  4952. p3.CanCollide = false
  4953. p3.Locked = true
  4954. p3.FormFactor = Enum.FormFactor.Custom
  4955. p3.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4956. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4957. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4958. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4959. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4960. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4961. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4962. b3 = Instance.new("BlockMesh", p3)
  4963. b3.Name = "Mesh"
  4964. b3.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  4965. p4 = Instance.new("Part", m8)
  4966. p4.BrickColor = BrickColor.new("Lime green")
  4967. p4.Material = Enum.Material.Metal
  4968. p4.Name = "Block"
  4969. p4.CFrame = CFrame.new(2.69999982e-005, -11.8500671, -1.24697566, 1, -4.30586944e-008, -5.26493444e-008, -5.9326311e-008, -0.173648626, -0.984811544, 3.32618768e-008, 0.984812438, -0.173648432)
  4970. p4.CanCollide = false
  4971. p4.Locked = true
  4972. p4.FormFactor = Enum.FormFactor.Custom
  4973. p4.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  4974. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4975. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4976. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4977. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4978. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4979. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4980. b4 = Instance.new("BlockMesh", p4)
  4981. b4.Name = "Mesh"
  4982. b4.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  4983. p5 = Instance.new("Part", m8)
  4984. p5.BrickColor = BrickColor.new("Lime green")
  4985. p5.Material = Enum.Material.Neon
  4986. p5.Reflectance = 0.40000000596046
  4987. p5.Name = "Block"
  4988. p5.CFrame = CFrame.new(2.69999982e-005, -11.9034386, -0.304960132, 1, -1.92584508e-008, 1.18294885e-009, -1.85012432e-008, -0.939696193, 0.342021227, -5.47556045e-009, -0.342021167, -0.939697087)
  4989. p5.CanCollide = false
  4990. p5.Locked = true
  4991. p5.FormFactor = Enum.FormFactor.Custom
  4992. p5.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  4993. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4994. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4995. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4996. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4997. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4998. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4999. b5 = Instance.new("BlockMesh", p5)
  5000. b5.Name = "Mesh"
  5001. b5.Scale = Vector3.new(0.334640861, 0.200784534, 0.669281721)
  5002. p6 = Instance.new("Part", m8)
  5003. p6.BrickColor = BrickColor.new("Parsley green")
  5004. p6.Material = Enum.Material.Metal
  5005. p6.Name = "Block"
  5006. p6.CFrame = CFrame.new(2.69999982e-005, -11.8500729, -0.678800821, 1, -4.08902388e-008, -5.95267018e-008, -5.9526478e-008, 1.1920929e-007, -1.0000037, 4.08900789e-008, 1.00000453, 5.36441803e-007)
  5007. p6.CanCollide = false
  5008. p6.Locked = true
  5009. p6.FormFactor = Enum.FormFactor.Custom
  5010. p6.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5011. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5012. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5013. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5014. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5015. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5016. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5017. b6 = Instance.new("BlockMesh", p6)
  5018. b6.Name = "Mesh"
  5019. b6.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5020. p7 = Instance.new("Part", m8)
  5021. p7.BrickColor = BrickColor.new("Lime green")
  5022. p7.Material = Enum.Material.Neon
  5023. p7.Reflectance = 0.40000000596046
  5024. p7.Name = "Block"
  5025. p7.CFrame = CFrame.new(2.69999982e-005, -11.957509, 0.917527318, 1, -2.28536976e-008, 8.68393135e-010, -2.22993837e-008, -0.965929389, 0.258820087, -5.07656006e-009, -0.258819878, -0.965930223)
  5026. p7.CanCollide = false
  5027. p7.Locked = true
  5028. p7.FormFactor = Enum.FormFactor.Custom
  5029. p7.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5030. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5031. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5032. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5033. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5034. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5035. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5036. b7 = Instance.new("BlockMesh", p7)
  5037. b7.Name = "Mesh"
  5038. b7.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5039. p8 = Instance.new("Part", m8)
  5040. p8.BrickColor = BrickColor.new("Lime green")
  5041. p8.Material = Enum.Material.Neon
  5042. p8.Reflectance = 0.40000000596046
  5043. p8.Name = "Block"
  5044. p8.CFrame = CFrame.new(2.7e-005, -11.8956118, 0.105731606, 1, -1.92584473e-008, 1.1829453e-009, -1.85012521e-008, -0.939696133, 0.342021048, -5.47555823e-009, -0.342020899, -0.939696968)
  5045. p8.CanCollide = false
  5046. p8.Locked = true
  5047. p8.FormFactor = Enum.FormFactor.Custom
  5048. p8.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5049. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5050. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5051. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5052. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5053. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5054. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5055. b8 = Instance.new("BlockMesh", p8)
  5056. b8.Name = "Mesh"
  5057. b8.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5058. p9 = Instance.new("Part", m8)
  5059. p9.BrickColor = BrickColor.new("Really black")
  5060. p9.Material = Enum.Material.Metal
  5061. p9.Reflectance = 0.40000000596046
  5062. p9.Name = "Block"
  5063. p9.CFrame = CFrame.new(2.69999982e-005, -11.7615223, 0.959302187, 1, -1.85016091e-008, -5.47516965e-009, -1.85012485e-008, -1.00000358, -1.1920929e-007, -5.47556001e-009, 5.36441803e-007, -1.00000429)
  5064. p9.CanCollide = false
  5065. p9.Locked = true
  5066. p9.FormFactor = Enum.FormFactor.Custom
  5067. p9.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5068. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5069. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5070. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5071. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5072. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5073. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5074. b9 = Instance.new("BlockMesh", p9)
  5075. b9.Name = "Mesh"
  5076. b9.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5077. p10 = Instance.new("Part", m8)
  5078. p10.BrickColor = BrickColor.new("Really black")
  5079. p10.Material = Enum.Material.Metal
  5080. p10.Reflectance = 0.40000000596046
  5081. p10.Name = "Block"
  5082. p10.CFrame = CFrame.new(2.69999982e-005, -11.5473213, 1.65489614, 1, -9.20203203e-009, -1.69509313e-008, -1.84925799e-008, -0.707108974, -0.70710963, -5.47968293e-009, 0.707110405, -0.707109272)
  5083. p10.CanCollide = false
  5084. p10.Locked = true
  5085. p10.FormFactor = Enum.FormFactor.Custom
  5086. p10.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5087. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5088. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5089. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5090. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5091. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5092. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5093. b10 = Instance.new("BlockMesh", p10)
  5094. b10.Name = "Mesh"
  5095. b10.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5096. p11 = Instance.new("Part", m8)
  5097. p11.BrickColor = BrickColor.new("Black")
  5098. p11.Material = Enum.Material.Metal
  5099. p11.Name = "Circle"
  5100. p11.CFrame = CFrame.new(2.7e-005, -11.6729841, -0.582877517, 1, -3.82200724e-008, -1.58314464e-008, -1.58310698e-008, 1.78813934e-007, -1.00000358, 3.82198735e-008, 1.00000429, 4.17232513e-007)
  5101. p11.CanCollide = false
  5102. p11.Locked = true
  5103. p11.FormFactor = Enum.FormFactor.Custom
  5104. p11.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  5105. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5106. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5107. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5108. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5109. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5110. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5111. b11 = Instance.new("CylinderMesh", p11)
  5112. b11.Name = "Mesh"
  5113. b11.Scale = Vector3.new(1, 0.401569068, 1)
  5114. p12 = Instance.new("Part", m8)
  5115. p12.BrickColor = BrickColor.new("Lime green")
  5116. p12.Material = Enum.Material.Neon
  5117. p12.Reflectance = 0.40000000596046
  5118. p12.Name = "Block"
  5119. p12.CFrame = CFrame.new(2.7e-005, -11.8956079, 0.673061967, 1, -1.56491176e-008, -8.14766423e-008, -1.31608857e-008, 0.939695954, -0.342021048, 8.1915303e-008, 0.342021108, 0.939696789)
  5120. p12.CanCollide = false
  5121. p12.Locked = true
  5122. p12.FormFactor = Enum.FormFactor.Custom
  5123. p12.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5124. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5125. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5126. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5127. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5128. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5129. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5130. b12 = Instance.new("BlockMesh", p12)
  5131. b12.Name = "Mesh"
  5132. b12.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5133. p13 = Instance.new("Part", m8)
  5134. p13.BrickColor = BrickColor.new("Lime green")
  5135. p13.Material = Enum.Material.Metal
  5136. p13.Name = "Block"
  5137. p13.CFrame = CFrame.new(2.7e-005, -11.85007, -1.195328, 1, -4.3058666e-008, -5.26493267e-008, -5.93263003e-008, -0.173648536, -0.984811068, 3.32618555e-008, 0.984811902, -0.173648447)
  5138. p13.CanCollide = false
  5139. p13.Locked = true
  5140. p13.FormFactor = Enum.FormFactor.Custom
  5141. p13.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5142. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5143. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5144. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5145. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5146. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5147. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5148. b13 = Instance.new("BlockMesh", p13)
  5149. b13.Name = "Mesh"
  5150. b13.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5151. p14 = Instance.new("Part", m8)
  5152. p14.BrickColor = BrickColor.new("Black")
  5153. p14.Material = Enum.Material.Metal
  5154. p14.Reflectance = 0.40000000596046
  5155. p14.Name = "Block"
  5156. p14.CFrame = CFrame.new(2.7e-005, -11.6456089, 1.7017076, 1, -9.79658932e-009, -1.66229128e-008, -1.85012112e-008, -0.731357634, -0.681998909, -5.47637935e-009, 0.681999564, -0.731357992)
  5157. p14.CanCollide = false
  5158. p14.Locked = true
  5159. p14.FormFactor = Enum.FormFactor.Custom
  5160. p14.Size = Vector3.new(0.220499977, 0.220499977, 0.332047403)
  5161. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5162. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5163. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5164. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5165. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5166. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5167. b14 = Instance.new("BlockMesh", p14)
  5168. b14.Name = "Mesh"
  5169. b14.Scale = Vector3.new(0.267712682, 0.535425484, 1)
  5170. p15 = Instance.new("Part", m8)
  5171. p15.BrickColor = BrickColor.new("Really black")
  5172. p15.Material = Enum.Material.Metal
  5173. p15.Reflectance = 0.40000000596046
  5174. p15.Name = "Block"
  5175. p15.CFrame = CFrame.new(2.7e-005, -11.761528, 0.162387252, 1, -1.85015949e-008, -5.47519008e-009, -1.85012503e-008, -1.00000322, -4.47054163e-008, -5.47555512e-009, 3.27827877e-007, -1.00000393)
  5176. p15.CanCollide = false
  5177. p15.Locked = true
  5178. p15.FormFactor = Enum.FormFactor.Custom
  5179. p15.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5180. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5181. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5182. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5183. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5184. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5185. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5186. b15 = Instance.new("BlockMesh", p15)
  5187. b15.Name = "Mesh"
  5188. b15.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5189. p16 = Instance.new("Part", m8)
  5190. p16.BrickColor = BrickColor.new("Really black")
  5191. p16.Material = Enum.Material.Metal
  5192. p16.Name = "Handle"
  5193. p16.CFrame = CFrame.new(2.7e-005, -11.8500671, -1.1215378, 1, -4.08902174e-008, -5.95266769e-008, -5.95264673e-008, 4.47054163e-008, -1.00000322, 4.08900469e-008, 1.00000393, 3.27827877e-007)
  5194. p16.CanCollide = false
  5195. p16.Locked = true
  5196. p16.FormFactor = Enum.FormFactor.Custom
  5197. p16.Size = Vector3.new(0.220499977, 0.97400558, 0.220499977)
  5198. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5199. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5200. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5201. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5202. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5203. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5204. b16 = Instance.new("BlockMesh", p16)
  5205. b16.Name = "Mesh"
  5206. b16.Scale = Vector3.new(0.602353573, 1, 0.602353573)
  5207. p17 = Instance.new("Part", m8)
  5208. p17.BrickColor = BrickColor.new("Lime green")
  5209. p17.Material = Enum.Material.Neon
  5210. p17.Reflectance = 0.40000000596046
  5211. p17.Name = "Block"
  5212. p17.CFrame = CFrame.new(2.7e-005, -11.9214983, 1.1695174, 1, -3.32851862e-008, -1.92677874e-009, -3.32848948e-008, -1.00000322, 5.51342964e-007, -1.92714822e-009, -2.68220901e-007, -1.00000393)
  5213. p17.CanCollide = false
  5214. p17.Locked = true
  5215. p17.FormFactor = Enum.FormFactor.Custom
  5216. p17.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5217. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5218. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5219. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5220. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5221. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5222. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5223. b17 = Instance.new("BlockMesh", p17)
  5224. b17.Name = "Mesh"
  5225. b17.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5226. p18 = Instance.new("Part", m8)
  5227. p18.BrickColor = BrickColor.new("Really black")
  5228. p18.Material = Enum.Material.Metal
  5229. p18.Name = "Block"
  5230. p18.CFrame = CFrame.new(2.70000019e-005, -11.9708652, -1.76740301, 1, -9.71849161e-008, 2.00753263e-007, -1.30568921e-007, -0.984810889, 0.173648641, 1.80827797e-007, -0.173648477, -0.984811544)
  5231. p18.CanCollide = false
  5232. p18.Locked = true
  5233. p18.FormFactor = Enum.FormFactor.Custom
  5234. p18.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5235. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5236. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5237. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5238. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5239. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5240. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5241. b18 = Instance.new("BlockMesh", p18)
  5242. b18.Name = "Mesh"
  5243. b18.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5244. p19 = Instance.new("Part", m8)
  5245. p19.BrickColor = BrickColor.new("Black")
  5246. p19.Material = Enum.Material.Metal
  5247. p19.Reflectance = 0.40000000596046
  5248. p19.Name = "Block"
  5249. p19.CFrame = CFrame.new(2.7e-005, -11.9090967, -0.10325551, 1, -1.85013889e-008, -5.47580603e-009, -1.85010975e-008, -1.0000031, -5.21540642e-008, -5.47609691e-009, 3.20374966e-007, -1.0000037)
  5250. p19.CanCollide = false
  5251. p19.Locked = true
  5252. p19.FormFactor = Enum.FormFactor.Custom
  5253. p19.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5254. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5255. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5256. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5257. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5258. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5259. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5260. b19 = Instance.new("BlockMesh", p19)
  5261. b19.Name = "Mesh"
  5262. b19.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5263. p20 = Instance.new("Part", m8)
  5264. p20.BrickColor = BrickColor.new("Lime green")
  5265. p20.Material = Enum.Material.Metal
  5266. p20.Name = "Block"
  5267. p20.CFrame = CFrame.new(2.69999982e-005, -11.8500719, -0.937063575, 1, -4.21245474e-008, -5.61353133e-008, -5.9592935e-008, -0.0871559381, -0.996197701, 3.70716151e-008, 0.996198356, -0.0871557295)
  5268. p20.CanCollide = false
  5269. p20.Locked = true
  5270. p20.FormFactor = Enum.FormFactor.Custom
  5271. p20.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5272. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5273. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5274. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5275. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5276. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5277. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5278. b20 = Instance.new("BlockMesh", p20)
  5279. b20.Name = "Mesh"
  5280. b20.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5281. p21 = Instance.new("Part", m8)
  5282. p21.BrickColor = BrickColor.new("Really black")
  5283. p21.Material = Enum.Material.Metal
  5284. p21.Name = "Block"
  5285. p21.CFrame = CFrame.new(2.69999982e-005, -11.7520199, -1.68255222, 1, 1.93163316e-008, -6.95866973e-008, -5.9526478e-008, 0.766046822, -0.642789543, 4.08900966e-008, 0.642789721, 0.766047418)
  5286. p21.CanCollide = false
  5287. p21.Locked = true
  5288. p21.FormFactor = Enum.FormFactor.Custom
  5289. p21.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5290. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5291. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5292. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5293. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5294. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5295. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5296. b21 = Instance.new("BlockMesh", p21)
  5297. b21.Name = "Mesh"
  5298. b21.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5299. p22 = Instance.new("Part", m8)
  5300. p22.BrickColor = BrickColor.new("Really black")
  5301. p22.Material = Enum.Material.Metal
  5302. p22.Reflectance = 0.40000000596046
  5303. p22.Name = "Block"
  5304. p22.CFrame = CFrame.new(2.69999964e-005, -11.7615223, -0.368889451, 1, -1.85015665e-008, -5.4752185e-009, -1.85012787e-008, -1.0000031, -5.96046448e-008, -5.47550449e-009, 3.87430191e-007, -1.0000037)
  5305. p22.CanCollide = false
  5306. p22.Locked = true
  5307. p22.FormFactor = Enum.FormFactor.Custom
  5308. p22.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5309. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5310. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5311. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5312. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5313. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5314. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5315. b22 = Instance.new("BlockMesh", p22)
  5316. b22.Name = "Mesh"
  5317. b22.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5318. p23 = Instance.new("Part", m8)
  5319. p23.BrickColor = BrickColor.new("Lime green")
  5320. p23.Material = Enum.Material.Marble
  5321. p23.Name = "Block"
  5322. p23.CFrame = CFrame.new(2.69999964e-005, -11.85007, -0.641908407, 1, -4.0890189e-008, -5.95266485e-008, -5.95264922e-008, 5.96046448e-008, -1.0000031, 4.08900895e-008, 1.0000037, 3.87430191e-007)
  5323. p23.CanCollide = false
  5324. p23.Locked = true
  5325. p23.FormFactor = Enum.FormFactor.Custom
  5326. p23.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  5327. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5328. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5329. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5330. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5331. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5332. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5333. b23 = Instance.new("BlockMesh", p23)
  5334. b23.Name = "Mesh"
  5335. b23.Scale = Vector3.new(0.803138018, 0.133856371, 1)
  5336. p24 = Instance.new("Part", m8)
  5337. p24.BrickColor = BrickColor.new("Really black")
  5338. p24.Material = Enum.Material.Metal
  5339. p24.Name = "Block"
  5340. p24.CFrame = CFrame.new(2.69999964e-005, -11.948123, -1.6825552, 1, -7.18838464e-008, -6.93700386e-009, -5.95250889e-008, -0.766046762, -0.642789662, 4.08918908e-008, 0.642790258, -0.766046941)
  5341. p24.CanCollide = false
  5342. p24.Locked = true
  5343. p24.FormFactor = Enum.FormFactor.Custom
  5344. p24.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5345. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5346. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5347. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5348. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5349. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5350. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5351. b24 = Instance.new("BlockMesh", p24)
  5352. b24.Name = "Mesh"
  5353. b24.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5354. p25 = Instance.new("Part", m8)
  5355. p25.BrickColor = BrickColor.new("Lime green")
  5356. p25.Material = Enum.Material.Marble
  5357. p25.Name = "Block"
  5358. p25.CFrame = CFrame.new(2.69999964e-005, -11.8500681, -1.59377992, 1, -4.08901926e-008, -5.95266414e-008, -5.95264957e-008, 5.96046448e-008, -1.0000031, 4.0890086e-008, 1.00000358, 3.57627869e-007)
  5359. p25.CanCollide = false
  5360. p25.Locked = true
  5361. p25.FormFactor = Enum.FormFactor.Custom
  5362. p25.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5363. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5364. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5365. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5366. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5367. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5368. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5369. b25 = Instance.new("BlockMesh", p25)
  5370. b25.Name = "Mesh"
  5371. b25.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5372. p26 = Instance.new("Part", m8)
  5373. p26.BrickColor = BrickColor.new("Really black")
  5374. p26.Material = Enum.Material.Metal
  5375. p26.Reflectance = 0.40000000596046
  5376. p26.Name = "Block"
  5377. p26.CFrame = CFrame.new(2.69999982e-005, -11.7615213, 0.428021312, 1, -1.85015523e-008, -5.47521495e-009, -1.85012912e-008, -1.0000031, -5.96046448e-008, -5.47550272e-009, 3.57627869e-007, -1.00000358)
  5378. p26.CanCollide = false
  5379. p26.Locked = true
  5380. p26.FormFactor = Enum.FormFactor.Custom
  5381. p26.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5382. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5383. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5384. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5385. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5386. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5387. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5388. b26 = Instance.new("BlockMesh", p26)
  5389. b26.Name = "Mesh"
  5390. b26.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5391. p27 = Instance.new("Part", m8)
  5392. p27.BrickColor = BrickColor.new("Lime green")
  5393. p27.Material = Enum.Material.Metal
  5394. p27.Name = "Block"
  5395. p27.CFrame = CFrame.new(2.69999982e-005, -11.850069, -0.782109976, 1, -4.36853398e-008, -4.90951173e-008, -5.8728709e-008, -0.258819818, -0.965928853, 2.94898914e-008, 0.965929329, -0.25881961)
  5396. p27.CanCollide = false
  5397. p27.Locked = true
  5398. p27.FormFactor = Enum.FormFactor.Custom
  5399. p27.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5400. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5401. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5402. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5403. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5404. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5405. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5406. b27 = Instance.new("BlockMesh", p27)
  5407. b27.Name = "Mesh"
  5408. b27.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5409. p28 = Instance.new("Part", m8)
  5410. p28.BrickColor = BrickColor.new("Really black")
  5411. p28.Material = Enum.Material.SmoothPlastic
  5412. p28.Reflectance = 0.0099999997764826
  5413. p28.Name = "Circle"
  5414. p28.CFrame = CFrame.new(2.69999964e-005, -11.7615204, -0.52384901, 1, -3.82200298e-008, -1.58313824e-008, -1.58311213e-008, 5.96046448e-008, -1.0000031, 3.82198913e-008, 1.00000346, 3.57627869e-007)
  5415. p28.CanCollide = false
  5416. p28.Locked = true
  5417. p28.FormFactor = Enum.FormFactor.Custom
  5418. p28.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5419. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5420. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5421. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5422. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5423. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5424. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5425. b28 = Instance.new("CylinderMesh", p28)
  5426. b28.Name = "Mesh"
  5427. b28.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  5428. p29 = Instance.new("Part", m8)
  5429. p29.BrickColor = BrickColor.new("Black")
  5430. p29.Material = Enum.Material.Metal
  5431. p29.Reflectance = 0.40000000596046
  5432. p29.Name = "Block"
  5433. p29.CFrame = CFrame.new(2.69999964e-005, -11.8228655, 1.48447084, 1, -1.48910964e-008, -1.22697976e-008, -1.85012574e-008, -0.920508504, -0.390730202, -5.47632872e-009, 0.39073059, -0.920508862)
  5434. p29.CanCollide = false
  5435. p29.Locked = true
  5436. p29.FormFactor = Enum.FormFactor.Custom
  5437. p29.Size = Vector3.new(0.220499977, 0.220499977, 0.31728977)
  5438. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5439. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5440. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5441. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5442. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5443. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5444. b29 = Instance.new("BlockMesh", p29)
  5445. b29.Name = "Mesh"
  5446. b29.Scale = Vector3.new(0.267712682, 0.803138077, 1)
  5447. p30 = Instance.new("Part", m8)
  5448. p30.BrickColor = BrickColor.new("Lime green")
  5449. p30.Material = Enum.Material.Metal
  5450. p30.Name = "Block"
  5451. p30.CFrame = CFrame.new(2.69999928e-005, -11.850069, -1.35027885, 1, -4.36853398e-008, -4.90951102e-008, -5.87287019e-008, -0.25881964, -0.965928614, 2.94898825e-008, 0.96592921, -0.258819699)
  5452. p30.CanCollide = false
  5453. p30.Locked = true
  5454. p30.FormFactor = Enum.FormFactor.Custom
  5455. p30.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5456. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5457. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5458. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5459. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5460. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5461. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5462. b30 = Instance.new("BlockMesh", p30)
  5463. b30.Name = "Mesh"
  5464. b30.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5465. p31 = Instance.new("Part", m8)
  5466. p31.BrickColor = BrickColor.new("Lime green")
  5467. p31.Material = Enum.Material.Neon
  5468. p31.Reflectance = 0.40000000596046
  5469. p31.Name = "Block"
  5470. p31.CFrame = CFrame.new(2.69999928e-005, -11.8927851, 0.869306803, -1, -7.71367752e-008, 3.05927976e-008, 7.41768247e-008, -0.996197402, -0.0871561319, 3.71997153e-008, -0.0871560946, 0.996197999)
  5471. p31.CanCollide = false
  5472. p31.Locked = true
  5473. p31.FormFactor = Enum.FormFactor.Custom
  5474. p31.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5475. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5476. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5477. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5478. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5479. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5480. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5481. b31 = Instance.new("BlockMesh", p31)
  5482. b31.Name = "Mesh"
  5483. b31.Scale = Vector3.new(0.334640861, 0.133856371, 0.870066345)
  5484. p32 = Instance.new("Part", m8)
  5485. p32.BrickColor = BrickColor.new("Lime green")
  5486. p32.Material = Enum.Material.Metal
  5487. p32.Name = "Block"
  5488. p32.CFrame = CFrame.new(2.6999991e-005, -11.850071, -1.29862738, 1, -3.936497e-008, -6.27974615e-008, -5.91275011e-008, 0.0871559605, -0.996197343, 4.46881891e-008, 0.996197939, 0.0871561021)
  5489. p32.CanCollide = false
  5490. p32.Locked = true
  5491. p32.FormFactor = Enum.FormFactor.Custom
  5492. p32.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5493. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5494. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5495. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5496. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5497. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5498. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5499. b32 = Instance.new("BlockMesh", p32)
  5500. b32.Name = "Mesh"
  5501. b32.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5502. p33 = Instance.new("Part", m8)
  5503. p33.BrickColor = BrickColor.new("Really black")
  5504. p33.Material = Enum.Material.Metal
  5505. p33.Reflectance = 0.40000000596046
  5506. p33.Name = "Block"
  5507. p33.CFrame = CFrame.new(2.69999928e-005, -11.7615213, 0.693662167, 1, -1.8501531e-008, -5.47520784e-009, -1.85013107e-008, -1.00000262, -1.49011612e-007, -5.47550894e-009, 2.38418579e-007, -1.00000322)
  5508. p33.CanCollide = false
  5509. p33.Locked = true
  5510. p33.FormFactor = Enum.FormFactor.Custom
  5511. p33.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5512. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5513. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5514. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5515. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5516. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5517. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5518. b33 = Instance.new("BlockMesh", p33)
  5519. b33.Name = "Mesh"
  5520. b33.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5521. p34 = Instance.new("Part", m8)
  5522. p34.BrickColor = BrickColor.new("Lime green")
  5523. p34.Material = Enum.Material.Metal
  5524. p34.Name = "Block"
  5525. p34.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.988716245, 1, -4.08901997e-008, -5.9526613e-008, -5.95264993e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  5526. p34.CanCollide = false
  5527. p34.Locked = true
  5528. p34.FormFactor = Enum.FormFactor.Custom
  5529. p34.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5530. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5531. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5532. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5533. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5534. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5535. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5536. b34 = Instance.new("BlockMesh", p34)
  5537. b34.Name = "Mesh"
  5538. b34.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5539. p35 = Instance.new("Part", m8)
  5540. p35.BrickColor = BrickColor.new("Lime green")
  5541. p35.Material = Enum.Material.Metal
  5542. p35.Name = "Block"
  5543. p35.CFrame = CFrame.new(2.69999928e-005, -11.8500662, -1.50523794, 1, -4.08901997e-008, -5.95266094e-008, -5.95265028e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  5544. p35.CanCollide = false
  5545. p35.Locked = true
  5546. p35.FormFactor = Enum.FormFactor.Custom
  5547. p35.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5548. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5549. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5550. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5551. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5552. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5553. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5554. b35 = Instance.new("BlockMesh", p35)
  5555. b35.Name = "Mesh"
  5556. b35.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5557. p36 = Instance.new("Part", m8)
  5558. p36.BrickColor = BrickColor.new("Lime green")
  5559. p36.Material = Enum.Material.Metal
  5560. p36.Name = "Block"
  5561. p36.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.86679816, 1, -1.85015203e-008, -5.47520784e-009, -1.85013214e-008, -1.00000262, -1.49011612e-007, -5.47550938e-009, 2.38418579e-007, -1.00000322)
  5562. p36.CanCollide = false
  5563. p36.Locked = true
  5564. p36.FormFactor = Enum.FormFactor.Custom
  5565. p36.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5566. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5567. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5568. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5569. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5570. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5571. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5572. b36 = Instance.new("BlockMesh", p36)
  5573. b36.Name = "Mesh"
  5574. b36.Scale = Vector3.new(0.401568979, 0.200784534, 0.267712682)
  5575. p37 = Instance.new("Part", m8)
  5576. p37.BrickColor = BrickColor.new("Lime green")
  5577. p37.Material = Enum.Material.Marble
  5578. p37.Name = "Circle"
  5579. p37.CFrame = CFrame.new(2.6999991e-005, -11.7319965, -0.523848772, 1, -3.82200369e-008, -1.58313576e-008, -1.58311444e-008, 1.49011612e-007, -1.00000262, 3.8219877e-008, 1.00000322, 2.38418579e-007)
  5580. p37.CanCollide = false
  5581. p37.Locked = true
  5582. p37.FormFactor = Enum.FormFactor.Custom
  5583. p37.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5584. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5585. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5586. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5587. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5588. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5589. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5590. b37 = Instance.new("CylinderMesh", p37)
  5591. b37.Name = "Mesh"
  5592. b37.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  5593. p38 = Instance.new("Part", m8)
  5594. p38.BrickColor = BrickColor.new("Really black")
  5595. p38.Material = Enum.Material.Metal
  5596. p38.Name = "Block"
  5597. p38.CFrame = CFrame.new(2.69999928e-005, -11.8021069, -1.64543033, 1, -4.08901997e-008, -5.95266023e-008, -5.95265099e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  5598. p38.CanCollide = false
  5599. p38.Locked = true
  5600. p38.FormFactor = Enum.FormFactor.Custom
  5601. p38.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5602. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5603. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5604. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5605. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5606. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5607. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5608. b38 = Instance.new("BlockMesh", p38)
  5609. b38.Name = "Mesh"
  5610. b38.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  5611. p39 = Instance.new("Part", m8)
  5612. p39.BrickColor = BrickColor.new("Really black")
  5613. p39.Material = Enum.Material.Metal
  5614. p39.Name = "Block"
  5615. p39.CFrame = CFrame.new(2.6999991e-005, -11.8980207, -1.64543033, 1, -4.08901997e-008, -5.95265988e-008, -5.95265135e-008, 1.49011612e-007, -1.00000262, 4.08900576e-008, 1.00000322, 2.38418579e-007)
  5616. p39.CanCollide = false
  5617. p39.Locked = true
  5618. p39.FormFactor = Enum.FormFactor.Custom
  5619. p39.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5620. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5621. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5622. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5623. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5624. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5625. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5626. b39 = Instance.new("BlockMesh", p39)
  5627. b39.Name = "Mesh"
  5628. b39.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  5629. p40 = Instance.new("Part", m8)
  5630. p40.BrickColor = BrickColor.new("Really black")
  5631. p40.Material = Enum.Material.Metal
  5632. p40.Name = "Block"
  5633. p40.CFrame = CFrame.new(2.6999991e-005, -11.9044991, -1.84857893, 1, 2.62652719e-007, 4.66475456e-007, -2.72653665e-007, -0.500001431, 0.866027534, 4.6070295e-007, -0.866027951, -0.500001788)
  5634. p40.CanCollide = false
  5635. p40.Locked = true
  5636. p40.FormFactor = Enum.FormFactor.Custom
  5637. p40.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5638. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5639. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5640. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5641. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5642. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5643. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5644. b40 = Instance.new("BlockMesh", p40)
  5645. b40.Name = "Mesh"
  5646. b40.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5647. p41 = Instance.new("Part", m8)
  5648. p41.BrickColor = BrickColor.new("Lime green")
  5649. p41.Material = Enum.Material.Neon
  5650. p41.Reflectance = 0.40000000596046
  5651. p41.Name = "Block"
  5652. p41.CFrame = CFrame.new(2.6999991e-005, -11.8956079, 0.422182083, 1, -1.56492277e-008, -8.1476486e-008, -1.31610101e-008, 0.939694941, -0.34202069, 8.19153172e-008, 0.34202072, 0.939695537)
  5653. p41.CanCollide = false
  5654. p41.Locked = true
  5655. p41.FormFactor = Enum.FormFactor.Custom
  5656. p41.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5657. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5658. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5659. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5660. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5661. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5662. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5663. b41 = Instance.new("BlockMesh", p41)
  5664. b41.Name = "Mesh"
  5665. b41.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5666. p42 = Instance.new("Part", m8)
  5667. p42.BrickColor = BrickColor.new("Earth green")
  5668. p42.Material = Enum.Material.Metal
  5669. p42.Name = "Block"
  5670. p42.CFrame = CFrame.new(2.69999928e-005, -11.85007, -0.664048076, 1, -4.0890118e-008, -5.95265348e-008, -5.95265384e-008, 1.49011612e-007, -1.00000226, 4.08901286e-008, 1.00000286, 3.42726707e-007)
  5671. p42.CanCollide = false
  5672. p42.Locked = true
  5673. p42.FormFactor = Enum.FormFactor.Custom
  5674. p42.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5675. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5676. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5677. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5678. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5679. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5680. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5681. b42 = Instance.new("BlockMesh", p42)
  5682. b42.Name = "Mesh"
  5683. b42.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  5684. p43 = Instance.new("Part", m8)
  5685. p43.BrickColor = BrickColor.new("Really black")
  5686. p43.Material = Enum.Material.Metal
  5687. p43.Name = "Block"
  5688. p43.CFrame = CFrame.new(2.69999964e-005, -11.7292862, -1.76739728, 1, 6.57225172e-008, -2.99325187e-008, -5.95263288e-008, 0.984809816, 0.173648655, 4.08903809e-008, -0.173648939, 0.984810352)
  5689. p43.CanCollide = false
  5690. p43.Locked = true
  5691. p43.FormFactor = Enum.FormFactor.Custom
  5692. p43.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5693. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5694. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5695. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5696. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5697. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5698. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5699. b43 = Instance.new("BlockMesh", p43)
  5700. b43.Name = "Mesh"
  5701. b43.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5702. p44 = Instance.new("Part", m8)
  5703. p44.BrickColor = BrickColor.new("Lime green")
  5704. p44.Material = Enum.Material.Marble
  5705. p44.Name = "Circle"
  5706. p44.CFrame = CFrame.new(2.69999946e-005, -11.968133, -0.641907811, 1, -3.82199516e-008, -1.58312723e-008, -1.58311995e-008, 1.49011612e-007, -1.00000203, 3.8219941e-008, 1.00000262, 3.27825546e-007)
  5707. p44.CanCollide = false
  5708. p44.Locked = true
  5709. p44.FormFactor = Enum.FormFactor.Custom
  5710. p44.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5711. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5712. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5713. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5714. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5715. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5716. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5717. b44 = Instance.new("CylinderMesh", p44)
  5718. b44.Name = "Mesh"
  5719. b44.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  5720. p45 = Instance.new("Part", m8)
  5721. p45.BrickColor = BrickColor.new("Lime green")
  5722. p45.Material = Enum.Material.Neon
  5723. p45.Reflectance = 0.40000000596046
  5724. p45.Name = "Block"
  5725. p45.CFrame = CFrame.new(2.69999964e-005, -11.8956099, -0.0648244023, 1, -1.56492419e-008, -8.14764718e-008, -1.31610207e-008, 0.939694583, -0.342020601, 8.19152959e-008, 0.342020601, 0.93969512)
  5726. p45.CanCollide = false
  5727. p45.Locked = true
  5728. p45.FormFactor = Enum.FormFactor.Custom
  5729. p45.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5730. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5731. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5732. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5733. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5734. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5735. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5736. b45 = Instance.new("BlockMesh", p45)
  5737. b45.Name = "Mesh"
  5738. b45.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5739. p46 = Instance.new("Part", m8)
  5740. p46.BrickColor = BrickColor.new("Black")
  5741. p46.Material = Enum.Material.Metal
  5742. p46.Name = "Block"
  5743. p46.CFrame = CFrame.new(2.69999946e-005, -11.8500729, -0.582874656, 1, -4.08901037e-008, -5.95265135e-008, -5.95265313e-008, 1.34110451e-007, -1.00000191, 4.08901215e-008, 1.00000238, 2.83122063e-007)
  5744. p46.CanCollide = false
  5745. p46.Locked = true
  5746. p46.FormFactor = Enum.FormFactor.Custom
  5747. p46.Size = Vector3.new(0.236122593, 0.220499977, 0.354183882)
  5748. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5749. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5750. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5751. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5752. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5753. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5754. b46 = Instance.new("BlockMesh", p46)
  5755. b46.Name = "Mesh"
  5756. b46.Scale = Vector3.new(1, 0.401569068, 1)
  5757. p47 = Instance.new("Part", m8)
  5758. p47.BrickColor = BrickColor.new("Earth green")
  5759. p47.Material = Enum.Material.Metal
  5760. p47.Name = "Block"
  5761. p47.CFrame = CFrame.new(2.69999946e-005, -11.850071, -1.56426501, 1, -4.08901037e-008, -5.95265099e-008, -5.95265348e-008, 1.34110451e-007, -1.00000191, 4.08901215e-008, 1.00000238, 2.83122063e-007)
  5762. p47.CanCollide = false
  5763. p47.Locked = true
  5764. p47.FormFactor = Enum.FormFactor.Custom
  5765. p47.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5766. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5767. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5768. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5769. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5770. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5771. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5772. b47 = Instance.new("BlockMesh", p47)
  5773. b47.Name = "Mesh"
  5774. b47.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  5775. p48 = Instance.new("Part", m8)
  5776. p48.BrickColor = BrickColor.new("Lime green")
  5777. p48.Material = Enum.Material.Metal
  5778. p48.Name = "Block"
  5779. p48.CFrame = CFrame.new(2.69999964e-005, -11.8500748, -1.04036665, 1, -3.75603939e-008, -6.5922805e-008, -5.83990385e-008, 0.173648417, -0.984809697, 4.84371583e-008, 0.984810054, 0.173648626)
  5780. p48.CanCollide = false
  5781. p48.Locked = true
  5782. p48.FormFactor = Enum.FormFactor.Custom
  5783. p48.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5784. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5785. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5786. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5787. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5788. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5789. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5790. b48 = Instance.new("BlockMesh", p48)
  5791. b48.Name = "Mesh"
  5792. b48.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5793. p49 = Instance.new("Part", m8)
  5794. p49.BrickColor = BrickColor.new("Lime green")
  5795. p49.Material = Enum.Material.Metal
  5796. p49.Name = "Block"
  5797. p49.CFrame = CFrame.new(2.69999928e-005, -11.8500729, -0.730450988, 1, -3.7560401e-008, -6.59227979e-008, -5.83990456e-008, 0.173648179, -0.984809756, 4.84371476e-008, 0.984810114, 0.173648387)
  5798. p49.CanCollide = false
  5799. p49.Locked = true
  5800. p49.FormFactor = Enum.FormFactor.Custom
  5801. p49.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5802. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5803. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5804. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5805. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5806. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5807. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5808. b49 = Instance.new("BlockMesh", p49)
  5809. b49.Name = "Mesh"
  5810. b49.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5811. p50 = Instance.new("Part", m8)
  5812. p50.BrickColor = BrickColor.new("Black")
  5813. p50.Material = Enum.Material.Metal
  5814. p50.Reflectance = 0.40000000596046
  5815. p50.Name = "Block"
  5816. p50.CFrame = CFrame.new(2.69999928e-005, -11.9042749, 1.22774267, 1, -1.79535924e-008, -7.06764602e-009, -1.85012361e-008, -0.996196568, -0.0871560201, -5.47609824e-009, 0.0871561989, -0.996196926)
  5817. p50.CanCollide = false
  5818. p50.Locked = true
  5819. p50.FormFactor = Enum.FormFactor.Custom
  5820. p50.Size = Vector3.new(0.220499977, 0.220499977, 0.287774384)
  5821. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5822. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5823. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5824. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5825. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5826. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5827. b50 = Instance.new("BlockMesh", p50)
  5828. b50.Name = "Mesh"
  5829. b50.Scale = Vector3.new(0.267712682, 0.936994493, 1)
  5830. p51 = Instance.new("Part", m8)
  5831. p51.BrickColor = BrickColor.new("Lime green")
  5832. p51.Material = Enum.Material.Metal
  5833. p51.Name = "Block"
  5834. p51.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.40193033, 1, -3.93648811e-008, -6.27973264e-008, -5.91275438e-008, 0.0871558785, -0.996196568, 4.46882424e-008, 0.996196926, 0.0871560574)
  5835. p51.CanCollide = false
  5836. p51.Locked = true
  5837. p51.FormFactor = Enum.FormFactor.Custom
  5838. p51.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5839. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5840. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5841. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5842. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5843. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5844. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5845. b51 = Instance.new("BlockMesh", p51)
  5846. b51.Name = "Mesh"
  5847. b51.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5848. p52 = Instance.new("Part", m8)
  5849. p52.BrickColor = BrickColor.new("Lime green")
  5850. p52.Material = Enum.Material.Metal
  5851. p52.Name = "Block"
  5852. p52.CFrame = CFrame.new(2.69999928e-005, -11.850071, -1.09201384, 1, -4.21244408e-008, -5.61351641e-008, -5.95929883e-008, -0.0871557593, -0.996196628, 3.70716471e-008, 0.996196985, -0.0871556401)
  5853. p52.CanCollide = false
  5854. p52.Locked = true
  5855. p52.FormFactor = Enum.FormFactor.Custom
  5856. p52.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5857. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5858. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5859. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5860. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5861. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5862. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5863. b52 = Instance.new("BlockMesh", p52)
  5864. b52.Name = "Mesh"
  5865. b52.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5866. p53 = Instance.new("Part", m8)
  5867. p53.BrickColor = BrickColor.new("Really black")
  5868. p53.Material = Enum.Material.Metal
  5869. p53.Name = "Block"
  5870. p53.CFrame = CFrame.new(2.69999928e-005, -11.7956429, -1.84857762, 1, 6.51748948e-008, 3.11061044e-008, -5.95261795e-008, 0.500001013, 0.866027117, 4.08900611e-008, -0.866027415, 0.500001013)
  5871. p53.CanCollide = false
  5872. p53.Locked = true
  5873. p53.FormFactor = Enum.FormFactor.Custom
  5874. p53.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5875. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5876. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5877. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5878. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5879. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5880. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5881. b53 = Instance.new("BlockMesh", p53)
  5882. b53.Name = "Mesh"
  5883. b53.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5884. p54 = Instance.new("Part", m8)
  5885. p54.BrickColor = BrickColor.new("Really black")
  5886. p54.Material = Enum.Material.SmoothPlastic
  5887. p54.Reflectance = 0.0099999997764826
  5888. p54.Name = "Circle"
  5889. p54.CFrame = CFrame.new(2.69999928e-005, -11.9386101, -0.523846626, 1, -3.82199445e-008, -1.58312456e-008, -1.58311995e-008, 1.04308441e-007, -1.00000203, 3.82199303e-008, 1.00000226, 2.75671823e-007)
  5890. p54.CanCollide = false
  5891. p54.Locked = true
  5892. p54.FormFactor = Enum.FormFactor.Custom
  5893. p54.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5894. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5895. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5896. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5897. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5898. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5899. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5900. b54 = Instance.new("CylinderMesh", p54)
  5901. b54.Name = "Mesh"
  5902. b54.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  5903. p55 = Instance.new("Part", m8)
  5904. p55.BrickColor = BrickColor.new("Really black")
  5905. p55.Material = Enum.Material.Metal
  5906. p55.Reflectance = 0.40000000596046
  5907. p55.Name = "Block"
  5908. p55.CFrame = CFrame.new(2.69999928e-005, -11.7615232, -0.103249788, 1, -1.85014084e-008, -5.47530199e-009, -1.85013729e-008, -1.00000203, -1.04308441e-007, -5.47541257e-009, 2.75671823e-007, -1.00000226)
  5909. p55.CanCollide = false
  5910. p55.Locked = true
  5911. p55.FormFactor = Enum.FormFactor.Custom
  5912. p55.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5913. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5914. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5915. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5916. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5917. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5918. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5919. b55 = Instance.new("BlockMesh", p55)
  5920. b55.Name = "Mesh"
  5921. b55.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5922. p56 = Instance.new("Part", m8)
  5923. p56.BrickColor = BrickColor.new("Black")
  5924. p56.Material = Enum.Material.Metal
  5925. p56.Reflectance = 0.40000000596046
  5926. p56.Name = "Block"
  5927. p56.CFrame = CFrame.new(2.69999928e-005, -11.9091034, -0.368891358, 1, -1.8501229e-008, -5.47589352e-009, -1.85011935e-008, -1.00000203, -1.04308441e-007, -5.47600409e-009, 2.75671823e-007, -1.00000226)
  5928. p56.CanCollide = false
  5929. p56.Locked = true
  5930. p56.FormFactor = Enum.FormFactor.Custom
  5931. p56.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5932. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5933. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5934. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5935. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5936. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5937. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5938. b56 = Instance.new("BlockMesh", p56)
  5939. b56.Name = "Mesh"
  5940. b56.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5941. p57 = Instance.new("Part", m8)
  5942. p57.BrickColor = BrickColor.new("Black")
  5943. p57.Material = Enum.Material.Metal
  5944. p57.Reflectance = 0.40000000596046
  5945. p57.Name = "Block"
  5946. p57.CFrame = CFrame.new(2.69999928e-005, -11.9091005, 0.693658948, 1, -1.8501229e-008, -5.47589352e-009, -1.85011935e-008, -1.00000203, -1.04308441e-007, -5.47600409e-009, 2.75671823e-007, -1.00000226)
  5947. p57.CanCollide = false
  5948. p57.Locked = true
  5949. p57.FormFactor = Enum.FormFactor.Custom
  5950. p57.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5951. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5952. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5953. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5954. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5955. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5956. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5957. b57 = Instance.new("BlockMesh", p57)
  5958. b57.Name = "Mesh"
  5959. b57.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5960. p58 = Instance.new("Part", m8)
  5961. p58.BrickColor = BrickColor.new("Lime green")
  5962. p58.Material = Enum.Material.Marble
  5963. p58.Name = "Block"
  5964. p58.CFrame = CFrame.new(2.69999928e-005, -11.850071, -0.523846745, 1, -4.08901073e-008, -5.95264922e-008, -5.95265384e-008, 1.04308441e-007, -1.00000203, 4.08901144e-008, 1.00000226, 2.75671823e-007)
  5965. p58.CanCollide = false
  5966. p58.Locked = true
  5967. p58.FormFactor = Enum.FormFactor.Custom
  5968. p58.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  5969. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5970. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5971. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5972. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5973. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5974. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5975. b58 = Instance.new("BlockMesh", p58)
  5976. b58.Name = "Mesh"
  5977. b58.Scale = Vector3.new(0.936994374, 0.133856371, 1)
  5978. p59 = Instance.new("Part", m8)
  5979. p59.BrickColor = BrickColor.new("Lime green")
  5980. p59.Material = Enum.Material.Metal
  5981. p59.Name = "Block"
  5982. p59.CFrame = CFrame.new(2.69999928e-005, -11.850071, -1.62329435, 1, -1.85014031e-008, -5.47530021e-009, -1.85013782e-008, -1.00000203, -1.04308441e-007, -5.47540946e-009, 2.75671823e-007, -1.00000226)
  5983. p59.CanCollide = false
  5984. p59.Locked = true
  5985. p59.FormFactor = Enum.FormFactor.Custom
  5986. p59.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5987. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5988. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5989. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5990. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5991. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5992. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5993. b59 = Instance.new("BlockMesh", p59)
  5994. b59.Name = "Mesh"
  5995. b59.Scale = Vector3.new(0.602353573, 0.200784534, 0.468497276)
  5996. p60 = Instance.new("Part", m8)
  5997. p60.BrickColor = BrickColor.new("Lime green")
  5998. p60.Material = Enum.Material.Marble
  5999. p60.Name = "Circle"
  6000. p60.CFrame = CFrame.new(2.69999928e-005, -11.9755096, -0.523859799, 1, -3.82199445e-008, -1.58312403e-008, -1.58312048e-008, 1.04308441e-007, -1.00000203, 3.82199339e-008, 1.00000226, 2.75671823e-007)
  6001. p60.CanCollide = false
  6002. p60.Locked = true
  6003. p60.FormFactor = Enum.FormFactor.Custom
  6004. p60.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6005. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6006. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6007. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6008. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6009. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6010. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6011. b60 = Instance.new("CylinderMesh", p60)
  6012. b60.Name = "Mesh"
  6013. b60.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  6014. p61 = Instance.new("Part", m8)
  6015. p61.BrickColor = BrickColor.new("Black")
  6016. p61.Material = Enum.Material.Metal
  6017. p61.Name = "Circle"
  6018. p61.CFrame = CFrame.new(2.69999928e-005, -12.0271645, -0.582878888, 1, -3.82199445e-008, -1.58312403e-008, -1.58312048e-008, 1.04308441e-007, -1.00000203, 3.82199339e-008, 1.00000226, 2.75671823e-007)
  6019. p61.CanCollide = false
  6020. p61.Locked = true
  6021. p61.FormFactor = Enum.FormFactor.Custom
  6022. p61.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  6023. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6024. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6025. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6026. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6027. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6028. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6029. b61 = Instance.new("CylinderMesh", p61)
  6030. b61.Name = "Mesh"
  6031. b61.Scale = Vector3.new(1, 0.401569068, 1)
  6032. p62 = Instance.new("Part", m8)
  6033. p62.BrickColor = BrickColor.new("Lime green")
  6034. p62.Material = Enum.Material.Metal
  6035. p62.Name = "Block"
  6036. p62.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.833758533, 1, -4.08901002e-008, -5.95264851e-008, -5.95265455e-008, -4.47034836e-008, -1.00000203, 4.08901002e-008, 1.00000226, 1.2665987e-007)
  6037. p62.CanCollide = false
  6038. p62.Locked = true
  6039. p62.FormFactor = Enum.FormFactor.Custom
  6040. p62.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6041. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6042. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6043. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6044. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6045. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6046. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6047. b62 = Instance.new("BlockMesh", p62)
  6048. b62.Name = "Mesh"
  6049. b62.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6050. p63 = Instance.new("Part", m8)
  6051. p63.BrickColor = BrickColor.new("Lime green")
  6052. p63.Material = Enum.Material.Metal
  6053. p63.Name = "Block"
  6054. p63.CFrame = CFrame.new(2.69999928e-005, -11.8500719, -1.14366531, 1, -3.93648811e-008, -6.27973264e-008, -5.91275438e-008, 0.0871558636, -0.996196747, 4.4688246e-008, 0.996196866, 0.0871560499)
  6055. p63.CanCollide = false
  6056. p63.Locked = true
  6057. p63.FormFactor = Enum.FormFactor.Custom
  6058. p63.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6059. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6060. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6061. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6062. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6063. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6064. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6065. b63 = Instance.new("BlockMesh", p63)
  6066. b63.Name = "Mesh"
  6067. b63.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6068. p64 = Instance.new("Part", m8)
  6069. p64.BrickColor = BrickColor.new("Really black")
  6070. p64.Material = Enum.Material.SmoothPlastic
  6071. p64.Reflectance = 0.0099999997764826
  6072. p64.Name = "Block"
  6073. p64.CFrame = CFrame.new(2.69999928e-005, -11.85007, -0.523846924, 1, -4.08901002e-008, -5.95264957e-008, -5.95265419e-008, 1.04308128e-007, -1.00000203, 4.0890118e-008, 1.00000215, 2.83122063e-007)
  6074. p64.CanCollide = false
  6075. p64.Locked = true
  6076. p64.FormFactor = Enum.FormFactor.Custom
  6077. p64.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6078. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6079. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6080. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6081. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6082. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6083. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6084. b64 = Instance.new("BlockMesh", p64)
  6085. b64.Name = "Mesh"
  6086. b64.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  6087. p65 = Instance.new("Part", m8)
  6088. p65.BrickColor = BrickColor.new("Lime green")
  6089. p65.Material = Enum.Material.Metal
  6090. p65.Name = "Block"
  6091. p65.CFrame = CFrame.new(2.69999928e-005, -11.850069, -0.885411739, 1, -3.75603939e-008, -6.59227908e-008, -5.83990456e-008, 0.173648402, -0.984809816, 4.84371547e-008, 0.984809875, 0.173648596)
  6092. p65.CanCollide = false
  6093. p65.Locked = true
  6094. p65.FormFactor = Enum.FormFactor.Custom
  6095. p65.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6096. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6097. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6098. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6099. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6100. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6101. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6102. b65 = Instance.new("BlockMesh", p65)
  6103. b65.Name = "Mesh"
  6104. b65.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6105. p66 = Instance.new("Part", m8)
  6106. p66.BrickColor = BrickColor.new("Really black")
  6107. p66.Material = Enum.Material.Metal
  6108. p66.Reflectance = 0.40000000596046
  6109. p66.Name = "Block"
  6110. p66.CFrame = CFrame.new(2.69999946e-005, -11.7501383, 1.2199297, 1, -1.79537896e-008, -7.06697278e-009, -1.85013764e-008, -0.996196747, -0.0871560127, -5.47540502e-009, 0.0871562064, -0.996196806)
  6111. p66.CanCollide = false
  6112. p66.Locked = true
  6113. p66.FormFactor = Enum.FormFactor.Custom
  6114. p66.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6115. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6116. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6117. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6118. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6119. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6120. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6121. b66 = Instance.new("BlockMesh", p66)
  6122. b66.Name = "Mesh"
  6123. b66.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  6124. p67 = Instance.new("Part", m8)
  6125. p67.BrickColor = BrickColor.new("Lime green")
  6126. p67.Material = Enum.Material.Metal
  6127. p67.Name = "Block"
  6128. p67.CFrame = CFrame.new(2.69999928e-005, -11.8500738, -1.45358396, 1, -4.36852119e-008, -4.90949965e-008, -5.87287552e-008, -0.258819461, -0.96592778, 2.94899358e-008, 0.965927899, -0.258819312)
  6129. p67.CanCollide = false
  6130. p67.Locked = true
  6131. p67.FormFactor = Enum.FormFactor.Custom
  6132. p67.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6133. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6134. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6135. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6136. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6137. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6138. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6139. b67 = Instance.new("BlockMesh", p67)
  6140. b67.Name = "Mesh"
  6141. b67.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6142. p68 = Instance.new("Part", m8)
  6143. p68.BrickColor = BrickColor.new("Black")
  6144. p68.Material = Enum.Material.Metal
  6145. p68.Reflectance = 0.40000000596046
  6146. p68.Name = "Block"
  6147. p68.CFrame = CFrame.new(2.69999946e-005, -11.9090977, 0.162382364, 1, -1.85012148e-008, -5.47590062e-009, -1.85012077e-008, -1.00000191, -1.1920929e-007, -5.47599832e-009, 2.98023224e-007, -1.00000203)
  6148. p68.CanCollide = false
  6149. p68.Locked = true
  6150. p68.FormFactor = Enum.FormFactor.Custom
  6151. p68.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6152. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6153. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6154. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6155. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6156. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6157. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6158. b68 = Instance.new("BlockMesh", p68)
  6159. b68.Name = "Mesh"
  6160. b68.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  6161. p69 = Instance.new("Part", m8)
  6162. p69.BrickColor = BrickColor.new("Earth green")
  6163. p69.Material = Enum.Material.Metal
  6164. p69.Name = "Block"
  6165. p69.CFrame = CFrame.new(2.69999946e-005, -11.8500662, -1.6085372, 1, -4.08901002e-008, -5.9526478e-008, -5.95265455e-008, 1.1920929e-007, -1.00000191, 4.08901073e-008, 1.00000203, 2.98023224e-007)
  6166. p69.CanCollide = false
  6167. p69.Locked = true
  6168. p69.FormFactor = Enum.FormFactor.Custom
  6169. p69.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6170. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6171. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6172. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6173. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6174. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6175. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6176. b69 = Instance.new("BlockMesh", p69)
  6177. b69.Name = "Mesh"
  6178. b69.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  6179. p70 = Instance.new("Part", m8)
  6180. p70.BrickColor = BrickColor.new("Lime green")
  6181. p70.Material = Enum.Material.Marble
  6182. p70.Name = "Circle"
  6183. p70.CFrame = CFrame.new(2.69999946e-005, -11.7320013, -0.641902268, 1, -3.82199374e-008, -1.58312261e-008, -1.5831219e-008, 1.1920929e-007, -1.00000191, 3.82199268e-008, 1.00000203, 2.98023224e-007)
  6184. p70.CanCollide = false
  6185. p70.Locked = true
  6186. p70.FormFactor = Enum.FormFactor.Custom
  6187. p70.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6188. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6189. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6190. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6191. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6192. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6193. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6194. b70 = Instance.new("CylinderMesh", p70)
  6195. b70.Name = "Mesh"
  6196. b70.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  6197. p71 = Instance.new("WedgePart", m8)
  6198. p71.BrickColor = BrickColor.new("Lime green")
  6199. p71.Material = Enum.Material.Neon
  6200. p71.Reflectance = 0.40000000596046
  6201. p71.Name = "Wedge"
  6202. p71.CFrame = CFrame.new(2.69999946e-005, -11.8880224, 0.31500864, -1, 5.94633809e-009, -9.26972419e-008, -8.91409044e-008, -0.342020452, 0.939694583, -2.61165116e-008, 0.939694643, 0.342020303)
  6203. p71.CanCollide = false
  6204. p71.Locked = true
  6205. p71.FormFactor = Enum.FormFactor.Custom
  6206. p71.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6207. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6208. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6209. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6210. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6211. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6212. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6213. b71 = Instance.new("SpecialMesh", p71)
  6214. b71.MeshType = Enum.MeshType.Wedge
  6215. b71.Name = "Mesh"
  6216. b71.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6217. p72 = Instance.new("WedgePart", m8)
  6218. p72.BrickColor = BrickColor.new("Lime green")
  6219. p72.Material = Enum.Material.Neon
  6220. p72.Reflectance = 0.40000000596046
  6221. p72.Name = "Wedge"
  6222. p72.CFrame = CFrame.new(2.69999964e-005, -11.8783607, 0.789086521, 1, -5.68298901e-008, -8.86828389e-011, -5.04137887e-009, -0.0871561319, -0.996196628, 5.66059342e-008, 0.996196628, -0.0871559829)
  6223. p72.CanCollide = false
  6224. p72.Locked = true
  6225. p72.FormFactor = Enum.FormFactor.Custom
  6226. p72.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6227. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6228. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6229. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6230. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6231. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6232. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6233. b72 = Instance.new("SpecialMesh", p72)
  6234. b72.MeshType = Enum.MeshType.Wedge
  6235. b72.Name = "Mesh"
  6236. b72.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  6237. p73 = Instance.new("WedgePart", m8)
  6238. p73.BrickColor = BrickColor.new("Lime green")
  6239. p73.Material = Enum.Material.Neon
  6240. p73.Reflectance = 0.40000000596046
  6241. p73.Name = "Wedge"
  6242. p73.CFrame = CFrame.new(2.69999946e-005, -11.9179726, -0.200317383, -1, 8.86055176e-008, -9.63062732e-008, 1.2080335e-007, 0.342020512, -0.939694524, -5.03233473e-008, -0.939694524, -0.342020392)
  6243. p73.CanCollide = false
  6244. p73.Locked = true
  6245. p73.FormFactor = Enum.FormFactor.Custom
  6246. p73.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6247. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6248. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6249. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6250. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6251. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6252. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6253. b73 = Instance.new("SpecialMesh", p73)
  6254. b73.MeshType = Enum.MeshType.Wedge
  6255. b73.Name = "Mesh"
  6256. b73.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6257. p74 = Instance.new("WedgePart", m8)
  6258. p74.BrickColor = BrickColor.new("Lime green")
  6259. p74.Material = Enum.Material.Neon
  6260. p74.Reflectance = 0.40000000596046
  6261. p74.Name = "Wedge"
  6262. p74.CFrame = CFrame.new(2.69999946e-005, -11.8857021, 0.788440466, 1, -3.05928971e-008, 8.75114523e-008, -8.45122159e-008, 0.087156117, 0.996196568, -3.81037424e-008, -0.996196568, 0.0871560276)
  6263. p74.CanCollide = false
  6264. p74.Locked = true
  6265. p74.FormFactor = Enum.FormFactor.Custom
  6266. p74.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6267. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6268. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6269. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6270. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6271. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6272. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6273. b74 = Instance.new("SpecialMesh", p74)
  6274. b74.MeshType = Enum.MeshType.Wedge
  6275. b74.Name = "Mesh"
  6276. b74.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6277. p75 = Instance.new("WedgePart", m8)
  6278. p75.BrickColor = BrickColor.new("Lime green")
  6279. p75.Material = Enum.Material.Neon
  6280. p75.Reflectance = 0.40000000596046
  6281. p75.Name = "Wedge"
  6282. p75.CFrame = CFrame.new(2.69999946e-005, -11.8681011, -0.402033836, 1, -8.62400213e-008, 8.8834895e-009, 2.11481392e-008, 0.342020482, 0.939694464, -8.40776622e-008, -0.939694464, 0.342020422)
  6283. p75.CanCollide = false
  6284. p75.Locked = true
  6285. p75.FormFactor = Enum.FormFactor.Custom
  6286. p75.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6287. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6288. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6289. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6290. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6291. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6292. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6293. b75 = Instance.new("SpecialMesh", p75)
  6294. b75.MeshType = Enum.MeshType.Wedge
  6295. b75.Name = "Mesh"
  6296. b75.Scale = Vector3.new(0.334640861, 0.267712742, 0.200784534)
  6297. p76 = Instance.new("WedgePart", m8)
  6298. p76.BrickColor = BrickColor.new("Lime green")
  6299. p76.Material = Enum.Material.Neon
  6300. p76.Reflectance = 0.40000000596046
  6301. p76.Name = "Wedge"
  6302. p76.CFrame = CFrame.new(2.69999946e-005, -11.8880215, -0.171991348, -1, 5.94633143e-009, -9.26972206e-008, -8.91408973e-008, -0.342020363, 0.939694405, -2.61165383e-008, 0.939694405, 0.342020303)
  6303. p76.CanCollide = false
  6304. p76.Locked = true
  6305. p76.FormFactor = Enum.FormFactor.Custom
  6306. p76.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6307. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6308. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6309. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6310. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6311. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6312. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6313. b76 = Instance.new("SpecialMesh", p76)
  6314. b76.MeshType = Enum.MeshType.Wedge
  6315. b76.Name = "Mesh"
  6316. b76.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6317. p77 = Instance.new("WedgePart", m8)
  6318. p77.BrickColor = BrickColor.new("Lime green")
  6319. p77.Material = Enum.Material.Neon
  6320. p77.Reflectance = 0.40000000596046
  6321. p77.Name = "Wedge"
  6322. p77.CFrame = CFrame.new(2.69999946e-005, -11.9557362, 1.02495766, -1, 8.82909745e-008, -9.99014986e-008, 1.1934894e-007, 0.258819342, -0.965927422, -5.94261955e-008, -0.965927422, -0.258819282)
  6323. p77.CanCollide = false
  6324. p77.Locked = true
  6325. p77.FormFactor = Enum.FormFactor.Custom
  6326. p77.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6327. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6328. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6329. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6330. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6331. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6332. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6333. b77 = Instance.new("SpecialMesh", p77)
  6334. b77.MeshType = Enum.MeshType.Wedge
  6335. b77.Name = "Mesh"
  6336. b77.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6337. p78 = Instance.new("WedgePart", m8)
  6338. p78.BrickColor = BrickColor.new("Lime green")
  6339. p78.Material = Enum.Material.Neon
  6340. p78.Reflectance = 0.40000000596046
  6341. p78.Name = "Wedge"
  6342. p78.CFrame = CFrame.new(2.69999946e-005, -11.8602781, -0.161903143, -1, 8.14764078e-008, 5.27443866e-009, 2.29101609e-008, 0.342020273, -0.939694166, -7.83668526e-008, -0.939694166, -0.342020243)
  6343. p78.CanCollide = false
  6344. p78.Locked = true
  6345. p78.FormFactor = Enum.FormFactor.Custom
  6346. p78.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6347. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6348. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6349. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6350. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6351. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6352. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6353. b78 = Instance.new("SpecialMesh", p78)
  6354. b78.MeshType = Enum.MeshType.Wedge
  6355. b78.Name = "Mesh"
  6356. b78.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6357. p79 = Instance.new("WedgePart", m8)
  6358. p79.BrickColor = BrickColor.new("Lime green")
  6359. p79.Material = Enum.Material.Neon
  6360. p79.Reflectance = 0.40000000596046
  6361. p79.Name = "Wedge"
  6362. p79.CFrame = CFrame.new(2.69999964e-005, -11.9133091, 0.0700842142, 1, -1.68899177e-007, 5.27444577e-009, -5.28105097e-008, -0.342020273, -0.939694166, 1.60517516e-007, 0.939694166, -0.342020243)
  6363. p79.CanCollide = false
  6364. p79.Locked = true
  6365. p79.FormFactor = Enum.FormFactor.Custom
  6366. p79.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6367. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6368. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6369. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6370. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6371. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6372. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6373. b79 = Instance.new("SpecialMesh", p79)
  6374. b79.MeshType = Enum.MeshType.Wedge
  6375. b79.Name = "Mesh"
  6376. b79.Scale = Vector3.new(0.334640861, 0.535425484, 0.401569068)
  6377. p80 = Instance.new("WedgePart", m8)
  6378. p80.BrickColor = BrickColor.new("Black")
  6379. p80.Material = Enum.Material.Metal
  6380. p80.Reflectance = 0.40000000596046
  6381. p80.Name = "Wedge"
  6382. p80.CFrame = CFrame.new(2.69999964e-005, -11.9147787, 1.51684833, -1, 1.58138e-008, 2.8589703e-008, 3.25942473e-008, 0.422618747, 0.906309128, 2.24968311e-009, 0.906309128, -0.422618806)
  6383. p80.CanCollide = false
  6384. p80.Locked = true
  6385. p80.FormFactor = Enum.FormFactor.Custom
  6386. p80.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  6387. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6388. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6389. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6390. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6391. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6392. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6393. b80 = Instance.new("SpecialMesh", p80)
  6394. b80.MeshType = Enum.MeshType.Wedge
  6395. b80.Name = "Mesh"
  6396. b80.Scale = Vector3.new(0.267712682, 1, 0.133856341)
  6397. p81 = Instance.new("WedgePart", m8)
  6398. p81.BrickColor = BrickColor.new("Lime green")
  6399. p81.Material = Enum.Material.Neon
  6400. p81.Reflectance = 0.40000000596046
  6401. p81.Name = "Wedge"
  6402. p81.CFrame = CFrame.new(2.69999964e-005, -11.8880205, -0.00143384933, 1, -8.62400285e-008, 8.88349216e-009, 2.11481286e-008, 0.342020214, 0.939694047, -8.40776266e-008, -0.939694047, 0.342020124)
  6403. p81.CanCollide = false
  6404. p81.Locked = true
  6405. p81.FormFactor = Enum.FormFactor.Custom
  6406. p81.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6407. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6408. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6409. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6410. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6411. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6412. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6413. b81 = Instance.new("SpecialMesh", p81)
  6414. b81.MeshType = Enum.MeshType.Wedge
  6415. b81.Name = "Mesh"
  6416. b81.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  6417. p82 = Instance.new("WedgePart", m8)
  6418. p82.BrickColor = BrickColor.new("Really black")
  6419. p82.Material = Enum.Material.Metal
  6420. p82.Reflectance = 0.40000000596046
  6421. p82.Name = "Wedge"
  6422. p82.CFrame = CFrame.new(2.69999964e-005, -11.1964474, 1.88168073, 1, -2.43563321e-008, -1.04780362e-007, -1.2949517e-008, 0.939693809, -0.342020929, 1.06791781e-007, 0.342020839, 0.939693809)
  6423. p82.CanCollide = false
  6424. p82.Locked = true
  6425. p82.FormFactor = Enum.FormFactor.Custom
  6426. p82.Size = Vector3.new(0.220499977, 0.314338177, 0.220499977)
  6427. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6428. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6429. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6430. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6431. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6432. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6433. b82 = Instance.new("SpecialMesh", p82)
  6434. b82.MeshType = Enum.MeshType.Wedge
  6435. b82.Name = "Mesh"
  6436. b82.Scale = Vector3.new(0.261019886, 1, 0.307869673)
  6437. p83 = Instance.new("WedgePart", m8)
  6438. p83.BrickColor = BrickColor.new("Really black")
  6439. p83.Material = Enum.Material.Metal
  6440. p83.Reflectance = 0.40000000596046
  6441. p83.Name = "Wedge"
  6442. p83.CFrame = CFrame.new(2.69999982e-005, -11.1028252, 1.9750396, -1, -2.43563356e-008, 1.73575856e-008, -1.695091e-008, 0.939693809, 0.342020959, -2.46411389e-008, 0.34202081, -0.939693809)
  6443. p83.CanCollide = false
  6444. p83.Locked = true
  6445. p83.FormFactor = Enum.FormFactor.Custom
  6446. p83.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6447. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6448. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6449. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6450. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6451. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6452. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6453. b83 = Instance.new("SpecialMesh", p83)
  6454. b83.MeshType = Enum.MeshType.Wedge
  6455. b83.Name = "Mesh"
  6456. b83.Scale = Vector3.new(0.261019886, 0.337987304, 0.204131007)
  6457. p84 = Instance.new("WedgePart", m8)
  6458. p84.BrickColor = BrickColor.new("Lime green")
  6459. p84.Material = Enum.Material.Neon
  6460. p84.Reflectance = 0.40000000596046
  6461. p84.Name = "Wedge"
  6462. p84.CFrame = CFrame.new(2.69999964e-005, -11.9309464, 0.202805281, -1, -1.18273746e-009, 8.8834895e-009, 8.75221495e-009, -0.342020243, 0.939694047, 1.92697125e-009, 0.939694047, 0.342020094)
  6463. p84.CanCollide = false
  6464. p84.Locked = true
  6465. p84.FormFactor = Enum.FormFactor.Custom
  6466. p84.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6467. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6468. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6469. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6470. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6471. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6472. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6473. b84 = Instance.new("SpecialMesh", p84)
  6474. b84.MeshType = Enum.MeshType.Wedge
  6475. b84.Name = "Mesh"
  6476. b84.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6477. p85 = Instance.new("WedgePart", m8)
  6478. p85.BrickColor = BrickColor.new("Black")
  6479. p85.Material = Enum.Material.Metal
  6480. p85.Reflectance = 0.40000000596046
  6481. p85.Name = "Wedge"
  6482. p85.CFrame = CFrame.new(2.69999964e-005, -11.7129288, 1.75927424, -1, -2.76164442e-008, 9.79634507e-009, -1.16697887e-008, 0.681997418, 0.731356382, -2.68784923e-008, 0.731356263, -0.681997478)
  6483. p85.CanCollide = false
  6484. p85.Locked = true
  6485. p85.FormFactor = Enum.FormFactor.Custom
  6486. p85.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  6487. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6488. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6489. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6490. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6491. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6492. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6493. b85 = Instance.new("SpecialMesh", p85)
  6494. b85.MeshType = Enum.MeshType.Wedge
  6495. b85.Name = "Mesh"
  6496. b85.Scale = Vector3.new(0.267712682, 1, 0.264366329)
  6497. p86 = Instance.new("WedgePart", m8)
  6498. p86.BrickColor = BrickColor.new("Lime green")
  6499. p86.Material = Enum.Material.Neon
  6500. p86.Reflectance = 0.40000000596046
  6501. p86.Name = "Wedge"
  6502. p86.CFrame = CFrame.new(2.7e-005, -11.9805536, 1.1176064, -1, -8.68188743e-010, 1.24787238e-008, 1.22781785e-008, -0.258819252, 0.965927005, 2.39117615e-009, 0.965927005, 0.258819193)
  6503. p86.CanCollide = false
  6504. p86.Locked = true
  6505. p86.FormFactor = Enum.FormFactor.Custom
  6506. p86.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6507. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6508. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6509. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6510. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6511. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6512. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6513. b86 = Instance.new("SpecialMesh", p86)
  6514. b86.MeshType = Enum.MeshType.Wedge
  6515. b86.Name = "Mesh"
  6516. b86.Scale = Vector3.new(0.334640861, 0.602353632, 0.133856341)
  6517. p87 = Instance.new("WedgePart", m8)
  6518. p87.BrickColor = BrickColor.new("Lime green")
  6519. p87.Material = Enum.Material.Neon
  6520. p87.Reflectance = 0.40000000596046
  6521. p87.Name = "Wedge"
  6522. p87.CFrame = CFrame.new(2.69999982e-005, -11.8886356, 0.251966357, -1, 8.14764007e-008, 5.27445554e-009, 2.29101431e-008, 0.342020154, -0.939693749, -7.83667886e-008, -0.939693749, -0.342020094)
  6523. p87.CanCollide = false
  6524. p87.Locked = true
  6525. p87.FormFactor = Enum.FormFactor.Custom
  6526. p87.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6527. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6528. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6529. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6530. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6531. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6532. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6533. b87 = Instance.new("SpecialMesh", p87)
  6534. b87.MeshType = Enum.MeshType.Wedge
  6535. b87.Name = "Mesh"
  6536. b87.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  6537. p88 = Instance.new("WedgePart", m8)
  6538. p88.BrickColor = BrickColor.new("Lime green")
  6539. p88.Material = Enum.Material.Neon
  6540. p88.Reflectance = 0.40000000596046
  6541. p88.Name = "Wedge"
  6542. p88.CFrame = CFrame.new(2.7e-005, -11.869071, 0.470699608, -1, 8.14764007e-008, 5.27445554e-009, 2.29101431e-008, 0.342020154, -0.939693749, -7.83667886e-008, -0.939693749, -0.342020094)
  6543. p88.CanCollide = false
  6544. p88.Locked = true
  6545. p88.FormFactor = Enum.FormFactor.Custom
  6546. p88.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6547. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6548. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6549. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6550. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6551. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6552. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6553. b88 = Instance.new("SpecialMesh", p88)
  6554. b88.MeshType = Enum.MeshType.Wedge
  6555. b88.Name = "Mesh"
  6556. b88.Scale = Vector3.new(0.334640861, 0.602353632, 0.267712682)
  6557. p89 = Instance.new("WedgePart", m8)
  6558. p89.BrickColor = BrickColor.new("Lime green")
  6559. p89.Material = Enum.Material.Neon
  6560. p89.Reflectance = 0.40000000596046
  6561. p89.Name = "Wedge"
  6562. p89.CFrame = CFrame.new(2.69999982e-005, -11.9583426, -0.0893729925, -1, -1.18272325e-009, 8.88348239e-009, 8.75221673e-009, -0.342020214, 0.93969357, 1.92696215e-009, 0.93969357, 0.342020154)
  6563. p89.CanCollide = false
  6564. p89.Locked = true
  6565. p89.FormFactor = Enum.FormFactor.Custom
  6566. p89.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6567. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6568. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6569. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6570. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6571. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6572. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6573. b89 = Instance.new("SpecialMesh", p89)
  6574. b89.MeshType = Enum.MeshType.Wedge
  6575. b89.Name = "Mesh"
  6576. b89.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  6577. p90 = Instance.new("WedgePart", m8)
  6578. p90.BrickColor = BrickColor.new("Lime green")
  6579. p90.Material = Enum.Material.Neon
  6580. p90.Reflectance = 0.40000000596046
  6581. p90.Name = "Wedge"
  6582. p90.CFrame = CFrame.new(2.69999982e-005, -11.8805695, 0.729635715, 1, -3.05929149e-008, 8.75114452e-008, -8.45121022e-008, 0.0871560574, 0.996195555, -3.81037033e-008, -0.996195555, 0.0871560574)
  6583. p90.CanCollide = false
  6584. p90.Locked = true
  6585. p90.FormFactor = Enum.FormFactor.Custom
  6586. p90.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6587. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6588. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6589. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6590. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6591. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6592. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6593. b90 = Instance.new("SpecialMesh", p90)
  6594. b90.MeshType = Enum.MeshType.Wedge
  6595. b90.Name = "Mesh"
  6596. b90.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  6597. p91 = Instance.new("WedgePart", m8)
  6598. p91.BrickColor = BrickColor.new("Really black")
  6599. p91.Material = Enum.Material.Metal
  6600. p91.Reflectance = 0.40000000596046
  6601. p91.Name = "Wedge"
  6602. p91.CFrame = CFrame.new(2.69999982e-005, -11.2718382, 1.82602453, -1, 1.16832744e-007, -9.28606454e-008, -1.69508567e-008, -0.707107246, -0.707107663, -1.4827576e-007, -0.707107663, 0.707107246)
  6603. p91.CanCollide = false
  6604. p91.Locked = true
  6605. p91.FormFactor = Enum.FormFactor.Custom
  6606. p91.Size = Vector3.new(0.220499977, 0.401408434, 0.220499977)
  6607. p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6608. p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6609. p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6610. p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6611. p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6612. p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6613. b91 = Instance.new("SpecialMesh", p91)
  6614. b91.MeshType = Enum.MeshType.Wedge
  6615. b91.Name = "Mesh"
  6616. b91.Scale = Vector3.new(0.267712682, 1, 0.200784534)
  6617. p92 = Instance.new("WedgePart", m8)
  6618. p92.BrickColor = BrickColor.new("Lime green")
  6619. p92.Material = Enum.Material.Neon
  6620. p92.Reflectance = 0.40000000596046
  6621. p92.Name = "Wedge"
  6622. p92.CFrame = CFrame.new(2.69999982e-005, -11.984252, 1.01731598, -1, -8.68163763e-010, 1.24787114e-008, 1.22781865e-008, -0.258819163, 0.965926766, 2.39115083e-009, 0.965926766, 0.258819163)
  6623. p92.CanCollide = false
  6624. p92.Locked = true
  6625. p92.FormFactor = Enum.FormFactor.Custom
  6626. p92.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6627. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6628. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6629. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6630. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6631. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6632. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6633. b92 = Instance.new("SpecialMesh", p92)
  6634. b92.MeshType = Enum.MeshType.Wedge
  6635. b92.Name = "Mesh"
  6636. b92.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6637. p93 = Instance.new("WedgePart", m8)
  6638. p93.BrickColor = BrickColor.new("Lime green")
  6639. p93.Material = Enum.Material.Neon
  6640. p93.Reflectance = 0.40000000596046
  6641. p93.Name = "Wedge"
  6642. p93.CFrame = CFrame.new(2.69999964e-005, -11.9214983, 0.99980092, 1, -8.93497187e-008, 2.29101715e-008, -2.29101325e-008, 2.98023224e-007, 1.00000083, -8.9349804e-008, -1.00000083, 2.98023224e-007)
  6643. p93.CanCollide = false
  6644. p93.Locked = true
  6645. p93.FormFactor = Enum.FormFactor.Custom
  6646. p93.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6647. p93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6648. p93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6649. p93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6650. p93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6651. p93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6652. p93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6653. b93 = Instance.new("SpecialMesh", p93)
  6654. b93.MeshType = Enum.MeshType.Wedge
  6655. b93.Name = "Mesh"
  6656. b93.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  6657. p94 = Instance.new("WedgePart", m8)
  6658. p94.BrickColor = BrickColor.new("Lime green")
  6659. p94.Material = Enum.Material.Neon
  6660. p94.Reflectance = 0.40000000596046
  6661. p94.Name = "Wedge"
  6662. p94.CFrame = CFrame.new(2.69999964e-005, -11.9032125, 0.212900162, -1, 8.8605475e-008, -9.63062732e-008, 1.20803207e-007, 0.342020005, -0.93969363, -5.03233366e-008, -0.93969363, -0.342020005)
  6663. p94.CanCollide = false
  6664. p94.Locked = true
  6665. p94.FormFactor = Enum.FormFactor.Custom
  6666. p94.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6667. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6668. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6669. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6670. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6671. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6672. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6673. b94 = Instance.new("SpecialMesh", p94)
  6674. b94.MeshType = Enum.MeshType.Wedge
  6675. b94.Name = "Mesh"
  6676. b94.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6677. p95 = Instance.new("WedgePart", m8)
  6678. p95.BrickColor = BrickColor.new("Black")
  6679. p95.Material = Enum.Material.Metal
  6680. p95.Reflectance = 0.40000000596046
  6681. p95.Name = "Wedge"
  6682. p95.CFrame = CFrame.new(2.69999964e-005, -11.361845, 1.9233377, -1, -2.94099678e-008, 5.43784395e-009, -1.69508834e-008, 0.707107186, 0.707107663, -2.46411602e-008, 0.707107663, -0.707107186)
  6683. p95.CanCollide = false
  6684. p95.Locked = true
  6685. p95.FormFactor = Enum.FormFactor.Custom
  6686. p95.Size = Vector3.new(0.220499977, 0.391078025, 0.222102806)
  6687. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6688. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6689. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6690. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6691. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6692. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6693. b95 = Instance.new("SpecialMesh", p95)
  6694. b95.MeshType = Enum.MeshType.Wedge
  6695. b95.Name = "Mesh"
  6696. b95.Scale = Vector3.new(0.261019886, 1, 1)
  6697. p96 = Instance.new("WedgePart", m8)
  6698. p96.BrickColor = BrickColor.new("Lime green")
  6699. p96.Material = Enum.Material.Neon
  6700. p96.Reflectance = 0.40000000596046
  6701. p96.Name = "Wedge"
  6702. p96.CFrame = CFrame.new(2.69999982e-005, -11.9530287, 1.26521814, -1, -3.29206387e-008, 2.51881929e-008, 1.58094231e-008, 0.258819431, 0.965926588, -3.83181202e-008, 0.965926588, -0.258819431)
  6703. p96.CanCollide = false
  6704. p96.Locked = true
  6705. p96.FormFactor = Enum.FormFactor.Custom
  6706. p96.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6707. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6708. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6709. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6710. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6711. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6712. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6713. b96 = Instance.new("SpecialMesh", p96)
  6714. b96.MeshType = Enum.MeshType.Wedge
  6715. b96.Name = "Mesh"
  6716. b96.Scale = Vector3.new(0.334640861, 0.736209989, 0.133856341)
  6717. p97 = Instance.new("WedgePart", m8)
  6718. p97.BrickColor = BrickColor.new("Lime green")
  6719. p97.Material = Enum.Material.Neon
  6720. p97.Reflectance = 0.40000000596046
  6721. p97.Name = "Wedge"
  6722. p97.CFrame = CFrame.new(2.69999964e-005, -11.9457083, -0.210409045, -1, -1.18269794e-009, 8.88346818e-009, 8.75222206e-009, -0.342020214, 0.939693332, 1.92694349e-009, 0.939693332, 0.342020214)
  6723. p97.CanCollide = false
  6724. p97.Locked = true
  6725. p97.FormFactor = Enum.FormFactor.Custom
  6726. p97.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6727. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6728. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6729. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6730. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6731. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6732. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6733. b97 = Instance.new("SpecialMesh", p97)
  6734. b97.MeshType = Enum.MeshType.Wedge
  6735. b97.Name = "Mesh"
  6736. b97.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6737. p98 = Instance.new("WedgePart", m8)
  6738. p98.BrickColor = BrickColor.new("Lime green")
  6739. p98.Material = Enum.Material.Neon
  6740. p98.Reflectance = 0.40000000596046
  6741. p98.Name = "Wedge"
  6742. p98.CFrame = CFrame.new(2.7e-005, -11.9322329, 0.816780686, 1, -1.68899135e-007, 5.27447064e-009, -5.2810492e-008, -0.342020094, -0.939693272, 1.60517359e-007, 0.939693272, -0.342020094)
  6743. p98.CanCollide = false
  6744. p98.Locked = true
  6745. p98.FormFactor = Enum.FormFactor.Custom
  6746. p98.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6747. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6748. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6749. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6750. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6751. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6752. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6753. b98 = Instance.new("SpecialMesh", p98)
  6754. b98.MeshType = Enum.MeshType.Wedge
  6755. b98.Name = "Mesh"
  6756. b98.Scale = Vector3.new(0.334640861, 0.669281721, 0.267712682)
  6757. p99 = Instance.new("WedgePart", m8)
  6758. p99.BrickColor = BrickColor.new("Lime green")
  6759. p99.Material = Enum.Material.Neon
  6760. p99.Reflectance = 0.40000000596046
  6761. p99.Name = "Wedge"
  6762. p99.CFrame = CFrame.new(2.69999982e-005, -11.9055624, 1.3254329, -1, -3.49906557e-008, 2.22318874e-008, 1.58180669e-008, 0.173648253, 0.984808207, -3.83196053e-008, 0.984808207, -0.173648253)
  6763. p99.CanCollide = false
  6764. p99.Locked = true
  6765. p99.FormFactor = Enum.FormFactor.Custom
  6766. p99.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6767. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6768. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6769. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6770. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6771. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6772. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6773. b99 = Instance.new("SpecialMesh", p99)
  6774. b99.MeshType = Enum.MeshType.Wedge
  6775. b99.Name = "Mesh"
  6776. b99.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  6777. p100 = Instance.new("WedgePart", m8)
  6778. p100.BrickColor = BrickColor.new("Lime green")
  6779. p100.Material = Enum.Material.Neon
  6780. p100.Reflectance = 0.40000000596046
  6781. p100.Name = "Wedge"
  6782. p100.CFrame = CFrame.new(2.69999982e-005, -11.9114323, 1.08247674, -1, 1.18015713e-007, 8.75114381e-008, 7.68926611e-008, -0.0871561319, 0.996195078, 1.2519385e-007, 0.996195078, 0.0871561319)
  6783. p100.CanCollide = false
  6784. p100.Locked = true
  6785. p100.FormFactor = Enum.FormFactor.Custom
  6786. p100.Size = Vector3.new(0.220499977, 0.236122593, 0.220499977)
  6787. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6788. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6789. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6790. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6791. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6792. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6793. b100 = Instance.new("SpecialMesh", p100)
  6794. b100.MeshType = Enum.MeshType.Wedge
  6795. b100.Name = "Mesh"
  6796. b100.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  6797. p101 = Instance.new("WedgePart", m8)
  6798. p101.BrickColor = BrickColor.new("Lime green")
  6799. p101.Material = Enum.Material.Neon
  6800. p101.Reflectance = 0.40000000596046
  6801. p101.Name = "Wedge"
  6802. p101.CFrame = CFrame.new(2.69999982e-005, -11.8602819, 0.575987279, -1, 8.14763652e-008, 5.27446709e-009, 2.29101644e-008, 0.342020035, -0.939693093, -7.83667531e-008, -0.939693093, -0.342020035)
  6803. p101.CanCollide = false
  6804. p101.Locked = true
  6805. p101.FormFactor = Enum.FormFactor.Custom
  6806. p101.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6807. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6808. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6809. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6810. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6811. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6812. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6813. b101 = Instance.new("SpecialMesh", p101)
  6814. b101.MeshType = Enum.MeshType.Wedge
  6815. b101.Name = "Mesh"
  6816. b101.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6817. p102 = Instance.new("WedgePart", m8)
  6818. p102.BrickColor = BrickColor.new("Lime green")
  6819. p102.Material = Enum.Material.Neon
  6820. p102.Reflectance = 0.40000000596046
  6821. p102.Name = "Wedge"
  6822. p102.CFrame = CFrame.new(2.69999982e-005, -11.8709736, -0.283571124, -1, 8.14763652e-008, 5.27447064e-009, 2.29101609e-008, 0.342020035, -0.939693093, -7.83667531e-008, -0.939693093, -0.342020035)
  6823. p102.CanCollide = false
  6824. p102.Locked = true
  6825. p102.FormFactor = Enum.FormFactor.Custom
  6826. p102.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6827. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6828. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6829. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6830. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6831. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6832. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6833. b102 = Instance.new("SpecialMesh", p102)
  6834. b102.MeshType = Enum.MeshType.Wedge
  6835. b102.Name = "Mesh"
  6836. b102.Scale = Vector3.new(0.334640861, 0.736209989, 0.334640861)
  6837. p103 = Instance.new("WedgePart", m8)
  6838. p103.BrickColor = BrickColor.new("Lime green")
  6839. p103.Material = Enum.Material.Neon
  6840. p103.Reflectance = 0.40000000596046
  6841. p103.Name = "Wedge"
  6842. p103.CFrame = CFrame.new(2.69999982e-005, -11.9097681, 0.739346266, 1, -8.65546141e-008, 1.24786919e-008, 1.03484972e-008, 0.258819103, 0.965926111, -8.68351009e-008, -0.965926111, 0.258819103)
  6843. p103.CanCollide = false
  6844. p103.Locked = true
  6845. p103.FormFactor = Enum.FormFactor.Custom
  6846. p103.Size = Vector3.new(0.220499977, 0.221364915, 0.220499977)
  6847. p103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6848. p103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6849. p103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6850. p103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6851. p103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6852. p103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6853. b103 = Instance.new("SpecialMesh", p103)
  6854. b103.MeshType = Enum.MeshType.Wedge
  6855. b103.Name = "Mesh"
  6856. b103.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  6857. p104 = Instance.new("WedgePart", m8)
  6858. p104.BrickColor = BrickColor.new("Lime green")
  6859. p104.Material = Enum.Material.Neon
  6860. p104.Reflectance = 0.40000000596046
  6861. p104.Name = "Wedge"
  6862. p104.CFrame = CFrame.new(2.69999964e-005, -11.9271755, 0.55203414, 1, -1.68899149e-007, 5.27447863e-009, -5.28104778e-008, -0.342019916, -0.939692855, 1.60517274e-007, 0.939692855, -0.342019916)
  6863. p104.CanCollide = false
  6864. p104.Locked = true
  6865. p104.FormFactor = Enum.FormFactor.Custom
  6866. p104.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6867. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6868. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6869. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6870. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6871. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6872. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6873. b104 = Instance.new("SpecialMesh", p104)
  6874. b104.MeshType = Enum.MeshType.Wedge
  6875. b104.Name = "Mesh"
  6876. b104.Scale = Vector3.new(0.334640861, 0.535425484, 0.267712682)
  6877. p105 = Instance.new("WedgePart", m8)
  6878. p105.BrickColor = BrickColor.new("Really black")
  6879. p105.Material = Enum.Material.Metal
  6880. p105.Reflectance = 0.40000000596046
  6881. p105.Name = "Wedge"
  6882. p105.CFrame = CFrame.new(2.69999982e-005, -11.3177481, 1.88445807, -1, -2.94099785e-008, 5.43784395e-009, -1.69508549e-008, 0.707106531, 0.707107127, -2.46411282e-008, 0.707107127, -0.707106531)
  6883. p105.CanCollide = false
  6884. p105.Locked = true
  6885. p105.FormFactor = Enum.FormFactor.Custom
  6886. p105.Size = Vector3.new(0.220499977, 0.383699238, 0.220499977)
  6887. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6888. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6889. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6890. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6891. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6892. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6893. b105 = Instance.new("SpecialMesh", p105)
  6894. b105.MeshType = Enum.MeshType.Wedge
  6895. b105.Name = "Mesh"
  6896. b105.Scale = Vector3.new(0.267712682, 1, 0.468497276)
  6897. p106 = Instance.new("WedgePart", m8)
  6898. p106.BrickColor = BrickColor.new("Lime green")
  6899. p106.Material = Enum.Material.Neon
  6900. p106.Reflectance = 0.40000000596046
  6901. p106.Name = "Wedge"
  6902. p106.CFrame = CFrame.new(2.69999964e-005, -11.8602819, 0.325106204, -1, 8.14763723e-008, 5.27446709e-009, 2.29101538e-008, 0.342019886, -0.939692736, -7.83667247e-008, -0.939692736, -0.342019886)
  6903. p106.CanCollide = false
  6904. p106.Locked = true
  6905. p106.FormFactor = Enum.FormFactor.Custom
  6906. p106.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6907. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6908. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6909. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6910. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6911. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6912. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6913. b106 = Instance.new("SpecialMesh", p106)
  6914. b106.MeshType = Enum.MeshType.Wedge
  6915. b106.Name = "Mesh"
  6916. b106.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6917. p107 = Instance.new("WedgePart", m8)
  6918. p107.BrickColor = BrickColor.new("Lime green")
  6919. p107.Material = Enum.Material.Neon
  6920. p107.Reflectance = 0.40000000596046
  6921. p107.Name = "Wedge"
  6922. p107.CFrame = CFrame.new(2.69999982e-005, -11.9731445, 1.13999915, 1, -8.93497187e-008, 2.29101502e-008, -2.29101129e-008, 3.87430248e-007, 1, -8.93497258e-008, -1, 3.87430276e-007)
  6923. p107.CanCollide = false
  6924. p107.Locked = true
  6925. p107.FormFactor = Enum.FormFactor.Custom
  6926. p107.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6927. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6928. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6929. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6930. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6931. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6932. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6933. b107 = Instance.new("SpecialMesh", p107)
  6934. b107.MeshType = Enum.MeshType.Wedge
  6935. b107.Name = "Mesh"
  6936. b107.Scale = Vector3.new(0.334640861, 0.468497276, 0.133856341)
  6937. p108 = Instance.new("WedgePart", m8)
  6938. p108.BrickColor = BrickColor.new("Black")
  6939. p108.Material = Enum.Material.Metal
  6940. p108.Reflectance = 0.40000000596046
  6941. p108.Name = "Wedge"
  6942. p108.CFrame = CFrame.new(2.69999982e-005, -12.0124025, 1.01832807, 1, 3.82198948e-008, 2.11711555e-008, -2.11711537e-008, -2.98023224e-008, 1, 3.82198913e-008, -1, -2.98023224e-008)
  6943. p108.CanCollide = false
  6944. p108.Locked = true
  6945. p108.FormFactor = Enum.FormFactor.Custom
  6946. p108.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6947. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6948. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6949. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6950. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6951. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6952. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6953. b108 = Instance.new("SpecialMesh", p108)
  6954. b108.MeshType = Enum.MeshType.Wedge
  6955. b108.Name = "Mesh"
  6956. b108.Scale = Vector3.new(0.267712682, 0.669281721, 0.0669281706)
  6957. p109 = Instance.new("WedgePart", m8)
  6958. p109.BrickColor = BrickColor.new("Lime green")
  6959. p109.Material = Enum.Material.Neon
  6960. p109.Reflectance = 0.40000000596046
  6961. p109.Name = "Wedge"
  6962. p109.CFrame = CFrame.new(2.7e-005, -11.9461164, 0.330772072, -1, -1.18270771e-009, 8.88346818e-009, 8.75223805e-009, -0.342019796, 0.939692795, 1.92694571e-009, 0.939692795, 0.342019796)
  6963. p109.CanCollide = false
  6964. p109.Locked = true
  6965. p109.FormFactor = Enum.FormFactor.Custom
  6966. p109.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6967. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6968. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6969. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6970. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6971. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6972. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6973. b109 = Instance.new("SpecialMesh", p109)
  6974. b109.MeshType = Enum.MeshType.Wedge
  6975. b109.Name = "Mesh"
  6976. b109.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  6977. p110 = Instance.new("WedgePart", m8)
  6978. p110.BrickColor = BrickColor.new("Lime green")
  6979. p110.Material = Enum.Material.Neon
  6980. p110.Reflectance = 0.40000000596046
  6981. p110.Name = "Wedge"
  6982. p110.CFrame = CFrame.new(2.69999982e-005, -11.8880196, 0.565889001, -1, 5.94638294e-009, -9.26972632e-008, -8.91407268e-008, -0.342019916, 0.939692736, -2.61165312e-008, 0.939692736, 0.342019916)
  6983. p110.CanCollide = false
  6984. p110.Locked = true
  6985. p110.FormFactor = Enum.FormFactor.Custom
  6986. p110.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6987. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6988. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6989. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6990. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6991. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6992. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6993. b110 = Instance.new("SpecialMesh", p110)
  6994. b110.MeshType = Enum.MeshType.Wedge
  6995. b110.Name = "Mesh"
  6996. b110.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6997. p111 = Instance.new("Part", m8)
  6998. p111.BrickColor = BrickColor.new("Really black")
  6999. p111.Material = Enum.Material.Metal
  7000. p111.Transparency = 1
  7001. p111.Name = "Hitbox"
  7002. p111.CFrame = CFrame.new(2.7e-005, -11.550066, 0.678469002, 1, -4.08900576e-008, -5.9526446e-008, -5.9526446e-008, 0, -1, 4.08900576e-008, 1, -2.43403981e-015)
  7003. p111.CanCollide = false
  7004. p111.Locked = true
  7005. p111.FormFactor = Enum.FormFactor.Custom
  7006. p111.Size = Vector3.new(0.22, 2.57, 1.22)
  7007. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7008. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7009. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7010. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7011. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7012. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7013. b111 = Instance.new("BlockMesh", p111)
  7014. b111.Name = "Mesh"
  7015. w1 = Instance.new("Weld", p1)
  7016. w1.Name = "Block_Weld"
  7017. w1.Part0 = p1
  7018. w1.C0 = CFrame.new(-2.69832744e-005, -0.186136514, 1.51893806, 1, -1.84926652e-008, -5.47947643e-009, -1.44443195e-008, -0.906307817, 0.4226183, -1.2781431e-008, -0.42261833, -0.906307876)
  7019. w1.Part1 = p2
  7020. w1.C1 = CFrame.new(-2.69930079e-005, 0.251219004, 0.42801699, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7021. w2 = Instance.new("Weld", p2)
  7022. w2.Name = "Block_Weld"
  7023. w2.Part0 = p2
  7024. w2.C0 = CFrame.new(-2.69930079e-005, 0.251219004, 0.42801699, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7025. w2.Part1 = p3
  7026. w2.C1 = CFrame.new(-2.69900993e-005, 0.251215994, 0.959293008, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7027. w3 = Instance.new("Weld", p3)
  7028. w3.Name = "Block_Weld"
  7029. w3.Part0 = p3
  7030. w3.C0 = CFrame.new(-2.69900993e-005, 0.251215994, 0.959293008, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7031. w3.Part1 = p4
  7032. w3.C1 = CFrame.new(-2.69401171e-005, 1.28190136, 0.0890034437, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  7033. w4 = Instance.new("Weld", p4)
  7034. w4.Name = "Block_Weld"
  7035. w4.Part0 = p4
  7036. w4.C0 = CFrame.new(-2.69401171e-005, 1.28190136, 0.0890034437, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  7037. w4.Part1 = p5
  7038. w4.C1 = CFrame.new(-2.69969169e-005, 0.137085795, -0.374426812, 1, -1.85013622e-008, -5.47535173e-009, -1.92582732e-008, -0.939692676, -0.342020124, 1.18268995e-009, 0.342020094, -0.939692676)
  7039. w5 = Instance.new("Weld", p5)
  7040. w5.Name = "Block_Weld"
  7041. w5.Part0 = p5
  7042. w5.C0 = CFrame.new(-2.69969169e-005, 0.137085795, -0.374426812, 1, -1.85013622e-008, -5.47535173e-009, -1.92582732e-008, -0.939692676, -0.342020124, 1.18268995e-009, 0.342020094, -0.939692676)
  7043. w5.Part1 = p6
  7044. w5.C1 = CFrame.new(-2.69537759e-005, 0.678798974, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7045. w6 = Instance.new("Weld", p6)
  7046. w6.Name = "Block_Weld"
  7047. w6.Part0 = p6
  7048. w6.C0 = CFrame.new(-2.69537759e-005, 0.678798974, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7049. w6.Part1 = p7
  7050. w6.C1 = CFrame.new(-2.69908196e-005, 0.433371782, 0.833767056, 1, -2.22994831e-008, -5.07635534e-009, -2.28535058e-008, -0.965925813, -0.258819252, 8.68153105e-010, 0.258819252, -0.965925813)
  7051. w7 = Instance.new("Weld", p7)
  7052. w7.Name = "Block_Weld"
  7053. w7.Part0 = p7
  7054. w7.C0 = CFrame.new(-2.69908196e-005, 0.433371782, 0.833767056, 1, -2.22994831e-008, -5.07635534e-009, -2.28535058e-008, -0.965925813, -0.258819252, 8.68153105e-010, 0.258819252, -0.965925813)
  7055. w7.Part1 = p8
  7056. w7.C1 = CFrame.new(-2.69945249e-005, 0.284905016, 0.00881863385, 1, -1.85013658e-008, -5.47534995e-009, -1.92582768e-008, -0.939692736, -0.342019945, 1.1826895e-009, 0.342019945, -0.939692736)
  7057. w8 = Instance.new("Weld", p8)
  7058. w8.Name = "Block_Weld"
  7059. w8.Part0 = p8
  7060. w8.C0 = CFrame.new(-2.69945249e-005, 0.284905016, 0.00881863385, 1, -1.85013658e-008, -5.47534995e-009, -1.92582768e-008, -0.939692736, -0.342019945, 1.1826895e-009, 0.342019945, -0.939692736)
  7061. w8.Part1 = p9
  7062. w8.C1 = CFrame.new(-2.6987369e-005, 0.398795992, 0.959297001, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7063. w9 = Instance.new("Weld", p9)
  7064. w9.Name = "Block_Weld"
  7065. w9.Part0 = p9
  7066. w9.C0 = CFrame.new(-2.6987369e-005, 0.398795992, 0.959297001, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7067. w9.Part1 = p10
  7068. w9.C1 = CFrame.new(-2.69795964e-005, -0.736729562, 1.60363591, 1, -1.84926936e-008, -5.47947465e-009, -9.20173093e-009, -0.70710659, 0.707107067, -1.69508851e-008, -0.707107008, -0.707106531)
  7069. w10 = Instance.new("Weld", p10)
  7070. w10.Name = "Circle_Weld"
  7071. w10.Part0 = p10
  7072. w10.C0 = CFrame.new(-2.69795964e-005, -0.736729562, 1.60363591, 1, -1.84926936e-008, -5.47947465e-009, -9.20173093e-009, -0.70710659, 0.707107067, -1.69508851e-008, -0.707107008, -0.707106531)
  7073. w10.Part1 = p11
  7074. w10.C1 = CFrame.new(-2.69700085e-005, 0.582876027, 0.487334013, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7075. w11 = Instance.new("Weld", p11)
  7076. w11.Name = "Block_Weld"
  7077. w11.Part0 = p11
  7078. w11.C0 = CFrame.new(-2.69700085e-005, 0.582876027, 0.487334013, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7079. w11.Part1 = p12
  7080. w11.C1 = CFrame.new(-2.70516502e-005, -0.478946328, -0.541931212, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7081. w12 = Instance.new("Weld", p12)
  7082. w12.Name = "Block_Weld"
  7083. w12.Part0 = p12
  7084. w12.C0 = CFrame.new(-2.70516502e-005, -0.478946328, -0.541931212, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7085. w12.Part1 = p13
  7086. w12.C1 = CFrame.new(-2.69418342e-005, 1.23103857, 0.0979698896, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  7087. w13 = Instance.new("Weld", p13)
  7088. w13.Name = "Block_Weld"
  7089. w13.Part0 = p13
  7090. w13.C0 = CFrame.new(-2.69418342e-005, 1.23103857, 0.0979698896, 1, -5.93262826e-008, 3.3261891e-008, -4.3058467e-008, -0.173648134, 0.984807849, -5.26491242e-008, -0.984807849, -0.173648119)
  7091. w13.Part1 = p14
  7092. w13.C1 = CFrame.new(-2.6981159e-005, -0.784118533, 1.59557724, 1, -1.85013231e-008, -5.47617596e-009, -9.79630865e-009, -0.731355369, 0.681996644, -1.6622872e-008, -0.681996644, -0.731355369)
  7093. w14 = Instance.new("Weld", p14)
  7094. w14.Name = "Block_Weld"
  7095. w14.Part0 = p14
  7096. w14.C0 = CFrame.new(-2.6981159e-005, -0.784118533, 1.59557724, 1, -1.85013231e-008, -5.47617596e-009, -9.79630865e-009, -0.731355369, 0.681996644, -1.6622872e-008, -0.681996644, -0.731355369)
  7097. w14.Part1 = p15
  7098. w14.C1 = CFrame.new(-2.69917327e-005, 0.398790002, 0.162386, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7099. w15 = Instance.new("Weld", p15)
  7100. w15.Name = "Handle_Weld"
  7101. w15.Part0 = p15
  7102. w15.C0 = CFrame.new(-2.69917327e-005, 0.398790002, 0.162386, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7103. w15.Part1 = p16
  7104. w15.C1 = CFrame.new(-2.69356715e-005, 1.12153399, 0.310250998, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7105. w16 = Instance.new("Weld", p16)
  7106. w16.Name = "Block_Weld"
  7107. w16.Part0 = p16
  7108. w16.C0 = CFrame.new(-2.69356715e-005, 1.12153399, 0.310250998, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7109. w16.Part1 = p17
  7110. w16.C1 = CFrame.new(-2.69897973e-005, 0.238820702, 1.16951191, 1, -3.32849588e-008, -1.92696081e-009, -3.32849588e-008, -1, -5.96046448e-007, -1.92694105e-009, 5.96046448e-007, -1)
  7111. w17 = Instance.new("Weld", p17)
  7112. w17.Name = "Block_Weld"
  7113. w17.Part0 = p17
  7114. w17.C0 = CFrame.new(-2.69897973e-005, 0.238820702, 1.16951191, 1, -3.32849588e-008, -1.92696081e-009, -3.32849588e-008, -1, -5.96046448e-007, -1.92694105e-009, 5.96046448e-007, -1)
  7115. w17.Part1 = p18
  7116. w17.C1 = CFrame.new(-2.66556708e-005, -0.120330438, -1.77344465, 1, -1.30568679e-007, 1.80827243e-007, -9.71847456e-008, -0.984807849, -0.173648149, 2.00753092e-007, 0.173648149, -0.984807849)
  7117. w18 = Instance.new("Weld", p18)
  7118. w18.Name = "Block_Weld"
  7119. w18.Part0 = p18
  7120. w18.C0 = CFrame.new(-2.66556708e-005, -0.120330438, -1.77344465, 1, -1.30568679e-007, 1.80827243e-007, -9.71847456e-008, -0.984807849, -0.173648149, 2.00753092e-007, 0.173648149, -0.984807849)
  7121. w18.Part1 = p19
  7122. w18.C1 = CFrame.new(-2.69959182e-005, 0.251221001, -0.103256002, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7123. w19 = Instance.new("Weld", p19)
  7124. w19.Name = "Block_Weld"
  7125. w19.Part0 = p19
  7126. w19.C0 = CFrame.new(-2.69959182e-005, 0.251221001, -0.103256002, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7127. w19.Part1 = p20
  7128. w19.C1 = CFrame.new(-2.69467728e-005, 0.96053493, 0.227395192, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  7129. w20 = Instance.new("Weld", p20)
  7130. w20.Name = "Block_Weld"
  7131. w20.Part0 = p20
  7132. w20.C0 = CFrame.new(-2.69467728e-005, 0.96053493, 0.227395192, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  7133. w20.Part1 = p21
  7134. w20.C1 = CFrame.new(-2.69068951e-005, 0.768746018, 1.55135453, 1, -5.95264353e-008, 4.08900647e-008, 1.93162606e-008, 0.766044378, 0.642787635, -6.95864628e-008, -0.642787635, 0.766044378)
  7135. w21 = Instance.new("Weld", p21)
  7136. w21.Name = "Block_Weld"
  7137. w21.Part0 = p21
  7138. w21.C0 = CFrame.new(-2.69068951e-005, 0.768746018, 1.55135453, 1, -5.95264353e-008, 4.08900647e-008, 1.93162606e-008, 0.766044378, 0.642787635, -6.95864628e-008, -0.642787635, 0.766044378)
  7139. w21.Part1 = p22
  7140. w21.C1 = CFrame.new(-2.69946413e-005, 0.398795009, -0.368889004, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7141. w22 = Instance.new("Weld", p22)
  7142. w22.Name = "Block_Weld"
  7143. w22.Part0 = p22
  7144. w22.C0 = CFrame.new(-2.69946413e-005, 0.398795009, -0.368889004, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7145. w22.Part1 = p23
  7146. w22.C1 = CFrame.new(-2.69552838e-005, 0.641906977, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7147. w23 = Instance.new("Weld", p23)
  7148. w23.Name = "Block_Weld"
  7149. w23.Part0 = p23
  7150. w23.C0 = CFrame.new(-2.69552838e-005, 0.641906977, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7151. w23.Part1 = p24
  7152. w23.C1 = CFrame.new(-2.69185657e-005, 1.24407315, -1.15251172, 1, -5.95250427e-008, 4.08918623e-008, -7.1883612e-008, -0.766044438, 0.642787635, -6.93698077e-009, -0.642787635, -0.766044438)
  7153. w24 = Instance.new("Weld", p24)
  7154. w24.Name = "Block_Weld"
  7155. w24.Part0 = p24
  7156. w24.C0 = CFrame.new(-2.69185657e-005, 1.24407315, -1.15251172, 1, -5.95250427e-008, 4.08918623e-008, -7.1883612e-008, -0.766044438, 0.642787635, -6.93698077e-009, -0.642787635, -0.766044438)
  7157. w24.Part1 = p25
  7158. w24.C1 = CFrame.new(-2.69163629e-005, 1.59377503, 0.310250014, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7159. w25 = Instance.new("Weld", p25)
  7160. w25.Name = "Block_Weld"
  7161. w25.Part0 = p25
  7162. w25.C0 = CFrame.new(-2.69163629e-005, 1.59377503, 0.310250014, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7163. w25.Part1 = p26
  7164. w25.C1 = CFrame.new(-2.69902794e-005, 0.398795992, 0.428018987, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7165. w26 = Instance.new("Weld", p26)
  7166. w26.Name = "Block_Weld"
  7167. w26.Part0 = p26
  7168. w26.C0 = CFrame.new(-2.69902794e-005, 0.398795992, 0.428018987, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7169. w26.Part1 = p27
  7170. w26.C1 = CFrame.new(-2.69587144e-005, 0.835756719, 0.0972530842, 1, -5.87286522e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949752e-008, -0.965925872, -0.258819073)
  7171. w27 = Instance.new("Weld", p27)
  7172. w27.Name = "Circle_Weld"
  7173. w27.Part0 = p27
  7174. w27.C0 = CFrame.new(-2.69587144e-005, 0.835756719, 0.0972530842, 1, -5.87286522e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949752e-008, -0.965925872, -0.258819073)
  7175. w27.Part1 = p28
  7176. w27.C1 = CFrame.new(-2.69736647e-005, 0.523847997, 0.398797005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7177. w28 = Instance.new("Weld", p28)
  7178. w28.Name = "Block_Weld"
  7179. w28.Part0 = p28
  7180. w28.C0 = CFrame.new(-2.69736647e-005, 0.523847997, 0.398797005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7181. w28.Part1 = p29
  7182. w28.C1 = CFrame.new(-2.69856282e-005, -0.269396931, 1.4983108, 1, -1.85013231e-008, -5.47617596e-009, -1.48908761e-008, -0.920505881, 0.39072898, -1.22698536e-008, -0.390728921, -0.920505762)
  7183. w29 = Instance.new("Weld", p29)
  7184. w29.Name = "Block_Weld"
  7185. w29.Part0 = p29
  7186. w29.C0 = CFrame.new(-2.69856282e-005, -0.269396931, 1.4983108, 1, -1.85013231e-008, -5.47617596e-009, -1.48908761e-008, -0.920505881, 0.39072898, -1.22698536e-008, -0.390728921, -0.920505762)
  7187. w29.Part1 = p30
  7188. w29.C1 = CFrame.new(-2.69419597e-005, 1.38456392, -0.0497993827, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  7189. w30 = Instance.new("Weld", p30)
  7190. w30.Name = "Block_Weld"
  7191. w30.Part0 = p30
  7192. w30.C0 = CFrame.new(-2.69419597e-005, 1.38456392, -0.0497993827, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  7193. w30.Part1 = p31
  7194. w30.C1 = CFrame.new(2.69478169e-005, 0.342279971, -0.842677951, -1, 7.41767252e-008, 3.71994631e-008, -7.71366189e-008, -0.99619472, -0.0871560574, 3.05929575e-008, -0.0871560574, 0.99619472)
  7195. w31 = Instance.new("Weld", p31)
  7196. w31.Name = "Block_Weld"
  7197. w31.Part0 = p31
  7198. w31.C0 = CFrame.new(2.69478169e-005, 0.342279971, -0.842677951, -1, 7.41767252e-008, 3.71994631e-008, -7.71366189e-008, -0.99619472, -0.0871560574, 3.05929575e-008, -0.0871560574, 0.99619472)
  7199. w31.Part1 = p32
  7200. w31.C1 = CFrame.new(-2.69236225e-005, 1.26664269, 0.422248751, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7201. w32 = Instance.new("Weld", p32)
  7202. w32.Name = "Block_Weld"
  7203. w32.Part0 = p32
  7204. w32.C0 = CFrame.new(-2.69236225e-005, 1.26664269, 0.422248751, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7205. w32.Part1 = p33
  7206. w32.C1 = CFrame.new(-2.69888242e-005, 0.398795992, 0.693659008, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7207. w33 = Instance.new("Weld", p33)
  7208. w33.Name = "Block_Weld"
  7209. w33.Part0 = p33
  7210. w33.C0 = CFrame.new(-2.69888242e-005, 0.398795992, 0.693659008, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7211. w33.Part1 = p34
  7212. w33.C1 = CFrame.new(-2.6941103e-005, 0.98871398, 0.310249001, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7213. w34 = Instance.new("Weld", p34)
  7214. w34.Name = "Block_Weld"
  7215. w34.Part0 = p34
  7216. w34.C0 = CFrame.new(-2.6941103e-005, 0.98871398, 0.310249001, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7217. w34.Part1 = p35
  7218. w34.C1 = CFrame.new(-2.69199827e-005, 1.505234, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7219. w35 = Instance.new("Weld", p35)
  7220. w35.Name = "Block_Weld"
  7221. w35.Part0 = p35
  7222. w35.C0 = CFrame.new(-2.69199827e-005, 1.505234, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7223. w35.Part1 = p36
  7224. w35.C1 = CFrame.new(-2.70044802e-005, 0.310245991, -1.86679304, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7225. w36 = Instance.new("Weld", p36)
  7226. w36.Name = "Circle_Weld"
  7227. w36.Part0 = p36
  7228. w36.C0 = CFrame.new(-2.70044802e-005, 0.310245991, -1.86679304, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7229. w36.Part1 = p37
  7230. w36.C1 = CFrame.new(-2.69731972e-005, 0.523847997, 0.428321004, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7231. w37 = Instance.new("Weld", p37)
  7232. w37.Name = "Block_Weld"
  7233. w37.Part0 = p37
  7234. w37.C0 = CFrame.new(-2.69731972e-005, 0.523847997, 0.428321004, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7235. w37.Part1 = p38
  7236. w37.C1 = CFrame.new(-2.69113971e-005, 1.64542603, 0.358211011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7237. w38 = Instance.new("Weld", p38)
  7238. w38.Name = "Block_Weld"
  7239. w38.Part0 = p38
  7240. w38.C0 = CFrame.new(-2.69113971e-005, 1.64542603, 0.358211011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7241. w38.Part1 = p39
  7242. w38.C1 = CFrame.new(-2.69171051e-005, 1.64542603, 0.262297004, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7243. w39 = Instance.new("Weld", p39)
  7244. w39.Name = "Block_Weld"
  7245. w39.Part0 = p39
  7246. w39.C0 = CFrame.new(-2.69171051e-005, 1.64542603, 0.262297004, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7247. w39.Part1 = p40
  7248. w39.C1 = CFrame.new(-2.60786092e-005, -1.47300267, -1.1458329, 1, -2.72653097e-007, 4.60701557e-007, 2.62652719e-007, -0.50000006, -0.866025448, 4.66475342e-007, 0.866025448, -0.50000006)
  7249. w40 = Instance.new("Weld", p40)
  7250. w40.Name = "Block_Weld"
  7251. w40.Part0 = p40
  7252. w40.C0 = CFrame.new(-2.60786092e-005, -1.47300267, -1.1458329, 1, -2.72653097e-007, 4.60701557e-007, 2.62652719e-007, -0.50000006, -0.866025448, 4.66475342e-007, 0.866025448, -0.50000006)
  7253. w40.Part1 = p41
  7254. w40.C1 = CFrame.new(-2.70310993e-005, -0.393140078, -0.306183338, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7255. w41 = Instance.new("Weld", p41)
  7256. w41.Name = "Block_Weld"
  7257. w41.Part0 = p41
  7258. w41.C0 = CFrame.new(-2.70310993e-005, -0.393140078, -0.306183338, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7259. w41.Part1 = p42
  7260. w41.C1 = CFrame.new(-2.69543798e-005, 0.664047003, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7261. w42 = Instance.new("Weld", p42)
  7262. w42.Name = "Block_Weld"
  7263. w42.Part0 = p42
  7264. w42.C0 = CFrame.new(-2.69543798e-005, 0.664047003, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7265. w42.Part1 = p43
  7266. w42.C1 = CFrame.new(-2.69020748e-005, -0.731388211, 1.66569459, 1, -5.95262364e-008, 4.08903134e-008, 6.57224319e-008, 0.984807849, -0.173648149, -2.99324796e-008, 0.173648149, 0.984807849)
  7267. w43 = Instance.new("Weld", p43)
  7268. w43.Name = "Circle_Weld"
  7269. w43.Part0 = p43
  7270. w43.C0 = CFrame.new(-2.69020748e-005, -0.731388211, 1.66569459, 1, -5.95262364e-008, 4.08903134e-008, 6.57224319e-008, 0.984807849, -0.173648149, -2.99324796e-008, 0.173648149, 0.984807849)
  7271. w43.Part1 = p44
  7272. w43.C1 = CFrame.new(-2.69724242e-005, 0.641906977, 0.192185998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7273. w44 = Instance.new("Weld", p44)
  7274. w44.Name = "Block_Weld"
  7275. w44.Part0 = p44
  7276. w44.C0 = CFrame.new(-2.69724242e-005, 0.641906977, 0.192185998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7277. w44.Part1 = p45
  7278. w44.C1 = CFrame.new(-2.69912071e-005, -0.226573661, 0.151451379, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7279. w45 = Instance.new("Weld", p45)
  7280. w45.Name = "Block_Weld"
  7281. w45.Part0 = p45
  7282. w45.C0 = CFrame.new(-2.69912071e-005, -0.226573661, 0.151451379, 1, -1.31610367e-008, 8.19151467e-008, -1.56492952e-008, 0.939692736, 0.342020065, -8.14764007e-008, -0.342020065, 0.939692736)
  7283. w45.Part1 = p46
  7284. w45.C1 = CFrame.new(-2.69576976e-005, 0.582874, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7285. w46 = Instance.new("Weld", p46)
  7286. w46.Name = "Block_Weld"
  7287. w46.Part0 = p46
  7288. w46.C0 = CFrame.new(-2.69576976e-005, 0.582874, 0.310245991, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7289. w46.Part1 = p47
  7290. w46.C1 = CFrame.new(-2.69175689e-005, 1.56426203, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7291. w47 = Instance.new("Weld", p47)
  7292. w47.Name = "Block_Weld"
  7293. w47.Part0 = p47
  7294. w47.C0 = CFrame.new(-2.69175689e-005, 1.56426203, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7295. w47.Part1 = p48
  7296. w47.C1 = CFrame.new(-2.69314914e-005, 0.970686257, 0.486187935, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  7297. w48 = Instance.new("Weld", p48)
  7298. w48.Name = "Block_Weld"
  7299. w48.Part0 = p48
  7300. w48.C0 = CFrame.new(-2.69314914e-005, 0.970686257, 0.486187935, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  7301. w48.Part1 = p49
  7302. w48.C1 = CFrame.new(-2.69465017e-005, 0.665479422, 0.432373643, 1, -5.83989532e-008, 4.8437073e-008, -3.75603655e-008, 0.173647717, 0.984807909, -6.5922741e-008, -0.984807909, 0.173647717)
  7303. w49 = Instance.new("Weld", p49)
  7304. w49.Name = "Block_Weld"
  7305. w49.Part0 = p49
  7306. w49.C0 = CFrame.new(-2.69465017e-005, 0.665479422, 0.432373643, 1, -5.83989532e-008, 4.8437073e-008, -3.75603655e-008, 0.173647717, 0.984807909, -6.5922741e-008, -0.984807909, 0.173647717)
  7307. w49.Part1 = p50
  7308. w49.C1 = CFrame.new(-2.69885404e-005, 0.14806518, 1.24538279, 1, -1.85012112e-008, -5.4760374e-009, -1.79535409e-008, -0.99619472, 0.0871557295, -7.06768599e-009, -0.0871557295, -0.99619472)
  7309. w50 = Instance.new("Weld", p50)
  7310. w50.Name = "Block_Weld"
  7311. w50.Part0 = p50
  7312. w50.C0 = CFrame.new(-2.69885404e-005, 0.14806518, 1.24538279, 1, -1.85012112e-008, -5.4760374e-009, -1.79535409e-008, -0.99619472, 0.0871557295, -7.06768599e-009, -0.0871557295, -0.99619472)
  7313. w50.Part1 = p51
  7314. w50.C1 = CFrame.new(-2.69190059e-005, 1.36955345, 0.431252241, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7315. w51 = Instance.new("Weld", p51)
  7316. w51.Name = "Block_Weld"
  7317. w51.Part0 = p51
  7318. w51.C0 = CFrame.new(-2.69190059e-005, 1.36955345, 0.431252241, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7319. w51.Part1 = p52
  7320. w51.C1 = CFrame.new(-2.69410284e-005, 1.11489654, 0.213892281, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  7321. w52 = Instance.new("Weld", p52)
  7322. w52.Name = "Block_Weld"
  7323. w52.Part0 = p52
  7324. w52.C0 = CFrame.new(-2.69410284e-005, 1.11489654, 0.213892281, 1, -5.95928924e-008, 3.70716009e-008, -4.21243946e-008, -0.0871557295, 0.99619472, -5.6135125e-008, -0.99619472, -0.0871557295)
  7325. w52.Part1 = p53
  7326. w52.C1 = CFrame.new(-2.69027041e-005, -1.78324997, 0.608468652, 1, -5.95260872e-008, 4.08900078e-008, 6.51748309e-008, 0.500000119, -0.866025329, 3.11060901e-008, 0.866025329, 0.500000119)
  7327. w53 = Instance.new("Weld", p53)
  7328. w53.Name = "Circle_Weld"
  7329. w53.Part0 = p53
  7330. w53.C0 = CFrame.new(-2.69027041e-005, -1.78324997, 0.608468652, 1, -5.95260872e-008, 4.08900078e-008, 6.51748309e-008, 0.500000119, -0.866025329, 3.11060901e-008, 0.866025329, 0.500000119)
  7331. w53.Part1 = p54
  7332. w53.C1 = CFrame.new(-2.69764678e-005, 0.523845971, 0.221708998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7333. w54 = Instance.new("Weld", p54)
  7334. w54.Name = "Block_Weld"
  7335. w54.Part0 = p54
  7336. w54.C0 = CFrame.new(-2.69764678e-005, 0.523845971, 0.221708998, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7337. w54.Part1 = p55
  7338. w54.C1 = CFrame.new(-2.69931879e-005, 0.398795009, -0.103249997, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7339. w55 = Instance.new("Weld", p55)
  7340. w55.Name = "Block_Weld"
  7341. w55.Part0 = p55
  7342. w55.C0 = CFrame.new(-2.69931879e-005, 0.398795009, -0.103249997, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7343. w55.Part1 = p56
  7344. w55.C1 = CFrame.new(-2.69973734e-005, 0.251215011, -0.368891001, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7345. w56 = Instance.new("Weld", p56)
  7346. w56.Name = "Block_Weld"
  7347. w56.Part0 = p56
  7348. w56.C0 = CFrame.new(-2.69973734e-005, 0.251215011, -0.368891001, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7349. w56.Part1 = p57
  7350. w56.C1 = CFrame.new(-2.69915545e-005, 0.251217991, 0.693656981, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7351. w57 = Instance.new("Weld", p57)
  7352. w57.Name = "Block_Weld"
  7353. w57.Part0 = p57
  7354. w57.C0 = CFrame.new(-2.69915545e-005, 0.251217991, 0.693656981, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7355. w57.Part1 = p58
  7356. w57.C1 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7357. w58 = Instance.new("Weld", p58)
  7358. w58.Name = "Block_Weld"
  7359. w58.Part0 = p58
  7360. w58.C0 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7361. w58.Part1 = p59
  7362. w58.C1 = CFrame.new(-2.70031469e-005, 0.310247988, -1.62329102, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7363. w59 = Instance.new("Weld", p59)
  7364. w59.Name = "Circle_Weld"
  7365. w59.Part0 = p59
  7366. w59.C0 = CFrame.new(-2.70031469e-005, 0.310247988, -1.62329102, 1, -1.85013622e-008, -5.47535173e-009, -1.85013622e-008, -1, 1.94523586e-023, -5.47535173e-009, 1.01301455e-016, -1)
  7367. w59.Part1 = p60
  7368. w59.C1 = CFrame.new(-2.69770535e-005, 0.523859024, 0.184808999, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7369. w60 = Instance.new("Weld", p60)
  7370. w60.Name = "Circle_Weld"
  7371. w60.Part0 = p60
  7372. w60.C0 = CFrame.new(-2.69770535e-005, 0.523859024, 0.184808999, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7373. w60.Part1 = p61
  7374. w60.C1 = CFrame.new(-2.69756147e-005, 0.582877994, 0.133154005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7375. w61 = Instance.new("Weld", p61)
  7376. w61.Name = "Block_Weld"
  7377. w61.Part0 = p61
  7378. w61.C0 = CFrame.new(-2.69756147e-005, 0.582877994, 0.133154005, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7379. w61.Part1 = p62
  7380. w61.C1 = CFrame.new(-2.69474403e-005, 0.833757043, 0.310248882, 1, -5.95264495e-008, 4.08900434e-008, -4.08900505e-008, -1.49011626e-007, 1, -5.95264424e-008, -1, -1.49011626e-007)
  7381. w62 = Instance.new("Weld", p62)
  7382. w62.Name = "Block_Weld"
  7383. w62.Part0 = p62
  7384. w62.C0 = CFrame.new(-2.69474403e-005, 0.833757043, 0.310248882, 1, -5.95264495e-008, 4.08900434e-008, -4.08900505e-008, -1.49011626e-007, 1, -5.95264424e-008, -1, -1.49011626e-007)
  7385. w62.Part1 = p63
  7386. w62.C1 = CFrame.new(-2.69305474e-005, 1.11227143, 0.40874204, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7387. w63 = Instance.new("Weld", p63)
  7388. w63.Name = "Block_Weld"
  7389. w63.Part0 = p63
  7390. w63.C0 = CFrame.new(-2.69305474e-005, 1.11227143, 0.40874204, 1, -5.91274514e-008, 4.46881785e-008, -3.93648421e-008, 0.0871555805, 0.99619472, -6.27972767e-008, -0.99619472, 0.0871555805)
  7391. w63.Part1 = p64
  7392. w63.C1 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7393. w64 = Instance.new("Weld", p64)
  7394. w64.Name = "Block_Weld"
  7395. w64.Part0 = p64
  7396. w64.C0 = CFrame.new(-2.69601114e-005, 0.523845971, 0.310247988, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7397. w64.Part1 = p65
  7398. w64.C1 = CFrame.new(-2.69389948e-005, 0.818084598, 0.459285259, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  7399. w65 = Instance.new("Weld", p65)
  7400. w65.Name = "Block_Weld"
  7401. w65.Part0 = p65
  7402. w65.C0 = CFrame.new(-2.69389948e-005, 0.818084598, 0.459285259, 1, -5.83989497e-008, 4.84370801e-008, -3.75603548e-008, 0.17364794, 0.984807789, -6.5922741e-008, -0.984807789, 0.17364794)
  7403. w65.Part1 = p66
  7404. w65.C1 = CFrame.new(-2.69857319e-005, 0.302294523, 1.25103426, 1, -1.85013569e-008, -5.47535173e-009, -1.79537469e-008, -0.99619472, 0.0871557295, -7.06701586e-009, -0.0871557295, -0.99619472)
  7405. w66 = Instance.new("Weld", p66)
  7406. w66.Name = "Block_Weld"
  7407. w66.Part0 = p66
  7408. w66.C0 = CFrame.new(-2.69857319e-005, 0.302294523, 1.25103426, 1, -1.85013569e-008, -5.47535173e-009, -1.79537469e-008, -0.99619472, 0.0871557295, -7.06701586e-009, -0.0871557295, -0.99619472)
  7409. w66.Part1 = p67
  7410. w66.C1 = CFrame.new(-2.69389129e-005, 1.48434854, -0.0765417814, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  7411. w67 = Instance.new("Weld", p67)
  7412. w67.Name = "Block_Weld"
  7413. w67.Part0 = p67
  7414. w67.C0 = CFrame.new(-2.69389129e-005, 1.48434854, -0.0765417814, 1, -5.87286557e-008, 2.94899092e-008, -4.36851586e-008, -0.258819073, 0.965925872, -4.90949787e-008, -0.965925872, -0.258819073)
  7415. w67.Part1 = p68
  7416. w67.C1 = CFrame.new(-2.6994463e-005, 0.251219988, 0.162382007, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7417. w68 = Instance.new("Weld", p68)
  7418. w68.Name = "Block_Weld"
  7419. w68.Part0 = p68
  7420. w68.C0 = CFrame.new(-2.6994463e-005, 0.251219988, 0.162382007, 1, -1.85011828e-008, -5.47594325e-009, -1.85011828e-008, -1, 9.72723004e-024, -5.47594325e-009, 1.01311427e-016, -1)
  7421. w68.Part1 = p69
  7422. w68.C1 = CFrame.new(-2.6915759e-005, 1.60853398, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7423. w69 = Instance.new("Weld", p69)
  7424. w69.Name = "Circle_Weld"
  7425. w69.Part0 = p69
  7426. w69.C0 = CFrame.new(-2.6915759e-005, 1.60853398, 0.310252011, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7427. w69.Part1 = p70
  7428. w69.C1 = CFrame.new(-2.69686861e-005, 0.641901016, 0.42831701, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7429. w70 = Instance.new("Weld", p70)
  7430. w70.Name = "Wedge_Weld"
  7431. w70.Part0 = p70
  7432. w70.C0 = CFrame.new(-2.69686861e-005, 0.641901016, 0.42831701, 1, -1.58311995e-008, 3.82198948e-008, -3.82198948e-008, -5.62437252e-023, 1, -1.58311995e-008, -1, -6.05066816e-016)
  7433. w70.Part1 = p71
  7434. w70.C1 = CFrame.new(2.70324999e-005, -0.202880055, -0.363613576, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7435. w71 = Instance.new("Weld", p71)
  7436. w71.Name = "Wedge_Weld"
  7437. w71.Part0 = p71
  7438. w71.C0 = CFrame.new(2.70324999e-005, -0.202880055, -0.363613576, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7439. w71.Part1 = p72
  7440. w71.C1 = CFrame.new(-2.70432465e-005, -0.761507869, 0.349658668, 1, -5.04138598e-009, 5.66058631e-008, -5.68298475e-008, -0.087156117, 0.996194661, -8.86544171e-011, -0.996194661, -0.087156117)
  7441. w72 = Instance.new("Weld", p72)
  7442. w72.Name = "Wedge_Weld"
  7443. w72.Part0 = p72
  7444. w72.C0 = CFrame.new(-2.70432465e-005, -0.761507869, 0.349658668, 1, -5.04138598e-009, 5.66058631e-008, -5.68298475e-008, -0.087156117, 0.996194661, -8.86544171e-011, -0.996194661, -0.087156117)
  7445. w72.Part1 = p73
  7446. w72.C1 = CFrame.new(2.69606426e-005, -0.271123618, 0.159218371, -1, 1.20803122e-007, -5.03232513e-008, 8.86054821e-008, 0.342020035, -0.939692736, -9.6306259e-008, -0.939692736, -0.342020005)
  7447. w73 = Instance.new("Weld", p73)
  7448. w73.Name = "Wedge_Weld"
  7449. w73.Part0 = p73
  7450. w73.C0 = CFrame.new(2.69606426e-005, -0.271123618, 0.159218371, -1, 1.20803122e-007, -5.03232513e-008, 8.86054821e-008, 0.342020035, -0.939692736, -9.6306259e-008, -0.939692736, -0.342020005)
  7451. w73.Part1 = p74
  7452. w73.C1 = CFrame.new(-2.69467491e-005, 0.761504233, -0.342288256, 1, -8.45120525e-008, -3.81036713e-008, -3.05929326e-008, 0.087156117, -0.996194661, 8.75114239e-008, 0.996194661, 0.087156117)
  7453. w74 = Instance.new("Weld", p74)
  7454. w74.Name = "Wedge_Weld"
  7455. w74.Part0 = p74
  7456. w74.C0 = CFrame.new(-2.69467491e-005, 0.761504233, -0.342288256, 1, -8.45120525e-008, -3.81036713e-008, -3.05929326e-008, 0.087156117, -0.996194661, 8.75114239e-008, 0.996194661, 0.087156117)
  7457. w74.Part1 = p75
  7458. w74.C1 = CFrame.new(-2.70399814e-005, -0.477731556, -0.137090862, 1, 2.11481037e-008, -8.40774845e-008, -8.62400782e-008, 0.342020035, -0.939692736, 8.88346285e-009, 0.939692736, 0.342020005)
  7459. w75 = Instance.new("Weld", p75)
  7460. w75.Name = "Wedge_Weld"
  7461. w75.Part0 = p75
  7462. w75.C0 = CFrame.new(-2.70399814e-005, -0.477731556, -0.137090862, 1, 2.11481037e-008, -8.40774845e-008, -8.62400782e-008, 0.342020035, -0.939692736, 8.88346285e-009, 0.939692736, 0.342020005)
  7463. w75.Part1 = p76
  7464. w75.C1 = CFrame.new(2.70197816e-005, 0.254749686, -0.197051153, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7465. w76 = Instance.new("Weld", p76)
  7466. w76.Name = "Wedge_Weld"
  7467. w76.Part0 = p76
  7468. w76.C0 = CFrame.new(2.70197816e-005, 0.254749686, -0.197051153, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7469. w76.Part1 = p77
  7470. w76.C1 = CFrame.new(2.70364926e-005, 0.937081754, 0.462889194, -1, 1.19348783e-007, -5.94260889e-008, 8.8290939e-008, 0.258819073, -0.965925872, -9.99014702e-008, -0.965925872, -0.258819073)
  7471. w77 = Instance.new("Weld", p77)
  7472. w77.Name = "Wedge_Weld"
  7473. w77.Part0 = p77
  7474. w77.C0 = CFrame.new(2.70364926e-005, 0.937081754, 0.462889194, -1, 1.19348783e-007, -5.94260889e-008, 8.8290939e-008, 0.258819073, -0.965925872, -9.99014702e-008, -0.965925872, -0.258819073)
  7475. w77.Part1 = p78
  7476. w77.C1 = CFrame.new(2.69804386e-005, -0.254758716, 0.226571351, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  7477. w78 = Instance.new("Weld", p78)
  7478. w78.Name = "Wedge_Weld"
  7479. w78.Part0 = p78
  7480. w78.C0 = CFrame.new(2.69804386e-005, -0.254758716, 0.226571351, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  7481. w78.Part1 = p79
  7482. w78.C1 = CFrame.new(-2.69982065e-005, 0.0186245665, 0.256082684, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  7483. w79 = Instance.new("Weld", p79)
  7484. w79.Name = "Wedge_Weld"
  7485. w79.Part0 = p79
  7486. w79.C0 = CFrame.new(-2.69982065e-005, 0.0186245665, 0.256082684, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  7487. w79.Part1 = p80
  7488. w79.C1 = CFrame.new(2.69885841e-005, -1.4784987, 0.418512583, -1, 3.25942331e-008, 2.24966534e-009, 1.58138018e-008, 0.422618091, 0.906307936, 2.85896622e-008, 0.906307936, -0.422618091)
  7489. w80 = Instance.new("Weld", p80)
  7490. w80.Name = "Wedge_Weld"
  7491. w80.Part0 = p80
  7492. w80.C0 = CFrame.new(2.69885841e-005, -1.4784987, 0.418512583, -1, 3.25942331e-008, 2.24966534e-009, 1.58138018e-008, 0.422618091, 0.906307936, 2.85896622e-008, 0.906307936, -0.422618091)
  7493. w80.Part1 = p81
  7494. w80.C1 = CFrame.new(-2.7005879e-005, -0.0944784805, -0.255385041, 1, 2.11480753e-008, -8.40774845e-008, -8.6240064e-008, 0.342019796, -0.939692736, 8.88347085e-009, 0.939692736, 0.342019796)
  7495. w81 = Instance.new("Weld", p81)
  7496. w81.Name = "Wedge_Weld"
  7497. w81.Part0 = p81
  7498. w81.C0 = CFrame.new(-2.7005879e-005, -0.0944784805, -0.255385041, 1, 2.11480753e-008, -8.40774845e-008, -8.6240064e-008, 0.342019796, -0.939692736, 8.88347085e-009, 0.939692736, 0.342019796)
  7499. w81.Part1 = p82
  7500. w81.C1 = CFrame.new(-2.71884655e-005, -1.54931295, -1.43853581, 1, -1.29495401e-008, 1.0679166e-007, -2.43563569e-008, 0.939692497, 0.342020541, -1.04780334e-007, -0.342020512, 0.939692497)
  7501. w82 = Instance.new("Weld", p82)
  7502. w82.Name = "Wedge_Weld"
  7503. w82.Part0 = p82
  7504. w82.C0 = CFrame.new(-2.71884655e-005, -1.54931295, -1.43853581, 1, -1.29495401e-008, 1.0679166e-007, -2.43563569e-008, 0.939692497, 0.342020541, -1.04780334e-007, -0.342020512, 0.939692497)
  7505. w82.Part1 = p83
  7506. w82.C1 = CFrame.new(2.70665932e-005, -1.66921949, 1.49424386, -1, -1.69508478e-008, -2.46411371e-008, -2.43563605e-008, 0.939692497, 0.342020541, 1.73575518e-008, 0.342020512, -0.939692497)
  7507. w83 = Instance.new("Weld", p83)
  7508. w83.Name = "Wedge_Weld"
  7509. w83.Part0 = p83
  7510. w83.C0 = CFrame.new(2.70665932e-005, -1.66921949, 1.49424386, -1, -1.69508478e-008, -2.46411371e-008, -2.43563605e-008, 0.939692497, 0.342020541, 1.73575518e-008, 0.342020512, -0.939692497)
  7511. w83.Part1 = p84
  7512. w83.C1 = CFrame.new(2.69976008e-005, -0.112124957, -0.284901589, -1, 8.75223805e-009, 1.92694216e-009, -1.18270493e-009, -0.342019796, 0.939692736, 8.8834673e-009, 0.939692736, 0.342019796)
  7513. w84 = Instance.new("Weld", p84)
  7514. w84.Name = "Wedge_Weld"
  7515. w84.Part0 = p84
  7516. w84.C0 = CFrame.new(2.69976008e-005, -0.112124957, -0.284901589, -1, 8.75223805e-009, 1.92694216e-009, -1.18270493e-009, -0.342019796, 0.939692736, 8.8834673e-009, 0.939692736, 0.342019796)
  7517. w84.Part1 = p85
  7518. w84.C1 = CFrame.new(2.7052507e-005, -1.59177017, 0.872617722, -1, -1.1669739e-008, -2.68784888e-008, -2.76164496e-008, 0.681996524, 0.731355488, 9.79630865e-009, 0.731355488, -0.681996524)
  7519. w85 = Instance.new("Weld", p85)
  7520. w85.Name = "Wedge_Weld"
  7521. w85.Part0 = p85
  7522. w85.C0 = CFrame.new(2.7052507e-005, -1.59177017, 0.872617722, -1, -1.1669739e-008, -2.68784888e-008, -2.76164496e-008, 0.681996524, 0.731355488, 9.79630865e-009, 0.731355488, -0.681996524)
  7523. w85.Part1 = p86
  7524. w85.C1 = CFrame.new(2.69951215e-005, -1.03299725, -0.462896198, -1, 1.22781962e-008, 2.39114684e-009, -8.68160988e-010, -0.258819073, 0.965925872, 1.24787025e-008, 0.965925872, 0.258819073)
  7525. w86 = Instance.new("Weld", p86)
  7526. w86.Name = "Wedge_Weld"
  7527. w86.Part0 = p86
  7528. w86.C0 = CFrame.new(2.69951215e-005, -1.03299725, -0.462896198, -1, 1.22781962e-008, 2.39114684e-009, -8.68160988e-010, -0.258819073, 0.965925872, 1.24787025e-008, 0.965925872, 0.258819073)
  7529. w86.Part1 = p87
  7530. w86.C1 = CFrame.new(2.70135206e-005, 0.143849969, 0.34147498, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  7531. w87 = Instance.new("Weld", p87)
  7532. w87.Name = "Wedge_Weld"
  7533. w87.Part0 = p87
  7534. w87.C0 = CFrame.new(2.70135206e-005, 0.143849969, 0.34147498, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  7535. w87.Part1 = p88
  7536. w87.C1 = CFrame.new(2.70302153e-005, 0.342700183, 0.434671164, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  7537. w88 = Instance.new("Weld", p88)
  7538. w88.Name = "Wedge_Weld"
  7539. w88.Part0 = p88
  7540. w88.C0 = CFrame.new(2.70302153e-005, 0.342700183, 0.434671164, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  7541. w88.Part1 = p89
  7542. w88.C1 = CFrame.new(2.69984048e-005, 0.153062999, -0.159228027, -1, 8.75223449e-009, 1.92694394e-009, -1.18270438e-009, -0.342020035, 0.939692736, 8.88346463e-009, 0.939692736, 0.342020005)
  7543. w89 = Instance.new("Weld", p89)
  7544. w89.Name = "Wedge_Weld"
  7545. w89.Part0 = p89
  7546. w89.C0 = CFrame.new(2.69984048e-005, 0.153062999, -0.159228027, -1, 8.75223449e-009, 1.92694394e-009, -1.18270438e-009, -0.342020035, 0.939692736, 8.88346463e-009, 0.939692736, 0.342020005)
  7547. w89.Part1 = p90
  7548. w89.C1 = CFrame.new(-2.69485572e-005, 0.70247668, -0.342276633, 1, -8.45120454e-008, -3.81036642e-008, -3.05929255e-008, 0.087156117, -0.996194661, 8.75114168e-008, 0.996194661, 0.087156117)
  7549. w90 = Instance.new("Weld", p90)
  7550. w90.Name = "Wedge_Weld"
  7551. w90.Part0 = p90
  7552. w90.C0 = CFrame.new(-2.69485572e-005, 0.70247668, -0.342276633, 1, -8.45120454e-008, -3.81036642e-008, -3.05929255e-008, 0.087156117, -0.996194661, 8.75114168e-008, 0.996194661, 0.087156117)
  7553. w90.Part1 = p91
  7554. w90.C1 = CFrame.new(2.7285816e-005, 1.91944361, -0.662942171, -1, -1.69507981e-008, -1.48275618e-007, 1.16832759e-007, -0.707106471, -0.707107067, -9.28606312e-008, -0.707107067, 0.707106471)
  7555. w91 = Instance.new("Weld", p91)
  7556. w91.Name = "Wedge_Weld"
  7557. w91.Part0 = p91
  7558. w91.C0 = CFrame.new(2.7285816e-005, 1.91944361, -0.662942171, -1, -1.69507981e-008, -1.48275618e-007, 1.16832759e-007, -0.707106471, -0.707107067, -9.28606312e-008, -0.707107067, 0.707106471)
  7559. w91.Part1 = p92
  7560. w91.C1 = CFrame.new(2.69954071e-005, -0.937081456, -0.433368206, -1, 1.22781891e-008, 2.39114151e-009, -8.68164096e-010, -0.258819073, 0.965925872, 1.24786936e-008, 0.965925872, 0.258819073)
  7561. w92 = Instance.new("Weld", p92)
  7562. w92.Name = "Wedge_Weld"
  7563. w92.Part0 = p92
  7564. w92.C0 = CFrame.new(2.69954071e-005, -0.937081456, -0.433368206, -1, 1.22781891e-008, 2.39114151e-009, -8.68164096e-010, -0.258819073, 0.965925872, 1.24786936e-008, 0.965925872, 0.258819073)
  7565. w92.Part1 = p93
  7566. w92.C1 = CFrame.new(-2.69051961e-005, 0.999799907, -0.238821417, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  7567. w93 = Instance.new("Weld", p93)
  7568. w93.Name = "Wedge_Weld"
  7569. w93.Part0 = p93
  7570. w93.C0 = CFrame.new(-2.69051961e-005, 0.999799907, -0.238821417, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  7571. w93.Part1 = p94
  7572. w93.C1 = CFrame.new(2.69796546e-005, 0.112124898, 0.314417601, -1, 1.20803122e-007, -5.03232727e-008, 8.8605475e-008, 0.342019796, -0.939692736, -9.6306259e-008, -0.939692736, -0.342019796)
  7573. w94 = Instance.new("Weld", p94)
  7574. w94.Name = "Wedge_Weld"
  7575. w94.Part0 = p94
  7576. w94.C0 = CFrame.new(2.69796546e-005, 0.112124898, 0.314417601, -1, 1.20803122e-007, -5.03232727e-008, 8.8605475e-008, 0.342019796, -0.939692736, -9.6306259e-008, -0.939692736, -0.342019796)
  7577. w94.Part1 = p95
  7578. w94.C1 = CFrame.new(2.70609289e-005, -1.92461061, 0.795396745, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  7579. w95 = Instance.new("Weld", p95)
  7580. w95.Name = "Wedge_Weld"
  7581. w95.Part0 = p95
  7582. w95.C0 = CFrame.new(2.70609289e-005, -1.92461061, 0.795396745, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  7583. w95.Part1 = p96
  7584. w95.C1 = CFrame.new(2.70452038e-005, -1.2757566, 0.127234697, -1, 1.58094302e-008, -3.83180883e-008, -3.29206458e-008, 0.258819193, 0.965925872, 2.51881946e-008, 0.965925872, -0.258819193)
  7585. w96 = Instance.new("Weld", p96)
  7586. w96.Name = "Wedge_Weld"
  7587. w96.Part0 = p96
  7588. w96.C0 = CFrame.new(2.70452038e-005, -1.2757566, 0.127234697, -1, 1.58094302e-008, -3.83180883e-008, -3.29206458e-008, 0.258819193, 0.965925872, 2.51881946e-008, 0.965925872, -0.258819193)
  7589. w96.Part1 = p97
  7590. w96.C1 = CFrame.new(2.69985267e-005, 0.271121085, -0.129704311, -1, 8.75223449e-009, 1.92694216e-009, -1.18270604e-009, -0.342020035, 0.939692736, 8.88346374e-009, 0.939692736, 0.342020005)
  7591. w97 = Instance.new("Weld", p97)
  7592. w97.Name = "Wedge_Weld"
  7593. w97.Part0 = p97
  7594. w97.C0 = CFrame.new(2.69985267e-005, 0.271121085, -0.129704311, -1, 8.75223449e-009, 1.92694216e-009, -1.18270604e-009, -0.342020035, 0.939692736, 8.88346374e-009, 0.939692736, 0.342020005)
  7595. w97.Part1 = p98
  7596. w97.C1 = CFrame.new(-2.7119062e-005, -0.689512253, 0.493685782, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  7597. w98 = Instance.new("Weld", p98)
  7598. w98.Name = "Wedge_Weld"
  7599. w98.Part0 = p98
  7600. w98.C0 = CFrame.new(-2.7119062e-005, -0.689512253, 0.493685782, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  7601. w98.Part1 = p99
  7602. w98.C1 = CFrame.new(2.70467608e-005, -1.34953368, -0.0207269192, -1, 1.58180704e-008, -3.83196088e-008, -3.49906735e-008, 0.173648149, 0.984807849, 2.22318892e-008, 0.984807849, -0.173648149)
  7603. w99 = Instance.new("Weld", p99)
  7604. w99.Name = "Wedge_Weld"
  7605. w99.Part0 = p99
  7606. w99.C0 = CFrame.new(2.70467608e-005, -1.34953368, -0.0207269192, -1, 1.58180704e-008, -3.83196088e-008, -3.49906735e-008, 0.173648149, 0.984807849, 2.22318892e-008, 0.984807849, -0.173648149)
  7607. w99.Part1 = p100
  7608. w99.C1 = CFrame.new(2.68453441e-005, -1.05666494, -0.342283309, -1, 7.68926398e-008, 1.25193765e-007, 1.18015699e-007, -0.087156117, 0.996194661, 8.75114381e-008, 0.996194661, 0.087156117)
  7609. w100 = Instance.new("Weld", p100)
  7610. w100.Name = "Wedge_Weld"
  7611. w100.Part0 = p100
  7612. w100.C0 = CFrame.new(2.68453441e-005, -1.05666494, -0.342283309, -1, 7.68926398e-008, 1.25193765e-007, 1.18015699e-007, -0.087156117, 0.996194661, 8.75114381e-008, 0.996194661, 0.087156117)
  7613. w100.Part1 = p101
  7614. w100.C1 = CFrame.new(2.70382643e-005, 0.438632488, 0.478940666, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  7615. w101 = Instance.new("Weld", p101)
  7616. w101.Name = "Wedge_Weld"
  7617. w101.Part0 = p101
  7618. w101.C0 = CFrame.new(2.70382643e-005, 0.438632488, 0.478940666, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  7619. w101.Part1 = p102
  7620. w101.C1 = CFrame.new(2.69711491e-005, -0.365431041, 0.17490752, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  7621. w102 = Instance.new("Weld", p102)
  7622. w102.Name = "Wedge_Weld"
  7623. w102.Part0 = p102
  7624. w102.C0 = CFrame.new(2.69711491e-005, -0.365431041, 0.17490752, -1, 2.29101573e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447419e-009, -0.939692736, -0.342019916)
  7625. w102.Part1 = p103
  7626. w102.C1 = CFrame.new(-2.69383909e-005, 0.649306595, -0.433368623, 1, 1.03484936e-008, -8.68350583e-008, -8.65546141e-008, 0.258819073, -0.965925872, 1.24786919e-008, 0.965925872, 0.258819073)
  7627. w103 = Instance.new("Weld", p103)
  7628. w103.Name = "Wedge_Weld"
  7629. w103.Part0 = p103
  7630. w103.C0 = CFrame.new(-2.69383909e-005, 0.649306595, -0.433368623, 1, 1.03484936e-008, -8.68350583e-008, -8.65546141e-008, 0.258819073, -0.965925872, 1.24786919e-008, 0.965925872, 0.258819073)
  7631. w103.Part1 = p104
  7632. w103.C1 = CFrame.new(-2.70762976e-005, -0.43900317, 0.407888472, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  7633. w104 = Instance.new("Weld", p104)
  7634. w104.Name = "Wedge_Weld"
  7635. w104.Part0 = p104
  7636. w104.C0 = CFrame.new(-2.70762976e-005, -0.43900317, 0.407888472, 1, -5.28104849e-008, 1.60517274e-007, -1.68899149e-007, -0.342019916, 0.939692736, 5.27447774e-009, -0.939692736, -0.342019916)
  7637. w104.Part1 = p105
  7638. w104.C1 = CFrame.new(2.70607179e-005, -1.92829955, 0.736725867, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  7639. w105 = Instance.new("Weld", p105)
  7640. w105.Name = "Wedge_Weld"
  7641. w105.Part0 = p105
  7642. w105.C0 = CFrame.new(2.70607179e-005, -1.92829955, 0.736725867, -1, -1.69508478e-008, -2.46411371e-008, -2.94099767e-008, 0.707106471, 0.707107067, 5.43784262e-009, 0.707107067, -0.707106471)
  7643. w105.Part1 = p106
  7644. w105.C1 = CFrame.new(2.70186029e-005, 0.202881783, 0.393133432, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  7645. w106 = Instance.new("Weld", p106)
  7646. w106.Name = "Wedge_Weld"
  7647. w106.Part0 = p106
  7648. w106.C0 = CFrame.new(2.70186029e-005, 0.202881783, 0.393133432, -1, 2.29101609e-008, -7.83667318e-008, 8.14763794e-008, 0.342019916, -0.939692736, 5.27447064e-009, -0.939692736, -0.342019916)
  7649. w106.Part1 = p107
  7650. w106.C1 = CFrame.new(-2.68938547e-005, 1.13999891, -0.187172472, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  7651. w107 = Instance.new("Weld", p107)
  7652. w107.Name = "Wedge_Weld"
  7653. w107.Part0 = p107
  7654. w107.C0 = CFrame.new(-2.68938547e-005, 1.13999891, -0.187172472, 1, -2.29101147e-008, -8.93497187e-008, -8.93497116e-008, 4.1723257e-007, -1, 2.29101538e-008, 1, 4.17232599e-007)
  7655. w107.Part1 = p108
  7656. w107.C1 = CFrame.new(-2.70357887e-005, 1.01832795, -0.147913992, 1, -2.1171159e-008, 3.82198948e-008, 3.82198948e-008, 7.52150727e-023, -1, 2.1171159e-008, 1, 8.09159563e-016)
  7657. w108 = Instance.new("Weld", p108)
  7658. w108.Name = "Wedge_Weld"
  7659. w108.Part0 = p108
  7660. w108.C0 = CFrame.new(-2.70357887e-005, 1.01832795, -0.147913992, 1, -2.1171159e-008, 3.82198948e-008, 3.82198948e-008, 7.52150727e-023, -1, 2.1171159e-008, 1, 8.09159563e-016)
  7661. w108.Part1 = p109
  7662. w108.C1 = CFrame.new(2.6997488e-005, -0.237563431, -0.314412773, -1, 8.75224337e-009, 1.92694216e-009, -1.18270693e-009, -0.342019796, 0.939692736, 8.88347174e-009, 0.939692736, 0.342019796)
  7663. w109 = Instance.new("Weld", p109)
  7664. w109.Name = "Wedge_Weld"
  7665. w109.Part0 = p109
  7666. w109.C0 = CFrame.new(2.6997488e-005, -0.237563431, -0.314412773, -1, 8.75224337e-009, 1.92694216e-009, -1.18270693e-009, -0.342019796, 0.939692736, 8.88347174e-009, 0.939692736, 0.342019796)
  7667. w109.Part1 = p110
  7668. w109.C1 = CFrame.new(2.70390519e-005, -0.43863076, -0.44942081, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7669. w110 = Instance.new("Weld", p110)
  7670. w110.Name = "Hitbox_Weld"
  7671. w110.Part0 = p110
  7672. w110.C0 = CFrame.new(2.7, -0.44, -0.6, -1, -8.91407197e-008, -2.61165312e-008, 5.94638472e-009, -0.342019916, 0.939692736, -9.26972632e-008, 0.939692736, 0.342019916)
  7673. w110.Part1 = p111
  7674. w110.C1 = CFrame.new(-2.7, -0.68, 0.61, 1, -5.9526446e-008, 4.08900576e-008, -4.08900576e-008, 0, 1, -5.95264495e-008, -1, -2.43403981e-015)
  7675. m8.Parent = rarm
  7676. m8:MakeJoints()
  7677. ----------------------------------------------------
  7678. local cor8 = Instance.new("Part", rarm.Zyrodoxa)
  7679. cor8.Name = "Thingy"
  7680. cor8.Locked = true
  7681. cor8.BottomSurface = 0
  7682. cor8.CanCollide = false
  7683. cor8.Size = Vector3.new(1, 1, 1)
  7684. cor8.Transparency = 1
  7685. cor8.TopSurface = 0
  7686. corw8 = Instance.new("Weld", cor8)
  7687. corw8.Part0 = rarm
  7688. corw8.Part1 = cor8
  7689. corw8.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180))
  7690. corw8.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  7691. weld8 = Instance.new("Weld", rarm.Zyrodoxa)
  7692. weld8.Part0 = cor8
  7693. weld8.Part1 = rarm.Zyrodoxa.Handle
  7694. weld8.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  7695. Amulite = Instance.new("PointLight",m7.Center)
  7696. Amulite.Brightness = 0
  7697. Amulite.Color = Color3.new(0,1,0)
  7698. ----------------------------------------------------
  7699. models = {m,m2,m3,m4,m5,m6,m7,m8}
  7700. parts = {}
  7701. Stepped:connect(function()
  7702. for i,v in pairs(models) do
  7703. for _, a in pairs(v:GetChildren()) do
  7704. if v:IsA("Part") and v.Name ~= "Thingy" then
  7705. table.insert(parts, a)
  7706. for i,v in pairs(parts) do
  7707. v.CanCollide = false
  7708. end
  7709. end
  7710. end
  7711. end
  7712. end)
  7713. ----------------------------------------------------
  7714. local animpose = "Idle1"
  7715. local lastanimpose = "Idle1"
  7716. local grab = false
  7717. local Smooth = 1
  7718. local sine = 0
  7719. local change = 1
  7720. local val = 0
  7721. local ffing = false
  7722. ----------------------------------------------------
  7723. --[[local hitbox = rarm.Zyrodoxa.Hitbox--Zyrodoxa is the name of the dagger k
  7724.  
  7725. function FindHumanoids()
  7726. local function c_region(Position, Size)
  7727. local SizeOffset = Size/2
  7728. local Point1 = Position - SizeOffset
  7729. local Point2 = Position + SizeOffset
  7730. local a = Instance.new("Part", workspace)
  7731. a.Anchored = true
  7732. a.Size = Size
  7733. a.Position = Position
  7734. print("Hey!, I'm making a part!")
  7735. return Region3.new(Point1, Point2)
  7736. end
  7737.  
  7738. local a = c_region((hitbox.CFrame * CFrame.new(0, -1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7739. local b = c_region((hitbox.CFrame * CFrame.new(0, -0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7740. local c = c_region((hitbox.CFrame * CFrame.new(0, 0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7741. local d = c_region((hitbox.CFrame * CFrame.new(0, 1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7742.  
  7743. local regions = {a, b, c, d}
  7744.  
  7745. local found_humanoids = {}
  7746. local already_found = {char.Name}
  7747.  
  7748. for _, region in pairs(regions) do
  7749. for _, part in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(region, rarm.Zyrodoxa:GetChildren(), 100)) do
  7750. print(part, part.Parent, part.Name) ---nope
  7751. if part.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  7752. local humanoid = part.Parent:FindFirstChild("Humanoid")
  7753. local name = humanoid.Parent.Name
  7754. local exists = false
  7755. for _, n in pairs(already_found) do
  7756. if n == name then
  7757. exists = true
  7758. end
  7759. end
  7760. if not exists then
  7761. table.insert(already_found, name)
  7762. table.insert(found_humanoids, humanoid)
  7763. end
  7764. elseif part.Parent.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  7765. local humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  7766. local name = humanoid.Parent.Parent.Name
  7767. local exists = false
  7768. for _, n in pairs(already_found) do
  7769. if n == name then
  7770. exists = true
  7771. end
  7772. end
  7773. if not exists then
  7774. table.insert(already_found, name)
  7775. table.insert(found_humanoids, humanoid)
  7776. end
  7777. end
  7778. end
  7779. end
  7780. return found_humanoids
  7781. end
  7782.  
  7783. local humanoids = FindHumanoids()
  7784. if #humanoids == 0 then
  7785. for i, v in pairs(humanoids) do
  7786. print(v.Parent.Name)
  7787. if Debounces.Slashing == true then
  7788. v:TakeDamage(math.random(10,20) * math.random(1,3)) --max 60 damage?
  7789. elseif Debounces.Slashing == false then
  7790. wait()
  7791. end
  7792. end
  7793. wait(0.3)
  7794. end]]--
  7795. ----------------------------------------------------
  7796. --[[mouse.KeyDown:connect(function(key)
  7797. if key == "f" then
  7798. if Debounces.CanAttack == true then
  7799. Debounces.CanAttack = false
  7800. Debounces.NoIdl = true
  7801. Debounces.on = true
  7802. for i = 1, 20 do
  7803. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7804. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7805. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4),0,0),0.1)
  7806. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7807. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7808. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7809. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7810. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6,0.6,-0.2)*CFrame.Angles(math.rad(8),math.rad(22),math.rad(15)), 0.8)
  7811. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7812. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6,0.6,0.2)*CFrame.Angles(math.rad(-8),math.rad(12),math.rad(-12)), 0.8)
  7813. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  7814. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1)*CFrame.Angles(math.rad(-15),math.rad(0),math.rad(0)), 0.5)
  7815. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.5)
  7816. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6), math.rad(0), 0), 0.1)
  7817. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), 0), 0.1)
  7818. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.1)
  7819. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(5)), 0.1)
  7820. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(3), math.rad(0), math.rad(0)), 0.1)
  7821. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-5)), 0.1)
  7822. if Debounces.on == false then
  7823. break
  7824. end
  7825. fat.Event:wait()
  7826. end
  7827. end
  7828. end
  7829. end)]]--
  7830. ----------------------------------------------------
  7831. mod4 = Instance.new("Model",char)
  7832.  
  7833. ptez = {0.7, 0.8, 0.9, 1}
  7834.  
  7835. function FindNearestTorso(Position,Distance,SinglePlayer)
  7836. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  7837. local List = {}
  7838. for i,v in pairs(workspace:GetChildren())do
  7839. if v:IsA("Model")then
  7840. if v:findFirstChild("Torso")then
  7841. if v ~= char then
  7842. if(v.Torso.Position -Position).magnitude <= Distance then
  7843. table.insert(List,v)
  7844. end
  7845. end
  7846. end
  7847. end
  7848. end
  7849. return List
  7850. end
  7851.  
  7852. function Slam()
  7853. local part=Instance.new('Part',mod4)
  7854. part.Anchored=true
  7855. part.CanCollide=false
  7856. part.FormFactor='Custom'
  7857. part.Size=Vector3.new(.2,.2,.2)
  7858. part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
  7859. part.Transparency=.7
  7860. part.BrickColor=BrickColor.new('Really black')
  7861. mesh=Instance.new('SpecialMesh',part)
  7862. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  7863. mesh.Scale=Vector3.new(3,3,3)
  7864. local part2=Instance.new('Part',mod4)
  7865. part2.Anchored=true
  7866. part2.CanCollide=false
  7867. part2.FormFactor='Custom'
  7868. part2.Size=Vector3.new(.2,.2,.2)
  7869. part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
  7870. part2.Transparency=.7
  7871. part2.BrickColor=BrickColor.new('Lime green')
  7872. mesh2=Instance.new('SpecialMesh',part2)
  7873. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  7874. mesh2.Scale=Vector3.new(3,1.5,3)
  7875. x = Instance.new("Sound",larm)
  7876. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  7877. x.Pitch = ptez[math.random(1,#ptez)]
  7878. x.Volume = 1
  7879. wait(.1)
  7880. x1 = Instance.new("Sound",larm)
  7881. x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
  7882. x1.Pitch = ptez[math.random(1,#ptez)]
  7883. x1.Volume = 1
  7884. wait(.1)
  7885. x:Play()
  7886. x1:Play()
  7887. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  7888. if v:FindFirstChild('Humanoid') then
  7889. v.Humanoid:TakeDamage(math.random(30,45))
  7890. end
  7891. end
  7892. coroutine.resume(coroutine.create(function()
  7893. for i=0,0.62,0.13 do
  7894. wait()
  7895. part.CFrame=part.CFrame
  7896. part.Transparency=i
  7897. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  7898. part2.CFrame=part2.CFrame
  7899. part2.Transparency=i
  7900. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  7901. end
  7902. part.Parent=nil
  7903. part2.Parent=nil
  7904. x:Destroy()
  7905. end))
  7906. end
  7907. ----------------------------------------------------
  7908. wPart = function(x,y,z,color,tr,cc,an,parent)
  7909. local wp = Instance.new('WedgePart',parent or Weapon)
  7910. wp.formFactor = 'Custom'
  7911. wp.Size = Vector3.new(x,y,z)
  7912. wp.BrickColor = BrickColor.new(color)
  7913. wp.CanCollide = cc
  7914. wp.Transparency = tr
  7915. wp.Anchored = an
  7916. wp.TopSurface,wp.BottomSurface = 0,0
  7917. return wp
  7918. end
  7919.  
  7920. Mesh = function(par,num,x,y,z)
  7921. local msh = _
  7922. if num == 1 then
  7923. msh = Instance.new("CylinderMesh",par)
  7924. elseif num == 2 then
  7925. msh = Instance.new("SpecialMesh",par)
  7926. msh.MeshType = 3
  7927. elseif num == 3 then
  7928. msh = Instance.new("BlockMesh",par)
  7929. elseif num == 4 then
  7930. msh = Instance.new("SpecialMesh",par)
  7931. msh.MeshType = "Torso"
  7932. elseif type(num) == 'string' then
  7933. msh = Instance.new("SpecialMesh",par)
  7934. msh.MeshId = num
  7935. end
  7936. msh.Scale = Vector3.new(x,y,z)
  7937. return msh
  7938. end
  7939.  
  7940. local function CFrameFromTopBack(at, top, back)
  7941. local right = top:Cross(back)
  7942. return CFrame.new(at.x, at.y, at.z,
  7943. right.x, top.x, back.x,
  7944. right.y, top.y, back.y,
  7945. right.z, top.z, back.z)
  7946. end
  7947.  
  7948. function Triangle(a, b, c)
  7949. local edg1 = (c-a):Dot((b-a).unit)
  7950. local edg2 = (a-b):Dot((c-b).unit)
  7951. local edg3 = (b-c):Dot((a-c).unit)
  7952. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  7953. a, b, c = a, b, c
  7954. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  7955. a, b, c = b, c, a
  7956. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  7957. a, b, c = c, a, b
  7958. else
  7959. print("unreachable")
  7960. end
  7961. local len1 = (c-a):Dot((b-a).unit)
  7962. local len2 = (b-a).magnitude - len1
  7963. local width = (a + (b-a).unit*len1 - c).magnitude
  7964. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  7965. local list = {}
  7966. if len1 > 0.01 then
  7967. local w1 = wPart(0,0,0,'Lime green',0.5,false,true,char)
  7968. local sz = Vector3.new(0.2, width, len1)
  7969. w1.Size = sz
  7970. local sp = Mesh(w1,2,0,0,0)
  7971. sp.MeshType='Wedge'
  7972. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  7973. w1:BreakJoints()
  7974. w1.Anchored = true
  7975. w1.Transparency = 0.7
  7976. Spawn(function()
  7977. for i=0,1,0.1 do
  7978. fat.Event:wait()
  7979. w1.Transparency=w1.Transparency+0.03
  7980. end
  7981. end)
  7982. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  7983. table.insert(list,w1)
  7984. end
  7985. if len2 > 0.01 then
  7986. local w2 = wPart(0,0,0,'Lime green',0.5,false,true,char)
  7987. local sz = Vector3.new(0.2, width, len2)
  7988. w2.Size = sz
  7989. local sp = Mesh(w2,2,0,0,0)
  7990. sp.MeshType='Wedge'
  7991. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  7992. w2:BreakJoints()
  7993. w2.Anchored = true
  7994. w2.Transparency = 0.7
  7995. Spawn(function()
  7996. for i=0,1,0.1 do
  7997. fat.Event:wait()
  7998. w2.Transparency=w2.Transparency+0.03
  7999. end
  8000. end)
  8001. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  8002. table.insert(list,w2)
  8003. end
  8004. return unpack(list)
  8005. end
  8006.  
  8007. function trail(p,t,h)
  8008. Spawn(function()
  8009. local blcf = p.CFrame
  8010. local scfr = blcf
  8011. for i=1,t do
  8012. local blcf = p.CFrame
  8013. if scfr and (p.Position-scfr.p).magnitude > .1 then
  8014. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  8015. if a then game.Debris:AddItem(a,1) end
  8016. if b then game.Debris:AddItem(b,1) end
  8017. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  8018. if a then game.Debris:AddItem(a,1) end
  8019. if b then game.Debris:AddItem(b,1) end
  8020. scfr = blcf
  8021. elseif not scfr then
  8022. scfr = blcf
  8023. end
  8024. fat.Event:wait()
  8025. end
  8026. scfr=nil
  8027. end)
  8028. end
  8029. --trail(char.Sword.Blade,1e1000,5)
  8030. ----------------------------------------------------
  8031. function Dmg()
  8032. local partofdeath = rarm.Zyrodoxa.Hitbox
  8033. local function CreateRegion3FromLocAndSize(Position, Size)
  8034. local SizeOffset = Size/2
  8035. local Point1 = Position - SizeOffset
  8036. local Point2 = Position + SizeOffset
  8037. return Region3.new(Point1, Point2)
  8038. end
  8039. local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
  8040. for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
  8041. Spawn(function()
  8042. if Debounces.Slashing == true and Debounces.Slashed == false then
  8043. Debounces.Slashed = true
  8044. ypcall(function()
  8045. local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
  8046. humanoid:TakeDamage(math.random(10,18))
  8047. end)
  8048. wait(.4)
  8049. Debounces.Slashed = false
  8050. end
  8051. end)
  8052. end
  8053. end
  8054. ----------------------------------------------------
  8055. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  8056. ptz = {0.7, 0.8, 0.9, 1}
  8057. idz = {"161006212", "161006195"}
  8058. function attackone()
  8059. for i = 1, 13 do
  8060. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.3, -1, -0.3) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  8061. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(20), math.rad(30), math.rad(0)), 0.8)
  8062. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2, 0.5, -0.3)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(-10)), 0.3)
  8063. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.3)
  8064. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.4)*CFrame.Angles(math.rad(-30),math.rad(0),math.rad(-10)), 0.5)
  8065. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(-40),math.rad(0)), 0.5)
  8066. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
  8067. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
  8068. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
  8069. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(1, -1, 0) * CFrame.Angles(math.rad(18), math.rad(0), math.rad(15)), 0.7)
  8070. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.4, -1.3, 0) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
  8071. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(15)), 0.5)
  8072. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
  8073. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.5)
  8074. if Debounces.on == false then
  8075. break
  8076. end
  8077. fat.Event:wait()
  8078. end
  8079. trail(rarm.Zyrodoxa.Hitbox,20,2)
  8080. Debounces.Slashing = true
  8081. wait(0.2)
  8082. --[[z = Instance.new("Sound", hed)
  8083. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  8084. z.Pitch = ptz[math.random(1,#ptz)]
  8085. z.Volume = 1
  8086. wait(.01)
  8087. z:Play()]]--
  8088. for i = 1, 14 do
  8089. Dmg()
  8090. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0.2) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  8091. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-40), math.rad(30), math.rad(0)), 0.8)
  8092. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0.4)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(100)), 0.4)
  8093. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.4)
  8094. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, -0.3)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(-20)), 0.4)
  8095. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(20),math.rad(0)), 0.4)
  8096. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
  8097. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8098. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
  8099. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(-1, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8100. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.7, -0.9, -0.4) * CFrame.Angles(math.rad(0), math.rad(40), math.rad(0)), 0.5)
  8101. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-14), math.rad(0), math.rad(15)), 0.5)
  8102. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(0)), 0.5)
  8103. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(-10)), 0.5)
  8104. if Debounces.on == false then break end
  8105. rs:wait()
  8106. end
  8107. Debounces.Slashing = false
  8108. end
  8109. function attacktwo()
  8110. Debounces.Slashing = true
  8111. for i = 1, 14 do
  8112. Dmg()
  8113. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.37, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-90)), 0.4)
  8114. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), math.rad(0), math.rad(0)), 0.4)
  8115. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(80)), 0.7)
  8116. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8117. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad (-70)), 0.5)
  8118. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  8119. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-90), math.rad(0)), 0.5)
  8120. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8121. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -2) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5)
  8122. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8123. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
  8124. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8125. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
  8126. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8127. if Debounces.on == false then
  8128. break
  8129. end
  8130. rs:wait()
  8131. end
  8132. end
  8133. ----------------------------------------------------
  8134. ComboNum = 0
  8135. mouse.Button1Down:connect(function()
  8136. if Debounces.CanAttack == true then
  8137. Debounces.CanAttack = false
  8138. Debounces.NoIdl = true
  8139. Debounces.on = true
  8140. if ComboNum == 0 then
  8141. attackone()
  8142. elseif ComboNum == 1 then
  8143. attacktwo()
  8144. --[[elseif ComboNum == 2 then
  8145. attackthree()]]--
  8146. end
  8147. ComboNum = ComboNum + 1
  8148. Debounces.CanAttack = true
  8149. Debounces.on = false
  8150. wait(.5)
  8151. if Debounces.CanAttack == true then
  8152. ComboNum = 0
  8153. Debounces.NoIdl = false
  8154. end
  8155. end
  8156. end)
  8157. ----------------------------------------------------
  8158. definition = 5
  8159. bc = {}
  8160. bezierparts = {}
  8161. function NoOutline(Part)
  8162. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  8163. end
  8164. function draw(p,d)
  8165. for i=1,d do
  8166. local t = i/d
  8167. bc[i] = p[1]*(1-t)^2+2*p[2]*(1-t)*t+p[3]*t^2
  8168. end
  8169. for i=1,d do
  8170. local bcs = Instance.new("Part",char)
  8171. NoOutline(bcs)
  8172. bcs.Anchored = true
  8173. bcs.CanCollide = false
  8174. bcs.Material = "Neon"
  8175. bcs.BrickColor = BrickColor.new("Lime green")
  8176. bcs.Size = Vector3.new(1,1,1)
  8177. bcs.Shape = Enum.PartType.Ball
  8178. bcs.CFrame = CFrame.new(bc[i])
  8179. local bcp = Instance.new("Part",char)
  8180. NoOutline(bcp)
  8181. bcp.Anchored = true
  8182. bcp.CanCollide = false
  8183. bcp.Material = "Neon"
  8184. bcp.BrickColor = BrickColor.new("Lime green")
  8185. local cm = Instance.new("CylinderMesh")
  8186. cm.Parent = bcp
  8187. if i ~= 1 then
  8188. bcp.CFrame = CFrame.new(bc[i]:Lerp(bc[i-1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  8189. bcp.Size = Vector3.new(1,(bc[i]-bc[i-1]).magnitude,1)
  8190. else
  8191. bcp.CFrame = CFrame.new(bc[i]:Lerp(p[1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  8192. bcp.Size = Vector3.new(1,(bc[i]-p[1]).magnitude,1)
  8193. end
  8194. table.insert(bezierparts, bcs)
  8195. table.insert(bezierparts, bcp)
  8196. end
  8197. Spawn(function() fat.Event:wait()
  8198. for i,v in pairs(bezierparts) do
  8199. v.Transparency = 1
  8200. end
  8201. end)
  8202. end
  8203. --local points = {larm.Position,rarn.Position,invisipart.Position}
  8204. --draw(points,definition)
  8205. mouse.KeyDown:connect(function(key)
  8206. if key == "f" then
  8207. if Debounces.CanAttack == true then
  8208. Debounces.CanAttack = false
  8209. Debounces.NoIdl = true
  8210. Debounces.on = true
  8211. for i = 1, 20 do
  8212. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  8213. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8214. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  8215. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8216. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
  8217. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8218. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  8219. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8220. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  8221. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8222. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  8223. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8224. if Debounces.on == false then
  8225. break
  8226. end
  8227. fat.Event:wait()
  8228. end
  8229. rpart = Instance.new("Part",rarm)
  8230. NoOutline(rpart)
  8231. rpart.Anchored = false
  8232. rpart.Size = Vector3.new(1,1,1)
  8233. rpart.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8234. rpart.Transparency = 1
  8235. newWeld(rarm, rpart, 0, 0, 0)
  8236. rpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  8237. lpart = Instance.new("Part",larm)
  8238. NoOutline(lpart)
  8239. lpart.Anchored = false
  8240. lpart.Size = Vector3.new(1,1,1)
  8241. lpart.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8242. lpart.Transparency = 1
  8243. newWeld(larm, lpart, 0, 0, 0)
  8244. lpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  8245. invisipart = Instance.new("Part",torso)
  8246. NoOutline(invisipart)
  8247. invisipart.Anchored = false
  8248. invisipart.Size = Vector3.new(1,1,1)
  8249. invisipart.Transparency = 1
  8250. invisipart.CFrame = torso.CFrame
  8251. newWeld(torso, invisipart, 0, 0, 0)
  8252. invisipart.Weld.C1 = CFrame.new(0, 0, 6)
  8253. table.insert(bezierparts, rpart)
  8254. table.insert(bezierparts, lpart)
  8255. table.insert(bezierparts, invisipart)
  8256. for i = 1, 40 do
  8257. local points = {lpart.Position,invisipart.Position,rpart.Position}
  8258. draw(points,definition)
  8259. --invisipart.Weld.C1 = invisipart.Weld.C1 + Vector3.new(0,0,0.6)
  8260. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.1)
  8261. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8262. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-90)), 0.1)
  8263. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8264. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0), math.rad(0)), 0.2)
  8265. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8266. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  8267. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8268. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  8269. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8270. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  8271. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5)
  8272. if Debounces.on == false then
  8273. break
  8274. end
  8275. fat.Event:wait()
  8276. end
  8277. for i,v in pairs(bezierparts) do
  8278. v:Destroy()
  8279. end
  8280. --draw(points,definition)
  8281. if Debounces.CanAttack == false then
  8282. Debounces.CanAttack = true
  8283. Debounces.NoIdl = false
  8284. Debounces.on = false
  8285. end
  8286. end
  8287. end
  8288. end)
  8289. ----------------------------------------------------
  8290. pitches = {0.85, 0.9, 0.95, 1, 1.05, 1.1}
  8291. IDs = {"415880409","415880478"}
  8292. mouse.KeyDown:connect(function(key)
  8293. if key == "h" then
  8294. if Debounces.CanJoke == true then
  8295. Debounces.CanJoke = false
  8296. z = Instance.new("Sound",hed)
  8297. z.SoundId = "rbxassetid://"..IDs[math.random(1,#IDs)]
  8298. z.Pitch = 1
  8299. z.Volume = 1
  8300. z1 = Instance.new("Sound",hed)
  8301. z1.SoundId = z.SoundId
  8302. z1.Pitch = 1
  8303. z1.Volume = 1
  8304. wait()
  8305. z:Play()
  8306. z1:Play()
  8307. wait(20)
  8308. z:Destroy()
  8309. z1:Destroy()
  8310. if Debounces.CanJoke == false then
  8311. Debounces.CanJoke = true
  8312. end
  8313. end
  8314. end
  8315. end)
  8316. ----------------------------------------------------
  8317. mouse.KeyDown:connect(function(key)
  8318. if key == "j" then
  8319. if Debounces.CanJoke == true then
  8320. Debounces.CanJoke = false
  8321. z = Instance.new("Sound",hed)
  8322. z.SoundId = "rbxassetid://415859013"
  8323. z.Pitch = pitches[math.random(1,#pitches)]
  8324. z.Volume = 1
  8325. wait()
  8326. z:Play()
  8327. wait(2)
  8328. z:Destroy()
  8329. if Debounces.CanJoke == false then
  8330. Debounces.CanJoke = true
  8331. end
  8332. end
  8333. end
  8334. end)
  8335. ----------------------------------------------------
  8336. mouse.KeyDown:connect(function(key)
  8337. if key == "k" then
  8338. if Debounces.CanJoke == true then
  8339. Debounces.CanJoke = false
  8340. z = Instance.new("Sound",hed)
  8341. z.SoundId = "rbxassetid://415859085"
  8342. z.Pitch = pitches[math.random(1,#pitches)]
  8343. z.Volume = 1
  8344. wait()
  8345. z:Play()
  8346. wait(2)
  8347. z:Destroy()
  8348. if Debounces.CanJoke == false then
  8349. Debounces.CanJoke = true
  8350. end
  8351. end
  8352. end
  8353. end)
  8354. ----------------------------------------------------
  8355. Grab = false
  8356. mouse.KeyDown:connect(function(key)
  8357. if key == "z" then
  8358. Debounces.on = true
  8359. Debounces.NoIdl = true
  8360. Debounces.ks = true
  8361. if Grab == false then
  8362. gp = nil
  8363. for i = 1, 20 do
  8364. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  8365. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8366. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-80)), 0.2)
  8367. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8368. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
  8369. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8370. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
  8371. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8372. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  8373. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8374. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  8375. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8376. if Debounces.on == false then break end
  8377. fat.Event:wait()
  8378. end
  8379. con1=larm.LeftArm.LeftArmPlate.Touched:connect(function(hit)
  8380. ht = hit.Parent
  8381. for i,v in pairs(ht:GetChildren()) do
  8382. if v:IsA("Part") then
  8383. v.CanCollide = false
  8384. v.CustomPhysicalProperties = PhysicalProperties.new(0.001,0.001,0.001,0.001,0.001)
  8385. end
  8386. end
  8387. hum1=ht:FindFirstChild('Humanoid')
  8388. if hum1 ~= nil then
  8389. if Debounces.ks==true then
  8390. z = Instance.new("Sound",hed)
  8391. z.SoundId = "rbxassetid://169380525"
  8392. z.Volume = 1
  8393. z:Play()
  8394. Debounces.ks=false
  8395. end
  8396. hum1.PlatformStand=true
  8397. hum1:ChangeState'Physics'
  8398. gp = ht
  8399. Grab = true
  8400. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,0.6),CFrame.new(0,0,0))
  8401. asd.Parent = larm
  8402. asd.Name = "asd"
  8403. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
  8404. stanceToggle = "Grabbed"
  8405. --[[elseif hum1 == nil then
  8406. con1:disconnect()
  8407. wait() return]]--
  8408. end
  8409. end)
  8410. for i = 1, 20 do
  8411. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  8412. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8413. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.65,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  8414. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8415. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.2)
  8416. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8417. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
  8418. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8419. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  8420. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8421. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  8422. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8423. if Debounces.on == false then break end
  8424. fat.Event:wait()
  8425. end
  8426. con1:disconnect()
  8427. Debounces.on = false
  8428. Debounces.NoIdl = false
  8429. elseif Grab == true then
  8430. Grab = false
  8431. --[[for i = 1, 16 do
  8432. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(60)), 0.3)
  8433. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.5)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-60)), 0.3)
  8434. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
  8435. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  8436. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  8437. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  8438. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
  8439. if Debounces.on == false then end
  8440. rs:wait()
  8441. end]]--
  8442. for i = 1, 16 do
  8443. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.3)
  8444. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.5)
  8445. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(140),math.rad(0),math.rad(0)), 0.3)
  8446. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(60)), 0.5)
  8447. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
  8448. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8449. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.3)
  8450. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8451. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(-20)), 0.3)
  8452. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  8453. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  8454. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8455. if Debounces.on == false then end
  8456. rs:wait()
  8457. end
  8458. for i = 1, 12 do
  8459. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.6)
  8460. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8461. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.3,-0.1)*CFrame.Angles(math.rad(45),math.rad(0),math.rad(-32)), 0.6)
  8462. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8463. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(40), math.rad(14)),0.6)
  8464. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8465. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-50), math.rad(0), math.rad(0)), 0.6)
  8466. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0,-1,0)*CFrame.Angles(math.rad(0),math.rad(40),math.rad(0)), 0.5)
  8467. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
  8468. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.4)
  8469. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.4, .2, -0.8) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.6)
  8470. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(20), math.rad(0)), 0.4)
  8471. if Debounces.on == false then end
  8472. rs:wait()
  8473. end
  8474. Slam()
  8475. if gp ~= nil then
  8476. for i,v in pairs(larm:GetChildren()) do
  8477. if v.Name == "asd" and v:IsA("Weld") then
  8478. v:Remove()
  8479. end
  8480. if v:IsA("Part") then
  8481. v.CanCollide = true
  8482. v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
  8483. end
  8484. end
  8485. end
  8486. stanceToggle = "Idle1"
  8487. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  8488. bv.maxForce = Vector3.new(400000, 400000, 400000)
  8489. bv.P = 125000
  8490. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  8491. ht=nil
  8492. Debounces.on = false
  8493. Debounces.NoIdl = false
  8494. elseif ht == nil then wait()
  8495. Grab = false
  8496. Debounces.on = false
  8497. Debounces.NoIdl = false
  8498. end
  8499. end
  8500. end)
  8501. ----------------------------------------------------
  8502. Change = false
  8503. mouse.KeyDown:connect(function(key)
  8504. if key == "n" then
  8505. if Change == false then
  8506. Change = true
  8507. stanceToggle = "Idle2"
  8508. elseif Change == true then
  8509. Change = false
  8510. stanceToggle = "Idle1"
  8511. end
  8512. end
  8513. end)
  8514. ----------------------------------------------------
  8515. mouse.KeyDown:connect(function(key)
  8516. if string.byte(key) == 52 then
  8517. Swing = 2
  8518. char.Humanoid.WalkSpeed = 28
  8519. end
  8520. end)
  8521. mouse.KeyUp:connect(function(key)
  8522. if string.byte(key) == 52 then
  8523. Swing = 1
  8524. char.Humanoid.WalkSpeed = 16
  8525. end
  8526. end)
  8527. ----------------------------------------------------
  8528. CR = torso.Cloak.Rotater
  8529. CR2 = torso.Cloak.CapeLevel1
  8530. CR3 = torso.Cloak.CapeLevel2
  8531. CR4 = torso.Cloak.CapeLevel3
  8532. CR5 = torso.Cloak.CapeLevel4
  8533. jump = false
  8534. rs:connect(function()
  8535. if char.Humanoid.Jump == true then
  8536. jump = true
  8537. else
  8538. jump = false
  8539. end
  8540. char.Humanoid.FreeFalling:connect(function(f)
  8541. if f then
  8542. ffing = true
  8543. else
  8544. ffing = false
  8545. end
  8546. end)
  8547. sine = sine + change
  8548. if jump == true then
  8549. animpose = "Jumping"
  8550. elseif ffing == true then
  8551. animpose = "Freefalling"
  8552. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  8553. animpose = "Idle"
  8554. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  8555. animpose = "Walking"
  8556. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  8557. animpose = "Running"
  8558. end
  8559. RightLeg = CFrame.new(0.5,-1,0)
  8560. LeftLeg = CFrame.new(-0.5,-1,0)
  8561.  
  8562. lefth = (torso.CFrame*LeftLeg)
  8563. righth = (torso.CFrame*RightLeg)
  8564.  
  8565. speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
  8566.  
  8567. TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
  8568.  
  8569. local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
  8570. local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
  8571. if animpose ~= lastanimpose then
  8572. sine = 0
  8573. if Debounces.NoIdl == false then
  8574. if stanceToggle == "Idle1" then
  8575. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-12-4*math.cos(sine/22)),math.rad(-12-2*math.cos(sine/22)),math.rad(12+2*math.cos(sine/22))), 0.3)
  8576. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,-0.2)*CFrame.Angles(math.rad(20+4*math.cos(sine/22)),math.rad(-22-2*math.cos(sine/22)),math.rad(-15-2*math.cos(sine/22))), 0.3)
  8577. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-12+2.5*math.cos(sine/22)),math.rad(0),math.rad(0)), 0.2)
  8578. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-2+2*math.cos(sine/22)), math.rad(0), 0), 0.2)
  8579. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(5), math.rad(-5)), 0.2)
  8580. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(0-2*math.cos(sine/22)), math.rad(-5), math.rad(5)), 0.2)
  8581. elseif stanceToggle == "Idle2" then
  8582. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0.2)*CFrame.Angles(math.rad(-22-4*math.cos(sine/12)),math.rad(-40-2*math.cos(sine/12)),math.rad(24+2*math.cos(sine/12))), 0.3)
  8583. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.6,-0.6)*CFrame.Angles(math.rad(90+4*math.cos(sine/12)),math.rad(0),math.rad(50-2*math.cos(sine/12))), 0.3)
  8584. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-6+2.5*math.cos(sine/12)),math.rad(0),math.rad(0)), 0.2)
  8585. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(-20+2*math.cos(sine/12)), math.rad(0), 0), 0.2)
  8586. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.4, -1) * CFrame.Angles(math.rad(-7-2*math.cos(sine/12)), math.rad(7), math.rad(-5)), 0.2)
  8587. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, -0.2) * CFrame.Angles(math.rad(-30-2*math.cos(sine/12)), math.rad(-9), math.rad(5)), 0.2)
  8588. end
  8589. fat.Event:wait()
  8590. end
  8591. else
  8592. end
  8593. lastanimpose = animpose
  8594. if Debounces.NoIdl == false then
  8595. if animpose == "Idle" then
  8596. change = 0.5
  8597. if stanceToggle == "Idle1" then
  8598. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05+0.03*math.cos(sine/5), 0-0.1*math.cos(sine/10)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8599. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0+8*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.3)
  8600. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4-2*math.cos(sine/10)),0,0),0.1)
  8601. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  8602. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  8603. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  8604. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-2*math.cos(sine/10)),0,0),0.1)
  8605. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.6+0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),-0.2-0.1*math.cos(sine/10))*CFrame.Angles(math.rad(8+2.5*math.cos(sine/10)),math.rad(22+7*math.cos(sine/10)),math.rad(15+2*math.cos(sine/10))), 0.8)
  8606. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8607. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.6-0.05*math.cos(sine/10),0.6+0.1*math.cos(sine/10),0.2+0.1*math.cos(sine/10))*CFrame.Angles(math.rad(-8-2.5*math.cos(sine/10)),math.rad(12+5*math.cos(sine/10)),math.rad(-12-3*math.cos(sine/10))), 0.8)
  8608. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8609. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.05*math.cos(sine/10))*CFrame.Angles(math.rad(-15+3*math.cos(sine/10)),math.rad(0),math.rad(0)), 0.5)
  8610. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(20-3*math.cos(sine/10)),math.rad(0)), 0.5)
  8611. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6+3*math.cos(sine/10)), math.rad(0), 0), 0.1)
  8612. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0-0.08*math.cos(sine/10), -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20+3*math.cos(sine/10)), 0), 0.1)
  8613. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.14+0.06*math.cos(sine/10)) * CFrame.Angles(math.rad(-3-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
  8614. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(-10-3*math.cos(sine/10)), math.rad(5+3*math.cos(sine/10))), 0.1)
  8615. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -0.06) * CFrame.Angles(math.rad(8-3*math.cos(sine/10)), math.rad(0), math.rad(0)), 0.1)
  8616. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(10-3*math.cos(sine/10)), math.rad(-5+3*math.cos(sine/10))), 0.1)
  8617. elseif stanceToggle == "Idle2" then
  8618. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-6),0,0),0.1)
  8619. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  8620. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  8621. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-7-1*math.cos(sine/6)),0,0),0.1)
  8622. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-8-1*math.cos(sine/6)),0,0),0.1)
  8623. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8624. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65-0.1*math.cos(sine/3),0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20-2*math.cos(sine/3))), 0.1)
  8625. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  8626. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.23, 0.5, -.56) * CFrame.Angles(math.rad(88+4*math.cos(sine/3)), 0, math.rad(45)), 0.6)
  8627. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  8628. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(-10+2*math.cos(sine/6)), 0, 0), 0.8)
  8629. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  8630. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  8631. --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-5-10*math.cos(sine/18)), math.sin(sine/36)/3, 0), 0.3)
  8632. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8633. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.15) * CFrame.Angles(math.rad(-9-2*math.cos(sine/6)), 0, 0), 0.8)
  8634. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1-0.1*math.cos(sine/3), 0+0.04*math.cos(sine/6)) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)), 0.8)
  8635. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56-2*math.cos(sine/6)), 0, 0), 0.8)
  8636. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1-0.05*math.cos(sine/3), 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.8)
  8637. elseif stanceToggle == "Grabbed" then
  8638. grab = true
  8639. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8640. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8641. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2)
  8642. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  8643. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(90+4*math.cos(sine/14)),math.rad(0),math.rad(-80+4*math.cos(sine/14))), 0.3)
  8644. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  8645. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3)
  8646. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8647. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  8648. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  8649. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  8650. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  8651. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  8652. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  8653. end
  8654. elseif animpose == "Walking" then
  8655. if stanceToggle == "Grabbed" then
  8656. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8657. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8658. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  8659. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8660. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120+4*math.cos(sine/2)),math.rad(0),math.rad(-30+4*math.cos(sine/4))), 0.3)
  8661. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0,0.5, 0)*CFrame.Angles(math.rad(0), math.rad(0),math.rad(0)), 0.2)
  8662. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
  8663. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
  8664. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
  8665. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  8666. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  8667. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
  8668. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  8669. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
  8670. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  8671. elseif stanceToggle ~= "Grabbed" then
  8672. change = 1
  8673. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8674. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8675. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-22-2*math.cos(sine/2)),0,0),0.2)
  8676. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-3*math.cos(sine/2)),0,0),0.2)
  8677. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-4*math.cos(sine/2)),0,0),0.2)
  8678. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-5*math.cos(sine/2)),0,0),0.2)
  8679. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-3-6*math.cos(sine/2)),0,0),0.2)
  8680. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/2), math.sin(sine/4)/4) * CFrame.Angles(-math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(10+7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  8681. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8682. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5+.05*math.cos(sine/2), -math.sin(sine/4)/4)*CFrame.Angles(math.sin(sine/4)/2.8, -math.sin(sine/4)/3, (math.rad(-10-7*math.cos(sine/2))+root.RotVelocity.Y/30)), 0.4)
  8683. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.7)
  8684. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-0.1+0.1*math.cos(sine/2))*CFrame.Angles(math.rad(-10+4*math.cos(sine/2)), math.rad(0-8*math.cos(sine/4)/2.3), math.rad(0)),0.4)
  8685. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.7)
  8686. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.12*math.cos(sine/2), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/2)), math.rad(0+10*math.cos(sine/4)/2.3)+root.RotVelocity.Y/30, math.rad(0)+root.RotVelocity.Y/30), 0.4)
  8687. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  8688. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  8689. --lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.9-0.24*math.cos(sine/4)/2.8, -0.05 + math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)-math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
  8690. lleg.Weld.C0 = lleg.Weld.C0:lerp(CFrame.new(-0.5,-1-math.cos(sine/4)*.3,0+math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*AngleThetaL.Z,AngleThetaL.X,(math.sin(sine/4)*3*-AngleThetaL.X)-root.RotVelocity.Y/20),0.8)
  8691. lleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  8692. --rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.9+0.24*math.cos(sine/4)/2.8, -0.05 + -math.sin(sine/4)/3.4) * CFrame.Angles(math.rad(-5)+math.sin(sine/4)/2.1, math.rad(0-10*math.cos(sine/4)/2.3), 0-root.RotVelocity.Y/20), .4)
  8693. rleg.Weld.C0 = rleg.Weld.C0:lerp(CFrame.new(0.5,-1+math.cos(sine/4)*.3,0-math.sin(sine/4)*.1)*CFrame.Angles(math.sin(sine/4)*3*-AngleThetaR.Z,AngleThetaR.X,(math.sin(sine/4)*3*AngleThetaR.X)-root.RotVelocity.Y/20),0.8)
  8694. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)
  8695. end
  8696. elseif animpose == "Running" then
  8697. change = 1
  8698. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8699. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8700. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-56-10*math.cos(sine/2)),0,0),0.2)
  8701. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  8702. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  8703. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  8704. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-8*math.cos(sine/2)),0,0),0.2)
  8705. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.24+.6*math.cos(sine/4)/1.4, 0.54, 0+0.8*math.cos(sine/4)) * CFrame.Angles(math.rad(6-140*math.cos(sine/4)/1.2), math.rad(0), math.rad(-20+70*math.cos(sine/4))), 0.2)
  8706. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  8707. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.24+.6*math.cos(sine/4)/1.4, 0.54, 0-0.8*math.cos(sine/4))*CFrame.Angles(math.rad(6+140*math.cos(sine/4)/1.2), math.rad(0), math.rad(20+70*math.cos(sine/4))), 0.2)
  8708. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8709. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-8+12*math.cos(sine/2)/1.5), math.rad(0+12*math.cos(sine/4)), math.rad(0)),0.2)
  8710. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0)-root.RotVelocity.Y/10,math.rad(0)), 0.5)
  8711. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/2)/1.7, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/2)/1.5), math.rad(0-12*math.cos(sine/4))-root.RotVelocity.Y/10, math.rad(0)+root.RotVelocity.Y/20), 0.2)
  8712. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8713. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.8-0.4*math.cos(sine/4)/2, math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + -math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
  8714. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8715. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8+0.4*math.cos(sine/4)/2, -math.sin(sine/4)/2) * CFrame.Angles(math.rad(-10) + math.sin(sine/4)/1.2, math.rad(0+12*math.cos(sine/4))+root.RotVelocity.Y/10, 0), .8)
  8716. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8717. elseif animpose == "Jumping" then
  8718. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-30),0,0),0.2)
  8719. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  8720. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  8721. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  8722. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-4*math.cos(sine/2)),0,0),0.2)
  8723. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8724. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8725. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(20)), 0.2)
  8726. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  8727. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.2)
  8728. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8729. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
  8730. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  8731. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8732. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  8733. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8734. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1.1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  8735. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8736. elseif animpose == "Freefalling" then
  8737. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-110),0,0),0.2)
  8738. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  8739. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  8740. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  8741. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0-10*math.cos(sine/2)),0,0),0.2)
  8742. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8743. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8744. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.6, 0)*CFrame.Angles(math.rad(-40),math.rad(20),math.rad(50)), 0.2)
  8745. rarm.Weld.C1 = Lerp(rarm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.36)
  8746. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0)*CFrame.Angles(math.rad(110),math.rad(-20),math.rad(-30)), 0.2)
  8747. larm.Weld.C1 = Lerp(larm.Weld.C1, CFrame.new(0, 0.5, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)
  8748. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
  8749. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  8750. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8751. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.5, 0.2) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0)), 0.2)
  8752. lleg.Weld.C1 = Lerp(lleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8753. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.6) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.2)
  8754. rleg.Weld.C1 = Lerp(rleg.Weld.C1, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)
  8755. end
  8756. end
  8757. end)
  8758. hum.MaxHealth = 5000
  8759. wait(3)
  8760. hum.Health = 5000
  8761. while wait() do
  8762. wait(5)
  8763. for i=1,100 do wait()
  8764. Amulite.Brightness=Amulite.Brightness+0.02
  8765. end
  8766. for i=1,100 do wait()
  8767. Amulite.Brightness=Amulite.Brightness-0.02
  8768. end
  8769. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement