Advertisement
JacksoMykalJunior

TRY

Feb 23rd, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 429.59 KB | None | 0 0
  1. local p = game.Players.Red_Jack142--300899323
  2. local char = p.Character
  3. local larm = char["Left Arm"]
  4. local rarm = char["Right Arm"]
  5. local lleg = char["Left Leg"]
  6. local rleg = char["Right Leg"]
  7. local hed = char.Head
  8. local torso = char.Torso
  9. local hum = char.Humanoid
  10. local cam = game.Workspace.CurrentCamera
  11. local root = char.HumanoidRootPart
  12. local rj = root.RootJoint
  13. local deb = false
  14. local shot = 0
  15. local stanceToggle = "Idle1"
  16. local l = game:GetService("Lighting")
  17. local rs = game:GetService("RunService").RenderStepped
  18. local hb = game:GetService("RunService").Heartbeat
  19. local Stepped = game:GetService("RunService").Stepped
  20. math.randomseed(os.time())
  21. hum.JumpPower = 100
  22. hed.face:Remove()
  23. ----------------------------------------------------
  24. fat = Instance.new("BindableEvent",script)
  25. fat.Name = "Heartbeat"
  26.  
  27. script:WaitForChild("Heartbeat")
  28.  
  29. frame = 1/30
  30. tf = 0
  31. 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.
  32. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  33. lastframe = tick()
  34. script.Heartbeat:Fire() --ayy lmao
  35.  
  36. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  37. tf = tf + s
  38. if tf >= frame then
  39. if allowframeloss then
  40. script.Heartbeat:Fire()
  41. lastframe=tick()
  42. else
  43. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  44. for i=1, math.floor(tf/frame) do
  45. script.Heartbeat:Fire()
  46. end
  47. lastframe=tick()
  48. end
  49. if tossremainder then
  50. tf = 0
  51. else
  52. tf = tf - frame * math.floor(tf/frame)
  53. end
  54. end
  55. end)
  56. ----------------------------------------------------
  57. for i,v in pairs(char:children()) do
  58. if v:IsA("Hat") then
  59. v:Destroy()
  60. end
  61. end
  62. for i,v in pairs (hed:GetChildren()) do
  63. if v:IsA("Sound") then
  64. v:Destroy()
  65. end
  66. end
  67. ----------------------------------------------------
  68. Debounces = {
  69. CanAttack = true;
  70. CanJoke = true;
  71. NoIdl = false;
  72. Slashing = false;
  73. Slashed = false;
  74. ks = false;
  75. }
  76. ----------------------------------------------------
  77. function weld5(part0, part1, c0, c1)
  78. weeld=Instance.new("Weld", part0)
  79. weeld.Part0=part0
  80. weeld.Part1=part1
  81. weeld.C0=c0
  82. weeld.C1=c1
  83. return weeld
  84. end
  85. ----------------------------------------------------
  86. function NewPart(prnt,siz,cf,trans,anc,mat,col)
  87. local prt=Instance.new("Part")
  88. prt.Parent=prnt
  89. prt.Name="Part"
  90. prt.Size=siz
  91. prt.CanCollide=false
  92. prt.Anchored=anc
  93. prt.Locked=true
  94. prt.Transparency = trans
  95. prt.TopSurface=10
  96. prt.BottomSurface=10
  97. prt.FrontSurface=10
  98. prt.BackSurface=10
  99. prt.LeftSurface=10
  100. prt.RightSurface=10
  101. prt:BreakJoints()
  102. prt.CFrame=cf or CFrame.new(30,10,30)
  103. prt.Material=mat
  104. prt.BrickColor=BrickColor.new(col)
  105. m=Instance.new("SpecialMesh",prt)
  106. m.MeshType=6
  107. return prt
  108. end
  109. ----------------------------------------------------
  110. function lerp(a, b, t) -- Linear interpolation
  111. return a + (b - a)*t
  112. end
  113.  
  114. function slerp(a, b, t) --Spherical interpolation
  115. dot = a:Dot(b)
  116. if dot > 0.99999 or dot < -0.99999 then
  117. return t <= 0.5 and a or b
  118. else
  119. r = math.acos(dot)
  120. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  121. end
  122. end
  123.  
  124. function matrixInterpolate(a, b, t)
  125. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  126. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  127. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  128. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  129. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  130. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  131. local t = v1:Dot(v2)
  132. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  133. return CFrame.new()
  134. end
  135. return CFrame.new(
  136. v0.x, v0.y, v0.z,
  137. v1.x, v1.y, v1.z,
  138. v2.x, v2.y, v2.z,
  139. v3.x, v3.y, v3.z)
  140. end
  141. ----------------------------------------------------
  142. function genWeld(a,b)
  143. local w = Instance.new("Weld",a)
  144. w.Part0 = a
  145. w.Part1 = b
  146. return w
  147. end
  148. function weld(a, b)
  149. local weld = Instance.new("Weld")
  150. weld.Name = "W"
  151. weld.Part0 = a
  152. weld.Part1 = b
  153. weld.C0 = a.CFrame:inverse() * b.CFrame
  154. weld.Parent = a
  155. return weld;
  156. end
  157. ----------------------------------------------------
  158. function Lerp(c1,c2,al)
  159. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  160. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  161. for i,v in pairs(com1) do
  162. com1[i] = v+(com2[i]-v)*al
  163. end
  164. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  165. end
  166. ----------------------------------------------------
  167. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  168. local wld = Instance.new("Weld", wp1)
  169. wld.Part0 = wp0
  170. wld.Part1 = wp1
  171. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  172. end
  173. ----------------------------------------------------
  174. newWeld(torso, larm, -1.5, 0.5, 0)
  175. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  176. newWeld(torso, rarm, 1.5, 0.5, 0)
  177. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  178. newWeld(torso, hed, 0, 1.5, 0)
  179. newWeld(torso, lleg, -0.5, -1, 0)
  180. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  181. newWeld(torso, rleg, 0.5, -1, 0)
  182. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  183. newWeld(root, torso, 0, -1, 0)
  184. torso.Weld.C1 = CFrame.new(0, -1, 0)
  185. ----------------------------------------------------
  186. z = Instance.new("Sound",char) --Smile: print("☺")
  187. z.SoundId = "rbxassetid://403445112"--410761150, 411368002
  188. z.Looped = true
  189. z.Pitch = 0.72
  190. z.Volume = 1
  191. wait(0.1)
  192. z:Play()
  193. ----------------------------------------------------
  194. New = function(Object, Parent, Name, Data)
  195. local Object = Instance.new(Object)
  196. for Index, Value in pairs(Data or {}) do
  197. Object[Index] = Value
  198. end
  199. Object.Parent = Parent
  200. Object.Name = Name
  201. return Object
  202. end
  203. ----------------------------------------------------
  204. pr = Instance.new("Part",hed)
  205. pr.BrickColor = BrickColor.new("Black")
  206. pr.Material = "Metal"
  207. pr.Reflectance = 0.04
  208. pr.Anchored = false
  209. pr.CanCollide = false
  210. pr.Archivable = false
  211. pr.Locked = true
  212. pr.Size = Vector3.new(2,0.8,1)
  213. prm = Instance.new("SpecialMesh",pr)
  214. prm.MeshType = "FileMesh"
  215. prm.MeshId = "rbxassetid://16952952"
  216. prm.Scale = Vector3.new(1,1,1)
  217. newWeld(hed, pr, 0, 0.35, 0)
  218. pr.Weld.C1 = CFrame.new(0,0,0)
  219. --Left Arm
  220. m = Instance.new("Model")
  221. m.Name = "LeftArm"
  222. p1 = Instance.new("Part", m)
  223. p1.BrickColor = BrickColor.new("Lime green")
  224. p1.Material = Enum.Material.Granite
  225. p1.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  226. p1.Size = Vector3.new(1, 0.200000048, 1)
  227. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  228. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  229. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  230. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  231. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  232. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  233. b1 = Instance.new("SpecialMesh", p1)
  234. b1.MeshType = Enum.MeshType.Brick
  235. b1.Name = "Mesh"
  236. b1.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  237. p2 = Instance.new("Part", m)
  238. p2.BrickColor = BrickColor.new("Lime green")
  239. p2.Material = Enum.Material.Granite
  240. p2.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  241. p2.Size = Vector3.new(1, 0.200000048, 1)
  242. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  243. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  244. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  245. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  246. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  247. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  248. b2 = Instance.new("SpecialMesh", p2)
  249. b2.MeshType = Enum.MeshType.Brick
  250. b2.Name = "Mesh"
  251. b2.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  252. p3 = Instance.new("Part", m)
  253. p3.BrickColor = BrickColor.new("Lime green")
  254. p3.Material = Enum.Material.Granite
  255. p3.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  256. p3.Size = Vector3.new(1, 0.200000048, 1)
  257. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  258. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  259. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  260. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  261. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  262. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  263. b3 = Instance.new("SpecialMesh", p3)
  264. b3.MeshType = Enum.MeshType.Brick
  265. b3.Name = "Mesh"
  266. b3.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  267. p4 = Instance.new("Part", m)
  268. p4.BrickColor = BrickColor.new("Black")
  269. p4.Material = Enum.Material.SmoothPlastic
  270. p4.Name = "LeftArmPlate"
  271. p4.Size = Vector3.new(1, 2, 1)
  272. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  273. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  274. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  275. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  276. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  277. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  278. b4 = Instance.new("SpecialMesh", p4)
  279. b4.MeshType = Enum.MeshType.Brick
  280. b4.Name = "Mesh"
  281. b4.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  282. p5 = Instance.new("Part", m)
  283. p5.BrickColor = BrickColor.new("Lime green")
  284. p5.Material = Enum.Material.Granite
  285. p5.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  286. p5.Size = Vector3.new(1, 0.200000048, 1)
  287. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  288. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  289. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  290. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  291. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  292. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  293. b5 = Instance.new("SpecialMesh", p5)
  294. b5.MeshType = Enum.MeshType.Brick
  295. b5.Name = "Mesh"
  296. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  297. p6 = Instance.new("Part", m)
  298. p6.BrickColor = BrickColor.new("Lime green")
  299. p6.Material = Enum.Material.Granite
  300. p6.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  301. p6.Size = Vector3.new(1, 0.200000048, 1)
  302. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  303. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  304. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  305. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  306. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  307. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  308. b6 = Instance.new("SpecialMesh", p6)
  309. b6.MeshType = Enum.MeshType.Brick
  310. b6.Name = "Mesh"
  311. b6.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  312. p7 = Instance.new("Part", m)
  313. p7.BrickColor = BrickColor.new("Lime green")
  314. p7.Material = Enum.Material.Granite
  315. p7.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  316. p7.FormFactor = Enum.FormFactor.Custom
  317. p7.Size = Vector3.new(1, 0.200000048, 1)
  318. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  319. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  320. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  321. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  322. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  323. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  324. b7 = Instance.new("SpecialMesh", p7)
  325. b7.MeshType = Enum.MeshType.Brick
  326. b7.Name = "Mesh"
  327. b7.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  328. p8 = Instance.new("Part", m)
  329. p8.BrickColor = BrickColor.new("Lime green")
  330. p8.Material = Enum.Material.Granite
  331. p8.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  332. p8.FormFactor = Enum.FormFactor.Custom
  333. p8.Size = Vector3.new(1, 0.200000048, 1)
  334. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  335. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  336. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  337. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  338. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  339. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  340. b8 = Instance.new("SpecialMesh", p8)
  341. b8.MeshType = Enum.MeshType.Brick
  342. b8.Name = "Mesh"
  343. b8.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  344. p9 = Instance.new("Part", m)
  345. p9.BrickColor = BrickColor.new("Lime green")
  346. p9.Material = Enum.Material.Granite
  347. p9.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  348. p9.FormFactor = Enum.FormFactor.Custom
  349. p9.Size = Vector3.new(1, 0.200000048, 1)
  350. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  351. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  352. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  353. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  354. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  355. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  356. b9 = Instance.new("SpecialMesh", p9)
  357. b9.MeshType = Enum.MeshType.Brick
  358. b9.Name = "Mesh"
  359. b9.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  360. p10 = Instance.new("Part", m)
  361. p10.BrickColor = BrickColor.new("Black")
  362. p10.Material = Enum.Material.SmoothPlastic
  363. p10.CFrame = CFrame.new(-1.5, 6.78969193, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  364. p10.FormFactor = Enum.FormFactor.Custom
  365. p10.Size = Vector3.new(1, 0.349999994, 1)
  366. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  367. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  368. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  369. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  370. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  371. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  372. b10 = Instance.new("SpecialMesh", p10)
  373. b10.MeshType = Enum.MeshType.Brick
  374. b10.Name = "Mesh"
  375. b10.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  376. p11 = Instance.new("Part", m)
  377. p11.BrickColor = BrickColor.new("Black")
  378. p11.Material = Enum.Material.Metal
  379. p11.CFrame = CFrame.new(-1.5, 6.48969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  380. p11.FormFactor = Enum.FormFactor.Custom
  381. p11.Size = Vector3.new(1, 0.25, 1)
  382. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  383. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  384. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  385. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  386. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  387. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  388. b11 = Instance.new("SpecialMesh", p11)
  389. b11.MeshType = Enum.MeshType.Brick
  390. b11.Name = "Mesh"
  391. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  392. p12 = Instance.new("Part", m)
  393. p12.BrickColor = BrickColor.new("Black")
  394. p12.Material = Enum.Material.Metal
  395. p12.CFrame = CFrame.new(-1.5, 6.18969154, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  396. p12.FormFactor = Enum.FormFactor.Custom
  397. p12.Size = Vector3.new(1, 0.25, 1)
  398. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  399. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  400. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  401. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  402. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  403. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  404. b12 = Instance.new("SpecialMesh", p12)
  405. b12.MeshType = Enum.MeshType.Brick
  406. b12.Name = "Mesh"
  407. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  408. p13 = Instance.new("Part", m)
  409. p13.BrickColor = BrickColor.new("Black")
  410. p13.Material = Enum.Material.Metal
  411. p13.CFrame = CFrame.new(-1.5, 5.88968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  412. p13.FormFactor = Enum.FormFactor.Custom
  413. p13.Size = Vector3.new(1, 0.25, 1)
  414. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  415. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  416. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  417. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  418. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  419. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  420. b13 = Instance.new("SpecialMesh", p13)
  421. b13.MeshType = Enum.MeshType.Brick
  422. b13.Name = "Mesh"
  423. b13.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  424. p14 = Instance.new("Part", m)
  425. p14.BrickColor = BrickColor.new("Black")
  426. p14.Material = Enum.Material.Metal
  427. p14.CFrame = CFrame.new(-1.5, 5.58969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  428. p14.FormFactor = Enum.FormFactor.Custom
  429. p14.Size = Vector3.new(1, 0.25, 1)
  430. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  431. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  432. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  433. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  434. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  435. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  436. b14 = Instance.new("SpecialMesh", p14)
  437. b14.MeshType = Enum.MeshType.Brick
  438. b14.Name = "Mesh"
  439. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  440. p15 = Instance.new("Part", m)
  441. p15.BrickColor = BrickColor.new("Lime green")
  442. p15.Material = Enum.Material.Granite
  443. p15.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  444. p15.FormFactor = Enum.FormFactor.Custom
  445. p15.Size = Vector3.new(1, 1, 1)
  446. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  447. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  448. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  449. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  450. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  451. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  452. b15 = Instance.new("SpecialMesh", p15)
  453. b15.MeshType = Enum.MeshType.Sphere
  454. b15.Name = "Mesh"
  455. p16 = Instance.new("Part", m)
  456. p16.BrickColor = BrickColor.new("Black")
  457. p16.Material = Enum.Material.Metal
  458. 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)
  459. p16.FormFactor = Enum.FormFactor.Custom
  460. p16.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  461. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  462. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  463. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  464. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  465. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  466. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  467. b16 = Instance.new("SpecialMesh", p16)
  468. b16.MeshType = Enum.MeshType.Brick
  469. b16.Name = "Mesh"
  470. b16.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  471. p17 = Instance.new("Part", m)
  472. p17.BrickColor = BrickColor.new("Black")
  473. p17.Material = Enum.Material.SmoothPlastic
  474. 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)
  475. p17.FormFactor = Enum.FormFactor.Custom
  476. p17.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  477. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  478. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  479. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  480. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  481. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  482. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  483. b17 = Instance.new("SpecialMesh", p17)
  484. b17.MeshType = Enum.MeshType.Brick
  485. b17.Name = "Mesh"
  486. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  487. p18 = Instance.new("Part", m)
  488. p18.BrickColor = BrickColor.new("Black")
  489. p18.Material = Enum.Material.SmoothPlastic
  490. 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)
  491. p18.FormFactor = Enum.FormFactor.Custom
  492. p18.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  493. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  494. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  495. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  496. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  497. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  498. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  499. b18 = Instance.new("SpecialMesh", p18)
  500. b18.MeshType = Enum.MeshType.Brick
  501. b18.Name = "Mesh"
  502. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  503. p19 = Instance.new("Part", m)
  504. p19.BrickColor = BrickColor.new("Black")
  505. p19.Material = Enum.Material.SmoothPlastic
  506. 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)
  507. p19.FormFactor = Enum.FormFactor.Custom
  508. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  509. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  510. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  511. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  512. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  513. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  514. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  515. b19 = Instance.new("SpecialMesh", p19)
  516. b19.MeshType = Enum.MeshType.Brick
  517. b19.Name = "Mesh"
  518. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  519. p20 = Instance.new("Part", m)
  520. p20.BrickColor = BrickColor.new("Really black")
  521. p20.Material = Enum.Material.SmoothPlastic
  522. 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)
  523. p20.FormFactor = Enum.FormFactor.Custom
  524. p20.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  525. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  526. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  527. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  528. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  529. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  530. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  531. b20 = Instance.new("SpecialMesh", p20)
  532. b20.MeshType = Enum.MeshType.Brick
  533. b20.Name = "Mesh"
  534. b20.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  535. p21 = Instance.new("Part", m)
  536. p21.BrickColor = BrickColor.new("Black")
  537. p21.Material = Enum.Material.Metal
  538. 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)
  539. p21.FormFactor = Enum.FormFactor.Custom
  540. p21.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  541. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  542. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  543. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  544. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  545. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  546. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  547. b21 = Instance.new("SpecialMesh", p21)
  548. b21.MeshType = Enum.MeshType.Wedge
  549. b21.Name = "Mesh"
  550. b21.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  551. p22 = Instance.new("Part", m)
  552. p22.BrickColor = BrickColor.new("Black")
  553. p22.Material = Enum.Material.Metal
  554. 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)
  555. p22.FormFactor = Enum.FormFactor.Custom
  556. p22.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  557. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  558. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  559. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  560. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  561. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  562. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  563. b22 = Instance.new("SpecialMesh", p22)
  564. b22.MeshType = Enum.MeshType.Brick
  565. b22.Name = "Mesh"
  566. b22.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  567. p23 = Instance.new("Part", m)
  568. p23.BrickColor = BrickColor.new("Black")
  569. p23.Material = Enum.Material.Metal
  570. 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)
  571. p23.FormFactor = Enum.FormFactor.Custom
  572. p23.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  573. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  574. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  575. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  576. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  577. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  578. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  579. b23 = Instance.new("SpecialMesh", p23)
  580. b23.MeshType = Enum.MeshType.Brick
  581. b23.Name = "Mesh"
  582. b23.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  583. p24 = Instance.new("Part", m)
  584. p24.BrickColor = BrickColor.new("Black")
  585. p24.Material = Enum.Material.Metal
  586. 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)
  587. p24.FormFactor = Enum.FormFactor.Custom
  588. p24.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  589. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  590. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  591. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  592. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  593. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  594. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  595. b24 = Instance.new("SpecialMesh", p24)
  596. b24.MeshType = Enum.MeshType.Brick
  597. b24.Name = "Mesh"
  598. b24.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  599. p25 = Instance.new("Part", m)
  600. p25.BrickColor = BrickColor.new("Black")
  601. p25.Material = Enum.Material.Metal
  602. 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)
  603. p25.FormFactor = Enum.FormFactor.Custom
  604. p25.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  605. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  606. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  607. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  608. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  609. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  610. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  611. b25 = Instance.new("SpecialMesh", p25)
  612. b25.MeshType = Enum.MeshType.Brick
  613. b25.Name = "Mesh"
  614. b25.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  615. p26 = Instance.new("Part", m)
  616. p26.BrickColor = BrickColor.new("Black")
  617. p26.Material = Enum.Material.Metal
  618. 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)
  619. p26.FormFactor = Enum.FormFactor.Custom
  620. p26.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  621. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  622. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  623. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  624. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  625. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  626. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  627. b26 = Instance.new("SpecialMesh", p26)
  628. b26.MeshType = Enum.MeshType.Brick
  629. b26.Name = "Mesh"
  630. b26.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  631. p27 = Instance.new("Part", m)
  632. p27.BrickColor = BrickColor.new("Black")
  633. p27.Material = Enum.Material.Metal
  634. 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)
  635. p27.FormFactor = Enum.FormFactor.Custom
  636. p27.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  637. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  638. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  639. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  640. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  641. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  642. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  643. b27 = Instance.new("SpecialMesh", p27)
  644. b27.MeshType = Enum.MeshType.Brick
  645. b27.Name = "Mesh"
  646. b27.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  647. p28 = Instance.new("Part", m)
  648. p28.BrickColor = BrickColor.new("Black")
  649. p28.Material = Enum.Material.Metal
  650. 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)
  651. p28.FormFactor = Enum.FormFactor.Custom
  652. p28.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  653. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  654. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  655. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  656. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  657. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  658. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  659. b28 = Instance.new("SpecialMesh", p28)
  660. b28.MeshType = Enum.MeshType.Brick
  661. b28.Name = "Mesh"
  662. b28.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  663. p29 = Instance.new("Part", m)
  664. p29.BrickColor = BrickColor.new("Black")
  665. p29.Material = Enum.Material.Metal
  666. 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)
  667. p29.FormFactor = Enum.FormFactor.Custom
  668. p29.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  669. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  670. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  671. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  672. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  673. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  674. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  675. b29 = Instance.new("SpecialMesh", p29)
  676. b29.MeshType = Enum.MeshType.Brick
  677. b29.Name = "Mesh"
  678. b29.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  679. p30 = Instance.new("Part", m)
  680. p30.BrickColor = BrickColor.new("Black")
  681. p30.Material = Enum.Material.Metal
  682. 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)
  683. p30.FormFactor = Enum.FormFactor.Custom
  684. p30.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  685. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  686. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  687. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  688. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  689. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  690. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  691. b30 = Instance.new("SpecialMesh", p30)
  692. b30.MeshType = Enum.MeshType.Wedge
  693. b30.Name = "Mesh"
  694. b30.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  695. p31 = Instance.new("Part", m)
  696. p31.BrickColor = BrickColor.new("Black")
  697. p31.Material = Enum.Material.Metal
  698. 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)
  699. p31.FormFactor = Enum.FormFactor.Custom
  700. p31.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  701. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  702. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  703. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  704. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  705. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  706. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  707. b31 = Instance.new("SpecialMesh", p31)
  708. b31.MeshType = Enum.MeshType.Brick
  709. b31.Name = "Mesh"
  710. b31.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  711. p32 = Instance.new("Part", m)
  712. p32.BrickColor = BrickColor.new("Black")
  713. p32.Material = Enum.Material.Metal
  714. 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)
  715. p32.FormFactor = Enum.FormFactor.Custom
  716. p32.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  717. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  718. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  719. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  720. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  721. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  722. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  723. b32 = Instance.new("SpecialMesh", p32)
  724. b32.MeshType = Enum.MeshType.Wedge
  725. b32.Name = "Mesh"
  726. b32.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  727. p33 = Instance.new("Part", m)
  728. p33.BrickColor = BrickColor.new("Black")
  729. p33.Material = Enum.Material.Metal
  730. 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)
  731. p33.FormFactor = Enum.FormFactor.Custom
  732. p33.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  733. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  734. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  735. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  736. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  737. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  738. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  739. b33 = Instance.new("SpecialMesh", p33)
  740. b33.MeshType = Enum.MeshType.Brick
  741. b33.Name = "Mesh"
  742. b33.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  743. p34 = Instance.new("Part", m)
  744. p34.BrickColor = BrickColor.new("Black")
  745. p34.Material = Enum.Material.Metal
  746. 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)
  747. p34.FormFactor = Enum.FormFactor.Custom
  748. p34.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  749. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  750. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  751. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  752. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  753. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  754. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  755. b34 = Instance.new("SpecialMesh", p34)
  756. b34.MeshType = Enum.MeshType.Brick
  757. b34.Name = "Mesh"
  758. b34.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  759. w1 = Instance.new("Weld", p1)
  760. w1.Name = "Part_Weld"
  761. w1.Part0 = p1
  762. w1.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  763. w1.Part1 = p2
  764. w1.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  765. w2 = Instance.new("Weld", p2)
  766. w2.Name = "Part_Weld"
  767. w2.Part0 = p2
  768. w2.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  769. w2.Part1 = p3
  770. w2.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  771. w3 = Instance.new("Weld", p3)
  772. w3.Name = "LeftArmPlate_Weld"
  773. w3.Part0 = p3
  774. w3.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  775. w3.Part1 = p4
  776. w3.C1 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  777. w4 = Instance.new("Weld", p4)
  778. w4.Name = "Part_Weld"
  779. w4.Part0 = p4
  780. w4.C0 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  781. w4.Part1 = p5
  782. w4.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  783. w5 = Instance.new("Weld", p5)
  784. w5.Name = "Part_Weld"
  785. w5.Part0 = p5
  786. w5.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  787. w5.Part1 = p6
  788. w5.C1 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  789. w6 = Instance.new("Weld", p6)
  790. w6.Name = "Part_Weld"
  791. w6.Part0 = p6
  792. w6.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  793. w6.Part1 = p7
  794. w6.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  795. w7 = Instance.new("Weld", p7)
  796. w7.Name = "Part_Weld"
  797. w7.Part0 = p7
  798. w7.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  799. w7.Part1 = p8
  800. w7.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  801. w8 = Instance.new("Weld", p8)
  802. w8.Name = "Part_Weld"
  803. w8.Part0 = p8
  804. w8.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  805. w8.Part1 = p9
  806. w8.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  807. w9 = Instance.new("Weld", p9)
  808. w9.Name = "Part_Weld"
  809. w9.Part0 = p9
  810. w9.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  811. w9.Part1 = p10
  812. w9.C1 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  813. w10 = Instance.new("Weld", p10)
  814. w10.Name = "Part_Weld"
  815. w10.Part0 = p10
  816. w10.C0 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  817. w10.Part1 = p11
  818. w10.C1 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  819. w11 = Instance.new("Weld", p11)
  820. w11.Name = "Part_Weld"
  821. w11.Part0 = p11
  822. w11.C0 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  823. w11.Part1 = p12
  824. w11.C1 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  825. w12 = Instance.new("Weld", p12)
  826. w12.Name = "Part_Weld"
  827. w12.Part0 = p12
  828. w12.C0 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  829. w12.Part1 = p13
  830. w12.C1 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  831. w13 = Instance.new("Weld", p13)
  832. w13.Name = "Part_Weld"
  833. w13.Part0 = p13
  834. w13.C0 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  835. w13.Part1 = p14
  836. w13.C1 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  837. w14 = Instance.new("Weld", p14)
  838. w14.Name = "Part_Weld"
  839. w14.Part0 = p14
  840. w14.C0 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  841. w14.Part1 = p15
  842. w14.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  843. w15 = Instance.new("Weld", p15)
  844. w15.Name = "Part_Weld"
  845. w15.Part0 = p15
  846. w15.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  847. w15.Part1 = p16
  848. 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)
  849. w16 = Instance.new("Weld", p16)
  850. w16.Name = "Part_Weld"
  851. w16.Part0 = p16
  852. 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)
  853. w16.Part1 = p17
  854. 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)
  855. w17 = Instance.new("Weld", p17)
  856. w17.Name = "Part_Weld"
  857. w17.Part0 = p17
  858. 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)
  859. w17.Part1 = p18
  860. 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)
  861. w18 = Instance.new("Weld", p18)
  862. w18.Name = "Part_Weld"
  863. w18.Part0 = p18
  864. 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)
  865. w18.Part1 = p19
  866. 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)
  867. w19 = Instance.new("Weld", p19)
  868. w19.Name = "Part_Weld"
  869. w19.Part0 = p19
  870. 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)
  871. w19.Part1 = p20
  872. 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)
  873. w20 = Instance.new("Weld", p20)
  874. w20.Name = "Part_Weld"
  875. w20.Part0 = p20
  876. 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)
  877. w20.Part1 = p21
  878. 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)
  879. w21 = Instance.new("Weld", p21)
  880. w21.Name = "Part_Weld"
  881. w21.Part0 = p21
  882. 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)
  883. w21.Part1 = p22
  884. 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)
  885. w22 = Instance.new("Weld", p22)
  886. w22.Name = "Part_Weld"
  887. w22.Part0 = p22
  888. 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)
  889. w22.Part1 = p23
  890. 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)
  891. w23 = Instance.new("Weld", p23)
  892. w23.Name = "Part_Weld"
  893. w23.Part0 = p23
  894. 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)
  895. w23.Part1 = p24
  896. 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)
  897. w24 = Instance.new("Weld", p24)
  898. w24.Name = "Part_Weld"
  899. w24.Part0 = p24
  900. 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)
  901. w24.Part1 = p25
  902. 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)
  903. w25 = Instance.new("Weld", p25)
  904. w25.Name = "Part_Weld"
  905. w25.Part0 = p25
  906. 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)
  907. w25.Part1 = p26
  908. 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)
  909. w26 = Instance.new("Weld", p26)
  910. w26.Name = "Part_Weld"
  911. w26.Part0 = p26
  912. 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)
  913. w26.Part1 = p27
  914. 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)
  915. w27 = Instance.new("Weld", p27)
  916. w27.Name = "Part_Weld"
  917. w27.Part0 = p27
  918. 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)
  919. w27.Part1 = p28
  920. 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)
  921. w28 = Instance.new("Weld", p28)
  922. w28.Name = "Part_Weld"
  923. w28.Part0 = p28
  924. 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)
  925. w28.Part1 = p29
  926. 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)
  927. w29 = Instance.new("Weld", p29)
  928. w29.Name = "Part_Weld"
  929. w29.Part0 = p29
  930. 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)
  931. w29.Part1 = p30
  932. 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)
  933. w30 = Instance.new("Weld", p30)
  934. w30.Name = "Part_Weld"
  935. w30.Part0 = p30
  936. 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)
  937. w30.Part1 = p31
  938. 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)
  939. w31 = Instance.new("Weld", p31)
  940. w31.Name = "Part_Weld"
  941. w31.Part0 = p31
  942. 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)
  943. w31.Part1 = p32
  944. 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)
  945. w32 = Instance.new("Weld", p32)
  946. w32.Name = "Part_Weld"
  947. w32.Part0 = p32
  948. 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)
  949. w32.Part1 = p33
  950. 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)
  951. w33 = Instance.new("Weld", p33)
  952. w33.Name = "Part_Weld"
  953. w33.Part0 = p33
  954. 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)
  955. w33.Part1 = p34
  956. 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)
  957. m.Parent = larm
  958. m:MakeJoints()
  959. ----------------------------------------------------
  960. local cor = Instance.new("Part", larm.LeftArm)
  961. cor.Name = "Thingy"
  962. cor.Locked = true
  963. cor.BottomSurface = 0
  964. cor.CanCollide = false
  965. cor.Size = Vector3.new(1, 1, 1)
  966. cor.Transparency = 1
  967. cor.TopSurface = 0
  968. corw = Instance.new("Weld", cor)
  969. corw.Part0 = larm
  970. corw.Part1 = cor
  971. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  972. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  973. weld1 = Instance.new("Weld", larm.LeftArm)
  974. weld1.Part0 = cor
  975. weld1.Part1 = larm.LeftArm.LeftArmPlate
  976. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  977. --Right Arm
  978. m2 = Instance.new("Model")
  979. m2.Name = "RightArm"
  980. p1 = Instance.new("Part", m2)
  981. p1.BrickColor = BrickColor.new("Lime green")
  982. p1.Material = Enum.Material.Granite
  983. p1.CFrame = CFrame.new(3.5, -9.44201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  984. p1.FormFactor = Enum.FormFactor.Custom
  985. p1.Size = Vector3.new(1, 0.200000048, 1)
  986. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  987. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  988. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  989. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  990. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  991. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  992. b1 = Instance.new("SpecialMesh", p1)
  993. b1.MeshType = Enum.MeshType.Brick
  994. b1.Name = "Mesh"
  995. b1.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  996. p2 = Instance.new("Part", m2)
  997. p2.BrickColor = BrickColor.new("Lime green")
  998. p2.Material = Enum.Material.Granite
  999. p2.CFrame = CFrame.new(3.5, -9.74201393, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1000. p2.FormFactor = Enum.FormFactor.Custom
  1001. p2.Size = Vector3.new(1, 0.200000048, 1)
  1002. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1003. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1005. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1006. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1007. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1008. b2 = Instance.new("SpecialMesh", p2)
  1009. b2.MeshType = Enum.MeshType.Brick
  1010. b2.Name = "Mesh"
  1011. b2.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1012. p3 = Instance.new("Part", m2)
  1013. p3.BrickColor = BrickColor.new("Lime green")
  1014. p3.Material = Enum.Material.Granite
  1015. p3.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1016. p3.FormFactor = Enum.FormFactor.Custom
  1017. p3.Size = Vector3.new(1, 0.200000048, 1)
  1018. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1022. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1023. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1024. b3 = Instance.new("SpecialMesh", p3)
  1025. b3.MeshType = Enum.MeshType.Brick
  1026. b3.Name = "Mesh"
  1027. b3.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1028. p4 = Instance.new("Part", m2)
  1029. p4.BrickColor = BrickColor.new("Lime green")
  1030. p4.Material = Enum.Material.Granite
  1031. p4.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1032. p4.FormFactor = Enum.FormFactor.Custom
  1033. p4.Size = Vector3.new(1, 0.200000048, 1)
  1034. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1035. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. b4 = Instance.new("SpecialMesh", p4)
  1041. b4.MeshType = Enum.MeshType.Brick
  1042. b4.Name = "Mesh"
  1043. b4.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1044. p5 = Instance.new("Part", m2)
  1045. p5.BrickColor = BrickColor.new("Lime green")
  1046. p5.Material = Enum.Material.Granite
  1047. p5.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1048. p5.FormFactor = Enum.FormFactor.Custom
  1049. p5.Size = Vector3.new(1, 0.200000048, 1)
  1050. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1051. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1052. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1053. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. b5 = Instance.new("SpecialMesh", p5)
  1057. b5.MeshType = Enum.MeshType.Brick
  1058. b5.Name = "Mesh"
  1059. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1060. p6 = Instance.new("Part", m2)
  1061. p6.BrickColor = BrickColor.new("Lime green")
  1062. p6.Material = Enum.Material.Granite
  1063. p6.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1064. p6.FormFactor = Enum.FormFactor.Custom
  1065. p6.Size = Vector3.new(1, 1, 1)
  1066. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1067. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1068. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1069. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1070. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1071. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. b6 = Instance.new("SpecialMesh", p6)
  1073. b6.MeshType = Enum.MeshType.Sphere
  1074. b6.Name = "Mesh"
  1075. p7 = Instance.new("Part", m2)
  1076. p7.BrickColor = BrickColor.new("Black")
  1077. p7.Material = Enum.Material.SmoothPlastic
  1078. p7.Name = "RightArmPlate"
  1079. p7.CFrame = CFrame.new(3.5, -9.54201603, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1080. p7.FormFactor = Enum.FormFactor.Symmetric
  1081. p7.Size = Vector3.new(1, 2, 1)
  1082. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1083. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1084. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1085. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1086. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1087. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1088. b7 = Instance.new("SpecialMesh", p7)
  1089. b7.MeshType = Enum.MeshType.Brick
  1090. b7.Name = "Mesh"
  1091. b7.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1092. p8 = Instance.new("Part", m2)
  1093. p8.BrickColor = BrickColor.new("Lime green")
  1094. p8.Material = Enum.Material.Granite
  1095. p8.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1096. p8.FormFactor = Enum.FormFactor.Custom
  1097. p8.Size = Vector3.new(1, 0.200000048, 1)
  1098. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1099. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1100. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1101. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1102. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1103. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1104. b8 = Instance.new("SpecialMesh", p8)
  1105. b8.MeshType = Enum.MeshType.Brick
  1106. b8.Name = "Mesh"
  1107. b8.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1108. p9 = Instance.new("Part", m2)
  1109. p9.BrickColor = BrickColor.new("Black")
  1110. p9.Material = Enum.Material.SmoothPlastic
  1111. p9.CFrame = CFrame.new(3.5, -8.69201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1112. p9.FormFactor = Enum.FormFactor.Custom
  1113. p9.Size = Vector3.new(1, 0.349999994, 1)
  1114. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1115. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1117. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1118. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1119. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1120. b9 = Instance.new("SpecialMesh", p9)
  1121. b9.MeshType = Enum.MeshType.Brick
  1122. b9.Name = "Mesh"
  1123. b9.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  1124. p10 = Instance.new("Part", m2)
  1125. p10.BrickColor = BrickColor.new("Black")
  1126. p10.Material = Enum.Material.Metal
  1127. p10.CFrame = CFrame.new(3.5, -8.99201584, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1128. p10.FormFactor = Enum.FormFactor.Custom
  1129. p10.Size = Vector3.new(1, 0.25, 1)
  1130. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1131. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1133. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1134. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1135. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1136. b10 = Instance.new("SpecialMesh", p10)
  1137. b10.MeshType = Enum.MeshType.Brick
  1138. b10.Name = "Mesh"
  1139. b10.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1140. p11 = Instance.new("Part", m2)
  1141. p11.BrickColor = BrickColor.new("Black")
  1142. p11.Material = Enum.Material.Metal
  1143. p11.CFrame = CFrame.new(3.5, -9.29201508, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1144. p11.FormFactor = Enum.FormFactor.Custom
  1145. p11.Size = Vector3.new(1, 0.25, 1)
  1146. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1149. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1150. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1151. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1152. b11 = Instance.new("SpecialMesh", p11)
  1153. b11.MeshType = Enum.MeshType.Brick
  1154. b11.Name = "Mesh"
  1155. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1156. p12 = Instance.new("Part", m2)
  1157. p12.BrickColor = BrickColor.new("Black")
  1158. p12.Material = Enum.Material.Metal
  1159. p12.CFrame = CFrame.new(3.5, -9.59201431, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1160. p12.FormFactor = Enum.FormFactor.Custom
  1161. p12.Size = Vector3.new(1, 0.25, 1)
  1162. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1163. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1165. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1166. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1167. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1168. b12 = Instance.new("SpecialMesh", p12)
  1169. b12.MeshType = Enum.MeshType.Brick
  1170. b12.Name = "Mesh"
  1171. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1172. p13 = Instance.new("Part", m2)
  1173. p13.BrickColor = BrickColor.new("Lime green")
  1174. p13.Material = Enum.Material.Granite
  1175. p13.CFrame = CFrame.new(3.5, -9.44201088, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1176. p13.FormFactor = Enum.FormFactor.Custom
  1177. p13.Size = Vector3.new(1, 0.200000048, 1)
  1178. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1179. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1180. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1181. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1182. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1183. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1184. b13 = Instance.new("SpecialMesh", p13)
  1185. b13.MeshType = Enum.MeshType.Brick
  1186. b13.Name = "Mesh"
  1187. b13.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1188. p14 = Instance.new("Part", m2)
  1189. p14.BrickColor = BrickColor.new("Black")
  1190. p14.Material = Enum.Material.Metal
  1191. p14.CFrame = CFrame.new(3.5, -9.89201069, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1192. p14.FormFactor = Enum.FormFactor.Custom
  1193. p14.Size = Vector3.new(1, 0.25, 1)
  1194. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1195. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1196. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1197. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1198. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1199. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. b14 = Instance.new("SpecialMesh", p14)
  1201. b14.MeshType = Enum.MeshType.Brick
  1202. b14.Name = "Mesh"
  1203. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1204. p15 = Instance.new("Part", m2)
  1205. p15.BrickColor = BrickColor.new("Lime green")
  1206. p15.Material = Enum.Material.Granite
  1207. p15.CFrame = CFrame.new(3.5, -9.74201298, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1208. p15.FormFactor = Enum.FormFactor.Custom
  1209. p15.Size = Vector3.new(1, 0.200000048, 1)
  1210. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1212. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1213. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1214. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1215. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. b15 = Instance.new("SpecialMesh", p15)
  1217. b15.MeshType = Enum.MeshType.Brick
  1218. b15.Name = "Mesh"
  1219. b15.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1220. p16 = Instance.new("Part", m2)
  1221. p16.BrickColor = BrickColor.new("Black")
  1222. p16.Material = Enum.Material.SmoothPlastic
  1223. p16.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1224. p16.FormFactor = Enum.FormFactor.Custom
  1225. p16.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  1226. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1230. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1231. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1232. b16 = Instance.new("SpecialMesh", p16)
  1233. b16.MeshType = Enum.MeshType.Brick
  1234. b16.Name = "Mesh"
  1235. b16.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1236. p17 = Instance.new("Part", m2)
  1237. p17.BrickColor = BrickColor.new("Black")
  1238. p17.Material = Enum.Material.SmoothPlastic
  1239. p17.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1240. p17.FormFactor = Enum.FormFactor.Custom
  1241. p17.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  1242. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1243. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1245. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1246. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1247. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1248. b17 = Instance.new("SpecialMesh", p17)
  1249. b17.MeshType = Enum.MeshType.Brick
  1250. b17.Name = "Mesh"
  1251. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1252. p18 = Instance.new("Part", m2)
  1253. p18.BrickColor = BrickColor.new("Really black")
  1254. p18.Material = Enum.Material.SmoothPlastic
  1255. p18.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1256. p18.FormFactor = Enum.FormFactor.Custom
  1257. p18.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1258. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1262. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1263. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1264. b18 = Instance.new("SpecialMesh", p18)
  1265. b18.MeshType = Enum.MeshType.Brick
  1266. b18.Name = "Mesh"
  1267. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1268. p19 = Instance.new("Part", m2)
  1269. p19.BrickColor = BrickColor.new("Black")
  1270. p19.Material = Enum.Material.SmoothPlastic
  1271. p19.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1272. p19.FormFactor = Enum.FormFactor.Custom
  1273. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1274. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1279. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1280. b19 = Instance.new("SpecialMesh", p19)
  1281. b19.MeshType = Enum.MeshType.Brick
  1282. b19.Name = "Mesh"
  1283. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  1284. w1 = Instance.new("Weld", p1)
  1285. w1.Name = "Part_Weld"
  1286. w1.Part0 = p1
  1287. w1.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1288. w1.Part1 = p2
  1289. w1.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1290. w2 = Instance.new("Weld", p2)
  1291. w2.Name = "Part_Weld"
  1292. w2.Part0 = p2
  1293. w2.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1294. w2.Part1 = p3
  1295. w2.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1296. w3 = Instance.new("Weld", p3)
  1297. w3.Name = "Part_Weld"
  1298. w3.Part0 = p3
  1299. w3.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1300. w3.Part1 = p4
  1301. w3.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1302. w4 = Instance.new("Weld", p4)
  1303. w4.Name = "Part_Weld"
  1304. w4.Part0 = p4
  1305. w4.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1306. w4.Part1 = p5
  1307. w4.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1308. w5 = Instance.new("Weld", p5)
  1309. w5.Name = "Part_Weld"
  1310. w5.Part0 = p5
  1311. w5.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1312. w5.Part1 = p6
  1313. w5.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1314. w6 = Instance.new("Weld", p6)
  1315. w6.Name = "RightArmPlate_Weld"
  1316. w6.Part0 = p6
  1317. w6.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1318. w6.Part1 = p7
  1319. w6.C1 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1320. w7 = Instance.new("Weld", p7)
  1321. w7.Name = "Part_Weld"
  1322. w7.Part0 = p7
  1323. w7.C0 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1324. w7.Part1 = p8
  1325. w7.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1326. w8 = Instance.new("Weld", p8)
  1327. w8.Name = "Part_Weld"
  1328. w8.Part0 = p8
  1329. w8.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1330. w8.Part1 = p9
  1331. w8.C1 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1332. w9 = Instance.new("Weld", p9)
  1333. w9.Name = "Part_Weld"
  1334. w9.Part0 = p9
  1335. w9.C0 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1336. w9.Part1 = p10
  1337. w9.C1 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1338. w10 = Instance.new("Weld", p10)
  1339. w10.Name = "Part_Weld"
  1340. w10.Part0 = p10
  1341. w10.C0 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1342. w10.Part1 = p11
  1343. w10.C1 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1344. w11 = Instance.new("Weld", p11)
  1345. w11.Name = "Part_Weld"
  1346. w11.Part0 = p11
  1347. w11.C0 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1348. w11.Part1 = p12
  1349. w11.C1 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1350. w12 = Instance.new("Weld", p12)
  1351. w12.Name = "Part_Weld"
  1352. w12.Part0 = p12
  1353. w12.C0 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1354. w12.Part1 = p13
  1355. w12.C1 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1356. w13 = Instance.new("Weld", p13)
  1357. w13.Name = "Part_Weld"
  1358. w13.Part0 = p13
  1359. w13.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1360. w13.Part1 = p14
  1361. w13.C1 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1362. w14 = Instance.new("Weld", p14)
  1363. w14.Name = "Part_Weld"
  1364. w14.Part0 = p14
  1365. w14.C0 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1366. w14.Part1 = p15
  1367. w14.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1368. w15 = Instance.new("Weld", p15)
  1369. w15.Name = "Part_Weld"
  1370. w15.Part0 = p15
  1371. w15.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1372. w15.Part1 = p16
  1373. w15.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1374. w16 = Instance.new("Weld", p16)
  1375. w16.Name = "Part_Weld"
  1376. w16.Part0 = p16
  1377. w16.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1378. w16.Part1 = p17
  1379. w16.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1380. w17 = Instance.new("Weld", p17)
  1381. w17.Name = "Part_Weld"
  1382. w17.Part0 = p17
  1383. w17.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1384. w17.Part1 = p18
  1385. w17.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1386. w18 = Instance.new("Weld", p18)
  1387. w18.Name = "Part_Weld"
  1388. w18.Part0 = p18
  1389. w18.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1390. w18.Part1 = p19
  1391. w18.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1392. m2.Parent = rarm
  1393. m2:MakeJoints()
  1394. ----------------------------------------------------
  1395. local cor2 = Instance.new("Part", rarm.RightArm)
  1396. cor2.Name = "Thingy"
  1397. cor2.Locked = true
  1398. cor2.BottomSurface = 0
  1399. cor2.CanCollide = false
  1400. cor2.Size = Vector3.new(1, 1, 1)
  1401. cor2.Transparency = 1
  1402. cor2.TopSurface = 0
  1403. corw2 = Instance.new("Weld", cor2)
  1404. corw2.Part0 = rarm
  1405. corw2.Part1 = cor2
  1406. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1407. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1408. weld2 = Instance.new("Weld", rarm.RightArm)
  1409. weld2.Part0 = cor2
  1410. weld2.Part1 = rarm.RightArm.RightArmPlate
  1411. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1412. --Torso
  1413. m3 = Instance.new("Model")
  1414. m3.Name = "Torso"
  1415. p1 = Instance.new("Part", m3)
  1416. p1.BrickColor = BrickColor.new("Really black")
  1417. p1.Material = Enum.Material.Metal
  1418. p1.Name = "TorsoPlate"
  1419. p1.CFrame = CFrame.new(0, 3.10002589, 0.50000006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1420. p1.CanCollide = false
  1421. p1.Locked = true
  1422. p1.FormFactor = Enum.FormFactor.Custom
  1423. p1.Size = Vector3.new(2, 2, 1)
  1424. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1425. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1426. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1429. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1430. b1 = Instance.new("SpecialMesh", p1)
  1431. b1.MeshType = Enum.MeshType.Brick
  1432. b1.Name = "Mesh"
  1433. b1.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1434. p2 = Instance.new("Part", m3)
  1435. p2.BrickColor = BrickColor.new("Really black")
  1436. p2.Material = Enum.Material.Metal
  1437. 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)
  1438. p2.CanCollide = false
  1439. p2.Locked = true
  1440. p2.FormFactor = Enum.FormFactor.Custom
  1441. p2.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1442. b2 = Instance.new("SpecialMesh", p2)
  1443. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1444. b2.TextureId = ""
  1445. b2.MeshType = Enum.MeshType.FileMesh
  1446. b2.Name = "Mesh"
  1447. b2.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1448. p3 = Instance.new("Part", m3)
  1449. p3.BrickColor = BrickColor.new("Black")
  1450. p3.Material = Enum.Material.Metal
  1451. p3.CFrame = CFrame.new(0, 3.10002589, 0.970001996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1452. p3.CanCollide = false
  1453. p3.Locked = true
  1454. p3.FormFactor = Enum.FormFactor.Custom
  1455. p3.Size = Vector3.new(2, 2, 0.200000018)
  1456. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1457. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1458. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1459. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1460. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. b3 = Instance.new("SpecialMesh", p3)
  1463. b3.MeshType = Enum.MeshType.Brick
  1464. b3.Name = "Mesh"
  1465. b3.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1466. p4 = Instance.new("Part", m3)
  1467. p4.BrickColor = BrickColor.new("Black")
  1468. p4.Material = Enum.Material.Metal
  1469. p4.CFrame = CFrame.new(0, 4.00002623, 0.529999971, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  1470. p4.CanCollide = false
  1471. p4.Locked = true
  1472. p4.FormFactor = Enum.FormFactor.Custom
  1473. p4.Size = Vector3.new(2, 1.04000008, 0.239999995)
  1474. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1475. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1476. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1477. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1478. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. b4 = Instance.new("SpecialMesh", p4)
  1481. b4.MeshType = Enum.MeshType.Brick
  1482. b4.Name = "Mesh"
  1483. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1484. p5 = Instance.new("Part", m3)
  1485. p5.BrickColor = BrickColor.new("Black")
  1486. p5.Material = Enum.Material.Metal
  1487. 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)
  1488. p5.CanCollide = false
  1489. p5.Locked = true
  1490. p5.FormFactor = Enum.FormFactor.Custom
  1491. p5.Size = Vector3.new(0.300000012, 1, 1.89999998)
  1492. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1493. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. b5 = Instance.new("SpecialMesh", p5)
  1499. b5.MeshType = Enum.MeshType.Wedge
  1500. b5.Name = "Mesh"
  1501. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1502. p6 = Instance.new("Part", m3)
  1503. p6.BrickColor = BrickColor.new("Black")
  1504. p6.Material = Enum.Material.Metal
  1505. 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)
  1506. p6.CanCollide = false
  1507. p6.Locked = true
  1508. p6.FormFactor = Enum.FormFactor.Custom
  1509. p6.Size = Vector3.new(0.300000012, 0.99999994, 1.89999998)
  1510. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1511. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1513. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. b6 = Instance.new("SpecialMesh", p6)
  1517. b6.MeshType = Enum.MeshType.Wedge
  1518. b6.Name = "Mesh"
  1519. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1520. p7 = Instance.new("Part", m3)
  1521. p7.BrickColor = BrickColor.new("Black")
  1522. p7.Material = Enum.Material.Metal
  1523. 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)
  1524. p7.CanCollide = false
  1525. p7.Locked = true
  1526. p7.FormFactor = Enum.FormFactor.Custom
  1527. p7.Size = Vector3.new(0.300000012, 1.20000005, 1.20000005)
  1528. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1529. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1532. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. b7 = Instance.new("SpecialMesh", p7)
  1535. b7.MeshType = Enum.MeshType.Wedge
  1536. b7.Name = "Mesh"
  1537. p8 = Instance.new("Part", m3)
  1538. p8.BrickColor = BrickColor.new("Black")
  1539. p8.Material = Enum.Material.Metal
  1540. p8.CFrame = CFrame.new(-1, 3.10002613, 0.520000935, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1541. p8.CanCollide = false
  1542. p8.Locked = true
  1543. p8.FormFactor = Enum.FormFactor.Custom
  1544. p8.Size = Vector3.new(1, 2, 0.200000018)
  1545. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1546. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1547. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. b8 = Instance.new("SpecialMesh", p8)
  1552. b8.MeshType = Enum.MeshType.Brick
  1553. b8.Name = "Mesh"
  1554. b8.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1555. p9 = Instance.new("Part", m3)
  1556. p9.BrickColor = BrickColor.new("Black")
  1557. p9.Material = Enum.Material.Metal
  1558. p9.CFrame = CFrame.new(1, 3.10002613, 0.520001054, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1559. p9.CanCollide = false
  1560. p9.Locked = true
  1561. p9.FormFactor = Enum.FormFactor.Custom
  1562. p9.Size = Vector3.new(1, 2, 0.200000018)
  1563. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1564. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1565. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1566. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1567. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1568. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1569. b9 = Instance.new("SpecialMesh", p9)
  1570. b9.MeshType = Enum.MeshType.Brick
  1571. b9.Name = "Mesh"
  1572. b9.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1573. p10 = Instance.new("Part", m3)
  1574. p10.BrickColor = BrickColor.new("Black")
  1575. p10.Material = Enum.Material.Metal
  1576. p10.CFrame = CFrame.new(0, 2.05002642, 0.539999843, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  1577. p10.CanCollide = false
  1578. p10.Locked = true
  1579. p10.FormFactor = Enum.FormFactor.Custom
  1580. p10.Size = Vector3.new(2, 1.0200001, 0.239999995)
  1581. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1582. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1583. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1584. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1585. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. b10 = Instance.new("SpecialMesh", p10)
  1588. b10.MeshType = Enum.MeshType.Brick
  1589. b10.Name = "Mesh"
  1590. b10.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1591. p11 = Instance.new("Part", m3)
  1592. p11.BrickColor = BrickColor.new("Really black")
  1593. p11.Material = Enum.Material.Metal
  1594. 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)
  1595. p11.CanCollide = false
  1596. p11.Locked = true
  1597. p11.FormFactor = Enum.FormFactor.Custom
  1598. p11.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1599. b11 = Instance.new("SpecialMesh", p11)
  1600. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1601. b11.TextureId = ""
  1602. b11.MeshType = Enum.MeshType.FileMesh
  1603. b11.Name = "Mesh"
  1604. b11.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1605. p12 = Instance.new("Part", m3)
  1606. p12.BrickColor = BrickColor.new("Really black")
  1607. p12.Material = Enum.Material.Metal
  1608. p12.Transparency = 1
  1609. p12.Name = "Chain2Torso"
  1610. 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)
  1611. p12.CanCollide = false
  1612. p12.Locked = true
  1613. p12.FormFactor = Enum.FormFactor.Custom
  1614. p12.Size = Vector3.new(0.699999988, 0.300000012, 0.300000012)
  1615. b12 = Instance.new("SpecialMesh", p12)
  1616. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1617. b12.TextureId = ""
  1618. b12.MeshType = Enum.MeshType.FileMesh
  1619. b12.Name = "Mesh"
  1620. b12.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1621. p13 = Instance.new("Part", m3)
  1622. p13.BrickColor = BrickColor.new("Really black")
  1623. p13.Material = Enum.Material.Metal
  1624. 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)
  1625. p13.CanCollide = false
  1626. p13.Locked = true
  1627. p13.FormFactor = Enum.FormFactor.Custom
  1628. p13.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1629. b13 = Instance.new("SpecialMesh", p13)
  1630. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1631. b13.TextureId = ""
  1632. b13.MeshType = Enum.MeshType.FileMesh
  1633. b13.Name = "Mesh"
  1634. b13.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1635. p14 = Instance.new("Part", m3)
  1636. p14.BrickColor = BrickColor.new("Really black")
  1637. p14.Material = Enum.Material.Metal
  1638. 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)
  1639. p14.CanCollide = false
  1640. p14.Locked = true
  1641. p14.FormFactor = Enum.FormFactor.Custom
  1642. p14.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1643. b14 = Instance.new("SpecialMesh", p14)
  1644. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1645. b14.TextureId = ""
  1646. b14.MeshType = Enum.MeshType.FileMesh
  1647. b14.Name = "Mesh"
  1648. b14.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1649. p15 = Instance.new("Part", m3)
  1650. p15.BrickColor = BrickColor.new("Really black")
  1651. p15.Material = Enum.Material.Metal
  1652. 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)
  1653. p15.CanCollide = false
  1654. p15.Locked = true
  1655. p15.FormFactor = Enum.FormFactor.Custom
  1656. p15.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1657. b15 = Instance.new("SpecialMesh", p15)
  1658. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1659. b15.TextureId = ""
  1660. b15.MeshType = Enum.MeshType.FileMesh
  1661. b15.Name = "Mesh"
  1662. b15.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1663. p16 = Instance.new("Part", m3)
  1664. p16.BrickColor = BrickColor.new("Really black")
  1665. p16.Material = Enum.Material.Metal
  1666. 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)
  1667. p16.CanCollide = false
  1668. p16.Locked = true
  1669. p16.FormFactor = Enum.FormFactor.Custom
  1670. p16.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1671. b16 = Instance.new("SpecialMesh", p16)
  1672. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1673. b16.TextureId = ""
  1674. b16.MeshType = Enum.MeshType.FileMesh
  1675. b16.Name = "Mesh"
  1676. b16.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1677. p17 = Instance.new("Part", m3)
  1678. p17.BrickColor = BrickColor.new("Really black")
  1679. p17.Material = Enum.Material.Metal
  1680. 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)
  1681. p17.CanCollide = false
  1682. p17.Locked = true
  1683. p17.FormFactor = Enum.FormFactor.Custom
  1684. p17.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1685. b17 = Instance.new("SpecialMesh", p17)
  1686. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1687. b17.TextureId = ""
  1688. b17.MeshType = Enum.MeshType.FileMesh
  1689. b17.Name = "Mesh"
  1690. b17.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1691. p18 = Instance.new("Part", m3)
  1692. p18.BrickColor = BrickColor.new("Really black")
  1693. p18.Material = Enum.Material.Metal
  1694. 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)
  1695. p18.CanCollide = false
  1696. p18.Locked = true
  1697. p18.FormFactor = Enum.FormFactor.Custom
  1698. p18.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1699. b18 = Instance.new("SpecialMesh", p18)
  1700. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1701. b18.TextureId = ""
  1702. b18.MeshType = Enum.MeshType.FileMesh
  1703. b18.Name = "Mesh"
  1704. b18.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1705. p19 = Instance.new("Part", m3)
  1706. p19.BrickColor = BrickColor.new("Really black")
  1707. p19.Material = Enum.Material.Metal
  1708. 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)
  1709. p19.CanCollide = false
  1710. p19.Locked = true
  1711. p19.FormFactor = Enum.FormFactor.Custom
  1712. p19.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1713. b19 = Instance.new("SpecialMesh", p19)
  1714. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1715. b19.TextureId = ""
  1716. b19.MeshType = Enum.MeshType.FileMesh
  1717. b19.Name = "Mesh"
  1718. b19.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1719. p20 = Instance.new("Part", m3)
  1720. p20.BrickColor = BrickColor.new("Really black")
  1721. p20.Material = Enum.Material.Metal
  1722. 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)
  1723. p20.CanCollide = false
  1724. p20.Locked = true
  1725. p20.FormFactor = Enum.FormFactor.Custom
  1726. p20.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1727. b20 = Instance.new("SpecialMesh", p20)
  1728. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1729. b20.TextureId = ""
  1730. b20.MeshType = Enum.MeshType.FileMesh
  1731. b20.Name = "Mesh"
  1732. b20.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1733. p21 = Instance.new("Part", m3)
  1734. p21.BrickColor = BrickColor.new("Really black")
  1735. p21.Material = Enum.Material.Metal
  1736. 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)
  1737. p21.CanCollide = false
  1738. p21.Locked = true
  1739. p21.FormFactor = Enum.FormFactor.Custom
  1740. p21.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1741. b21 = Instance.new("SpecialMesh", p21)
  1742. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1743. b21.TextureId = ""
  1744. b21.MeshType = Enum.MeshType.FileMesh
  1745. b21.Name = "Mesh"
  1746. b21.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1747. p22 = Instance.new("Part", m3)
  1748. p22.BrickColor = BrickColor.new("Really black")
  1749. p22.Material = Enum.Material.Metal
  1750. 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)
  1751. p22.CanCollide = false
  1752. p22.Locked = true
  1753. p22.FormFactor = Enum.FormFactor.Custom
  1754. p22.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1755. b22 = Instance.new("SpecialMesh", p22)
  1756. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1757. b22.TextureId = ""
  1758. b22.MeshType = Enum.MeshType.FileMesh
  1759. b22.Name = "Mesh"
  1760. b22.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1761. p23 = Instance.new("Part", m3)
  1762. p23.BrickColor = BrickColor.new("Really black")
  1763. p23.Material = Enum.Material.Metal
  1764. 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)
  1765. p23.CanCollide = false
  1766. p23.Locked = true
  1767. p23.FormFactor = Enum.FormFactor.Custom
  1768. p23.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1769. b23 = Instance.new("SpecialMesh", p23)
  1770. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1771. b23.TextureId = ""
  1772. b23.MeshType = Enum.MeshType.FileMesh
  1773. b23.Name = "Mesh"
  1774. b23.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1775. p24 = Instance.new("Part", m3)
  1776. p24.BrickColor = BrickColor.new("Really black")
  1777. p24.Material = Enum.Material.Metal
  1778. 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)
  1779. p24.CanCollide = false
  1780. p24.Locked = true
  1781. p24.FormFactor = Enum.FormFactor.Custom
  1782. p24.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1783. b24 = Instance.new("SpecialMesh", p24)
  1784. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1785. b24.TextureId = ""
  1786. b24.MeshType = Enum.MeshType.FileMesh
  1787. b24.Name = "Mesh"
  1788. b24.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1789. p25 = Instance.new("Part", m3)
  1790. p25.BrickColor = BrickColor.new("Really black")
  1791. p25.Material = Enum.Material.Metal
  1792. 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)
  1793. p25.CanCollide = false
  1794. p25.Locked = true
  1795. p25.FormFactor = Enum.FormFactor.Custom
  1796. p25.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1797. b25 = Instance.new("SpecialMesh", p25)
  1798. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1799. b25.TextureId = ""
  1800. b25.MeshType = Enum.MeshType.FileMesh
  1801. b25.Name = "Mesh"
  1802. b25.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1803. p26 = Instance.new("Part", m3)
  1804. p26.BrickColor = BrickColor.new("Really black")
  1805. p26.Material = Enum.Material.Metal
  1806. 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)
  1807. p26.CanCollide = false
  1808. p26.Locked = true
  1809. p26.FormFactor = Enum.FormFactor.Custom
  1810. p26.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1811. b26 = Instance.new("SpecialMesh", p26)
  1812. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1813. b26.TextureId = ""
  1814. b26.MeshType = Enum.MeshType.FileMesh
  1815. b26.Name = "Mesh"
  1816. b26.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1817. p27 = Instance.new("Part", m3)
  1818. p27.BrickColor = BrickColor.new("Really black")
  1819. p27.Material = Enum.Material.Metal
  1820. 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)
  1821. p27.CanCollide = false
  1822. p27.Locked = true
  1823. p27.FormFactor = Enum.FormFactor.Custom
  1824. p27.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1825. b27 = Instance.new("SpecialMesh", p27)
  1826. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1827. b27.TextureId = ""
  1828. b27.MeshType = Enum.MeshType.FileMesh
  1829. b27.Name = "Mesh"
  1830. b27.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1831. p28 = Instance.new("Part", m3)
  1832. p28.BrickColor = BrickColor.new("Really black")
  1833. p28.Material = Enum.Material.Metal
  1834. 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)
  1835. p28.CanCollide = false
  1836. p28.Locked = true
  1837. p28.FormFactor = Enum.FormFactor.Custom
  1838. p28.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1839. b28 = Instance.new("SpecialMesh", p28)
  1840. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1841. b28.TextureId = ""
  1842. b28.MeshType = Enum.MeshType.FileMesh
  1843. b28.Name = "Mesh"
  1844. b28.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1845. p29 = Instance.new("Part", m3)
  1846. p29.BrickColor = BrickColor.new("Really black")
  1847. p29.Material = Enum.Material.Metal
  1848. 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)
  1849. p29.CanCollide = false
  1850. p29.Locked = true
  1851. p29.FormFactor = Enum.FormFactor.Custom
  1852. p29.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1853. b29 = Instance.new("SpecialMesh", p29)
  1854. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1855. b29.TextureId = ""
  1856. b29.MeshType = Enum.MeshType.FileMesh
  1857. b29.Name = "Mesh"
  1858. b29.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1859. p30 = Instance.new("Part", m3)
  1860. p30.BrickColor = BrickColor.new("Really black")
  1861. p30.Material = Enum.Material.Metal
  1862. 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)
  1863. p30.CanCollide = false
  1864. p30.Locked = true
  1865. p30.FormFactor = Enum.FormFactor.Custom
  1866. p30.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1867. b30 = Instance.new("SpecialMesh", p30)
  1868. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1869. b30.TextureId = ""
  1870. b30.MeshType = Enum.MeshType.FileMesh
  1871. b30.Name = "Mesh"
  1872. b30.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1873. p31 = Instance.new("Part", m3)
  1874. p31.BrickColor = BrickColor.new("Really black")
  1875. p31.Material = Enum.Material.Metal
  1876. 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)
  1877. p31.CanCollide = false
  1878. p31.Locked = true
  1879. p31.FormFactor = Enum.FormFactor.Custom
  1880. p31.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1881. b31 = Instance.new("SpecialMesh", p31)
  1882. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1883. b31.TextureId = ""
  1884. b31.MeshType = Enum.MeshType.FileMesh
  1885. b31.Name = "Mesh"
  1886. b31.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1887. p32 = Instance.new("Part", m3)
  1888. p32.BrickColor = BrickColor.new("Really black")
  1889. p32.Material = Enum.Material.Metal
  1890. 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)
  1891. p32.CanCollide = false
  1892. p32.Locked = true
  1893. p32.FormFactor = Enum.FormFactor.Custom
  1894. p32.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1895. b32 = Instance.new("SpecialMesh", p32)
  1896. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1897. b32.TextureId = ""
  1898. b32.MeshType = Enum.MeshType.FileMesh
  1899. b32.Name = "Mesh"
  1900. b32.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1901. p33 = Instance.new("Part", m3)
  1902. p33.BrickColor = BrickColor.new("Really black")
  1903. p33.Material = Enum.Material.Metal
  1904. 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)
  1905. p33.CanCollide = false
  1906. p33.Locked = true
  1907. p33.FormFactor = Enum.FormFactor.Custom
  1908. p33.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1909. b33 = Instance.new("SpecialMesh", p33)
  1910. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1911. b33.TextureId = ""
  1912. b33.MeshType = Enum.MeshType.FileMesh
  1913. b33.Name = "Mesh"
  1914. b33.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1915. p34 = Instance.new("Part", m3)
  1916. p34.BrickColor = BrickColor.new("Really black")
  1917. p34.Material = Enum.Material.Metal
  1918. p34.Name = "Connection"
  1919. 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)
  1920. p34.CanCollide = false
  1921. p34.Locked = true
  1922. p34.FormFactor = Enum.FormFactor.Custom
  1923. p34.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1924. b34 = Instance.new("SpecialMesh", p34)
  1925. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1926. b34.TextureId = ""
  1927. b34.MeshType = Enum.MeshType.FileMesh
  1928. b34.Name = "Mesh"
  1929. b34.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1930. p35 = Instance.new("Part", m3)
  1931. p35.BrickColor = BrickColor.new("Really black")
  1932. p35.Material = Enum.Material.Metal
  1933. 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)
  1934. p35.CanCollide = false
  1935. p35.Locked = true
  1936. p35.FormFactor = Enum.FormFactor.Custom
  1937. p35.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1938. b35 = Instance.new("SpecialMesh", p35)
  1939. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1940. b35.TextureId = ""
  1941. b35.MeshType = Enum.MeshType.FileMesh
  1942. b35.Name = "Mesh"
  1943. b35.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1944. p36 = Instance.new("Part", m3)
  1945. p36.BrickColor = BrickColor.new("Really black")
  1946. p36.Material = Enum.Material.Metal
  1947. 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)
  1948. p36.CanCollide = false
  1949. p36.Locked = true
  1950. p36.FormFactor = Enum.FormFactor.Custom
  1951. p36.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1952. b36 = Instance.new("SpecialMesh", p36)
  1953. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1954. b36.TextureId = ""
  1955. b36.MeshType = Enum.MeshType.FileMesh
  1956. b36.Name = "Mesh"
  1957. b36.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1958. w1 = Instance.new("Weld", p2)
  1959. w1.Name = "Joint"
  1960. w1.Part0 = p2
  1961. 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)
  1962. w1.Part1 = p18
  1963. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1964. w2 = Instance.new("Weld", p3)
  1965. w2.Name = "Joint"
  1966. w2.Part0 = p3
  1967. w2.C0 = CFrame.new(0, 0, -0.470001936, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1968. w2.Part1 = p1
  1969. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1970. w3 = Instance.new("Weld", p4)
  1971. w3.Name = "Joint"
  1972. w3.Part0 = p4
  1973. w3.C0 = CFrame.new(0, 0.0299999714, -0.900000334, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  1974. w3.Part1 = p1
  1975. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1976. w4 = Instance.new("Weld", p5)
  1977. w4.Name = "Joint"
  1978. w4.Part0 = p5
  1979. 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)
  1980. w4.Part1 = p7
  1981. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1982. w5 = Instance.new("Weld", p6)
  1983. w5.Name = "Joint"
  1984. w5.Part0 = p6
  1985. 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)
  1986. w5.Part1 = p7
  1987. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1988. w6 = Instance.new("Weld", p7)
  1989. w6.Name = "Joint"
  1990. w6.Part0 = p7
  1991. 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)
  1992. w6.Part1 = p1
  1993. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1994. w7 = Instance.new("Weld", p8)
  1995. w7.Name = "Joint"
  1996. w7.Part0 = p8
  1997. w7.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, -1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  1998. w7.Part1 = p1
  1999. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2000. w8 = Instance.new("Weld", p9)
  2001. w8.Name = "Joint"
  2002. w8.Part0 = p9
  2003. w8.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, 1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2004. w8.Part1 = p1
  2005. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2006. w9 = Instance.new("Weld", p10)
  2007. w9.Name = "Joint"
  2008. w9.Part0 = p10
  2009. w9.C0 = CFrame.new(0, 0.0399997234, 1.04999948, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  2010. w9.Part1 = p1
  2011. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2012. w10 = Instance.new("Weld", p11)
  2013. w10.Name = "Joint"
  2014. w10.Part0 = p11
  2015. 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)
  2016. w10.Part1 = p19
  2017. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2018. w11 = Instance.new("Weld", p12)
  2019. w11.Name = "Joint"
  2020. w11.Part0 = p12
  2021. 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)
  2022. w11.Part1 = p1
  2023. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2024. w12 = Instance.new("Weld", p13)
  2025. w12.Name = "Joint"
  2026. w12.Part0 = p13
  2027. 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)
  2028. w12.Part1 = p35
  2029. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2030. w13 = Instance.new("Weld", p14)
  2031. w13.Name = "Joint"
  2032. w13.Part0 = p14
  2033. 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)
  2034. w13.Part1 = p34
  2035. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2036. w14 = Instance.new("Weld", p15)
  2037. w14.Name = "Joint"
  2038. w14.Part0 = p15
  2039. 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)
  2040. w14.Part1 = p16
  2041. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2042. w15 = Instance.new("Weld", p16)
  2043. w15.Name = "Joint"
  2044. w15.Part0 = p16
  2045. 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)
  2046. w15.Part1 = p20
  2047. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2048. w16 = Instance.new("Weld", p17)
  2049. w16.Name = "Joint"
  2050. w16.Part0 = p17
  2051. 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)
  2052. w16.Part1 = p14
  2053. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2054. w17 = Instance.new("Weld", p18)
  2055. w17.Name = "Joint"
  2056. w17.Part0 = p18
  2057. 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)
  2058. w17.Part1 = p17
  2059. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2060. w18 = Instance.new("Weld", p19)
  2061. w18.Name = "Joint"
  2062. w18.Part0 = p19
  2063. 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)
  2064. w18.Part1 = p21
  2065. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2066. w19 = Instance.new("Weld", p20)
  2067. w19.Name = "Joint"
  2068. w19.Part0 = p20
  2069. 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)
  2070. w19.Part1 = p11
  2071. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2072. w20 = Instance.new("Weld", p21)
  2073. w20.Name = "Joint"
  2074. w20.Part0 = p21
  2075. 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)
  2076. w20.Part1 = p22
  2077. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2078. w21 = Instance.new("Weld", p22)
  2079. w21.Name = "Joint"
  2080. w21.Part0 = p22
  2081. 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)
  2082. w21.Part1 = p23
  2083. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2084. w22 = Instance.new("Weld", p23)
  2085. w22.Name = "Joint"
  2086. w22.Part0 = p23
  2087. 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)
  2088. w22.Part1 = p24
  2089. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2090. w23 = Instance.new("Weld", p24)
  2091. w23.Name = "Joint"
  2092. w23.Part0 = p24
  2093. 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)
  2094. w23.Part1 = p25
  2095. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2096. w24 = Instance.new("Weld", p25)
  2097. w24.Name = "Joint"
  2098. w24.Part0 = p25
  2099. 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)
  2100. w24.Part1 = p26
  2101. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2102. w25 = Instance.new("Weld", p26)
  2103. w25.Name = "Joint"
  2104. w25.Part0 = p26
  2105. 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)
  2106. w25.Part1 = p27
  2107. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2108. w26 = Instance.new("Weld", p27)
  2109. w26.Name = "Joint"
  2110. w26.Part0 = p27
  2111. 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)
  2112. w26.Part1 = p28
  2113. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2114. w27 = Instance.new("Weld", p28)
  2115. w27.Name = "Joint"
  2116. w27.Part0 = p28
  2117. 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)
  2118. w27.Part1 = p29
  2119. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2120. w28 = Instance.new("Weld", p29)
  2121. w28.Name = "Joint"
  2122. w28.Part0 = p29
  2123. 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)
  2124. w28.Part1 = p30
  2125. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2126. w29 = Instance.new("Weld", p30)
  2127. w29.Name = "Joint"
  2128. w29.Part0 = p30
  2129. 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)
  2130. w29.Part1 = p31
  2131. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2132. w30 = Instance.new("Weld", p31)
  2133. w30.Name = "Joint"
  2134. w30.Part0 = p31
  2135. 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)
  2136. w30.Part1 = p32
  2137. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2138. w31 = Instance.new("Weld", p32)
  2139. w31.Name = "Joint"
  2140. w31.Part0 = p32
  2141. 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)
  2142. w31.Part1 = p33
  2143. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2144. w32 = Instance.new("Weld", p33)
  2145. w32.Name = "Joint"
  2146. w32.Part0 = p33
  2147. 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)
  2148. w32.Part1 = p13
  2149. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2150. w33 = Instance.new("Weld", p34)
  2151. w33.Name = "Joint"
  2152. w33.Part0 = p34
  2153. 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)
  2154. w33.Part1 = p12
  2155. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2156. w34 = Instance.new("Weld", p35)
  2157. w34.Name = "Joint"
  2158. w34.Part0 = p35
  2159. 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)
  2160. w34.Part1 = p36
  2161. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2162. w35 = Instance.new("Weld", p36)
  2163. w35.Name = "Joint"
  2164. w35.Part0 = p36
  2165. 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)
  2166. w35.Part1 = p2
  2167. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2168. m3.Parent = torso
  2169. m3:MakeJoints()
  2170. ----------------------------------------------------
  2171. local cor3 = Instance.new("Part", torso.Torso)
  2172. cor3.Name = "Thingy"
  2173. cor3.Locked = true
  2174. cor3.BottomSurface = 0
  2175. cor3.CanCollide = false
  2176. cor3.Size = Vector3.new(1, 1, 1)
  2177. cor3.Transparency = 1
  2178. cor3.TopSurface = 0
  2179. corw3 = Instance.new("Weld", cor3)
  2180. corw3.Part0 = torso
  2181. corw3.Part1 = cor3
  2182. corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2183. corw3.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2184. weld3 = Instance.new("Weld", torso.Torso)
  2185. weld3.Part0 = cor3
  2186. weld3.Part1 = torso.Torso.TorsoPlate
  2187. weld3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2188. --Left Leg
  2189. m4 = Instance.new("Model")
  2190. m4.Name = "LeftLeg"
  2191. p1 = Instance.new("Part", m4)
  2192. p1.BrickColor = BrickColor.new("Really black")
  2193. p1.Material = Enum.Material.Metal
  2194. p1.Name = "LeftLegPlate"
  2195. p1.CFrame = CFrame.new(-1.5, 4.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2196. p1.Anchored = false
  2197. p1.CanCollide = false
  2198. p1.FormFactor = Enum.FormFactor.Custom
  2199. p1.Size = Vector3.new(1, 2, 1)
  2200. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2201. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2202. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2203. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2204. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2205. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2206. b1 = Instance.new("SpecialMesh", p1)
  2207. b1.MeshType = Enum.MeshType.Brick
  2208. b1.Name = "Mesh"
  2209. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2210. p2 = Instance.new("Part", m4)
  2211. p2.BrickColor = BrickColor.new("Really black")
  2212. p2.Material = Enum.Material.Metal
  2213. p2.CFrame = CFrame.new(-2.0999999, 5.44442606, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2214. p2.Anchored = false
  2215. p2.CanCollide = false
  2216. p2.FormFactor = Enum.FormFactor.Custom
  2217. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2218. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2219. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2220. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2221. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2222. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2223. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2224. b2 = Instance.new("SpecialMesh", p2)
  2225. b2.MeshType = Enum.MeshType.Brick
  2226. b2.Name = "Mesh"
  2227. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2228. p3 = Instance.new("Part", m4)
  2229. p3.BrickColor = BrickColor.new("Really black")
  2230. p3.Material = Enum.Material.Metal
  2231. p3.CFrame = CFrame.new(-2.0999999, 5.04442501, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2232. p3.Anchored = false
  2233. p3.CanCollide = false
  2234. p3.FormFactor = Enum.FormFactor.Custom
  2235. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2236. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2237. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2238. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2239. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2240. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2241. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2242. b3 = Instance.new("SpecialMesh", p3)
  2243. b3.MeshType = Enum.MeshType.Brick
  2244. b3.Name = "Mesh"
  2245. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2246. p4 = Instance.new("Part", m4)
  2247. p4.BrickColor = BrickColor.new("Black")
  2248. p4.Material = Enum.Material.Metal
  2249. p4.CFrame = CFrame.new(-1.5, 4.74442291, -7.02999783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2250. p4.Anchored = false
  2251. p4.CanCollide = false
  2252. p4.FormFactor = Enum.FormFactor.Custom
  2253. p4.Size = Vector3.new(1, 2, 0.200000018)
  2254. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2255. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2256. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2257. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2258. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2259. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2260. b4 = Instance.new("SpecialMesh", p4)
  2261. b4.MeshType = Enum.MeshType.Brick
  2262. b4.Name = "Mesh"
  2263. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2264. p5 = Instance.new("Part", m4)
  2265. p5.BrickColor = BrickColor.new("Black")
  2266. p5.Material = Enum.Material.Metal
  2267. p5.CFrame = CFrame.new(-2, 4.74442291, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2268. p5.Anchored = false
  2269. p5.CanCollide = false
  2270. p5.FormFactor = Enum.FormFactor.Custom
  2271. p5.Size = Vector3.new(1, 2, 0.200000018)
  2272. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2273. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2274. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2275. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2276. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2277. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2278. b5 = Instance.new("SpecialMesh", p5)
  2279. b5.MeshType = Enum.MeshType.Brick
  2280. b5.Name = "Mesh"
  2281. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2282. p6 = Instance.new("Part", m4)
  2283. p6.BrickColor = BrickColor.new("Black")
  2284. p6.Material = Enum.Material.Metal
  2285. p6.CFrame = CFrame.new(-1.50999999, 3.74442887, -7.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2286. p6.Anchored = false
  2287. p6.CanCollide = false
  2288. p6.FormFactor = Enum.FormFactor.Custom
  2289. p6.Size = Vector3.new(1, 0.200000048, 0.980000019)
  2290. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2291. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2292. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2293. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2294. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2295. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2296. b6 = Instance.new("SpecialMesh", p6)
  2297. b6.MeshType = Enum.MeshType.Brick
  2298. b6.Name = "Mesh"
  2299. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2300. p7 = Instance.new("Part", m4)
  2301. p7.BrickColor = BrickColor.new("Black")
  2302. p7.Material = Enum.Material.Metal
  2303. p7.CFrame = CFrame.new(-1.5, 5.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2304. p7.Anchored = false
  2305. p7.CanCollide = false
  2306. p7.FormFactor = Enum.FormFactor.Custom
  2307. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2308. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2309. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2310. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2311. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2312. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2313. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2314. b7 = Instance.new("SpecialMesh", p7)
  2315. b7.MeshType = Enum.MeshType.Brick
  2316. b7.Name = "Mesh"
  2317. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2318. w1 = Instance.new("Weld", p2)
  2319. w1.Name = "Joint"
  2320. w1.Part0 = p2
  2321. w1.C0 = CFrame.new(0, -0.40000093, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2322. w1.Part1 = p3
  2323. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2324. w2 = Instance.new("Weld", p3)
  2325. w2.Name = "Joint"
  2326. w2.Part0 = p3
  2327. w2.C0 = CFrame.new(0.0999999046, -0.300002098, 0.0200009346, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2328. w2.Part1 = p5
  2329. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2330. w3 = Instance.new("Weld", p4)
  2331. w3.Name = "Joint"
  2332. w3.Part0 = p4
  2333. w3.C0 = CFrame.new(0, 0, -0.470002174, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2334. w3.Part1 = p1
  2335. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2336. w4 = Instance.new("Weld", p5)
  2337. w4.Name = "Joint"
  2338. w4.Part0 = p5
  2339. w4.C0 = CFrame.new(-0.0200009346, 0, -0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2340. w4.Part1 = p1
  2341. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2342. w5 = Instance.new("Weld", p6)
  2343. w5.Name = "Joint"
  2344. w5.Part0 = p6
  2345. w5.C0 = CFrame.new(0, 0.99999404, -0.00999999046, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2346. w5.Part1 = p1
  2347. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2348. w6 = Instance.new("Weld", p7)
  2349. w6.Name = "Joint"
  2350. w6.Part0 = p7
  2351. w6.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2352. w6.Part1 = p1
  2353. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2354. m4.Parent = lleg
  2355. m4:MakeJoints()
  2356. ----------------------------------------------------
  2357. local cor4 = Instance.new("Part", lleg.LeftLeg)
  2358. cor4.Name = "Thingy"
  2359. cor4.Locked = true
  2360. cor4.BottomSurface = 0
  2361. cor4.CanCollide = false
  2362. cor4.Size = Vector3.new(1, 1, 1)
  2363. cor4.Transparency = 1
  2364. cor4.TopSurface = 0
  2365. corw4 = Instance.new("Weld", cor4)
  2366. corw4.Part0 = lleg
  2367. corw4.Part1 = cor4
  2368. corw4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2369. corw4.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2370. weld4 = Instance.new("Weld", lleg.LeftLeg)
  2371. weld4.Part0 = cor4
  2372. weld4.Part1 = lleg.LeftLeg.LeftLegPlate
  2373. weld4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2374. --Right Leg
  2375. m5 = Instance.new("Model")
  2376. m5.Name = "RightLeg"
  2377. p1 = Instance.new("Part", m5)
  2378. p1.BrickColor = BrickColor.new("Really black")
  2379. p1.Material = Enum.Material.Metal
  2380. p1.Name = "RightLegPlate"
  2381. p1.CFrame = CFrame.new(1.5, 4.74441528, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2382. p1.Anchored = false
  2383. p1.CanCollide = false
  2384. p1.FormFactor = Enum.FormFactor.Custom
  2385. p1.Size = Vector3.new(1, 2, 1)
  2386. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2387. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2388. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2389. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2390. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2391. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2392. b1 = Instance.new("SpecialMesh", p1)
  2393. b1.MeshType = Enum.MeshType.Brick
  2394. b1.Name = "Mesh"
  2395. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2396. p2 = Instance.new("Part", m5)
  2397. p2.BrickColor = BrickColor.new("Really black")
  2398. p2.Material = Enum.Material.Metal
  2399. p2.CFrame = CFrame.new(2.05000019, 5.44441557, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2400. p2.Anchored = false
  2401. p2.CanCollide = false
  2402. p2.FormFactor = Enum.FormFactor.Custom
  2403. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2404. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2405. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2406. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2407. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2408. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2409. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2410. b2 = Instance.new("SpecialMesh", p2)
  2411. b2.MeshType = Enum.MeshType.Brick
  2412. b2.Name = "Mesh"
  2413. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2414. p3 = Instance.new("Part", m5)
  2415. p3.BrickColor = BrickColor.new("Really black")
  2416. p3.Material = Enum.Material.Metal
  2417. p3.CFrame = CFrame.new(2.05000019, 5.04441547, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2418. p3.Anchored = false
  2419. p3.CanCollide = false
  2420. p3.FormFactor = Enum.FormFactor.Custom
  2421. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2422. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2423. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2424. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2425. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2426. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2427. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2428. b3 = Instance.new("SpecialMesh", p3)
  2429. b3.MeshType = Enum.MeshType.Brick
  2430. b3.Name = "Mesh"
  2431. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2432. p4 = Instance.new("Part", m5)
  2433. p4.BrickColor = BrickColor.new("Black")
  2434. p4.Material = Enum.Material.Metal
  2435. p4.CFrame = CFrame.new(1.5, 4.74441528, -7.0299983, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2436. p4.Anchored = false
  2437. p4.CanCollide = false
  2438. p4.FormFactor = Enum.FormFactor.Custom
  2439. p4.Size = Vector3.new(1, 2, 0.200000018)
  2440. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2441. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2442. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2443. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2444. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2445. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2446. b4 = Instance.new("SpecialMesh", p4)
  2447. b4.MeshType = Enum.MeshType.Brick
  2448. b4.Name = "Mesh"
  2449. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2450. p5 = Instance.new("Part", m5)
  2451. p5.BrickColor = BrickColor.new("Black")
  2452. p5.Material = Enum.Material.Metal
  2453. p5.CFrame = CFrame.new(2, 4.74441528, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2454. p5.Anchored = false
  2455. p5.CanCollide = false
  2456. p5.FormFactor = Enum.FormFactor.Custom
  2457. p5.Size = Vector3.new(1, 2, 0.200000018)
  2458. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2459. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2460. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2461. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2462. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2463. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2464. b5 = Instance.new("SpecialMesh", p5)
  2465. b5.MeshType = Enum.MeshType.Brick
  2466. b5.Name = "Mesh"
  2467. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2468. p6 = Instance.new("Part", m5)
  2469. p6.BrickColor = BrickColor.new("Black")
  2470. p6.Material = Enum.Material.Metal
  2471. p6.CFrame = CFrame.new(1.505, 3.74442124, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2472. p6.Anchored = false
  2473. p6.CanCollide = false
  2474. p6.FormFactor = Enum.FormFactor.Custom
  2475. p6.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2476. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2477. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2478. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2479. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2480. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2481. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2482. b6 = Instance.new("SpecialMesh", p6)
  2483. b6.MeshType = Enum.MeshType.Brick
  2484. b6.Name = "Mesh"
  2485. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2486. p7 = Instance.new("Part", m5)
  2487. p7.BrickColor = BrickColor.new("Black")
  2488. p7.Material = Enum.Material.Metal
  2489. p7.CFrame = CFrame.new(1.505, 5.69442129, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2490. p7.Anchored = false
  2491. p7.CanCollide = false
  2492. p7.FormFactor = Enum.FormFactor.Custom
  2493. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2494. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2495. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2496. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2497. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2498. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2499. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2500. b7 = Instance.new("SpecialMesh", p7)
  2501. b7.MeshType = Enum.MeshType.Brick
  2502. b7.Name = "Mesh"
  2503. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2504. w1 = Instance.new("Weld", p2)
  2505. w1.Name = "Joint"
  2506. w1.Part0 = p2
  2507. w1.C0 = CFrame.new(0, -0.400000095, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2508. w1.Part1 = p3
  2509. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2510. w2 = Instance.new("Weld", p3)
  2511. w2.Name = "Joint"
  2512. w2.Part0 = p3
  2513. w2.C0 = CFrame.new(-0.0500001907, -0.300000191, 0.0200004578, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2514. w2.Part1 = p5
  2515. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2516. w3 = Instance.new("Weld", p4)
  2517. w3.Name = "Joint"
  2518. w3.Part0 = p4
  2519. w3.C0 = CFrame.new(0, 0, -0.470001221, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2520. w3.Part1 = p1
  2521. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2522. w4 = Instance.new("Weld", p5)
  2523. w4.Name = "Joint"
  2524. w4.Part0 = p5
  2525. w4.C0 = CFrame.new(-0.0200004578, 0, 0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2526. w4.Part1 = p1
  2527. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2528. w5 = Instance.new("Weld", p6)
  2529. w5.Name = "Joint"
  2530. w5.Part0 = p6
  2531. w5.C0 = CFrame.new(0, 0.99999404, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2532. w5.Part1 = p1
  2533. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2534. w6 = Instance.new("Weld", p7)
  2535. w6.Name = "Joint"
  2536. w6.Part0 = p7
  2537. w6.C0 = CFrame.new(0, -0.950006008, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2538. w6.Part1 = p1
  2539. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2540. m5.Parent = rleg
  2541. m5:MakeJoints()
  2542. ----------------------------------------------------
  2543. local cor5 = Instance.new("Part", rleg.RightLeg)
  2544. cor5.Name = "Thingy"
  2545. cor5.Locked = true
  2546. cor5.BottomSurface = 0
  2547. cor5.CanCollide = false
  2548. cor5.Size = Vector3.new(1, 1, 1)
  2549. cor5.Transparency = 1
  2550. cor5.TopSurface = 0
  2551. corw5 = Instance.new("Weld", cor5)
  2552. corw5.Part0 = rleg
  2553. corw5.Part1 = cor5
  2554. corw5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2555. corw5.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2556. wld5 = Instance.new("Weld", rleg.RightLeg)
  2557. wld5.Part0 = cor5
  2558. wld5.Part1 = rleg.RightLeg.RightLegPlate
  2559. wld5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2560. --Cape
  2561. m6 = Instance.new("Model")
  2562. m6.Name = "Cloak"
  2563. p1 = Instance.new("WedgePart", m6)
  2564. p1.BrickColor = BrickColor.new("Lime green")
  2565. p1.Material = Enum.Material.SmoothPlastic
  2566. p1.Name = "Wedge"
  2567. p1.CFrame = CFrame.new(0.959278464, 4.40979004, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2568. p1.CanCollide = false
  2569. p1.Locked = true
  2570. p1.FormFactor = Enum.FormFactor.Custom
  2571. p1.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2572. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2573. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2574. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2575. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2576. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2577. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2578. b1 = Instance.new("SpecialMesh", p1)
  2579. b1.MeshType = Enum.MeshType.Wedge
  2580. b1.Name = "Mesh"
  2581. b1.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2582. p2 = Instance.new("WedgePart", m6)
  2583. p2.BrickColor = BrickColor.new("Black")
  2584. p2.Material = Enum.Material.SmoothPlastic
  2585. p2.Name = "Wedge"
  2586. p2.CFrame = CFrame.new(-1.27945054, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  2587. p2.CanCollide = false
  2588. p2.Locked = true
  2589. p2.FormFactor = Enum.FormFactor.Custom
  2590. p2.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2591. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2592. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2593. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2594. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2595. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2596. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2597. b2 = Instance.new("SpecialMesh", p2)
  2598. b2.MeshType = Enum.MeshType.Wedge
  2599. b2.Name = "Mesh"
  2600. b2.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2601. p3 = Instance.new("Part", m6)
  2602. p3.BrickColor = BrickColor.new("Black")
  2603. p3.Material = Enum.Material.SmoothPlastic
  2604. p3.Name = "CapeLevel2"
  2605. p3.CFrame = CFrame.new(-0.300008506, 3.78014231, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2606. p3.CanCollide = false
  2607. p3.Locked = true
  2608. p3.FormFactor = Enum.FormFactor.Custom
  2609. p3.Size = Vector3.new(2.09881067, 0.559682727, 0.232357636)
  2610. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2611. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2612. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2613. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2614. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2615. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2616. b3 = Instance.new("BlockMesh", p3)
  2617. b3.Name = "Mesh"
  2618. b3.Scale = Vector3.new(1, 1, 0.602178097)
  2619. p4 = Instance.new("Part", m6)
  2620. p4.BrickColor = BrickColor.new("Black")
  2621. p4.Material = Enum.Material.SmoothPlastic
  2622. p4.CFrame = CFrame.new(-1.8391341, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2623. p4.CanCollide = false
  2624. p4.Locked = true
  2625. p4.FormFactor = Enum.FormFactor.Custom
  2626. p4.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2627. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2629. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2630. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2631. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2632. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2633. b4 = Instance.new("BlockMesh", p4)
  2634. b4.Name = "Mesh"
  2635. b4.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2636. p5 = Instance.new("Part", m6)
  2637. p5.BrickColor = BrickColor.new("Black")
  2638. p5.Material = Enum.Material.SmoothPlastic
  2639. p5.CFrame = CFrame.new(-1.69921267, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2640. p5.CanCollide = false
  2641. p5.Locked = true
  2642. p5.FormFactor = Enum.FormFactor.Custom
  2643. p5.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2644. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2647. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2648. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2649. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2650. b5 = Instance.new("BlockMesh", p5)
  2651. b5.Name = "Mesh"
  2652. b5.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2653. p6 = Instance.new("Part", m6)
  2654. p6.BrickColor = BrickColor.new("Black")
  2655. p6.Material = Enum.Material.SmoothPlastic
  2656. p6.Name = "CapeLevel1"
  2657. p6.CFrame = CFrame.new(-0.300008506, 4.6896286, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2658. p6.CanCollide = false
  2659. p6.Locked = true
  2660. p6.FormFactor = Enum.FormFactor.Custom
  2661. p6.Size = Vector3.new(1.25928628, 0.232357651, 0.232357636)
  2662. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2664. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2665. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2666. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2667. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2668. b6 = Instance.new("BlockMesh", p6)
  2669. b6.Name = "Mesh"
  2670. b6.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2671. p7 = Instance.new("Part", m6)
  2672. p7.BrickColor = BrickColor.new("Black")
  2673. p7.Material = Enum.Material.SmoothPlastic
  2674. p7.CFrame = CFrame.new(1.23912418, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2675. p7.CanCollide = false
  2676. p7.Locked = true
  2677. p7.FormFactor = Enum.FormFactor.Custom
  2678. p7.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2679. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2680. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2681. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2682. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2683. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2684. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2685. b7 = Instance.new("BlockMesh", p7)
  2686. b7.Name = "Mesh"
  2687. b7.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2688. p8 = Instance.new("Part", m6)
  2689. p8.BrickColor = BrickColor.new("Black")
  2690. p8.Material = Enum.Material.SmoothPlastic
  2691. p8.CFrame = CFrame.new(0.539517641, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2692. p8.CanCollide = false
  2693. p8.Locked = true
  2694. p8.FormFactor = Enum.FormFactor.Custom
  2695. p8.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2696. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2697. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2698. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2699. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2700. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2701. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2702. b8 = Instance.new("BlockMesh", p8)
  2703. b8.Name = "Mesh"
  2704. b8.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2705. p9 = Instance.new("Part", m6)
  2706. p9.BrickColor = BrickColor.new("Black")
  2707. p9.Material = Enum.Material.SmoothPlastic
  2708. p9.CFrame = CFrame.new(-0.300009966, 2.03112936, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2709. p9.CanCollide = false
  2710. p9.Locked = true
  2711. p9.FormFactor = Enum.FormFactor.Custom
  2712. p9.Size = Vector3.new(0.419762105, 0.419762105, 0.232357636)
  2713. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2714. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2719. b9 = Instance.new("BlockMesh", p9)
  2720. b9.Name = "Mesh"
  2721. b9.Scale = Vector3.new(1, 1, 0.602178097)
  2722. p10 = Instance.new("Part", m6)
  2723. p10.BrickColor = BrickColor.new("Black")
  2724. p10.Material = Enum.Material.SmoothPlastic
  2725. p10.CFrame = CFrame.new(1.09920263, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2726. p10.CanCollide = false
  2727. p10.Locked = true
  2728. p10.FormFactor = Enum.FormFactor.Custom
  2729. p10.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2730. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2731. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2732. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2733. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2734. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2736. b10 = Instance.new("BlockMesh", p10)
  2737. b10.Name = "Mesh"
  2738. b10.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2739. p11 = Instance.new("Part", m6)
  2740. p11.BrickColor = BrickColor.new("Black")
  2741. p11.Material = Enum.Material.SmoothPlastic
  2742. p11.CFrame = CFrame.new(-1.13953161, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2743. p11.CanCollide = false
  2744. p11.Locked = true
  2745. p11.FormFactor = Enum.FormFactor.Custom
  2746. p11.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2747. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2748. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2749. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2750. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2751. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2752. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2753. b11 = Instance.new("BlockMesh", p11)
  2754. b11.Name = "Mesh"
  2755. b11.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2756. p12 = Instance.new("Part", m6)
  2757. p12.BrickColor = BrickColor.new("Black")
  2758. p12.Material = Enum.Material.SmoothPlastic
  2759. p12.CFrame = CFrame.new(-1.6992135, 3.29041815, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2760. p12.CanCollide = false
  2761. p12.Locked = true
  2762. p12.FormFactor = Enum.FormFactor.Custom
  2763. p12.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2764. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2765. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2766. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2767. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2768. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2769. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2770. b12 = Instance.new("BlockMesh", p12)
  2771. b12.Name = "Mesh"
  2772. b12.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2773. p13 = Instance.new("Part", m6)
  2774. p13.BrickColor = BrickColor.new("Black")
  2775. p13.Material = Enum.Material.SmoothPlastic
  2776. p13.Name = "BottomLeftFlap"
  2777. p13.CFrame = CFrame.new(-1.13953161, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2778. p13.CanCollide = false
  2779. p13.Locked = true
  2780. p13.FormFactor = Enum.FormFactor.Custom
  2781. p13.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  2782. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2783. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2784. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2785. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2786. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2787. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2788. b13 = Instance.new("BlockMesh", p13)
  2789. b13.Name = "Mesh"
  2790. b13.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2791. p14 = Instance.new("Part", m6)
  2792. p14.BrickColor = BrickColor.new("Black")
  2793. p14.Material = Enum.Material.SmoothPlastic
  2794. p14.Transparency = 1
  2795. p14.Name = "Rotater"
  2796. p14.CFrame = CFrame.new(-0.300001532, 4.82954979, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2797. p14.CanCollide = false
  2798. p14.Locked = true
  2799. p14.FormFactor = Enum.FormFactor.Custom
  2800. p14.Size = Vector3.new(1.25928617, 0.232357651, 0.232357636)
  2801. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2802. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2803. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2804. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2805. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2806. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2807. b14 = Instance.new("BlockMesh", p14)
  2808. b14.Name = "Mesh"
  2809. b14.Scale = Vector3.new(1, 0.632287025, 0.632287025)
  2810. p15 = Instance.new("Part", m6)
  2811. p15.BrickColor = BrickColor.new("Black")
  2812. p15.Material = Enum.Material.SmoothPlastic
  2813. p15.CFrame = CFrame.new(-1.41937125, 4.40979004, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2814. p15.CanCollide = false
  2815. p15.Locked = true
  2816. p15.FormFactor = Enum.FormFactor.Custom
  2817. p15.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2818. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2819. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2820. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2821. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2822. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2823. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2824. b15 = Instance.new("BlockMesh", p15)
  2825. b15.Name = "Mesh"
  2826. b15.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2827. p16 = Instance.new("Part", m6)
  2828. p16.BrickColor = BrickColor.new("Black")
  2829. p16.Material = Enum.Material.SmoothPlastic
  2830. p16.Name = "BottomCenterFlap"
  2831. p16.CFrame = CFrame.new(-0.300009966, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2832. p16.CanCollide = false
  2833. p16.Locked = true
  2834. p16.FormFactor = Enum.FormFactor.Custom
  2835. p16.Size = Vector3.new(0.699603498, 0.232357651, 0.232357636)
  2836. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2837. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2838. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2839. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2840. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2841. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2842. b16 = Instance.new("BlockMesh", p16)
  2843. b16.Name = "Mesh"
  2844. b16.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2845. p17 = Instance.new("Part", m6)
  2846. p17.BrickColor = BrickColor.new("Black")
  2847. p17.Material = Enum.Material.SmoothPlastic
  2848. p17.CFrame = CFrame.new(-1.27945054, 4.26986647, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2849. p17.CanCollide = false
  2850. p17.Locked = true
  2851. p17.FormFactor = Enum.FormFactor.Custom
  2852. p17.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2853. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2854. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2855. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2856. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2857. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2858. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2859. b17 = Instance.new("BlockMesh", p17)
  2860. b17.Name = "Mesh"
  2861. b17.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2862. p18 = Instance.new("Part", m6)
  2863. p18.BrickColor = BrickColor.new("Black")
  2864. p18.Material = Enum.Material.SmoothPlastic
  2865. p18.CFrame = CFrame.new(0.679436207, 4.26986647, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2866. p18.CanCollide = false
  2867. p18.Locked = true
  2868. p18.FormFactor = Enum.FormFactor.Custom
  2869. p18.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2870. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2871. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2872. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2873. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2874. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2875. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2876. b18 = Instance.new("BlockMesh", p18)
  2877. b18.Name = "Mesh"
  2878. b18.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2879. p19 = Instance.new("WedgePart", m6)
  2880. p19.BrickColor = BrickColor.new("Lime green")
  2881. p19.Name = "Wedge"
  2882. p19.CFrame = CFrame.new(-0.265017539, 1.47144794, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  2883. p19.CanCollide = false
  2884. p19.Locked = true
  2885. p19.FormFactor = Enum.FormFactor.Custom
  2886. p19.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2887. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2888. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2889. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2890. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2891. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2892. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2893. b19 = Instance.new("SpecialMesh", p19)
  2894. b19.MeshType = Enum.MeshType.Wedge
  2895. b19.Name = "Mesh"
  2896. b19.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  2897. p20 = Instance.new("Part", m6)
  2898. p20.BrickColor = BrickColor.new("Black")
  2899. p20.Material = Enum.Material.SmoothPlastic
  2900. p20.CFrame = CFrame.new(1.09919691, 3.29041815, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2901. p20.CanCollide = false
  2902. p20.Locked = true
  2903. p20.FormFactor = Enum.FormFactor.Custom
  2904. p20.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2905. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2906. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2907. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2908. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2909. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2910. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2911. b20 = Instance.new("BlockMesh", p20)
  2912. b20.Name = "Mesh"
  2913. b20.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2914. p21 = Instance.new("Part", m6)
  2915. p21.BrickColor = BrickColor.new("Black")
  2916. p21.Material = Enum.Material.SmoothPlastic
  2917. p21.CFrame = CFrame.new(0.959275484, 3.1504972, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2918. p21.CanCollide = false
  2919. p21.Locked = true
  2920. p21.FormFactor = Enum.FormFactor.Custom
  2921. p21.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2922. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2923. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2924. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2925. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2926. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2927. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2928. b21 = Instance.new("BlockMesh", p21)
  2929. b21.Name = "Mesh"
  2930. b21.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2931. p22 = Instance.new("WedgePart", m6)
  2932. p22.BrickColor = BrickColor.new("Lime green")
  2933. p22.Name = "Wedge"
  2934. p22.CFrame = CFrame.new(0.50454706, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  2935. p22.CanCollide = false
  2936. p22.Locked = true
  2937. p22.FormFactor = Enum.FormFactor.Custom
  2938. p22.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2939. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2940. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2941. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2942. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2943. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2944. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. b22 = Instance.new("SpecialMesh", p22)
  2946. b22.MeshType = Enum.MeshType.Wedge
  2947. b22.Name = "Mesh"
  2948. b22.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  2949. p23 = Instance.new("WedgePart", m6)
  2950. p23.BrickColor = BrickColor.new("Lime green")
  2951. p23.Material = Enum.Material.SmoothPlastic
  2952. p23.Name = "Wedge"
  2953. p23.CFrame = CFrame.new(1.09919691, 3.85010386, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2954. p23.CanCollide = false
  2955. p23.Locked = true
  2956. p23.FormFactor = Enum.FormFactor.Custom
  2957. p23.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2958. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2959. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2960. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2961. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2962. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2963. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2964. b23 = Instance.new("SpecialMesh", p23)
  2965. b23.MeshType = Enum.MeshType.Wedge
  2966. b23.Name = "Mesh"
  2967. b23.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2968. p24 = Instance.new("WedgePart", m6)
  2969. p24.BrickColor = BrickColor.new("Black")
  2970. p24.Material = Enum.Material.SmoothPlastic
  2971. p24.Name = "Wedge"
  2972. p24.CFrame = CFrame.new(0.959281087, 2.45089102, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  2973. p24.CanCollide = false
  2974. p24.Locked = true
  2975. p24.FormFactor = Enum.FormFactor.Custom
  2976. p24.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2977. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2978. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2979. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2980. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2981. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2982. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2983. b24 = Instance.new("SpecialMesh", p24)
  2984. b24.MeshType = Enum.MeshType.Wedge
  2985. b24.Name = "Mesh"
  2986. b24.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2987. p25 = Instance.new("WedgePart", m6)
  2988. p25.BrickColor = BrickColor.new("Lime green")
  2989. p25.Name = "Wedge"
  2990. p25.CFrame = CFrame.new(0.574507415, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  2991. p25.CanCollide = false
  2992. p25.Locked = true
  2993. p25.FormFactor = Enum.FormFactor.Custom
  2994. p25.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2995. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2996. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2997. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2998. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3001. b25 = Instance.new("SpecialMesh", p25)
  3002. b25.MeshType = Enum.MeshType.Wedge
  3003. b25.Name = "Mesh"
  3004. b25.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3005. p26 = Instance.new("WedgePart", m6)
  3006. p26.BrickColor = BrickColor.new("Black")
  3007. p26.Material = Enum.Material.SmoothPlastic
  3008. p26.Name = "Wedge"
  3009. p26.CFrame = CFrame.new(-1.06957662, 4.68963194, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3010. p26.CanCollide = false
  3011. p26.Locked = true
  3012. p26.FormFactor = Enum.FormFactor.Custom
  3013. p26.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3014. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3015. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3016. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3017. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3018. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3019. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3020. b26 = Instance.new("SpecialMesh", p26)
  3021. b26.MeshType = Enum.MeshType.Wedge
  3022. b26.Name = "Mesh"
  3023. b26.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3024. p27 = Instance.new("Part", m6)
  3025. p27.BrickColor = BrickColor.new("Black")
  3026. p27.Material = Enum.Material.SmoothPlastic
  3027. p27.CFrame = CFrame.new(-1.55929208, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3028. p27.CanCollide = false
  3029. p27.Locked = true
  3030. p27.FormFactor = Enum.FormFactor.Custom
  3031. p27.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3032. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3033. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3034. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3035. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3036. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3037. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3038. b27 = Instance.new("BlockMesh", p27)
  3039. b27.Name = "Mesh"
  3040. b27.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3041. p28 = Instance.new("WedgePart", m6)
  3042. p28.BrickColor = BrickColor.new("Black")
  3043. p28.Material = Enum.Material.SmoothPlastic
  3044. p28.Name = "Wedge"
  3045. p28.CFrame = CFrame.new(0.959275484, 3.71018291, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3046. p28.CanCollide = false
  3047. p28.Locked = true
  3048. p28.FormFactor = Enum.FormFactor.Custom
  3049. p28.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3050. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3051. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3052. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3054. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3055. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3056. b28 = Instance.new("SpecialMesh", p28)
  3057. b28.MeshType = Enum.MeshType.Wedge
  3058. b28.Name = "Mesh"
  3059. b28.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3060. p29 = Instance.new("Part", m6)
  3061. p29.BrickColor = BrickColor.new("Black")
  3062. p29.Material = Enum.Material.SmoothPlastic
  3063. p29.CFrame = CFrame.new(-1.55929208, 3.15049648, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3064. p29.CanCollide = false
  3065. p29.Locked = true
  3066. p29.FormFactor = Enum.FormFactor.Custom
  3067. p29.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3068. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3069. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3070. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3071. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3072. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3073. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3074. b29 = Instance.new("BlockMesh", p29)
  3075. b29.Name = "Mesh"
  3076. b29.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3077. p30 = Instance.new("WedgePart", m6)
  3078. p30.BrickColor = BrickColor.new("Black")
  3079. p30.Material = Enum.Material.SmoothPlastic
  3080. p30.Name = "Wedge"
  3081. p30.CFrame = CFrame.new(1.09919691, 3.15049744, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3082. p30.CanCollide = false
  3083. p30.Locked = true
  3084. p30.FormFactor = Enum.FormFactor.Custom
  3085. p30.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3086. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3087. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3088. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3089. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3090. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3091. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3092. b30 = Instance.new("SpecialMesh", p30)
  3093. b30.MeshType = Enum.MeshType.Wedge
  3094. b30.Name = "Mesh"
  3095. b30.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3096. p31 = Instance.new("WedgePart", m6)
  3097. p31.BrickColor = BrickColor.new("Black")
  3098. p31.Material = Enum.Material.SmoothPlastic
  3099. p31.Name = "Wedge"
  3100. p31.CFrame = CFrame.new(0.119759142, 2.31096911, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3101. p31.CanCollide = false
  3102. p31.Locked = true
  3103. p31.FormFactor = Enum.FormFactor.Custom
  3104. p31.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3105. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3106. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3107. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3108. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3109. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3110. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. b31 = Instance.new("SpecialMesh", p31)
  3112. b31.MeshType = Enum.MeshType.Wedge
  3113. b31.Name = "Mesh"
  3114. b31.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3115. p32 = Instance.new("Part", m6)
  3116. p32.BrickColor = BrickColor.new("Black")
  3117. p32.Material = Enum.Material.SmoothPlastic
  3118. p32.Name = "BottomRightFlap"
  3119. p32.CFrame = CFrame.new(0.539517641, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3120. p32.CanCollide = false
  3121. p32.Locked = true
  3122. p32.FormFactor = Enum.FormFactor.Custom
  3123. p32.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  3124. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3125. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3126. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3127. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3128. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. b32 = Instance.new("BlockMesh", p32)
  3131. b32.Name = "Mesh"
  3132. b32.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3133. p33 = Instance.new("WedgePart", m6)
  3134. p33.BrickColor = BrickColor.new("Black")
  3135. p33.Material = Enum.Material.SmoothPlastic
  3136. p33.Name = "Wedge"
  3137. p33.CFrame = CFrame.new(1.02923799, 3.43033957, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3138. p33.CanCollide = false
  3139. p33.Locked = true
  3140. p33.FormFactor = Enum.FormFactor.Custom
  3141. p33.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3142. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3143. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3144. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3145. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3147. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3148. b33 = Instance.new("SpecialMesh", p33)
  3149. b33.MeshType = Enum.MeshType.Wedge
  3150. b33.Name = "Mesh"
  3151. b33.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3152. p34 = Instance.new("WedgePart", m6)
  3153. p34.BrickColor = BrickColor.new("Black")
  3154. p34.Material = Enum.Material.SmoothPlastic
  3155. p34.Name = "Wedge"
  3156. p34.CFrame = CFrame.new(-1.55929208, 2.45089054, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3157. p34.CanCollide = false
  3158. p34.Locked = true
  3159. p34.FormFactor = Enum.FormFactor.Custom
  3160. p34.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3161. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3162. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3163. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3164. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3165. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3166. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3167. b34 = Instance.new("SpecialMesh", p34)
  3168. b34.MeshType = Enum.MeshType.Wedge
  3169. b34.Name = "Mesh"
  3170. b34.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3171. p35 = Instance.new("Part", m6)
  3172. p35.BrickColor = BrickColor.new("Black")
  3173. p35.Material = Enum.Material.SmoothPlastic
  3174. p35.CFrame = CFrame.new(0.959275484, 3.85010386, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3175. p35.CanCollide = false
  3176. p35.Locked = true
  3177. p35.FormFactor = Enum.FormFactor.Custom
  3178. p35.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3179. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3180. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3181. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3182. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3183. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3184. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3185. b35 = Instance.new("BlockMesh", p35)
  3186. b35.Name = "Mesh"
  3187. b35.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3188. p36 = Instance.new("WedgePart", m6)
  3189. p36.BrickColor = BrickColor.new("Black")
  3190. p36.Material = Enum.Material.SmoothPlastic
  3191. p36.Name = "Wedge"
  3192. p36.CFrame = CFrame.new(-1.62925327, 3.43033957, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3193. p36.CanCollide = false
  3194. p36.Locked = true
  3195. p36.FormFactor = Enum.FormFactor.Custom
  3196. p36.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3197. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3198. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3199. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3200. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3201. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3202. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3203. b36 = Instance.new("SpecialMesh", p36)
  3204. b36.MeshType = Enum.MeshType.Wedge
  3205. b36.Name = "Mesh"
  3206. b36.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3207. p37 = Instance.new("Part", m6)
  3208. p37.BrickColor = BrickColor.new("Black")
  3209. p37.Material = Enum.Material.SmoothPlastic
  3210. p37.Name = "CapeLevel3"
  3211. p37.CFrame = CFrame.new(-0.300008506, 3.22045994, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3212. p37.CanCollide = false
  3213. p37.Locked = true
  3214. p37.FormFactor = Enum.FormFactor.Custom
  3215. p37.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3216. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3217. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3218. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3219. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3220. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. b37 = Instance.new("BlockMesh", p37)
  3223. b37.Name = "Mesh"
  3224. b37.Scale = Vector3.new(1, 1, 0.602178097)
  3225. p38 = Instance.new("WedgePart", m6)
  3226. p38.BrickColor = BrickColor.new("Lime green")
  3227. p38.Material = Enum.Material.SmoothPlastic
  3228. p38.Name = "Wedge"
  3229. p38.CFrame = CFrame.new(-1.97905517, 2.73073244, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3230. p38.CanCollide = false
  3231. p38.Locked = true
  3232. p38.FormFactor = Enum.FormFactor.Custom
  3233. p38.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3234. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3235. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3236. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3237. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3238. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3239. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3240. b38 = Instance.new("SpecialMesh", p38)
  3241. b38.MeshType = Enum.MeshType.Wedge
  3242. b38.Name = "Mesh"
  3243. b38.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3244. p39 = Instance.new("WedgePart", m6)
  3245. p39.BrickColor = BrickColor.new("Lime green")
  3246. p39.Material = Enum.Material.SmoothPlastic
  3247. p39.Name = "Wedge"
  3248. p39.CFrame = CFrame.new(-1.83913493, 3.29041815, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3249. p39.CanCollide = false
  3250. p39.Locked = true
  3251. p39.FormFactor = Enum.FormFactor.Custom
  3252. p39.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3253. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3254. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3255. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3256. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3257. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3258. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3259. b39 = Instance.new("SpecialMesh", p39)
  3260. b39.MeshType = Enum.MeshType.Wedge
  3261. b39.Name = "Mesh"
  3262. b39.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3263. p40 = Instance.new("WedgePart", m6)
  3264. p40.BrickColor = BrickColor.new("Black")
  3265. p40.Material = Enum.Material.SmoothPlastic
  3266. p40.Name = "Wedge"
  3267. p40.CFrame = CFrame.new(-1.48933268, 3.99002528, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3268. p40.CanCollide = false
  3269. p40.Locked = true
  3270. p40.FormFactor = Enum.FormFactor.Custom
  3271. p40.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3272. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3273. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3275. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3276. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3277. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3278. b40 = Instance.new("SpecialMesh", p40)
  3279. b40.MeshType = Enum.MeshType.Wedge
  3280. b40.Name = "Mesh"
  3281. b40.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3282. p41 = Instance.new("WedgePart", m6)
  3283. p41.BrickColor = BrickColor.new("Black")
  3284. p41.Material = Enum.Material.SmoothPlastic
  3285. p41.Name = "Wedge"
  3286. p41.CFrame = CFrame.new(-1.76917338, 2.59081101, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3287. p41.CanCollide = false
  3288. p41.Locked = true
  3289. p41.FormFactor = Enum.FormFactor.Custom
  3290. p41.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3291. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3292. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3295. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3296. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3297. b41 = Instance.new("SpecialMesh", p41)
  3298. b41.MeshType = Enum.MeshType.Wedge
  3299. b41.Name = "Mesh"
  3300. b41.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3301. p42 = Instance.new("WedgePart", m6)
  3302. p42.BrickColor = BrickColor.new("Black")
  3303. p42.Material = Enum.Material.SmoothPlastic
  3304. p42.Name = "Wedge"
  3305. p42.CFrame = CFrame.new(0.679442644, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3306. p42.CanCollide = false
  3307. p42.Locked = true
  3308. p42.FormFactor = Enum.FormFactor.Custom
  3309. p42.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3310. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3311. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3312. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3313. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3314. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3315. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3316. b42 = Instance.new("SpecialMesh", p42)
  3317. b42.MeshType = Enum.MeshType.Wedge
  3318. b42.Name = "Mesh"
  3319. b42.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3320. p43 = Instance.new("WedgePart", m6)
  3321. p43.BrickColor = BrickColor.new("Black")
  3322. p43.Material = Enum.Material.SmoothPlastic
  3323. p43.Name = "Wedge"
  3324. p43.CFrame = CFrame.new(-1.76917338, 2.87065363, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3325. p43.CanCollide = false
  3326. p43.Locked = true
  3327. p43.FormFactor = Enum.FormFactor.Custom
  3328. p43.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3329. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3330. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3331. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3332. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3333. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3334. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3335. b43 = Instance.new("SpecialMesh", p43)
  3336. b43.MeshType = Enum.MeshType.Wedge
  3337. b43.Name = "Mesh"
  3338. b43.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3339. p44 = Instance.new("WedgePart", m6)
  3340. p44.BrickColor = BrickColor.new("Black")
  3341. p44.Material = Enum.Material.SmoothPlastic
  3342. p44.Name = "Wedge"
  3343. p44.CFrame = CFrame.new(-1.41937125, 4.26986837, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3344. p44.CanCollide = false
  3345. p44.Locked = true
  3346. p44.FormFactor = Enum.FormFactor.Custom
  3347. p44.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3348. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3349. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3350. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3351. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3352. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3353. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3354. b44 = Instance.new("SpecialMesh", p44)
  3355. b44.MeshType = Enum.MeshType.Wedge
  3356. b44.Name = "Mesh"
  3357. b44.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3358. p45 = Instance.new("WedgePart", m6)
  3359. p45.BrickColor = BrickColor.new("Black")
  3360. p45.Material = Enum.Material.SmoothPlastic
  3361. p45.Name = "Wedge"
  3362. p45.CFrame = CFrame.new(-0.999610066, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3363. p45.CanCollide = false
  3364. p45.Locked = true
  3365. p45.FormFactor = Enum.FormFactor.Custom
  3366. p45.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3367. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3368. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3369. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3370. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3371. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3372. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3373. b45 = Instance.new("SpecialMesh", p45)
  3374. b45.MeshType = Enum.MeshType.Wedge
  3375. b45.Name = "Mesh"
  3376. b45.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3377. p46 = Instance.new("WedgePart", m6)
  3378. p46.BrickColor = BrickColor.new("Black")
  3379. p46.Material = Enum.Material.SmoothPlastic
  3380. p46.Name = "Wedge"
  3381. p46.CFrame = CFrame.new(0.46955356, 4.68963194, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3382. p46.CanCollide = false
  3383. p46.Locked = true
  3384. p46.FormFactor = Enum.FormFactor.Custom
  3385. p46.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3386. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3387. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3388. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3389. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3390. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3391. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3392. b46 = Instance.new("SpecialMesh", p46)
  3393. b46.MeshType = Enum.MeshType.Wedge
  3394. b46.Name = "Mesh"
  3395. b46.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3396. p47 = Instance.new("Part", m6)
  3397. p47.BrickColor = BrickColor.new("Black")
  3398. p47.Material = Enum.Material.SmoothPlastic
  3399. p47.CFrame = CFrame.new(0.819356859, 4.40979004, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3400. p47.CanCollide = false
  3401. p47.Locked = true
  3402. p47.FormFactor = Enum.FormFactor.Custom
  3403. p47.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3404. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3405. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3406. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3407. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3408. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3409. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3410. b47 = Instance.new("BlockMesh", p47)
  3411. b47.Name = "Mesh"
  3412. b47.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3413. p48 = Instance.new("Part", m6)
  3414. p48.BrickColor = BrickColor.new("Black")
  3415. p48.Material = Enum.Material.SmoothPlastic
  3416. p48.Name = "CapeLevel4"
  3417. p48.CFrame = CFrame.new(-0.300008506, 2.66077495, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3418. p48.CanCollide = false
  3419. p48.Locked = true
  3420. p48.FormFactor = Enum.FormFactor.Custom
  3421. p48.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3422. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3423. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3424. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3425. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3426. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3427. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3428. b48 = Instance.new("BlockMesh", p48)
  3429. b48.Name = "Mesh"
  3430. b48.Scale = Vector3.new(1, 1, 0.602178097)
  3431. p49 = Instance.new("WedgePart", m6)
  3432. p49.BrickColor = BrickColor.new("Black")
  3433. p49.Material = Enum.Material.SmoothPlastic
  3434. p49.Name = "Wedge"
  3435. p49.CFrame = CFrame.new(0.819356859, 4.26986837, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3436. p49.CanCollide = false
  3437. p49.Locked = true
  3438. p49.FormFactor = Enum.FormFactor.Custom
  3439. p49.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3440. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3441. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3442. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3443. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3444. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3445. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3446. b49 = Instance.new("SpecialMesh", p49)
  3447. b49.MeshType = Enum.MeshType.Wedge
  3448. b49.Name = "Mesh"
  3449. b49.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3450. p50 = Instance.new("Part", m6)
  3451. p50.BrickColor = BrickColor.new("Black")
  3452. p50.Material = Enum.Material.SmoothPlastic
  3453. p50.Name = "CapeLevel1SubPart"
  3454. p50.CFrame = CFrame.new(-0.300008506, 4.33982658, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3455. p50.CanCollide = false
  3456. p50.Locked = true
  3457. p50.FormFactor = Enum.FormFactor.Custom
  3458. p50.Size = Vector3.new(1.81896901, 0.559682727, 0.232357636)
  3459. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3460. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3461. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3462. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3463. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3464. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3465. b50 = Instance.new("BlockMesh", p50)
  3466. b50.Name = "Mesh"
  3467. b50.Scale = Vector3.new(1, 1, 0.602178097)
  3468. p51 = Instance.new("Part", m6)
  3469. p51.BrickColor = BrickColor.new("Black")
  3470. p51.Material = Enum.Material.SmoothPlastic
  3471. p51.CFrame = CFrame.new(-1.55929291, 3.85010386, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3472. p51.CanCollide = false
  3473. p51.Locked = true
  3474. p51.FormFactor = Enum.FormFactor.Custom
  3475. p51.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3476. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3477. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3478. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3479. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3480. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3481. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3482. b51 = Instance.new("BlockMesh", p51)
  3483. b51.Name = "Mesh"
  3484. b51.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3485. p52 = Instance.new("Part", m6)
  3486. p52.BrickColor = BrickColor.new("Black")
  3487. p52.Material = Enum.Material.SmoothPlastic
  3488. p52.CFrame = CFrame.new(-1.41937149, 3.71018171, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3489. p52.CanCollide = false
  3490. p52.Locked = true
  3491. p52.FormFactor = Enum.FormFactor.Custom
  3492. p52.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3493. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3494. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3495. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3496. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3497. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3498. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3499. b52 = Instance.new("BlockMesh", p52)
  3500. b52.Name = "Mesh"
  3501. b52.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3502. p53 = Instance.new("WedgePart", m6)
  3503. p53.BrickColor = BrickColor.new("Black")
  3504. p53.Material = Enum.Material.SmoothPlastic
  3505. p53.Name = "Wedge"
  3506. p53.CFrame = CFrame.new(-0.0201580226, 2.03113341, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3507. p53.CanCollide = false
  3508. p53.Locked = true
  3509. p53.FormFactor = Enum.FormFactor.Custom
  3510. p53.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3511. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3512. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3513. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3514. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3515. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3516. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3517. b53 = Instance.new("SpecialMesh", p53)
  3518. b53.MeshType = Enum.MeshType.Wedge
  3519. b53.Name = "Mesh"
  3520. b53.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3521. p54 = Instance.new("Part", m6)
  3522. p54.BrickColor = BrickColor.new("Black")
  3523. p54.Material = Enum.Material.SmoothPlastic
  3524. p54.CFrame = CFrame.new(-0.300009966, 1.68132639, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3525. p54.CanCollide = false
  3526. p54.Locked = true
  3527. p54.FormFactor = Enum.FormFactor.Custom
  3528. p54.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  3529. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3530. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3531. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3532. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3533. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3534. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. b54 = Instance.new("BlockMesh", p54)
  3536. b54.Name = "Mesh"
  3537. b54.Scale = Vector3.new(0.602178395, 1, 0.602178097)
  3538. p55 = Instance.new("WedgePart", m6)
  3539. p55.BrickColor = BrickColor.new("Black")
  3540. p55.Material = Enum.Material.SmoothPlastic
  3541. p55.Name = "Wedge"
  3542. p55.CFrame = CFrame.new(0.39960131, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3543. p55.CanCollide = false
  3544. p55.Locked = true
  3545. p55.FormFactor = Enum.FormFactor.Custom
  3546. p55.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3547. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3548. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3549. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3550. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3551. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3552. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3553. b55 = Instance.new("SpecialMesh", p55)
  3554. b55.MeshType = Enum.MeshType.Wedge
  3555. b55.Name = "Mesh"
  3556. b55.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3557. p56 = Instance.new("WedgePart", m6)
  3558. p56.BrickColor = BrickColor.new("Lime green")
  3559. p56.Material = Enum.Material.SmoothPlastic
  3560. p56.Name = "Wedge"
  3561. p56.CFrame = CFrame.new(1.23911822, 3.29041815, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3562. p56.CanCollide = false
  3563. p56.Locked = true
  3564. p56.FormFactor = Enum.FormFactor.Custom
  3565. p56.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3566. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3567. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3568. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3569. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3570. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3571. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3572. b56 = Instance.new("SpecialMesh", p56)
  3573. b56.MeshType = Enum.MeshType.Wedge
  3574. b56.Name = "Mesh"
  3575. b56.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3576. p57 = Instance.new("WedgePart", m6)
  3577. p57.BrickColor = BrickColor.new("Black")
  3578. p57.Material = Enum.Material.SmoothPlastic
  3579. p57.Name = "Wedge"
  3580. p57.CFrame = CFrame.new(0.749394774, 4.54971123, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3581. p57.CanCollide = false
  3582. p57.Locked = true
  3583. p57.FormFactor = Enum.FormFactor.Custom
  3584. p57.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3585. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3586. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3587. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3588. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3589. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3590. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3591. b57 = Instance.new("SpecialMesh", p57)
  3592. b57.MeshType = Enum.MeshType.Wedge
  3593. b57.Name = "Mesh"
  3594. b57.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3595. p58 = Instance.new("Part", m6)
  3596. p58.BrickColor = BrickColor.new("Black")
  3597. p58.Material = Enum.Material.SmoothPlastic
  3598. p58.CFrame = CFrame.new(0.819354892, 3.71018171, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3599. p58.CanCollide = false
  3600. p58.Locked = true
  3601. p58.FormFactor = Enum.FormFactor.Custom
  3602. p58.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3603. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3604. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3605. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3606. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3607. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3608. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3609. b58 = Instance.new("BlockMesh", p58)
  3610. b58.Name = "Mesh"
  3611. b58.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3612. p59 = Instance.new("WedgePart", m6)
  3613. p59.BrickColor = BrickColor.new("Black")
  3614. p59.Material = Enum.Material.SmoothPlastic
  3615. p59.Name = "Wedge"
  3616. p59.CFrame = CFrame.new(0.259678036, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3617. p59.CanCollide = false
  3618. p59.Locked = true
  3619. p59.FormFactor = Enum.FormFactor.Custom
  3620. p59.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3621. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3622. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3623. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3624. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3625. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3626. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3627. b59 = Instance.new("SpecialMesh", p59)
  3628. b59.MeshType = Enum.MeshType.Wedge
  3629. b59.Name = "Mesh"
  3630. b59.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3631. p60 = Instance.new("Part", m6)
  3632. p60.BrickColor = BrickColor.new("Black")
  3633. p60.Material = Enum.Material.SmoothPlastic
  3634. p60.Name = "NeckPart"
  3635. p60.CFrame = CFrame.new(-0.300008506, 4.82955122, 3.8997519, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3636. p60.CanCollide = false
  3637. p60.Locked = true
  3638. p60.FormFactor = Enum.FormFactor.Custom
  3639. p60.Size = Vector3.new(1.25928628, 0.232357651, 0.419762105)
  3640. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3641. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3642. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3643. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3644. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3645. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3646. b60 = Instance.new("BlockMesh", p60)
  3647. b60.Name = "Mesh"
  3648. b60.Scale = Vector3.new(1, 0.602178097, 1)
  3649. p61 = Instance.new("Part", m6)
  3650. p61.BrickColor = BrickColor.new("Black")
  3651. p61.Material = Enum.Material.SmoothPlastic
  3652. p61.CFrame = CFrame.new(0.959281087, 2.73073363, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3653. p61.CanCollide = false
  3654. p61.Locked = true
  3655. p61.FormFactor = Enum.FormFactor.Custom
  3656. p61.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3657. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3658. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3659. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3660. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3661. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3662. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3663. b61 = Instance.new("BlockMesh", p61)
  3664. b61.Name = "Mesh"
  3665. b61.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3666. p62 = Instance.new("WedgePart", m6)
  3667. p62.BrickColor = BrickColor.new("Black")
  3668. p62.Material = Enum.Material.SmoothPlastic
  3669. p62.Name = "Wedge"
  3670. p62.CFrame = CFrame.new(1.16916382, 2.87065434, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3671. p62.CanCollide = false
  3672. p62.Locked = true
  3673. p62.FormFactor = Enum.FormFactor.Custom
  3674. p62.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3675. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3676. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3677. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3678. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3679. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3680. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3681. b62 = Instance.new("SpecialMesh", p62)
  3682. b62.MeshType = Enum.MeshType.Wedge
  3683. b62.Name = "Mesh"
  3684. b62.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3685. p63 = Instance.new("WedgePart", m6)
  3686. p63.BrickColor = BrickColor.new("Lime green")
  3687. p63.Material = Enum.Material.SmoothPlastic
  3688. p63.Name = "Wedge"
  3689. p63.CFrame = CFrame.new(1.37904489, 2.73073268, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3690. p63.CanCollide = false
  3691. p63.Locked = true
  3692. p63.FormFactor = Enum.FormFactor.Custom
  3693. p63.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3694. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3695. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3696. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3697. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3698. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3699. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3700. b63 = Instance.new("SpecialMesh", p63)
  3701. b63.MeshType = Enum.MeshType.Wedge
  3702. b63.Name = "Mesh"
  3703. b63.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3704. p64 = Instance.new("WedgePart", m6)
  3705. p64.BrickColor = BrickColor.new("Black")
  3706. p64.Material = Enum.Material.SmoothPlastic
  3707. p64.Name = "Wedge"
  3708. p64.CFrame = CFrame.new(-0.439923674, 1.68132377, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3709. p64.CanCollide = false
  3710. p64.Locked = true
  3711. p64.FormFactor = Enum.FormFactor.Custom
  3712. p64.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  3713. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3714. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3715. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3716. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3717. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3718. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3719. b64 = Instance.new("SpecialMesh", p64)
  3720. b64.MeshType = Enum.MeshType.Wedge
  3721. b64.Name = "Mesh"
  3722. b64.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3723. p65 = Instance.new("WedgePart", m6)
  3724. p65.BrickColor = BrickColor.new("Black")
  3725. p65.Material = Enum.Material.SmoothPlastic
  3726. p65.Name = "Wedge"
  3727. p65.CFrame = CFrame.new(-0.859687686, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3728. p65.CanCollide = false
  3729. p65.Locked = true
  3730. p65.FormFactor = Enum.FormFactor.Custom
  3731. p65.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3732. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3733. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3734. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3735. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3736. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3737. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3738. b65 = Instance.new("SpecialMesh", p65)
  3739. b65.MeshType = Enum.MeshType.Wedge
  3740. b65.Name = "Mesh"
  3741. b65.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3742. p66 = Instance.new("WedgePart", m6)
  3743. p66.BrickColor = BrickColor.new("Black")
  3744. p66.Material = Enum.Material.SmoothPlastic
  3745. p66.Name = "Wedge"
  3746. p66.CFrame = CFrame.new(-1.55929291, 3.71018267, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3747. p66.CanCollide = false
  3748. p66.Locked = true
  3749. p66.FormFactor = Enum.FormFactor.Custom
  3750. p66.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3751. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3752. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3753. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3754. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3755. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3756. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3757. b66 = Instance.new("SpecialMesh", p66)
  3758. b66.MeshType = Enum.MeshType.Wedge
  3759. b66.Name = "Mesh"
  3760. b66.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3761. p67 = Instance.new("WedgePart", m6)
  3762. p67.BrickColor = BrickColor.new("Black")
  3763. p67.Material = Enum.Material.SmoothPlastic
  3764. p67.Name = "Wedge"
  3765. p67.CFrame = CFrame.new(-0.719767809, 2.31096911, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3766. p67.CanCollide = false
  3767. p67.Locked = true
  3768. p67.FormFactor = Enum.FormFactor.Custom
  3769. p67.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3770. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3771. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3772. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3773. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3774. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3775. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3776. b67 = Instance.new("SpecialMesh", p67)
  3777. b67.MeshType = Enum.MeshType.Wedge
  3778. b67.Name = "Mesh"
  3779. b67.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3780. p68 = Instance.new("WedgePart", m6)
  3781. p68.BrickColor = BrickColor.new("Lime green")
  3782. p68.Name = "Wedge"
  3783. p68.CFrame = CFrame.new(-1.17450571, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3784. p68.CanCollide = false
  3785. p68.Locked = true
  3786. p68.FormFactor = Enum.FormFactor.Custom
  3787. p68.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3788. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3789. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3790. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3791. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3792. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3793. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3794. b68 = Instance.new("SpecialMesh", p68)
  3795. b68.MeshType = Enum.MeshType.Wedge
  3796. b68.Name = "Mesh"
  3797. b68.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3798. p69 = Instance.new("WedgePart", m6)
  3799. p69.BrickColor = BrickColor.new("Lime green")
  3800. p69.Name = "Wedge"
  3801. p69.CFrame = CFrame.new(-1.10454547, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3802. p69.CanCollide = false
  3803. p69.Locked = true
  3804. p69.FormFactor = Enum.FormFactor.Custom
  3805. p69.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3806. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3807. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3808. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3809. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3810. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3811. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. b69 = Instance.new("SpecialMesh", p69)
  3813. b69.MeshType = Enum.MeshType.Wedge
  3814. b69.Name = "Mesh"
  3815. b69.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3816. p70 = Instance.new("WedgePart", m6)
  3817. p70.BrickColor = BrickColor.new("Black")
  3818. p70.Material = Enum.Material.SmoothPlastic
  3819. p70.Name = "Wedge"
  3820. p70.CFrame = CFrame.new(0.889316559, 3.99002528, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3821. p70.CanCollide = false
  3822. p70.Locked = true
  3823. p70.FormFactor = Enum.FormFactor.Custom
  3824. p70.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3825. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3826. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3827. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3828. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3829. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3830. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3831. b70 = Instance.new("SpecialMesh", p70)
  3832. b70.MeshType = Enum.MeshType.Wedge
  3833. b70.Name = "Mesh"
  3834. b70.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3835. p71 = Instance.new("WedgePart", m6)
  3836. p71.BrickColor = BrickColor.new("Lime green")
  3837. p71.Name = "Wedge"
  3838. p71.CFrame = CFrame.new(-0.334977895, 1.47144794, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3839. p71.CanCollide = false
  3840. p71.Locked = true
  3841. p71.FormFactor = Enum.FormFactor.Custom
  3842. p71.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3843. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3844. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3845. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3846. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3847. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3848. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3849. b71 = Instance.new("SpecialMesh", p71)
  3850. b71.MeshType = Enum.MeshType.Wedge
  3851. b71.Name = "Mesh"
  3852. b71.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3853. p72 = Instance.new("WedgePart", m6)
  3854. p72.BrickColor = BrickColor.new("Black")
  3855. p72.Material = Enum.Material.SmoothPlastic
  3856. p72.Name = "Wedge"
  3857. p72.CFrame = CFrame.new(-0.579845786, 2.03112626, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3858. p72.CanCollide = false
  3859. p72.Locked = true
  3860. p72.FormFactor = Enum.FormFactor.Custom
  3861. p72.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3862. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3863. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3864. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3865. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3866. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3867. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3868. b72 = Instance.new("SpecialMesh", p72)
  3869. b72.MeshType = Enum.MeshType.Wedge
  3870. b72.Name = "Mesh"
  3871. b72.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3872. p73 = Instance.new("WedgePart", m6)
  3873. p73.BrickColor = BrickColor.new("Black")
  3874. p73.Material = Enum.Material.SmoothPlastic
  3875. p73.Name = "Wedge"
  3876. p73.CFrame = CFrame.new(-1.41937125, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3877. p73.CanCollide = false
  3878. p73.Locked = true
  3879. p73.FormFactor = Enum.FormFactor.Custom
  3880. p73.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3881. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3882. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3883. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3884. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3885. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3886. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3887. b73 = Instance.new("SpecialMesh", p73)
  3888. b73.MeshType = Enum.MeshType.Wedge
  3889. b73.Name = "Mesh"
  3890. b73.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3891. p74 = Instance.new("WedgePart", m6)
  3892. p74.BrickColor = BrickColor.new("Black")
  3893. p74.Material = Enum.Material.SmoothPlastic
  3894. p74.Name = "Wedge"
  3895. p74.CFrame = CFrame.new(1.16916382, 2.59081125, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3896. p74.CanCollide = false
  3897. p74.Locked = true
  3898. p74.FormFactor = Enum.FormFactor.Custom
  3899. p74.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3900. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3901. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3902. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3903. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3904. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3905. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3906. b74 = Instance.new("SpecialMesh", p74)
  3907. b74.MeshType = Enum.MeshType.Wedge
  3908. b74.Name = "Mesh"
  3909. b74.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3910. p75 = Instance.new("WedgePart", m6)
  3911. p75.BrickColor = BrickColor.new("Black")
  3912. p75.Material = Enum.Material.SmoothPlastic
  3913. p75.Name = "Wedge"
  3914. p75.CFrame = CFrame.new(-0.160081401, 1.68132377, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3915. p75.CanCollide = false
  3916. p75.Locked = true
  3917. p75.FormFactor = Enum.FormFactor.Custom
  3918. p75.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3919. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3920. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3921. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3922. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3923. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3924. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3925. b75 = Instance.new("SpecialMesh", p75)
  3926. b75.MeshType = Enum.MeshType.Wedge
  3927. b75.Name = "Mesh"
  3928. b75.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3929. p76 = Instance.new("WedgePart", m6)
  3930. p76.BrickColor = BrickColor.new("Black")
  3931. p76.Material = Enum.Material.SmoothPlastic
  3932. p76.Name = "Wedge"
  3933. p76.CFrame = CFrame.new(0.819362521, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3934. p76.CanCollide = false
  3935. p76.Locked = true
  3936. p76.FormFactor = Enum.FormFactor.Custom
  3937. p76.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3938. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3939. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3940. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3941. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3942. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3943. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3944. b76 = Instance.new("SpecialMesh", p76)
  3945. b76.MeshType = Enum.MeshType.Wedge
  3946. b76.Name = "Mesh"
  3947. b76.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3948. p77 = Instance.new("WedgePart", m6)
  3949. p77.BrickColor = BrickColor.new("Lime green")
  3950. p77.Material = Enum.Material.SmoothPlastic
  3951. p77.Name = "Wedge"
  3952. p77.CFrame = CFrame.new(-1.55929291, 4.40979004, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3953. p77.CanCollide = false
  3954. p77.Locked = true
  3955. p77.FormFactor = Enum.FormFactor.Custom
  3956. p77.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3957. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3958. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3959. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3960. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3961. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3962. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3963. b77 = Instance.new("SpecialMesh", p77)
  3964. b77.MeshType = Enum.MeshType.Wedge
  3965. b77.Name = "Mesh"
  3966. b77.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3967. p78 = Instance.new("WedgePart", m6)
  3968. p78.BrickColor = BrickColor.new("Black")
  3969. p78.Material = Enum.Material.SmoothPlastic
  3970. p78.Name = "Wedge"
  3971. p78.CFrame = CFrame.new(-1.34941173, 4.54971123, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3972. p78.CanCollide = false
  3973. p78.Locked = true
  3974. p78.FormFactor = Enum.FormFactor.Custom
  3975. p78.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3976. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3977. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3978. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3979. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3980. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3981. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3982. b78 = Instance.new("SpecialMesh", p78)
  3983. b78.MeshType = Enum.MeshType.Wedge
  3984. b78.Name = "Mesh"
  3985. b78.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3986. p79 = Instance.new("WedgePart", m6)
  3987. p79.BrickColor = BrickColor.new("Lime green")
  3988. p79.Material = Enum.Material.SmoothPlastic
  3989. p79.Name = "Wedge"
  3990. p79.CFrame = CFrame.new(-1.6992141, 3.85010386, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3991. p79.CanCollide = false
  3992. p79.Locked = true
  3993. p79.FormFactor = Enum.FormFactor.Custom
  3994. p79.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3995. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3996. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3997. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3998. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3999. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4000. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4001. b79 = Instance.new("SpecialMesh", p79)
  4002. b79.MeshType = Enum.MeshType.Wedge
  4003. b79.Name = "Mesh"
  4004. b79.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4005. p80 = Instance.new("WedgePart", m6)
  4006. p80.BrickColor = BrickColor.new("Black")
  4007. p80.Material = Enum.Material.SmoothPlastic
  4008. p80.Name = "Wedge"
  4009. p80.CFrame = CFrame.new(-1.6992135, 3.1504972, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4010. p80.CanCollide = false
  4011. p80.Locked = true
  4012. p80.FormFactor = Enum.FormFactor.Custom
  4013. p80.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4014. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4015. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4016. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4017. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4018. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4019. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4020. b80 = Instance.new("SpecialMesh", p80)
  4021. b80.MeshType = Enum.MeshType.Wedge
  4022. b80.Name = "Mesh"
  4023. b80.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4024. w1 = Instance.new("Weld", p1)
  4025. w1.Name = "Joint"
  4026. w1.Part0 = p1
  4027. w1.C0 = CFrame.new(0, 0, 0.139921591, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4028. w1.Part1 = p47
  4029. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4030. w2 = Instance.new("Weld", p2)
  4031. w2.Name = "Joint"
  4032. w2.Part0 = p2
  4033. w2.C0 = CFrame.new(0, -2.7097974e-006, 0.139918938, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4034. w2.Part1 = p11
  4035. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4036. w3 = Instance.new("Weld", p3)
  4037. w3.Name = "Joint"
  4038. w3.Part0 = p3
  4039. w3.C0 = CFrame.new(0, 0.559684455, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4040. w3.Part1 = p50
  4041. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4042. w4 = Instance.new("Weld", p4)
  4043. w4.Name = "Joint"
  4044. w4.Part0 = p4
  4045. w4.C0 = CFrame.new(-0.139921427, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4046. w4.Part1 = p5
  4047. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4048. w5 = Instance.new("Weld", p5)
  4049. w5.Name = "Joint"
  4050. w5.Part0 = p5
  4051. w5.C0 = CFrame.new(-0.139920607, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4052. w5.Part1 = p27
  4053. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4054. w6 = Instance.new("Weld", p6)
  4055. w6.Name = "Joint"
  4056. w6.Part0 = p6
  4057. w6.C0 = CFrame.new(6.98293934e-006, 0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4058. w6.Part1 = p14
  4059. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4060. w7 = Instance.new("Weld", p7)
  4061. w7.Name = "Joint"
  4062. w7.Part0 = p7
  4063. w7.C0 = CFrame.new(-0.139921531, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4064. w7.Part1 = p10
  4065. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4066. w8 = Instance.new("Weld", p8)
  4067. w8.Name = "Joint"
  4068. w8.Part0 = p8
  4069. w8.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4070. w8.Part1 = p32
  4071. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4072. w9 = Instance.new("Weld", p9)
  4073. w9.Name = "Joint"
  4074. w9.Part0 = p9
  4075. w9.C0 = CFrame.new(0, 0.279842764, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4076. w9.Part1 = p16
  4077. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4078. w10 = Instance.new("Weld", p10)
  4079. w10.Name = "Joint"
  4080. w10.Part0 = p10
  4081. w10.C0 = CFrame.new(-0.139921531, 1.04222977e-006, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4082. w10.Part1 = p61
  4083. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4084. w11 = Instance.new("Weld", p11)
  4085. w11.Name = "Joint"
  4086. w11.Part0 = p11
  4087. w11.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4088. w11.Part1 = p13
  4089. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4090. w12 = Instance.new("Weld", p12)
  4091. w12.Name = "Joint"
  4092. w12.Part0 = p12
  4093. w12.C0 = CFrame.new(-0.139921427, -0.139921635, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4094. w12.Part1 = p29
  4095. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4096. w13 = Instance.new("Weld", p13)
  4097. w13.Name = "Joint"
  4098. w13.Part0 = p13
  4099. w13.C0 = CFrame.new(0.839523137, 0.349802732, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4100. w13.Part1 = p48
  4101. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4102. w14 = Instance.new("Weld", p14)
  4103. w14.Name = "Joint"
  4104. w14.Part0 = p14
  4105. w14.C0 = CFrame.new(-6.98293934e-006, 1.25067584e-006, -0.139921844, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4106. w14.Part1 = p60
  4107. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4108. w15 = Instance.new("Weld", p15)
  4109. w15.Name = "Joint"
  4110. w15.Part0 = p15
  4111. w15.C0 = CFrame.new(-0.139920712, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4112. w15.Part1 = p17
  4113. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4114. w16 = Instance.new("Weld", p16)
  4115. w16.Name = "Joint"
  4116. w16.Part0 = p16
  4117. w16.C0 = CFrame.new(1.45912168e-006, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4118. w16.Part1 = p48
  4119. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4120. w17 = Instance.new("Weld", p17)
  4121. w17.Name = "Joint"
  4122. w17.Part0 = p17
  4123. w17.C0 = CFrame.new(-0.97944206, 0.0699603036, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4124. w17.Part1 = p50
  4125. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4126. w18 = Instance.new("Weld", p18)
  4127. w18.Name = "Joint"
  4128. w18.Part0 = p18
  4129. w18.C0 = CFrame.new(-0.979444683, 0.0699603036, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4130. w18.Part1 = p50
  4131. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4132. w19 = Instance.new("Weld", p19)
  4133. w19.Name = "Joint"
  4134. w19.Part0 = p19
  4135. w19.C0 = CFrame.new(0, -0.2098784, 0.0349924229, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4136. w19.Part1 = p54
  4137. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4138. w20 = Instance.new("Weld", p20)
  4139. w20.Name = "Joint"
  4140. w20.Part0 = p20
  4141. w20.C0 = CFrame.new(-0.139921427, -0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4142. w20.Part1 = p21
  4143. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4144. w21 = Instance.new("Weld", p21)
  4145. w21.Name = "Joint"
  4146. w21.Part0 = p21
  4147. w21.C0 = CFrame.new(-1.25928402, 0.0699627995, -1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4148. w21.Part1 = p37
  4149. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4150. w22 = Instance.new("Weld", p22)
  4151. w22.Name = "Joint"
  4152. w22.Part0 = p22
  4153. w22.C0 = CFrame.new(0, -0.209878504, 0.0349705629, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4154. w22.Part1 = p8
  4155. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4156. w23 = Instance.new("Weld", p23)
  4157. w23.Name = "Joint"
  4158. w23.Part0 = p23
  4159. w23.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4160. w23.Part1 = p35
  4161. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4162. w24 = Instance.new("Weld", p24)
  4163. w24.Name = "Joint"
  4164. w24.Part0 = p24
  4165. w24.C0 = CFrame.new(8.33783815e-007, -0.209883824, 1.25928962, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4166. w24.Part1 = p48
  4167. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4168. w25 = Instance.new("Weld", p25)
  4169. w25.Name = "Joint"
  4170. w25.Part0 = p25
  4171. w25.C0 = CFrame.new(0, -0.209878504, 0.0349897929, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4172. w25.Part1 = p8
  4173. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4174. w26 = Instance.new("Weld", p26)
  4175. w26.Name = "Joint"
  4176. w26.Part0 = p26
  4177. w26.C0 = CFrame.new(0, -3.33513526e-006, 0.769568086, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4178. w26.Part1 = p6
  4179. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4180. w27 = Instance.new("Weld", p27)
  4181. w27.Name = "Joint"
  4182. w27.Part0 = p27
  4183. w27.C0 = CFrame.new(-1.25928354, -0.0699575916, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4184. w27.Part1 = p48
  4185. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4186. w28 = Instance.new("Weld", p28)
  4187. w28.Name = "Joint"
  4188. w28.Part0 = p28
  4189. w28.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4190. w28.Part1 = p35
  4191. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4192. w29 = Instance.new("Weld", p29)
  4193. w29.Name = "Joint"
  4194. w29.Part0 = p29
  4195. w29.C0 = CFrame.new(-1.25928354, 0.0699634254, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4196. w29.Part1 = p37
  4197. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4198. w30 = Instance.new("Weld", p30)
  4199. w30.Name = "Joint"
  4200. w30.Part0 = p30
  4201. w30.C0 = CFrame.new(0, -0.139920816, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4202. w30.Part1 = p20
  4203. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4204. w31 = Instance.new("Weld", p31)
  4205. w31.Name = "Joint"
  4206. w31.Part0 = p31
  4207. w31.C0 = CFrame.new(0, -3.02246644e-006, 0.419769108, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4208. w31.Part1 = p16
  4209. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4210. w32 = Instance.new("Weld", p32)
  4211. w32.Name = "Joint"
  4212. w32.Part0 = p32
  4213. w32.C0 = CFrame.new(-0.839526176, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4214. w32.Part1 = p48
  4215. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4216. w33 = Instance.new("Weld", p33)
  4217. w33.Name = "Joint"
  4218. w33.Part0 = p33
  4219. w33.C0 = CFrame.new(1.3548987e-006, -0.279842436, 0.0699624866, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4220. w33.Part1 = p21
  4221. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4222. w34 = Instance.new("Weld", p34)
  4223. w34.Name = "Joint"
  4224. w34.Part0 = p34
  4225. w34.C0 = CFrame.new(0, -0.279842019, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4226. w34.Part1 = p27
  4227. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4228. w35 = Instance.new("Weld", p35)
  4229. w35.Name = "Joint"
  4230. w35.Part0 = p35
  4231. w35.C0 = CFrame.new(-0.139920607, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4232. w35.Part1 = p58
  4233. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4234. w36 = Instance.new("Weld", p36)
  4235. w36.Name = "Joint"
  4236. w36.Part0 = p36
  4237. w36.C0 = CFrame.new(0, -0.279843062, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4238. w36.Part1 = p29
  4239. w36.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4240. w37 = Instance.new("Weld", p37)
  4241. w37.Name = "Joint"
  4242. w37.Part0 = p37
  4243. w37.C0 = CFrame.new(0, 0.559682429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4244. w37.Part1 = p3
  4245. w37.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4246. w38 = Instance.new("Weld", p38)
  4247. w38.Name = "Joint"
  4248. w38.Part0 = p38
  4249. w38.C0 = CFrame.new(0, 0, 0.13992101, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4250. w38.Part1 = p4
  4251. w38.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4252. w39 = Instance.new("Weld", p39)
  4253. w39.Name = "Joint"
  4254. w39.Part0 = p39
  4255. w39.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4256. w39.Part1 = p12
  4257. w39.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4258. w40 = Instance.new("Weld", p40)
  4259. w40.Name = "Joint"
  4260. w40.Part0 = p40
  4261. w40.C0 = CFrame.new(0, -0.279843479, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4262. w40.Part1 = p52
  4263. w40.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4264. w41 = Instance.new("Weld", p41)
  4265. w41.Name = "Joint"
  4266. w41.Part0 = p41
  4267. w41.C0 = CFrame.new(0, -0.139921427, 0.0699607134, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4268. w41.Part1 = p5
  4269. w41.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4270. w42 = Instance.new("Weld", p42)
  4271. w42.Name = "Joint"
  4272. w42.Part0 = p42
  4273. w42.C0 = CFrame.new(0, -2.7097974e-006, 0.139925033, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4274. w42.Part1 = p8
  4275. w42.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4276. w43 = Instance.new("Weld", p43)
  4277. w43.Name = "Joint"
  4278. w43.Part0 = p43
  4279. w43.C0 = CFrame.new(0, -0.139921218, 0.0699607134, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4280. w43.Part1 = p5
  4281. w43.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4282. w44 = Instance.new("Weld", p44)
  4283. w44.Name = "Joint"
  4284. w44.Part0 = p44
  4285. w44.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4286. w44.Part1 = p15
  4287. w44.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4288. w45 = Instance.new("Weld", p45)
  4289. w45.Name = "Joint"
  4290. w45.Part0 = p45
  4291. w45.C0 = CFrame.new(0, -2.7097974e-006, 0.139921531, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4292. w45.Part1 = p11
  4293. w45.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4294. w46 = Instance.new("Weld", p46)
  4295. w46.Name = "Joint"
  4296. w46.Part0 = p46
  4297. w46.C0 = CFrame.new(0, -3.33513526e-006, 0.769562066, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4298. w46.Part1 = p6
  4299. w46.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4300. w47 = Instance.new("Weld", p47)
  4301. w47.Name = "Joint"
  4302. w47.Part0 = p47
  4303. w47.C0 = CFrame.new(-0.139920652, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4304. w47.Part1 = p18
  4305. w47.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4306. w48 = Instance.new("Weld", p48)
  4307. w48.Name = "Joint"
  4308. w48.Part0 = p48
  4309. w48.C0 = CFrame.new(0, 0.559684873, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4310. w48.Part1 = p37
  4311. w48.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4312. w49 = Instance.new("Weld", p49)
  4313. w49.Name = "Joint"
  4314. w49.Part0 = p49
  4315. w49.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4316. w49.Part1 = p47
  4317. w49.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4318. w50 = Instance.new("Weld", p50)
  4319. w50.Name = "Joint"
  4320. w50.Part0 = p50
  4321. w50.C0 = CFrame.new(0, 0.349801898, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4322. w50.Part1 = p6
  4323. w50.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4324. w51 = Instance.new("Weld", p51)
  4325. w51.Name = "Joint"
  4326. w51.Part0 = p51
  4327. w51.C0 = CFrame.new(-0.139921427, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4328. w51.Part1 = p52
  4329. w51.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4330. w52 = Instance.new("Weld", p52)
  4331. w52.Name = "Joint"
  4332. w52.Part0 = p52
  4333. w52.C0 = CFrame.new(-1.11936295, 0.0699607134, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4334. w52.Part1 = p3
  4335. w52.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4336. w53 = Instance.new("Weld", p53)
  4337. w53.Name = "Joint"
  4338. w53.Part0 = p53
  4339. w53.C0 = CFrame.new(0, 3.9604729e-006, 0.279851943, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4340. w53.Part1 = p9
  4341. w53.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4342. w54 = Instance.new("Weld", p54)
  4343. w54.Name = "Joint"
  4344. w54.Part0 = p54
  4345. w54.C0 = CFrame.new(0, 0.349802941, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4346. w54.Part1 = p9
  4347. w54.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4348. w55 = Instance.new("Weld", p55)
  4349. w55.Name = "Joint"
  4350. w55.Part0 = p55
  4351. w55.C0 = CFrame.new(0, -2.7097974e-006, 0.139916331, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4352. w55.Part1 = p8
  4353. w55.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4354. w56 = Instance.new("Weld", p56)
  4355. w56.Name = "Joint"
  4356. w56.Part0 = p56
  4357. w56.C0 = CFrame.new(0, 0, 0.139921322, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4358. w56.Part1 = p20
  4359. w56.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4360. w57 = Instance.new("Weld", p57)
  4361. w57.Name = "Joint"
  4362. w57.Part0 = p57
  4363. w57.C0 = CFrame.new(0, -0.139921427, -0.0699620694, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4364. w57.Part1 = p47
  4365. w57.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4366. w58 = Instance.new("Weld", p58)
  4367. w58.Name = "Joint"
  4368. w58.Part0 = p58
  4369. w58.C0 = CFrame.new(-1.11936343, 0.0699607134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4370. w58.Part1 = p3
  4371. w58.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4372. w59 = Instance.new("Weld", p59)
  4373. w59.Name = "Joint"
  4374. w59.Part0 = p59
  4375. w59.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4376. w59.Part1 = p32
  4377. w59.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4378. w60 = Instance.new("Weld", p61)
  4379. w60.Name = "Joint"
  4380. w60.Part0 = p61
  4381. w60.C0 = CFrame.new(-1.25928962, -0.0699586272, -8.33783815e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4382. w60.Part1 = p48
  4383. w60.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4384. w61 = Instance.new("Weld", p62)
  4385. w61.Name = "Joint"
  4386. w61.Part0 = p62
  4387. w61.C0 = CFrame.new(0, -0.139921635, 0.0699612424, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4388. w61.Part1 = p10
  4389. w61.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4390. w62 = Instance.new("Weld", p63)
  4391. w62.Name = "Joint"
  4392. w62.Part0 = p63
  4393. w62.C0 = CFrame.new(0, 0, 0.139920712, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4394. w62.Part1 = p7
  4395. w62.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4396. w63 = Instance.new("Weld", p64)
  4397. w63.Name = "Joint"
  4398. w63.Part0 = p64
  4399. w63.C0 = CFrame.new(0, -2.60557431e-006, 0.139913708, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4400. w63.Part1 = p54
  4401. w63.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4402. w64 = Instance.new("Weld", p65)
  4403. w64.Name = "Joint"
  4404. w64.Part0 = p65
  4405. w64.C0 = CFrame.new(0, -2.50135167e-006, 0.279843956, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4406. w64.Part1 = p13
  4407. w64.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4408. w65 = Instance.new("Weld", p66)
  4409. w65.Name = "Joint"
  4410. w65.Part0 = p66
  4411. w65.C0 = CFrame.new(0, 1.04222977e-006, 0.139921427, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4412. w65.Part1 = p52
  4413. w65.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4414. w66 = Instance.new("Weld", p67)
  4415. w66.Name = "Joint"
  4416. w66.Part0 = p67
  4417. w66.C0 = CFrame.new(0, -3.02246644e-006, 0.419757843, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4418. w66.Part1 = p16
  4419. w66.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4420. w67 = Instance.new("Weld", p68)
  4421. w67.Name = "Joint"
  4422. w67.Part0 = p68
  4423. w67.C0 = CFrame.new(0, -0.209878504, 0.0349741057, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4424. w67.Part1 = p11
  4425. w67.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4426. w68 = Instance.new("Weld", p69)
  4427. w68.Name = "Joint"
  4428. w68.Part0 = p69
  4429. w68.C0 = CFrame.new(0, -0.209878504, 0.0349861942, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4430. w68.Part1 = p11
  4431. w68.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4432. w69 = Instance.new("Weld", p70)
  4433. w69.Name = "Joint"
  4434. w69.Part0 = p70
  4435. w69.C0 = CFrame.new(0, -0.279843479, 0.0699616596, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4436. w69.Part1 = p58
  4437. w69.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4438. w70 = Instance.new("Weld", p71)
  4439. w70.Name = "Joint"
  4440. w70.Part0 = p71
  4441. w70.C0 = CFrame.new(0, -0.2098784, 0.0349679329, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4442. w70.Part1 = p54
  4443. w70.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4444. w71 = Instance.new("Weld", p72)
  4445. w71.Name = "Joint"
  4446. w71.Part0 = p72
  4447. w71.C0 = CFrame.new(0, -3.02246644e-006, 0.27983579, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4448. w71.Part1 = p9
  4449. w71.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4450. w72 = Instance.new("Weld", p73)
  4451. w72.Name = "Joint"
  4452. w72.Part0 = p73
  4453. w72.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4454. w72.Part1 = p13
  4455. w72.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4456. w73 = Instance.new("Weld", p74)
  4457. w73.Name = "Joint"
  4458. w73.Part0 = p74
  4459. w73.C0 = CFrame.new(0, -0.139921427, 0.0699612424, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4460. w73.Part1 = p10
  4461. w73.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4462. w74 = Instance.new("Weld", p75)
  4463. w74.Name = "Joint"
  4464. w74.Part0 = p75
  4465. w74.C0 = CFrame.new(0, -2.60557431e-006, 0.139928564, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4466. w74.Part1 = p54
  4467. w74.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4468. w75 = Instance.new("Weld", p76)
  4469. w75.Name = "Joint"
  4470. w75.Part0 = p76
  4471. w75.C0 = CFrame.new(0, -2.50135167e-006, 0.27984485, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4472. w75.Part1 = p32
  4473. w75.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4474. w76 = Instance.new("Weld", p77)
  4475. w76.Name = "Joint"
  4476. w76.Part0 = p77
  4477. w76.C0 = CFrame.new(0, 0, 0.139921635, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4478. w76.Part1 = p15
  4479. w76.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4480. w77 = Instance.new("Weld", p78)
  4481. w77.Name = "Joint"
  4482. w77.Part0 = p78
  4483. w77.C0 = CFrame.new(0, -0.139921427, -0.0699594691, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4484. w77.Part1 = p15
  4485. w77.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4486. w78 = Instance.new("Weld", p79)
  4487. w78.Name = "Joint"
  4488. w78.Part0 = p79
  4489. w78.C0 = CFrame.new(0, 0, 0.139921218, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4490. w78.Part1 = p51
  4491. w78.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4492. w79 = Instance.new("Weld", p80)
  4493. w79.Name = "Joint"
  4494. w79.Part0 = p80
  4495. w79.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4496. w79.Part1 = p12
  4497. w79.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4498. m6.Parent = torso
  4499. m6:MakeJoints()
  4500. ----------------------------------------------------
  4501. local cor6 = Instance.new("Part", torso.Cloak)
  4502. cor6.Name = "Thingy"
  4503. cor6.Locked = true
  4504. cor6.BottomSurface = 0
  4505. cor6.CanCollide = false
  4506. cor6.Size = Vector3.new(1,1,1)
  4507. cor6.Transparency = 1
  4508. cor6.TopSurface = 0
  4509. corw6 = Instance.new("Weld", cor6)
  4510. corw6.Part0 = torso
  4511. corw6.Part1 = cor6
  4512. corw6.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4513. corw6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4514. weld6 = Instance.new("Weld", torso.Cloak.NeckPart)
  4515. weld6.Part0 = cor6
  4516. weld6.Part1 = torso.Cloak.NeckPart
  4517. weld6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4518. --Amulet
  4519. m7 = Instance.new("Model")
  4520. m7.Name = "Amulet"
  4521. p1 = Instance.new("Part", m7)
  4522. p1.BrickColor = BrickColor.new("Lime green")
  4523. p1.Material = Enum.Material.Neon
  4524. p1.Name = "Center"
  4525. p1.CFrame = CFrame.new(-1.0658141e-014, 14.4125643, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4526. p1.CanCollide = false
  4527. p1.Locked = true
  4528. p1.FormFactor = Enum.FormFactor.Custom
  4529. p1.Shape = Enum.PartType.Cylinder
  4530. p1.Size = Vector3.new(0.5, 0.5, 0.5)
  4531. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4532. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4533. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4534. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4535. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4536. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4537. p2 = Instance.new("Part", m7)
  4538. p2.BrickColor = BrickColor.new("Really black")
  4539. p2.Material = Enum.Material.Metal
  4540. p2.Name = "Bottom"
  4541. p2.CFrame = CFrame.new(1.19209318e-007, 14.1625719, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4542. p2.CanCollide = false
  4543. p2.Locked = true
  4544. p2.FormFactor = Enum.FormFactor.Custom
  4545. p2.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  4546. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4547. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4548. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4549. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4550. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4551. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4552. b1 = Instance.new("SpecialMesh", p2)
  4553. b1.MeshType = Enum.MeshType.Cylinder
  4554. b1.Name = "Mesh"
  4555. p3 = Instance.new("Part", m7)
  4556. p3.BrickColor = BrickColor.new("Really black")
  4557. p3.Material = Enum.Material.Metal
  4558. p3.CFrame = CFrame.new(1.23580463e-007, 14.4625673, -0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4559. p3.CanCollide = false
  4560. p3.Locked = true
  4561. p3.FormFactor = Enum.FormFactor.Custom
  4562. p3.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4563. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4564. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4565. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4566. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4567. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4568. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4569. b2 = Instance.new("SpecialMesh", p3)
  4570. b2.MeshType = Enum.MeshType.Brick
  4571. b2.Name = "Mesh"
  4572. b2.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4573. p4 = Instance.new("Part", m7)
  4574. p4.BrickColor = BrickColor.new("Really black")
  4575. p4.Material = Enum.Material.Metal
  4576. p4.CFrame = CFrame.new(1.19209318e-007, 14.4625673, 0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4577. p4.CanCollide = false
  4578. p4.Locked = true
  4579. p4.FormFactor = Enum.FormFactor.Custom
  4580. p4.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4581. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4582. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4583. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4584. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4585. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4586. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4587. b3 = Instance.new("SpecialMesh", p4)
  4588. b3.MeshType = Enum.MeshType.Brick
  4589. b3.Name = "Mesh"
  4590. b3.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4591. p5 = Instance.new("Part", m7)
  4592. p5.BrickColor = BrickColor.new("Really black")
  4593. p5.Material = Enum.Material.Metal
  4594. 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)
  4595. p5.CanCollide = false
  4596. p5.Locked = true
  4597. p5.FormFactor = Enum.FormFactor.Custom
  4598. p5.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4599. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4600. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4601. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4602. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4603. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4604. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4605. b4 = Instance.new("SpecialMesh", p5)
  4606. b4.MeshType = Enum.MeshType.Brick
  4607. b4.Name = "Mesh"
  4608. b4.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4609. p6 = Instance.new("Part", m7)
  4610. p6.BrickColor = BrickColor.new("Really black")
  4611. p6.Material = Enum.Material.Metal
  4612. 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)
  4613. p6.CanCollide = false
  4614. p6.Locked = true
  4615. p6.FormFactor = Enum.FormFactor.Custom
  4616. p6.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4617. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4618. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4619. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4620. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4621. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4622. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4623. b5 = Instance.new("SpecialMesh", p6)
  4624. b5.MeshType = Enum.MeshType.Brick
  4625. b5.Name = "Mesh"
  4626. b5.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4627. p7 = Instance.new("Part", m7)
  4628. p7.BrickColor = BrickColor.new("Really black")
  4629. p7.Material = Enum.Material.Metal
  4630. 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)
  4631. p7.CanCollide = false
  4632. p7.Locked = true
  4633. p7.FormFactor = Enum.FormFactor.Custom
  4634. p7.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4635. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4636. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4637. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4638. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4639. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4640. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4641. b6 = Instance.new("SpecialMesh", p7)
  4642. b6.MeshType = Enum.MeshType.Brick
  4643. b6.Name = "Mesh"
  4644. b6.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4645. p8 = Instance.new("Part", m7)
  4646. p8.BrickColor = BrickColor.new("Really black")
  4647. p8.Material = Enum.Material.Metal
  4648. 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)
  4649. p8.CanCollide = false
  4650. p8.Locked = true
  4651. p8.FormFactor = Enum.FormFactor.Custom
  4652. p8.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4653. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4654. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4655. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4656. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4657. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4658. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4659. b7 = Instance.new("SpecialMesh", p8)
  4660. b7.MeshType = Enum.MeshType.Brick
  4661. b7.Name = "Mesh"
  4662. b7.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4663. p9 = Instance.new("Part", m7)
  4664. p9.BrickColor = BrickColor.new("Really black")
  4665. p9.Material = Enum.Material.Metal
  4666. p9.CFrame = CFrame.new(0.280000091, 14.4625673, -1.64313008e-014, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  4667. p9.CanCollide = false
  4668. p9.Locked = true
  4669. p9.FormFactor = Enum.FormFactor.Custom
  4670. p9.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4671. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4672. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4673. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4674. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4675. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4676. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4677. b8 = Instance.new("SpecialMesh", p9)
  4678. b8.MeshType = Enum.MeshType.Brick
  4679. b8.Name = "Mesh"
  4680. b8.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4681. p10 = Instance.new("Part", m7)
  4682. p10.BrickColor = BrickColor.new("Really black")
  4683. p10.Material = Enum.Material.Metal
  4684. p10.CFrame = CFrame.new(-0.279999852, 14.4625673, -1.49011772e-008, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  4685. p10.CanCollide = false
  4686. p10.Locked = true
  4687. p10.FormFactor = Enum.FormFactor.Custom
  4688. p10.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4689. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4690. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4691. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4692. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4693. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4694. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4695. b9 = Instance.new("SpecialMesh", p10)
  4696. b9.MeshType = Enum.MeshType.Brick
  4697. b9.Name = "Mesh"
  4698. b9.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4699. p11 = Instance.new("Part", m7)
  4700. p11.BrickColor = BrickColor.new("Really black")
  4701. p11.Material = Enum.Material.Metal
  4702. 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)
  4703. p11.CanCollide = false
  4704. p11.Locked = true
  4705. p11.FormFactor = Enum.FormFactor.Custom
  4706. p11.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4707. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4708. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4709. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4710. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4711. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4712. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4713. b10 = Instance.new("SpecialMesh", p11)
  4714. b10.MeshType = Enum.MeshType.Brick
  4715. b10.Name = "Mesh"
  4716. b10.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4717. p12 = Instance.new("Part", m7)
  4718. p12.BrickColor = BrickColor.new("Really black")
  4719. p12.Material = Enum.Material.Metal
  4720. 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)
  4721. p12.CanCollide = false
  4722. p12.Locked = true
  4723. p12.FormFactor = Enum.FormFactor.Custom
  4724. p12.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4725. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4726. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4727. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4728. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4729. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4730. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4731. b11 = Instance.new("SpecialMesh", p12)
  4732. b11.MeshType = Enum.MeshType.Brick
  4733. b11.Name = "Mesh"
  4734. b11.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4735. p13 = Instance.new("Part", m7)
  4736. p13.BrickColor = BrickColor.new("Really black")
  4737. p13.Material = Enum.Material.Metal
  4738. 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)
  4739. p13.CanCollide = false
  4740. p13.Locked = true
  4741. p13.FormFactor = Enum.FormFactor.Custom
  4742. p13.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4743. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4744. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4745. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4746. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4747. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4748. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4749. b12 = Instance.new("SpecialMesh", p13)
  4750. b12.MeshType = Enum.MeshType.Brick
  4751. b12.Name = "Mesh"
  4752. b12.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4753. p14 = Instance.new("Part", m7)
  4754. p14.BrickColor = BrickColor.new("Really black")
  4755. p14.Material = Enum.Material.Metal
  4756. 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)
  4757. p14.CanCollide = false
  4758. p14.Locked = true
  4759. p14.FormFactor = Enum.FormFactor.Custom
  4760. p14.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4761. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4762. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4763. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4764. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4765. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4766. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4767. b13 = Instance.new("SpecialMesh", p14)
  4768. b13.MeshType = Enum.MeshType.Brick
  4769. b13.Name = "Mesh"
  4770. b13.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4771. p15 = Instance.new("Part", m7)
  4772. p15.BrickColor = BrickColor.new("Really black")
  4773. p15.Material = Enum.Material.Metal
  4774. p15.Name = "Top"
  4775. p15.CFrame = CFrame.new(0, 14.7125645, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4776. p15.CanCollide = false
  4777. p15.Locked = true
  4778. p15.FormFactor = Enum.FormFactor.Custom
  4779. p15.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  4780. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4781. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4782. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4783. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4784. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4785. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4786. b14 = Instance.new("SpecialMesh", p15)
  4787. b14.MeshType = Enum.MeshType.Cylinder
  4788. b14.Name = "Mesh"
  4789. w1 = Instance.new("Weld", p1)
  4790. w1.Name = "Joint"
  4791. w1.Part0 = p1
  4792. w1.C0 = CFrame.new(0.300000191, -1.31134357e-008, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4793. w1.Part1 = p15
  4794. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4795. w2 = Instance.new("Weld", p2)
  4796. w2.Name = "Joint"
  4797. w2.Part0 = p2
  4798. w2.C0 = CFrame.new(0.249992371, 1.08281824e-007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4799. w2.Part1 = p1
  4800. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4801. w3 = Instance.new("Weld", p3)
  4802. w3.Name = "Joint"
  4803. w3.Part0 = p3
  4804. w3.C0 = CFrame.new(-0.0500030518, 1.25766178e-007, 0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4805. w3.Part1 = p1
  4806. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4807. w4 = Instance.new("Weld", p4)
  4808. w4.Name = "Joint"
  4809. w4.Part0 = p4
  4810. w4.C0 = CFrame.new(-0.0500030518, 1.21395033e-007, -0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4811. w4.Part1 = p1
  4812. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4813. w5 = Instance.new("Weld", p5)
  4814. w5.Name = "Joint"
  4815. w5.Part0 = p5
  4816. 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)
  4817. w5.Part1 = p1
  4818. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4819. w6 = Instance.new("Weld", p6)
  4820. w6.Name = "Joint"
  4821. w6.Part0 = p6
  4822. 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)
  4823. w6.Part1 = p1
  4824. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4825. w7 = Instance.new("Weld", p7)
  4826. w7.Name = "Joint"
  4827. w7.Part0 = p7
  4828. 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)
  4829. w7.Part1 = p1
  4830. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4831. w8 = Instance.new("Weld", p8)
  4832. w8.Name = "Joint"
  4833. w8.Part0 = p8
  4834. 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)
  4835. w8.Part1 = p1
  4836. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4837. w9 = Instance.new("Weld", p9)
  4838. w9.Name = "Joint"
  4839. w9.Part0 = p9
  4840. 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)
  4841. w9.Part1 = p1
  4842. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4843. w10 = Instance.new("Weld", p10)
  4844. w10.Name = "Joint"
  4845. w10.Part0 = p10
  4846. 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)
  4847. w10.Part1 = p1
  4848. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4849. w11 = Instance.new("Weld", p11)
  4850. w11.Name = "Joint"
  4851. w11.Part0 = p11
  4852. 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)
  4853. w11.Part1 = p1
  4854. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4855. w12 = Instance.new("Weld", p12)
  4856. w12.Name = "Joint"
  4857. w12.Part0 = p12
  4858. 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)
  4859. w12.Part1 = p1
  4860. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4861. w13 = Instance.new("Weld", p13)
  4862. w13.Name = "Joint"
  4863. w13.Part0 = p13
  4864. 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)
  4865. w13.Part1 = p1
  4866. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4867. w14 = Instance.new("Weld", p14)
  4868. w14.Name = "Joint"
  4869. w14.Part0 = p14
  4870. 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)
  4871. w14.Part1 = p1
  4872. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4873. m7.Parent = torso
  4874. m7:MakeJoints()
  4875. ----------------------------------------------------
  4876. local cor7 = Instance.new("Part", torso.Amulet)
  4877. cor7.Name = "Thingy"
  4878. cor7.Locked = true
  4879. cor7.BottomSurface = 0
  4880. cor7.CanCollide = false
  4881. cor7.Size = Vector3.new(1, 1, 1)
  4882. cor7.Transparency = 1
  4883. cor7.TopSurface = 0
  4884. corw7 = Instance.new("Weld", cor7)
  4885. corw7.Part0 = torso.Torso.Connection
  4886. corw7.Part1 = cor7
  4887. corw7.C0 = CFrame.new(0, 0.26, 0.1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  4888. corw7.C1 = CFrame.new(0, -0.2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(140))
  4889. weld7 = Instance.new("Weld", torso.Amulet)
  4890. weld7.Part0 = cor7
  4891. weld7.Part1 = torso.Amulet.Top
  4892. weld7.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4893. --Zyrodoxa
  4894. m8 = Instance.new("Model")
  4895. m8.Name = "Zyrodoxa"
  4896. p1 = Instance.new("Part", m8)
  4897. p1.BrickColor = BrickColor.new("Really black")
  4898. p1.Material = Enum.Material.Metal
  4899. p1.Reflectance = 0.40000000596046
  4900. p1.Name = "Block"
  4901. 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)
  4902. p1.CanCollide = false
  4903. p1.Locked = true
  4904. p1.FormFactor = Enum.FormFactor.Custom
  4905. p1.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4906. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4907. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4908. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4909. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4910. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4911. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4912. b1 = Instance.new("BlockMesh", p1)
  4913. b1.Name = "Mesh"
  4914. b1.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  4915. p2 = Instance.new("Part", m8)
  4916. p2.BrickColor = BrickColor.new("Black")
  4917. p2.Material = Enum.Material.Metal
  4918. p2.Reflectance = 0.40000000596046
  4919. p2.Name = "Block"
  4920. 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)
  4921. p2.CanCollide = false
  4922. p2.Locked = true
  4923. p2.FormFactor = Enum.FormFactor.Custom
  4924. p2.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4925. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4926. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4927. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4928. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4929. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4930. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4931. b2 = Instance.new("BlockMesh", p2)
  4932. b2.Name = "Mesh"
  4933. b2.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  4934. p3 = Instance.new("Part", m8)
  4935. p3.BrickColor = BrickColor.new("Black")
  4936. p3.Material = Enum.Material.Metal
  4937. p3.Reflectance = 0.40000000596046
  4938. p3.Name = "Block"
  4939. 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)
  4940. p3.CanCollide = false
  4941. p3.Locked = true
  4942. p3.FormFactor = Enum.FormFactor.Custom
  4943. p3.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4944. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4945. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4946. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4947. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4948. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4949. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4950. b3 = Instance.new("BlockMesh", p3)
  4951. b3.Name = "Mesh"
  4952. b3.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  4953. p4 = Instance.new("Part", m8)
  4954. p4.BrickColor = BrickColor.new("Lime green")
  4955. p4.Material = Enum.Material.Metal
  4956. p4.Name = "Block"
  4957. 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)
  4958. p4.CanCollide = false
  4959. p4.Locked = true
  4960. p4.FormFactor = Enum.FormFactor.Custom
  4961. p4.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  4962. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4963. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4964. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4965. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4966. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4967. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4968. b4 = Instance.new("BlockMesh", p4)
  4969. b4.Name = "Mesh"
  4970. b4.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  4971. p5 = Instance.new("Part", m8)
  4972. p5.BrickColor = BrickColor.new("Lime green")
  4973. p5.Material = Enum.Material.Neon
  4974. p5.Reflectance = 0.40000000596046
  4975. p5.Name = "Block"
  4976. 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)
  4977. p5.CanCollide = false
  4978. p5.Locked = true
  4979. p5.FormFactor = Enum.FormFactor.Custom
  4980. p5.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  4981. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4982. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4983. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4984. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4985. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4986. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4987. b5 = Instance.new("BlockMesh", p5)
  4988. b5.Name = "Mesh"
  4989. b5.Scale = Vector3.new(0.334640861, 0.200784534, 0.669281721)
  4990. p6 = Instance.new("Part", m8)
  4991. p6.BrickColor = BrickColor.new("Parsley green")
  4992. p6.Material = Enum.Material.Metal
  4993. p6.Name = "Block"
  4994. 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)
  4995. p6.CanCollide = false
  4996. p6.Locked = true
  4997. p6.FormFactor = Enum.FormFactor.Custom
  4998. p6.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  4999. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5000. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5001. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5002. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5003. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5004. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5005. b6 = Instance.new("BlockMesh", p6)
  5006. b6.Name = "Mesh"
  5007. b6.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5008. p7 = Instance.new("Part", m8)
  5009. p7.BrickColor = BrickColor.new("Lime green")
  5010. p7.Material = Enum.Material.Neon
  5011. p7.Reflectance = 0.40000000596046
  5012. p7.Name = "Block"
  5013. 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)
  5014. p7.CanCollide = false
  5015. p7.Locked = true
  5016. p7.FormFactor = Enum.FormFactor.Custom
  5017. p7.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5018. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5019. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5020. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5021. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5022. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5023. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5024. b7 = Instance.new("BlockMesh", p7)
  5025. b7.Name = "Mesh"
  5026. b7.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5027. p8 = Instance.new("Part", m8)
  5028. p8.BrickColor = BrickColor.new("Lime green")
  5029. p8.Material = Enum.Material.Neon
  5030. p8.Reflectance = 0.40000000596046
  5031. p8.Name = "Block"
  5032. 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)
  5033. p8.CanCollide = false
  5034. p8.Locked = true
  5035. p8.FormFactor = Enum.FormFactor.Custom
  5036. p8.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5037. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5038. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5039. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5040. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5041. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5042. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5043. b8 = Instance.new("BlockMesh", p8)
  5044. b8.Name = "Mesh"
  5045. b8.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5046. p9 = Instance.new("Part", m8)
  5047. p9.BrickColor = BrickColor.new("Really black")
  5048. p9.Material = Enum.Material.Metal
  5049. p9.Reflectance = 0.40000000596046
  5050. p9.Name = "Block"
  5051. 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)
  5052. p9.CanCollide = false
  5053. p9.Locked = true
  5054. p9.FormFactor = Enum.FormFactor.Custom
  5055. p9.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5056. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5057. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5058. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5059. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5060. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5061. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5062. b9 = Instance.new("BlockMesh", p9)
  5063. b9.Name = "Mesh"
  5064. b9.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5065. p10 = Instance.new("Part", m8)
  5066. p10.BrickColor = BrickColor.new("Really black")
  5067. p10.Material = Enum.Material.Metal
  5068. p10.Reflectance = 0.40000000596046
  5069. p10.Name = "Block"
  5070. 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)
  5071. p10.CanCollide = false
  5072. p10.Locked = true
  5073. p10.FormFactor = Enum.FormFactor.Custom
  5074. p10.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5075. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5076. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5077. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5078. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5079. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5080. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5081. b10 = Instance.new("BlockMesh", p10)
  5082. b10.Name = "Mesh"
  5083. b10.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5084. p11 = Instance.new("Part", m8)
  5085. p11.BrickColor = BrickColor.new("Black")
  5086. p11.Material = Enum.Material.Metal
  5087. p11.Name = "Circle"
  5088. 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)
  5089. p11.CanCollide = false
  5090. p11.Locked = true
  5091. p11.FormFactor = Enum.FormFactor.Custom
  5092. p11.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  5093. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5094. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5095. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5096. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5097. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5098. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5099. b11 = Instance.new("CylinderMesh", p11)
  5100. b11.Name = "Mesh"
  5101. b11.Scale = Vector3.new(1, 0.401569068, 1)
  5102. p12 = Instance.new("Part", m8)
  5103. p12.BrickColor = BrickColor.new("Lime green")
  5104. p12.Material = Enum.Material.Neon
  5105. p12.Reflectance = 0.40000000596046
  5106. p12.Name = "Block"
  5107. 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)
  5108. p12.CanCollide = false
  5109. p12.Locked = true
  5110. p12.FormFactor = Enum.FormFactor.Custom
  5111. p12.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5112. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5113. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5114. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5115. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5116. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5117. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5118. b12 = Instance.new("BlockMesh", p12)
  5119. b12.Name = "Mesh"
  5120. b12.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5121. p13 = Instance.new("Part", m8)
  5122. p13.BrickColor = BrickColor.new("Lime green")
  5123. p13.Material = Enum.Material.Metal
  5124. p13.Name = "Block"
  5125. 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)
  5126. p13.CanCollide = false
  5127. p13.Locked = true
  5128. p13.FormFactor = Enum.FormFactor.Custom
  5129. p13.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5130. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5131. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5132. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5133. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5134. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5135. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5136. b13 = Instance.new("BlockMesh", p13)
  5137. b13.Name = "Mesh"
  5138. b13.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5139. p14 = Instance.new("Part", m8)
  5140. p14.BrickColor = BrickColor.new("Black")
  5141. p14.Material = Enum.Material.Metal
  5142. p14.Reflectance = 0.40000000596046
  5143. p14.Name = "Block"
  5144. 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)
  5145. p14.CanCollide = false
  5146. p14.Locked = true
  5147. p14.FormFactor = Enum.FormFactor.Custom
  5148. p14.Size = Vector3.new(0.220499977, 0.220499977, 0.332047403)
  5149. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5150. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5151. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5152. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5153. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5154. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5155. b14 = Instance.new("BlockMesh", p14)
  5156. b14.Name = "Mesh"
  5157. b14.Scale = Vector3.new(0.267712682, 0.535425484, 1)
  5158. p15 = Instance.new("Part", m8)
  5159. p15.BrickColor = BrickColor.new("Really black")
  5160. p15.Material = Enum.Material.Metal
  5161. p15.Reflectance = 0.40000000596046
  5162. p15.Name = "Block"
  5163. 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)
  5164. p15.CanCollide = false
  5165. p15.Locked = true
  5166. p15.FormFactor = Enum.FormFactor.Custom
  5167. p15.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5168. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5169. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5170. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5171. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5172. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5173. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5174. b15 = Instance.new("BlockMesh", p15)
  5175. b15.Name = "Mesh"
  5176. b15.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5177. p16 = Instance.new("Part", m8)
  5178. p16.BrickColor = BrickColor.new("Really black")
  5179. p16.Material = Enum.Material.Metal
  5180. p16.Name = "Handle"
  5181. 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)
  5182. p16.CanCollide = false
  5183. p16.Locked = true
  5184. p16.FormFactor = Enum.FormFactor.Custom
  5185. p16.Size = Vector3.new(0.220499977, 0.97400558, 0.220499977)
  5186. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5187. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5188. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5189. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5190. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5191. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5192. b16 = Instance.new("BlockMesh", p16)
  5193. b16.Name = "Mesh"
  5194. b16.Scale = Vector3.new(0.602353573, 1, 0.602353573)
  5195. p17 = Instance.new("Part", m8)
  5196. p17.BrickColor = BrickColor.new("Lime green")
  5197. p17.Material = Enum.Material.Neon
  5198. p17.Reflectance = 0.40000000596046
  5199. p17.Name = "Block"
  5200. 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)
  5201. p17.CanCollide = false
  5202. p17.Locked = true
  5203. p17.FormFactor = Enum.FormFactor.Custom
  5204. p17.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5205. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5206. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5207. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5208. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5209. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5210. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5211. b17 = Instance.new("BlockMesh", p17)
  5212. b17.Name = "Mesh"
  5213. b17.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5214. p18 = Instance.new("Part", m8)
  5215. p18.BrickColor = BrickColor.new("Really black")
  5216. p18.Material = Enum.Material.Metal
  5217. p18.Name = "Block"
  5218. 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)
  5219. p18.CanCollide = false
  5220. p18.Locked = true
  5221. p18.FormFactor = Enum.FormFactor.Custom
  5222. p18.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5223. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5224. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5225. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5226. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5227. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5228. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5229. b18 = Instance.new("BlockMesh", p18)
  5230. b18.Name = "Mesh"
  5231. b18.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5232. p19 = Instance.new("Part", m8)
  5233. p19.BrickColor = BrickColor.new("Black")
  5234. p19.Material = Enum.Material.Metal
  5235. p19.Reflectance = 0.40000000596046
  5236. p19.Name = "Block"
  5237. 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)
  5238. p19.CanCollide = false
  5239. p19.Locked = true
  5240. p19.FormFactor = Enum.FormFactor.Custom
  5241. p19.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5242. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5243. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5244. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5245. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5246. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5247. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5248. b19 = Instance.new("BlockMesh", p19)
  5249. b19.Name = "Mesh"
  5250. b19.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5251. p20 = Instance.new("Part", m8)
  5252. p20.BrickColor = BrickColor.new("Lime green")
  5253. p20.Material = Enum.Material.Metal
  5254. p20.Name = "Block"
  5255. 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)
  5256. p20.CanCollide = false
  5257. p20.Locked = true
  5258. p20.FormFactor = Enum.FormFactor.Custom
  5259. p20.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5260. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5261. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5262. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5263. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5264. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5265. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5266. b20 = Instance.new("BlockMesh", p20)
  5267. b20.Name = "Mesh"
  5268. b20.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5269. p21 = Instance.new("Part", m8)
  5270. p21.BrickColor = BrickColor.new("Really black")
  5271. p21.Material = Enum.Material.Metal
  5272. p21.Name = "Block"
  5273. 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)
  5274. p21.CanCollide = false
  5275. p21.Locked = true
  5276. p21.FormFactor = Enum.FormFactor.Custom
  5277. p21.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5278. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5279. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5280. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5281. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5282. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5283. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5284. b21 = Instance.new("BlockMesh", p21)
  5285. b21.Name = "Mesh"
  5286. b21.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5287. p22 = Instance.new("Part", m8)
  5288. p22.BrickColor = BrickColor.new("Really black")
  5289. p22.Material = Enum.Material.Metal
  5290. p22.Reflectance = 0.40000000596046
  5291. p22.Name = "Block"
  5292. 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)
  5293. p22.CanCollide = false
  5294. p22.Locked = true
  5295. p22.FormFactor = Enum.FormFactor.Custom
  5296. p22.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5297. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5298. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5299. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5300. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5301. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5302. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5303. b22 = Instance.new("BlockMesh", p22)
  5304. b22.Name = "Mesh"
  5305. b22.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5306. p23 = Instance.new("Part", m8)
  5307. p23.BrickColor = BrickColor.new("Lime green")
  5308. p23.Material = Enum.Material.Marble
  5309. p23.Name = "Block"
  5310. 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)
  5311. p23.CanCollide = false
  5312. p23.Locked = true
  5313. p23.FormFactor = Enum.FormFactor.Custom
  5314. p23.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  5315. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5316. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5317. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5318. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5319. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5320. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5321. b23 = Instance.new("BlockMesh", p23)
  5322. b23.Name = "Mesh"
  5323. b23.Scale = Vector3.new(0.803138018, 0.133856371, 1)
  5324. p24 = Instance.new("Part", m8)
  5325. p24.BrickColor = BrickColor.new("Really black")
  5326. p24.Material = Enum.Material.Metal
  5327. p24.Name = "Block"
  5328. 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)
  5329. p24.CanCollide = false
  5330. p24.Locked = true
  5331. p24.FormFactor = Enum.FormFactor.Custom
  5332. p24.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5333. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5334. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5335. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5336. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5337. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5338. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5339. b24 = Instance.new("BlockMesh", p24)
  5340. b24.Name = "Mesh"
  5341. b24.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5342. p25 = Instance.new("Part", m8)
  5343. p25.BrickColor = BrickColor.new("Lime green")
  5344. p25.Material = Enum.Material.Marble
  5345. p25.Name = "Block"
  5346. 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)
  5347. p25.CanCollide = false
  5348. p25.Locked = true
  5349. p25.FormFactor = Enum.FormFactor.Custom
  5350. p25.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5351. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5352. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5353. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5354. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5355. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5356. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5357. b25 = Instance.new("BlockMesh", p25)
  5358. b25.Name = "Mesh"
  5359. b25.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5360. p26 = Instance.new("Part", m8)
  5361. p26.BrickColor = BrickColor.new("Really black")
  5362. p26.Material = Enum.Material.Metal
  5363. p26.Reflectance = 0.40000000596046
  5364. p26.Name = "Block"
  5365. 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)
  5366. p26.CanCollide = false
  5367. p26.Locked = true
  5368. p26.FormFactor = Enum.FormFactor.Custom
  5369. p26.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5370. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5371. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5372. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5373. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5374. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5375. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5376. b26 = Instance.new("BlockMesh", p26)
  5377. b26.Name = "Mesh"
  5378. b26.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5379. p27 = Instance.new("Part", m8)
  5380. p27.BrickColor = BrickColor.new("Lime green")
  5381. p27.Material = Enum.Material.Metal
  5382. p27.Name = "Block"
  5383. 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)
  5384. p27.CanCollide = false
  5385. p27.Locked = true
  5386. p27.FormFactor = Enum.FormFactor.Custom
  5387. p27.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5388. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5389. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5390. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5391. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5392. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5393. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5394. b27 = Instance.new("BlockMesh", p27)
  5395. b27.Name = "Mesh"
  5396. b27.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5397. p28 = Instance.new("Part", m8)
  5398. p28.BrickColor = BrickColor.new("Really black")
  5399. p28.Material = Enum.Material.SmoothPlastic
  5400. p28.Reflectance = 0.0099999997764826
  5401. p28.Name = "Circle"
  5402. 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)
  5403. p28.CanCollide = false
  5404. p28.Locked = true
  5405. p28.FormFactor = Enum.FormFactor.Custom
  5406. p28.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5407. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5408. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5409. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5410. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5411. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5412. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5413. b28 = Instance.new("CylinderMesh", p28)
  5414. b28.Name = "Mesh"
  5415. b28.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  5416. p29 = Instance.new("Part", m8)
  5417. p29.BrickColor = BrickColor.new("Black")
  5418. p29.Material = Enum.Material.Metal
  5419. p29.Reflectance = 0.40000000596046
  5420. p29.Name = "Block"
  5421. 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)
  5422. p29.CanCollide = false
  5423. p29.Locked = true
  5424. p29.FormFactor = Enum.FormFactor.Custom
  5425. p29.Size = Vector3.new(0.220499977, 0.220499977, 0.31728977)
  5426. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5427. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5428. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5429. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5430. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5431. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5432. b29 = Instance.new("BlockMesh", p29)
  5433. b29.Name = "Mesh"
  5434. b29.Scale = Vector3.new(0.267712682, 0.803138077, 1)
  5435. p30 = Instance.new("Part", m8)
  5436. p30.BrickColor = BrickColor.new("Lime green")
  5437. p30.Material = Enum.Material.Metal
  5438. p30.Name = "Block"
  5439. 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)
  5440. p30.CanCollide = false
  5441. p30.Locked = true
  5442. p30.FormFactor = Enum.FormFactor.Custom
  5443. p30.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5444. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5445. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5446. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5447. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5448. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5449. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5450. b30 = Instance.new("BlockMesh", p30)
  5451. b30.Name = "Mesh"
  5452. b30.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5453. p31 = Instance.new("Part", m8)
  5454. p31.BrickColor = BrickColor.new("Lime green")
  5455. p31.Material = Enum.Material.Neon
  5456. p31.Reflectance = 0.40000000596046
  5457. p31.Name = "Block"
  5458. 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)
  5459. p31.CanCollide = false
  5460. p31.Locked = true
  5461. p31.FormFactor = Enum.FormFactor.Custom
  5462. p31.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5463. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5464. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5465. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5466. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5467. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5468. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5469. b31 = Instance.new("BlockMesh", p31)
  5470. b31.Name = "Mesh"
  5471. b31.Scale = Vector3.new(0.334640861, 0.133856371, 0.870066345)
  5472. p32 = Instance.new("Part", m8)
  5473. p32.BrickColor = BrickColor.new("Lime green")
  5474. p32.Material = Enum.Material.Metal
  5475. p32.Name = "Block"
  5476. 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)
  5477. p32.CanCollide = false
  5478. p32.Locked = true
  5479. p32.FormFactor = Enum.FormFactor.Custom
  5480. p32.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5481. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5482. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5483. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5484. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5485. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5486. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5487. b32 = Instance.new("BlockMesh", p32)
  5488. b32.Name = "Mesh"
  5489. b32.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5490. p33 = Instance.new("Part", m8)
  5491. p33.BrickColor = BrickColor.new("Really black")
  5492. p33.Material = Enum.Material.Metal
  5493. p33.Reflectance = 0.40000000596046
  5494. p33.Name = "Block"
  5495. 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)
  5496. p33.CanCollide = false
  5497. p33.Locked = true
  5498. p33.FormFactor = Enum.FormFactor.Custom
  5499. p33.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5500. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5501. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5502. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5503. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5504. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5505. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5506. b33 = Instance.new("BlockMesh", p33)
  5507. b33.Name = "Mesh"
  5508. b33.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5509. p34 = Instance.new("Part", m8)
  5510. p34.BrickColor = BrickColor.new("Lime green")
  5511. p34.Material = Enum.Material.Metal
  5512. p34.Name = "Block"
  5513. 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)
  5514. p34.CanCollide = false
  5515. p34.Locked = true
  5516. p34.FormFactor = Enum.FormFactor.Custom
  5517. p34.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5518. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5519. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5520. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5521. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5522. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5523. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5524. b34 = Instance.new("BlockMesh", p34)
  5525. b34.Name = "Mesh"
  5526. b34.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5527. p35 = Instance.new("Part", m8)
  5528. p35.BrickColor = BrickColor.new("Lime green")
  5529. p35.Material = Enum.Material.Metal
  5530. p35.Name = "Block"
  5531. 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)
  5532. p35.CanCollide = false
  5533. p35.Locked = true
  5534. p35.FormFactor = Enum.FormFactor.Custom
  5535. p35.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5536. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5537. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5538. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5539. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5540. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5541. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5542. b35 = Instance.new("BlockMesh", p35)
  5543. b35.Name = "Mesh"
  5544. b35.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5545. p36 = Instance.new("Part", m8)
  5546. p36.BrickColor = BrickColor.new("Lime green")
  5547. p36.Material = Enum.Material.Metal
  5548. p36.Name = "Block"
  5549. 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)
  5550. p36.CanCollide = false
  5551. p36.Locked = true
  5552. p36.FormFactor = Enum.FormFactor.Custom
  5553. p36.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5554. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5555. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5556. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5557. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5558. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5559. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5560. b36 = Instance.new("BlockMesh", p36)
  5561. b36.Name = "Mesh"
  5562. b36.Scale = Vector3.new(0.401568979, 0.200784534, 0.267712682)
  5563. p37 = Instance.new("Part", m8)
  5564. p37.BrickColor = BrickColor.new("Lime green")
  5565. p37.Material = Enum.Material.Marble
  5566. p37.Name = "Circle"
  5567. 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)
  5568. p37.CanCollide = false
  5569. p37.Locked = true
  5570. p37.FormFactor = Enum.FormFactor.Custom
  5571. p37.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5572. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5573. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5574. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5575. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5576. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5577. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5578. b37 = Instance.new("CylinderMesh", p37)
  5579. b37.Name = "Mesh"
  5580. b37.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  5581. p38 = Instance.new("Part", m8)
  5582. p38.BrickColor = BrickColor.new("Really black")
  5583. p38.Material = Enum.Material.Metal
  5584. p38.Name = "Block"
  5585. 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)
  5586. p38.CanCollide = false
  5587. p38.Locked = true
  5588. p38.FormFactor = Enum.FormFactor.Custom
  5589. p38.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5590. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5591. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5592. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5593. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5594. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5595. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5596. b38 = Instance.new("BlockMesh", p38)
  5597. b38.Name = "Mesh"
  5598. b38.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  5599. p39 = Instance.new("Part", m8)
  5600. p39.BrickColor = BrickColor.new("Really black")
  5601. p39.Material = Enum.Material.Metal
  5602. p39.Name = "Block"
  5603. 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)
  5604. p39.CanCollide = false
  5605. p39.Locked = true
  5606. p39.FormFactor = Enum.FormFactor.Custom
  5607. p39.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5608. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5609. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5610. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5611. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5612. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5613. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5614. b39 = Instance.new("BlockMesh", p39)
  5615. b39.Name = "Mesh"
  5616. b39.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  5617. p40 = Instance.new("Part", m8)
  5618. p40.BrickColor = BrickColor.new("Really black")
  5619. p40.Material = Enum.Material.Metal
  5620. p40.Name = "Block"
  5621. 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)
  5622. p40.CanCollide = false
  5623. p40.Locked = true
  5624. p40.FormFactor = Enum.FormFactor.Custom
  5625. p40.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5626. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5627. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5628. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5629. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5630. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5631. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5632. b40 = Instance.new("BlockMesh", p40)
  5633. b40.Name = "Mesh"
  5634. b40.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5635. p41 = Instance.new("Part", m8)
  5636. p41.BrickColor = BrickColor.new("Lime green")
  5637. p41.Material = Enum.Material.Neon
  5638. p41.Reflectance = 0.40000000596046
  5639. p41.Name = "Block"
  5640. 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)
  5641. p41.CanCollide = false
  5642. p41.Locked = true
  5643. p41.FormFactor = Enum.FormFactor.Custom
  5644. p41.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5645. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5646. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5647. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5648. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5649. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5650. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5651. b41 = Instance.new("BlockMesh", p41)
  5652. b41.Name = "Mesh"
  5653. b41.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5654. p42 = Instance.new("Part", m8)
  5655. p42.BrickColor = BrickColor.new("Earth green")
  5656. p42.Material = Enum.Material.Metal
  5657. p42.Name = "Block"
  5658. 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)
  5659. p42.CanCollide = false
  5660. p42.Locked = true
  5661. p42.FormFactor = Enum.FormFactor.Custom
  5662. p42.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5663. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5664. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5665. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5666. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5667. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5668. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5669. b42 = Instance.new("BlockMesh", p42)
  5670. b42.Name = "Mesh"
  5671. b42.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  5672. p43 = Instance.new("Part", m8)
  5673. p43.BrickColor = BrickColor.new("Really black")
  5674. p43.Material = Enum.Material.Metal
  5675. p43.Name = "Block"
  5676. 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)
  5677. p43.CanCollide = false
  5678. p43.Locked = true
  5679. p43.FormFactor = Enum.FormFactor.Custom
  5680. p43.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5681. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5682. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5683. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5684. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5685. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5686. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5687. b43 = Instance.new("BlockMesh", p43)
  5688. b43.Name = "Mesh"
  5689. b43.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5690. p44 = Instance.new("Part", m8)
  5691. p44.BrickColor = BrickColor.new("Lime green")
  5692. p44.Material = Enum.Material.Marble
  5693. p44.Name = "Circle"
  5694. 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)
  5695. p44.CanCollide = false
  5696. p44.Locked = true
  5697. p44.FormFactor = Enum.FormFactor.Custom
  5698. p44.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5699. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5700. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5701. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5702. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5703. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5704. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5705. b44 = Instance.new("CylinderMesh", p44)
  5706. b44.Name = "Mesh"
  5707. b44.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  5708. p45 = Instance.new("Part", m8)
  5709. p45.BrickColor = BrickColor.new("Lime green")
  5710. p45.Material = Enum.Material.Neon
  5711. p45.Reflectance = 0.40000000596046
  5712. p45.Name = "Block"
  5713. 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)
  5714. p45.CanCollide = false
  5715. p45.Locked = true
  5716. p45.FormFactor = Enum.FormFactor.Custom
  5717. p45.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5718. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5719. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5720. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5721. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5722. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5723. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5724. b45 = Instance.new("BlockMesh", p45)
  5725. b45.Name = "Mesh"
  5726. b45.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5727. p46 = Instance.new("Part", m8)
  5728. p46.BrickColor = BrickColor.new("Black")
  5729. p46.Material = Enum.Material.Metal
  5730. p46.Name = "Block"
  5731. 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)
  5732. p46.CanCollide = false
  5733. p46.Locked = true
  5734. p46.FormFactor = Enum.FormFactor.Custom
  5735. p46.Size = Vector3.new(0.236122593, 0.220499977, 0.354183882)
  5736. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5737. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5738. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5739. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5740. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5741. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5742. b46 = Instance.new("BlockMesh", p46)
  5743. b46.Name = "Mesh"
  5744. b46.Scale = Vector3.new(1, 0.401569068, 1)
  5745. p47 = Instance.new("Part", m8)
  5746. p47.BrickColor = BrickColor.new("Earth green")
  5747. p47.Material = Enum.Material.Metal
  5748. p47.Name = "Block"
  5749. 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)
  5750. p47.CanCollide = false
  5751. p47.Locked = true
  5752. p47.FormFactor = Enum.FormFactor.Custom
  5753. p47.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5754. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5755. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5756. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5757. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5758. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5759. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5760. b47 = Instance.new("BlockMesh", p47)
  5761. b47.Name = "Mesh"
  5762. b47.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  5763. p48 = Instance.new("Part", m8)
  5764. p48.BrickColor = BrickColor.new("Lime green")
  5765. p48.Material = Enum.Material.Metal
  5766. p48.Name = "Block"
  5767. 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)
  5768. p48.CanCollide = false
  5769. p48.Locked = true
  5770. p48.FormFactor = Enum.FormFactor.Custom
  5771. p48.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5772. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5773. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5774. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5775. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5776. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5777. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5778. b48 = Instance.new("BlockMesh", p48)
  5779. b48.Name = "Mesh"
  5780. b48.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5781. p49 = Instance.new("Part", m8)
  5782. p49.BrickColor = BrickColor.new("Lime green")
  5783. p49.Material = Enum.Material.Metal
  5784. p49.Name = "Block"
  5785. 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)
  5786. p49.CanCollide = false
  5787. p49.Locked = true
  5788. p49.FormFactor = Enum.FormFactor.Custom
  5789. p49.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5790. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5791. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5792. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5793. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5794. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5795. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5796. b49 = Instance.new("BlockMesh", p49)
  5797. b49.Name = "Mesh"
  5798. b49.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5799. p50 = Instance.new("Part", m8)
  5800. p50.BrickColor = BrickColor.new("Black")
  5801. p50.Material = Enum.Material.Metal
  5802. p50.Reflectance = 0.40000000596046
  5803. p50.Name = "Block"
  5804. 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)
  5805. p50.CanCollide = false
  5806. p50.Locked = true
  5807. p50.FormFactor = Enum.FormFactor.Custom
  5808. p50.Size = Vector3.new(0.220499977, 0.220499977, 0.287774384)
  5809. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5810. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5811. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5812. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5813. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5814. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5815. b50 = Instance.new("BlockMesh", p50)
  5816. b50.Name = "Mesh"
  5817. b50.Scale = Vector3.new(0.267712682, 0.936994493, 1)
  5818. p51 = Instance.new("Part", m8)
  5819. p51.BrickColor = BrickColor.new("Lime green")
  5820. p51.Material = Enum.Material.Metal
  5821. p51.Name = "Block"
  5822. 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)
  5823. p51.CanCollide = false
  5824. p51.Locked = true
  5825. p51.FormFactor = Enum.FormFactor.Custom
  5826. p51.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5827. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5828. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5829. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5830. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5831. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5832. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5833. b51 = Instance.new("BlockMesh", p51)
  5834. b51.Name = "Mesh"
  5835. b51.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5836. p52 = Instance.new("Part", m8)
  5837. p52.BrickColor = BrickColor.new("Lime green")
  5838. p52.Material = Enum.Material.Metal
  5839. p52.Name = "Block"
  5840. 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)
  5841. p52.CanCollide = false
  5842. p52.Locked = true
  5843. p52.FormFactor = Enum.FormFactor.Custom
  5844. p52.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5845. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5846. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5847. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5848. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5849. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5850. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5851. b52 = Instance.new("BlockMesh", p52)
  5852. b52.Name = "Mesh"
  5853. b52.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5854. p53 = Instance.new("Part", m8)
  5855. p53.BrickColor = BrickColor.new("Really black")
  5856. p53.Material = Enum.Material.Metal
  5857. p53.Name = "Block"
  5858. 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)
  5859. p53.CanCollide = false
  5860. p53.Locked = true
  5861. p53.FormFactor = Enum.FormFactor.Custom
  5862. p53.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5863. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5864. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5865. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5866. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5867. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5868. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5869. b53 = Instance.new("BlockMesh", p53)
  5870. b53.Name = "Mesh"
  5871. b53.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5872. p54 = Instance.new("Part", m8)
  5873. p54.BrickColor = BrickColor.new("Really black")
  5874. p54.Material = Enum.Material.SmoothPlastic
  5875. p54.Reflectance = 0.0099999997764826
  5876. p54.Name = "Circle"
  5877. 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)
  5878. p54.CanCollide = false
  5879. p54.Locked = true
  5880. p54.FormFactor = Enum.FormFactor.Custom
  5881. p54.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5882. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5883. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5884. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5885. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5886. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5887. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5888. b54 = Instance.new("CylinderMesh", p54)
  5889. b54.Name = "Mesh"
  5890. b54.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  5891. p55 = Instance.new("Part", m8)
  5892. p55.BrickColor = BrickColor.new("Really black")
  5893. p55.Material = Enum.Material.Metal
  5894. p55.Reflectance = 0.40000000596046
  5895. p55.Name = "Block"
  5896. 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)
  5897. p55.CanCollide = false
  5898. p55.Locked = true
  5899. p55.FormFactor = Enum.FormFactor.Custom
  5900. p55.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5901. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5902. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5903. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5904. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5905. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5906. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5907. b55 = Instance.new("BlockMesh", p55)
  5908. b55.Name = "Mesh"
  5909. b55.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5910. p56 = Instance.new("Part", m8)
  5911. p56.BrickColor = BrickColor.new("Black")
  5912. p56.Material = Enum.Material.Metal
  5913. p56.Reflectance = 0.40000000596046
  5914. p56.Name = "Block"
  5915. 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)
  5916. p56.CanCollide = false
  5917. p56.Locked = true
  5918. p56.FormFactor = Enum.FormFactor.Custom
  5919. p56.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5920. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5921. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5922. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5923. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5924. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5925. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5926. b56 = Instance.new("BlockMesh", p56)
  5927. b56.Name = "Mesh"
  5928. b56.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5929. p57 = Instance.new("Part", m8)
  5930. p57.BrickColor = BrickColor.new("Black")
  5931. p57.Material = Enum.Material.Metal
  5932. p57.Reflectance = 0.40000000596046
  5933. p57.Name = "Block"
  5934. 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)
  5935. p57.CanCollide = false
  5936. p57.Locked = true
  5937. p57.FormFactor = Enum.FormFactor.Custom
  5938. p57.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5939. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5940. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5941. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5942. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5943. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5944. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5945. b57 = Instance.new("BlockMesh", p57)
  5946. b57.Name = "Mesh"
  5947. b57.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5948. p58 = Instance.new("Part", m8)
  5949. p58.BrickColor = BrickColor.new("Lime green")
  5950. p58.Material = Enum.Material.Marble
  5951. p58.Name = "Block"
  5952. 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)
  5953. p58.CanCollide = false
  5954. p58.Locked = true
  5955. p58.FormFactor = Enum.FormFactor.Custom
  5956. p58.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  5957. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5958. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5959. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5960. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5961. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5962. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5963. b58 = Instance.new("BlockMesh", p58)
  5964. b58.Name = "Mesh"
  5965. b58.Scale = Vector3.new(0.936994374, 0.133856371, 1)
  5966. p59 = Instance.new("Part", m8)
  5967. p59.BrickColor = BrickColor.new("Lime green")
  5968. p59.Material = Enum.Material.Metal
  5969. p59.Name = "Block"
  5970. 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)
  5971. p59.CanCollide = false
  5972. p59.Locked = true
  5973. p59.FormFactor = Enum.FormFactor.Custom
  5974. p59.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5975. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5976. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5977. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5978. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5979. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5980. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5981. b59 = Instance.new("BlockMesh", p59)
  5982. b59.Name = "Mesh"
  5983. b59.Scale = Vector3.new(0.602353573, 0.200784534, 0.468497276)
  5984. p60 = Instance.new("Part", m8)
  5985. p60.BrickColor = BrickColor.new("Lime green")
  5986. p60.Material = Enum.Material.Marble
  5987. p60.Name = "Circle"
  5988. 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)
  5989. p60.CanCollide = false
  5990. p60.Locked = true
  5991. p60.FormFactor = Enum.FormFactor.Custom
  5992. p60.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5993. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5994. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5995. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5996. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5997. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5998. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5999. b60 = Instance.new("CylinderMesh", p60)
  6000. b60.Name = "Mesh"
  6001. b60.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  6002. p61 = Instance.new("Part", m8)
  6003. p61.BrickColor = BrickColor.new("Black")
  6004. p61.Material = Enum.Material.Metal
  6005. p61.Name = "Circle"
  6006. 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)
  6007. p61.CanCollide = false
  6008. p61.Locked = true
  6009. p61.FormFactor = Enum.FormFactor.Custom
  6010. p61.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  6011. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6012. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6013. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6014. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6015. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6016. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6017. b61 = Instance.new("CylinderMesh", p61)
  6018. b61.Name = "Mesh"
  6019. b61.Scale = Vector3.new(1, 0.401569068, 1)
  6020. p62 = Instance.new("Part", m8)
  6021. p62.BrickColor = BrickColor.new("Lime green")
  6022. p62.Material = Enum.Material.Metal
  6023. p62.Name = "Block"
  6024. 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)
  6025. p62.CanCollide = false
  6026. p62.Locked = true
  6027. p62.FormFactor = Enum.FormFactor.Custom
  6028. p62.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6029. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6030. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6031. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6032. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6033. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6034. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6035. b62 = Instance.new("BlockMesh", p62)
  6036. b62.Name = "Mesh"
  6037. b62.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6038. p63 = Instance.new("Part", m8)
  6039. p63.BrickColor = BrickColor.new("Lime green")
  6040. p63.Material = Enum.Material.Metal
  6041. p63.Name = "Block"
  6042. 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)
  6043. p63.CanCollide = false
  6044. p63.Locked = true
  6045. p63.FormFactor = Enum.FormFactor.Custom
  6046. p63.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6047. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6048. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6049. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6050. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6051. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6052. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6053. b63 = Instance.new("BlockMesh", p63)
  6054. b63.Name = "Mesh"
  6055. b63.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6056. p64 = Instance.new("Part", m8)
  6057. p64.BrickColor = BrickColor.new("Really black")
  6058. p64.Material = Enum.Material.SmoothPlastic
  6059. p64.Reflectance = 0.0099999997764826
  6060. p64.Name = "Block"
  6061. 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)
  6062. p64.CanCollide = false
  6063. p64.Locked = true
  6064. p64.FormFactor = Enum.FormFactor.Custom
  6065. p64.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6066. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6067. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6068. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6069. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6070. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6071. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6072. b64 = Instance.new("BlockMesh", p64)
  6073. b64.Name = "Mesh"
  6074. b64.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  6075. p65 = Instance.new("Part", m8)
  6076. p65.BrickColor = BrickColor.new("Lime green")
  6077. p65.Material = Enum.Material.Metal
  6078. p65.Name = "Block"
  6079. 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)
  6080. p65.CanCollide = false
  6081. p65.Locked = true
  6082. p65.FormFactor = Enum.FormFactor.Custom
  6083. p65.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6084. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6085. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6086. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6087. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6088. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6089. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6090. b65 = Instance.new("BlockMesh", p65)
  6091. b65.Name = "Mesh"
  6092. b65.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6093. p66 = Instance.new("Part", m8)
  6094. p66.BrickColor = BrickColor.new("Really black")
  6095. p66.Material = Enum.Material.Metal
  6096. p66.Reflectance = 0.40000000596046
  6097. p66.Name = "Block"
  6098. 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)
  6099. p66.CanCollide = false
  6100. p66.Locked = true
  6101. p66.FormFactor = Enum.FormFactor.Custom
  6102. p66.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6103. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6104. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6105. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6106. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6107. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6108. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6109. b66 = Instance.new("BlockMesh", p66)
  6110. b66.Name = "Mesh"
  6111. b66.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  6112. p67 = Instance.new("Part", m8)
  6113. p67.BrickColor = BrickColor.new("Lime green")
  6114. p67.Material = Enum.Material.Metal
  6115. p67.Name = "Block"
  6116. 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)
  6117. p67.CanCollide = false
  6118. p67.Locked = true
  6119. p67.FormFactor = Enum.FormFactor.Custom
  6120. p67.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6121. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6122. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6123. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6124. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6125. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6126. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6127. b67 = Instance.new("BlockMesh", p67)
  6128. b67.Name = "Mesh"
  6129. b67.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6130. p68 = Instance.new("Part", m8)
  6131. p68.BrickColor = BrickColor.new("Black")
  6132. p68.Material = Enum.Material.Metal
  6133. p68.Reflectance = 0.40000000596046
  6134. p68.Name = "Block"
  6135. 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)
  6136. p68.CanCollide = false
  6137. p68.Locked = true
  6138. p68.FormFactor = Enum.FormFactor.Custom
  6139. p68.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6140. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6141. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6142. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6143. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6144. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6145. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6146. b68 = Instance.new("BlockMesh", p68)
  6147. b68.Name = "Mesh"
  6148. b68.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  6149. p69 = Instance.new("Part", m8)
  6150. p69.BrickColor = BrickColor.new("Earth green")
  6151. p69.Material = Enum.Material.Metal
  6152. p69.Name = "Block"
  6153. 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)
  6154. p69.CanCollide = false
  6155. p69.Locked = true
  6156. p69.FormFactor = Enum.FormFactor.Custom
  6157. p69.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6158. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6159. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6160. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6161. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6162. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6163. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6164. b69 = Instance.new("BlockMesh", p69)
  6165. b69.Name = "Mesh"
  6166. b69.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  6167. p70 = Instance.new("Part", m8)
  6168. p70.BrickColor = BrickColor.new("Lime green")
  6169. p70.Material = Enum.Material.Marble
  6170. p70.Name = "Circle"
  6171. 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)
  6172. p70.CanCollide = false
  6173. p70.Locked = true
  6174. p70.FormFactor = Enum.FormFactor.Custom
  6175. p70.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6176. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6177. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6178. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6179. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6180. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6181. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6182. b70 = Instance.new("CylinderMesh", p70)
  6183. b70.Name = "Mesh"
  6184. b70.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  6185. p71 = Instance.new("WedgePart", m8)
  6186. p71.BrickColor = BrickColor.new("Lime green")
  6187. p71.Material = Enum.Material.Neon
  6188. p71.Reflectance = 0.40000000596046
  6189. p71.Name = "Wedge"
  6190. 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)
  6191. p71.CanCollide = false
  6192. p71.Locked = true
  6193. p71.FormFactor = Enum.FormFactor.Custom
  6194. p71.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6195. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6196. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6197. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6198. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6199. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6200. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6201. b71 = Instance.new("SpecialMesh", p71)
  6202. b71.MeshType = Enum.MeshType.Wedge
  6203. b71.Name = "Mesh"
  6204. b71.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6205. p72 = Instance.new("WedgePart", m8)
  6206. p72.BrickColor = BrickColor.new("Lime green")
  6207. p72.Material = Enum.Material.Neon
  6208. p72.Reflectance = 0.40000000596046
  6209. p72.Name = "Wedge"
  6210. 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)
  6211. p72.CanCollide = false
  6212. p72.Locked = true
  6213. p72.FormFactor = Enum.FormFactor.Custom
  6214. p72.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6215. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6216. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6217. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6218. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6219. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6220. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6221. b72 = Instance.new("SpecialMesh", p72)
  6222. b72.MeshType = Enum.MeshType.Wedge
  6223. b72.Name = "Mesh"
  6224. b72.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  6225. p73 = Instance.new("WedgePart", m8)
  6226. p73.BrickColor = BrickColor.new("Lime green")
  6227. p73.Material = Enum.Material.Neon
  6228. p73.Reflectance = 0.40000000596046
  6229. p73.Name = "Wedge"
  6230. 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)
  6231. p73.CanCollide = false
  6232. p73.Locked = true
  6233. p73.FormFactor = Enum.FormFactor.Custom
  6234. p73.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6235. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6236. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6237. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6238. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6239. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6240. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6241. b73 = Instance.new("SpecialMesh", p73)
  6242. b73.MeshType = Enum.MeshType.Wedge
  6243. b73.Name = "Mesh"
  6244. b73.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6245. p74 = Instance.new("WedgePart", m8)
  6246. p74.BrickColor = BrickColor.new("Lime green")
  6247. p74.Material = Enum.Material.Neon
  6248. p74.Reflectance = 0.40000000596046
  6249. p74.Name = "Wedge"
  6250. 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)
  6251. p74.CanCollide = false
  6252. p74.Locked = true
  6253. p74.FormFactor = Enum.FormFactor.Custom
  6254. p74.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6255. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6256. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6257. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6258. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6259. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6260. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6261. b74 = Instance.new("SpecialMesh", p74)
  6262. b74.MeshType = Enum.MeshType.Wedge
  6263. b74.Name = "Mesh"
  6264. b74.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6265. p75 = Instance.new("WedgePart", m8)
  6266. p75.BrickColor = BrickColor.new("Lime green")
  6267. p75.Material = Enum.Material.Neon
  6268. p75.Reflectance = 0.40000000596046
  6269. p75.Name = "Wedge"
  6270. 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)
  6271. p75.CanCollide = false
  6272. p75.Locked = true
  6273. p75.FormFactor = Enum.FormFactor.Custom
  6274. p75.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6275. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6276. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6277. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6278. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6279. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6280. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6281. b75 = Instance.new("SpecialMesh", p75)
  6282. b75.MeshType = Enum.MeshType.Wedge
  6283. b75.Name = "Mesh"
  6284. b75.Scale = Vector3.new(0.334640861, 0.267712742, 0.200784534)
  6285. p76 = Instance.new("WedgePart", m8)
  6286. p76.BrickColor = BrickColor.new("Lime green")
  6287. p76.Material = Enum.Material.Neon
  6288. p76.Reflectance = 0.40000000596046
  6289. p76.Name = "Wedge"
  6290. 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)
  6291. p76.CanCollide = false
  6292. p76.Locked = true
  6293. p76.FormFactor = Enum.FormFactor.Custom
  6294. p76.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6295. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6296. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6297. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6298. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6299. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6300. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6301. b76 = Instance.new("SpecialMesh", p76)
  6302. b76.MeshType = Enum.MeshType.Wedge
  6303. b76.Name = "Mesh"
  6304. b76.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6305. p77 = Instance.new("WedgePart", m8)
  6306. p77.BrickColor = BrickColor.new("Lime green")
  6307. p77.Material = Enum.Material.Neon
  6308. p77.Reflectance = 0.40000000596046
  6309. p77.Name = "Wedge"
  6310. 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)
  6311. p77.CanCollide = false
  6312. p77.Locked = true
  6313. p77.FormFactor = Enum.FormFactor.Custom
  6314. p77.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6315. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6316. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6317. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6318. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6319. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6320. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6321. b77 = Instance.new("SpecialMesh", p77)
  6322. b77.MeshType = Enum.MeshType.Wedge
  6323. b77.Name = "Mesh"
  6324. b77.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6325. p78 = Instance.new("WedgePart", m8)
  6326. p78.BrickColor = BrickColor.new("Lime green")
  6327. p78.Material = Enum.Material.Neon
  6328. p78.Reflectance = 0.40000000596046
  6329. p78.Name = "Wedge"
  6330. 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)
  6331. p78.CanCollide = false
  6332. p78.Locked = true
  6333. p78.FormFactor = Enum.FormFactor.Custom
  6334. p78.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6335. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6336. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6337. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6338. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6339. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6340. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6341. b78 = Instance.new("SpecialMesh", p78)
  6342. b78.MeshType = Enum.MeshType.Wedge
  6343. b78.Name = "Mesh"
  6344. b78.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6345. p79 = Instance.new("WedgePart", m8)
  6346. p79.BrickColor = BrickColor.new("Lime green")
  6347. p79.Material = Enum.Material.Neon
  6348. p79.Reflectance = 0.40000000596046
  6349. p79.Name = "Wedge"
  6350. 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)
  6351. p79.CanCollide = false
  6352. p79.Locked = true
  6353. p79.FormFactor = Enum.FormFactor.Custom
  6354. p79.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6355. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6356. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6357. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6358. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6359. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6360. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6361. b79 = Instance.new("SpecialMesh", p79)
  6362. b79.MeshType = Enum.MeshType.Wedge
  6363. b79.Name = "Mesh"
  6364. b79.Scale = Vector3.new(0.334640861, 0.535425484, 0.401569068)
  6365. p80 = Instance.new("WedgePart", m8)
  6366. p80.BrickColor = BrickColor.new("Black")
  6367. p80.Material = Enum.Material.Metal
  6368. p80.Reflectance = 0.40000000596046
  6369. p80.Name = "Wedge"
  6370. 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)
  6371. p80.CanCollide = false
  6372. p80.Locked = true
  6373. p80.FormFactor = Enum.FormFactor.Custom
  6374. p80.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  6375. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6376. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6377. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6378. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6379. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6380. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6381. b80 = Instance.new("SpecialMesh", p80)
  6382. b80.MeshType = Enum.MeshType.Wedge
  6383. b80.Name = "Mesh"
  6384. b80.Scale = Vector3.new(0.267712682, 1, 0.133856341)
  6385. p81 = Instance.new("WedgePart", m8)
  6386. p81.BrickColor = BrickColor.new("Lime green")
  6387. p81.Material = Enum.Material.Neon
  6388. p81.Reflectance = 0.40000000596046
  6389. p81.Name = "Wedge"
  6390. 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)
  6391. p81.CanCollide = false
  6392. p81.Locked = true
  6393. p81.FormFactor = Enum.FormFactor.Custom
  6394. p81.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6395. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6396. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6397. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6398. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6399. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6400. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6401. b81 = Instance.new("SpecialMesh", p81)
  6402. b81.MeshType = Enum.MeshType.Wedge
  6403. b81.Name = "Mesh"
  6404. b81.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  6405. p82 = Instance.new("WedgePart", m8)
  6406. p82.BrickColor = BrickColor.new("Really black")
  6407. p82.Material = Enum.Material.Metal
  6408. p82.Reflectance = 0.40000000596046
  6409. p82.Name = "Wedge"
  6410. 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)
  6411. p82.CanCollide = false
  6412. p82.Locked = true
  6413. p82.FormFactor = Enum.FormFactor.Custom
  6414. p82.Size = Vector3.new(0.220499977, 0.314338177, 0.220499977)
  6415. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6416. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6417. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6418. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6419. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6420. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6421. b82 = Instance.new("SpecialMesh", p82)
  6422. b82.MeshType = Enum.MeshType.Wedge
  6423. b82.Name = "Mesh"
  6424. b82.Scale = Vector3.new(0.261019886, 1, 0.307869673)
  6425. p83 = Instance.new("WedgePart", m8)
  6426. p83.BrickColor = BrickColor.new("Really black")
  6427. p83.Material = Enum.Material.Metal
  6428. p83.Reflectance = 0.40000000596046
  6429. p83.Name = "Wedge"
  6430. 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)
  6431. p83.CanCollide = false
  6432. p83.Locked = true
  6433. p83.FormFactor = Enum.FormFactor.Custom
  6434. p83.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6435. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6436. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6437. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6438. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6439. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6440. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6441. b83 = Instance.new("SpecialMesh", p83)
  6442. b83.MeshType = Enum.MeshType.Wedge
  6443. b83.Name = "Mesh"
  6444. b83.Scale = Vector3.new(0.261019886, 0.337987304, 0.204131007)
  6445. p84 = Instance.new("WedgePart", m8)
  6446. p84.BrickColor = BrickColor.new("Lime green")
  6447. p84.Material = Enum.Material.Neon
  6448. p84.Reflectance = 0.40000000596046
  6449. p84.Name = "Wedge"
  6450. 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)
  6451. p84.CanCollide = false
  6452. p84.Locked = true
  6453. p84.FormFactor = Enum.FormFactor.Custom
  6454. p84.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6455. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6456. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6457. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6458. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6459. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6460. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6461. b84 = Instance.new("SpecialMesh", p84)
  6462. b84.MeshType = Enum.MeshType.Wedge
  6463. b84.Name = "Mesh"
  6464. b84.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6465. p85 = Instance.new("WedgePart", m8)
  6466. p85.BrickColor = BrickColor.new("Black")
  6467. p85.Material = Enum.Material.Metal
  6468. p85.Reflectance = 0.40000000596046
  6469. p85.Name = "Wedge"
  6470. 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)
  6471. p85.CanCollide = false
  6472. p85.Locked = true
  6473. p85.FormFactor = Enum.FormFactor.Custom
  6474. p85.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  6475. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6476. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6477. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6478. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6479. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6480. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6481. b85 = Instance.new("SpecialMesh", p85)
  6482. b85.MeshType = Enum.MeshType.Wedge
  6483. b85.Name = "Mesh"
  6484. b85.Scale = Vector3.new(0.267712682, 1, 0.264366329)
  6485. p86 = Instance.new("WedgePart", m8)
  6486. p86.BrickColor = BrickColor.new("Lime green")
  6487. p86.Material = Enum.Material.Neon
  6488. p86.Reflectance = 0.40000000596046
  6489. p86.Name = "Wedge"
  6490. 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)
  6491. p86.CanCollide = false
  6492. p86.Locked = true
  6493. p86.FormFactor = Enum.FormFactor.Custom
  6494. p86.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6495. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6496. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6497. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6498. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6499. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6500. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6501. b86 = Instance.new("SpecialMesh", p86)
  6502. b86.MeshType = Enum.MeshType.Wedge
  6503. b86.Name = "Mesh"
  6504. b86.Scale = Vector3.new(0.334640861, 0.602353632, 0.133856341)
  6505. p87 = Instance.new("WedgePart", m8)
  6506. p87.BrickColor = BrickColor.new("Lime green")
  6507. p87.Material = Enum.Material.Neon
  6508. p87.Reflectance = 0.40000000596046
  6509. p87.Name = "Wedge"
  6510. 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)
  6511. p87.CanCollide = false
  6512. p87.Locked = true
  6513. p87.FormFactor = Enum.FormFactor.Custom
  6514. p87.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6515. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6516. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6517. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6518. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6519. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6520. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6521. b87 = Instance.new("SpecialMesh", p87)
  6522. b87.MeshType = Enum.MeshType.Wedge
  6523. b87.Name = "Mesh"
  6524. b87.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  6525. p88 = Instance.new("WedgePart", m8)
  6526. p88.BrickColor = BrickColor.new("Lime green")
  6527. p88.Material = Enum.Material.Neon
  6528. p88.Reflectance = 0.40000000596046
  6529. p88.Name = "Wedge"
  6530. 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)
  6531. p88.CanCollide = false
  6532. p88.Locked = true
  6533. p88.FormFactor = Enum.FormFactor.Custom
  6534. p88.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6535. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6536. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6537. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6538. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6539. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6540. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6541. b88 = Instance.new("SpecialMesh", p88)
  6542. b88.MeshType = Enum.MeshType.Wedge
  6543. b88.Name = "Mesh"
  6544. b88.Scale = Vector3.new(0.334640861, 0.602353632, 0.267712682)
  6545. p89 = Instance.new("WedgePart", m8)
  6546. p89.BrickColor = BrickColor.new("Lime green")
  6547. p89.Material = Enum.Material.Neon
  6548. p89.Reflectance = 0.40000000596046
  6549. p89.Name = "Wedge"
  6550. 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)
  6551. p89.CanCollide = false
  6552. p89.Locked = true
  6553. p89.FormFactor = Enum.FormFactor.Custom
  6554. p89.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6555. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6556. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6557. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6558. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6559. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6560. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6561. b89 = Instance.new("SpecialMesh", p89)
  6562. b89.MeshType = Enum.MeshType.Wedge
  6563. b89.Name = "Mesh"
  6564. b89.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  6565. p90 = Instance.new("WedgePart", m8)
  6566. p90.BrickColor = BrickColor.new("Lime green")
  6567. p90.Material = Enum.Material.Neon
  6568. p90.Reflectance = 0.40000000596046
  6569. p90.Name = "Wedge"
  6570. 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)
  6571. p90.CanCollide = false
  6572. p90.Locked = true
  6573. p90.FormFactor = Enum.FormFactor.Custom
  6574. p90.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6575. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6576. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6577. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6578. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6579. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6580. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6581. b90 = Instance.new("SpecialMesh", p90)
  6582. b90.MeshType = Enum.MeshType.Wedge
  6583. b90.Name = "Mesh"
  6584. b90.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  6585. p91 = Instance.new("WedgePart", m8)
  6586. p91.BrickColor = BrickColor.new("Really black")
  6587. p91.Material = Enum.Material.Metal
  6588. p91.Reflectance = 0.40000000596046
  6589. p91.Name = "Wedge"
  6590. 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)
  6591. p91.CanCollide = false
  6592. p91.Locked = true
  6593. p91.FormFactor = Enum.FormFactor.Custom
  6594. p91.Size = Vector3.new(0.220499977, 0.401408434, 0.220499977)
  6595. p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6596. p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6597. p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6598. p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6599. p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6600. p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6601. b91 = Instance.new("SpecialMesh", p91)
  6602. b91.MeshType = Enum.MeshType.Wedge
  6603. b91.Name = "Mesh"
  6604. b91.Scale = Vector3.new(0.267712682, 1, 0.200784534)
  6605. p92 = Instance.new("WedgePart", m8)
  6606. p92.BrickColor = BrickColor.new("Lime green")
  6607. p92.Material = Enum.Material.Neon
  6608. p92.Reflectance = 0.40000000596046
  6609. p92.Name = "Wedge"
  6610. 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)
  6611. p92.CanCollide = false
  6612. p92.Locked = true
  6613. p92.FormFactor = Enum.FormFactor.Custom
  6614. p92.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6615. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6616. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6617. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6618. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6619. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6620. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6621. b92 = Instance.new("SpecialMesh", p92)
  6622. b92.MeshType = Enum.MeshType.Wedge
  6623. b92.Name = "Mesh"
  6624. b92.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6625. p93 = Instance.new("WedgePart", m8)
  6626. p93.BrickColor = BrickColor.new("Lime green")
  6627. p93.Material = Enum.Material.Neon
  6628. p93.Reflectance = 0.40000000596046
  6629. p93.Name = "Wedge"
  6630. 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)
  6631. p93.CanCollide = false
  6632. p93.Locked = true
  6633. p93.FormFactor = Enum.FormFactor.Custom
  6634. p93.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6635. p93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6636. p93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6637. p93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6638. p93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6639. p93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6640. p93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6641. b93 = Instance.new("SpecialMesh", p93)
  6642. b93.MeshType = Enum.MeshType.Wedge
  6643. b93.Name = "Mesh"
  6644. b93.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  6645. p94 = Instance.new("WedgePart", m8)
  6646. p94.BrickColor = BrickColor.new("Lime green")
  6647. p94.Material = Enum.Material.Neon
  6648. p94.Reflectance = 0.40000000596046
  6649. p94.Name = "Wedge"
  6650. 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)
  6651. p94.CanCollide = false
  6652. p94.Locked = true
  6653. p94.FormFactor = Enum.FormFactor.Custom
  6654. p94.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6655. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6656. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6657. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6658. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6659. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6660. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6661. b94 = Instance.new("SpecialMesh", p94)
  6662. b94.MeshType = Enum.MeshType.Wedge
  6663. b94.Name = "Mesh"
  6664. b94.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6665. p95 = Instance.new("WedgePart", m8)
  6666. p95.BrickColor = BrickColor.new("Black")
  6667. p95.Material = Enum.Material.Metal
  6668. p95.Reflectance = 0.40000000596046
  6669. p95.Name = "Wedge"
  6670. 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)
  6671. p95.CanCollide = false
  6672. p95.Locked = true
  6673. p95.FormFactor = Enum.FormFactor.Custom
  6674. p95.Size = Vector3.new(0.220499977, 0.391078025, 0.222102806)
  6675. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6676. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6677. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6678. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6679. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6680. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6681. b95 = Instance.new("SpecialMesh", p95)
  6682. b95.MeshType = Enum.MeshType.Wedge
  6683. b95.Name = "Mesh"
  6684. b95.Scale = Vector3.new(0.261019886, 1, 1)
  6685. p96 = Instance.new("WedgePart", m8)
  6686. p96.BrickColor = BrickColor.new("Lime green")
  6687. p96.Material = Enum.Material.Neon
  6688. p96.Reflectance = 0.40000000596046
  6689. p96.Name = "Wedge"
  6690. 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)
  6691. p96.CanCollide = false
  6692. p96.Locked = true
  6693. p96.FormFactor = Enum.FormFactor.Custom
  6694. p96.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6695. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6696. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6697. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6698. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6699. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6700. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6701. b96 = Instance.new("SpecialMesh", p96)
  6702. b96.MeshType = Enum.MeshType.Wedge
  6703. b96.Name = "Mesh"
  6704. b96.Scale = Vector3.new(0.334640861, 0.736209989, 0.133856341)
  6705. p97 = Instance.new("WedgePart", m8)
  6706. p97.BrickColor = BrickColor.new("Lime green")
  6707. p97.Material = Enum.Material.Neon
  6708. p97.Reflectance = 0.40000000596046
  6709. p97.Name = "Wedge"
  6710. 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)
  6711. p97.CanCollide = false
  6712. p97.Locked = true
  6713. p97.FormFactor = Enum.FormFactor.Custom
  6714. p97.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6715. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6716. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6717. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6718. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6719. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6720. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6721. b97 = Instance.new("SpecialMesh", p97)
  6722. b97.MeshType = Enum.MeshType.Wedge
  6723. b97.Name = "Mesh"
  6724. b97.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6725. p98 = Instance.new("WedgePart", m8)
  6726. p98.BrickColor = BrickColor.new("Lime green")
  6727. p98.Material = Enum.Material.Neon
  6728. p98.Reflectance = 0.40000000596046
  6729. p98.Name = "Wedge"
  6730. 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)
  6731. p98.CanCollide = false
  6732. p98.Locked = true
  6733. p98.FormFactor = Enum.FormFactor.Custom
  6734. p98.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6735. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6736. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6737. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6738. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6739. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6740. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6741. b98 = Instance.new("SpecialMesh", p98)
  6742. b98.MeshType = Enum.MeshType.Wedge
  6743. b98.Name = "Mesh"
  6744. b98.Scale = Vector3.new(0.334640861, 0.669281721, 0.267712682)
  6745. p99 = Instance.new("WedgePart", m8)
  6746. p99.BrickColor = BrickColor.new("Lime green")
  6747. p99.Material = Enum.Material.Neon
  6748. p99.Reflectance = 0.40000000596046
  6749. p99.Name = "Wedge"
  6750. 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)
  6751. p99.CanCollide = false
  6752. p99.Locked = true
  6753. p99.FormFactor = Enum.FormFactor.Custom
  6754. p99.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6755. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6756. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6757. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6758. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6759. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6760. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6761. b99 = Instance.new("SpecialMesh", p99)
  6762. b99.MeshType = Enum.MeshType.Wedge
  6763. b99.Name = "Mesh"
  6764. b99.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  6765. p100 = Instance.new("WedgePart", m8)
  6766. p100.BrickColor = BrickColor.new("Lime green")
  6767. p100.Material = Enum.Material.Neon
  6768. p100.Reflectance = 0.40000000596046
  6769. p100.Name = "Wedge"
  6770. 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)
  6771. p100.CanCollide = false
  6772. p100.Locked = true
  6773. p100.FormFactor = Enum.FormFactor.Custom
  6774. p100.Size = Vector3.new(0.220499977, 0.236122593, 0.220499977)
  6775. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6776. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6777. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6778. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6779. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6780. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6781. b100 = Instance.new("SpecialMesh", p100)
  6782. b100.MeshType = Enum.MeshType.Wedge
  6783. b100.Name = "Mesh"
  6784. b100.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  6785. p101 = Instance.new("WedgePart", m8)
  6786. p101.BrickColor = BrickColor.new("Lime green")
  6787. p101.Material = Enum.Material.Neon
  6788. p101.Reflectance = 0.40000000596046
  6789. p101.Name = "Wedge"
  6790. 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)
  6791. p101.CanCollide = false
  6792. p101.Locked = true
  6793. p101.FormFactor = Enum.FormFactor.Custom
  6794. p101.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6795. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6796. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6797. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6798. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6799. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6800. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6801. b101 = Instance.new("SpecialMesh", p101)
  6802. b101.MeshType = Enum.MeshType.Wedge
  6803. b101.Name = "Mesh"
  6804. b101.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6805. p102 = Instance.new("WedgePart", m8)
  6806. p102.BrickColor = BrickColor.new("Lime green")
  6807. p102.Material = Enum.Material.Neon
  6808. p102.Reflectance = 0.40000000596046
  6809. p102.Name = "Wedge"
  6810. 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)
  6811. p102.CanCollide = false
  6812. p102.Locked = true
  6813. p102.FormFactor = Enum.FormFactor.Custom
  6814. p102.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6815. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6816. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6817. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6818. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6819. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6820. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6821. b102 = Instance.new("SpecialMesh", p102)
  6822. b102.MeshType = Enum.MeshType.Wedge
  6823. b102.Name = "Mesh"
  6824. b102.Scale = Vector3.new(0.334640861, 0.736209989, 0.334640861)
  6825. p103 = Instance.new("WedgePart", m8)
  6826. p103.BrickColor = BrickColor.new("Lime green")
  6827. p103.Material = Enum.Material.Neon
  6828. p103.Reflectance = 0.40000000596046
  6829. p103.Name = "Wedge"
  6830. 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)
  6831. p103.CanCollide = false
  6832. p103.Locked = true
  6833. p103.FormFactor = Enum.FormFactor.Custom
  6834. p103.Size = Vector3.new(0.220499977, 0.221364915, 0.220499977)
  6835. p103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6836. p103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6837. p103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6838. p103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6839. p103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6840. p103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6841. b103 = Instance.new("SpecialMesh", p103)
  6842. b103.MeshType = Enum.MeshType.Wedge
  6843. b103.Name = "Mesh"
  6844. b103.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  6845. p104 = Instance.new("WedgePart", m8)
  6846. p104.BrickColor = BrickColor.new("Lime green")
  6847. p104.Material = Enum.Material.Neon
  6848. p104.Reflectance = 0.40000000596046
  6849. p104.Name = "Wedge"
  6850. 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)
  6851. p104.CanCollide = false
  6852. p104.Locked = true
  6853. p104.FormFactor = Enum.FormFactor.Custom
  6854. p104.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6855. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6856. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6857. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6858. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6859. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6860. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6861. b104 = Instance.new("SpecialMesh", p104)
  6862. b104.MeshType = Enum.MeshType.Wedge
  6863. b104.Name = "Mesh"
  6864. b104.Scale = Vector3.new(0.334640861, 0.535425484, 0.267712682)
  6865. p105 = Instance.new("WedgePart", m8)
  6866. p105.BrickColor = BrickColor.new("Really black")
  6867. p105.Material = Enum.Material.Metal
  6868. p105.Reflectance = 0.40000000596046
  6869. p105.Name = "Wedge"
  6870. 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)
  6871. p105.CanCollide = false
  6872. p105.Locked = true
  6873. p105.FormFactor = Enum.FormFactor.Custom
  6874. p105.Size = Vector3.new(0.220499977, 0.383699238, 0.220499977)
  6875. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6876. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6877. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6878. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6879. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6880. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6881. b105 = Instance.new("SpecialMesh", p105)
  6882. b105.MeshType = Enum.MeshType.Wedge
  6883. b105.Name = "Mesh"
  6884. b105.Scale = Vector3.new(0.267712682, 1, 0.468497276)
  6885. p106 = Instance.new("WedgePart", m8)
  6886. p106.BrickColor = BrickColor.new("Lime green")
  6887. p106.Material = Enum.Material.Neon
  6888. p106.Reflectance = 0.40000000596046
  6889. p106.Name = "Wedge"
  6890. 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)
  6891. p106.CanCollide = false
  6892. p106.Locked = true
  6893. p106.FormFactor = Enum.FormFactor.Custom
  6894. p106.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6895. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6896. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6897. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6898. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6899. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6900. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6901. b106 = Instance.new("SpecialMesh", p106)
  6902. b106.MeshType = Enum.MeshType.Wedge
  6903. b106.Name = "Mesh"
  6904. b106.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6905. p107 = Instance.new("WedgePart", m8)
  6906. p107.BrickColor = BrickColor.new("Lime green")
  6907. p107.Material = Enum.Material.Neon
  6908. p107.Reflectance = 0.40000000596046
  6909. p107.Name = "Wedge"
  6910. 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)
  6911. p107.CanCollide = false
  6912. p107.Locked = true
  6913. p107.FormFactor = Enum.FormFactor.Custom
  6914. p107.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6915. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6916. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6917. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6918. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6919. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6920. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6921. b107 = Instance.new("SpecialMesh", p107)
  6922. b107.MeshType = Enum.MeshType.Wedge
  6923. b107.Name = "Mesh"
  6924. b107.Scale = Vector3.new(0.334640861, 0.468497276, 0.133856341)
  6925. p108 = Instance.new("WedgePart", m8)
  6926. p108.BrickColor = BrickColor.new("Black")
  6927. p108.Material = Enum.Material.Metal
  6928. p108.Reflectance = 0.40000000596046
  6929. p108.Name = "Wedge"
  6930. 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)
  6931. p108.CanCollide = false
  6932. p108.Locked = true
  6933. p108.FormFactor = Enum.FormFactor.Custom
  6934. p108.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6935. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6936. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6937. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6938. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6939. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6940. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6941. b108 = Instance.new("SpecialMesh", p108)
  6942. b108.MeshType = Enum.MeshType.Wedge
  6943. b108.Name = "Mesh"
  6944. b108.Scale = Vector3.new(0.267712682, 0.669281721, 0.0669281706)
  6945. p109 = Instance.new("WedgePart", m8)
  6946. p109.BrickColor = BrickColor.new("Lime green")
  6947. p109.Material = Enum.Material.Neon
  6948. p109.Reflectance = 0.40000000596046
  6949. p109.Name = "Wedge"
  6950. 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)
  6951. p109.CanCollide = false
  6952. p109.Locked = true
  6953. p109.FormFactor = Enum.FormFactor.Custom
  6954. p109.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6955. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6956. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6957. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6958. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6959. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6960. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6961. b109 = Instance.new("SpecialMesh", p109)
  6962. b109.MeshType = Enum.MeshType.Wedge
  6963. b109.Name = "Mesh"
  6964. b109.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  6965. p110 = Instance.new("WedgePart", m8)
  6966. p110.BrickColor = BrickColor.new("Lime green")
  6967. p110.Material = Enum.Material.Neon
  6968. p110.Reflectance = 0.40000000596046
  6969. p110.Name = "Wedge"
  6970. 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)
  6971. p110.CanCollide = false
  6972. p110.Locked = true
  6973. p110.FormFactor = Enum.FormFactor.Custom
  6974. p110.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6975. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6976. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6977. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6978. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6979. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6980. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6981. b110 = Instance.new("SpecialMesh", p110)
  6982. b110.MeshType = Enum.MeshType.Wedge
  6983. b110.Name = "Mesh"
  6984. b110.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6985. p111 = Instance.new("Part", m8)
  6986. p111.BrickColor = BrickColor.new("Really black")
  6987. p111.Material = Enum.Material.Metal
  6988. p111.Transparency = 1
  6989. p111.Name = "Hitbox"
  6990. 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)
  6991. p111.CanCollide = false
  6992. p111.Locked = true
  6993. p111.FormFactor = Enum.FormFactor.Custom
  6994. p111.Size = Vector3.new(0.22, 2.57, 1.22)
  6995. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6996. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6997. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6998. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6999. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7000. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7001. b111 = Instance.new("BlockMesh", p111)
  7002. b111.Name = "Mesh"
  7003. w1 = Instance.new("Weld", p1)
  7004. w1.Name = "Block_Weld"
  7005. w1.Part0 = p1
  7006. 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)
  7007. w1.Part1 = p2
  7008. 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)
  7009. w2 = Instance.new("Weld", p2)
  7010. w2.Name = "Block_Weld"
  7011. w2.Part0 = p2
  7012. 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)
  7013. w2.Part1 = p3
  7014. 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)
  7015. w3 = Instance.new("Weld", p3)
  7016. w3.Name = "Block_Weld"
  7017. w3.Part0 = p3
  7018. 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)
  7019. w3.Part1 = p4
  7020. 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)
  7021. w4 = Instance.new("Weld", p4)
  7022. w4.Name = "Block_Weld"
  7023. w4.Part0 = p4
  7024. 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)
  7025. w4.Part1 = p5
  7026. 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)
  7027. w5 = Instance.new("Weld", p5)
  7028. w5.Name = "Block_Weld"
  7029. w5.Part0 = p5
  7030. 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)
  7031. w5.Part1 = p6
  7032. 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)
  7033. w6 = Instance.new("Weld", p6)
  7034. w6.Name = "Block_Weld"
  7035. w6.Part0 = p6
  7036. 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)
  7037. w6.Part1 = p7
  7038. 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)
  7039. w7 = Instance.new("Weld", p7)
  7040. w7.Name = "Block_Weld"
  7041. w7.Part0 = p7
  7042. 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)
  7043. w7.Part1 = p8
  7044. 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)
  7045. w8 = Instance.new("Weld", p8)
  7046. w8.Name = "Block_Weld"
  7047. w8.Part0 = p8
  7048. 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)
  7049. w8.Part1 = p9
  7050. 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)
  7051. w9 = Instance.new("Weld", p9)
  7052. w9.Name = "Block_Weld"
  7053. w9.Part0 = p9
  7054. 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)
  7055. w9.Part1 = p10
  7056. 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)
  7057. w10 = Instance.new("Weld", p10)
  7058. w10.Name = "Circle_Weld"
  7059. w10.Part0 = p10
  7060. 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)
  7061. w10.Part1 = p11
  7062. 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)
  7063. w11 = Instance.new("Weld", p11)
  7064. w11.Name = "Block_Weld"
  7065. w11.Part0 = p11
  7066. 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)
  7067. w11.Part1 = p12
  7068. 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)
  7069. w12 = Instance.new("Weld", p12)
  7070. w12.Name = "Block_Weld"
  7071. w12.Part0 = p12
  7072. 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)
  7073. w12.Part1 = p13
  7074. 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)
  7075. w13 = Instance.new("Weld", p13)
  7076. w13.Name = "Block_Weld"
  7077. w13.Part0 = p13
  7078. 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)
  7079. w13.Part1 = p14
  7080. 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)
  7081. w14 = Instance.new("Weld", p14)
  7082. w14.Name = "Block_Weld"
  7083. w14.Part0 = p14
  7084. 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)
  7085. w14.Part1 = p15
  7086. 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)
  7087. w15 = Instance.new("Weld", p15)
  7088. w15.Name = "Handle_Weld"
  7089. w15.Part0 = p15
  7090. 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)
  7091. w15.Part1 = p16
  7092. 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)
  7093. w16 = Instance.new("Weld", p16)
  7094. w16.Name = "Block_Weld"
  7095. w16.Part0 = p16
  7096. 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)
  7097. w16.Part1 = p17
  7098. 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)
  7099. w17 = Instance.new("Weld", p17)
  7100. w17.Name = "Block_Weld"
  7101. w17.Part0 = p17
  7102. 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)
  7103. w17.Part1 = p18
  7104. 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)
  7105. w18 = Instance.new("Weld", p18)
  7106. w18.Name = "Block_Weld"
  7107. w18.Part0 = p18
  7108. 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)
  7109. w18.Part1 = p19
  7110. 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)
  7111. w19 = Instance.new("Weld", p19)
  7112. w19.Name = "Block_Weld"
  7113. w19.Part0 = p19
  7114. 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)
  7115. w19.Part1 = p20
  7116. 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)
  7117. w20 = Instance.new("Weld", p20)
  7118. w20.Name = "Block_Weld"
  7119. w20.Part0 = p20
  7120. 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)
  7121. w20.Part1 = p21
  7122. 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)
  7123. w21 = Instance.new("Weld", p21)
  7124. w21.Name = "Block_Weld"
  7125. w21.Part0 = p21
  7126. 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)
  7127. w21.Part1 = p22
  7128. 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)
  7129. w22 = Instance.new("Weld", p22)
  7130. w22.Name = "Block_Weld"
  7131. w22.Part0 = p22
  7132. 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)
  7133. w22.Part1 = p23
  7134. 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)
  7135. w23 = Instance.new("Weld", p23)
  7136. w23.Name = "Block_Weld"
  7137. w23.Part0 = p23
  7138. 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)
  7139. w23.Part1 = p24
  7140. 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)
  7141. w24 = Instance.new("Weld", p24)
  7142. w24.Name = "Block_Weld"
  7143. w24.Part0 = p24
  7144. 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)
  7145. w24.Part1 = p25
  7146. 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)
  7147. w25 = Instance.new("Weld", p25)
  7148. w25.Name = "Block_Weld"
  7149. w25.Part0 = p25
  7150. 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)
  7151. w25.Part1 = p26
  7152. 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)
  7153. w26 = Instance.new("Weld", p26)
  7154. w26.Name = "Block_Weld"
  7155. w26.Part0 = p26
  7156. 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)
  7157. w26.Part1 = p27
  7158. 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)
  7159. w27 = Instance.new("Weld", p27)
  7160. w27.Name = "Circle_Weld"
  7161. w27.Part0 = p27
  7162. 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)
  7163. w27.Part1 = p28
  7164. 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)
  7165. w28 = Instance.new("Weld", p28)
  7166. w28.Name = "Block_Weld"
  7167. w28.Part0 = p28
  7168. 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)
  7169. w28.Part1 = p29
  7170. 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)
  7171. w29 = Instance.new("Weld", p29)
  7172. w29.Name = "Block_Weld"
  7173. w29.Part0 = p29
  7174. 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)
  7175. w29.Part1 = p30
  7176. 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)
  7177. w30 = Instance.new("Weld", p30)
  7178. w30.Name = "Block_Weld"
  7179. w30.Part0 = p30
  7180. 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)
  7181. w30.Part1 = p31
  7182. 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)
  7183. w31 = Instance.new("Weld", p31)
  7184. w31.Name = "Block_Weld"
  7185. w31.Part0 = p31
  7186. 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)
  7187. w31.Part1 = p32
  7188. 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)
  7189. w32 = Instance.new("Weld", p32)
  7190. w32.Name = "Block_Weld"
  7191. w32.Part0 = p32
  7192. 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)
  7193. w32.Part1 = p33
  7194. 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)
  7195. w33 = Instance.new("Weld", p33)
  7196. w33.Name = "Block_Weld"
  7197. w33.Part0 = p33
  7198. 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)
  7199. w33.Part1 = p34
  7200. 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)
  7201. w34 = Instance.new("Weld", p34)
  7202. w34.Name = "Block_Weld"
  7203. w34.Part0 = p34
  7204. 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)
  7205. w34.Part1 = p35
  7206. 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)
  7207. w35 = Instance.new("Weld", p35)
  7208. w35.Name = "Block_Weld"
  7209. w35.Part0 = p35
  7210. 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)
  7211. w35.Part1 = p36
  7212. 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)
  7213. w36 = Instance.new("Weld", p36)
  7214. w36.Name = "Circle_Weld"
  7215. w36.Part0 = p36
  7216. 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)
  7217. w36.Part1 = p37
  7218. 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)
  7219. w37 = Instance.new("Weld", p37)
  7220. w37.Name = "Block_Weld"
  7221. w37.Part0 = p37
  7222. 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)
  7223. w37.Part1 = p38
  7224. 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)
  7225. w38 = Instance.new("Weld", p38)
  7226. w38.Name = "Block_Weld"
  7227. w38.Part0 = p38
  7228. 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)
  7229. w38.Part1 = p39
  7230. 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)
  7231. w39 = Instance.new("Weld", p39)
  7232. w39.Name = "Block_Weld"
  7233. w39.Part0 = p39
  7234. 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)
  7235. w39.Part1 = p40
  7236. 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)
  7237. w40 = Instance.new("Weld", p40)
  7238. w40.Name = "Block_Weld"
  7239. w40.Part0 = p40
  7240. 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)
  7241. w40.Part1 = p41
  7242. 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)
  7243. w41 = Instance.new("Weld", p41)
  7244. w41.Name = "Block_Weld"
  7245. w41.Part0 = p41
  7246. 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)
  7247. w41.Part1 = p42
  7248. 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)
  7249. w42 = Instance.new("Weld", p42)
  7250. w42.Name = "Block_Weld"
  7251. w42.Part0 = p42
  7252. 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)
  7253. w42.Part1 = p43
  7254. 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)
  7255. w43 = Instance.new("Weld", p43)
  7256. w43.Name = "Circle_Weld"
  7257. w43.Part0 = p43
  7258. 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)
  7259. w43.Part1 = p44
  7260. 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)
  7261. w44 = Instance.new("Weld", p44)
  7262. w44.Name = "Block_Weld"
  7263. w44.Part0 = p44
  7264. 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)
  7265. w44.Part1 = p45
  7266. 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)
  7267. w45 = Instance.new("Weld", p45)
  7268. w45.Name = "Block_Weld"
  7269. w45.Part0 = p45
  7270. 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)
  7271. w45.Part1 = p46
  7272. 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)
  7273. w46 = Instance.new("Weld", p46)
  7274. w46.Name = "Block_Weld"
  7275. w46.Part0 = p46
  7276. 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)
  7277. w46.Part1 = p47
  7278. 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)
  7279. w47 = Instance.new("Weld", p47)
  7280. w47.Name = "Block_Weld"
  7281. w47.Part0 = p47
  7282. 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)
  7283. w47.Part1 = p48
  7284. 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)
  7285. w48 = Instance.new("Weld", p48)
  7286. w48.Name = "Block_Weld"
  7287. w48.Part0 = p48
  7288. 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)
  7289. w48.Part1 = p49
  7290. 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)
  7291. w49 = Instance.new("Weld", p49)
  7292. w49.Name = "Block_Weld"
  7293. w49.Part0 = p49
  7294. 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)
  7295. w49.Part1 = p50
  7296. 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)
  7297. w50 = Instance.new("Weld", p50)
  7298. w50.Name = "Block_Weld"
  7299. w50.Part0 = p50
  7300. 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)
  7301. w50.Part1 = p51
  7302. 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)
  7303. w51 = Instance.new("Weld", p51)
  7304. w51.Name = "Block_Weld"
  7305. w51.Part0 = p51
  7306. 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)
  7307. w51.Part1 = p52
  7308. 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)
  7309. w52 = Instance.new("Weld", p52)
  7310. w52.Name = "Block_Weld"
  7311. w52.Part0 = p52
  7312. 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)
  7313. w52.Part1 = p53
  7314. 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)
  7315. w53 = Instance.new("Weld", p53)
  7316. w53.Name = "Circle_Weld"
  7317. w53.Part0 = p53
  7318. 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)
  7319. w53.Part1 = p54
  7320. 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)
  7321. w54 = Instance.new("Weld", p54)
  7322. w54.Name = "Block_Weld"
  7323. w54.Part0 = p54
  7324. 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)
  7325. w54.Part1 = p55
  7326. 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)
  7327. w55 = Instance.new("Weld", p55)
  7328. w55.Name = "Block_Weld"
  7329. w55.Part0 = p55
  7330. 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)
  7331. w55.Part1 = p56
  7332. 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)
  7333. w56 = Instance.new("Weld", p56)
  7334. w56.Name = "Block_Weld"
  7335. w56.Part0 = p56
  7336. 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)
  7337. w56.Part1 = p57
  7338. 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)
  7339. w57 = Instance.new("Weld", p57)
  7340. w57.Name = "Block_Weld"
  7341. w57.Part0 = p57
  7342. 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)
  7343. w57.Part1 = p58
  7344. 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)
  7345. w58 = Instance.new("Weld", p58)
  7346. w58.Name = "Block_Weld"
  7347. w58.Part0 = p58
  7348. 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)
  7349. w58.Part1 = p59
  7350. 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)
  7351. w59 = Instance.new("Weld", p59)
  7352. w59.Name = "Circle_Weld"
  7353. w59.Part0 = p59
  7354. 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)
  7355. w59.Part1 = p60
  7356. 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)
  7357. w60 = Instance.new("Weld", p60)
  7358. w60.Name = "Circle_Weld"
  7359. w60.Part0 = p60
  7360. 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)
  7361. w60.Part1 = p61
  7362. 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)
  7363. w61 = Instance.new("Weld", p61)
  7364. w61.Name = "Block_Weld"
  7365. w61.Part0 = p61
  7366. 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)
  7367. w61.Part1 = p62
  7368. 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)
  7369. w62 = Instance.new("Weld", p62)
  7370. w62.Name = "Block_Weld"
  7371. w62.Part0 = p62
  7372. 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)
  7373. w62.Part1 = p63
  7374. 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)
  7375. w63 = Instance.new("Weld", p63)
  7376. w63.Name = "Block_Weld"
  7377. w63.Part0 = p63
  7378. 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)
  7379. w63.Part1 = p64
  7380. 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)
  7381. w64 = Instance.new("Weld", p64)
  7382. w64.Name = "Block_Weld"
  7383. w64.Part0 = p64
  7384. 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)
  7385. w64.Part1 = p65
  7386. 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)
  7387. w65 = Instance.new("Weld", p65)
  7388. w65.Name = "Block_Weld"
  7389. w65.Part0 = p65
  7390. 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)
  7391. w65.Part1 = p66
  7392. 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)
  7393. w66 = Instance.new("Weld", p66)
  7394. w66.Name = "Block_Weld"
  7395. w66.Part0 = p66
  7396. 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)
  7397. w66.Part1 = p67
  7398. 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)
  7399. w67 = Instance.new("Weld", p67)
  7400. w67.Name = "Block_Weld"
  7401. w67.Part0 = p67
  7402. 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)
  7403. w67.Part1 = p68
  7404. 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)
  7405. w68 = Instance.new("Weld", p68)
  7406. w68.Name = "Block_Weld"
  7407. w68.Part0 = p68
  7408. 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)
  7409. w68.Part1 = p69
  7410. 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)
  7411. w69 = Instance.new("Weld", p69)
  7412. w69.Name = "Circle_Weld"
  7413. w69.Part0 = p69
  7414. 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)
  7415. w69.Part1 = p70
  7416. 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)
  7417. w70 = Instance.new("Weld", p70)
  7418. w70.Name = "Wedge_Weld"
  7419. w70.Part0 = p70
  7420. 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)
  7421. w70.Part1 = p71
  7422. 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)
  7423. w71 = Instance.new("Weld", p71)
  7424. w71.Name = "Wedge_Weld"
  7425. w71.Part0 = p71
  7426. 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)
  7427. w71.Part1 = p72
  7428. 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)
  7429. w72 = Instance.new("Weld", p72)
  7430. w72.Name = "Wedge_Weld"
  7431. w72.Part0 = p72
  7432. 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)
  7433. w72.Part1 = p73
  7434. 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)
  7435. w73 = Instance.new("Weld", p73)
  7436. w73.Name = "Wedge_Weld"
  7437. w73.Part0 = p73
  7438. 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)
  7439. w73.Part1 = p74
  7440. 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)
  7441. w74 = Instance.new("Weld", p74)
  7442. w74.Name = "Wedge_Weld"
  7443. w74.Part0 = p74
  7444. 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)
  7445. w74.Part1 = p75
  7446. 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)
  7447. w75 = Instance.new("Weld", p75)
  7448. w75.Name = "Wedge_Weld"
  7449. w75.Part0 = p75
  7450. 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)
  7451. w75.Part1 = p76
  7452. 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)
  7453. w76 = Instance.new("Weld", p76)
  7454. w76.Name = "Wedge_Weld"
  7455. w76.Part0 = p76
  7456. 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)
  7457. w76.Part1 = p77
  7458. 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)
  7459. w77 = Instance.new("Weld", p77)
  7460. w77.Name = "Wedge_Weld"
  7461. w77.Part0 = p77
  7462. 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)
  7463. w77.Part1 = p78
  7464. 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)
  7465. w78 = Instance.new("Weld", p78)
  7466. w78.Name = "Wedge_Weld"
  7467. w78.Part0 = p78
  7468. 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)
  7469. w78.Part1 = p79
  7470. 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)
  7471. w79 = Instance.new("Weld", p79)
  7472. w79.Name = "Wedge_Weld"
  7473. w79.Part0 = p79
  7474. 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)
  7475. w79.Part1 = p80
  7476. 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)
  7477. w80 = Instance.new("Weld", p80)
  7478. w80.Name = "Wedge_Weld"
  7479. w80.Part0 = p80
  7480. 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)
  7481. w80.Part1 = p81
  7482. 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)
  7483. w81 = Instance.new("Weld", p81)
  7484. w81.Name = "Wedge_Weld"
  7485. w81.Part0 = p81
  7486. 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)
  7487. w81.Part1 = p82
  7488. 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)
  7489. w82 = Instance.new("Weld", p82)
  7490. w82.Name = "Wedge_Weld"
  7491. w82.Part0 = p82
  7492. 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)
  7493. w82.Part1 = p83
  7494. 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)
  7495. w83 = Instance.new("Weld", p83)
  7496. w83.Name = "Wedge_Weld"
  7497. w83.Part0 = p83
  7498. 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)
  7499. w83.Part1 = p84
  7500. 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)
  7501. w84 = Instance.new("Weld", p84)
  7502. w84.Name = "Wedge_Weld"
  7503. w84.Part0 = p84
  7504. 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)
  7505. w84.Part1 = p85
  7506. 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)
  7507. w85 = Instance.new("Weld", p85)
  7508. w85.Name = "Wedge_Weld"
  7509. w85.Part0 = p85
  7510. 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)
  7511. w85.Part1 = p86
  7512. 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)
  7513. w86 = Instance.new("Weld", p86)
  7514. w86.Name = "Wedge_Weld"
  7515. w86.Part0 = p86
  7516. 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)
  7517. w86.Part1 = p87
  7518. 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)
  7519. w87 = Instance.new("Weld", p87)
  7520. w87.Name = "Wedge_Weld"
  7521. w87.Part0 = p87
  7522. 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)
  7523. w87.Part1 = p88
  7524. 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)
  7525. w88 = Instance.new("Weld", p88)
  7526. w88.Name = "Wedge_Weld"
  7527. w88.Part0 = p88
  7528. 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)
  7529. w88.Part1 = p89
  7530. 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)
  7531. w89 = Instance.new("Weld", p89)
  7532. w89.Name = "Wedge_Weld"
  7533. w89.Part0 = p89
  7534. 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)
  7535. w89.Part1 = p90
  7536. 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)
  7537. w90 = Instance.new("Weld", p90)
  7538. w90.Name = "Wedge_Weld"
  7539. w90.Part0 = p90
  7540. 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)
  7541. w90.Part1 = p91
  7542. 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)
  7543. w91 = Instance.new("Weld", p91)
  7544. w91.Name = "Wedge_Weld"
  7545. w91.Part0 = p91
  7546. 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)
  7547. w91.Part1 = p92
  7548. 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)
  7549. w92 = Instance.new("Weld", p92)
  7550. w92.Name = "Wedge_Weld"
  7551. w92.Part0 = p92
  7552. 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)
  7553. w92.Part1 = p93
  7554. 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)
  7555. w93 = Instance.new("Weld", p93)
  7556. w93.Name = "Wedge_Weld"
  7557. w93.Part0 = p93
  7558. 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)
  7559. w93.Part1 = p94
  7560. 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)
  7561. w94 = Instance.new("Weld", p94)
  7562. w94.Name = "Wedge_Weld"
  7563. w94.Part0 = p94
  7564. 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)
  7565. w94.Part1 = p95
  7566. 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)
  7567. w95 = Instance.new("Weld", p95)
  7568. w95.Name = "Wedge_Weld"
  7569. w95.Part0 = p95
  7570. 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)
  7571. w95.Part1 = p96
  7572. 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)
  7573. w96 = Instance.new("Weld", p96)
  7574. w96.Name = "Wedge_Weld"
  7575. w96.Part0 = p96
  7576. 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)
  7577. w96.Part1 = p97
  7578. 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)
  7579. w97 = Instance.new("Weld", p97)
  7580. w97.Name = "Wedge_Weld"
  7581. w97.Part0 = p97
  7582. 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)
  7583. w97.Part1 = p98
  7584. 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)
  7585. w98 = Instance.new("Weld", p98)
  7586. w98.Name = "Wedge_Weld"
  7587. w98.Part0 = p98
  7588. 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)
  7589. w98.Part1 = p99
  7590. 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)
  7591. w99 = Instance.new("Weld", p99)
  7592. w99.Name = "Wedge_Weld"
  7593. w99.Part0 = p99
  7594. 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)
  7595. w99.Part1 = p100
  7596. 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)
  7597. w100 = Instance.new("Weld", p100)
  7598. w100.Name = "Wedge_Weld"
  7599. w100.Part0 = p100
  7600. 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)
  7601. w100.Part1 = p101
  7602. 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)
  7603. w101 = Instance.new("Weld", p101)
  7604. w101.Name = "Wedge_Weld"
  7605. w101.Part0 = p101
  7606. 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)
  7607. w101.Part1 = p102
  7608. 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)
  7609. w102 = Instance.new("Weld", p102)
  7610. w102.Name = "Wedge_Weld"
  7611. w102.Part0 = p102
  7612. 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)
  7613. w102.Part1 = p103
  7614. 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)
  7615. w103 = Instance.new("Weld", p103)
  7616. w103.Name = "Wedge_Weld"
  7617. w103.Part0 = p103
  7618. 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)
  7619. w103.Part1 = p104
  7620. 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)
  7621. w104 = Instance.new("Weld", p104)
  7622. w104.Name = "Wedge_Weld"
  7623. w104.Part0 = p104
  7624. 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)
  7625. w104.Part1 = p105
  7626. 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)
  7627. w105 = Instance.new("Weld", p105)
  7628. w105.Name = "Wedge_Weld"
  7629. w105.Part0 = p105
  7630. 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)
  7631. w105.Part1 = p106
  7632. 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)
  7633. w106 = Instance.new("Weld", p106)
  7634. w106.Name = "Wedge_Weld"
  7635. w106.Part0 = p106
  7636. 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)
  7637. w106.Part1 = p107
  7638. 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)
  7639. w107 = Instance.new("Weld", p107)
  7640. w107.Name = "Wedge_Weld"
  7641. w107.Part0 = p107
  7642. 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)
  7643. w107.Part1 = p108
  7644. 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)
  7645. w108 = Instance.new("Weld", p108)
  7646. w108.Name = "Wedge_Weld"
  7647. w108.Part0 = p108
  7648. 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)
  7649. w108.Part1 = p109
  7650. 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)
  7651. w109 = Instance.new("Weld", p109)
  7652. w109.Name = "Wedge_Weld"
  7653. w109.Part0 = p109
  7654. 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)
  7655. w109.Part1 = p110
  7656. 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)
  7657. w110 = Instance.new("Weld", p110)
  7658. w110.Name = "Hitbox_Weld"
  7659. w110.Part0 = p110
  7660. 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)
  7661. w110.Part1 = p111
  7662. 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)
  7663. m8.Parent = rarm
  7664. m8:MakeJoints()
  7665. ----------------------------------------------------
  7666. local cor8 = Instance.new("Part", rarm.Zyrodoxa)
  7667. cor8.Name = "Thingy"
  7668. cor8.Locked = true
  7669. cor8.BottomSurface = 0
  7670. cor8.CanCollide = false
  7671. cor8.Size = Vector3.new(1, 1, 1)
  7672. cor8.Transparency = 1
  7673. cor8.TopSurface = 0
  7674. corw8 = Instance.new("Weld", cor8)
  7675. corw8.Part0 = rarm
  7676. corw8.Part1 = cor8
  7677. corw8.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180))
  7678. corw8.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  7679. weld8 = Instance.new("Weld", rarm.Zyrodoxa)
  7680. weld8.Part0 = cor8
  7681. weld8.Part1 = rarm.Zyrodoxa.Handle
  7682. weld8.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  7683. Amulite = Instance.new("PointLight",m7.Center)
  7684. Amulite.Brightness = 0
  7685. Amulite.Color = Color3.new(0,1,0)
  7686. ----------------------------------------------------
  7687. models = {m,m2,m3,m4,m5,m6,m7,m8}
  7688. parts = {}
  7689. Stepped:connect(function()
  7690. for i,v in pairs(models) do
  7691. for _, a in pairs(v:GetChildren()) do
  7692. if v:IsA("Part") and v.Name ~= "Thingy" then
  7693. table.insert(parts, a)
  7694. for i,v in pairs(parts) do
  7695. v.CanCollide = false
  7696. end
  7697. end
  7698. end
  7699. end
  7700. end)
  7701. ----------------------------------------------------
  7702. local animpose = "Idle1"
  7703. local lastanimpose = "Idle1"
  7704. local grab = false
  7705. local Smooth = 1
  7706. local sine = 0
  7707. local change = 1
  7708. local val = 0
  7709. local ffing = false
  7710. ----------------------------------------------------
  7711. --[[local hitbox = rarm.Zyrodoxa.Hitbox--Zyrodoxa is the name of the dagger k
  7712.  
  7713. function FindHumanoids()
  7714. local function c_region(Position, Size)
  7715. local SizeOffset = Size/2
  7716. local Point1 = Position - SizeOffset
  7717. local Point2 = Position + SizeOffset
  7718. local a = Instance.new("Part", workspace)
  7719. a.Anchored = true
  7720. a.Size = Size
  7721. a.Position = Position
  7722. print("Hey!, I'm making a part!")
  7723. return Region3.new(Point1, Point2)
  7724. end
  7725.  
  7726. local a = c_region((hitbox.CFrame * CFrame.new(0, -1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7727. local b = c_region((hitbox.CFrame * CFrame.new(0, -0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7728. local c = c_region((hitbox.CFrame * CFrame.new(0, 0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7729. local d = c_region((hitbox.CFrame * CFrame.new(0, 1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7730.  
  7731. local regions = {a, b, c, d}
  7732.  
  7733. local found_humanoids = {}
  7734. local already_found = {char.Name}
  7735.  
  7736. for _, region in pairs(regions) do
  7737. for _, part in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(region, rarm.Zyrodoxa:GetChildren(), 100)) do
  7738. print(part, part.Parent, part.Name) ---nope
  7739. if part.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  7740. local humanoid = part.Parent:FindFirstChild("Humanoid")
  7741. local name = humanoid.Parent.Name
  7742. local exists = false
  7743. for _, n in pairs(already_found) do
  7744. if n == name then
  7745. exists = true
  7746. end
  7747. end
  7748. if not exists then
  7749. table.insert(already_found, name)
  7750. table.insert(found_humanoids, humanoid)
  7751. end
  7752. elseif part.Parent.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  7753. local humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  7754. local name = humanoid.Parent.Parent.Name
  7755. local exists = false
  7756. for _, n in pairs(already_found) do
  7757. if n == name then
  7758. exists = true
  7759. end
  7760. end
  7761. if not exists then
  7762. table.insert(already_found, name)
  7763. table.insert(found_humanoids, humanoid)
  7764. end
  7765. end
  7766. end
  7767. end
  7768. return found_humanoids
  7769. end
  7770.  
  7771. local humanoids = FindHumanoids()
  7772. if #humanoids == 0 then
  7773. for i, v in pairs(humanoids) do
  7774. print(v.Parent.Name)
  7775. if Debounces.Slashing == true then
  7776. v:TakeDamage(math.random(10,20) * math.random(1,3)) --max 60 damage?
  7777. elseif Debounces.Slashing == false then
  7778. wait()
  7779. end
  7780. end
  7781. wait(0.3)
  7782. end]]--
  7783. ----------------------------------------------------
  7784. if key == "f" then
  7785. if Debounces.CanAttack == true then
  7786. Debounces.CanAttack = false
  7787. Debounces.NoIdl = true
  7788. Debounces.on = true
  7789. for i = 1, 20 do
  7790. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7791. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7792. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4),0,0),0.1)
  7793. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7794. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7795. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7796. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7797. 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)
  7798. 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)
  7799. 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)
  7800. 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)
  7801. 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)
  7802. 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)
  7803. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6), math.rad(0), 0), 0.1)
  7804. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), 0), 0.1)
  7805. 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)
  7806. 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)
  7807. 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)
  7808. 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)
  7809. if Debounces.on == false then
  7810. break
  7811. end
  7812. fat.Event:wait()
  7813. end
  7814. end
  7815. end
  7816. end)]]--
  7817. ----------------------------------------------------
  7818. mod4 = Instance.new("Model",char)
  7819.  
  7820. ptez = {0.7, 0.8, 0.9, 1}
  7821.  
  7822. function FindNearestTorso(Position,Distance,SinglePlayer)
  7823. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  7824. local List = {}
  7825. for i,v in pairs(workspace:GetChildren())do
  7826. if v:IsA("Model")then
  7827. if v:findFirstChild("Torso")then
  7828. if v ~= char then
  7829. if(v.Torso.Position -Position).magnitude <= Distance then
  7830. table.insert(List,v)
  7831. end
  7832. end
  7833. end
  7834. end
  7835. end
  7836. return List
  7837. end
  7838.  
  7839. function Slam()
  7840. local part=Instance.new('Part',mod4)
  7841. part.Anchored=true
  7842. part.CanCollide=false
  7843. part.FormFactor='Custom'
  7844. part.Size=Vector3.new(.2,.2,.2)
  7845. part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
  7846. part.Transparency=.7
  7847. part.BrickColor=BrickColor.new('Really black')
  7848. mesh=Instance.new('SpecialMesh',part)
  7849. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  7850. mesh.Scale=Vector3.new(3,3,3)
  7851. local part2=Instance.new('Part',mod4)
  7852. part2.Anchored=true
  7853. part2.CanCollide=false
  7854. part2.FormFactor='Custom'
  7855. part2.Size=Vector3.new(.2,.2,.2)
  7856. part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
  7857. part2.Transparency=.7
  7858. part2.BrickColor=BrickColor.new('Lime green')
  7859. mesh2=Instance.new('SpecialMesh',part2)
  7860. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  7861. mesh2.Scale=Vector3.new(3,1.5,3)
  7862. x = Instance.new("Sound",larm)
  7863. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  7864. x.Pitch = ptez[math.random(1,#ptez)]
  7865. x.Volume = 1
  7866. wait(.1)
  7867. x1 = Instance.new("Sound",larm)
  7868. x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
  7869. x1.Pitch = ptez[math.random(1,#ptez)]
  7870. x1.Volume = 1
  7871. wait(.1)
  7872. x:Play()
  7873. x1:Play()
  7874. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  7875. if v:FindFirstChild('Humanoid') then
  7876. v.Humanoid:TakeDamage(math.random(30,45))
  7877. end
  7878. end
  7879. coroutine.resume(coroutine.create(function()
  7880. for i=0,0.62,0.13 do
  7881. wait()
  7882. part.CFrame=part.CFrame
  7883. part.Transparency=i
  7884. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  7885. part2.CFrame=part2.CFrame
  7886. part2.Transparency=i
  7887. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  7888. end
  7889. part.Parent=nil
  7890. part2.Parent=nil
  7891. x:Destroy()
  7892. end))
  7893. end
  7894. ----------------------------------------------------
  7895. wPart = function(x,y,z,color,tr,cc,an,parent)
  7896. local wp = Instance.new('WedgePart',parent or Weapon)
  7897. wp.formFactor = 'Custom'
  7898. wp.Size = Vector3.new(x,y,z)
  7899. wp.BrickColor = BrickColor.new(color)
  7900. wp.CanCollide = cc
  7901. wp.Transparency = tr
  7902. wp.Anchored = an
  7903. wp.TopSurface,wp.BottomSurface = 0,0
  7904. return wp
  7905. end
  7906.  
  7907. Mesh = function(par,num,x,y,z)
  7908. local msh = _
  7909. if num == 1 then
  7910. msh = Instance.new("CylinderMesh",par)
  7911. elseif num == 2 then
  7912. msh = Instance.new("SpecialMesh",par)
  7913. msh.MeshType = 3
  7914. elseif num == 3 then
  7915. msh = Instance.new("BlockMesh",par)
  7916. elseif num == 4 then
  7917. msh = Instance.new("SpecialMesh",par)
  7918. msh.MeshType = "Torso"
  7919. elseif type(num) == 'string' then
  7920. msh = Instance.new("SpecialMesh",par)
  7921. msh.MeshId = num
  7922. end
  7923. msh.Scale = Vector3.new(x,y,z)
  7924. return msh
  7925. end
  7926.  
  7927. local function CFrameFromTopBack(at, top, back)
  7928. local right = top:Cross(back)
  7929. return CFrame.new(at.x, at.y, at.z,
  7930. right.x, top.x, back.x,
  7931. right.y, top.y, back.y,
  7932. right.z, top.z, back.z)
  7933. end
  7934.  
  7935. function Triangle(a, b, c)
  7936. local edg1 = (c-a):Dot((b-a).unit)
  7937. local edg2 = (a-b):Dot((c-b).unit)
  7938. local edg3 = (b-c):Dot((a-c).unit)
  7939. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  7940. a, b, c = a, b, c
  7941. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  7942. a, b, c = b, c, a
  7943. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  7944. a, b, c = c, a, b
  7945. else
  7946. print("unreachable")
  7947. end
  7948. local len1 = (c-a):Dot((b-a).unit)
  7949. local len2 = (b-a).magnitude - len1
  7950. local width = (a + (b-a).unit*len1 - c).magnitude
  7951. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  7952. local list = {}
  7953. if len1 > 0.01 then
  7954. local w1 = wPart(0,0,0,'Lime green',0.5,false,true,char)
  7955. local sz = Vector3.new(0.2, width, len1)
  7956. w1.Size = sz
  7957. local sp = Mesh(w1,2,0,0,0)
  7958. sp.MeshType='Wedge'
  7959. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  7960. w1:BreakJoints()
  7961. w1.Anchored = true
  7962. w1.Transparency = 0.7
  7963. Spawn(function()
  7964. for i=0,1,0.1 do
  7965. fat.Event:wait()
  7966. w1.Transparency=w1.Transparency+0.03
  7967. end
  7968. end)
  7969. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  7970. table.insert(list,w1)
  7971. end
  7972. if len2 > 0.01 then
  7973. local w2 = wPart(0,0,0,'Lime green',0.5,false,true,char)
  7974. local sz = Vector3.new(0.2, width, len2)
  7975. w2.Size = sz
  7976. local sp = Mesh(w2,2,0,0,0)
  7977. sp.MeshType='Wedge'
  7978. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  7979. w2:BreakJoints()
  7980. w2.Anchored = true
  7981. w2.Transparency = 0.7
  7982. Spawn(function()
  7983. for i=0,1,0.1 do
  7984. fat.Event:wait()
  7985. w2.Transparency=w2.Transparency+0.03
  7986. end
  7987. end)
  7988. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  7989. table.insert(list,w2)
  7990. end
  7991. return unpack(list)
  7992. end
  7993.  
  7994. function trail(p,t,h)
  7995. Spawn(function()
  7996. local blcf = p.CFrame
  7997. local scfr = blcf
  7998. for i=1,t do
  7999. local blcf = p.CFrame
  8000. if scfr and (p.Position-scfr.p).magnitude > .1 then
  8001. 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)
  8002. if a then game.Debris:AddItem(a,1) end
  8003. if b then game.Debris:AddItem(b,1) end
  8004. 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)
  8005. if a then game.Debris:AddItem(a,1) end
  8006. if b then game.Debris:AddItem(b,1) end
  8007. scfr = blcf
  8008. elseif not scfr then
  8009. scfr = blcf
  8010. end
  8011. fat.Event:wait()
  8012. end
  8013. scfr=nil
  8014. end)
  8015. end
  8016. --trail(char.Sword.Blade,1e1000,5)
  8017. ----------------------------------------------------
  8018. function Dmg()
  8019. local partofdeath = rarm.Zyrodoxa.Hitbox
  8020. local function CreateRegion3FromLocAndSize(Position, Size)
  8021. local SizeOffset = Size/2
  8022. local Point1 = Position - SizeOffset
  8023. local Point2 = Position + SizeOffset
  8024. return Region3.new(Point1, Point2)
  8025. end
  8026. local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
  8027. for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
  8028. Spawn(function()
  8029. if Debounces.Slashing == true and Debounces.Slashed == false then
  8030. Debounces.Slashed = true
  8031. ypcall(function()
  8032. local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
  8033. humanoid:TakeDamage(math.random(10,18))
  8034. end)
  8035. wait(.4)
  8036. Debounces.Slashed = false
  8037. end
  8038. end)
  8039. end
  8040. end
  8041. ----------------------------------------------------
  8042. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  8043. ptz = {0.7, 0.8, 0.9, 1}
  8044. idz = {"161006212", "161006195"}
  8045. function attackone()
  8046. for i = 1, 13 do
  8047. 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)
  8048. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(20), math.rad(30), math.rad(0)), 0.8)
  8049. 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)
  8050. 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)
  8051. 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)
  8052. 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)
  8053. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
  8054. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
  8055. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
  8056. 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)
  8057. 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)
  8058. 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)
  8059. 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)
  8060. 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)
  8061. if Debounces.on == false then
  8062. break
  8063. end
  8064. fat.Event:wait()
  8065. end
  8066. trail(rarm.Zyrodoxa.Hitbox,20,2)
  8067. Debounces.Slashing = true
  8068. wait(0.2)
  8069. --[[z = Instance.new("Sound", hed)
  8070. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  8071. z.Pitch = ptz[math.random(1,#ptz)]
  8072. z.Volume = 1
  8073. wait(.01)
  8074. z:Play()]]--
  8075. for i = 1, 14 do
  8076. Dmg()
  8077. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0.2) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  8078. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-40), math.rad(30), math.rad(0)), 0.8)
  8079. 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)
  8080. 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)
  8081. 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)
  8082. 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)
  8083. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
  8084. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8085. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
  8086. 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)
  8087. 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)
  8088. 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)
  8089. 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)
  8090. 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)
  8091. if Debounces.on == false then break end
  8092. rs:wait()
  8093. end
  8094. Debounces.Slashing = false
  8095. end
  8096. function attacktwo()
  8097. Debounces.Slashing = true
  8098. for i = 1, 14 do
  8099. Dmg()
  8100. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.37, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-90)), 0.4)
  8101. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), math.rad(0), math.rad(0)), 0.4)
  8102. 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)
  8103. 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)
  8104. 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)
  8105. 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)
  8106. 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)
  8107. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8108. 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)
  8109. 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)
  8110. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
  8111. 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)
  8112. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
  8113. 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)
  8114. if Debounces.on == false then
  8115. break
  8116. end
  8117. rs:wait()
  8118. end
  8119. end
  8120. ----------------------------------------------------
  8121. ComboNum = 0
  8122. if Debounces.CanAttack == true then
  8123. Debounces.CanAttack = false
  8124. Debounces.NoIdl = true
  8125. Debounces.on = true
  8126. if ComboNum == 0 then
  8127. attackone()
  8128. elseif ComboNum == 1 then
  8129. attacktwo()
  8130. --[[elseif ComboNum == 2 then
  8131. attackthree()]]--
  8132. end
  8133. ComboNum = ComboNum + 1
  8134. Debounces.CanAttack = true
  8135. Debounces.on = false
  8136. wait(.5)
  8137. if Debounces.CanAttack == true then
  8138. ComboNum = 0
  8139. Debounces.NoIdl = false
  8140. end
  8141. end
  8142. end)
  8143. ----------------------------------------------------
  8144. definition = 5
  8145. bc = {}
  8146. bezierparts = {}
  8147. function NoOutline(Part)
  8148. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  8149. end
  8150. function draw(p,d)
  8151. for i=1,d do
  8152. local t = i/d
  8153. bc[i] = p[1]*(1-t)^2+2*p[2]*(1-t)*t+p[3]*t^2
  8154. end
  8155. for i=1,d do
  8156. local bcs = Instance.new("Part",char)
  8157. NoOutline(bcs)
  8158. bcs.Anchored = true
  8159. bcs.CanCollide = false
  8160. bcs.Material = "Neon"
  8161. bcs.BrickColor = BrickColor.new("Lime green")
  8162. bcs.Size = Vector3.new(1,1,1)
  8163. bcs.Shape = Enum.PartType.Ball
  8164. bcs.CFrame = CFrame.new(bc[i])
  8165. local bcp = Instance.new("Part",char)
  8166. NoOutline(bcp)
  8167. bcp.Anchored = true
  8168. bcp.CanCollide = false
  8169. bcp.Material = "Neon"
  8170. bcp.BrickColor = BrickColor.new("Lime green")
  8171. local cm = Instance.new("CylinderMesh")
  8172. cm.Parent = bcp
  8173. if i ~= 1 then
  8174. bcp.CFrame = CFrame.new(bc[i]:Lerp(bc[i-1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  8175. bcp.Size = Vector3.new(1,(bc[i]-bc[i-1]).magnitude,1)
  8176. else
  8177. bcp.CFrame = CFrame.new(bc[i]:Lerp(p[1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  8178. bcp.Size = Vector3.new(1,(bc[i]-p[1]).magnitude,1)
  8179. end
  8180. table.insert(bezierparts, bcs)
  8181. table.insert(bezierparts, bcp)
  8182. end
  8183. Spawn(function() fat.Event:wait()
  8184. for i,v in pairs(bezierparts) do
  8185. v.Transparency = 1
  8186. end
  8187. end)
  8188. end
  8189. --local points = {larm.Position,rarn.Position,invisipart.Position}
  8190. --draw(points,definition)
  8191. if key == "f" then
  8192. if Debounces.CanAttack == true then
  8193. Debounces.CanAttack = false
  8194. Debounces.NoIdl = true
  8195. Debounces.on = true
  8196. for i = 1, 20 do
  8197. 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)
  8198. 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)
  8199. 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)
  8200. 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)
  8201. 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)
  8202. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8203. 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)
  8204. 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)
  8205. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  8206. 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)
  8207. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  8208. 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)
  8209. if Debounces.on == false then
  8210. break
  8211. end
  8212. fat.Event:wait()
  8213. end
  8214. rpart = Instance.new("Part",rarm)
  8215. NoOutline(rpart)
  8216. rpart.Anchored = false
  8217. rpart.Size = Vector3.new(1,1,1)
  8218. rpart.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8219. rpart.Transparency = 1
  8220. newWeld(rarm, rpart, 0, 0, 0)
  8221. rpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  8222. lpart = Instance.new("Part",larm)
  8223. NoOutline(lpart)
  8224. lpart.Anchored = false
  8225. lpart.Size = Vector3.new(1,1,1)
  8226. lpart.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8227. lpart.Transparency = 1
  8228. newWeld(larm, lpart, 0, 0, 0)
  8229. lpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  8230. invisipart = Instance.new("Part",torso)
  8231. NoOutline(invisipart)
  8232. invisipart.Anchored = false
  8233. invisipart.Size = Vector3.new(1,1,1)
  8234. invisipart.Transparency = 1
  8235. invisipart.CFrame = torso.CFrame
  8236. newWeld(torso, invisipart, 0, 0, 0)
  8237. invisipart.Weld.C1 = CFrame.new(0, 0, 6)
  8238. table.insert(bezierparts, rpart)
  8239. table.insert(bezierparts, lpart)
  8240. table.insert(bezierparts, invisipart)
  8241. for i = 1, 40 do
  8242. local points = {lpart.Position,invisipart.Position,rpart.Position}
  8243. draw(points,definition)
  8244. --invisipart.Weld.C1 = invisipart.Weld.C1 + Vector3.new(0,0,0.6)
  8245. 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)
  8246. 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)
  8247. 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)
  8248. 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)
  8249. 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)
  8250. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8251. 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)
  8252. 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)
  8253. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  8254. 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)
  8255. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  8256. 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)
  8257. if Debounces.on == false then
  8258. break
  8259. end
  8260. fat.Event:wait()
  8261. end
  8262. for i,v in pairs(bezierparts) do
  8263. v:Destroy()
  8264. end
  8265. --draw(points,definition)
  8266. if Debounces.CanAttack == false then
  8267. Debounces.CanAttack = true
  8268. Debounces.NoIdl = false
  8269. Debounces.on = false
  8270. end
  8271. end
  8272. end
  8273. end)
  8274. ----------------------------------------------------
  8275. pitches = {0.85, 0.9, 0.95, 1, 1.05, 1.1}
  8276. IDs = {"415880409","415880478"}
  8277. if key == "h" then
  8278. if Debounces.CanJoke == true then
  8279. Debounces.CanJoke = false
  8280. z = Instance.new("Sound",hed)
  8281. z.SoundId = "rbxassetid://"..IDs[math.random(1,#IDs)]
  8282. z.Pitch = 1
  8283. z.Volume = 1
  8284. z1 = Instance.new("Sound",hed)
  8285. z1.SoundId = z.SoundId
  8286. z1.Pitch = 1
  8287. z1.Volume = 1
  8288. wait()
  8289. z:Play()
  8290. z1:Play()
  8291. wait(20)
  8292. z:Destroy()
  8293. z1:Destroy()
  8294. if Debounces.CanJoke == false then
  8295. Debounces.CanJoke = true
  8296. end
  8297. end
  8298. end
  8299. end)
  8300. ----------------------------------------------------
  8301. if key == "j" then
  8302. if Debounces.CanJoke == true then
  8303. Debounces.CanJoke = false
  8304. z = Instance.new("Sound",hed)
  8305. z.SoundId = "rbxassetid://415859013"
  8306. z.Pitch = pitches[math.random(1,#pitches)]
  8307. z.Volume = 1
  8308. wait()
  8309. z:Play()
  8310. wait(2)
  8311. z:Destroy()
  8312. if Debounces.CanJoke == false then
  8313. Debounces.CanJoke = true
  8314. end
  8315. end
  8316. end
  8317. end)
  8318. ----------------------------------------------------
  8319. if key == "k" then
  8320. if Debounces.CanJoke == true then
  8321. Debounces.CanJoke = false
  8322. z = Instance.new("Sound",hed)
  8323. z.SoundId = "rbxassetid://415859085"
  8324. z.Pitch = pitches[math.random(1,#pitches)]
  8325. z.Volume = 1
  8326. wait()
  8327. z:Play()
  8328. wait(2)
  8329. z:Destroy()
  8330. if Debounces.CanJoke == false then
  8331. Debounces.CanJoke = true
  8332. end
  8333. end
  8334. end
  8335. end)
  8336. ----------------------------------------------------
  8337. Grab = false
  8338. if key == "z" then
  8339. Debounces.on = true
  8340. Debounces.NoIdl = true
  8341. Debounces.ks = true
  8342. if Grab == false then
  8343. gp = nil
  8344. for i = 1, 20 do
  8345. 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)
  8346. 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)
  8347. 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)
  8348. 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)
  8349. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
  8350. 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)
  8351. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
  8352. 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)
  8353. 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)
  8354. 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)
  8355. 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)
  8356. 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)
  8357. if Debounces.on == false then break end
  8358. fat.Event:wait()
  8359. end
  8360. con1=larm.LeftArm.LeftArmPlate.Touched:connect(function(hit)
  8361. ht = hit.Parent
  8362. for i,v in pairs(ht:GetChildren()) do
  8363. if v:IsA("Part") then
  8364. v.CanCollide = false
  8365. v.CustomPhysicalProperties = PhysicalProperties.new(0.001,0.001,0.001,0.001,0.001)
  8366. end
  8367. end
  8368. hum1=ht:FindFirstChild('Humanoid')
  8369. if hum1 ~= nil then
  8370. if Debounces.ks==true then
  8371. z = Instance.new("Sound",hed)
  8372. z.SoundId = "rbxassetid://169380525"
  8373. z.Volume = 1
  8374. z:Play()
  8375. Debounces.ks=false
  8376. end
  8377. hum1.PlatformStand=true
  8378. hum1:ChangeState'Physics'
  8379. gp = ht
  8380. Grab = true
  8381. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,0.6),CFrame.new(0,0,0))
  8382. asd.Parent = larm
  8383. asd.Name = "asd"
  8384. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
  8385. stanceToggle = "Grabbed"
  8386. --[[elseif hum1 == nil then
  8387. con1:disconnect()
  8388. wait() return]]--
  8389. end
  8390. end)
  8391. for i = 1, 20 do
  8392. 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)
  8393. 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)
  8394. 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)
  8395. 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)
  8396. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.2)
  8397. 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)
  8398. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
  8399. 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)
  8400. 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)
  8401. 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)
  8402. 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)
  8403. 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)
  8404. if Debounces.on == false then break end
  8405. fat.Event:wait()
  8406. end
  8407. con1:disconnect()
  8408. Debounces.on = false
  8409. Debounces.NoIdl = false
  8410. elseif Grab == true then
  8411. Grab = false
  8412. --[[for i = 1, 16 do
  8413. 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)
  8414. 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)
  8415. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
  8416. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  8417. 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)
  8418. 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)
  8419. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
  8420. if Debounces.on == false then end
  8421. rs:wait()
  8422. end]]--
  8423. for i = 1, 16 do
  8424. 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)
  8425. 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)
  8426. 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)
  8427. 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)
  8428. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
  8429. 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)
  8430. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.3)
  8431. 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)
  8432. 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)
  8433. 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)
  8434. 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)
  8435. 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)
  8436. if Debounces.on == false then end
  8437. rs:wait()
  8438. end
  8439. for i = 1, 12 do
  8440. 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)
  8441. 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)
  8442. 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)
  8443. 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)
  8444. 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)
  8445. 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)
  8446. 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)
  8447. 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)
  8448. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
  8449. 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)
  8450. 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)
  8451. 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)
  8452. if Debounces.on == false then end
  8453. rs:wait()
  8454. end
  8455. Slam()
  8456. if gp ~= nil then
  8457. for i,v in pairs(larm:GetChildren()) do
  8458. if v.Name == "asd" and v:IsA("Weld") then
  8459. v:Remove()
  8460. end
  8461. if v:IsA("Part") then
  8462. v.CanCollide = true
  8463. v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
  8464. end
  8465. end
  8466. end
  8467. stanceToggle = "Idle1"
  8468. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  8469. bv.maxForce = Vector3.new(400000, 400000, 400000)
  8470. bv.P = 125000
  8471. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  8472. ht=nil
  8473. Debounces.on = false
  8474. Debounces.NoIdl = false
  8475. elseif ht == nil then wait()
  8476. Grab = false
  8477. Debounces.on = false
  8478. Debounces.NoIdl = false
  8479. end
  8480. end
  8481. end)
  8482. ----------------------------------------------------
  8483. Change = false
  8484. if key == "n" then
  8485. if Change == false then
  8486. Change = true
  8487. stanceToggle = "Idle2"
  8488. elseif Change == true then
  8489. Change = false
  8490. stanceToggle = "Idle1"
  8491. end
  8492. end
  8493. end)
  8494. ----------------------------------------------------
  8495. if string.byte(key) == 52 then
  8496. Swing = 2
  8497. char.Humanoid.WalkSpeed = 28
  8498. end
  8499. end)
  8500. if string.byte(key) == 52 then
  8501. Swing = 1
  8502. char.Humanoid.WalkSpeed = 16
  8503. end
  8504. end)
  8505. ----------------------------------------------------
  8506. CR = torso.Cloak.Rotater
  8507. CR2 = torso.Cloak.CapeLevel1
  8508. CR3 = torso.Cloak.CapeLevel2
  8509. CR4 = torso.Cloak.CapeLevel3
  8510. CR5 = torso.Cloak.CapeLevel4
  8511. jump = false
  8512. rs:connect(function()
  8513. if char.Humanoid.Jump == true then
  8514. jump = true
  8515. else
  8516. jump = false
  8517. end
  8518. char.Humanoid.FreeFalling:connect(function(f)
  8519. if f then
  8520. ffing = true
  8521. else
  8522. ffing = false
  8523. end
  8524. end)
  8525. sine = sine + change
  8526. if jump == true then
  8527. animpose = "Jumping"
  8528. elseif ffing == true then
  8529. animpose = "Freefalling"
  8530. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  8531. animpose = "Idle"
  8532. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  8533. animpose = "Walking"
  8534. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  8535. animpose = "Running"
  8536. end
  8537. RightLeg = CFrame.new(0.5,-1,0)
  8538. LeftLeg = CFrame.new(-0.5,-1,0)
  8539.  
  8540. lefth = (torso.CFrame*LeftLeg)
  8541. righth = (torso.CFrame*RightLeg)
  8542.  
  8543. speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
  8544.  
  8545. TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
  8546.  
  8547. local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
  8548. local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
  8549. if animpose ~= lastanimpose then
  8550. sine = 0
  8551. if Debounces.NoIdl == false then
  8552. if stanceToggle == "Idle1" then
  8553. 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)
  8554. 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)
  8555. 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)
  8556. 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)
  8557. 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)
  8558. 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)
  8559. elseif stanceToggle == "Idle2" then
  8560. 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)
  8561. 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)
  8562. 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)
  8563. 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)
  8564. 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)
  8565. 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)
  8566. end
  8567. fat.Event:wait()
  8568. end
  8569. else
  8570. end
  8571. lastanimpose = animpose
  8572. if Debounces.NoIdl == false then
  8573. if animpose == "Idle" then
  8574. change = 0.5
  8575. if stanceToggle == "Idle1" then
  8576. 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)
  8577. 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)
  8578. 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)
  8579. 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)
  8580. 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)
  8581. 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)
  8582. 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)
  8583. 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)
  8584. 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)
  8585. 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)
  8586. 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)
  8587. 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)
  8588. 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)
  8589. 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)
  8590. 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)
  8591. 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)
  8592. 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)
  8593. 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)
  8594. 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)
  8595. elseif stanceToggle == "Idle2" then
  8596. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-6),0,0),0.1)
  8597. 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)
  8598. 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)
  8599. 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)
  8600. 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)
  8601. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8602. 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)
  8603. 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)
  8604. 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)
  8605. 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)
  8606. 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)
  8607. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  8608. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  8609. --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)
  8610. 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)
  8611. 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)
  8612. 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)
  8613. 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)
  8614. 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)
  8615. elseif stanceToggle == "Grabbed" then
  8616. grab = true
  8617. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8618. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8619. 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)
  8620. 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)
  8621. 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)
  8622. 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)
  8623. 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)
  8624. 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)
  8625. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  8626. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  8627. 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)
  8628. 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)
  8629. 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)
  8630. 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)
  8631. end
  8632. elseif animpose == "Walking" then
  8633. if stanceToggle == "Grabbed" then
  8634. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8635. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8636. 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)
  8637. 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)
  8638. 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)
  8639. 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)
  8640. 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)
  8641. 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)
  8642. 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)
  8643. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  8644. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  8645. 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)
  8646. 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)
  8647. 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)
  8648. 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)
  8649. elseif stanceToggle ~= "Grabbed" then
  8650. change = 1
  8651. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8652. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8653. 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)
  8654. 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)
  8655. 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)
  8656. 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)
  8657. 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)
  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.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)
  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.7)
  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 = 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)
  8668. 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)
  8669. 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)
  8670. --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)
  8671. 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)
  8672. 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)
  8673. end
  8674. elseif animpose == "Running" then
  8675. change = 1
  8676. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8677. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8678. 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)
  8679. 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)
  8680. 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)
  8681. 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)
  8682. 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)
  8683. 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)
  8684. 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)
  8685. 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)
  8686. 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)
  8687. 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)
  8688. 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)
  8689. 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)
  8690. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8691. 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)
  8692. 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)
  8693. 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)
  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.4)
  8695. elseif animpose == "Jumping" then
  8696. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-30),0,0),0.2)
  8697. 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)
  8698. 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)
  8699. 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)
  8700. 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)
  8701. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8702. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8703. 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)
  8704. 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)
  8705. 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)
  8706. 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)
  8707. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
  8708. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  8709. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8710. 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)
  8711. 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)
  8712. 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)
  8713. 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)
  8714. elseif animpose == "Freefalling" then
  8715. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-110),0,0),0.2)
  8716. 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)
  8717. 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)
  8718. 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)
  8719. 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)
  8720. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8721. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8722. 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)
  8723. 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)
  8724. 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)
  8725. 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)
  8726. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
  8727. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  8728. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8729. 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)
  8730. 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)
  8731. 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)
  8732. 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)
  8733. end
  8734. end
  8735. end)
  8736. hum.MaxHealth = 5000
  8737. wait(3)
  8738. hum.Health = 5000
  8739. while wait() do
  8740. wait(5)
  8741. for i=1,100 do wait()
  8742. Amulite.Brightness=Amulite.Brightness+0.02
  8743. end
  8744. for i=1,100 do wait()
  8745. Amulite.Brightness=Amulite.Brightness-0.02
  8746. end
  8747. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement