Advertisement
BINO2002

Untitled

Oct 30th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 429.98 KB | None | 0 0
  1. local p = game.Players.LocalPlayer--48103735
  2. local char = p.Character
  3. local mouse = p:GetMouse()
  4. local larm = char["Left Arm"]
  5. local rarm = char["Right Arm"]
  6. local lleg = char["Left Leg"]
  7. local rleg = char["Right Leg"]
  8. local hed = char.Head
  9. local torso = char.Torso
  10. local hum = char.Humanoid
  11. local cam = game.Workspace.CurrentCamera
  12. local root = char.HumanoidRootPart
  13. local rj = root.RootJoint
  14. local deb = false
  15. local shot = 0
  16. local stanceToggle = "Idle1"
  17. local l = game:GetService("Lighting")
  18. local rs = game:GetService("RunService").RenderStepped
  19. local hb = game:GetService("RunService").Heartbeat
  20. local Stepped = game:GetService("RunService").Stepped
  21. math.randomseed(os.time())
  22. hum.JumpPower = 100
  23. hed.face:Remove()
  24. ----------------------------------------------------
  25. fat = Instance.new("BindableEvent",script)
  26. fat.Name = "Heartbeat"
  27.  
  28. script:WaitForChild("Heartbeat")
  29.  
  30. frame = 1/30
  31. tf = 0
  32. 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.
  33. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  34. lastframe = tick()
  35. script.Heartbeat:Fire() --ayy lmao
  36.  
  37. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  38. tf = tf + s
  39. if tf >= frame then
  40. if allowframeloss then
  41. script.Heartbeat:Fire()
  42. lastframe=tick()
  43. else
  44. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  45. for i=1, math.floor(tf/frame) do
  46. script.Heartbeat:Fire()
  47. end
  48. lastframe=tick()
  49. end
  50. if tossremainder then
  51. tf = 0
  52. else
  53. tf = tf - frame * math.floor(tf/frame)
  54. end
  55. end
  56. end)
  57. ----------------------------------------------------
  58. for i,v in pairs(char:children()) do
  59. if v:IsA("Hat") then
  60. v:Destroy()
  61. end
  62. end
  63. for i,v in pairs (hed:GetChildren()) do
  64. if v:IsA("Sound") then
  65. v:Destroy()
  66. end
  67. end
  68. ----------------------------------------------------
  69. Debounces = {
  70. CanAttack = true;
  71. CanJoke = true;
  72. NoIdl = false;
  73. Slashing = false;
  74. Slashed = false;
  75. ks = false;
  76. }
  77. ----------------------------------------------------
  78. function weld5(part0, part1, c0, c1)
  79. weeld=Instance.new("Weld", part0)
  80. weeld.Part0=part0
  81. weeld.Part1=part1
  82. weeld.C0=c0
  83. weeld.C1=c1
  84. return weeld
  85. end
  86. ----------------------------------------------------
  87. function NewPart(prnt,siz,cf,trans,anc,mat,col)
  88. local prt=Instance.new("Part")
  89. prt.Parent=prnt
  90. prt.Name="Part"
  91. prt.Size=siz
  92. prt.CanCollide=false
  93. prt.Anchored=anc
  94. prt.Locked=true
  95. prt.Transparency = trans
  96. prt.TopSurface=10
  97. prt.BottomSurface=10
  98. prt.FrontSurface=10
  99. prt.BackSurface=10
  100. prt.LeftSurface=10
  101. prt.RightSurface=10
  102. prt:BreakJoints()
  103. prt.CFrame=cf or CFrame.new(30,10,30)
  104. prt.Material=mat
  105. prt.BrickColor=BrickColor.new(col)
  106. m=Instance.new("SpecialMesh",prt)
  107. m.MeshType=6
  108. return prt
  109. end
  110. ----------------------------------------------------
  111. function lerp(a, b, t) -- Linear interpolation
  112. return a + (b - a)*t
  113. end
  114.  
  115. function slerp(a, b, t) --Spherical interpolation
  116. dot = a:Dot(b)
  117. if dot > 0.99999 or dot < -0.99999 then
  118. return t <= 0.5 and a or b
  119. else
  120. r = math.acos(dot)
  121. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  122. end
  123. end
  124.  
  125. function matrixInterpolate(a, b, t)
  126. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  127. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  128. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  129. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  130. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  131. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  132. local t = v1:Dot(v2)
  133. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  134. return CFrame.new()
  135. end
  136. return CFrame.new(
  137. v0.x, v0.y, v0.z,
  138. v1.x, v1.y, v1.z,
  139. v2.x, v2.y, v2.z,
  140. v3.x, v3.y, v3.z)
  141. end
  142. ----------------------------------------------------
  143. function genWeld(a,b)
  144. local w = Instance.new("Weld",a)
  145. w.Part0 = a
  146. w.Part1 = b
  147. return w
  148. end
  149. function weld(a, b)
  150. local weld = Instance.new("Weld")
  151. weld.Name = "W"
  152. weld.Part0 = a
  153. weld.Part1 = b
  154. weld.C0 = a.CFrame:inverse() * b.CFrame
  155. weld.Parent = a
  156. return weld;
  157. end
  158. ----------------------------------------------------
  159. function Lerp(c1,c2,al)
  160. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  161. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  162. for i,v in pairs(com1) do
  163. com1[i] = v+(com2[i]-v)*al
  164. end
  165. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  166. end
  167. ----------------------------------------------------
  168. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  169. local wld = Instance.new("Weld", wp1)
  170. wld.Part0 = wp0
  171. wld.Part1 = wp1
  172. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  173. end
  174. ----------------------------------------------------
  175. newWeld(torso, larm, -1.5, 0.5, 0)
  176. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  177. newWeld(torso, rarm, 1.5, 0.5, 0)
  178. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  179. newWeld(torso, hed, 0, 1.5, 0)
  180. newWeld(torso, lleg, -0.5, -1, 0)
  181. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  182. newWeld(torso, rleg, 0.5, -1, 0)
  183. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  184. newWeld(root, torso, 0, -1, 0)
  185. torso.Weld.C1 = CFrame.new(0, -1, 0)
  186. ----------------------------------------------------
  187. z = Instance.new("Sound",char) --Smile: print("☺")
  188. z.SoundId = "rbxassetid://403445112"--410761150, 411368002
  189. z.Looped = true
  190. z.Pitch = 0.72
  191. z.Volume = 1
  192. wait(0.1)
  193. z:Play()
  194. ----------------------------------------------------
  195. New = function(Object, Parent, Name, Data)
  196. local Object = Instance.new(Object)
  197. for Index, Value in pairs(Data or {}) do
  198. Object[Index] = Value
  199. end
  200. Object.Parent = Parent
  201. Object.Name = Name
  202. return Object
  203. end
  204. ----------------------------------------------------
  205. pr = Instance.new("Part",hed)
  206. pr.BrickColor = BrickColor.new("Black")
  207. pr.Material = "Metal"
  208. pr.Reflectance = 0.04
  209. pr.Anchored = false
  210. pr.CanCollide = false
  211. pr.Archivable = false
  212. pr.Locked = true
  213. pr.Size = Vector3.new(2,0.8,1)
  214. prm = Instance.new("SpecialMesh",pr)
  215. prm.MeshType = "FileMesh"
  216. prm.MeshId = "rbxassetid://430345282"
  217. prm.Scale = Vector3.new(1,1,1)
  218. newWeld(hed, pr, 0, 0.35, 0)
  219. pr.Weld.C1 = CFrame.new(0,0,0)
  220. --Left Arm
  221. m = Instance.new("Model")
  222. m.Name = "LeftArm"
  223. p1 = Instance.new("Part", m)
  224. p1.BrickColor = BrickColor.new("Lime green")
  225. p1.Material = Enum.Material.Granite
  226. p1.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  227. p1.Size = Vector3.new(1, 0.200000048, 1)
  228. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  229. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  230. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  231. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  232. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  233. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  234. b1 = Instance.new("SpecialMesh", p1)
  235. b1.MeshType = Enum.MeshType.Brick
  236. b1.Name = "Mesh"
  237. b1.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  238. p2 = Instance.new("Part", m)
  239. p2.BrickColor = BrickColor.new("Lime green")
  240. p2.Material = Enum.Material.Granite
  241. p2.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  242. p2.Size = Vector3.new(1, 0.200000048, 1)
  243. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  244. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  245. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  246. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  247. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  248. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  249. b2 = Instance.new("SpecialMesh", p2)
  250. b2.MeshType = Enum.MeshType.Brick
  251. b2.Name = "Mesh"
  252. b2.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  253. p3 = Instance.new("Part", m)
  254. p3.BrickColor = BrickColor.new("Lime green")
  255. p3.Material = Enum.Material.Granite
  256. p3.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  257. p3.Size = Vector3.new(1, 0.200000048, 1)
  258. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  259. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  260. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  261. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  262. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  263. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  264. b3 = Instance.new("SpecialMesh", p3)
  265. b3.MeshType = Enum.MeshType.Brick
  266. b3.Name = "Mesh"
  267. b3.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  268. p4 = Instance.new("Part", m)
  269. p4.BrickColor = BrickColor.new("Black")
  270. p4.Material = Enum.Material.SmoothPlastic
  271. p4.Name = "LeftArmPlate"
  272. p4.Size = Vector3.new(1, 2, 1)
  273. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  274. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  275. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  276. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  277. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  278. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  279. b4 = Instance.new("SpecialMesh", p4)
  280. b4.MeshType = Enum.MeshType.Brick
  281. b4.Name = "Mesh"
  282. b4.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  283. p5 = Instance.new("Part", m)
  284. p5.BrickColor = BrickColor.new("Lime green")
  285. p5.Material = Enum.Material.Granite
  286. p5.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  287. p5.Size = Vector3.new(1, 0.200000048, 1)
  288. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  289. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  290. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  291. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  292. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  293. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  294. b5 = Instance.new("SpecialMesh", p5)
  295. b5.MeshType = Enum.MeshType.Brick
  296. b5.Name = "Mesh"
  297. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  298. p6 = Instance.new("Part", m)
  299. p6.BrickColor = BrickColor.new("Lime green")
  300. p6.Material = Enum.Material.Granite
  301. p6.CFrame = CFrame.new(-1.5, 5.73969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  302. p6.Size = Vector3.new(1, 0.200000048, 1)
  303. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  304. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  305. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  306. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  307. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  308. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  309. b6 = Instance.new("SpecialMesh", p6)
  310. b6.MeshType = Enum.MeshType.Brick
  311. b6.Name = "Mesh"
  312. b6.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  313. p7 = Instance.new("Part", m)
  314. p7.BrickColor = BrickColor.new("Lime green")
  315. p7.Material = Enum.Material.Granite
  316. p7.CFrame = CFrame.new(-1.5, 6.03969383, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  317. p7.FormFactor = Enum.FormFactor.Custom
  318. p7.Size = Vector3.new(1, 0.200000048, 1)
  319. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  320. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  321. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  322. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  323. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  324. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  325. b7 = Instance.new("SpecialMesh", p7)
  326. b7.MeshType = Enum.MeshType.Brick
  327. b7.Name = "Mesh"
  328. b7.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  329. p8 = Instance.new("Part", m)
  330. p8.BrickColor = BrickColor.new("Lime green")
  331. p8.Material = Enum.Material.Granite
  332. p8.CFrame = CFrame.new(-1.5, 6.33969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  333. p8.FormFactor = Enum.FormFactor.Custom
  334. p8.Size = Vector3.new(1, 0.200000048, 1)
  335. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  336. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  337. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  338. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  339. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  340. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  341. b8 = Instance.new("SpecialMesh", p8)
  342. b8.MeshType = Enum.MeshType.Brick
  343. b8.Name = "Mesh"
  344. b8.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  345. p9 = Instance.new("Part", m)
  346. p9.BrickColor = BrickColor.new("Lime green")
  347. p9.Material = Enum.Material.Granite
  348. p9.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  349. p9.FormFactor = Enum.FormFactor.Custom
  350. p9.Size = Vector3.new(1, 0.200000048, 1)
  351. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  352. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  353. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  354. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  355. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  356. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  357. b9 = Instance.new("SpecialMesh", p9)
  358. b9.MeshType = Enum.MeshType.Brick
  359. b9.Name = "Mesh"
  360. b9.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  361. p10 = Instance.new("Part", m)
  362. p10.BrickColor = BrickColor.new("Black")
  363. p10.Material = Enum.Material.SmoothPlastic
  364. p10.CFrame = CFrame.new(-1.5, 6.78969193, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  365. p10.FormFactor = Enum.FormFactor.Custom
  366. p10.Size = Vector3.new(1, 0.349999994, 1)
  367. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  368. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  369. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  370. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  371. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  372. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  373. b10 = Instance.new("SpecialMesh", p10)
  374. b10.MeshType = Enum.MeshType.Brick
  375. b10.Name = "Mesh"
  376. b10.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  377. p11 = Instance.new("Part", m)
  378. p11.BrickColor = BrickColor.new("Black")
  379. p11.Material = Enum.Material.Metal
  380. p11.CFrame = CFrame.new(-1.5, 6.48969078, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  381. p11.FormFactor = Enum.FormFactor.Custom
  382. p11.Size = Vector3.new(1, 0.25, 1)
  383. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  384. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  385. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  386. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  387. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  388. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  389. b11 = Instance.new("SpecialMesh", p11)
  390. b11.MeshType = Enum.MeshType.Brick
  391. b11.Name = "Mesh"
  392. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  393. p12 = Instance.new("Part", m)
  394. p12.BrickColor = BrickColor.new("Black")
  395. p12.Material = Enum.Material.Metal
  396. p12.CFrame = CFrame.new(-1.5, 6.18969154, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  397. p12.FormFactor = Enum.FormFactor.Custom
  398. p12.Size = Vector3.new(1, 0.25, 1)
  399. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  400. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  401. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  402. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  403. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  404. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  405. b12 = Instance.new("SpecialMesh", p12)
  406. b12.MeshType = Enum.MeshType.Brick
  407. b12.Name = "Mesh"
  408. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  409. p13 = Instance.new("Part", m)
  410. p13.BrickColor = BrickColor.new("Black")
  411. p13.Material = Enum.Material.Metal
  412. p13.CFrame = CFrame.new(-1.5, 5.88968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  413. p13.FormFactor = Enum.FormFactor.Custom
  414. p13.Size = Vector3.new(1, 0.25, 1)
  415. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  416. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  417. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  418. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  419. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  420. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  421. b13 = Instance.new("SpecialMesh", p13)
  422. b13.MeshType = Enum.MeshType.Brick
  423. b13.Name = "Mesh"
  424. b13.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  425. p14 = Instance.new("Part", m)
  426. p14.BrickColor = BrickColor.new("Black")
  427. p14.Material = Enum.Material.Metal
  428. p14.CFrame = CFrame.new(-1.5, 5.58969307, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  429. p14.FormFactor = Enum.FormFactor.Custom
  430. p14.Size = Vector3.new(1, 0.25, 1)
  431. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  432. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  433. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  434. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  435. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  436. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  437. b14 = Instance.new("SpecialMesh", p14)
  438. b14.MeshType = Enum.MeshType.Brick
  439. b14.Name = "Mesh"
  440. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  441. p15 = Instance.new("Part", m)
  442. p15.BrickColor = BrickColor.new("Lime green")
  443. p15.Material = Enum.Material.Granite
  444. p15.CFrame = CFrame.new(-1.5, 6.63968849, 22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  445. p15.FormFactor = Enum.FormFactor.Custom
  446. p15.Size = Vector3.new(1, 1, 1)
  447. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  448. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  449. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  450. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  451. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  452. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  453. b15 = Instance.new("SpecialMesh", p15)
  454. b15.MeshType = Enum.MeshType.Sphere
  455. b15.Name = "Mesh"
  456. p16 = Instance.new("Part", m)
  457. p16.BrickColor = BrickColor.new("Black")
  458. p16.Material = Enum.Material.Metal
  459. 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)
  460. p16.FormFactor = Enum.FormFactor.Custom
  461. p16.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  462. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  463. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  464. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  465. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  466. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  467. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  468. b16 = Instance.new("SpecialMesh", p16)
  469. b16.MeshType = Enum.MeshType.Brick
  470. b16.Name = "Mesh"
  471. b16.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  472. p17 = Instance.new("Part", m)
  473. p17.BrickColor = BrickColor.new("Black")
  474. p17.Material = Enum.Material.SmoothPlastic
  475. 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)
  476. p17.FormFactor = Enum.FormFactor.Custom
  477. p17.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  478. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  479. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  480. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  481. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  482. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  483. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  484. b17 = Instance.new("SpecialMesh", p17)
  485. b17.MeshType = Enum.MeshType.Brick
  486. b17.Name = "Mesh"
  487. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  488. p18 = Instance.new("Part", m)
  489. p18.BrickColor = BrickColor.new("Black")
  490. p18.Material = Enum.Material.SmoothPlastic
  491. 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)
  492. p18.FormFactor = Enum.FormFactor.Custom
  493. p18.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  494. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  495. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  496. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  497. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  498. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  499. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  500. b18 = Instance.new("SpecialMesh", p18)
  501. b18.MeshType = Enum.MeshType.Brick
  502. b18.Name = "Mesh"
  503. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  504. p19 = Instance.new("Part", m)
  505. p19.BrickColor = BrickColor.new("Black")
  506. p19.Material = Enum.Material.SmoothPlastic
  507. 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)
  508. p19.FormFactor = Enum.FormFactor.Custom
  509. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  510. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  511. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  512. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  513. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  514. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  515. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  516. b19 = Instance.new("SpecialMesh", p19)
  517. b19.MeshType = Enum.MeshType.Brick
  518. b19.Name = "Mesh"
  519. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  520. p20 = Instance.new("Part", m)
  521. p20.BrickColor = BrickColor.new("Really black")
  522. p20.Material = Enum.Material.SmoothPlastic
  523. 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)
  524. p20.FormFactor = Enum.FormFactor.Custom
  525. p20.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  526. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  527. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  528. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  529. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  530. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  531. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  532. b20 = Instance.new("SpecialMesh", p20)
  533. b20.MeshType = Enum.MeshType.Brick
  534. b20.Name = "Mesh"
  535. b20.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  536. p21 = Instance.new("Part", m)
  537. p21.BrickColor = BrickColor.new("Black")
  538. p21.Material = Enum.Material.Metal
  539. 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)
  540. p21.FormFactor = Enum.FormFactor.Custom
  541. p21.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  542. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  543. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  544. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  545. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  546. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  547. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  548. b21 = Instance.new("SpecialMesh", p21)
  549. b21.MeshType = Enum.MeshType.Wedge
  550. b21.Name = "Mesh"
  551. b21.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  552. p22 = Instance.new("Part", m)
  553. p22.BrickColor = BrickColor.new("Black")
  554. p22.Material = Enum.Material.Metal
  555. 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)
  556. p22.FormFactor = Enum.FormFactor.Custom
  557. p22.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  558. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  559. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  560. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  561. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  562. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  563. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  564. b22 = Instance.new("SpecialMesh", p22)
  565. b22.MeshType = Enum.MeshType.Brick
  566. b22.Name = "Mesh"
  567. b22.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  568. p23 = Instance.new("Part", m)
  569. p23.BrickColor = BrickColor.new("Black")
  570. p23.Material = Enum.Material.Metal
  571. 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)
  572. p23.FormFactor = Enum.FormFactor.Custom
  573. p23.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  574. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  575. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  576. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  577. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  578. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  579. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  580. b23 = Instance.new("SpecialMesh", p23)
  581. b23.MeshType = Enum.MeshType.Brick
  582. b23.Name = "Mesh"
  583. b23.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  584. p24 = Instance.new("Part", m)
  585. p24.BrickColor = BrickColor.new("Black")
  586. p24.Material = Enum.Material.Metal
  587. 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)
  588. p24.FormFactor = Enum.FormFactor.Custom
  589. p24.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  590. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  591. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  592. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  593. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  594. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  595. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  596. b24 = Instance.new("SpecialMesh", p24)
  597. b24.MeshType = Enum.MeshType.Brick
  598. b24.Name = "Mesh"
  599. b24.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  600. p25 = Instance.new("Part", m)
  601. p25.BrickColor = BrickColor.new("Black")
  602. p25.Material = Enum.Material.Metal
  603. 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)
  604. p25.FormFactor = Enum.FormFactor.Custom
  605. p25.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  606. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  607. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  608. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  609. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  610. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  611. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  612. b25 = Instance.new("SpecialMesh", p25)
  613. b25.MeshType = Enum.MeshType.Brick
  614. b25.Name = "Mesh"
  615. b25.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  616. p26 = Instance.new("Part", m)
  617. p26.BrickColor = BrickColor.new("Black")
  618. p26.Material = Enum.Material.Metal
  619. 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)
  620. p26.FormFactor = Enum.FormFactor.Custom
  621. p26.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  622. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  623. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  624. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  625. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  626. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  627. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  628. b26 = Instance.new("SpecialMesh", p26)
  629. b26.MeshType = Enum.MeshType.Brick
  630. b26.Name = "Mesh"
  631. b26.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  632. p27 = Instance.new("Part", m)
  633. p27.BrickColor = BrickColor.new("Black")
  634. p27.Material = Enum.Material.Metal
  635. 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)
  636. p27.FormFactor = Enum.FormFactor.Custom
  637. p27.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  638. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  639. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  640. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  641. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  642. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  643. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  644. b27 = Instance.new("SpecialMesh", p27)
  645. b27.MeshType = Enum.MeshType.Brick
  646. b27.Name = "Mesh"
  647. b27.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  648. p28 = Instance.new("Part", m)
  649. p28.BrickColor = BrickColor.new("Black")
  650. p28.Material = Enum.Material.Metal
  651. 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)
  652. p28.FormFactor = Enum.FormFactor.Custom
  653. p28.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  654. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  655. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  656. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  657. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  658. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  659. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  660. b28 = Instance.new("SpecialMesh", p28)
  661. b28.MeshType = Enum.MeshType.Brick
  662. b28.Name = "Mesh"
  663. b28.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  664. p29 = Instance.new("Part", m)
  665. p29.BrickColor = BrickColor.new("Black")
  666. p29.Material = Enum.Material.Metal
  667. 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)
  668. p29.FormFactor = Enum.FormFactor.Custom
  669. p29.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  670. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  671. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  672. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  673. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  674. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  675. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  676. b29 = Instance.new("SpecialMesh", p29)
  677. b29.MeshType = Enum.MeshType.Brick
  678. b29.Name = "Mesh"
  679. b29.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  680. p30 = Instance.new("Part", m)
  681. p30.BrickColor = BrickColor.new("Black")
  682. p30.Material = Enum.Material.Metal
  683. 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)
  684. p30.FormFactor = Enum.FormFactor.Custom
  685. p30.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  686. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  687. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  688. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  689. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  690. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  691. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  692. b30 = Instance.new("SpecialMesh", p30)
  693. b30.MeshType = Enum.MeshType.Wedge
  694. b30.Name = "Mesh"
  695. b30.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  696. p31 = Instance.new("Part", m)
  697. p31.BrickColor = BrickColor.new("Black")
  698. p31.Material = Enum.Material.Metal
  699. 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)
  700. p31.FormFactor = Enum.FormFactor.Custom
  701. p31.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  702. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  703. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  704. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  705. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  706. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  707. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  708. b31 = Instance.new("SpecialMesh", p31)
  709. b31.MeshType = Enum.MeshType.Brick
  710. b31.Name = "Mesh"
  711. b31.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  712. p32 = Instance.new("Part", m)
  713. p32.BrickColor = BrickColor.new("Black")
  714. p32.Material = Enum.Material.Metal
  715. 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)
  716. p32.FormFactor = Enum.FormFactor.Custom
  717. p32.Size = Vector3.new(0.200000003, 0.200000048, 0.399999976)
  718. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  719. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  720. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  721. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  722. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  723. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  724. b32 = Instance.new("SpecialMesh", p32)
  725. b32.MeshType = Enum.MeshType.Wedge
  726. b32.Name = "Mesh"
  727. b32.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  728. p33 = Instance.new("Part", m)
  729. p33.BrickColor = BrickColor.new("Black")
  730. p33.Material = Enum.Material.Metal
  731. 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)
  732. p33.FormFactor = Enum.FormFactor.Custom
  733. p33.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  734. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  735. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  736. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  737. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  738. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  739. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  740. b33 = Instance.new("SpecialMesh", p33)
  741. b33.MeshType = Enum.MeshType.Brick
  742. b33.Name = "Mesh"
  743. b33.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  744. p34 = Instance.new("Part", m)
  745. p34.BrickColor = BrickColor.new("Black")
  746. p34.Material = Enum.Material.Metal
  747. 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)
  748. p34.FormFactor = Enum.FormFactor.Custom
  749. p34.Size = Vector3.new(0.200000003, 0.200000048, 0.599999964)
  750. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  751. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  752. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  753. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  754. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  755. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  756. b34 = Instance.new("SpecialMesh", p34)
  757. b34.MeshType = Enum.MeshType.Brick
  758. b34.Name = "Mesh"
  759. b34.Scale = Vector3.new(1.04999995, 1.01999998, 1.03999996)
  760. w1 = Instance.new("Weld", p1)
  761. w1.Name = "Part_Weld"
  762. w1.Part0 = p1
  763. w1.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  764. w1.Part1 = p2
  765. w1.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  766. w2 = Instance.new("Weld", p2)
  767. w2.Name = "Part_Weld"
  768. w2.Part0 = p2
  769. w2.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  770. w2.Part1 = p3
  771. w2.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  772. w3 = Instance.new("Weld", p3)
  773. w3.Name = "LeftArmPlate_Weld"
  774. w3.Part0 = p3
  775. w3.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  776. w3.Part1 = p4
  777. w3.C1 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  778. w4 = Instance.new("Weld", p4)
  779. w4.Name = "Part_Weld"
  780. w4.Part0 = p4
  781. w4.C0 = CFrame.new(1.5, -18.1000156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  782. w4.Part1 = p5
  783. w4.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  784. w5 = Instance.new("Weld", p5)
  785. w5.Name = "Part_Weld"
  786. w5.Part0 = p5
  787. w5.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  788. w5.Part1 = p6
  789. w5.C1 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  790. w6 = Instance.new("Weld", p6)
  791. w6.Name = "Part_Weld"
  792. w6.Part0 = p6
  793. w6.C0 = CFrame.new(1.5, -17.9000149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  794. w6.Part1 = p7
  795. w6.C1 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  796. w7 = Instance.new("Weld", p7)
  797. w7.Name = "Part_Weld"
  798. w7.Part0 = p7
  799. w7.C0 = CFrame.new(1.5, -18.2000179, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  800. w7.Part1 = p8
  801. w7.C1 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  802. w8 = Instance.new("Weld", p8)
  803. w8.Name = "Part_Weld"
  804. w8.Part0 = p8
  805. w8.C0 = CFrame.new(1.5, -18.5000172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  806. w8.Part1 = p9
  807. w8.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  808. w9 = Instance.new("Weld", p9)
  809. w9.Name = "Part_Weld"
  810. w9.Part0 = p9
  811. w9.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  812. w9.Part1 = p10
  813. w9.C1 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  814. w10 = Instance.new("Weld", p10)
  815. w10.Name = "Part_Weld"
  816. w10.Part0 = p10
  817. w10.C0 = CFrame.new(1.5, -18.950016, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  818. w10.Part1 = p11
  819. w10.C1 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  820. w11 = Instance.new("Weld", p11)
  821. w11.Name = "Part_Weld"
  822. w11.Part0 = p11
  823. w11.C0 = CFrame.new(1.5, -18.6500149, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  824. w11.Part1 = p12
  825. w11.C1 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  826. w12 = Instance.new("Weld", p12)
  827. w12.Name = "Part_Weld"
  828. w12.Part0 = p12
  829. w12.C0 = CFrame.new(1.5, -18.3500156, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  830. w12.Part1 = p13
  831. w12.C1 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  832. w13 = Instance.new("Weld", p13)
  833. w13.Name = "Part_Weld"
  834. w13.Part0 = p13
  835. w13.C0 = CFrame.new(1.5, -18.0500126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  836. w13.Part1 = p14
  837. w13.C1 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  838. w14 = Instance.new("Weld", p14)
  839. w14.Name = "Part_Weld"
  840. w14.Part0 = p14
  841. w14.C0 = CFrame.new(1.5, -17.7500172, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  842. w14.Part1 = p15
  843. w14.C1 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  844. w15 = Instance.new("Weld", p15)
  845. w15.Name = "Part_Weld"
  846. w15.Part0 = p15
  847. w15.C0 = CFrame.new(1.5, -18.8000126, -22.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  848. w15.Part1 = p16
  849. 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)
  850. w16 = Instance.new("Weld", p16)
  851. w16.Name = "Part_Weld"
  852. w16.Part0 = p16
  853. 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)
  854. w16.Part1 = p17
  855. 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)
  856. w17 = Instance.new("Weld", p17)
  857. w17.Name = "Part_Weld"
  858. w17.Part0 = p17
  859. 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)
  860. w17.Part1 = p18
  861. 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)
  862. w18 = Instance.new("Weld", p18)
  863. w18.Name = "Part_Weld"
  864. w18.Part0 = p18
  865. 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)
  866. w18.Part1 = p19
  867. 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)
  868. w19 = Instance.new("Weld", p19)
  869. w19.Name = "Part_Weld"
  870. w19.Part0 = p19
  871. 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)
  872. w19.Part1 = p20
  873. 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)
  874. w20 = Instance.new("Weld", p20)
  875. w20.Name = "Part_Weld"
  876. w20.Part0 = p20
  877. 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)
  878. w20.Part1 = p21
  879. 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)
  880. w21 = Instance.new("Weld", p21)
  881. w21.Name = "Part_Weld"
  882. w21.Part0 = p21
  883. 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)
  884. w21.Part1 = p22
  885. 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)
  886. w22 = Instance.new("Weld", p22)
  887. w22.Name = "Part_Weld"
  888. w22.Part0 = p22
  889. 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)
  890. w22.Part1 = p23
  891. 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)
  892. w23 = Instance.new("Weld", p23)
  893. w23.Name = "Part_Weld"
  894. w23.Part0 = p23
  895. 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)
  896. w23.Part1 = p24
  897. 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)
  898. w24 = Instance.new("Weld", p24)
  899. w24.Name = "Part_Weld"
  900. w24.Part0 = p24
  901. 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)
  902. w24.Part1 = p25
  903. 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)
  904. w25 = Instance.new("Weld", p25)
  905. w25.Name = "Part_Weld"
  906. w25.Part0 = p25
  907. 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)
  908. w25.Part1 = p26
  909. 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)
  910. w26 = Instance.new("Weld", p26)
  911. w26.Name = "Part_Weld"
  912. w26.Part0 = p26
  913. 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)
  914. w26.Part1 = p27
  915. 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)
  916. w27 = Instance.new("Weld", p27)
  917. w27.Name = "Part_Weld"
  918. w27.Part0 = p27
  919. 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)
  920. w27.Part1 = p28
  921. 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)
  922. w28 = Instance.new("Weld", p28)
  923. w28.Name = "Part_Weld"
  924. w28.Part0 = p28
  925. 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)
  926. w28.Part1 = p29
  927. 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)
  928. w29 = Instance.new("Weld", p29)
  929. w29.Name = "Part_Weld"
  930. w29.Part0 = p29
  931. 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)
  932. w29.Part1 = p30
  933. 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)
  934. w30 = Instance.new("Weld", p30)
  935. w30.Name = "Part_Weld"
  936. w30.Part0 = p30
  937. 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)
  938. w30.Part1 = p31
  939. 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)
  940. w31 = Instance.new("Weld", p31)
  941. w31.Name = "Part_Weld"
  942. w31.Part0 = p31
  943. 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)
  944. w31.Part1 = p32
  945. 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)
  946. w32 = Instance.new("Weld", p32)
  947. w32.Name = "Part_Weld"
  948. w32.Part0 = p32
  949. 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)
  950. w32.Part1 = p33
  951. 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)
  952. w33 = Instance.new("Weld", p33)
  953. w33.Name = "Part_Weld"
  954. w33.Part0 = p33
  955. 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)
  956. w33.Part1 = p34
  957. 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)
  958. m.Parent = larm
  959. m:MakeJoints()
  960. ----------------------------------------------------
  961. local cor = Instance.new("Part", larm.LeftArm)
  962. cor.Name = "Thingy"
  963. cor.Locked = true
  964. cor.BottomSurface = 0
  965. cor.CanCollide = false
  966. cor.Size = Vector3.new(1, 1, 1)
  967. cor.Transparency = 1
  968. cor.TopSurface = 0
  969. corw = Instance.new("Weld", cor)
  970. corw.Part0 = larm
  971. corw.Part1 = cor
  972. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  973. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  974. weld1 = Instance.new("Weld", larm.LeftArm)
  975. weld1.Part0 = cor
  976. weld1.Part1 = larm.LeftArm.LeftArmPlate
  977. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  978. --Right Arm
  979. m2 = Instance.new("Model")
  980. m2.Name = "RightArm"
  981. p1 = Instance.new("Part", m2)
  982. p1.BrickColor = BrickColor.new("Lime green")
  983. p1.Material = Enum.Material.Granite
  984. p1.CFrame = CFrame.new(3.5, -9.44201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  985. p1.FormFactor = Enum.FormFactor.Custom
  986. p1.Size = Vector3.new(1, 0.200000048, 1)
  987. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  988. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  989. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  990. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  991. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  992. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  993. b1 = Instance.new("SpecialMesh", p1)
  994. b1.MeshType = Enum.MeshType.Brick
  995. b1.Name = "Mesh"
  996. b1.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  997. p2 = Instance.new("Part", m2)
  998. p2.BrickColor = BrickColor.new("Lime green")
  999. p2.Material = Enum.Material.Granite
  1000. p2.CFrame = CFrame.new(3.5, -9.74201393, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1001. p2.FormFactor = Enum.FormFactor.Custom
  1002. p2.Size = Vector3.new(1, 0.200000048, 1)
  1003. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1005. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1006. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1007. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1008. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1009. b2 = Instance.new("SpecialMesh", p2)
  1010. b2.MeshType = Enum.MeshType.Brick
  1011. b2.Name = "Mesh"
  1012. b2.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1013. p3 = Instance.new("Part", m2)
  1014. p3.BrickColor = BrickColor.new("Lime green")
  1015. p3.Material = Enum.Material.Granite
  1016. p3.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1017. p3.FormFactor = Enum.FormFactor.Custom
  1018. p3.Size = Vector3.new(1, 0.200000048, 1)
  1019. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1022. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1023. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1024. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1025. b3 = Instance.new("SpecialMesh", p3)
  1026. b3.MeshType = Enum.MeshType.Brick
  1027. b3.Name = "Mesh"
  1028. b3.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1029. p4 = Instance.new("Part", m2)
  1030. p4.BrickColor = BrickColor.new("Lime green")
  1031. p4.Material = Enum.Material.Granite
  1032. p4.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1033. p4.FormFactor = Enum.FormFactor.Custom
  1034. p4.Size = Vector3.new(1, 0.200000048, 1)
  1035. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1041. b4 = Instance.new("SpecialMesh", p4)
  1042. b4.MeshType = Enum.MeshType.Brick
  1043. b4.Name = "Mesh"
  1044. b4.Scale = Vector3.new(1.05999994, 0.699999988, 1.05999994)
  1045. p5 = Instance.new("Part", m2)
  1046. p5.BrickColor = BrickColor.new("Lime green")
  1047. p5.Material = Enum.Material.Granite
  1048. p5.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1049. p5.FormFactor = Enum.FormFactor.Custom
  1050. p5.Size = Vector3.new(1, 0.200000048, 1)
  1051. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1052. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1053. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. b5 = Instance.new("SpecialMesh", p5)
  1058. b5.MeshType = Enum.MeshType.Brick
  1059. b5.Name = "Mesh"
  1060. b5.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1061. p6 = Instance.new("Part", m2)
  1062. p6.BrickColor = BrickColor.new("Lime green")
  1063. p6.Material = Enum.Material.Granite
  1064. p6.CFrame = CFrame.new(3.5, -8.84201622, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1065. p6.FormFactor = Enum.FormFactor.Custom
  1066. p6.Size = Vector3.new(1, 1, 1)
  1067. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1068. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1069. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1070. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1071. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1073. b6 = Instance.new("SpecialMesh", p6)
  1074. b6.MeshType = Enum.MeshType.Sphere
  1075. b6.Name = "Mesh"
  1076. p7 = Instance.new("Part", m2)
  1077. p7.BrickColor = BrickColor.new("Black")
  1078. p7.Material = Enum.Material.SmoothPlastic
  1079. p7.Name = "RightArmPlate"
  1080. p7.CFrame = CFrame.new(3.5, -9.54201603, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1081. p7.FormFactor = Enum.FormFactor.Symmetric
  1082. p7.Size = Vector3.new(1, 2, 1)
  1083. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1084. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1085. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1086. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1087. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1088. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. b7 = Instance.new("SpecialMesh", p7)
  1090. b7.MeshType = Enum.MeshType.Brick
  1091. b7.Name = "Mesh"
  1092. b7.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1093. p8 = Instance.new("Part", m2)
  1094. p8.BrickColor = BrickColor.new("Lime green")
  1095. p8.Material = Enum.Material.Granite
  1096. p8.CFrame = CFrame.new(3.5, -9.14201164, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1097. p8.FormFactor = Enum.FormFactor.Custom
  1098. p8.Size = Vector3.new(1, 0.200000048, 1)
  1099. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1100. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1101. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1102. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1103. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1104. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1105. b8 = Instance.new("SpecialMesh", p8)
  1106. b8.MeshType = Enum.MeshType.Brick
  1107. b8.Name = "Mesh"
  1108. b8.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1109. p9 = Instance.new("Part", m2)
  1110. p9.BrickColor = BrickColor.new("Black")
  1111. p9.Material = Enum.Material.SmoothPlastic
  1112. p9.CFrame = CFrame.new(3.5, -8.69201183, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1113. p9.FormFactor = Enum.FormFactor.Custom
  1114. p9.Size = Vector3.new(1, 0.349999994, 1)
  1115. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1117. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1118. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1119. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1120. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1121. b9 = Instance.new("SpecialMesh", p9)
  1122. b9.MeshType = Enum.MeshType.Brick
  1123. b9.Name = "Mesh"
  1124. b9.Scale = Vector3.new(1.12, 1.01999998, 1.12)
  1125. p10 = Instance.new("Part", m2)
  1126. p10.BrickColor = BrickColor.new("Black")
  1127. p10.Material = Enum.Material.Metal
  1128. p10.CFrame = CFrame.new(3.5, -8.99201584, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1129. p10.FormFactor = Enum.FormFactor.Custom
  1130. p10.Size = Vector3.new(1, 0.25, 1)
  1131. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1133. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1134. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1135. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1136. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1137. b10 = Instance.new("SpecialMesh", p10)
  1138. b10.MeshType = Enum.MeshType.Brick
  1139. b10.Name = "Mesh"
  1140. b10.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1141. p11 = Instance.new("Part", m2)
  1142. p11.BrickColor = BrickColor.new("Black")
  1143. p11.Material = Enum.Material.Metal
  1144. p11.CFrame = CFrame.new(3.5, -9.29201508, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1145. p11.FormFactor = Enum.FormFactor.Custom
  1146. p11.Size = Vector3.new(1, 0.25, 1)
  1147. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1149. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1150. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1151. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1152. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1153. b11 = Instance.new("SpecialMesh", p11)
  1154. b11.MeshType = Enum.MeshType.Brick
  1155. b11.Name = "Mesh"
  1156. b11.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1157. p12 = Instance.new("Part", m2)
  1158. p12.BrickColor = BrickColor.new("Black")
  1159. p12.Material = Enum.Material.Metal
  1160. p12.CFrame = CFrame.new(3.5, -9.59201431, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1161. p12.FormFactor = Enum.FormFactor.Custom
  1162. p12.Size = Vector3.new(1, 0.25, 1)
  1163. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1165. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1166. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1167. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1168. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1169. b12 = Instance.new("SpecialMesh", p12)
  1170. b12.MeshType = Enum.MeshType.Brick
  1171. b12.Name = "Mesh"
  1172. b12.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1173. p13 = Instance.new("Part", m2)
  1174. p13.BrickColor = BrickColor.new("Lime green")
  1175. p13.Material = Enum.Material.Granite
  1176. p13.CFrame = CFrame.new(3.5, -9.44201088, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1177. p13.FormFactor = Enum.FormFactor.Custom
  1178. p13.Size = Vector3.new(1, 0.200000048, 1)
  1179. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1180. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1181. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1182. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1183. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1184. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1185. b13 = Instance.new("SpecialMesh", p13)
  1186. b13.MeshType = Enum.MeshType.Brick
  1187. b13.Name = "Mesh"
  1188. b13.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1189. p14 = Instance.new("Part", m2)
  1190. p14.BrickColor = BrickColor.new("Black")
  1191. p14.Material = Enum.Material.Metal
  1192. p14.CFrame = CFrame.new(3.5, -9.89201069, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1193. p14.FormFactor = Enum.FormFactor.Custom
  1194. p14.Size = Vector3.new(1, 0.25, 1)
  1195. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1196. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1197. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1198. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1199. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1201. b14 = Instance.new("SpecialMesh", p14)
  1202. b14.MeshType = Enum.MeshType.Brick
  1203. b14.Name = "Mesh"
  1204. b14.Scale = Vector3.new(1.03999996, 0.400000006, 1.03999996)
  1205. p15 = Instance.new("Part", m2)
  1206. p15.BrickColor = BrickColor.new("Lime green")
  1207. p15.Material = Enum.Material.Granite
  1208. p15.CFrame = CFrame.new(3.5, -9.74201298, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1209. p15.FormFactor = Enum.FormFactor.Custom
  1210. p15.Size = Vector3.new(1, 0.200000048, 1)
  1211. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1212. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1213. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1214. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1215. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1217. b15 = Instance.new("SpecialMesh", p15)
  1218. b15.MeshType = Enum.MeshType.Brick
  1219. b15.Name = "Mesh"
  1220. b15.Scale = Vector3.new(1.03999996, 1.01999998, 1.03999996)
  1221. p16 = Instance.new("Part", m2)
  1222. p16.BrickColor = BrickColor.new("Black")
  1223. p16.Material = Enum.Material.SmoothPlastic
  1224. p16.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1225. p16.FormFactor = Enum.FormFactor.Custom
  1226. p16.Size = Vector3.new(1.01999998, 0.300000012, 1.01999998)
  1227. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1230. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1231. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1232. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1233. b16 = Instance.new("SpecialMesh", p16)
  1234. b16.MeshType = Enum.MeshType.Brick
  1235. b16.Name = "Mesh"
  1236. b16.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1237. p17 = Instance.new("Part", m2)
  1238. p17.BrickColor = BrickColor.new("Black")
  1239. p17.Material = Enum.Material.SmoothPlastic
  1240. p17.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1241. p17.FormFactor = Enum.FormFactor.Custom
  1242. p17.Size = Vector3.new(1.00999999, 0.400000036, 1.00999999)
  1243. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1245. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1246. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1247. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1248. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1249. b17 = Instance.new("SpecialMesh", p17)
  1250. b17.MeshType = Enum.MeshType.Brick
  1251. b17.Name = "Mesh"
  1252. b17.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1253. p18 = Instance.new("Part", m2)
  1254. p18.BrickColor = BrickColor.new("Really black")
  1255. p18.Material = Enum.Material.SmoothPlastic
  1256. p18.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1257. p18.FormFactor = Enum.FormFactor.Custom
  1258. p18.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1259. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1262. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1263. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1264. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1265. b18 = Instance.new("SpecialMesh", p18)
  1266. b18.MeshType = Enum.MeshType.Brick
  1267. b18.Name = "Mesh"
  1268. b18.Scale = Vector3.new(1.01999998, 1.01999998, 1.01999998)
  1269. p19 = Instance.new("Part", m2)
  1270. p19.BrickColor = BrickColor.new("Black")
  1271. p19.Material = Enum.Material.SmoothPlastic
  1272. p19.CFrame = CFrame.new(3.5, -10.1420107, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1273. p19.FormFactor = Enum.FormFactor.Custom
  1274. p19.Size = Vector3.new(1.02999997, 0.200000003, 1.02999997)
  1275. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1276. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1277. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1279. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1280. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1281. b19 = Instance.new("SpecialMesh", p19)
  1282. b19.MeshType = Enum.MeshType.Brick
  1283. b19.Name = "Mesh"
  1284. b19.Scale = Vector3.new(1.02999997, 0.50999999, 1.02999997)
  1285. w1 = Instance.new("Weld", p1)
  1286. w1.Name = "Part_Weld"
  1287. w1.Part0 = p1
  1288. w1.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1289. w1.Part1 = p2
  1290. w1.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1291. w2 = Instance.new("Weld", p2)
  1292. w2.Name = "Part_Weld"
  1293. w2.Part0 = p2
  1294. w2.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1295. w2.Part1 = p3
  1296. w2.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1297. w3 = Instance.new("Weld", p3)
  1298. w3.Name = "Part_Weld"
  1299. w3.Part0 = p3
  1300. w3.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1301. w3.Part1 = p4
  1302. w3.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1303. w4 = Instance.new("Weld", p4)
  1304. w4.Name = "Part_Weld"
  1305. w4.Part0 = p4
  1306. w4.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1307. w4.Part1 = p5
  1308. w4.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1309. w5 = Instance.new("Weld", p5)
  1310. w5.Name = "Part_Weld"
  1311. w5.Part0 = p5
  1312. w5.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1313. w5.Part1 = p6
  1314. w5.C1 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1315. w6 = Instance.new("Weld", p6)
  1316. w6.Name = "RightArmPlate_Weld"
  1317. w6.Part0 = p6
  1318. w6.C0 = CFrame.new(-3.5, -4.80001688, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1319. w6.Part1 = p7
  1320. w6.C1 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1321. w7 = Instance.new("Weld", p7)
  1322. w7.Name = "Part_Weld"
  1323. w7.Part0 = p7
  1324. w7.C0 = CFrame.new(-3.5, -4.10001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1325. w7.Part1 = p8
  1326. w7.C1 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1327. w8 = Instance.new("Weld", p8)
  1328. w8.Name = "Part_Weld"
  1329. w8.Part0 = p8
  1330. w8.C0 = CFrame.new(-3.5, -4.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1331. w8.Part1 = p9
  1332. w8.C1 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1333. w9 = Instance.new("Weld", p9)
  1334. w9.Name = "Part_Weld"
  1335. w9.Part0 = p9
  1336. w9.C0 = CFrame.new(-3.5, -4.95002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1337. w9.Part1 = p10
  1338. w9.C1 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1339. w10 = Instance.new("Weld", p10)
  1340. w10.Name = "Part_Weld"
  1341. w10.Part0 = p10
  1342. w10.C0 = CFrame.new(-3.5, -4.65001678, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1343. w10.Part1 = p11
  1344. w10.C1 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1345. w11 = Instance.new("Weld", p11)
  1346. w11.Name = "Part_Weld"
  1347. w11.Part0 = p11
  1348. w11.C0 = CFrame.new(-3.5, -4.35001707, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1349. w11.Part1 = p12
  1350. w11.C1 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1351. w12 = Instance.new("Weld", p12)
  1352. w12.Name = "Part_Weld"
  1353. w12.Part0 = p12
  1354. w12.C0 = CFrame.new(-3.5, -4.05001783, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1355. w12.Part1 = p13
  1356. w12.C1 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1357. w13 = Instance.new("Weld", p13)
  1358. w13.Name = "Part_Weld"
  1359. w13.Part0 = p13
  1360. w13.C0 = CFrame.new(-3.5, -4.20002079, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1361. w13.Part1 = p14
  1362. w13.C1 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1363. w14 = Instance.new("Weld", p14)
  1364. w14.Name = "Part_Weld"
  1365. w14.Part0 = p14
  1366. w14.C0 = CFrame.new(-3.5, -3.75002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1367. w14.Part1 = p15
  1368. w14.C1 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1369. w15 = Instance.new("Weld", p15)
  1370. w15.Name = "Part_Weld"
  1371. w15.Part0 = p15
  1372. w15.C0 = CFrame.new(-3.5, -3.90001893, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1373. w15.Part1 = p16
  1374. w15.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1375. w16 = Instance.new("Weld", p16)
  1376. w16.Name = "Part_Weld"
  1377. w16.Part0 = p16
  1378. w16.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1379. w16.Part1 = p17
  1380. w16.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1381. w17 = Instance.new("Weld", p17)
  1382. w17.Name = "Part_Weld"
  1383. w17.Part0 = p17
  1384. w17.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1385. w17.Part1 = p18
  1386. w17.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1387. w18 = Instance.new("Weld", p18)
  1388. w18.Name = "Part_Weld"
  1389. w18.Part0 = p18
  1390. w18.C0 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1391. w18.Part1 = p19
  1392. w18.C1 = CFrame.new(-3.5, -3.50002098, 5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1393. m2.Parent = rarm
  1394. m2:MakeJoints()
  1395. ----------------------------------------------------
  1396. local cor2 = Instance.new("Part", rarm.RightArm)
  1397. cor2.Name = "Thingy"
  1398. cor2.Locked = true
  1399. cor2.BottomSurface = 0
  1400. cor2.CanCollide = false
  1401. cor2.Size = Vector3.new(1, 1, 1)
  1402. cor2.Transparency = 1
  1403. cor2.TopSurface = 0
  1404. corw2 = Instance.new("Weld", cor2)
  1405. corw2.Part0 = rarm
  1406. corw2.Part1 = cor2
  1407. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1408. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1409. weld2 = Instance.new("Weld", rarm.RightArm)
  1410. weld2.Part0 = cor2
  1411. weld2.Part1 = rarm.RightArm.RightArmPlate
  1412. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1413. --Torso
  1414. m3 = Instance.new("Model")
  1415. m3.Name = "Torso"
  1416. p1 = Instance.new("Part", m3)
  1417. p1.BrickColor = BrickColor.new("Really black")
  1418. p1.Material = Enum.Material.Metal
  1419. p1.Name = "TorsoPlate"
  1420. p1.CFrame = CFrame.new(0, 3.10002589, 0.50000006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1421. p1.CanCollide = false
  1422. p1.Locked = true
  1423. p1.FormFactor = Enum.FormFactor.Custom
  1424. p1.Size = Vector3.new(2, 2, 1)
  1425. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1426. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1429. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1430. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1431. b1 = Instance.new("SpecialMesh", p1)
  1432. b1.MeshType = Enum.MeshType.Brick
  1433. b1.Name = "Mesh"
  1434. b1.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1435. p2 = Instance.new("Part", m3)
  1436. p2.BrickColor = BrickColor.new("Really black")
  1437. p2.Material = Enum.Material.Metal
  1438. 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)
  1439. p2.CanCollide = false
  1440. p2.Locked = true
  1441. p2.FormFactor = Enum.FormFactor.Custom
  1442. p2.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1443. b2 = Instance.new("SpecialMesh", p2)
  1444. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1445. b2.TextureId = ""
  1446. b2.MeshType = Enum.MeshType.FileMesh
  1447. b2.Name = "Mesh"
  1448. b2.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1449. p3 = Instance.new("Part", m3)
  1450. p3.BrickColor = BrickColor.new("Black")
  1451. p3.Material = Enum.Material.Metal
  1452. p3.CFrame = CFrame.new(0, 3.10002589, 0.970001996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1453. p3.CanCollide = false
  1454. p3.Locked = true
  1455. p3.FormFactor = Enum.FormFactor.Custom
  1456. p3.Size = Vector3.new(2, 2, 0.200000018)
  1457. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1458. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1459. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1460. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1463. b3 = Instance.new("SpecialMesh", p3)
  1464. b3.MeshType = Enum.MeshType.Brick
  1465. b3.Name = "Mesh"
  1466. b3.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1467. p4 = Instance.new("Part", m3)
  1468. p4.BrickColor = BrickColor.new("Black")
  1469. p4.Material = Enum.Material.Metal
  1470. p4.CFrame = CFrame.new(0, 4.00002623, 0.529999971, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  1471. p4.CanCollide = false
  1472. p4.Locked = true
  1473. p4.FormFactor = Enum.FormFactor.Custom
  1474. p4.Size = Vector3.new(2, 1.04000008, 0.239999995)
  1475. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1476. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1477. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1478. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1481. b4 = Instance.new("SpecialMesh", p4)
  1482. b4.MeshType = Enum.MeshType.Brick
  1483. b4.Name = "Mesh"
  1484. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1485. p5 = Instance.new("Part", m3)
  1486. p5.BrickColor = BrickColor.new("Black")
  1487. p5.Material = Enum.Material.Metal
  1488. 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)
  1489. p5.CanCollide = false
  1490. p5.Locked = true
  1491. p5.FormFactor = Enum.FormFactor.Custom
  1492. p5.Size = Vector3.new(0.300000012, 1, 1.89999998)
  1493. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. b5 = Instance.new("SpecialMesh", p5)
  1500. b5.MeshType = Enum.MeshType.Wedge
  1501. b5.Name = "Mesh"
  1502. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1503. p6 = Instance.new("Part", m3)
  1504. p6.BrickColor = BrickColor.new("Black")
  1505. p6.Material = Enum.Material.Metal
  1506. 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)
  1507. p6.CanCollide = false
  1508. p6.Locked = true
  1509. p6.FormFactor = Enum.FormFactor.Custom
  1510. p6.Size = Vector3.new(0.300000012, 0.99999994, 1.89999998)
  1511. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1513. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. b6 = Instance.new("SpecialMesh", p6)
  1518. b6.MeshType = Enum.MeshType.Wedge
  1519. b6.Name = "Mesh"
  1520. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1521. p7 = Instance.new("Part", m3)
  1522. p7.BrickColor = BrickColor.new("Black")
  1523. p7.Material = Enum.Material.Metal
  1524. 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)
  1525. p7.CanCollide = false
  1526. p7.Locked = true
  1527. p7.FormFactor = Enum.FormFactor.Custom
  1528. p7.Size = Vector3.new(0.300000012, 1.20000005, 1.20000005)
  1529. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1532. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1535. b7 = Instance.new("SpecialMesh", p7)
  1536. b7.MeshType = Enum.MeshType.Wedge
  1537. b7.Name = "Mesh"
  1538. p8 = Instance.new("Part", m3)
  1539. p8.BrickColor = BrickColor.new("Black")
  1540. p8.Material = Enum.Material.Metal
  1541. p8.CFrame = CFrame.new(-1, 3.10002613, 0.520000935, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1542. p8.CanCollide = false
  1543. p8.Locked = true
  1544. p8.FormFactor = Enum.FormFactor.Custom
  1545. p8.Size = Vector3.new(1, 2, 0.200000018)
  1546. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1547. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. b8 = Instance.new("SpecialMesh", p8)
  1553. b8.MeshType = Enum.MeshType.Brick
  1554. b8.Name = "Mesh"
  1555. b8.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1556. p9 = Instance.new("Part", m3)
  1557. p9.BrickColor = BrickColor.new("Black")
  1558. p9.Material = Enum.Material.Metal
  1559. p9.CFrame = CFrame.new(1, 3.10002613, 0.520001054, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1560. p9.CanCollide = false
  1561. p9.Locked = true
  1562. p9.FormFactor = Enum.FormFactor.Custom
  1563. p9.Size = Vector3.new(1, 2, 0.200000018)
  1564. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1565. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1566. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1567. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1568. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1569. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. b9 = Instance.new("SpecialMesh", p9)
  1571. b9.MeshType = Enum.MeshType.Brick
  1572. b9.Name = "Mesh"
  1573. b9.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1574. p10 = Instance.new("Part", m3)
  1575. p10.BrickColor = BrickColor.new("Black")
  1576. p10.Material = Enum.Material.Metal
  1577. p10.CFrame = CFrame.new(0, 2.05002642, 0.539999843, 1, 0, 0, 0, -4.37113883e-008, 1, 0, -1, -4.37113883e-008)
  1578. p10.CanCollide = false
  1579. p10.Locked = true
  1580. p10.FormFactor = Enum.FormFactor.Custom
  1581. p10.Size = Vector3.new(2, 1.0200001, 0.239999995)
  1582. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1583. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1584. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1585. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. b10 = Instance.new("SpecialMesh", p10)
  1589. b10.MeshType = Enum.MeshType.Brick
  1590. b10.Name = "Mesh"
  1591. b10.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  1592. p11 = Instance.new("Part", m3)
  1593. p11.BrickColor = BrickColor.new("Really black")
  1594. p11.Material = Enum.Material.Metal
  1595. 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)
  1596. p11.CanCollide = false
  1597. p11.Locked = true
  1598. p11.FormFactor = Enum.FormFactor.Custom
  1599. p11.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1600. b11 = Instance.new("SpecialMesh", p11)
  1601. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1602. b11.TextureId = ""
  1603. b11.MeshType = Enum.MeshType.FileMesh
  1604. b11.Name = "Mesh"
  1605. b11.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1606. p12 = Instance.new("Part", m3)
  1607. p12.BrickColor = BrickColor.new("Really black")
  1608. p12.Material = Enum.Material.Metal
  1609. p12.Transparency = 1
  1610. p12.Name = "Chain2Torso"
  1611. 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)
  1612. p12.CanCollide = false
  1613. p12.Locked = true
  1614. p12.FormFactor = Enum.FormFactor.Custom
  1615. p12.Size = Vector3.new(0.699999988, 0.300000012, 0.300000012)
  1616. b12 = Instance.new("SpecialMesh", p12)
  1617. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1618. b12.TextureId = ""
  1619. b12.MeshType = Enum.MeshType.FileMesh
  1620. b12.Name = "Mesh"
  1621. b12.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1622. p13 = Instance.new("Part", m3)
  1623. p13.BrickColor = BrickColor.new("Really black")
  1624. p13.Material = Enum.Material.Metal
  1625. 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)
  1626. p13.CanCollide = false
  1627. p13.Locked = true
  1628. p13.FormFactor = Enum.FormFactor.Custom
  1629. p13.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1630. b13 = Instance.new("SpecialMesh", p13)
  1631. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1632. b13.TextureId = ""
  1633. b13.MeshType = Enum.MeshType.FileMesh
  1634. b13.Name = "Mesh"
  1635. b13.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1636. p14 = Instance.new("Part", m3)
  1637. p14.BrickColor = BrickColor.new("Really black")
  1638. p14.Material = Enum.Material.Metal
  1639. 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)
  1640. p14.CanCollide = false
  1641. p14.Locked = true
  1642. p14.FormFactor = Enum.FormFactor.Custom
  1643. p14.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1644. b14 = Instance.new("SpecialMesh", p14)
  1645. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1646. b14.TextureId = ""
  1647. b14.MeshType = Enum.MeshType.FileMesh
  1648. b14.Name = "Mesh"
  1649. b14.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1650. p15 = Instance.new("Part", m3)
  1651. p15.BrickColor = BrickColor.new("Really black")
  1652. p15.Material = Enum.Material.Metal
  1653. 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)
  1654. p15.CanCollide = false
  1655. p15.Locked = true
  1656. p15.FormFactor = Enum.FormFactor.Custom
  1657. p15.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1658. b15 = Instance.new("SpecialMesh", p15)
  1659. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1660. b15.TextureId = ""
  1661. b15.MeshType = Enum.MeshType.FileMesh
  1662. b15.Name = "Mesh"
  1663. b15.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1664. p16 = Instance.new("Part", m3)
  1665. p16.BrickColor = BrickColor.new("Really black")
  1666. p16.Material = Enum.Material.Metal
  1667. 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)
  1668. p16.CanCollide = false
  1669. p16.Locked = true
  1670. p16.FormFactor = Enum.FormFactor.Custom
  1671. p16.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1672. b16 = Instance.new("SpecialMesh", p16)
  1673. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1674. b16.TextureId = ""
  1675. b16.MeshType = Enum.MeshType.FileMesh
  1676. b16.Name = "Mesh"
  1677. b16.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1678. p17 = Instance.new("Part", m3)
  1679. p17.BrickColor = BrickColor.new("Really black")
  1680. p17.Material = Enum.Material.Metal
  1681. 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)
  1682. p17.CanCollide = false
  1683. p17.Locked = true
  1684. p17.FormFactor = Enum.FormFactor.Custom
  1685. p17.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1686. b17 = Instance.new("SpecialMesh", p17)
  1687. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1688. b17.TextureId = ""
  1689. b17.MeshType = Enum.MeshType.FileMesh
  1690. b17.Name = "Mesh"
  1691. b17.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1692. p18 = Instance.new("Part", m3)
  1693. p18.BrickColor = BrickColor.new("Really black")
  1694. p18.Material = Enum.Material.Metal
  1695. 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)
  1696. p18.CanCollide = false
  1697. p18.Locked = true
  1698. p18.FormFactor = Enum.FormFactor.Custom
  1699. p18.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1700. b18 = Instance.new("SpecialMesh", p18)
  1701. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1702. b18.TextureId = ""
  1703. b18.MeshType = Enum.MeshType.FileMesh
  1704. b18.Name = "Mesh"
  1705. b18.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1706. p19 = Instance.new("Part", m3)
  1707. p19.BrickColor = BrickColor.new("Really black")
  1708. p19.Material = Enum.Material.Metal
  1709. 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)
  1710. p19.CanCollide = false
  1711. p19.Locked = true
  1712. p19.FormFactor = Enum.FormFactor.Custom
  1713. p19.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1714. b19 = Instance.new("SpecialMesh", p19)
  1715. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1716. b19.TextureId = ""
  1717. b19.MeshType = Enum.MeshType.FileMesh
  1718. b19.Name = "Mesh"
  1719. b19.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1720. p20 = Instance.new("Part", m3)
  1721. p20.BrickColor = BrickColor.new("Really black")
  1722. p20.Material = Enum.Material.Metal
  1723. 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)
  1724. p20.CanCollide = false
  1725. p20.Locked = true
  1726. p20.FormFactor = Enum.FormFactor.Custom
  1727. p20.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1728. b20 = Instance.new("SpecialMesh", p20)
  1729. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1730. b20.TextureId = ""
  1731. b20.MeshType = Enum.MeshType.FileMesh
  1732. b20.Name = "Mesh"
  1733. b20.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1734. p21 = Instance.new("Part", m3)
  1735. p21.BrickColor = BrickColor.new("Really black")
  1736. p21.Material = Enum.Material.Metal
  1737. 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)
  1738. p21.CanCollide = false
  1739. p21.Locked = true
  1740. p21.FormFactor = Enum.FormFactor.Custom
  1741. p21.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1742. b21 = Instance.new("SpecialMesh", p21)
  1743. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1744. b21.TextureId = ""
  1745. b21.MeshType = Enum.MeshType.FileMesh
  1746. b21.Name = "Mesh"
  1747. b21.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1748. p22 = Instance.new("Part", m3)
  1749. p22.BrickColor = BrickColor.new("Really black")
  1750. p22.Material = Enum.Material.Metal
  1751. 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)
  1752. p22.CanCollide = false
  1753. p22.Locked = true
  1754. p22.FormFactor = Enum.FormFactor.Custom
  1755. p22.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1756. b22 = Instance.new("SpecialMesh", p22)
  1757. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1758. b22.TextureId = ""
  1759. b22.MeshType = Enum.MeshType.FileMesh
  1760. b22.Name = "Mesh"
  1761. b22.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1762. p23 = Instance.new("Part", m3)
  1763. p23.BrickColor = BrickColor.new("Really black")
  1764. p23.Material = Enum.Material.Metal
  1765. 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)
  1766. p23.CanCollide = false
  1767. p23.Locked = true
  1768. p23.FormFactor = Enum.FormFactor.Custom
  1769. p23.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1770. b23 = Instance.new("SpecialMesh", p23)
  1771. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1772. b23.TextureId = ""
  1773. b23.MeshType = Enum.MeshType.FileMesh
  1774. b23.Name = "Mesh"
  1775. b23.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1776. p24 = Instance.new("Part", m3)
  1777. p24.BrickColor = BrickColor.new("Really black")
  1778. p24.Material = Enum.Material.Metal
  1779. 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)
  1780. p24.CanCollide = false
  1781. p24.Locked = true
  1782. p24.FormFactor = Enum.FormFactor.Custom
  1783. p24.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1784. b24 = Instance.new("SpecialMesh", p24)
  1785. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1786. b24.TextureId = ""
  1787. b24.MeshType = Enum.MeshType.FileMesh
  1788. b24.Name = "Mesh"
  1789. b24.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1790. p25 = Instance.new("Part", m3)
  1791. p25.BrickColor = BrickColor.new("Really black")
  1792. p25.Material = Enum.Material.Metal
  1793. 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)
  1794. p25.CanCollide = false
  1795. p25.Locked = true
  1796. p25.FormFactor = Enum.FormFactor.Custom
  1797. p25.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1798. b25 = Instance.new("SpecialMesh", p25)
  1799. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1800. b25.TextureId = ""
  1801. b25.MeshType = Enum.MeshType.FileMesh
  1802. b25.Name = "Mesh"
  1803. b25.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1804. p26 = Instance.new("Part", m3)
  1805. p26.BrickColor = BrickColor.new("Really black")
  1806. p26.Material = Enum.Material.Metal
  1807. 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)
  1808. p26.CanCollide = false
  1809. p26.Locked = true
  1810. p26.FormFactor = Enum.FormFactor.Custom
  1811. p26.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1812. b26 = Instance.new("SpecialMesh", p26)
  1813. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1814. b26.TextureId = ""
  1815. b26.MeshType = Enum.MeshType.FileMesh
  1816. b26.Name = "Mesh"
  1817. b26.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1818. p27 = Instance.new("Part", m3)
  1819. p27.BrickColor = BrickColor.new("Really black")
  1820. p27.Material = Enum.Material.Metal
  1821. 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)
  1822. p27.CanCollide = false
  1823. p27.Locked = true
  1824. p27.FormFactor = Enum.FormFactor.Custom
  1825. p27.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1826. b27 = Instance.new("SpecialMesh", p27)
  1827. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1828. b27.TextureId = ""
  1829. b27.MeshType = Enum.MeshType.FileMesh
  1830. b27.Name = "Mesh"
  1831. b27.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1832. p28 = Instance.new("Part", m3)
  1833. p28.BrickColor = BrickColor.new("Really black")
  1834. p28.Material = Enum.Material.Metal
  1835. 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)
  1836. p28.CanCollide = false
  1837. p28.Locked = true
  1838. p28.FormFactor = Enum.FormFactor.Custom
  1839. p28.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1840. b28 = Instance.new("SpecialMesh", p28)
  1841. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1842. b28.TextureId = ""
  1843. b28.MeshType = Enum.MeshType.FileMesh
  1844. b28.Name = "Mesh"
  1845. b28.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1846. p29 = Instance.new("Part", m3)
  1847. p29.BrickColor = BrickColor.new("Really black")
  1848. p29.Material = Enum.Material.Metal
  1849. 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)
  1850. p29.CanCollide = false
  1851. p29.Locked = true
  1852. p29.FormFactor = Enum.FormFactor.Custom
  1853. p29.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1854. b29 = Instance.new("SpecialMesh", p29)
  1855. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1856. b29.TextureId = ""
  1857. b29.MeshType = Enum.MeshType.FileMesh
  1858. b29.Name = "Mesh"
  1859. b29.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1860. p30 = Instance.new("Part", m3)
  1861. p30.BrickColor = BrickColor.new("Really black")
  1862. p30.Material = Enum.Material.Metal
  1863. 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)
  1864. p30.CanCollide = false
  1865. p30.Locked = true
  1866. p30.FormFactor = Enum.FormFactor.Custom
  1867. p30.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1868. b30 = Instance.new("SpecialMesh", p30)
  1869. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1870. b30.TextureId = ""
  1871. b30.MeshType = Enum.MeshType.FileMesh
  1872. b30.Name = "Mesh"
  1873. b30.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1874. p31 = Instance.new("Part", m3)
  1875. p31.BrickColor = BrickColor.new("Really black")
  1876. p31.Material = Enum.Material.Metal
  1877. 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)
  1878. p31.CanCollide = false
  1879. p31.Locked = true
  1880. p31.FormFactor = Enum.FormFactor.Custom
  1881. p31.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1882. b31 = Instance.new("SpecialMesh", p31)
  1883. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1884. b31.TextureId = ""
  1885. b31.MeshType = Enum.MeshType.FileMesh
  1886. b31.Name = "Mesh"
  1887. b31.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1888. p32 = Instance.new("Part", m3)
  1889. p32.BrickColor = BrickColor.new("Really black")
  1890. p32.Material = Enum.Material.Metal
  1891. 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)
  1892. p32.CanCollide = false
  1893. p32.Locked = true
  1894. p32.FormFactor = Enum.FormFactor.Custom
  1895. p32.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1896. b32 = Instance.new("SpecialMesh", p32)
  1897. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1898. b32.TextureId = ""
  1899. b32.MeshType = Enum.MeshType.FileMesh
  1900. b32.Name = "Mesh"
  1901. b32.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1902. p33 = Instance.new("Part", m3)
  1903. p33.BrickColor = BrickColor.new("Really black")
  1904. p33.Material = Enum.Material.Metal
  1905. 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)
  1906. p33.CanCollide = false
  1907. p33.Locked = true
  1908. p33.FormFactor = Enum.FormFactor.Custom
  1909. p33.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1910. b33 = Instance.new("SpecialMesh", p33)
  1911. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1912. b33.TextureId = ""
  1913. b33.MeshType = Enum.MeshType.FileMesh
  1914. b33.Name = "Mesh"
  1915. b33.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1916. p34 = Instance.new("Part", m3)
  1917. p34.BrickColor = BrickColor.new("Really black")
  1918. p34.Material = Enum.Material.Metal
  1919. p34.Name = "Connection"
  1920. 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)
  1921. p34.CanCollide = false
  1922. p34.Locked = true
  1923. p34.FormFactor = Enum.FormFactor.Custom
  1924. p34.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1925. b34 = Instance.new("SpecialMesh", p34)
  1926. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1927. b34.TextureId = ""
  1928. b34.MeshType = Enum.MeshType.FileMesh
  1929. b34.Name = "Mesh"
  1930. b34.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1931. p35 = Instance.new("Part", m3)
  1932. p35.BrickColor = BrickColor.new("Really black")
  1933. p35.Material = Enum.Material.Metal
  1934. 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)
  1935. p35.CanCollide = false
  1936. p35.Locked = true
  1937. p35.FormFactor = Enum.FormFactor.Custom
  1938. p35.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1939. b35 = Instance.new("SpecialMesh", p35)
  1940. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1941. b35.TextureId = ""
  1942. b35.MeshType = Enum.MeshType.FileMesh
  1943. b35.Name = "Mesh"
  1944. b35.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1945. p36 = Instance.new("Part", m3)
  1946. p36.BrickColor = BrickColor.new("Really black")
  1947. p36.Material = Enum.Material.Metal
  1948. 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)
  1949. p36.CanCollide = false
  1950. p36.Locked = true
  1951. p36.FormFactor = Enum.FormFactor.Custom
  1952. p36.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  1953. b36 = Instance.new("SpecialMesh", p36)
  1954. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1955. b36.TextureId = ""
  1956. b36.MeshType = Enum.MeshType.FileMesh
  1957. b36.Name = "Mesh"
  1958. b36.Scale = Vector3.new(0.300000012, 0.300000012, 0.600000024)
  1959. w1 = Instance.new("Weld", p2)
  1960. w1.Name = "Joint"
  1961. w1.Part0 = p2
  1962. 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)
  1963. w1.Part1 = p18
  1964. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1965. w2 = Instance.new("Weld", p3)
  1966. w2.Name = "Joint"
  1967. w2.Part0 = p3
  1968. w2.C0 = CFrame.new(0, 0, -0.470001936, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1969. w2.Part1 = p1
  1970. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1971. w3 = Instance.new("Weld", p4)
  1972. w3.Name = "Joint"
  1973. w3.Part0 = p4
  1974. w3.C0 = CFrame.new(0, 0.0299999714, -0.900000334, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  1975. w3.Part1 = p1
  1976. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1977. w4 = Instance.new("Weld", p5)
  1978. w4.Name = "Joint"
  1979. w4.Part0 = p5
  1980. 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)
  1981. w4.Part1 = p7
  1982. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1983. w5 = Instance.new("Weld", p6)
  1984. w5.Name = "Joint"
  1985. w5.Part0 = p6
  1986. 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)
  1987. w5.Part1 = p7
  1988. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1989. w6 = Instance.new("Weld", p7)
  1990. w6.Name = "Joint"
  1991. w6.Part0 = p7
  1992. 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)
  1993. w6.Part1 = p1
  1994. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1995. w7 = Instance.new("Weld", p8)
  1996. w7.Name = "Joint"
  1997. w7.Part0 = p8
  1998. w7.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, -1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  1999. w7.Part1 = p1
  2000. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2001. w8 = Instance.new("Weld", p9)
  2002. w8.Name = "Joint"
  2003. w8.Part0 = p9
  2004. w8.C0 = CFrame.new(-0.0200009346, -2.38418579e-007, 1, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2005. w8.Part1 = p1
  2006. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2007. w9 = Instance.new("Weld", p10)
  2008. w9.Name = "Joint"
  2009. w9.Part0 = p10
  2010. w9.C0 = CFrame.new(0, 0.0399997234, 1.04999948, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008)
  2011. w9.Part1 = p1
  2012. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2013. w10 = Instance.new("Weld", p11)
  2014. w10.Name = "Joint"
  2015. w10.Part0 = p11
  2016. 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)
  2017. w10.Part1 = p19
  2018. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2019. w11 = Instance.new("Weld", p12)
  2020. w11.Name = "Joint"
  2021. w11.Part0 = p12
  2022. 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)
  2023. w11.Part1 = p1
  2024. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2025. w12 = Instance.new("Weld", p13)
  2026. w12.Name = "Joint"
  2027. w12.Part0 = p13
  2028. 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)
  2029. w12.Part1 = p35
  2030. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2031. w13 = Instance.new("Weld", p14)
  2032. w13.Name = "Joint"
  2033. w13.Part0 = p14
  2034. 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)
  2035. w13.Part1 = p34
  2036. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2037. w14 = Instance.new("Weld", p15)
  2038. w14.Name = "Joint"
  2039. w14.Part0 = p15
  2040. 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)
  2041. w14.Part1 = p16
  2042. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2043. w15 = Instance.new("Weld", p16)
  2044. w15.Name = "Joint"
  2045. w15.Part0 = p16
  2046. 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)
  2047. w15.Part1 = p20
  2048. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2049. w16 = Instance.new("Weld", p17)
  2050. w16.Name = "Joint"
  2051. w16.Part0 = p17
  2052. 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)
  2053. w16.Part1 = p14
  2054. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2055. w17 = Instance.new("Weld", p18)
  2056. w17.Name = "Joint"
  2057. w17.Part0 = p18
  2058. 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)
  2059. w17.Part1 = p17
  2060. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2061. w18 = Instance.new("Weld", p19)
  2062. w18.Name = "Joint"
  2063. w18.Part0 = p19
  2064. 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)
  2065. w18.Part1 = p21
  2066. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2067. w19 = Instance.new("Weld", p20)
  2068. w19.Name = "Joint"
  2069. w19.Part0 = p20
  2070. 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)
  2071. w19.Part1 = p11
  2072. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2073. w20 = Instance.new("Weld", p21)
  2074. w20.Name = "Joint"
  2075. w20.Part0 = p21
  2076. 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)
  2077. w20.Part1 = p22
  2078. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2079. w21 = Instance.new("Weld", p22)
  2080. w21.Name = "Joint"
  2081. w21.Part0 = p22
  2082. 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)
  2083. w21.Part1 = p23
  2084. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2085. w22 = Instance.new("Weld", p23)
  2086. w22.Name = "Joint"
  2087. w22.Part0 = p23
  2088. 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)
  2089. w22.Part1 = p24
  2090. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2091. w23 = Instance.new("Weld", p24)
  2092. w23.Name = "Joint"
  2093. w23.Part0 = p24
  2094. 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)
  2095. w23.Part1 = p25
  2096. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2097. w24 = Instance.new("Weld", p25)
  2098. w24.Name = "Joint"
  2099. w24.Part0 = p25
  2100. 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)
  2101. w24.Part1 = p26
  2102. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2103. w25 = Instance.new("Weld", p26)
  2104. w25.Name = "Joint"
  2105. w25.Part0 = p26
  2106. 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)
  2107. w25.Part1 = p27
  2108. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2109. w26 = Instance.new("Weld", p27)
  2110. w26.Name = "Joint"
  2111. w26.Part0 = p27
  2112. 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)
  2113. w26.Part1 = p28
  2114. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2115. w27 = Instance.new("Weld", p28)
  2116. w27.Name = "Joint"
  2117. w27.Part0 = p28
  2118. 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)
  2119. w27.Part1 = p29
  2120. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2121. w28 = Instance.new("Weld", p29)
  2122. w28.Name = "Joint"
  2123. w28.Part0 = p29
  2124. 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)
  2125. w28.Part1 = p30
  2126. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2127. w29 = Instance.new("Weld", p30)
  2128. w29.Name = "Joint"
  2129. w29.Part0 = p30
  2130. 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)
  2131. w29.Part1 = p31
  2132. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2133. w30 = Instance.new("Weld", p31)
  2134. w30.Name = "Joint"
  2135. w30.Part0 = p31
  2136. 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)
  2137. w30.Part1 = p32
  2138. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2139. w31 = Instance.new("Weld", p32)
  2140. w31.Name = "Joint"
  2141. w31.Part0 = p32
  2142. 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)
  2143. w31.Part1 = p33
  2144. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2145. w32 = Instance.new("Weld", p33)
  2146. w32.Name = "Joint"
  2147. w32.Part0 = p33
  2148. 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)
  2149. w32.Part1 = p13
  2150. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2151. w33 = Instance.new("Weld", p34)
  2152. w33.Name = "Joint"
  2153. w33.Part0 = p34
  2154. 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)
  2155. w33.Part1 = p12
  2156. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2157. w34 = Instance.new("Weld", p35)
  2158. w34.Name = "Joint"
  2159. w34.Part0 = p35
  2160. 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)
  2161. w34.Part1 = p36
  2162. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2163. w35 = Instance.new("Weld", p36)
  2164. w35.Name = "Joint"
  2165. w35.Part0 = p36
  2166. 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)
  2167. w35.Part1 = p2
  2168. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2169. m3.Parent = torso
  2170. m3:MakeJoints()
  2171. ----------------------------------------------------
  2172. local cor3 = Instance.new("Part", torso.Torso)
  2173. cor3.Name = "Thingy"
  2174. cor3.Locked = true
  2175. cor3.BottomSurface = 0
  2176. cor3.CanCollide = false
  2177. cor3.Size = Vector3.new(1, 1, 1)
  2178. cor3.Transparency = 1
  2179. cor3.TopSurface = 0
  2180. corw3 = Instance.new("Weld", cor3)
  2181. corw3.Part0 = torso
  2182. corw3.Part1 = cor3
  2183. corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2184. corw3.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2185. weld3 = Instance.new("Weld", torso.Torso)
  2186. weld3.Part0 = cor3
  2187. weld3.Part1 = torso.Torso.TorsoPlate
  2188. weld3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2189. --Left Leg
  2190. m4 = Instance.new("Model")
  2191. m4.Name = "LeftLeg"
  2192. p1 = Instance.new("Part", m4)
  2193. p1.BrickColor = BrickColor.new("Really black")
  2194. p1.Material = Enum.Material.Metal
  2195. p1.Name = "LeftLegPlate"
  2196. p1.CFrame = CFrame.new(-1.5, 4.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2197. p1.Anchored = false
  2198. p1.CanCollide = false
  2199. p1.FormFactor = Enum.FormFactor.Custom
  2200. p1.Size = Vector3.new(1, 2, 1)
  2201. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2202. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2203. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2204. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2205. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2206. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2207. b1 = Instance.new("SpecialMesh", p1)
  2208. b1.MeshType = Enum.MeshType.Brick
  2209. b1.Name = "Mesh"
  2210. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2211. p2 = Instance.new("Part", m4)
  2212. p2.BrickColor = BrickColor.new("Really black")
  2213. p2.Material = Enum.Material.Metal
  2214. p2.CFrame = CFrame.new(-2.0999999, 5.44442606, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2215. p2.Anchored = false
  2216. p2.CanCollide = false
  2217. p2.FormFactor = Enum.FormFactor.Custom
  2218. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2219. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2220. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2221. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2222. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2223. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2224. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2225. b2 = Instance.new("SpecialMesh", p2)
  2226. b2.MeshType = Enum.MeshType.Brick
  2227. b2.Name = "Mesh"
  2228. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2229. p3 = Instance.new("Part", m4)
  2230. p3.BrickColor = BrickColor.new("Really black")
  2231. p3.Material = Enum.Material.Metal
  2232. p3.CFrame = CFrame.new(-2.0999999, 5.04442501, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2233. p3.Anchored = false
  2234. p3.CanCollide = false
  2235. p3.FormFactor = Enum.FormFactor.Custom
  2236. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2237. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2238. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2239. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2240. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2241. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2242. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2243. b3 = Instance.new("SpecialMesh", p3)
  2244. b3.MeshType = Enum.MeshType.Brick
  2245. b3.Name = "Mesh"
  2246. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2247. p4 = Instance.new("Part", m4)
  2248. p4.BrickColor = BrickColor.new("Black")
  2249. p4.Material = Enum.Material.Metal
  2250. p4.CFrame = CFrame.new(-1.5, 4.74442291, -7.02999783, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2251. p4.Anchored = false
  2252. p4.CanCollide = false
  2253. p4.FormFactor = Enum.FormFactor.Custom
  2254. p4.Size = Vector3.new(1, 2, 0.200000018)
  2255. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2256. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2257. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2258. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2259. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2260. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2261. b4 = Instance.new("SpecialMesh", p4)
  2262. b4.MeshType = Enum.MeshType.Brick
  2263. b4.Name = "Mesh"
  2264. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2265. p5 = Instance.new("Part", m4)
  2266. p5.BrickColor = BrickColor.new("Black")
  2267. p5.Material = Enum.Material.Metal
  2268. p5.CFrame = CFrame.new(-2, 4.74442291, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2269. p5.Anchored = false
  2270. p5.CanCollide = false
  2271. p5.FormFactor = Enum.FormFactor.Custom
  2272. p5.Size = Vector3.new(1, 2, 0.200000018)
  2273. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2274. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2275. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2276. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2277. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2278. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2279. b5 = Instance.new("SpecialMesh", p5)
  2280. b5.MeshType = Enum.MeshType.Brick
  2281. b5.Name = "Mesh"
  2282. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2283. p6 = Instance.new("Part", m4)
  2284. p6.BrickColor = BrickColor.new("Black")
  2285. p6.Material = Enum.Material.Metal
  2286. p6.CFrame = CFrame.new(-1.50999999, 3.74442887, -7.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2287. p6.Anchored = false
  2288. p6.CanCollide = false
  2289. p6.FormFactor = Enum.FormFactor.Custom
  2290. p6.Size = Vector3.new(1, 0.200000048, 0.980000019)
  2291. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2292. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2293. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2294. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2295. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2296. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2297. b6 = Instance.new("SpecialMesh", p6)
  2298. b6.MeshType = Enum.MeshType.Brick
  2299. b6.Name = "Mesh"
  2300. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2301. p7 = Instance.new("Part", m4)
  2302. p7.BrickColor = BrickColor.new("Black")
  2303. p7.Material = Enum.Material.Metal
  2304. p7.CFrame = CFrame.new(-1.5, 5.74442291, -7.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2305. p7.Anchored = false
  2306. p7.CanCollide = false
  2307. p7.FormFactor = Enum.FormFactor.Custom
  2308. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2309. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2310. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2311. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2312. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2313. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2314. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2315. b7 = Instance.new("SpecialMesh", p7)
  2316. b7.MeshType = Enum.MeshType.Brick
  2317. b7.Name = "Mesh"
  2318. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2319. w1 = Instance.new("Weld", p2)
  2320. w1.Name = "Joint"
  2321. w1.Part0 = p2
  2322. w1.C0 = CFrame.new(0, -0.40000093, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2323. w1.Part1 = p3
  2324. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2325. w2 = Instance.new("Weld", p3)
  2326. w2.Name = "Joint"
  2327. w2.Part0 = p3
  2328. w2.C0 = CFrame.new(0.0999999046, -0.300002098, 0.0200009346, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2329. w2.Part1 = p5
  2330. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2331. w3 = Instance.new("Weld", p4)
  2332. w3.Name = "Joint"
  2333. w3.Part0 = p4
  2334. w3.C0 = CFrame.new(0, 0, -0.470002174, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2335. w3.Part1 = p1
  2336. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2337. w4 = Instance.new("Weld", p5)
  2338. w4.Name = "Joint"
  2339. w4.Part0 = p5
  2340. w4.C0 = CFrame.new(-0.0200009346, 0, -0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2341. w4.Part1 = p1
  2342. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2343. w5 = Instance.new("Weld", p6)
  2344. w5.Name = "Joint"
  2345. w5.Part0 = p6
  2346. w5.C0 = CFrame.new(0, 0.99999404, -0.00999999046, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2347. w5.Part1 = p1
  2348. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2349. w6 = Instance.new("Weld", p7)
  2350. w6.Name = "Joint"
  2351. w6.Part0 = p7
  2352. w6.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2353. w6.Part1 = p1
  2354. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2355. m4.Parent = lleg
  2356. m4:MakeJoints()
  2357. ----------------------------------------------------
  2358. local cor4 = Instance.new("Part", lleg.LeftLeg)
  2359. cor4.Name = "Thingy"
  2360. cor4.Locked = true
  2361. cor4.BottomSurface = 0
  2362. cor4.CanCollide = false
  2363. cor4.Size = Vector3.new(1, 1, 1)
  2364. cor4.Transparency = 1
  2365. cor4.TopSurface = 0
  2366. corw4 = Instance.new("Weld", cor4)
  2367. corw4.Part0 = lleg
  2368. corw4.Part1 = cor4
  2369. corw4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2370. corw4.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2371. weld4 = Instance.new("Weld", lleg.LeftLeg)
  2372. weld4.Part0 = cor4
  2373. weld4.Part1 = lleg.LeftLeg.LeftLegPlate
  2374. weld4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2375. --Right Leg
  2376. m5 = Instance.new("Model")
  2377. m5.Name = "RightLeg"
  2378. p1 = Instance.new("Part", m5)
  2379. p1.BrickColor = BrickColor.new("Really black")
  2380. p1.Material = Enum.Material.Metal
  2381. p1.Name = "RightLegPlate"
  2382. p1.CFrame = CFrame.new(1.5, 4.74441528, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2383. p1.Anchored = false
  2384. p1.CanCollide = false
  2385. p1.FormFactor = Enum.FormFactor.Custom
  2386. p1.Size = Vector3.new(1, 2, 1)
  2387. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2388. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2389. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2390. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2391. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2392. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2393. b1 = Instance.new("SpecialMesh", p1)
  2394. b1.MeshType = Enum.MeshType.Brick
  2395. b1.Name = "Mesh"
  2396. b1.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2397. p2 = Instance.new("Part", m5)
  2398. p2.BrickColor = BrickColor.new("Really black")
  2399. p2.Material = Enum.Material.Metal
  2400. p2.CFrame = CFrame.new(2.05000019, 5.44441557, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2401. p2.Anchored = false
  2402. p2.CanCollide = false
  2403. p2.FormFactor = Enum.FormFactor.Custom
  2404. p2.Size = Vector3.new(0.239999995, 0.300000012, 0.899999976)
  2405. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2406. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2407. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2408. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2409. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2410. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2411. b2 = Instance.new("SpecialMesh", p2)
  2412. b2.MeshType = Enum.MeshType.Brick
  2413. b2.Name = "Mesh"
  2414. b2.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2415. p3 = Instance.new("Part", m5)
  2416. p3.BrickColor = BrickColor.new("Really black")
  2417. p3.Material = Enum.Material.Metal
  2418. p3.CFrame = CFrame.new(2.05000019, 5.04441547, -7.49999952, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2419. p3.Anchored = false
  2420. p3.CanCollide = false
  2421. p3.FormFactor = Enum.FormFactor.Custom
  2422. p3.Size = Vector3.new(0.200000003, 0.600000024, 0.800000012)
  2423. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2424. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2425. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2426. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2427. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2428. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2429. b3 = Instance.new("SpecialMesh", p3)
  2430. b3.MeshType = Enum.MeshType.Brick
  2431. b3.Name = "Mesh"
  2432. b3.Scale = Vector3.new(1.01999998, 1, 1.01999998)
  2433. p4 = Instance.new("Part", m5)
  2434. p4.BrickColor = BrickColor.new("Black")
  2435. p4.Material = Enum.Material.Metal
  2436. p4.CFrame = CFrame.new(1.5, 4.74441528, -7.0299983, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2437. p4.Anchored = false
  2438. p4.CanCollide = false
  2439. p4.FormFactor = Enum.FormFactor.Custom
  2440. p4.Size = Vector3.new(1, 2, 0.200000018)
  2441. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2442. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2443. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2444. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2445. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2446. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2447. b4 = Instance.new("SpecialMesh", p4)
  2448. b4.MeshType = Enum.MeshType.Brick
  2449. b4.Name = "Mesh"
  2450. b4.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2451. p5 = Instance.new("Part", m5)
  2452. p5.BrickColor = BrickColor.new("Black")
  2453. p5.Material = Enum.Material.Metal
  2454. p5.CFrame = CFrame.new(2, 4.74441528, -7.47999907, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2455. p5.Anchored = false
  2456. p5.CanCollide = false
  2457. p5.FormFactor = Enum.FormFactor.Custom
  2458. p5.Size = Vector3.new(1, 2, 0.200000018)
  2459. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2460. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2461. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2462. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2463. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2464. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2465. b5 = Instance.new("SpecialMesh", p5)
  2466. b5.MeshType = Enum.MeshType.Brick
  2467. b5.Name = "Mesh"
  2468. b5.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2469. p6 = Instance.new("Part", m5)
  2470. p6.BrickColor = BrickColor.new("Black")
  2471. p6.Material = Enum.Material.Metal
  2472. p6.CFrame = CFrame.new(1.505, 3.74442124, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2473. p6.Anchored = false
  2474. p6.CanCollide = false
  2475. p6.FormFactor = Enum.FormFactor.Custom
  2476. p6.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2477. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2478. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2479. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2480. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2481. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2482. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2483. b6 = Instance.new("SpecialMesh", p6)
  2484. b6.MeshType = Enum.MeshType.Brick
  2485. b6.Name = "Mesh"
  2486. b6.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2487. p7 = Instance.new("Part", m5)
  2488. p7.BrickColor = BrickColor.new("Black")
  2489. p7.Material = Enum.Material.Metal
  2490. p7.CFrame = CFrame.new(1.505, 5.69442129, -7.49999952, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2491. p7.Anchored = false
  2492. p7.CanCollide = false
  2493. p7.FormFactor = Enum.FormFactor.Custom
  2494. p7.Size = Vector3.new(1, 0.200000048, 0.99000001)
  2495. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2496. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2497. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2498. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2499. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2500. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2501. b7 = Instance.new("SpecialMesh", p7)
  2502. b7.MeshType = Enum.MeshType.Brick
  2503. b7.Name = "Mesh"
  2504. b7.Scale = Vector3.new(1, 1.01999998, 1.01999998)
  2505. w1 = Instance.new("Weld", p2)
  2506. w1.Name = "Joint"
  2507. w1.Part0 = p2
  2508. w1.C0 = CFrame.new(0, -0.400000095, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2509. w1.Part1 = p3
  2510. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2511. w2 = Instance.new("Weld", p3)
  2512. w2.Name = "Joint"
  2513. w2.Part0 = p3
  2514. w2.C0 = CFrame.new(-0.0500001907, -0.300000191, 0.0200004578, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2515. w2.Part1 = p5
  2516. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2517. w3 = Instance.new("Weld", p4)
  2518. w3.Name = "Joint"
  2519. w3.Part0 = p4
  2520. w3.C0 = CFrame.new(0, 0, -0.470001221, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2521. w3.Part1 = p1
  2522. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2523. w4 = Instance.new("Weld", p5)
  2524. w4.Name = "Joint"
  2525. w4.Part0 = p5
  2526. w4.C0 = CFrame.new(-0.0200004578, 0, 0.5, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2527. w4.Part1 = p1
  2528. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2529. w5 = Instance.new("Weld", p6)
  2530. w5.Name = "Joint"
  2531. w5.Part0 = p6
  2532. w5.C0 = CFrame.new(0, 0.99999404, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2533. w5.Part1 = p1
  2534. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2535. w6 = Instance.new("Weld", p7)
  2536. w6.Name = "Joint"
  2537. w6.Part0 = p7
  2538. w6.C0 = CFrame.new(0, -0.950006008, 0.00499999523, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  2539. w6.Part1 = p1
  2540. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2541. m5.Parent = rleg
  2542. m5:MakeJoints()
  2543. ----------------------------------------------------
  2544. local cor5 = Instance.new("Part", rleg.RightLeg)
  2545. cor5.Name = "Thingy"
  2546. cor5.Locked = true
  2547. cor5.BottomSurface = 0
  2548. cor5.CanCollide = false
  2549. cor5.Size = Vector3.new(1, 1, 1)
  2550. cor5.Transparency = 1
  2551. cor5.TopSurface = 0
  2552. corw5 = Instance.new("Weld", cor5)
  2553. corw5.Part0 = rleg
  2554. corw5.Part1 = cor5
  2555. corw5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2556. corw5.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2557. wld5 = Instance.new("Weld", rleg.RightLeg)
  2558. wld5.Part0 = cor5
  2559. wld5.Part1 = rleg.RightLeg.RightLegPlate
  2560. wld5.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2561. --Cape
  2562. m6 = Instance.new("Model")
  2563. m6.Name = "Cloak"
  2564. p1 = Instance.new("WedgePart", m6)
  2565. p1.BrickColor = BrickColor.new("Lime green")
  2566. p1.Material = Enum.Material.SmoothPlastic
  2567. p1.Name = "Wedge"
  2568. p1.CFrame = CFrame.new(0.959278464, 4.40979004, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2569. p1.CanCollide = false
  2570. p1.Locked = true
  2571. p1.FormFactor = Enum.FormFactor.Custom
  2572. p1.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2573. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2574. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2575. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2576. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2577. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2578. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2579. b1 = Instance.new("SpecialMesh", p1)
  2580. b1.MeshType = Enum.MeshType.Wedge
  2581. b1.Name = "Mesh"
  2582. b1.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2583. p2 = Instance.new("WedgePart", m6)
  2584. p2.BrickColor = BrickColor.new("Black")
  2585. p2.Material = Enum.Material.SmoothPlastic
  2586. p2.Name = "Wedge"
  2587. p2.CFrame = CFrame.new(-1.27945054, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  2588. p2.CanCollide = false
  2589. p2.Locked = true
  2590. p2.FormFactor = Enum.FormFactor.Custom
  2591. p2.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2592. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2593. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2594. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2595. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2596. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2597. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2598. b2 = Instance.new("SpecialMesh", p2)
  2599. b2.MeshType = Enum.MeshType.Wedge
  2600. b2.Name = "Mesh"
  2601. b2.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2602. p3 = Instance.new("Part", m6)
  2603. p3.BrickColor = BrickColor.new("Black")
  2604. p3.Material = Enum.Material.SmoothPlastic
  2605. p3.Name = "CapeLevel2"
  2606. p3.CFrame = CFrame.new(-0.300008506, 3.78014231, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2607. p3.CanCollide = false
  2608. p3.Locked = true
  2609. p3.FormFactor = Enum.FormFactor.Custom
  2610. p3.Size = Vector3.new(2.09881067, 0.559682727, 0.232357636)
  2611. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2612. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2613. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2614. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2615. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2616. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2617. b3 = Instance.new("BlockMesh", p3)
  2618. b3.Name = "Mesh"
  2619. b3.Scale = Vector3.new(1, 1, 0.602178097)
  2620. p4 = Instance.new("Part", m6)
  2621. p4.BrickColor = BrickColor.new("Black")
  2622. p4.Material = Enum.Material.SmoothPlastic
  2623. p4.CFrame = CFrame.new(-1.8391341, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2624. p4.CanCollide = false
  2625. p4.Locked = true
  2626. p4.FormFactor = Enum.FormFactor.Custom
  2627. p4.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2628. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2629. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2630. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2631. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2632. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2633. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2634. b4 = Instance.new("BlockMesh", p4)
  2635. b4.Name = "Mesh"
  2636. b4.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2637. p5 = Instance.new("Part", m6)
  2638. p5.BrickColor = BrickColor.new("Black")
  2639. p5.Material = Enum.Material.SmoothPlastic
  2640. p5.CFrame = CFrame.new(-1.69921267, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2641. p5.CanCollide = false
  2642. p5.Locked = true
  2643. p5.FormFactor = Enum.FormFactor.Custom
  2644. p5.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2645. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2647. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2648. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2649. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2650. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2651. b5 = Instance.new("BlockMesh", p5)
  2652. b5.Name = "Mesh"
  2653. b5.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2654. p6 = Instance.new("Part", m6)
  2655. p6.BrickColor = BrickColor.new("Black")
  2656. p6.Material = Enum.Material.SmoothPlastic
  2657. p6.Name = "CapeLevel1"
  2658. p6.CFrame = CFrame.new(-0.300008506, 4.6896286, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2659. p6.CanCollide = false
  2660. p6.Locked = true
  2661. p6.FormFactor = Enum.FormFactor.Custom
  2662. p6.Size = Vector3.new(1.25928628, 0.232357651, 0.232357636)
  2663. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2664. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2665. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2666. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2667. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2668. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2669. b6 = Instance.new("BlockMesh", p6)
  2670. b6.Name = "Mesh"
  2671. b6.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2672. p7 = Instance.new("Part", m6)
  2673. p7.BrickColor = BrickColor.new("Black")
  2674. p7.Material = Enum.Material.SmoothPlastic
  2675. p7.CFrame = CFrame.new(1.23912418, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2676. p7.CanCollide = false
  2677. p7.Locked = true
  2678. p7.FormFactor = Enum.FormFactor.Custom
  2679. p7.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2680. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2681. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2682. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2683. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2684. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2685. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. b7 = Instance.new("BlockMesh", p7)
  2687. b7.Name = "Mesh"
  2688. b7.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2689. p8 = Instance.new("Part", m6)
  2690. p8.BrickColor = BrickColor.new("Black")
  2691. p8.Material = Enum.Material.SmoothPlastic
  2692. p8.CFrame = CFrame.new(0.539517641, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2693. p8.CanCollide = false
  2694. p8.Locked = true
  2695. p8.FormFactor = Enum.FormFactor.Custom
  2696. p8.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2697. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2698. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2699. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2700. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2701. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2702. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2703. b8 = Instance.new("BlockMesh", p8)
  2704. b8.Name = "Mesh"
  2705. b8.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2706. p9 = Instance.new("Part", m6)
  2707. p9.BrickColor = BrickColor.new("Black")
  2708. p9.Material = Enum.Material.SmoothPlastic
  2709. p9.CFrame = CFrame.new(-0.300009966, 2.03112936, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2710. p9.CanCollide = false
  2711. p9.Locked = true
  2712. p9.FormFactor = Enum.FormFactor.Custom
  2713. p9.Size = Vector3.new(0.419762105, 0.419762105, 0.232357636)
  2714. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2719. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2720. b9 = Instance.new("BlockMesh", p9)
  2721. b9.Name = "Mesh"
  2722. b9.Scale = Vector3.new(1, 1, 0.602178097)
  2723. p10 = Instance.new("Part", m6)
  2724. p10.BrickColor = BrickColor.new("Black")
  2725. p10.Material = Enum.Material.SmoothPlastic
  2726. p10.CFrame = CFrame.new(1.09920263, 2.73073268, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2727. p10.CanCollide = false
  2728. p10.Locked = true
  2729. p10.FormFactor = Enum.FormFactor.Custom
  2730. p10.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2731. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2732. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2733. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2734. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2736. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2737. b10 = Instance.new("BlockMesh", p10)
  2738. b10.Name = "Mesh"
  2739. b10.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2740. p11 = Instance.new("Part", m6)
  2741. p11.BrickColor = BrickColor.new("Black")
  2742. p11.Material = Enum.Material.SmoothPlastic
  2743. p11.CFrame = CFrame.new(-1.13953161, 2.10109043, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2744. p11.CanCollide = false
  2745. p11.Locked = true
  2746. p11.FormFactor = Enum.FormFactor.Custom
  2747. p11.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  2748. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2749. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2750. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2751. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2752. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2753. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2754. b11 = Instance.new("BlockMesh", p11)
  2755. b11.Name = "Mesh"
  2756. b11.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2757. p12 = Instance.new("Part", m6)
  2758. p12.BrickColor = BrickColor.new("Black")
  2759. p12.Material = Enum.Material.SmoothPlastic
  2760. p12.CFrame = CFrame.new(-1.6992135, 3.29041815, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2761. p12.CanCollide = false
  2762. p12.Locked = true
  2763. p12.FormFactor = Enum.FormFactor.Custom
  2764. p12.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2765. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2766. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2767. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2768. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2769. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2770. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2771. b12 = Instance.new("BlockMesh", p12)
  2772. b12.Name = "Mesh"
  2773. b12.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2774. p13 = Instance.new("Part", m6)
  2775. p13.BrickColor = BrickColor.new("Black")
  2776. p13.Material = Enum.Material.SmoothPlastic
  2777. p13.Name = "BottomLeftFlap"
  2778. p13.CFrame = CFrame.new(-1.13953161, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2779. p13.CanCollide = false
  2780. p13.Locked = true
  2781. p13.FormFactor = Enum.FormFactor.Custom
  2782. p13.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  2783. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2784. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2785. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2786. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2787. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2788. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2789. b13 = Instance.new("BlockMesh", p13)
  2790. b13.Name = "Mesh"
  2791. b13.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2792. p14 = Instance.new("Part", m6)
  2793. p14.BrickColor = BrickColor.new("Black")
  2794. p14.Material = Enum.Material.SmoothPlastic
  2795. p14.Transparency = 1
  2796. p14.Name = "Rotater"
  2797. p14.CFrame = CFrame.new(-0.300001532, 4.82954979, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2798. p14.CanCollide = false
  2799. p14.Locked = true
  2800. p14.FormFactor = Enum.FormFactor.Custom
  2801. p14.Size = Vector3.new(1.25928617, 0.232357651, 0.232357636)
  2802. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2803. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2804. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2805. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2806. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2807. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2808. b14 = Instance.new("BlockMesh", p14)
  2809. b14.Name = "Mesh"
  2810. b14.Scale = Vector3.new(1, 0.632287025, 0.632287025)
  2811. p15 = Instance.new("Part", m6)
  2812. p15.BrickColor = BrickColor.new("Black")
  2813. p15.Material = Enum.Material.SmoothPlastic
  2814. p15.CFrame = CFrame.new(-1.41937125, 4.40979004, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2815. p15.CanCollide = false
  2816. p15.Locked = true
  2817. p15.FormFactor = Enum.FormFactor.Custom
  2818. p15.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2819. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2820. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2821. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2822. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2823. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2824. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2825. b15 = Instance.new("BlockMesh", p15)
  2826. b15.Name = "Mesh"
  2827. b15.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2828. p16 = Instance.new("Part", m6)
  2829. p16.BrickColor = BrickColor.new("Black")
  2830. p16.Material = Enum.Material.SmoothPlastic
  2831. p16.Name = "BottomCenterFlap"
  2832. p16.CFrame = CFrame.new(-0.300009966, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2833. p16.CanCollide = false
  2834. p16.Locked = true
  2835. p16.FormFactor = Enum.FormFactor.Custom
  2836. p16.Size = Vector3.new(0.699603498, 0.232357651, 0.232357636)
  2837. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2838. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2839. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2840. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2841. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2842. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2843. b16 = Instance.new("BlockMesh", p16)
  2844. b16.Name = "Mesh"
  2845. b16.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  2846. p17 = Instance.new("Part", m6)
  2847. p17.BrickColor = BrickColor.new("Black")
  2848. p17.Material = Enum.Material.SmoothPlastic
  2849. p17.CFrame = CFrame.new(-1.27945054, 4.26986647, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  2850. p17.CanCollide = false
  2851. p17.Locked = true
  2852. p17.FormFactor = Enum.FormFactor.Custom
  2853. p17.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2854. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2855. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2856. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2857. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2858. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2859. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2860. b17 = Instance.new("BlockMesh", p17)
  2861. b17.Name = "Mesh"
  2862. b17.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2863. p18 = Instance.new("Part", m6)
  2864. p18.BrickColor = BrickColor.new("Black")
  2865. p18.Material = Enum.Material.SmoothPlastic
  2866. p18.CFrame = CFrame.new(0.679436207, 4.26986647, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2867. p18.CanCollide = false
  2868. p18.Locked = true
  2869. p18.FormFactor = Enum.FormFactor.Custom
  2870. p18.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2871. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2872. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2873. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2874. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2875. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2876. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2877. b18 = Instance.new("BlockMesh", p18)
  2878. b18.Name = "Mesh"
  2879. b18.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2880. p19 = Instance.new("WedgePart", m6)
  2881. p19.BrickColor = BrickColor.new("Lime green")
  2882. p19.Name = "Wedge"
  2883. p19.CFrame = CFrame.new(-0.265017539, 1.47144794, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  2884. p19.CanCollide = false
  2885. p19.Locked = true
  2886. p19.FormFactor = Enum.FormFactor.Custom
  2887. p19.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2888. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2889. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2890. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2891. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2892. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2893. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2894. b19 = Instance.new("SpecialMesh", p19)
  2895. b19.MeshType = Enum.MeshType.Wedge
  2896. b19.Name = "Mesh"
  2897. b19.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  2898. p20 = Instance.new("Part", m6)
  2899. p20.BrickColor = BrickColor.new("Black")
  2900. p20.Material = Enum.Material.SmoothPlastic
  2901. p20.CFrame = CFrame.new(1.09919691, 3.29041815, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2902. p20.CanCollide = false
  2903. p20.Locked = true
  2904. p20.FormFactor = Enum.FormFactor.Custom
  2905. p20.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2906. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2907. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2908. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2909. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2910. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2911. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2912. b20 = Instance.new("BlockMesh", p20)
  2913. b20.Name = "Mesh"
  2914. b20.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2915. p21 = Instance.new("Part", m6)
  2916. p21.BrickColor = BrickColor.new("Black")
  2917. p21.Material = Enum.Material.SmoothPlastic
  2918. p21.CFrame = CFrame.new(0.959275484, 3.1504972, 4.03967381, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2919. p21.CanCollide = false
  2920. p21.Locked = true
  2921. p21.FormFactor = Enum.FormFactor.Custom
  2922. p21.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  2923. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2924. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2925. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2926. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2927. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2928. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2929. b21 = Instance.new("BlockMesh", p21)
  2930. b21.Name = "Mesh"
  2931. b21.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  2932. p22 = Instance.new("WedgePart", m6)
  2933. p22.BrickColor = BrickColor.new("Lime green")
  2934. p22.Name = "Wedge"
  2935. p22.CFrame = CFrame.new(0.50454706, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  2936. p22.CanCollide = false
  2937. p22.Locked = true
  2938. p22.FormFactor = Enum.FormFactor.Custom
  2939. p22.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2940. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2941. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2942. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2943. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2944. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2946. b22 = Instance.new("SpecialMesh", p22)
  2947. b22.MeshType = Enum.MeshType.Wedge
  2948. b22.Name = "Mesh"
  2949. b22.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  2950. p23 = Instance.new("WedgePart", m6)
  2951. p23.BrickColor = BrickColor.new("Lime green")
  2952. p23.Material = Enum.Material.SmoothPlastic
  2953. p23.Name = "Wedge"
  2954. p23.CFrame = CFrame.new(1.09919691, 3.85010386, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2955. p23.CanCollide = false
  2956. p23.Locked = true
  2957. p23.FormFactor = Enum.FormFactor.Custom
  2958. p23.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2959. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2960. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2961. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2962. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2963. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2964. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2965. b23 = Instance.new("SpecialMesh", p23)
  2966. b23.MeshType = Enum.MeshType.Wedge
  2967. b23.Name = "Mesh"
  2968. b23.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2969. p24 = Instance.new("WedgePart", m6)
  2970. p24.BrickColor = BrickColor.new("Black")
  2971. p24.Material = Enum.Material.SmoothPlastic
  2972. p24.Name = "Wedge"
  2973. p24.CFrame = CFrame.new(0.959281087, 2.45089102, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  2974. p24.CanCollide = false
  2975. p24.Locked = true
  2976. p24.FormFactor = Enum.FormFactor.Custom
  2977. p24.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2978. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2979. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2980. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2981. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2982. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2983. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2984. b24 = Instance.new("SpecialMesh", p24)
  2985. b24.MeshType = Enum.MeshType.Wedge
  2986. b24.Name = "Mesh"
  2987. b24.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  2988. p25 = Instance.new("WedgePart", m6)
  2989. p25.BrickColor = BrickColor.new("Lime green")
  2990. p25.Name = "Wedge"
  2991. p25.CFrame = CFrame.new(0.574507415, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  2992. p25.CanCollide = false
  2993. p25.Locked = true
  2994. p25.FormFactor = Enum.FormFactor.Custom
  2995. p25.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  2996. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2997. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2998. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3001. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3002. b25 = Instance.new("SpecialMesh", p25)
  3003. b25.MeshType = Enum.MeshType.Wedge
  3004. b25.Name = "Mesh"
  3005. b25.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3006. p26 = Instance.new("WedgePart", m6)
  3007. p26.BrickColor = BrickColor.new("Black")
  3008. p26.Material = Enum.Material.SmoothPlastic
  3009. p26.Name = "Wedge"
  3010. p26.CFrame = CFrame.new(-1.06957662, 4.68963194, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3011. p26.CanCollide = false
  3012. p26.Locked = true
  3013. p26.FormFactor = Enum.FormFactor.Custom
  3014. p26.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3015. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3016. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3017. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3018. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3019. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3020. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3021. b26 = Instance.new("SpecialMesh", p26)
  3022. b26.MeshType = Enum.MeshType.Wedge
  3023. b26.Name = "Mesh"
  3024. b26.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3025. p27 = Instance.new("Part", m6)
  3026. p27.BrickColor = BrickColor.new("Black")
  3027. p27.Material = Enum.Material.SmoothPlastic
  3028. p27.CFrame = CFrame.new(-1.55929208, 2.73073244, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3029. p27.CanCollide = false
  3030. p27.Locked = true
  3031. p27.FormFactor = Enum.FormFactor.Custom
  3032. p27.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3033. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3034. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3035. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3036. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3037. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3038. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3039. b27 = Instance.new("BlockMesh", p27)
  3040. b27.Name = "Mesh"
  3041. b27.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3042. p28 = Instance.new("WedgePart", m6)
  3043. p28.BrickColor = BrickColor.new("Black")
  3044. p28.Material = Enum.Material.SmoothPlastic
  3045. p28.Name = "Wedge"
  3046. p28.CFrame = CFrame.new(0.959275484, 3.71018291, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3047. p28.CanCollide = false
  3048. p28.Locked = true
  3049. p28.FormFactor = Enum.FormFactor.Custom
  3050. p28.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3051. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3052. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3054. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3055. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3056. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3057. b28 = Instance.new("SpecialMesh", p28)
  3058. b28.MeshType = Enum.MeshType.Wedge
  3059. b28.Name = "Mesh"
  3060. b28.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3061. p29 = Instance.new("Part", m6)
  3062. p29.BrickColor = BrickColor.new("Black")
  3063. p29.Material = Enum.Material.SmoothPlastic
  3064. p29.CFrame = CFrame.new(-1.55929208, 3.15049648, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3065. p29.CanCollide = false
  3066. p29.Locked = true
  3067. p29.FormFactor = Enum.FormFactor.Custom
  3068. p29.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3069. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3070. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3071. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3072. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3073. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3074. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3075. b29 = Instance.new("BlockMesh", p29)
  3076. b29.Name = "Mesh"
  3077. b29.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3078. p30 = Instance.new("WedgePart", m6)
  3079. p30.BrickColor = BrickColor.new("Black")
  3080. p30.Material = Enum.Material.SmoothPlastic
  3081. p30.Name = "Wedge"
  3082. p30.CFrame = CFrame.new(1.09919691, 3.15049744, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3083. p30.CanCollide = false
  3084. p30.Locked = true
  3085. p30.FormFactor = Enum.FormFactor.Custom
  3086. p30.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3087. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3088. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3089. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3090. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3091. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3092. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3093. b30 = Instance.new("SpecialMesh", p30)
  3094. b30.MeshType = Enum.MeshType.Wedge
  3095. b30.Name = "Mesh"
  3096. b30.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3097. p31 = Instance.new("WedgePart", m6)
  3098. p31.BrickColor = BrickColor.new("Black")
  3099. p31.Material = Enum.Material.SmoothPlastic
  3100. p31.Name = "Wedge"
  3101. p31.CFrame = CFrame.new(0.119759142, 2.31096911, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3102. p31.CanCollide = false
  3103. p31.Locked = true
  3104. p31.FormFactor = Enum.FormFactor.Custom
  3105. p31.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3106. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3107. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3108. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3109. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3110. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3112. b31 = Instance.new("SpecialMesh", p31)
  3113. b31.MeshType = Enum.MeshType.Wedge
  3114. b31.Name = "Mesh"
  3115. b31.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3116. p32 = Instance.new("Part", m6)
  3117. p32.BrickColor = BrickColor.new("Black")
  3118. p32.Material = Enum.Material.SmoothPlastic
  3119. p32.Name = "BottomRightFlap"
  3120. p32.CFrame = CFrame.new(0.539517641, 2.31097221, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3121. p32.CanCollide = false
  3122. p32.Locked = true
  3123. p32.FormFactor = Enum.FormFactor.Custom
  3124. p32.Size = Vector3.new(0.419762105, 0.232357651, 0.232357636)
  3125. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3126. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3127. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3128. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3131. b32 = Instance.new("BlockMesh", p32)
  3132. b32.Name = "Mesh"
  3133. b32.Scale = Vector3.new(1, 0.602178097, 0.602178097)
  3134. p33 = Instance.new("WedgePart", m6)
  3135. p33.BrickColor = BrickColor.new("Black")
  3136. p33.Material = Enum.Material.SmoothPlastic
  3137. p33.Name = "Wedge"
  3138. p33.CFrame = CFrame.new(1.02923799, 3.43033957, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3139. p33.CanCollide = false
  3140. p33.Locked = true
  3141. p33.FormFactor = Enum.FormFactor.Custom
  3142. p33.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3143. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3144. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3145. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3147. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3148. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3149. b33 = Instance.new("SpecialMesh", p33)
  3150. b33.MeshType = Enum.MeshType.Wedge
  3151. b33.Name = "Mesh"
  3152. b33.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3153. p34 = Instance.new("WedgePart", m6)
  3154. p34.BrickColor = BrickColor.new("Black")
  3155. p34.Material = Enum.Material.SmoothPlastic
  3156. p34.Name = "Wedge"
  3157. p34.CFrame = CFrame.new(-1.55929208, 2.45089054, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3158. p34.CanCollide = false
  3159. p34.Locked = true
  3160. p34.FormFactor = Enum.FormFactor.Custom
  3161. p34.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3162. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3163. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3164. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3165. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3166. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3167. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3168. b34 = Instance.new("SpecialMesh", p34)
  3169. b34.MeshType = Enum.MeshType.Wedge
  3170. b34.Name = "Mesh"
  3171. b34.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3172. p35 = Instance.new("Part", m6)
  3173. p35.BrickColor = BrickColor.new("Black")
  3174. p35.Material = Enum.Material.SmoothPlastic
  3175. p35.CFrame = CFrame.new(0.959275484, 3.85010386, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3176. p35.CanCollide = false
  3177. p35.Locked = true
  3178. p35.FormFactor = Enum.FormFactor.Custom
  3179. p35.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3180. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3181. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3182. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3183. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3184. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3185. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3186. b35 = Instance.new("BlockMesh", p35)
  3187. b35.Name = "Mesh"
  3188. b35.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3189. p36 = Instance.new("WedgePart", m6)
  3190. p36.BrickColor = BrickColor.new("Black")
  3191. p36.Material = Enum.Material.SmoothPlastic
  3192. p36.Name = "Wedge"
  3193. p36.CFrame = CFrame.new(-1.62925327, 3.43033957, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3194. p36.CanCollide = false
  3195. p36.Locked = true
  3196. p36.FormFactor = Enum.FormFactor.Custom
  3197. p36.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3198. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3199. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3200. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3201. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3202. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3203. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3204. b36 = Instance.new("SpecialMesh", p36)
  3205. b36.MeshType = Enum.MeshType.Wedge
  3206. b36.Name = "Mesh"
  3207. b36.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3208. p37 = Instance.new("Part", m6)
  3209. p37.BrickColor = BrickColor.new("Black")
  3210. p37.Material = Enum.Material.SmoothPlastic
  3211. p37.Name = "CapeLevel3"
  3212. p37.CFrame = CFrame.new(-0.300008506, 3.22045994, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3213. p37.CanCollide = false
  3214. p37.Locked = true
  3215. p37.FormFactor = Enum.FormFactor.Custom
  3216. p37.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3217. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3218. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3219. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3220. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3223. b37 = Instance.new("BlockMesh", p37)
  3224. b37.Name = "Mesh"
  3225. b37.Scale = Vector3.new(1, 1, 0.602178097)
  3226. p38 = Instance.new("WedgePart", m6)
  3227. p38.BrickColor = BrickColor.new("Lime green")
  3228. p38.Material = Enum.Material.SmoothPlastic
  3229. p38.Name = "Wedge"
  3230. p38.CFrame = CFrame.new(-1.97905517, 2.73073244, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3231. p38.CanCollide = false
  3232. p38.Locked = true
  3233. p38.FormFactor = Enum.FormFactor.Custom
  3234. p38.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3235. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3236. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3237. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3238. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3239. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3240. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3241. b38 = Instance.new("SpecialMesh", p38)
  3242. b38.MeshType = Enum.MeshType.Wedge
  3243. b38.Name = "Mesh"
  3244. b38.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3245. p39 = Instance.new("WedgePart", m6)
  3246. p39.BrickColor = BrickColor.new("Lime green")
  3247. p39.Material = Enum.Material.SmoothPlastic
  3248. p39.Name = "Wedge"
  3249. p39.CFrame = CFrame.new(-1.83913493, 3.29041815, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3250. p39.CanCollide = false
  3251. p39.Locked = true
  3252. p39.FormFactor = Enum.FormFactor.Custom
  3253. p39.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3254. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3255. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3256. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3257. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3258. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3259. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3260. b39 = Instance.new("SpecialMesh", p39)
  3261. b39.MeshType = Enum.MeshType.Wedge
  3262. b39.Name = "Mesh"
  3263. b39.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3264. p40 = Instance.new("WedgePart", m6)
  3265. p40.BrickColor = BrickColor.new("Black")
  3266. p40.Material = Enum.Material.SmoothPlastic
  3267. p40.Name = "Wedge"
  3268. p40.CFrame = CFrame.new(-1.48933268, 3.99002528, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3269. p40.CanCollide = false
  3270. p40.Locked = true
  3271. p40.FormFactor = Enum.FormFactor.Custom
  3272. p40.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3273. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3275. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3276. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3277. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3278. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3279. b40 = Instance.new("SpecialMesh", p40)
  3280. b40.MeshType = Enum.MeshType.Wedge
  3281. b40.Name = "Mesh"
  3282. b40.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3283. p41 = Instance.new("WedgePart", m6)
  3284. p41.BrickColor = BrickColor.new("Black")
  3285. p41.Material = Enum.Material.SmoothPlastic
  3286. p41.Name = "Wedge"
  3287. p41.CFrame = CFrame.new(-1.76917338, 2.59081101, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3288. p41.CanCollide = false
  3289. p41.Locked = true
  3290. p41.FormFactor = Enum.FormFactor.Custom
  3291. p41.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3292. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3295. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3296. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3297. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3298. b41 = Instance.new("SpecialMesh", p41)
  3299. b41.MeshType = Enum.MeshType.Wedge
  3300. b41.Name = "Mesh"
  3301. b41.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3302. p42 = Instance.new("WedgePart", m6)
  3303. p42.BrickColor = BrickColor.new("Black")
  3304. p42.Material = Enum.Material.SmoothPlastic
  3305. p42.Name = "Wedge"
  3306. p42.CFrame = CFrame.new(0.679442644, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3307. p42.CanCollide = false
  3308. p42.Locked = true
  3309. p42.FormFactor = Enum.FormFactor.Custom
  3310. p42.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3311. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3312. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3313. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3314. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3315. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3316. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3317. b42 = Instance.new("SpecialMesh", p42)
  3318. b42.MeshType = Enum.MeshType.Wedge
  3319. b42.Name = "Mesh"
  3320. b42.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3321. p43 = Instance.new("WedgePart", m6)
  3322. p43.BrickColor = BrickColor.new("Black")
  3323. p43.Material = Enum.Material.SmoothPlastic
  3324. p43.Name = "Wedge"
  3325. p43.CFrame = CFrame.new(-1.76917338, 2.87065363, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3326. p43.CanCollide = false
  3327. p43.Locked = true
  3328. p43.FormFactor = Enum.FormFactor.Custom
  3329. p43.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3330. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3331. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3332. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3333. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3334. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3335. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3336. b43 = Instance.new("SpecialMesh", p43)
  3337. b43.MeshType = Enum.MeshType.Wedge
  3338. b43.Name = "Mesh"
  3339. b43.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3340. p44 = Instance.new("WedgePart", m6)
  3341. p44.BrickColor = BrickColor.new("Black")
  3342. p44.Material = Enum.Material.SmoothPlastic
  3343. p44.Name = "Wedge"
  3344. p44.CFrame = CFrame.new(-1.41937125, 4.26986837, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3345. p44.CanCollide = false
  3346. p44.Locked = true
  3347. p44.FormFactor = Enum.FormFactor.Custom
  3348. p44.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3349. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3350. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3351. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3352. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3353. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3354. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3355. b44 = Instance.new("SpecialMesh", p44)
  3356. b44.MeshType = Enum.MeshType.Wedge
  3357. b44.Name = "Mesh"
  3358. b44.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3359. p45 = Instance.new("WedgePart", m6)
  3360. p45.BrickColor = BrickColor.new("Black")
  3361. p45.Material = Enum.Material.SmoothPlastic
  3362. p45.Name = "Wedge"
  3363. p45.CFrame = CFrame.new(-0.999610066, 2.10108781, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3364. p45.CanCollide = false
  3365. p45.Locked = true
  3366. p45.FormFactor = Enum.FormFactor.Custom
  3367. p45.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3368. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3369. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3370. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3371. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3372. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3373. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3374. b45 = Instance.new("SpecialMesh", p45)
  3375. b45.MeshType = Enum.MeshType.Wedge
  3376. b45.Name = "Mesh"
  3377. b45.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3378. p46 = Instance.new("WedgePart", m6)
  3379. p46.BrickColor = BrickColor.new("Black")
  3380. p46.Material = Enum.Material.SmoothPlastic
  3381. p46.Name = "Wedge"
  3382. p46.CFrame = CFrame.new(0.46955356, 4.68963194, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3383. p46.CanCollide = false
  3384. p46.Locked = true
  3385. p46.FormFactor = Enum.FormFactor.Custom
  3386. p46.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3387. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3388. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3389. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3390. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3391. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3392. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3393. b46 = Instance.new("SpecialMesh", p46)
  3394. b46.MeshType = Enum.MeshType.Wedge
  3395. b46.Name = "Mesh"
  3396. b46.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3397. p47 = Instance.new("Part", m6)
  3398. p47.BrickColor = BrickColor.new("Black")
  3399. p47.Material = Enum.Material.SmoothPlastic
  3400. p47.CFrame = CFrame.new(0.819356859, 4.40979004, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3401. p47.CanCollide = false
  3402. p47.Locked = true
  3403. p47.FormFactor = Enum.FormFactor.Custom
  3404. p47.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3405. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3406. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3407. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3408. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3409. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3410. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3411. b47 = Instance.new("BlockMesh", p47)
  3412. b47.Name = "Mesh"
  3413. b47.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3414. p48 = Instance.new("Part", m6)
  3415. p48.BrickColor = BrickColor.new("Black")
  3416. p48.Material = Enum.Material.SmoothPlastic
  3417. p48.Name = "CapeLevel4"
  3418. p48.CFrame = CFrame.new(-0.300008506, 2.66077495, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3419. p48.CanCollide = false
  3420. p48.Locked = true
  3421. p48.FormFactor = Enum.FormFactor.Custom
  3422. p48.Size = Vector3.new(2.3786521, 0.559682727, 0.232357636)
  3423. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3424. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3425. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3426. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3427. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3428. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3429. b48 = Instance.new("BlockMesh", p48)
  3430. b48.Name = "Mesh"
  3431. b48.Scale = Vector3.new(1, 1, 0.602178097)
  3432. p49 = Instance.new("WedgePart", m6)
  3433. p49.BrickColor = BrickColor.new("Black")
  3434. p49.Material = Enum.Material.SmoothPlastic
  3435. p49.Name = "Wedge"
  3436. p49.CFrame = CFrame.new(0.819356859, 4.26986837, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3437. p49.CanCollide = false
  3438. p49.Locked = true
  3439. p49.FormFactor = Enum.FormFactor.Custom
  3440. p49.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3441. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3442. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3443. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3444. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3445. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3446. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3447. b49 = Instance.new("SpecialMesh", p49)
  3448. b49.MeshType = Enum.MeshType.Wedge
  3449. b49.Name = "Mesh"
  3450. b49.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3451. p50 = Instance.new("Part", m6)
  3452. p50.BrickColor = BrickColor.new("Black")
  3453. p50.Material = Enum.Material.SmoothPlastic
  3454. p50.Name = "CapeLevel1SubPart"
  3455. p50.CFrame = CFrame.new(-0.300008506, 4.33982658, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3456. p50.CanCollide = false
  3457. p50.Locked = true
  3458. p50.FormFactor = Enum.FormFactor.Custom
  3459. p50.Size = Vector3.new(1.81896901, 0.559682727, 0.232357636)
  3460. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3461. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3462. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3463. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3464. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3465. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3466. b50 = Instance.new("BlockMesh", p50)
  3467. b50.Name = "Mesh"
  3468. b50.Scale = Vector3.new(1, 1, 0.602178097)
  3469. p51 = Instance.new("Part", m6)
  3470. p51.BrickColor = BrickColor.new("Black")
  3471. p51.Material = Enum.Material.SmoothPlastic
  3472. p51.CFrame = CFrame.new(-1.55929291, 3.85010386, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3473. p51.CanCollide = false
  3474. p51.Locked = true
  3475. p51.FormFactor = Enum.FormFactor.Custom
  3476. p51.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3477. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3478. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3479. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3480. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3481. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3482. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3483. b51 = Instance.new("BlockMesh", p51)
  3484. b51.Name = "Mesh"
  3485. b51.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3486. p52 = Instance.new("Part", m6)
  3487. p52.BrickColor = BrickColor.new("Black")
  3488. p52.Material = Enum.Material.SmoothPlastic
  3489. p52.CFrame = CFrame.new(-1.41937149, 3.71018171, 4.03967237, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  3490. p52.CanCollide = false
  3491. p52.Locked = true
  3492. p52.FormFactor = Enum.FormFactor.Custom
  3493. p52.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3494. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3495. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3496. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3497. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3498. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3499. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3500. b52 = Instance.new("BlockMesh", p52)
  3501. b52.Name = "Mesh"
  3502. b52.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3503. p53 = Instance.new("WedgePart", m6)
  3504. p53.BrickColor = BrickColor.new("Black")
  3505. p53.Material = Enum.Material.SmoothPlastic
  3506. p53.Name = "Wedge"
  3507. p53.CFrame = CFrame.new(-0.0201580226, 2.03113341, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3508. p53.CanCollide = false
  3509. p53.Locked = true
  3510. p53.FormFactor = Enum.FormFactor.Custom
  3511. p53.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3512. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3513. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3514. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3515. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3516. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3517. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3518. b53 = Instance.new("SpecialMesh", p53)
  3519. b53.MeshType = Enum.MeshType.Wedge
  3520. b53.Name = "Mesh"
  3521. b53.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3522. p54 = Instance.new("Part", m6)
  3523. p54.BrickColor = BrickColor.new("Black")
  3524. p54.Material = Enum.Material.SmoothPlastic
  3525. p54.CFrame = CFrame.new(-0.300009966, 1.68132639, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3526. p54.CanCollide = false
  3527. p54.Locked = true
  3528. p54.FormFactor = Enum.FormFactor.Custom
  3529. p54.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  3530. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3531. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3532. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3533. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3534. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3536. b54 = Instance.new("BlockMesh", p54)
  3537. b54.Name = "Mesh"
  3538. b54.Scale = Vector3.new(0.602178395, 1, 0.602178097)
  3539. p55 = Instance.new("WedgePart", m6)
  3540. p55.BrickColor = BrickColor.new("Black")
  3541. p55.Material = Enum.Material.SmoothPlastic
  3542. p55.Name = "Wedge"
  3543. p55.CFrame = CFrame.new(0.39960131, 2.10108781, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3544. p55.CanCollide = false
  3545. p55.Locked = true
  3546. p55.FormFactor = Enum.FormFactor.Custom
  3547. p55.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3548. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3549. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3550. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3551. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3552. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3553. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3554. b55 = Instance.new("SpecialMesh", p55)
  3555. b55.MeshType = Enum.MeshType.Wedge
  3556. b55.Name = "Mesh"
  3557. b55.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3558. p56 = Instance.new("WedgePart", m6)
  3559. p56.BrickColor = BrickColor.new("Lime green")
  3560. p56.Material = Enum.Material.SmoothPlastic
  3561. p56.Name = "Wedge"
  3562. p56.CFrame = CFrame.new(1.23911822, 3.29041815, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3563. p56.CanCollide = false
  3564. p56.Locked = true
  3565. p56.FormFactor = Enum.FormFactor.Custom
  3566. p56.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3567. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3568. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3569. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3570. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3571. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3572. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3573. b56 = Instance.new("SpecialMesh", p56)
  3574. b56.MeshType = Enum.MeshType.Wedge
  3575. b56.Name = "Mesh"
  3576. b56.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3577. p57 = Instance.new("WedgePart", m6)
  3578. p57.BrickColor = BrickColor.new("Black")
  3579. p57.Material = Enum.Material.SmoothPlastic
  3580. p57.Name = "Wedge"
  3581. p57.CFrame = CFrame.new(0.749394774, 4.54971123, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3582. p57.CanCollide = false
  3583. p57.Locked = true
  3584. p57.FormFactor = Enum.FormFactor.Custom
  3585. p57.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3586. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3587. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3588. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3589. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3590. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3591. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3592. b57 = Instance.new("SpecialMesh", p57)
  3593. b57.MeshType = Enum.MeshType.Wedge
  3594. b57.Name = "Mesh"
  3595. b57.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3596. p58 = Instance.new("Part", m6)
  3597. p58.BrickColor = BrickColor.new("Black")
  3598. p58.Material = Enum.Material.SmoothPlastic
  3599. p58.CFrame = CFrame.new(0.819354892, 3.71018171, 4.03967237, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3600. p58.CanCollide = false
  3601. p58.Locked = true
  3602. p58.FormFactor = Enum.FormFactor.Custom
  3603. p58.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3604. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3605. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3606. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3607. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3608. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3609. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3610. b58 = Instance.new("BlockMesh", p58)
  3611. b58.Name = "Mesh"
  3612. b58.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3613. p59 = Instance.new("WedgePart", m6)
  3614. p59.BrickColor = BrickColor.new("Black")
  3615. p59.Material = Enum.Material.SmoothPlastic
  3616. p59.Name = "Wedge"
  3617. p59.CFrame = CFrame.new(0.259678036, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3618. p59.CanCollide = false
  3619. p59.Locked = true
  3620. p59.FormFactor = Enum.FormFactor.Custom
  3621. p59.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3622. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3623. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3624. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3625. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3626. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3627. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3628. b59 = Instance.new("SpecialMesh", p59)
  3629. b59.MeshType = Enum.MeshType.Wedge
  3630. b59.Name = "Mesh"
  3631. b59.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3632. p60 = Instance.new("Part", m6)
  3633. p60.BrickColor = BrickColor.new("Black")
  3634. p60.Material = Enum.Material.SmoothPlastic
  3635. p60.Name = "NeckPart"
  3636. p60.CFrame = CFrame.new(-0.300008506, 4.82955122, 3.8997519, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3637. p60.CanCollide = false
  3638. p60.Locked = true
  3639. p60.FormFactor = Enum.FormFactor.Custom
  3640. p60.Size = Vector3.new(1.25928628, 0.232357651, 0.419762105)
  3641. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3642. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3643. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3644. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3645. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3646. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3647. b60 = Instance.new("BlockMesh", p60)
  3648. b60.Name = "Mesh"
  3649. b60.Scale = Vector3.new(1, 0.602178097, 1)
  3650. p61 = Instance.new("Part", m6)
  3651. p61.BrickColor = BrickColor.new("Black")
  3652. p61.Material = Enum.Material.SmoothPlastic
  3653. p61.CFrame = CFrame.new(0.959281087, 2.73073363, 4.03967333, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3654. p61.CanCollide = false
  3655. p61.Locked = true
  3656. p61.FormFactor = Enum.FormFactor.Custom
  3657. p61.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3658. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3659. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3660. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3661. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3662. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3663. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3664. b61 = Instance.new("BlockMesh", p61)
  3665. b61.Name = "Mesh"
  3666. b61.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3667. p62 = Instance.new("WedgePart", m6)
  3668. p62.BrickColor = BrickColor.new("Black")
  3669. p62.Material = Enum.Material.SmoothPlastic
  3670. p62.Name = "Wedge"
  3671. p62.CFrame = CFrame.new(1.16916382, 2.87065434, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3672. p62.CanCollide = false
  3673. p62.Locked = true
  3674. p62.FormFactor = Enum.FormFactor.Custom
  3675. p62.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3676. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3677. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3678. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3679. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3680. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3681. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3682. b62 = Instance.new("SpecialMesh", p62)
  3683. b62.MeshType = Enum.MeshType.Wedge
  3684. b62.Name = "Mesh"
  3685. b62.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3686. p63 = Instance.new("WedgePart", m6)
  3687. p63.BrickColor = BrickColor.new("Lime green")
  3688. p63.Material = Enum.Material.SmoothPlastic
  3689. p63.Name = "Wedge"
  3690. p63.CFrame = CFrame.new(1.37904489, 2.73073268, 4.03967333, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3691. p63.CanCollide = false
  3692. p63.Locked = true
  3693. p63.FormFactor = Enum.FormFactor.Custom
  3694. p63.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3695. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3696. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3697. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3698. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3699. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3700. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3701. b63 = Instance.new("SpecialMesh", p63)
  3702. b63.MeshType = Enum.MeshType.Wedge
  3703. b63.Name = "Mesh"
  3704. b63.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3705. p64 = Instance.new("WedgePart", m6)
  3706. p64.BrickColor = BrickColor.new("Black")
  3707. p64.Material = Enum.Material.SmoothPlastic
  3708. p64.Name = "Wedge"
  3709. p64.CFrame = CFrame.new(-0.439923674, 1.68132377, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3710. p64.CanCollide = false
  3711. p64.Locked = true
  3712. p64.FormFactor = Enum.FormFactor.Custom
  3713. p64.Size = Vector3.new(0.232357651, 0.279841423, 0.232357636)
  3714. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3715. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3716. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3717. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3718. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3719. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3720. b64 = Instance.new("SpecialMesh", p64)
  3721. b64.MeshType = Enum.MeshType.Wedge
  3722. b64.Name = "Mesh"
  3723. b64.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3724. p65 = Instance.new("WedgePart", m6)
  3725. p65.BrickColor = BrickColor.new("Black")
  3726. p65.Material = Enum.Material.SmoothPlastic
  3727. p65.Name = "Wedge"
  3728. p65.CFrame = CFrame.new(-0.859687686, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3729. p65.CanCollide = false
  3730. p65.Locked = true
  3731. p65.FormFactor = Enum.FormFactor.Custom
  3732. p65.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3733. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3734. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3735. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3736. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3737. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3738. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3739. b65 = Instance.new("SpecialMesh", p65)
  3740. b65.MeshType = Enum.MeshType.Wedge
  3741. b65.Name = "Mesh"
  3742. b65.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3743. p66 = Instance.new("WedgePart", m6)
  3744. p66.BrickColor = BrickColor.new("Black")
  3745. p66.Material = Enum.Material.SmoothPlastic
  3746. p66.Name = "Wedge"
  3747. p66.CFrame = CFrame.new(-1.55929291, 3.71018267, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3748. p66.CanCollide = false
  3749. p66.Locked = true
  3750. p66.FormFactor = Enum.FormFactor.Custom
  3751. p66.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3752. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3753. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3754. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3755. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3756. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3757. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3758. b66 = Instance.new("SpecialMesh", p66)
  3759. b66.MeshType = Enum.MeshType.Wedge
  3760. b66.Name = "Mesh"
  3761. b66.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3762. p67 = Instance.new("WedgePart", m6)
  3763. p67.BrickColor = BrickColor.new("Black")
  3764. p67.Material = Enum.Material.SmoothPlastic
  3765. p67.Name = "Wedge"
  3766. p67.CFrame = CFrame.new(-0.719767809, 2.31096911, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3767. p67.CanCollide = false
  3768. p67.Locked = true
  3769. p67.FormFactor = Enum.FormFactor.Custom
  3770. p67.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3771. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3772. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3773. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3774. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3775. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3776. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3777. b67 = Instance.new("SpecialMesh", p67)
  3778. b67.MeshType = Enum.MeshType.Wedge
  3779. b67.Name = "Mesh"
  3780. b67.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3781. p68 = Instance.new("WedgePart", m6)
  3782. p68.BrickColor = BrickColor.new("Lime green")
  3783. p68.Name = "Wedge"
  3784. p68.CFrame = CFrame.new(-1.17450571, 1.89121199, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3785. p68.CanCollide = false
  3786. p68.Locked = true
  3787. p68.FormFactor = Enum.FormFactor.Custom
  3788. p68.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3789. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3790. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3791. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3792. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3793. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3794. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3795. b68 = Instance.new("SpecialMesh", p68)
  3796. b68.MeshType = Enum.MeshType.Wedge
  3797. b68.Name = "Mesh"
  3798. b68.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3799. p69 = Instance.new("WedgePart", m6)
  3800. p69.BrickColor = BrickColor.new("Lime green")
  3801. p69.Name = "Wedge"
  3802. p69.CFrame = CFrame.new(-1.10454547, 1.89121199, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3803. p69.CanCollide = false
  3804. p69.Locked = true
  3805. p69.FormFactor = Enum.FormFactor.Custom
  3806. p69.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3807. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3808. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3809. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3810. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3811. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. b69 = Instance.new("SpecialMesh", p69)
  3814. b69.MeshType = Enum.MeshType.Wedge
  3815. b69.Name = "Mesh"
  3816. b69.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3817. p70 = Instance.new("WedgePart", m6)
  3818. p70.BrickColor = BrickColor.new("Black")
  3819. p70.Material = Enum.Material.SmoothPlastic
  3820. p70.Name = "Wedge"
  3821. p70.CFrame = CFrame.new(0.889316559, 3.99002528, 4.03967237, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3822. p70.CanCollide = false
  3823. p70.Locked = true
  3824. p70.FormFactor = Enum.FormFactor.Custom
  3825. p70.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3826. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3827. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3828. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3829. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3830. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3831. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3832. b70 = Instance.new("SpecialMesh", p70)
  3833. b70.MeshType = Enum.MeshType.Wedge
  3834. b70.Name = "Mesh"
  3835. b70.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3836. p71 = Instance.new("WedgePart", m6)
  3837. p71.BrickColor = BrickColor.new("Lime green")
  3838. p71.Name = "Wedge"
  3839. p71.CFrame = CFrame.new(-0.334977895, 1.47144794, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3840. p71.CanCollide = false
  3841. p71.Locked = true
  3842. p71.FormFactor = Enum.FormFactor.Custom
  3843. p71.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3844. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3845. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3846. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3847. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3848. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3849. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3850. b71 = Instance.new("SpecialMesh", p71)
  3851. b71.MeshType = Enum.MeshType.Wedge
  3852. b71.Name = "Mesh"
  3853. b71.Scale = Vector3.new(0.602178395, 0.602178395, 0.301089197)
  3854. p72 = Instance.new("WedgePart", m6)
  3855. p72.BrickColor = BrickColor.new("Black")
  3856. p72.Material = Enum.Material.SmoothPlastic
  3857. p72.Name = "Wedge"
  3858. p72.CFrame = CFrame.new(-0.579845786, 2.03112626, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3859. p72.CanCollide = false
  3860. p72.Locked = true
  3861. p72.FormFactor = Enum.FormFactor.Custom
  3862. p72.Size = Vector3.new(0.232357651, 0.419762105, 0.232357636)
  3863. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3864. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3865. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3866. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3867. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3868. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3869. b72 = Instance.new("SpecialMesh", p72)
  3870. b72.MeshType = Enum.MeshType.Wedge
  3871. b72.Name = "Mesh"
  3872. b72.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3873. p73 = Instance.new("WedgePart", m6)
  3874. p73.BrickColor = BrickColor.new("Black")
  3875. p73.Material = Enum.Material.SmoothPlastic
  3876. p73.Name = "Wedge"
  3877. p73.CFrame = CFrame.new(-1.41937125, 2.31096983, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  3878. p73.CanCollide = false
  3879. p73.Locked = true
  3880. p73.FormFactor = Enum.FormFactor.Custom
  3881. p73.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3882. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3883. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3884. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3885. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3886. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3887. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3888. b73 = Instance.new("SpecialMesh", p73)
  3889. b73.MeshType = Enum.MeshType.Wedge
  3890. b73.Name = "Mesh"
  3891. b73.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3892. p74 = Instance.new("WedgePart", m6)
  3893. p74.BrickColor = BrickColor.new("Black")
  3894. p74.Material = Enum.Material.SmoothPlastic
  3895. p74.Name = "Wedge"
  3896. p74.CFrame = CFrame.new(1.16916382, 2.59081125, 4.03967333, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3897. p74.CanCollide = false
  3898. p74.Locked = true
  3899. p74.FormFactor = Enum.FormFactor.Custom
  3900. p74.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3901. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3902. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3903. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3904. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3905. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3906. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3907. b74 = Instance.new("SpecialMesh", p74)
  3908. b74.MeshType = Enum.MeshType.Wedge
  3909. b74.Name = "Mesh"
  3910. b74.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3911. p75 = Instance.new("WedgePart", m6)
  3912. p75.BrickColor = BrickColor.new("Black")
  3913. p75.Material = Enum.Material.SmoothPlastic
  3914. p75.Name = "Wedge"
  3915. p75.CFrame = CFrame.new(-0.160081401, 1.68132377, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3916. p75.CanCollide = false
  3917. p75.Locked = true
  3918. p75.FormFactor = Enum.FormFactor.Custom
  3919. p75.Size = Vector3.new(0.232357651, 0.279841363, 0.232357636)
  3920. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3921. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3922. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3923. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3924. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3925. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3926. b75 = Instance.new("SpecialMesh", p75)
  3927. b75.MeshType = Enum.MeshType.Wedge
  3928. b75.Name = "Mesh"
  3929. b75.Scale = Vector3.new(0.602178097, 1, 0.602178097)
  3930. p76 = Instance.new("WedgePart", m6)
  3931. p76.BrickColor = BrickColor.new("Black")
  3932. p76.Material = Enum.Material.SmoothPlastic
  3933. p76.Name = "Wedge"
  3934. p76.CFrame = CFrame.new(0.819362521, 2.31096983, 4.03967237, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  3935. p76.CanCollide = false
  3936. p76.Locked = true
  3937. p76.FormFactor = Enum.FormFactor.Custom
  3938. p76.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3939. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3940. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3941. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3942. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3943. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3944. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3945. b76 = Instance.new("SpecialMesh", p76)
  3946. b76.MeshType = Enum.MeshType.Wedge
  3947. b76.Name = "Mesh"
  3948. b76.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3949. p77 = Instance.new("WedgePart", m6)
  3950. p77.BrickColor = BrickColor.new("Lime green")
  3951. p77.Material = Enum.Material.SmoothPlastic
  3952. p77.Name = "Wedge"
  3953. p77.CFrame = CFrame.new(-1.55929291, 4.40979004, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3954. p77.CanCollide = false
  3955. p77.Locked = true
  3956. p77.FormFactor = Enum.FormFactor.Custom
  3957. p77.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3958. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3959. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3960. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3961. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3962. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3963. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3964. b77 = Instance.new("SpecialMesh", p77)
  3965. b77.MeshType = Enum.MeshType.Wedge
  3966. b77.Name = "Mesh"
  3967. b77.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  3968. p78 = Instance.new("WedgePart", m6)
  3969. p78.BrickColor = BrickColor.new("Black")
  3970. p78.Material = Enum.Material.SmoothPlastic
  3971. p78.Name = "Wedge"
  3972. p78.CFrame = CFrame.new(-1.34941173, 4.54971123, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3973. p78.CanCollide = false
  3974. p78.Locked = true
  3975. p78.FormFactor = Enum.FormFactor.Custom
  3976. p78.Size = Vector3.new(0.232357651, 0.232357651, 0.279841363)
  3977. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3978. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3979. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3980. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3981. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3982. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3983. b78 = Instance.new("SpecialMesh", p78)
  3984. b78.MeshType = Enum.MeshType.Wedge
  3985. b78.Name = "Mesh"
  3986. b78.Scale = Vector3.new(0.602178097, 0.602178097, 1)
  3987. p79 = Instance.new("WedgePart", m6)
  3988. p79.BrickColor = BrickColor.new("Lime green")
  3989. p79.Material = Enum.Material.SmoothPlastic
  3990. p79.Name = "Wedge"
  3991. p79.CFrame = CFrame.new(-1.6992141, 3.85010386, 4.03967237, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  3992. p79.CanCollide = false
  3993. p79.Locked = true
  3994. p79.FormFactor = Enum.FormFactor.Custom
  3995. p79.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  3996. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3997. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3998. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3999. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4000. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4001. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4002. b79 = Instance.new("SpecialMesh", p79)
  4003. b79.MeshType = Enum.MeshType.Wedge
  4004. b79.Name = "Mesh"
  4005. b79.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4006. p80 = Instance.new("WedgePart", m6)
  4007. p80.BrickColor = BrickColor.new("Black")
  4008. p80.Material = Enum.Material.SmoothPlastic
  4009. p80.Name = "Wedge"
  4010. p80.CFrame = CFrame.new(-1.6992135, 3.1504972, 4.03967237, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4011. p80.CanCollide = false
  4012. p80.Locked = true
  4013. p80.FormFactor = Enum.FormFactor.Custom
  4014. p80.Size = Vector3.new(0.232357651, 0.232357651, 0.232357636)
  4015. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4016. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4017. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4018. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4019. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4020. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4021. b80 = Instance.new("SpecialMesh", p80)
  4022. b80.MeshType = Enum.MeshType.Wedge
  4023. b80.Name = "Mesh"
  4024. b80.Scale = Vector3.new(0.602178097, 0.602178097, 0.602178097)
  4025. w1 = Instance.new("Weld", p1)
  4026. w1.Name = "Joint"
  4027. w1.Part0 = p1
  4028. w1.C0 = CFrame.new(0, 0, 0.139921591, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4029. w1.Part1 = p47
  4030. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4031. w2 = Instance.new("Weld", p2)
  4032. w2.Name = "Joint"
  4033. w2.Part0 = p2
  4034. w2.C0 = CFrame.new(0, -2.7097974e-006, 0.139918938, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4035. w2.Part1 = p11
  4036. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4037. w3 = Instance.new("Weld", p3)
  4038. w3.Name = "Joint"
  4039. w3.Part0 = p3
  4040. w3.C0 = CFrame.new(0, 0.559684455, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4041. w3.Part1 = p50
  4042. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4043. w4 = Instance.new("Weld", p4)
  4044. w4.Name = "Joint"
  4045. w4.Part0 = p4
  4046. w4.C0 = CFrame.new(-0.139921427, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4047. w4.Part1 = p5
  4048. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4049. w5 = Instance.new("Weld", p5)
  4050. w5.Name = "Joint"
  4051. w5.Part0 = p5
  4052. w5.C0 = CFrame.new(-0.139920607, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4053. w5.Part1 = p27
  4054. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4055. w6 = Instance.new("Weld", p6)
  4056. w6.Name = "Joint"
  4057. w6.Part0 = p6
  4058. w6.C0 = CFrame.new(6.98293934e-006, 0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4059. w6.Part1 = p14
  4060. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4061. w7 = Instance.new("Weld", p7)
  4062. w7.Name = "Joint"
  4063. w7.Part0 = p7
  4064. w7.C0 = CFrame.new(-0.139921531, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4065. w7.Part1 = p10
  4066. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4067. w8 = Instance.new("Weld", p8)
  4068. w8.Name = "Joint"
  4069. w8.Part0 = p8
  4070. w8.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4071. w8.Part1 = p32
  4072. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4073. w9 = Instance.new("Weld", p9)
  4074. w9.Name = "Joint"
  4075. w9.Part0 = p9
  4076. w9.C0 = CFrame.new(0, 0.279842764, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4077. w9.Part1 = p16
  4078. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4079. w10 = Instance.new("Weld", p10)
  4080. w10.Name = "Joint"
  4081. w10.Part0 = p10
  4082. w10.C0 = CFrame.new(-0.139921531, 1.04222977e-006, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4083. w10.Part1 = p61
  4084. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4085. w11 = Instance.new("Weld", p11)
  4086. w11.Name = "Joint"
  4087. w11.Part0 = p11
  4088. w11.C0 = CFrame.new(0, 0.209881723, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4089. w11.Part1 = p13
  4090. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4091. w12 = Instance.new("Weld", p12)
  4092. w12.Name = "Joint"
  4093. w12.Part0 = p12
  4094. w12.C0 = CFrame.new(-0.139921427, -0.139921635, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4095. w12.Part1 = p29
  4096. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4097. w13 = Instance.new("Weld", p13)
  4098. w13.Name = "Joint"
  4099. w13.Part0 = p13
  4100. w13.C0 = CFrame.new(0.839523137, 0.349802732, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4101. w13.Part1 = p48
  4102. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4103. w14 = Instance.new("Weld", p14)
  4104. w14.Name = "Joint"
  4105. w14.Part0 = p14
  4106. w14.C0 = CFrame.new(-6.98293934e-006, 1.25067584e-006, -0.139921844, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4107. w14.Part1 = p60
  4108. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4109. w15 = Instance.new("Weld", p15)
  4110. w15.Name = "Joint"
  4111. w15.Part0 = p15
  4112. w15.C0 = CFrame.new(-0.139920712, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4113. w15.Part1 = p17
  4114. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4115. w16 = Instance.new("Weld", p16)
  4116. w16.Name = "Joint"
  4117. w16.Part0 = p16
  4118. w16.C0 = CFrame.new(1.45912168e-006, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4119. w16.Part1 = p48
  4120. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4121. w17 = Instance.new("Weld", p17)
  4122. w17.Name = "Joint"
  4123. w17.Part0 = p17
  4124. w17.C0 = CFrame.new(-0.97944206, 0.0699603036, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4125. w17.Part1 = p50
  4126. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4127. w18 = Instance.new("Weld", p18)
  4128. w18.Name = "Joint"
  4129. w18.Part0 = p18
  4130. w18.C0 = CFrame.new(-0.979444683, 0.0699603036, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4131. w18.Part1 = p50
  4132. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4133. w19 = Instance.new("Weld", p19)
  4134. w19.Name = "Joint"
  4135. w19.Part0 = p19
  4136. w19.C0 = CFrame.new(0, -0.2098784, 0.0349924229, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4137. w19.Part1 = p54
  4138. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4139. w20 = Instance.new("Weld", p20)
  4140. w20.Name = "Joint"
  4141. w20.Part0 = p20
  4142. w20.C0 = CFrame.new(-0.139921427, -0.13992101, 1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4143. w20.Part1 = p21
  4144. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4145. w21 = Instance.new("Weld", p21)
  4146. w21.Name = "Joint"
  4147. w21.Part0 = p21
  4148. w21.C0 = CFrame.new(-1.25928402, 0.0699627995, -1.35489881e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4149. w21.Part1 = p37
  4150. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4151. w22 = Instance.new("Weld", p22)
  4152. w22.Name = "Joint"
  4153. w22.Part0 = p22
  4154. w22.C0 = CFrame.new(0, -0.209878504, 0.0349705629, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4155. w22.Part1 = p8
  4156. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4157. w23 = Instance.new("Weld", p23)
  4158. w23.Name = "Joint"
  4159. w23.Part0 = p23
  4160. w23.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4161. w23.Part1 = p35
  4162. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4163. w24 = Instance.new("Weld", p24)
  4164. w24.Name = "Joint"
  4165. w24.Part0 = p24
  4166. w24.C0 = CFrame.new(8.33783815e-007, -0.209883824, 1.25928962, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4167. w24.Part1 = p48
  4168. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4169. w25 = Instance.new("Weld", p25)
  4170. w25.Name = "Joint"
  4171. w25.Part0 = p25
  4172. w25.C0 = CFrame.new(0, -0.209878504, 0.0349897929, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4173. w25.Part1 = p8
  4174. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4175. w26 = Instance.new("Weld", p26)
  4176. w26.Name = "Joint"
  4177. w26.Part0 = p26
  4178. w26.C0 = CFrame.new(0, -3.33513526e-006, 0.769568086, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  4179. w26.Part1 = p6
  4180. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4181. w27 = Instance.new("Weld", p27)
  4182. w27.Name = "Joint"
  4183. w27.Part0 = p27
  4184. w27.C0 = CFrame.new(-1.25928354, -0.0699575916, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4185. w27.Part1 = p48
  4186. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4187. w28 = Instance.new("Weld", p28)
  4188. w28.Name = "Joint"
  4189. w28.Part0 = p28
  4190. w28.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4191. w28.Part1 = p35
  4192. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4193. w29 = Instance.new("Weld", p29)
  4194. w29.Name = "Joint"
  4195. w29.Part0 = p29
  4196. w29.C0 = CFrame.new(-1.25928354, 0.0699634254, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4197. w29.Part1 = p37
  4198. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4199. w30 = Instance.new("Weld", p30)
  4200. w30.Name = "Joint"
  4201. w30.Part0 = p30
  4202. w30.C0 = CFrame.new(0, -0.139920816, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4203. w30.Part1 = p20
  4204. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4205. w31 = Instance.new("Weld", p31)
  4206. w31.Name = "Joint"
  4207. w31.Part0 = p31
  4208. w31.C0 = CFrame.new(0, -3.02246644e-006, 0.419769108, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4209. w31.Part1 = p16
  4210. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4211. w32 = Instance.new("Weld", p32)
  4212. w32.Name = "Joint"
  4213. w32.Part0 = p32
  4214. w32.C0 = CFrame.new(-0.839526176, 0.349802852, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4215. w32.Part1 = p48
  4216. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4217. w33 = Instance.new("Weld", p33)
  4218. w33.Name = "Joint"
  4219. w33.Part0 = p33
  4220. w33.C0 = CFrame.new(1.3548987e-006, -0.279842436, 0.0699624866, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4221. w33.Part1 = p21
  4222. w33.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4223. w34 = Instance.new("Weld", p34)
  4224. w34.Name = "Joint"
  4225. w34.Part0 = p34
  4226. w34.C0 = CFrame.new(0, -0.279842019, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4227. w34.Part1 = p27
  4228. w34.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4229. w35 = Instance.new("Weld", p35)
  4230. w35.Name = "Joint"
  4231. w35.Part0 = p35
  4232. w35.C0 = CFrame.new(-0.139920607, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4233. w35.Part1 = p58
  4234. w35.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4235. w36 = Instance.new("Weld", p36)
  4236. w36.Name = "Joint"
  4237. w36.Part0 = p36
  4238. w36.C0 = CFrame.new(0, -0.279843062, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4239. w36.Part1 = p29
  4240. w36.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4241. w37 = Instance.new("Weld", p37)
  4242. w37.Name = "Joint"
  4243. w37.Part0 = p37
  4244. w37.C0 = CFrame.new(0, 0.559682429, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4245. w37.Part1 = p3
  4246. w37.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4247. w38 = Instance.new("Weld", p38)
  4248. w38.Name = "Joint"
  4249. w38.Part0 = p38
  4250. w38.C0 = CFrame.new(0, 0, 0.13992101, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4251. w38.Part1 = p4
  4252. w38.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4253. w39 = Instance.new("Weld", p39)
  4254. w39.Name = "Joint"
  4255. w39.Part0 = p39
  4256. w39.C0 = CFrame.new(0, 0, 0.139921427, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4257. w39.Part1 = p12
  4258. w39.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4259. w40 = Instance.new("Weld", p40)
  4260. w40.Name = "Joint"
  4261. w40.Part0 = p40
  4262. w40.C0 = CFrame.new(0, -0.279843479, 0.0699611381, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4263. w40.Part1 = p52
  4264. w40.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4265. w41 = Instance.new("Weld", p41)
  4266. w41.Name = "Joint"
  4267. w41.Part0 = p41
  4268. w41.C0 = CFrame.new(0, -0.139921427, 0.0699607134, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4269. w41.Part1 = p5
  4270. w41.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4271. w42 = Instance.new("Weld", p42)
  4272. w42.Name = "Joint"
  4273. w42.Part0 = p42
  4274. w42.C0 = CFrame.new(0, -2.7097974e-006, 0.139925033, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4275. w42.Part1 = p8
  4276. w42.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4277. w43 = Instance.new("Weld", p43)
  4278. w43.Name = "Joint"
  4279. w43.Part0 = p43
  4280. w43.C0 = CFrame.new(0, -0.139921218, 0.0699607134, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4281. w43.Part1 = p5
  4282. w43.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4283. w44 = Instance.new("Weld", p44)
  4284. w44.Name = "Joint"
  4285. w44.Part0 = p44
  4286. w44.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4287. w44.Part1 = p15
  4288. w44.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4289. w45 = Instance.new("Weld", p45)
  4290. w45.Name = "Joint"
  4291. w45.Part0 = p45
  4292. w45.C0 = CFrame.new(0, -2.7097974e-006, 0.139921531, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4293. w45.Part1 = p11
  4294. w45.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4295. w46 = Instance.new("Weld", p46)
  4296. w46.Name = "Joint"
  4297. w46.Part0 = p46
  4298. w46.C0 = CFrame.new(0, -3.33513526e-006, 0.769562066, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4299. w46.Part1 = p6
  4300. w46.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4301. w47 = Instance.new("Weld", p47)
  4302. w47.Name = "Joint"
  4303. w47.Part0 = p47
  4304. w47.C0 = CFrame.new(-0.139920652, -0.139923528, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4305. w47.Part1 = p18
  4306. w47.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4307. w48 = Instance.new("Weld", p48)
  4308. w48.Name = "Joint"
  4309. w48.Part0 = p48
  4310. w48.C0 = CFrame.new(0, 0.559684873, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4311. w48.Part1 = p37
  4312. w48.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4313. w49 = Instance.new("Weld", p49)
  4314. w49.Name = "Joint"
  4315. w49.Part0 = p49
  4316. w49.C0 = CFrame.new(0, -0.139921844, 0, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4317. w49.Part1 = p47
  4318. w49.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4319. w50 = Instance.new("Weld", p50)
  4320. w50.Name = "Joint"
  4321. w50.Part0 = p50
  4322. w50.C0 = CFrame.new(0, 0.349801898, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4323. w50.Part1 = p6
  4324. w50.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4325. w51 = Instance.new("Weld", p51)
  4326. w51.Name = "Joint"
  4327. w51.Part0 = p51
  4328. w51.C0 = CFrame.new(-0.139921427, -0.139922053, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4329. w51.Part1 = p52
  4330. w51.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4331. w52 = Instance.new("Weld", p52)
  4332. w52.Name = "Joint"
  4333. w52.Part0 = p52
  4334. w52.C0 = CFrame.new(-1.11936295, 0.0699607134, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4335. w52.Part1 = p3
  4336. w52.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4337. w53 = Instance.new("Weld", p53)
  4338. w53.Name = "Joint"
  4339. w53.Part0 = p53
  4340. w53.C0 = CFrame.new(0, 3.9604729e-006, 0.279851943, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4341. w53.Part1 = p9
  4342. w53.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4343. w54 = Instance.new("Weld", p54)
  4344. w54.Name = "Joint"
  4345. w54.Part0 = p54
  4346. w54.C0 = CFrame.new(0, 0.349802941, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4347. w54.Part1 = p9
  4348. w54.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4349. w55 = Instance.new("Weld", p55)
  4350. w55.Name = "Joint"
  4351. w55.Part0 = p55
  4352. w55.C0 = CFrame.new(0, -2.7097974e-006, 0.139916331, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4353. w55.Part1 = p8
  4354. w55.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4355. w56 = Instance.new("Weld", p56)
  4356. w56.Name = "Joint"
  4357. w56.Part0 = p56
  4358. w56.C0 = CFrame.new(0, 0, 0.139921322, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4359. w56.Part1 = p20
  4360. w56.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4361. w57 = Instance.new("Weld", p57)
  4362. w57.Name = "Joint"
  4363. w57.Part0 = p57
  4364. w57.C0 = CFrame.new(0, -0.139921427, -0.0699620694, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4365. w57.Part1 = p47
  4366. w57.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4367. w58 = Instance.new("Weld", p58)
  4368. w58.Name = "Joint"
  4369. w58.Part0 = p58
  4370. w58.C0 = CFrame.new(-1.11936343, 0.0699607134, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4371. w58.Part1 = p3
  4372. w58.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4373. w59 = Instance.new("Weld", p59)
  4374. w59.Name = "Joint"
  4375. w59.Part0 = p59
  4376. w59.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4377. w59.Part1 = p32
  4378. w59.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4379. w60 = Instance.new("Weld", p61)
  4380. w60.Name = "Joint"
  4381. w60.Part0 = p61
  4382. w60.C0 = CFrame.new(-1.25928962, -0.0699586272, -8.33783815e-007, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4383. w60.Part1 = p48
  4384. w60.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4385. w61 = Instance.new("Weld", p62)
  4386. w61.Name = "Joint"
  4387. w61.Part0 = p62
  4388. w61.C0 = CFrame.new(0, -0.139921635, 0.0699612424, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4389. w61.Part1 = p10
  4390. w61.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4391. w62 = Instance.new("Weld", p63)
  4392. w62.Name = "Joint"
  4393. w62.Part0 = p63
  4394. w62.C0 = CFrame.new(0, 0, 0.139920712, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4395. w62.Part1 = p7
  4396. w62.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4397. w63 = Instance.new("Weld", p64)
  4398. w63.Name = "Joint"
  4399. w63.Part0 = p64
  4400. w63.C0 = CFrame.new(0, -2.60557431e-006, 0.139913708, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4401. w63.Part1 = p54
  4402. w63.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4403. w64 = Instance.new("Weld", p65)
  4404. w64.Name = "Joint"
  4405. w64.Part0 = p65
  4406. w64.C0 = CFrame.new(0, -2.50135167e-006, 0.279843956, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4407. w64.Part1 = p13
  4408. w64.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4409. w65 = Instance.new("Weld", p66)
  4410. w65.Name = "Joint"
  4411. w65.Part0 = p66
  4412. w65.C0 = CFrame.new(0, 1.04222977e-006, 0.139921427, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4413. w65.Part1 = p52
  4414. w65.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4415. w66 = Instance.new("Weld", p67)
  4416. w66.Name = "Joint"
  4417. w66.Part0 = p67
  4418. w66.C0 = CFrame.new(0, -3.02246644e-006, 0.419757843, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4419. w66.Part1 = p16
  4420. w66.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4421. w67 = Instance.new("Weld", p68)
  4422. w67.Name = "Joint"
  4423. w67.Part0 = p68
  4424. w67.C0 = CFrame.new(0, -0.209878504, 0.0349741057, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4425. w67.Part1 = p11
  4426. w67.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4427. w68 = Instance.new("Weld", p69)
  4428. w68.Name = "Joint"
  4429. w68.Part0 = p69
  4430. w68.C0 = CFrame.new(0, -0.209878504, 0.0349861942, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4431. w68.Part1 = p11
  4432. w68.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4433. w69 = Instance.new("Weld", p70)
  4434. w69.Name = "Joint"
  4435. w69.Part0 = p70
  4436. w69.C0 = CFrame.new(0, -0.279843479, 0.0699616596, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4437. w69.Part1 = p58
  4438. w69.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4439. w70 = Instance.new("Weld", p71)
  4440. w70.Name = "Joint"
  4441. w70.Part0 = p71
  4442. w70.C0 = CFrame.new(0, -0.2098784, 0.0349679329, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4443. w70.Part1 = p54
  4444. w70.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4445. w71 = Instance.new("Weld", p72)
  4446. w71.Name = "Joint"
  4447. w71.Part0 = p72
  4448. w71.C0 = CFrame.new(0, -3.02246644e-006, 0.27983579, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4449. w71.Part1 = p9
  4450. w71.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4451. w72 = Instance.new("Weld", p73)
  4452. w72.Name = "Joint"
  4453. w72.Part0 = p73
  4454. w72.C0 = CFrame.new(0, -2.50135167e-006, 0.279839605, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  4455. w72.Part1 = p13
  4456. w72.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4457. w73 = Instance.new("Weld", p74)
  4458. w73.Name = "Joint"
  4459. w73.Part0 = p74
  4460. w73.C0 = CFrame.new(0, -0.139921427, 0.0699612424, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4461. w73.Part1 = p10
  4462. w73.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4463. w74 = Instance.new("Weld", p75)
  4464. w74.Name = "Joint"
  4465. w74.Part0 = p75
  4466. w74.C0 = CFrame.new(0, -2.60557431e-006, 0.139928564, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4467. w74.Part1 = p54
  4468. w74.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4469. w75 = Instance.new("Weld", p76)
  4470. w75.Name = "Joint"
  4471. w75.Part0 = p76
  4472. w75.C0 = CFrame.new(0, -2.50135167e-006, 0.27984485, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  4473. w75.Part1 = p32
  4474. w75.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4475. w76 = Instance.new("Weld", p77)
  4476. w76.Name = "Joint"
  4477. w76.Part0 = p77
  4478. w76.C0 = CFrame.new(0, 0, 0.139921635, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4479. w76.Part1 = p15
  4480. w76.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4481. w77 = Instance.new("Weld", p78)
  4482. w77.Name = "Joint"
  4483. w77.Part0 = p78
  4484. w77.C0 = CFrame.new(0, -0.139921427, -0.0699594691, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4485. w77.Part1 = p15
  4486. w77.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4487. w78 = Instance.new("Weld", p79)
  4488. w78.Name = "Joint"
  4489. w78.Part0 = p79
  4490. w78.C0 = CFrame.new(0, 0, 0.139921218, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  4491. w78.Part1 = p51
  4492. w78.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4493. w79 = Instance.new("Weld", p80)
  4494. w79.Name = "Joint"
  4495. w79.Part0 = p80
  4496. w79.C0 = CFrame.new(0, -0.13992101, 0, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  4497. w79.Part1 = p12
  4498. w79.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4499. m6.Parent = torso
  4500. m6:MakeJoints()
  4501. ----------------------------------------------------
  4502. local cor6 = Instance.new("Part", torso.Cloak)
  4503. cor6.Name = "Thingy"
  4504. cor6.Locked = true
  4505. cor6.BottomSurface = 0
  4506. cor6.CanCollide = false
  4507. cor6.Size = Vector3.new(1,1,1)
  4508. cor6.Transparency = 1
  4509. cor6.TopSurface = 0
  4510. corw6 = Instance.new("Weld", cor6)
  4511. corw6.Part0 = torso
  4512. corw6.Part1 = cor6
  4513. corw6.C0 = CFrame.new(0, 1, 0.5) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4514. corw6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4515. weld6 = Instance.new("Weld", torso.Cloak.NeckPart)
  4516. weld6.Part0 = cor6
  4517. weld6.Part1 = torso.Cloak.NeckPart
  4518. weld6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4519. --Amulet
  4520. m7 = Instance.new("Model")
  4521. m7.Name = "Amulet"
  4522. p1 = Instance.new("Part", m7)
  4523. p1.BrickColor = BrickColor.new("Lime green")
  4524. p1.Material = Enum.Material.Neon
  4525. p1.Name = "Center"
  4526. p1.CFrame = CFrame.new(-1.0658141e-014, 14.4125643, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4527. p1.CanCollide = false
  4528. p1.Locked = true
  4529. p1.FormFactor = Enum.FormFactor.Custom
  4530. p1.Shape = Enum.PartType.Cylinder
  4531. p1.Size = Vector3.new(0.5, 0.5, 0.5)
  4532. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4533. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4534. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4535. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4536. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4537. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4538. p2 = Instance.new("Part", m7)
  4539. p2.BrickColor = BrickColor.new("Really black")
  4540. p2.Material = Enum.Material.Metal
  4541. p2.Name = "Bottom"
  4542. p2.CFrame = CFrame.new(1.19209318e-007, 14.1625719, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4543. p2.CanCollide = false
  4544. p2.Locked = true
  4545. p2.FormFactor = Enum.FormFactor.Custom
  4546. p2.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  4547. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4548. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4549. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4550. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4551. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4552. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4553. b1 = Instance.new("SpecialMesh", p2)
  4554. b1.MeshType = Enum.MeshType.Cylinder
  4555. b1.Name = "Mesh"
  4556. p3 = Instance.new("Part", m7)
  4557. p3.BrickColor = BrickColor.new("Really black")
  4558. p3.Material = Enum.Material.Metal
  4559. p3.CFrame = CFrame.new(1.23580463e-007, 14.4625673, -0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4560. p3.CanCollide = false
  4561. p3.Locked = true
  4562. p3.FormFactor = Enum.FormFactor.Custom
  4563. p3.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4564. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4565. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4566. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4567. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4568. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4569. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4570. b2 = Instance.new("SpecialMesh", p3)
  4571. b2.MeshType = Enum.MeshType.Brick
  4572. b2.Name = "Mesh"
  4573. b2.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4574. p4 = Instance.new("Part", m7)
  4575. p4.BrickColor = BrickColor.new("Really black")
  4576. p4.Material = Enum.Material.Metal
  4577. p4.CFrame = CFrame.new(1.19209318e-007, 14.4625673, 0.280000001, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4578. p4.CanCollide = false
  4579. p4.Locked = true
  4580. p4.FormFactor = Enum.FormFactor.Custom
  4581. p4.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4582. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4583. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4584. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4585. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4586. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4587. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4588. b3 = Instance.new("SpecialMesh", p4)
  4589. b3.MeshType = Enum.MeshType.Brick
  4590. b3.Name = "Mesh"
  4591. b3.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4592. p5 = Instance.new("Part", m7)
  4593. p5.BrickColor = BrickColor.new("Really black")
  4594. p5.Material = Enum.Material.Metal
  4595. 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)
  4596. p5.CanCollide = false
  4597. p5.Locked = true
  4598. p5.FormFactor = Enum.FormFactor.Custom
  4599. p5.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4600. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4601. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4602. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4603. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4604. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4605. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4606. b4 = Instance.new("SpecialMesh", p5)
  4607. b4.MeshType = Enum.MeshType.Brick
  4608. b4.Name = "Mesh"
  4609. b4.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4610. p6 = Instance.new("Part", m7)
  4611. p6.BrickColor = BrickColor.new("Really black")
  4612. p6.Material = Enum.Material.Metal
  4613. 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)
  4614. p6.CanCollide = false
  4615. p6.Locked = true
  4616. p6.FormFactor = Enum.FormFactor.Custom
  4617. p6.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4618. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4619. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4620. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4621. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4622. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4623. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4624. b5 = Instance.new("SpecialMesh", p6)
  4625. b5.MeshType = Enum.MeshType.Brick
  4626. b5.Name = "Mesh"
  4627. b5.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4628. p7 = Instance.new("Part", m7)
  4629. p7.BrickColor = BrickColor.new("Really black")
  4630. p7.Material = Enum.Material.Metal
  4631. 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)
  4632. p7.CanCollide = false
  4633. p7.Locked = true
  4634. p7.FormFactor = Enum.FormFactor.Custom
  4635. p7.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4636. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4637. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4638. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4639. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4640. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4641. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4642. b6 = Instance.new("SpecialMesh", p7)
  4643. b6.MeshType = Enum.MeshType.Brick
  4644. b6.Name = "Mesh"
  4645. b6.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4646. p8 = Instance.new("Part", m7)
  4647. p8.BrickColor = BrickColor.new("Really black")
  4648. p8.Material = Enum.Material.Metal
  4649. 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)
  4650. p8.CanCollide = false
  4651. p8.Locked = true
  4652. p8.FormFactor = Enum.FormFactor.Custom
  4653. p8.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4654. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4655. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4656. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4657. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4658. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4659. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4660. b7 = Instance.new("SpecialMesh", p8)
  4661. b7.MeshType = Enum.MeshType.Brick
  4662. b7.Name = "Mesh"
  4663. b7.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4664. p9 = Instance.new("Part", m7)
  4665. p9.BrickColor = BrickColor.new("Really black")
  4666. p9.Material = Enum.Material.Metal
  4667. p9.CFrame = CFrame.new(0.280000091, 14.4625673, -1.64313008e-014, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  4668. p9.CanCollide = false
  4669. p9.Locked = true
  4670. p9.FormFactor = Enum.FormFactor.Custom
  4671. p9.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4672. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4673. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4674. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4675. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4676. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4677. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4678. b8 = Instance.new("SpecialMesh", p9)
  4679. b8.MeshType = Enum.MeshType.Brick
  4680. b8.Name = "Mesh"
  4681. b8.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4682. p10 = Instance.new("Part", m7)
  4683. p10.BrickColor = BrickColor.new("Really black")
  4684. p10.Material = Enum.Material.Metal
  4685. p10.CFrame = CFrame.new(-0.279999852, 14.4625673, -1.49011772e-008, 0, 0, -1, 1, -4.37113847e-008, 0, -4.37113847e-008, -1, 0)
  4686. p10.CanCollide = false
  4687. p10.Locked = true
  4688. p10.FormFactor = Enum.FormFactor.Custom
  4689. p10.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4690. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4691. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4692. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4693. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4694. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4695. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4696. b9 = Instance.new("SpecialMesh", p10)
  4697. b9.MeshType = Enum.MeshType.Brick
  4698. b9.Name = "Mesh"
  4699. b9.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4700. p11 = Instance.new("Part", m7)
  4701. p11.BrickColor = BrickColor.new("Really black")
  4702. p11.Material = Enum.Material.Metal
  4703. 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)
  4704. p11.CanCollide = false
  4705. p11.Locked = true
  4706. p11.FormFactor = Enum.FormFactor.Custom
  4707. p11.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4708. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4709. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4710. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4711. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4712. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4713. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4714. b10 = Instance.new("SpecialMesh", p11)
  4715. b10.MeshType = Enum.MeshType.Brick
  4716. b10.Name = "Mesh"
  4717. b10.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4718. p12 = Instance.new("Part", m7)
  4719. p12.BrickColor = BrickColor.new("Really black")
  4720. p12.Material = Enum.Material.Metal
  4721. 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)
  4722. p12.CanCollide = false
  4723. p12.Locked = true
  4724. p12.FormFactor = Enum.FormFactor.Custom
  4725. p12.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4726. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4727. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4728. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4729. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4730. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4731. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4732. b11 = Instance.new("SpecialMesh", p12)
  4733. b11.MeshType = Enum.MeshType.Brick
  4734. b11.Name = "Mesh"
  4735. b11.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4736. p13 = Instance.new("Part", m7)
  4737. p13.BrickColor = BrickColor.new("Really black")
  4738. p13.Material = Enum.Material.Metal
  4739. 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)
  4740. p13.CanCollide = false
  4741. p13.Locked = true
  4742. p13.FormFactor = Enum.FormFactor.Custom
  4743. p13.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4744. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4745. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4746. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4747. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4748. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4749. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4750. b12 = Instance.new("SpecialMesh", p13)
  4751. b12.MeshType = Enum.MeshType.Brick
  4752. b12.Name = "Mesh"
  4753. b12.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4754. p14 = Instance.new("Part", m7)
  4755. p14.BrickColor = BrickColor.new("Really black")
  4756. p14.Material = Enum.Material.Metal
  4757. 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)
  4758. p14.CanCollide = false
  4759. p14.Locked = true
  4760. p14.FormFactor = Enum.FormFactor.Custom
  4761. p14.Size = Vector3.new(0.400000006, 0.200000003, 0.200000003)
  4762. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4763. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4764. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4765. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4766. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4767. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4768. b13 = Instance.new("SpecialMesh", p14)
  4769. b13.MeshType = Enum.MeshType.Brick
  4770. b13.Name = "Mesh"
  4771. b13.Scale = Vector3.new(1, 0.300000012, 0.200000003)
  4772. p15 = Instance.new("Part", m7)
  4773. p15.BrickColor = BrickColor.new("Really black")
  4774. p15.Material = Enum.Material.Metal
  4775. p15.Name = "Top"
  4776. p15.CFrame = CFrame.new(0, 14.7125645, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008, 0, 0, 0, 1)
  4777. p15.CanCollide = false
  4778. p15.Locked = true
  4779. p15.FormFactor = Enum.FormFactor.Custom
  4780. p15.Size = Vector3.new(0.200000003, 0.649999976, 0.649999976)
  4781. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4782. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4783. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4784. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4785. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4786. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4787. b14 = Instance.new("SpecialMesh", p15)
  4788. b14.MeshType = Enum.MeshType.Cylinder
  4789. b14.Name = "Mesh"
  4790. w1 = Instance.new("Weld", p1)
  4791. w1.Name = "Joint"
  4792. w1.Part0 = p1
  4793. w1.C0 = CFrame.new(0.300000191, -1.31134357e-008, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4794. w1.Part1 = p15
  4795. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4796. w2 = Instance.new("Weld", p2)
  4797. w2.Name = "Joint"
  4798. w2.Part0 = p2
  4799. w2.C0 = CFrame.new(0.249992371, 1.08281824e-007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4800. w2.Part1 = p1
  4801. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4802. w3 = Instance.new("Weld", p3)
  4803. w3.Name = "Joint"
  4804. w3.Part0 = p3
  4805. w3.C0 = CFrame.new(-0.0500030518, 1.25766178e-007, 0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4806. w3.Part1 = p1
  4807. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4808. w4 = Instance.new("Weld", p4)
  4809. w4.Name = "Joint"
  4810. w4.Part0 = p4
  4811. w4.C0 = CFrame.new(-0.0500030518, 1.21395033e-007, -0.280000001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4812. w4.Part1 = p1
  4813. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4814. w5 = Instance.new("Weld", p5)
  4815. w5.Name = "Joint"
  4816. w5.Part0 = p5
  4817. 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)
  4818. w5.Part1 = p1
  4819. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4820. w6 = Instance.new("Weld", p6)
  4821. w6.Name = "Joint"
  4822. w6.Part0 = p6
  4823. 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)
  4824. w6.Part1 = p1
  4825. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4826. w7 = Instance.new("Weld", p7)
  4827. w7.Name = "Joint"
  4828. w7.Part0 = p7
  4829. 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)
  4830. w7.Part1 = p1
  4831. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4832. w8 = Instance.new("Weld", p8)
  4833. w8.Name = "Joint"
  4834. w8.Part0 = p8
  4835. 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)
  4836. w8.Part1 = p1
  4837. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4838. w9 = Instance.new("Weld", p9)
  4839. w9.Name = "Joint"
  4840. w9.Part0 = p9
  4841. 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)
  4842. w9.Part1 = p1
  4843. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4844. w10 = Instance.new("Weld", p10)
  4845. w10.Name = "Joint"
  4846. w10.Part0 = p10
  4847. 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)
  4848. w10.Part1 = p1
  4849. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4850. w11 = Instance.new("Weld", p11)
  4851. w11.Name = "Joint"
  4852. w11.Part0 = p11
  4853. 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)
  4854. w11.Part1 = p1
  4855. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4856. w12 = Instance.new("Weld", p12)
  4857. w12.Name = "Joint"
  4858. w12.Part0 = p12
  4859. 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)
  4860. w12.Part1 = p1
  4861. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4862. w13 = Instance.new("Weld", p13)
  4863. w13.Name = "Joint"
  4864. w13.Part0 = p13
  4865. 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)
  4866. w13.Part1 = p1
  4867. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4868. w14 = Instance.new("Weld", p14)
  4869. w14.Name = "Joint"
  4870. w14.Part0 = p14
  4871. 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)
  4872. w14.Part1 = p1
  4873. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4874. m7.Parent = torso
  4875. m7:MakeJoints()
  4876. ----------------------------------------------------
  4877. local cor7 = Instance.new("Part", torso.Amulet)
  4878. cor7.Name = "Thingy"
  4879. cor7.Locked = true
  4880. cor7.BottomSurface = 0
  4881. cor7.CanCollide = false
  4882. cor7.Size = Vector3.new(1, 1, 1)
  4883. cor7.Transparency = 1
  4884. cor7.TopSurface = 0
  4885. corw7 = Instance.new("Weld", cor7)
  4886. corw7.Part0 = torso.Torso.Connection
  4887. corw7.Part1 = cor7
  4888. corw7.C0 = CFrame.new(0, 0.26, 0.1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  4889. corw7.C1 = CFrame.new(0, -0.2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(140))
  4890. weld7 = Instance.new("Weld", torso.Amulet)
  4891. weld7.Part0 = cor7
  4892. weld7.Part1 = torso.Amulet.Top
  4893. weld7.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4894. --Zyrodoxa
  4895. m8 = Instance.new("Model")
  4896. m8.Name = "Zyrodoxa"
  4897. p1 = Instance.new("Part", m8)
  4898. p1.BrickColor = BrickColor.new("Really black")
  4899. p1.Material = Enum.Material.Metal
  4900. p1.Reflectance = 0.40000000596046
  4901. p1.Name = "Block"
  4902. 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)
  4903. p1.CanCollide = false
  4904. p1.Locked = true
  4905. p1.FormFactor = Enum.FormFactor.Custom
  4906. p1.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4907. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4908. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4909. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4910. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4911. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4912. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4913. b1 = Instance.new("BlockMesh", p1)
  4914. b1.Name = "Mesh"
  4915. b1.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  4916. p2 = Instance.new("Part", m8)
  4917. p2.BrickColor = BrickColor.new("Black")
  4918. p2.Material = Enum.Material.Metal
  4919. p2.Reflectance = 0.40000000596046
  4920. p2.Name = "Block"
  4921. 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)
  4922. p2.CanCollide = false
  4923. p2.Locked = true
  4924. p2.FormFactor = Enum.FormFactor.Custom
  4925. p2.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4926. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4927. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4928. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4929. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4930. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4931. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4932. b2 = Instance.new("BlockMesh", p2)
  4933. b2.Name = "Mesh"
  4934. b2.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  4935. p3 = Instance.new("Part", m8)
  4936. p3.BrickColor = BrickColor.new("Black")
  4937. p3.Material = Enum.Material.Metal
  4938. p3.Reflectance = 0.40000000596046
  4939. p3.Name = "Block"
  4940. 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)
  4941. p3.CanCollide = false
  4942. p3.Locked = true
  4943. p3.FormFactor = Enum.FormFactor.Custom
  4944. p3.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  4945. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4946. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4947. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4948. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4949. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4950. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4951. b3 = Instance.new("BlockMesh", p3)
  4952. b3.Name = "Mesh"
  4953. b3.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  4954. p4 = Instance.new("Part", m8)
  4955. p4.BrickColor = BrickColor.new("Lime green")
  4956. p4.Material = Enum.Material.Metal
  4957. p4.Name = "Block"
  4958. 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)
  4959. p4.CanCollide = false
  4960. p4.Locked = true
  4961. p4.FormFactor = Enum.FormFactor.Custom
  4962. p4.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  4963. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4964. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4965. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4966. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4967. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4968. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4969. b4 = Instance.new("BlockMesh", p4)
  4970. b4.Name = "Mesh"
  4971. b4.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  4972. p5 = Instance.new("Part", m8)
  4973. p5.BrickColor = BrickColor.new("Lime green")
  4974. p5.Material = Enum.Material.Neon
  4975. p5.Reflectance = 0.40000000596046
  4976. p5.Name = "Block"
  4977. 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)
  4978. p5.CanCollide = false
  4979. p5.Locked = true
  4980. p5.FormFactor = Enum.FormFactor.Custom
  4981. p5.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  4982. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4983. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4984. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4985. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4986. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4987. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4988. b5 = Instance.new("BlockMesh", p5)
  4989. b5.Name = "Mesh"
  4990. b5.Scale = Vector3.new(0.334640861, 0.200784534, 0.669281721)
  4991. p6 = Instance.new("Part", m8)
  4992. p6.BrickColor = BrickColor.new("Parsley green")
  4993. p6.Material = Enum.Material.Metal
  4994. p6.Name = "Block"
  4995. 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)
  4996. p6.CanCollide = false
  4997. p6.Locked = true
  4998. p6.FormFactor = Enum.FormFactor.Custom
  4999. p6.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5000. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5001. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5002. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5003. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5004. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5005. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5006. b6 = Instance.new("BlockMesh", p6)
  5007. b6.Name = "Mesh"
  5008. b6.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5009. p7 = Instance.new("Part", m8)
  5010. p7.BrickColor = BrickColor.new("Lime green")
  5011. p7.Material = Enum.Material.Neon
  5012. p7.Reflectance = 0.40000000596046
  5013. p7.Name = "Block"
  5014. 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)
  5015. p7.CanCollide = false
  5016. p7.Locked = true
  5017. p7.FormFactor = Enum.FormFactor.Custom
  5018. p7.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5019. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5020. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5021. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5022. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5023. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5024. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5025. b7 = Instance.new("BlockMesh", p7)
  5026. b7.Name = "Mesh"
  5027. b7.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5028. p8 = Instance.new("Part", m8)
  5029. p8.BrickColor = BrickColor.new("Lime green")
  5030. p8.Material = Enum.Material.Neon
  5031. p8.Reflectance = 0.40000000596046
  5032. p8.Name = "Block"
  5033. 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)
  5034. p8.CanCollide = false
  5035. p8.Locked = true
  5036. p8.FormFactor = Enum.FormFactor.Custom
  5037. p8.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5038. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5039. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5040. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5041. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5042. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5043. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5044. b8 = Instance.new("BlockMesh", p8)
  5045. b8.Name = "Mesh"
  5046. b8.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5047. p9 = Instance.new("Part", m8)
  5048. p9.BrickColor = BrickColor.new("Really black")
  5049. p9.Material = Enum.Material.Metal
  5050. p9.Reflectance = 0.40000000596046
  5051. p9.Name = "Block"
  5052. 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)
  5053. p9.CanCollide = false
  5054. p9.Locked = true
  5055. p9.FormFactor = Enum.FormFactor.Custom
  5056. p9.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5057. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5058. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5059. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5060. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5061. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5062. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5063. b9 = Instance.new("BlockMesh", p9)
  5064. b9.Name = "Mesh"
  5065. b9.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5066. p10 = Instance.new("Part", m8)
  5067. p10.BrickColor = BrickColor.new("Really black")
  5068. p10.Material = Enum.Material.Metal
  5069. p10.Reflectance = 0.40000000596046
  5070. p10.Name = "Block"
  5071. 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)
  5072. p10.CanCollide = false
  5073. p10.Locked = true
  5074. p10.FormFactor = Enum.FormFactor.Custom
  5075. p10.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5076. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5077. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5078. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5079. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5080. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5081. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5082. b10 = Instance.new("BlockMesh", p10)
  5083. b10.Name = "Mesh"
  5084. b10.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5085. p11 = Instance.new("Part", m8)
  5086. p11.BrickColor = BrickColor.new("Black")
  5087. p11.Material = Enum.Material.Metal
  5088. p11.Name = "Circle"
  5089. 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)
  5090. p11.CanCollide = false
  5091. p11.Locked = true
  5092. p11.FormFactor = Enum.FormFactor.Custom
  5093. p11.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  5094. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5095. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5096. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5097. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5098. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5099. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5100. b11 = Instance.new("CylinderMesh", p11)
  5101. b11.Name = "Mesh"
  5102. b11.Scale = Vector3.new(1, 0.401569068, 1)
  5103. p12 = Instance.new("Part", m8)
  5104. p12.BrickColor = BrickColor.new("Lime green")
  5105. p12.Material = Enum.Material.Neon
  5106. p12.Reflectance = 0.40000000596046
  5107. p12.Name = "Block"
  5108. 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)
  5109. p12.CanCollide = false
  5110. p12.Locked = true
  5111. p12.FormFactor = Enum.FormFactor.Custom
  5112. p12.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5113. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5114. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5115. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5116. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5117. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5118. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5119. b12 = Instance.new("BlockMesh", p12)
  5120. b12.Name = "Mesh"
  5121. b12.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5122. p13 = Instance.new("Part", m8)
  5123. p13.BrickColor = BrickColor.new("Lime green")
  5124. p13.Material = Enum.Material.Metal
  5125. p13.Name = "Block"
  5126. 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)
  5127. p13.CanCollide = false
  5128. p13.Locked = true
  5129. p13.FormFactor = Enum.FormFactor.Custom
  5130. p13.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5131. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5132. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5133. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5134. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5135. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5136. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5137. b13 = Instance.new("BlockMesh", p13)
  5138. b13.Name = "Mesh"
  5139. b13.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5140. p14 = Instance.new("Part", m8)
  5141. p14.BrickColor = BrickColor.new("Black")
  5142. p14.Material = Enum.Material.Metal
  5143. p14.Reflectance = 0.40000000596046
  5144. p14.Name = "Block"
  5145. 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)
  5146. p14.CanCollide = false
  5147. p14.Locked = true
  5148. p14.FormFactor = Enum.FormFactor.Custom
  5149. p14.Size = Vector3.new(0.220499977, 0.220499977, 0.332047403)
  5150. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5151. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5152. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5153. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5154. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5155. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5156. b14 = Instance.new("BlockMesh", p14)
  5157. b14.Name = "Mesh"
  5158. b14.Scale = Vector3.new(0.267712682, 0.535425484, 1)
  5159. p15 = Instance.new("Part", m8)
  5160. p15.BrickColor = BrickColor.new("Really black")
  5161. p15.Material = Enum.Material.Metal
  5162. p15.Reflectance = 0.40000000596046
  5163. p15.Name = "Block"
  5164. 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)
  5165. p15.CanCollide = false
  5166. p15.Locked = true
  5167. p15.FormFactor = Enum.FormFactor.Custom
  5168. p15.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5169. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5170. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5171. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5172. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5173. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5174. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5175. b15 = Instance.new("BlockMesh", p15)
  5176. b15.Name = "Mesh"
  5177. b15.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5178. p16 = Instance.new("Part", m8)
  5179. p16.BrickColor = BrickColor.new("Really black")
  5180. p16.Material = Enum.Material.Metal
  5181. p16.Name = "Handle"
  5182. 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)
  5183. p16.CanCollide = false
  5184. p16.Locked = true
  5185. p16.FormFactor = Enum.FormFactor.Custom
  5186. p16.Size = Vector3.new(0.220499977, 0.97400558, 0.220499977)
  5187. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5188. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5189. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5190. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5191. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5192. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5193. b16 = Instance.new("BlockMesh", p16)
  5194. b16.Name = "Mesh"
  5195. b16.Scale = Vector3.new(0.602353573, 1, 0.602353573)
  5196. p17 = Instance.new("Part", m8)
  5197. p17.BrickColor = BrickColor.new("Lime green")
  5198. p17.Material = Enum.Material.Neon
  5199. p17.Reflectance = 0.40000000596046
  5200. p17.Name = "Block"
  5201. 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)
  5202. p17.CanCollide = false
  5203. p17.Locked = true
  5204. p17.FormFactor = Enum.FormFactor.Custom
  5205. p17.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5206. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5207. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5208. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5209. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5210. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5211. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5212. b17 = Instance.new("BlockMesh", p17)
  5213. b17.Name = "Mesh"
  5214. b17.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5215. p18 = Instance.new("Part", m8)
  5216. p18.BrickColor = BrickColor.new("Really black")
  5217. p18.Material = Enum.Material.Metal
  5218. p18.Name = "Block"
  5219. 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)
  5220. p18.CanCollide = false
  5221. p18.Locked = true
  5222. p18.FormFactor = Enum.FormFactor.Custom
  5223. p18.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5224. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5225. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5226. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5227. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5228. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5229. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5230. b18 = Instance.new("BlockMesh", p18)
  5231. b18.Name = "Mesh"
  5232. b18.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5233. p19 = Instance.new("Part", m8)
  5234. p19.BrickColor = BrickColor.new("Black")
  5235. p19.Material = Enum.Material.Metal
  5236. p19.Reflectance = 0.40000000596046
  5237. p19.Name = "Block"
  5238. 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)
  5239. p19.CanCollide = false
  5240. p19.Locked = true
  5241. p19.FormFactor = Enum.FormFactor.Custom
  5242. p19.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5243. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5244. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5245. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5246. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5247. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5248. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5249. b19 = Instance.new("BlockMesh", p19)
  5250. b19.Name = "Mesh"
  5251. b19.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5252. p20 = Instance.new("Part", m8)
  5253. p20.BrickColor = BrickColor.new("Lime green")
  5254. p20.Material = Enum.Material.Metal
  5255. p20.Name = "Block"
  5256. 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)
  5257. p20.CanCollide = false
  5258. p20.Locked = true
  5259. p20.FormFactor = Enum.FormFactor.Custom
  5260. p20.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5261. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5262. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5263. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5264. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5265. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5266. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5267. b20 = Instance.new("BlockMesh", p20)
  5268. b20.Name = "Mesh"
  5269. b20.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5270. p21 = Instance.new("Part", m8)
  5271. p21.BrickColor = BrickColor.new("Really black")
  5272. p21.Material = Enum.Material.Metal
  5273. p21.Name = "Block"
  5274. 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)
  5275. p21.CanCollide = false
  5276. p21.Locked = true
  5277. p21.FormFactor = Enum.FormFactor.Custom
  5278. p21.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5279. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5280. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5281. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5282. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5283. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5284. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5285. b21 = Instance.new("BlockMesh", p21)
  5286. b21.Name = "Mesh"
  5287. b21.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5288. p22 = Instance.new("Part", m8)
  5289. p22.BrickColor = BrickColor.new("Really black")
  5290. p22.Material = Enum.Material.Metal
  5291. p22.Reflectance = 0.40000000596046
  5292. p22.Name = "Block"
  5293. 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)
  5294. p22.CanCollide = false
  5295. p22.Locked = true
  5296. p22.FormFactor = Enum.FormFactor.Custom
  5297. p22.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5298. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5299. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5300. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5301. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5302. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5303. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5304. b22 = Instance.new("BlockMesh", p22)
  5305. b22.Name = "Mesh"
  5306. b22.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5307. p23 = Instance.new("Part", m8)
  5308. p23.BrickColor = BrickColor.new("Lime green")
  5309. p23.Material = Enum.Material.Marble
  5310. p23.Name = "Block"
  5311. 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)
  5312. p23.CanCollide = false
  5313. p23.Locked = true
  5314. p23.FormFactor = Enum.FormFactor.Custom
  5315. p23.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  5316. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5317. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5318. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5319. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5320. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5321. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5322. b23 = Instance.new("BlockMesh", p23)
  5323. b23.Name = "Mesh"
  5324. b23.Scale = Vector3.new(0.803138018, 0.133856371, 1)
  5325. p24 = Instance.new("Part", m8)
  5326. p24.BrickColor = BrickColor.new("Really black")
  5327. p24.Material = Enum.Material.Metal
  5328. p24.Name = "Block"
  5329. 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)
  5330. p24.CanCollide = false
  5331. p24.Locked = true
  5332. p24.FormFactor = Enum.FormFactor.Custom
  5333. p24.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5334. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5335. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5336. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5337. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5338. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5339. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5340. b24 = Instance.new("BlockMesh", p24)
  5341. b24.Name = "Mesh"
  5342. b24.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5343. p25 = Instance.new("Part", m8)
  5344. p25.BrickColor = BrickColor.new("Lime green")
  5345. p25.Material = Enum.Material.Marble
  5346. p25.Name = "Block"
  5347. 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)
  5348. p25.CanCollide = false
  5349. p25.Locked = true
  5350. p25.FormFactor = Enum.FormFactor.Custom
  5351. p25.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5352. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5353. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5354. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5355. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5356. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5357. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5358. b25 = Instance.new("BlockMesh", p25)
  5359. b25.Name = "Mesh"
  5360. b25.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5361. p26 = Instance.new("Part", m8)
  5362. p26.BrickColor = BrickColor.new("Really black")
  5363. p26.Material = Enum.Material.Metal
  5364. p26.Reflectance = 0.40000000596046
  5365. p26.Name = "Block"
  5366. 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)
  5367. p26.CanCollide = false
  5368. p26.Locked = true
  5369. p26.FormFactor = Enum.FormFactor.Custom
  5370. p26.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5371. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5372. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5373. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5374. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5375. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5376. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5377. b26 = Instance.new("BlockMesh", p26)
  5378. b26.Name = "Mesh"
  5379. b26.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5380. p27 = Instance.new("Part", m8)
  5381. p27.BrickColor = BrickColor.new("Lime green")
  5382. p27.Material = Enum.Material.Metal
  5383. p27.Name = "Block"
  5384. 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)
  5385. p27.CanCollide = false
  5386. p27.Locked = true
  5387. p27.FormFactor = Enum.FormFactor.Custom
  5388. p27.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5389. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5390. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5391. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5392. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5393. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5394. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5395. b27 = Instance.new("BlockMesh", p27)
  5396. b27.Name = "Mesh"
  5397. b27.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5398. p28 = Instance.new("Part", m8)
  5399. p28.BrickColor = BrickColor.new("Really black")
  5400. p28.Material = Enum.Material.SmoothPlastic
  5401. p28.Reflectance = 0.0099999997764826
  5402. p28.Name = "Circle"
  5403. 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)
  5404. p28.CanCollide = false
  5405. p28.Locked = true
  5406. p28.FormFactor = Enum.FormFactor.Custom
  5407. p28.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5408. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5409. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5410. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5411. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5412. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5413. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5414. b28 = Instance.new("CylinderMesh", p28)
  5415. b28.Name = "Mesh"
  5416. b28.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  5417. p29 = Instance.new("Part", m8)
  5418. p29.BrickColor = BrickColor.new("Black")
  5419. p29.Material = Enum.Material.Metal
  5420. p29.Reflectance = 0.40000000596046
  5421. p29.Name = "Block"
  5422. 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)
  5423. p29.CanCollide = false
  5424. p29.Locked = true
  5425. p29.FormFactor = Enum.FormFactor.Custom
  5426. p29.Size = Vector3.new(0.220499977, 0.220499977, 0.31728977)
  5427. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5428. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5429. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5430. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5431. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5432. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5433. b29 = Instance.new("BlockMesh", p29)
  5434. b29.Name = "Mesh"
  5435. b29.Scale = Vector3.new(0.267712682, 0.803138077, 1)
  5436. p30 = Instance.new("Part", m8)
  5437. p30.BrickColor = BrickColor.new("Lime green")
  5438. p30.Material = Enum.Material.Metal
  5439. p30.Name = "Block"
  5440. 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)
  5441. p30.CanCollide = false
  5442. p30.Locked = true
  5443. p30.FormFactor = Enum.FormFactor.Custom
  5444. p30.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5445. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5446. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5447. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5448. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5449. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5450. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5451. b30 = Instance.new("BlockMesh", p30)
  5452. b30.Name = "Mesh"
  5453. b30.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5454. p31 = Instance.new("Part", m8)
  5455. p31.BrickColor = BrickColor.new("Lime green")
  5456. p31.Material = Enum.Material.Neon
  5457. p31.Reflectance = 0.40000000596046
  5458. p31.Name = "Block"
  5459. 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)
  5460. p31.CanCollide = false
  5461. p31.Locked = true
  5462. p31.FormFactor = Enum.FormFactor.Custom
  5463. p31.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5464. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5465. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5466. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5467. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5468. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5469. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5470. b31 = Instance.new("BlockMesh", p31)
  5471. b31.Name = "Mesh"
  5472. b31.Scale = Vector3.new(0.334640861, 0.133856371, 0.870066345)
  5473. p32 = Instance.new("Part", m8)
  5474. p32.BrickColor = BrickColor.new("Lime green")
  5475. p32.Material = Enum.Material.Metal
  5476. p32.Name = "Block"
  5477. 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)
  5478. p32.CanCollide = false
  5479. p32.Locked = true
  5480. p32.FormFactor = Enum.FormFactor.Custom
  5481. p32.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5482. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5483. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5484. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5485. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5486. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5487. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5488. b32 = Instance.new("BlockMesh", p32)
  5489. b32.Name = "Mesh"
  5490. b32.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5491. p33 = Instance.new("Part", m8)
  5492. p33.BrickColor = BrickColor.new("Really black")
  5493. p33.Material = Enum.Material.Metal
  5494. p33.Reflectance = 0.40000000596046
  5495. p33.Name = "Block"
  5496. 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)
  5497. p33.CanCollide = false
  5498. p33.Locked = true
  5499. p33.FormFactor = Enum.FormFactor.Custom
  5500. p33.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5501. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5502. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5503. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5504. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5505. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5506. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5507. b33 = Instance.new("BlockMesh", p33)
  5508. b33.Name = "Mesh"
  5509. b33.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5510. p34 = Instance.new("Part", m8)
  5511. p34.BrickColor = BrickColor.new("Lime green")
  5512. p34.Material = Enum.Material.Metal
  5513. p34.Name = "Block"
  5514. 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)
  5515. p34.CanCollide = false
  5516. p34.Locked = true
  5517. p34.FormFactor = Enum.FormFactor.Custom
  5518. p34.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5519. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5520. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5521. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5522. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5523. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5524. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5525. b34 = Instance.new("BlockMesh", p34)
  5526. b34.Name = "Mesh"
  5527. b34.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5528. p35 = Instance.new("Part", m8)
  5529. p35.BrickColor = BrickColor.new("Lime green")
  5530. p35.Material = Enum.Material.Metal
  5531. p35.Name = "Block"
  5532. 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)
  5533. p35.CanCollide = false
  5534. p35.Locked = true
  5535. p35.FormFactor = Enum.FormFactor.Custom
  5536. p35.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5537. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5538. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5539. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5540. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5541. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5542. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5543. b35 = Instance.new("BlockMesh", p35)
  5544. b35.Name = "Mesh"
  5545. b35.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5546. p36 = Instance.new("Part", m8)
  5547. p36.BrickColor = BrickColor.new("Lime green")
  5548. p36.Material = Enum.Material.Metal
  5549. p36.Name = "Block"
  5550. 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)
  5551. p36.CanCollide = false
  5552. p36.Locked = true
  5553. p36.FormFactor = Enum.FormFactor.Custom
  5554. p36.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5555. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5556. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5557. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5558. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5559. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5560. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5561. b36 = Instance.new("BlockMesh", p36)
  5562. b36.Name = "Mesh"
  5563. b36.Scale = Vector3.new(0.401568979, 0.200784534, 0.267712682)
  5564. p37 = Instance.new("Part", m8)
  5565. p37.BrickColor = BrickColor.new("Lime green")
  5566. p37.Material = Enum.Material.Marble
  5567. p37.Name = "Circle"
  5568. 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)
  5569. p37.CanCollide = false
  5570. p37.Locked = true
  5571. p37.FormFactor = Enum.FormFactor.Custom
  5572. p37.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5573. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5574. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5575. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5576. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5577. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5578. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5579. b37 = Instance.new("CylinderMesh", p37)
  5580. b37.Name = "Mesh"
  5581. b37.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  5582. p38 = Instance.new("Part", m8)
  5583. p38.BrickColor = BrickColor.new("Really black")
  5584. p38.Material = Enum.Material.Metal
  5585. p38.Name = "Block"
  5586. 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)
  5587. p38.CanCollide = false
  5588. p38.Locked = true
  5589. p38.FormFactor = Enum.FormFactor.Custom
  5590. p38.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5591. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5592. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5593. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5594. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5595. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5596. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5597. b38 = Instance.new("BlockMesh", p38)
  5598. b38.Name = "Mesh"
  5599. b38.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  5600. p39 = Instance.new("Part", m8)
  5601. p39.BrickColor = BrickColor.new("Really black")
  5602. p39.Material = Enum.Material.Metal
  5603. p39.Name = "Block"
  5604. 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)
  5605. p39.CanCollide = false
  5606. p39.Locked = true
  5607. p39.FormFactor = Enum.FormFactor.Custom
  5608. p39.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5609. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5610. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5611. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5612. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5613. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5614. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5615. b39 = Instance.new("BlockMesh", p39)
  5616. b39.Name = "Mesh"
  5617. b39.Scale = Vector3.new(0.334640861, 0.133856371, 0.234248638)
  5618. p40 = Instance.new("Part", m8)
  5619. p40.BrickColor = BrickColor.new("Really black")
  5620. p40.Material = Enum.Material.Metal
  5621. p40.Name = "Block"
  5622. 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)
  5623. p40.CanCollide = false
  5624. p40.Locked = true
  5625. p40.FormFactor = Enum.FormFactor.Custom
  5626. p40.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5627. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5628. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5629. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5630. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5631. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5632. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5633. b40 = Instance.new("BlockMesh", p40)
  5634. b40.Name = "Mesh"
  5635. b40.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5636. p41 = Instance.new("Part", m8)
  5637. p41.BrickColor = BrickColor.new("Lime green")
  5638. p41.Material = Enum.Material.Neon
  5639. p41.Reflectance = 0.40000000596046
  5640. p41.Name = "Block"
  5641. 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)
  5642. p41.CanCollide = false
  5643. p41.Locked = true
  5644. p41.FormFactor = Enum.FormFactor.Custom
  5645. p41.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5646. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5647. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5648. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5649. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5650. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5651. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5652. b41 = Instance.new("BlockMesh", p41)
  5653. b41.Name = "Mesh"
  5654. b41.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5655. p42 = Instance.new("Part", m8)
  5656. p42.BrickColor = BrickColor.new("Earth green")
  5657. p42.Material = Enum.Material.Metal
  5658. p42.Name = "Block"
  5659. 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)
  5660. p42.CanCollide = false
  5661. p42.Locked = true
  5662. p42.FormFactor = Enum.FormFactor.Custom
  5663. p42.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5664. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5665. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5666. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5667. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5668. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5669. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5670. b42 = Instance.new("BlockMesh", p42)
  5671. b42.Name = "Mesh"
  5672. b42.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  5673. p43 = Instance.new("Part", m8)
  5674. p43.BrickColor = BrickColor.new("Really black")
  5675. p43.Material = Enum.Material.Metal
  5676. p43.Name = "Block"
  5677. 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)
  5678. p43.CanCollide = false
  5679. p43.Locked = true
  5680. p43.FormFactor = Enum.FormFactor.Custom
  5681. p43.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5682. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5683. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5684. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5685. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5686. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5687. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5688. b43 = Instance.new("BlockMesh", p43)
  5689. b43.Name = "Mesh"
  5690. b43.Scale = Vector3.new(0.334640861, 0.133856371, 0.50196135)
  5691. p44 = Instance.new("Part", m8)
  5692. p44.BrickColor = BrickColor.new("Lime green")
  5693. p44.Material = Enum.Material.Marble
  5694. p44.Name = "Circle"
  5695. 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)
  5696. p44.CanCollide = false
  5697. p44.Locked = true
  5698. p44.FormFactor = Enum.FormFactor.Custom
  5699. p44.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5700. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5701. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5702. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5703. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5704. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5705. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5706. b44 = Instance.new("CylinderMesh", p44)
  5707. b44.Name = "Mesh"
  5708. b44.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  5709. p45 = Instance.new("Part", m8)
  5710. p45.BrickColor = BrickColor.new("Lime green")
  5711. p45.Material = Enum.Material.Neon
  5712. p45.Reflectance = 0.40000000596046
  5713. p45.Name = "Block"
  5714. 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)
  5715. p45.CanCollide = false
  5716. p45.Locked = true
  5717. p45.FormFactor = Enum.FormFactor.Custom
  5718. p45.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5719. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5720. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5721. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5722. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5723. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5724. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5725. b45 = Instance.new("BlockMesh", p45)
  5726. b45.Name = "Mesh"
  5727. b45.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5728. p46 = Instance.new("Part", m8)
  5729. p46.BrickColor = BrickColor.new("Black")
  5730. p46.Material = Enum.Material.Metal
  5731. p46.Name = "Block"
  5732. 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)
  5733. p46.CanCollide = false
  5734. p46.Locked = true
  5735. p46.FormFactor = Enum.FormFactor.Custom
  5736. p46.Size = Vector3.new(0.236122593, 0.220499977, 0.354183882)
  5737. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5738. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5739. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5740. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5741. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5742. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5743. b46 = Instance.new("BlockMesh", p46)
  5744. b46.Name = "Mesh"
  5745. b46.Scale = Vector3.new(1, 0.401569068, 1)
  5746. p47 = Instance.new("Part", m8)
  5747. p47.BrickColor = BrickColor.new("Earth green")
  5748. p47.Material = Enum.Material.Metal
  5749. p47.Name = "Block"
  5750. 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)
  5751. p47.CanCollide = false
  5752. p47.Locked = true
  5753. p47.FormFactor = Enum.FormFactor.Custom
  5754. p47.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5755. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5756. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5757. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5758. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5759. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5760. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5761. b47 = Instance.new("BlockMesh", p47)
  5762. b47.Name = "Mesh"
  5763. b47.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  5764. p48 = Instance.new("Part", m8)
  5765. p48.BrickColor = BrickColor.new("Lime green")
  5766. p48.Material = Enum.Material.Metal
  5767. p48.Name = "Block"
  5768. 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)
  5769. p48.CanCollide = false
  5770. p48.Locked = true
  5771. p48.FormFactor = Enum.FormFactor.Custom
  5772. p48.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5773. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5774. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5775. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5776. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5777. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5778. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5779. b48 = Instance.new("BlockMesh", p48)
  5780. b48.Name = "Mesh"
  5781. b48.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5782. p49 = Instance.new("Part", m8)
  5783. p49.BrickColor = BrickColor.new("Lime green")
  5784. p49.Material = Enum.Material.Metal
  5785. p49.Name = "Block"
  5786. 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)
  5787. p49.CanCollide = false
  5788. p49.Locked = true
  5789. p49.FormFactor = Enum.FormFactor.Custom
  5790. p49.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5791. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5792. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5793. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5794. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5795. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5796. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5797. b49 = Instance.new("BlockMesh", p49)
  5798. b49.Name = "Mesh"
  5799. b49.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5800. p50 = Instance.new("Part", m8)
  5801. p50.BrickColor = BrickColor.new("Black")
  5802. p50.Material = Enum.Material.Metal
  5803. p50.Reflectance = 0.40000000596046
  5804. p50.Name = "Block"
  5805. 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)
  5806. p50.CanCollide = false
  5807. p50.Locked = true
  5808. p50.FormFactor = Enum.FormFactor.Custom
  5809. p50.Size = Vector3.new(0.220499977, 0.220499977, 0.287774384)
  5810. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5811. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5812. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5813. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5814. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5815. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5816. b50 = Instance.new("BlockMesh", p50)
  5817. b50.Name = "Mesh"
  5818. b50.Scale = Vector3.new(0.267712682, 0.936994493, 1)
  5819. p51 = Instance.new("Part", m8)
  5820. p51.BrickColor = BrickColor.new("Lime green")
  5821. p51.Material = Enum.Material.Metal
  5822. p51.Name = "Block"
  5823. 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)
  5824. p51.CanCollide = false
  5825. p51.Locked = true
  5826. p51.FormFactor = Enum.FormFactor.Custom
  5827. p51.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5828. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5829. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5830. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5831. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5832. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5833. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5834. b51 = Instance.new("BlockMesh", p51)
  5835. b51.Name = "Mesh"
  5836. b51.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5837. p52 = Instance.new("Part", m8)
  5838. p52.BrickColor = BrickColor.new("Lime green")
  5839. p52.Material = Enum.Material.Metal
  5840. p52.Name = "Block"
  5841. 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)
  5842. p52.CanCollide = false
  5843. p52.Locked = true
  5844. p52.FormFactor = Enum.FormFactor.Custom
  5845. p52.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5846. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5847. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5848. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5849. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5850. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5851. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5852. b52 = Instance.new("BlockMesh", p52)
  5853. b52.Name = "Mesh"
  5854. b52.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  5855. p53 = Instance.new("Part", m8)
  5856. p53.BrickColor = BrickColor.new("Really black")
  5857. p53.Material = Enum.Material.Metal
  5858. p53.Name = "Block"
  5859. 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)
  5860. p53.CanCollide = false
  5861. p53.Locked = true
  5862. p53.FormFactor = Enum.FormFactor.Custom
  5863. p53.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5864. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5865. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5866. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5867. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5868. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5869. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5870. b53 = Instance.new("BlockMesh", p53)
  5871. b53.Name = "Mesh"
  5872. b53.Scale = Vector3.new(0.334640861, 0.133856371, 0.669281721)
  5873. p54 = Instance.new("Part", m8)
  5874. p54.BrickColor = BrickColor.new("Really black")
  5875. p54.Material = Enum.Material.SmoothPlastic
  5876. p54.Reflectance = 0.0099999997764826
  5877. p54.Name = "Circle"
  5878. 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)
  5879. p54.CanCollide = false
  5880. p54.Locked = true
  5881. p54.FormFactor = Enum.FormFactor.Custom
  5882. p54.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5883. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5884. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5885. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5886. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5887. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5888. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5889. b54 = Instance.new("CylinderMesh", p54)
  5890. b54.Name = "Mesh"
  5891. b54.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  5892. p55 = Instance.new("Part", m8)
  5893. p55.BrickColor = BrickColor.new("Really black")
  5894. p55.Material = Enum.Material.Metal
  5895. p55.Reflectance = 0.40000000596046
  5896. p55.Name = "Block"
  5897. 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)
  5898. p55.CanCollide = false
  5899. p55.Locked = true
  5900. p55.FormFactor = Enum.FormFactor.Custom
  5901. p55.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5902. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5903. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5904. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5905. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5906. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5907. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5908. b55 = Instance.new("BlockMesh", p55)
  5909. b55.Name = "Mesh"
  5910. b55.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  5911. p56 = Instance.new("Part", m8)
  5912. p56.BrickColor = BrickColor.new("Black")
  5913. p56.Material = Enum.Material.Metal
  5914. p56.Reflectance = 0.40000000596046
  5915. p56.Name = "Block"
  5916. 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)
  5917. p56.CanCollide = false
  5918. p56.Locked = true
  5919. p56.FormFactor = Enum.FormFactor.Custom
  5920. p56.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5921. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5922. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5923. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5924. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5925. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5926. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5927. b56 = Instance.new("BlockMesh", p56)
  5928. b56.Name = "Mesh"
  5929. b56.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5930. p57 = Instance.new("Part", m8)
  5931. p57.BrickColor = BrickColor.new("Black")
  5932. p57.Material = Enum.Material.Metal
  5933. p57.Reflectance = 0.40000000596046
  5934. p57.Name = "Block"
  5935. 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)
  5936. p57.CanCollide = false
  5937. p57.Locked = true
  5938. p57.FormFactor = Enum.FormFactor.Custom
  5939. p57.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  5940. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5941. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5942. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5943. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5944. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5945. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5946. b57 = Instance.new("BlockMesh", p57)
  5947. b57.Name = "Mesh"
  5948. b57.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  5949. p58 = Instance.new("Part", m8)
  5950. p58.BrickColor = BrickColor.new("Lime green")
  5951. p58.Material = Enum.Material.Marble
  5952. p58.Name = "Block"
  5953. 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)
  5954. p58.CanCollide = false
  5955. p58.Locked = true
  5956. p58.FormFactor = Enum.FormFactor.Custom
  5957. p58.Size = Vector3.new(0.220499977, 0.220499977, 0.236122593)
  5958. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5959. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5960. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5961. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5962. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5963. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5964. b58 = Instance.new("BlockMesh", p58)
  5965. b58.Name = "Mesh"
  5966. b58.Scale = Vector3.new(0.936994374, 0.133856371, 1)
  5967. p59 = Instance.new("Part", m8)
  5968. p59.BrickColor = BrickColor.new("Lime green")
  5969. p59.Material = Enum.Material.Metal
  5970. p59.Name = "Block"
  5971. 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)
  5972. p59.CanCollide = false
  5973. p59.Locked = true
  5974. p59.FormFactor = Enum.FormFactor.Custom
  5975. p59.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5976. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5977. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5978. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5979. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5980. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5981. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5982. b59 = Instance.new("BlockMesh", p59)
  5983. b59.Name = "Mesh"
  5984. b59.Scale = Vector3.new(0.602353573, 0.200784534, 0.468497276)
  5985. p60 = Instance.new("Part", m8)
  5986. p60.BrickColor = BrickColor.new("Lime green")
  5987. p60.Material = Enum.Material.Marble
  5988. p60.Name = "Circle"
  5989. 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)
  5990. p60.CanCollide = false
  5991. p60.Locked = true
  5992. p60.FormFactor = Enum.FormFactor.Custom
  5993. p60.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  5994. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5995. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5996. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5997. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5998. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5999. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6000. b60 = Instance.new("CylinderMesh", p60)
  6001. b60.Name = "Mesh"
  6002. b60.Scale = Vector3.new(0.936994374, 0.133856371, 0.936994612)
  6003. p61 = Instance.new("Part", m8)
  6004. p61.BrickColor = BrickColor.new("Black")
  6005. p61.Material = Enum.Material.Metal
  6006. p61.Name = "Circle"
  6007. 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)
  6008. p61.CanCollide = false
  6009. p61.Locked = true
  6010. p61.FormFactor = Enum.FormFactor.Custom
  6011. p61.Size = Vector3.new(0.236122593, 0.220499977, 0.265637904)
  6012. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6013. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6014. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6015. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6016. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6017. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6018. b61 = Instance.new("CylinderMesh", p61)
  6019. b61.Name = "Mesh"
  6020. b61.Scale = Vector3.new(1, 0.401569068, 1)
  6021. p62 = Instance.new("Part", m8)
  6022. p62.BrickColor = BrickColor.new("Lime green")
  6023. p62.Material = Enum.Material.Metal
  6024. p62.Name = "Block"
  6025. 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)
  6026. p62.CanCollide = false
  6027. p62.Locked = true
  6028. p62.FormFactor = Enum.FormFactor.Custom
  6029. p62.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6030. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6031. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6032. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6033. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6034. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6035. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6036. b62 = Instance.new("BlockMesh", p62)
  6037. b62.Name = "Mesh"
  6038. b62.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6039. p63 = Instance.new("Part", m8)
  6040. p63.BrickColor = BrickColor.new("Lime green")
  6041. p63.Material = Enum.Material.Metal
  6042. p63.Name = "Block"
  6043. 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)
  6044. p63.CanCollide = false
  6045. p63.Locked = true
  6046. p63.FormFactor = Enum.FormFactor.Custom
  6047. p63.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6048. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6049. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6050. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6051. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6052. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6053. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6054. b63 = Instance.new("BlockMesh", p63)
  6055. b63.Name = "Mesh"
  6056. b63.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6057. p64 = Instance.new("Part", m8)
  6058. p64.BrickColor = BrickColor.new("Really black")
  6059. p64.Material = Enum.Material.SmoothPlastic
  6060. p64.Reflectance = 0.0099999997764826
  6061. p64.Name = "Block"
  6062. 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)
  6063. p64.CanCollide = false
  6064. p64.Locked = true
  6065. p64.FormFactor = Enum.FormFactor.Custom
  6066. p64.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6067. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6068. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6069. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6070. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6071. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6072. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6073. b64 = Instance.new("BlockMesh", p64)
  6074. b64.Name = "Mesh"
  6075. b64.Scale = Vector3.new(0.803138018, 0.401569068, 0.803138137)
  6076. p65 = Instance.new("Part", m8)
  6077. p65.BrickColor = BrickColor.new("Lime green")
  6078. p65.Material = Enum.Material.Metal
  6079. p65.Name = "Block"
  6080. 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)
  6081. p65.CanCollide = false
  6082. p65.Locked = true
  6083. p65.FormFactor = Enum.FormFactor.Custom
  6084. p65.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6085. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6086. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6087. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6088. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6089. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6090. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6091. b65 = Instance.new("BlockMesh", p65)
  6092. b65.Name = "Mesh"
  6093. b65.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6094. p66 = Instance.new("Part", m8)
  6095. p66.BrickColor = BrickColor.new("Really black")
  6096. p66.Material = Enum.Material.Metal
  6097. p66.Reflectance = 0.40000000596046
  6098. p66.Name = "Block"
  6099. 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)
  6100. p66.CanCollide = false
  6101. p66.Locked = true
  6102. p66.FormFactor = Enum.FormFactor.Custom
  6103. p66.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6104. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6105. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6106. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6107. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6108. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6109. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6110. b66 = Instance.new("BlockMesh", p66)
  6111. b66.Name = "Mesh"
  6112. b66.Scale = Vector3.new(0.267712682, 0.468497276, 1)
  6113. p67 = Instance.new("Part", m8)
  6114. p67.BrickColor = BrickColor.new("Lime green")
  6115. p67.Material = Enum.Material.Metal
  6116. p67.Name = "Block"
  6117. 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)
  6118. p67.CanCollide = false
  6119. p67.Locked = true
  6120. p67.FormFactor = Enum.FormFactor.Custom
  6121. p67.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6122. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6123. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6124. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6125. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6126. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6127. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6128. b67 = Instance.new("BlockMesh", p67)
  6129. b67.Name = "Mesh"
  6130. b67.Scale = Vector3.new(0.669281721, 0.200784534, 0.669281721)
  6131. p68 = Instance.new("Part", m8)
  6132. p68.BrickColor = BrickColor.new("Black")
  6133. p68.Material = Enum.Material.Metal
  6134. p68.Reflectance = 0.40000000596046
  6135. p68.Name = "Block"
  6136. 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)
  6137. p68.CanCollide = false
  6138. p68.Locked = true
  6139. p68.FormFactor = Enum.FormFactor.Custom
  6140. p68.Size = Vector3.new(0.220499977, 0.220499977, 0.265637904)
  6141. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6142. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6143. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6144. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6145. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6146. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6147. b68 = Instance.new("BlockMesh", p68)
  6148. b68.Name = "Mesh"
  6149. b68.Scale = Vector3.new(0.267712682, 0.870066345, 1)
  6150. p69 = Instance.new("Part", m8)
  6151. p69.BrickColor = BrickColor.new("Earth green")
  6152. p69.Material = Enum.Material.Metal
  6153. p69.Name = "Block"
  6154. 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)
  6155. p69.CanCollide = false
  6156. p69.Locked = true
  6157. p69.FormFactor = Enum.FormFactor.Custom
  6158. p69.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6159. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6160. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6161. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6162. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6163. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6164. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6165. b69 = Instance.new("BlockMesh", p69)
  6166. b69.Name = "Mesh"
  6167. b69.Scale = Vector3.new(0.736209869, 0.0669281855, 0.736209989)
  6168. p70 = Instance.new("Part", m8)
  6169. p70.BrickColor = BrickColor.new("Lime green")
  6170. p70.Material = Enum.Material.Marble
  6171. p70.Name = "Circle"
  6172. 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)
  6173. p70.CanCollide = false
  6174. p70.Locked = true
  6175. p70.FormFactor = Enum.FormFactor.Custom
  6176. p70.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6177. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6178. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6179. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6180. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6181. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6182. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6183. b70 = Instance.new("CylinderMesh", p70)
  6184. b70.Name = "Mesh"
  6185. b70.Scale = Vector3.new(0.803138018, 0.133856371, 0.803138137)
  6186. p71 = Instance.new("WedgePart", m8)
  6187. p71.BrickColor = BrickColor.new("Lime green")
  6188. p71.Material = Enum.Material.Neon
  6189. p71.Reflectance = 0.40000000596046
  6190. p71.Name = "Wedge"
  6191. 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)
  6192. p71.CanCollide = false
  6193. p71.Locked = true
  6194. p71.FormFactor = Enum.FormFactor.Custom
  6195. p71.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6196. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6197. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6198. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6199. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6200. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6201. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6202. b71 = Instance.new("SpecialMesh", p71)
  6203. b71.MeshType = Enum.MeshType.Wedge
  6204. b71.Name = "Mesh"
  6205. b71.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6206. p72 = Instance.new("WedgePart", m8)
  6207. p72.BrickColor = BrickColor.new("Lime green")
  6208. p72.Material = Enum.Material.Neon
  6209. p72.Reflectance = 0.40000000596046
  6210. p72.Name = "Wedge"
  6211. 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)
  6212. p72.CanCollide = false
  6213. p72.Locked = true
  6214. p72.FormFactor = Enum.FormFactor.Custom
  6215. p72.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6216. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6217. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6218. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6219. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6220. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6221. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6222. b72 = Instance.new("SpecialMesh", p72)
  6223. b72.MeshType = Enum.MeshType.Wedge
  6224. b72.Name = "Mesh"
  6225. b72.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  6226. p73 = Instance.new("WedgePart", m8)
  6227. p73.BrickColor = BrickColor.new("Lime green")
  6228. p73.Material = Enum.Material.Neon
  6229. p73.Reflectance = 0.40000000596046
  6230. p73.Name = "Wedge"
  6231. 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)
  6232. p73.CanCollide = false
  6233. p73.Locked = true
  6234. p73.FormFactor = Enum.FormFactor.Custom
  6235. p73.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6236. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6237. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6238. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6239. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6240. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6241. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6242. b73 = Instance.new("SpecialMesh", p73)
  6243. b73.MeshType = Enum.MeshType.Wedge
  6244. b73.Name = "Mesh"
  6245. b73.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6246. p74 = Instance.new("WedgePart", m8)
  6247. p74.BrickColor = BrickColor.new("Lime green")
  6248. p74.Material = Enum.Material.Neon
  6249. p74.Reflectance = 0.40000000596046
  6250. p74.Name = "Wedge"
  6251. 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)
  6252. p74.CanCollide = false
  6253. p74.Locked = true
  6254. p74.FormFactor = Enum.FormFactor.Custom
  6255. p74.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6256. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6257. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6258. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6259. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6260. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6261. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6262. b74 = Instance.new("SpecialMesh", p74)
  6263. b74.MeshType = Enum.MeshType.Wedge
  6264. b74.Name = "Mesh"
  6265. b74.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6266. p75 = Instance.new("WedgePart", m8)
  6267. p75.BrickColor = BrickColor.new("Lime green")
  6268. p75.Material = Enum.Material.Neon
  6269. p75.Reflectance = 0.40000000596046
  6270. p75.Name = "Wedge"
  6271. 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)
  6272. p75.CanCollide = false
  6273. p75.Locked = true
  6274. p75.FormFactor = Enum.FormFactor.Custom
  6275. p75.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6276. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6277. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6278. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6279. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6280. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6281. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6282. b75 = Instance.new("SpecialMesh", p75)
  6283. b75.MeshType = Enum.MeshType.Wedge
  6284. b75.Name = "Mesh"
  6285. b75.Scale = Vector3.new(0.334640861, 0.267712742, 0.200784534)
  6286. p76 = Instance.new("WedgePart", m8)
  6287. p76.BrickColor = BrickColor.new("Lime green")
  6288. p76.Material = Enum.Material.Neon
  6289. p76.Reflectance = 0.40000000596046
  6290. p76.Name = "Wedge"
  6291. 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)
  6292. p76.CanCollide = false
  6293. p76.Locked = true
  6294. p76.FormFactor = Enum.FormFactor.Custom
  6295. p76.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6296. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6297. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6298. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6299. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6300. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6301. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6302. b76 = Instance.new("SpecialMesh", p76)
  6303. b76.MeshType = Enum.MeshType.Wedge
  6304. b76.Name = "Mesh"
  6305. b76.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6306. p77 = Instance.new("WedgePart", m8)
  6307. p77.BrickColor = BrickColor.new("Lime green")
  6308. p77.Material = Enum.Material.Neon
  6309. p77.Reflectance = 0.40000000596046
  6310. p77.Name = "Wedge"
  6311. 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)
  6312. p77.CanCollide = false
  6313. p77.Locked = true
  6314. p77.FormFactor = Enum.FormFactor.Custom
  6315. p77.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6316. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6317. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6318. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6319. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6320. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6321. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6322. b77 = Instance.new("SpecialMesh", p77)
  6323. b77.MeshType = Enum.MeshType.Wedge
  6324. b77.Name = "Mesh"
  6325. b77.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6326. p78 = Instance.new("WedgePart", m8)
  6327. p78.BrickColor = BrickColor.new("Lime green")
  6328. p78.Material = Enum.Material.Neon
  6329. p78.Reflectance = 0.40000000596046
  6330. p78.Name = "Wedge"
  6331. 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)
  6332. p78.CanCollide = false
  6333. p78.Locked = true
  6334. p78.FormFactor = Enum.FormFactor.Custom
  6335. p78.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6336. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6337. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6338. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6339. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6340. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6341. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6342. b78 = Instance.new("SpecialMesh", p78)
  6343. b78.MeshType = Enum.MeshType.Wedge
  6344. b78.Name = "Mesh"
  6345. b78.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6346. p79 = Instance.new("WedgePart", m8)
  6347. p79.BrickColor = BrickColor.new("Lime green")
  6348. p79.Material = Enum.Material.Neon
  6349. p79.Reflectance = 0.40000000596046
  6350. p79.Name = "Wedge"
  6351. 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)
  6352. p79.CanCollide = false
  6353. p79.Locked = true
  6354. p79.FormFactor = Enum.FormFactor.Custom
  6355. p79.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6356. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6357. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6358. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6359. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6360. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6361. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6362. b79 = Instance.new("SpecialMesh", p79)
  6363. b79.MeshType = Enum.MeshType.Wedge
  6364. b79.Name = "Mesh"
  6365. b79.Scale = Vector3.new(0.334640861, 0.535425484, 0.401569068)
  6366. p80 = Instance.new("WedgePart", m8)
  6367. p80.BrickColor = BrickColor.new("Black")
  6368. p80.Material = Enum.Material.Metal
  6369. p80.Reflectance = 0.40000000596046
  6370. p80.Name = "Wedge"
  6371. 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)
  6372. p80.CanCollide = false
  6373. p80.Locked = true
  6374. p80.FormFactor = Enum.FormFactor.Custom
  6375. p80.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  6376. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6377. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6378. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6379. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6380. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6381. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6382. b80 = Instance.new("SpecialMesh", p80)
  6383. b80.MeshType = Enum.MeshType.Wedge
  6384. b80.Name = "Mesh"
  6385. b80.Scale = Vector3.new(0.267712682, 1, 0.133856341)
  6386. p81 = Instance.new("WedgePart", m8)
  6387. p81.BrickColor = BrickColor.new("Lime green")
  6388. p81.Material = Enum.Material.Neon
  6389. p81.Reflectance = 0.40000000596046
  6390. p81.Name = "Wedge"
  6391. 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)
  6392. p81.CanCollide = false
  6393. p81.Locked = true
  6394. p81.FormFactor = Enum.FormFactor.Custom
  6395. p81.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6396. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6397. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6398. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6399. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6400. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6401. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6402. b81 = Instance.new("SpecialMesh", p81)
  6403. b81.MeshType = Enum.MeshType.Wedge
  6404. b81.Name = "Mesh"
  6405. b81.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  6406. p82 = Instance.new("WedgePart", m8)
  6407. p82.BrickColor = BrickColor.new("Really black")
  6408. p82.Material = Enum.Material.Metal
  6409. p82.Reflectance = 0.40000000596046
  6410. p82.Name = "Wedge"
  6411. 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)
  6412. p82.CanCollide = false
  6413. p82.Locked = true
  6414. p82.FormFactor = Enum.FormFactor.Custom
  6415. p82.Size = Vector3.new(0.220499977, 0.314338177, 0.220499977)
  6416. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6417. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6418. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6419. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6420. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6421. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6422. b82 = Instance.new("SpecialMesh", p82)
  6423. b82.MeshType = Enum.MeshType.Wedge
  6424. b82.Name = "Mesh"
  6425. b82.Scale = Vector3.new(0.261019886, 1, 0.307869673)
  6426. p83 = Instance.new("WedgePart", m8)
  6427. p83.BrickColor = BrickColor.new("Really black")
  6428. p83.Material = Enum.Material.Metal
  6429. p83.Reflectance = 0.40000000596046
  6430. p83.Name = "Wedge"
  6431. 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)
  6432. p83.CanCollide = false
  6433. p83.Locked = true
  6434. p83.FormFactor = Enum.FormFactor.Custom
  6435. p83.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6436. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6437. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6438. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6439. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6440. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6441. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6442. b83 = Instance.new("SpecialMesh", p83)
  6443. b83.MeshType = Enum.MeshType.Wedge
  6444. b83.Name = "Mesh"
  6445. b83.Scale = Vector3.new(0.261019886, 0.337987304, 0.204131007)
  6446. p84 = Instance.new("WedgePart", m8)
  6447. p84.BrickColor = BrickColor.new("Lime green")
  6448. p84.Material = Enum.Material.Neon
  6449. p84.Reflectance = 0.40000000596046
  6450. p84.Name = "Wedge"
  6451. 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)
  6452. p84.CanCollide = false
  6453. p84.Locked = true
  6454. p84.FormFactor = Enum.FormFactor.Custom
  6455. p84.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6456. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6457. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6458. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6459. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6460. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6461. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6462. b84 = Instance.new("SpecialMesh", p84)
  6463. b84.MeshType = Enum.MeshType.Wedge
  6464. b84.Name = "Mesh"
  6465. b84.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6466. p85 = Instance.new("WedgePart", m8)
  6467. p85.BrickColor = BrickColor.new("Black")
  6468. p85.Material = Enum.Material.Metal
  6469. p85.Reflectance = 0.40000000596046
  6470. p85.Name = "Wedge"
  6471. 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)
  6472. p85.CanCollide = false
  6473. p85.Locked = true
  6474. p85.FormFactor = Enum.FormFactor.Custom
  6475. p85.Size = Vector3.new(0.220499977, 0.324668586, 0.220499977)
  6476. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6477. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6478. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6479. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6480. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6481. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6482. b85 = Instance.new("SpecialMesh", p85)
  6483. b85.MeshType = Enum.MeshType.Wedge
  6484. b85.Name = "Mesh"
  6485. b85.Scale = Vector3.new(0.267712682, 1, 0.264366329)
  6486. p86 = Instance.new("WedgePart", m8)
  6487. p86.BrickColor = BrickColor.new("Lime green")
  6488. p86.Material = Enum.Material.Neon
  6489. p86.Reflectance = 0.40000000596046
  6490. p86.Name = "Wedge"
  6491. 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)
  6492. p86.CanCollide = false
  6493. p86.Locked = true
  6494. p86.FormFactor = Enum.FormFactor.Custom
  6495. p86.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6496. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6497. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6498. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6499. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6500. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6501. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6502. b86 = Instance.new("SpecialMesh", p86)
  6503. b86.MeshType = Enum.MeshType.Wedge
  6504. b86.Name = "Mesh"
  6505. b86.Scale = Vector3.new(0.334640861, 0.602353632, 0.133856341)
  6506. p87 = Instance.new("WedgePart", m8)
  6507. p87.BrickColor = BrickColor.new("Lime green")
  6508. p87.Material = Enum.Material.Neon
  6509. p87.Reflectance = 0.40000000596046
  6510. p87.Name = "Wedge"
  6511. 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)
  6512. p87.CanCollide = false
  6513. p87.Locked = true
  6514. p87.FormFactor = Enum.FormFactor.Custom
  6515. p87.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6516. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6517. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6518. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6519. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6520. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6521. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6522. b87 = Instance.new("SpecialMesh", p87)
  6523. b87.MeshType = Enum.MeshType.Wedge
  6524. b87.Name = "Mesh"
  6525. b87.Scale = Vector3.new(0.334640861, 0.267712742, 0.334640861)
  6526. p88 = Instance.new("WedgePart", m8)
  6527. p88.BrickColor = BrickColor.new("Lime green")
  6528. p88.Material = Enum.Material.Neon
  6529. p88.Reflectance = 0.40000000596046
  6530. p88.Name = "Wedge"
  6531. 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)
  6532. p88.CanCollide = false
  6533. p88.Locked = true
  6534. p88.FormFactor = Enum.FormFactor.Custom
  6535. p88.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6536. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6537. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6538. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6539. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6540. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6541. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6542. b88 = Instance.new("SpecialMesh", p88)
  6543. b88.MeshType = Enum.MeshType.Wedge
  6544. b88.Name = "Mesh"
  6545. b88.Scale = Vector3.new(0.334640861, 0.602353632, 0.267712682)
  6546. p89 = Instance.new("WedgePart", m8)
  6547. p89.BrickColor = BrickColor.new("Lime green")
  6548. p89.Material = Enum.Material.Neon
  6549. p89.Reflectance = 0.40000000596046
  6550. p89.Name = "Wedge"
  6551. 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)
  6552. p89.CanCollide = false
  6553. p89.Locked = true
  6554. p89.FormFactor = Enum.FormFactor.Custom
  6555. p89.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6556. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6557. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6558. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6559. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6560. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6561. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6562. b89 = Instance.new("SpecialMesh", p89)
  6563. b89.MeshType = Enum.MeshType.Wedge
  6564. b89.Name = "Mesh"
  6565. b89.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  6566. p90 = Instance.new("WedgePart", m8)
  6567. p90.BrickColor = BrickColor.new("Lime green")
  6568. p90.Material = Enum.Material.Neon
  6569. p90.Reflectance = 0.40000000596046
  6570. p90.Name = "Wedge"
  6571. 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)
  6572. p90.CanCollide = false
  6573. p90.Locked = true
  6574. p90.FormFactor = Enum.FormFactor.Custom
  6575. p90.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6576. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6577. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6578. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6579. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6580. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6581. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6582. b90 = Instance.new("SpecialMesh", p90)
  6583. b90.MeshType = Enum.MeshType.Wedge
  6584. b90.Name = "Mesh"
  6585. b90.Scale = Vector3.new(0.334640861, 0.267712742, 0.401569068)
  6586. p91 = Instance.new("WedgePart", m8)
  6587. p91.BrickColor = BrickColor.new("Really black")
  6588. p91.Material = Enum.Material.Metal
  6589. p91.Reflectance = 0.40000000596046
  6590. p91.Name = "Wedge"
  6591. 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)
  6592. p91.CanCollide = false
  6593. p91.Locked = true
  6594. p91.FormFactor = Enum.FormFactor.Custom
  6595. p91.Size = Vector3.new(0.220499977, 0.401408434, 0.220499977)
  6596. p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6597. p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6598. p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6599. p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6600. p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6601. p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6602. b91 = Instance.new("SpecialMesh", p91)
  6603. b91.MeshType = Enum.MeshType.Wedge
  6604. b91.Name = "Mesh"
  6605. b91.Scale = Vector3.new(0.267712682, 1, 0.200784534)
  6606. p92 = Instance.new("WedgePart", m8)
  6607. p92.BrickColor = BrickColor.new("Lime green")
  6608. p92.Material = Enum.Material.Neon
  6609. p92.Reflectance = 0.40000000596046
  6610. p92.Name = "Wedge"
  6611. 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)
  6612. p92.CanCollide = false
  6613. p92.Locked = true
  6614. p92.FormFactor = Enum.FormFactor.Custom
  6615. p92.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6616. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6617. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6618. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6619. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6620. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6621. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6622. b92 = Instance.new("SpecialMesh", p92)
  6623. b92.MeshType = Enum.MeshType.Wedge
  6624. b92.Name = "Mesh"
  6625. b92.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6626. p93 = Instance.new("WedgePart", m8)
  6627. p93.BrickColor = BrickColor.new("Lime green")
  6628. p93.Material = Enum.Material.Neon
  6629. p93.Reflectance = 0.40000000596046
  6630. p93.Name = "Wedge"
  6631. 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)
  6632. p93.CanCollide = false
  6633. p93.Locked = true
  6634. p93.FormFactor = Enum.FormFactor.Custom
  6635. p93.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6636. p93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6637. p93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6638. p93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6639. p93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6640. p93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6641. p93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6642. b93 = Instance.new("SpecialMesh", p93)
  6643. b93.MeshType = Enum.MeshType.Wedge
  6644. b93.Name = "Mesh"
  6645. b93.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  6646. p94 = Instance.new("WedgePart", m8)
  6647. p94.BrickColor = BrickColor.new("Lime green")
  6648. p94.Material = Enum.Material.Neon
  6649. p94.Reflectance = 0.40000000596046
  6650. p94.Name = "Wedge"
  6651. 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)
  6652. p94.CanCollide = false
  6653. p94.Locked = true
  6654. p94.FormFactor = Enum.FormFactor.Custom
  6655. p94.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6656. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6657. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6658. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6659. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6660. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6661. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6662. b94 = Instance.new("SpecialMesh", p94)
  6663. b94.MeshType = Enum.MeshType.Wedge
  6664. b94.Name = "Mesh"
  6665. b94.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6666. p95 = Instance.new("WedgePart", m8)
  6667. p95.BrickColor = BrickColor.new("Black")
  6668. p95.Material = Enum.Material.Metal
  6669. p95.Reflectance = 0.40000000596046
  6670. p95.Name = "Wedge"
  6671. 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)
  6672. p95.CanCollide = false
  6673. p95.Locked = true
  6674. p95.FormFactor = Enum.FormFactor.Custom
  6675. p95.Size = Vector3.new(0.220499977, 0.391078025, 0.222102806)
  6676. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6677. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6678. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6679. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6680. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6681. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6682. b95 = Instance.new("SpecialMesh", p95)
  6683. b95.MeshType = Enum.MeshType.Wedge
  6684. b95.Name = "Mesh"
  6685. b95.Scale = Vector3.new(0.261019886, 1, 1)
  6686. p96 = Instance.new("WedgePart", m8)
  6687. p96.BrickColor = BrickColor.new("Lime green")
  6688. p96.Material = Enum.Material.Neon
  6689. p96.Reflectance = 0.40000000596046
  6690. p96.Name = "Wedge"
  6691. 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)
  6692. p96.CanCollide = false
  6693. p96.Locked = true
  6694. p96.FormFactor = Enum.FormFactor.Custom
  6695. p96.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6696. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6697. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6698. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6699. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6700. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6701. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6702. b96 = Instance.new("SpecialMesh", p96)
  6703. b96.MeshType = Enum.MeshType.Wedge
  6704. b96.Name = "Mesh"
  6705. b96.Scale = Vector3.new(0.334640861, 0.736209989, 0.133856341)
  6706. p97 = Instance.new("WedgePart", m8)
  6707. p97.BrickColor = BrickColor.new("Lime green")
  6708. p97.Material = Enum.Material.Neon
  6709. p97.Reflectance = 0.40000000596046
  6710. p97.Name = "Wedge"
  6711. 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)
  6712. p97.CanCollide = false
  6713. p97.Locked = true
  6714. p97.FormFactor = Enum.FormFactor.Custom
  6715. p97.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6716. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6717. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6718. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6719. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6720. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6721. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6722. b97 = Instance.new("SpecialMesh", p97)
  6723. b97.MeshType = Enum.MeshType.Wedge
  6724. b97.Name = "Mesh"
  6725. b97.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6726. p98 = Instance.new("WedgePart", m8)
  6727. p98.BrickColor = BrickColor.new("Lime green")
  6728. p98.Material = Enum.Material.Neon
  6729. p98.Reflectance = 0.40000000596046
  6730. p98.Name = "Wedge"
  6731. 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)
  6732. p98.CanCollide = false
  6733. p98.Locked = true
  6734. p98.FormFactor = Enum.FormFactor.Custom
  6735. p98.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6736. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6737. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6738. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6739. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6740. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6741. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6742. b98 = Instance.new("SpecialMesh", p98)
  6743. b98.MeshType = Enum.MeshType.Wedge
  6744. b98.Name = "Mesh"
  6745. b98.Scale = Vector3.new(0.334640861, 0.669281721, 0.267712682)
  6746. p99 = Instance.new("WedgePart", m8)
  6747. p99.BrickColor = BrickColor.new("Lime green")
  6748. p99.Material = Enum.Material.Neon
  6749. p99.Reflectance = 0.40000000596046
  6750. p99.Name = "Wedge"
  6751. 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)
  6752. p99.CanCollide = false
  6753. p99.Locked = true
  6754. p99.FormFactor = Enum.FormFactor.Custom
  6755. p99.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6756. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6757. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6758. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6759. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6760. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6761. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6762. b99 = Instance.new("SpecialMesh", p99)
  6763. b99.MeshType = Enum.MeshType.Wedge
  6764. b99.Name = "Mesh"
  6765. b99.Scale = Vector3.new(0.334640861, 0.803138077, 0.133856341)
  6766. p100 = Instance.new("WedgePart", m8)
  6767. p100.BrickColor = BrickColor.new("Lime green")
  6768. p100.Material = Enum.Material.Neon
  6769. p100.Reflectance = 0.40000000596046
  6770. p100.Name = "Wedge"
  6771. 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)
  6772. p100.CanCollide = false
  6773. p100.Locked = true
  6774. p100.FormFactor = Enum.FormFactor.Custom
  6775. p100.Size = Vector3.new(0.220499977, 0.236122593, 0.220499977)
  6776. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6777. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6778. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6779. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6780. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6781. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6782. b100 = Instance.new("SpecialMesh", p100)
  6783. b100.MeshType = Enum.MeshType.Wedge
  6784. b100.Name = "Mesh"
  6785. b100.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  6786. p101 = Instance.new("WedgePart", m8)
  6787. p101.BrickColor = BrickColor.new("Lime green")
  6788. p101.Material = Enum.Material.Neon
  6789. p101.Reflectance = 0.40000000596046
  6790. p101.Name = "Wedge"
  6791. 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)
  6792. p101.CanCollide = false
  6793. p101.Locked = true
  6794. p101.FormFactor = Enum.FormFactor.Custom
  6795. p101.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6796. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6797. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6798. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6799. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6800. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6801. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6802. b101 = Instance.new("SpecialMesh", p101)
  6803. b101.MeshType = Enum.MeshType.Wedge
  6804. b101.Name = "Mesh"
  6805. b101.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6806. p102 = Instance.new("WedgePart", m8)
  6807. p102.BrickColor = BrickColor.new("Lime green")
  6808. p102.Material = Enum.Material.Neon
  6809. p102.Reflectance = 0.40000000596046
  6810. p102.Name = "Wedge"
  6811. 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)
  6812. p102.CanCollide = false
  6813. p102.Locked = true
  6814. p102.FormFactor = Enum.FormFactor.Custom
  6815. p102.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6816. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6817. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6818. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6819. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6820. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6821. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6822. b102 = Instance.new("SpecialMesh", p102)
  6823. b102.MeshType = Enum.MeshType.Wedge
  6824. b102.Name = "Mesh"
  6825. b102.Scale = Vector3.new(0.334640861, 0.736209989, 0.334640861)
  6826. p103 = Instance.new("WedgePart", m8)
  6827. p103.BrickColor = BrickColor.new("Lime green")
  6828. p103.Material = Enum.Material.Neon
  6829. p103.Reflectance = 0.40000000596046
  6830. p103.Name = "Wedge"
  6831. 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)
  6832. p103.CanCollide = false
  6833. p103.Locked = true
  6834. p103.FormFactor = Enum.FormFactor.Custom
  6835. p103.Size = Vector3.new(0.220499977, 0.221364915, 0.220499977)
  6836. p103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6837. p103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6838. p103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6839. p103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6840. p103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6841. p103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6842. b103 = Instance.new("SpecialMesh", p103)
  6843. b103.MeshType = Enum.MeshType.Wedge
  6844. b103.Name = "Mesh"
  6845. b103.Scale = Vector3.new(0.334640861, 1, 0.133856341)
  6846. p104 = Instance.new("WedgePart", m8)
  6847. p104.BrickColor = BrickColor.new("Lime green")
  6848. p104.Material = Enum.Material.Neon
  6849. p104.Reflectance = 0.40000000596046
  6850. p104.Name = "Wedge"
  6851. 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)
  6852. p104.CanCollide = false
  6853. p104.Locked = true
  6854. p104.FormFactor = Enum.FormFactor.Custom
  6855. p104.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6856. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6857. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6858. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6859. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6860. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6861. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6862. b104 = Instance.new("SpecialMesh", p104)
  6863. b104.MeshType = Enum.MeshType.Wedge
  6864. b104.Name = "Mesh"
  6865. b104.Scale = Vector3.new(0.334640861, 0.535425484, 0.267712682)
  6866. p105 = Instance.new("WedgePart", m8)
  6867. p105.BrickColor = BrickColor.new("Really black")
  6868. p105.Material = Enum.Material.Metal
  6869. p105.Reflectance = 0.40000000596046
  6870. p105.Name = "Wedge"
  6871. 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)
  6872. p105.CanCollide = false
  6873. p105.Locked = true
  6874. p105.FormFactor = Enum.FormFactor.Custom
  6875. p105.Size = Vector3.new(0.220499977, 0.383699238, 0.220499977)
  6876. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6877. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6878. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6879. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6880. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6881. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6882. b105 = Instance.new("SpecialMesh", p105)
  6883. b105.MeshType = Enum.MeshType.Wedge
  6884. b105.Name = "Mesh"
  6885. b105.Scale = Vector3.new(0.267712682, 1, 0.468497276)
  6886. p106 = Instance.new("WedgePart", m8)
  6887. p106.BrickColor = BrickColor.new("Lime green")
  6888. p106.Material = Enum.Material.Neon
  6889. p106.Reflectance = 0.40000000596046
  6890. p106.Name = "Wedge"
  6891. 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)
  6892. p106.CanCollide = false
  6893. p106.Locked = true
  6894. p106.FormFactor = Enum.FormFactor.Custom
  6895. p106.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6896. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6897. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6898. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6899. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6900. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6901. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6902. b106 = Instance.new("SpecialMesh", p106)
  6903. b106.MeshType = Enum.MeshType.Wedge
  6904. b106.Name = "Mesh"
  6905. b106.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6906. p107 = Instance.new("WedgePart", m8)
  6907. p107.BrickColor = BrickColor.new("Lime green")
  6908. p107.Material = Enum.Material.Neon
  6909. p107.Reflectance = 0.40000000596046
  6910. p107.Name = "Wedge"
  6911. 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)
  6912. p107.CanCollide = false
  6913. p107.Locked = true
  6914. p107.FormFactor = Enum.FormFactor.Custom
  6915. p107.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6916. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6917. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6918. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6919. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6920. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6921. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6922. b107 = Instance.new("SpecialMesh", p107)
  6923. b107.MeshType = Enum.MeshType.Wedge
  6924. b107.Name = "Mesh"
  6925. b107.Scale = Vector3.new(0.334640861, 0.468497276, 0.133856341)
  6926. p108 = Instance.new("WedgePart", m8)
  6927. p108.BrickColor = BrickColor.new("Black")
  6928. p108.Material = Enum.Material.Metal
  6929. p108.Reflectance = 0.40000000596046
  6930. p108.Name = "Wedge"
  6931. 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)
  6932. p108.CanCollide = false
  6933. p108.Locked = true
  6934. p108.FormFactor = Enum.FormFactor.Custom
  6935. p108.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6936. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6937. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6938. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6939. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6940. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6941. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6942. b108 = Instance.new("SpecialMesh", p108)
  6943. b108.MeshType = Enum.MeshType.Wedge
  6944. b108.Name = "Mesh"
  6945. b108.Scale = Vector3.new(0.267712682, 0.669281721, 0.0669281706)
  6946. p109 = Instance.new("WedgePart", m8)
  6947. p109.BrickColor = BrickColor.new("Lime green")
  6948. p109.Material = Enum.Material.Neon
  6949. p109.Reflectance = 0.40000000596046
  6950. p109.Name = "Wedge"
  6951. 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)
  6952. p109.CanCollide = false
  6953. p109.Locked = true
  6954. p109.FormFactor = Enum.FormFactor.Custom
  6955. p109.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6956. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6957. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6958. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6959. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6960. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6961. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6962. b109 = Instance.new("SpecialMesh", p109)
  6963. b109.MeshType = Enum.MeshType.Wedge
  6964. b109.Name = "Mesh"
  6965. b109.Scale = Vector3.new(0.334640861, 0.870066345, 0.133856341)
  6966. p110 = Instance.new("WedgePart", m8)
  6967. p110.BrickColor = BrickColor.new("Lime green")
  6968. p110.Material = Enum.Material.Neon
  6969. p110.Reflectance = 0.40000000596046
  6970. p110.Name = "Wedge"
  6971. 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)
  6972. p110.CanCollide = false
  6973. p110.Locked = true
  6974. p110.FormFactor = Enum.FormFactor.Custom
  6975. p110.Size = Vector3.new(0.220499977, 0.220499977, 0.220499977)
  6976. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6977. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6978. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6979. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6980. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6981. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6982. b110 = Instance.new("SpecialMesh", p110)
  6983. b110.MeshType = Enum.MeshType.Wedge
  6984. b110.Name = "Mesh"
  6985. b110.Scale = Vector3.new(0.334640861, 0.267712742, 0.133856341)
  6986. p111 = Instance.new("Part", m8)
  6987. p111.BrickColor = BrickColor.new("Really black")
  6988. p111.Material = Enum.Material.Metal
  6989. p111.Transparency = 1
  6990. p111.Name = "Hitbox"
  6991. 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)
  6992. p111.CanCollide = false
  6993. p111.Locked = true
  6994. p111.FormFactor = Enum.FormFactor.Custom
  6995. p111.Size = Vector3.new(0.22, 2.57, 1.22)
  6996. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6997. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6998. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6999. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7000. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7001. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7002. b111 = Instance.new("BlockMesh", p111)
  7003. b111.Name = "Mesh"
  7004. w1 = Instance.new("Weld", p1)
  7005. w1.Name = "Block_Weld"
  7006. w1.Part0 = p1
  7007. 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)
  7008. w1.Part1 = p2
  7009. 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)
  7010. w2 = Instance.new("Weld", p2)
  7011. w2.Name = "Block_Weld"
  7012. w2.Part0 = p2
  7013. 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)
  7014. w2.Part1 = p3
  7015. 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)
  7016. w3 = Instance.new("Weld", p3)
  7017. w3.Name = "Block_Weld"
  7018. w3.Part0 = p3
  7019. 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)
  7020. w3.Part1 = p4
  7021. 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)
  7022. w4 = Instance.new("Weld", p4)
  7023. w4.Name = "Block_Weld"
  7024. w4.Part0 = p4
  7025. 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)
  7026. w4.Part1 = p5
  7027. 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)
  7028. w5 = Instance.new("Weld", p5)
  7029. w5.Name = "Block_Weld"
  7030. w5.Part0 = p5
  7031. 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)
  7032. w5.Part1 = p6
  7033. 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)
  7034. w6 = Instance.new("Weld", p6)
  7035. w6.Name = "Block_Weld"
  7036. w6.Part0 = p6
  7037. 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)
  7038. w6.Part1 = p7
  7039. 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)
  7040. w7 = Instance.new("Weld", p7)
  7041. w7.Name = "Block_Weld"
  7042. w7.Part0 = p7
  7043. 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)
  7044. w7.Part1 = p8
  7045. 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)
  7046. w8 = Instance.new("Weld", p8)
  7047. w8.Name = "Block_Weld"
  7048. w8.Part0 = p8
  7049. 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)
  7050. w8.Part1 = p9
  7051. 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)
  7052. w9 = Instance.new("Weld", p9)
  7053. w9.Name = "Block_Weld"
  7054. w9.Part0 = p9
  7055. 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)
  7056. w9.Part1 = p10
  7057. 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)
  7058. w10 = Instance.new("Weld", p10)
  7059. w10.Name = "Circle_Weld"
  7060. w10.Part0 = p10
  7061. 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)
  7062. w10.Part1 = p11
  7063. 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)
  7064. w11 = Instance.new("Weld", p11)
  7065. w11.Name = "Block_Weld"
  7066. w11.Part0 = p11
  7067. 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)
  7068. w11.Part1 = p12
  7069. 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)
  7070. w12 = Instance.new("Weld", p12)
  7071. w12.Name = "Block_Weld"
  7072. w12.Part0 = p12
  7073. 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)
  7074. w12.Part1 = p13
  7075. 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)
  7076. w13 = Instance.new("Weld", p13)
  7077. w13.Name = "Block_Weld"
  7078. w13.Part0 = p13
  7079. 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)
  7080. w13.Part1 = p14
  7081. 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)
  7082. w14 = Instance.new("Weld", p14)
  7083. w14.Name = "Block_Weld"
  7084. w14.Part0 = p14
  7085. 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)
  7086. w14.Part1 = p15
  7087. 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)
  7088. w15 = Instance.new("Weld", p15)
  7089. w15.Name = "Handle_Weld"
  7090. w15.Part0 = p15
  7091. 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)
  7092. w15.Part1 = p16
  7093. 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)
  7094. w16 = Instance.new("Weld", p16)
  7095. w16.Name = "Block_Weld"
  7096. w16.Part0 = p16
  7097. 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)
  7098. w16.Part1 = p17
  7099. 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)
  7100. w17 = Instance.new("Weld", p17)
  7101. w17.Name = "Block_Weld"
  7102. w17.Part0 = p17
  7103. 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)
  7104. w17.Part1 = p18
  7105. 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)
  7106. w18 = Instance.new("Weld", p18)
  7107. w18.Name = "Block_Weld"
  7108. w18.Part0 = p18
  7109. 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)
  7110. w18.Part1 = p19
  7111. 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)
  7112. w19 = Instance.new("Weld", p19)
  7113. w19.Name = "Block_Weld"
  7114. w19.Part0 = p19
  7115. 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)
  7116. w19.Part1 = p20
  7117. 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)
  7118. w20 = Instance.new("Weld", p20)
  7119. w20.Name = "Block_Weld"
  7120. w20.Part0 = p20
  7121. 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)
  7122. w20.Part1 = p21
  7123. 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)
  7124. w21 = Instance.new("Weld", p21)
  7125. w21.Name = "Block_Weld"
  7126. w21.Part0 = p21
  7127. 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)
  7128. w21.Part1 = p22
  7129. 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)
  7130. w22 = Instance.new("Weld", p22)
  7131. w22.Name = "Block_Weld"
  7132. w22.Part0 = p22
  7133. 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)
  7134. w22.Part1 = p23
  7135. 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)
  7136. w23 = Instance.new("Weld", p23)
  7137. w23.Name = "Block_Weld"
  7138. w23.Part0 = p23
  7139. 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)
  7140. w23.Part1 = p24
  7141. 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)
  7142. w24 = Instance.new("Weld", p24)
  7143. w24.Name = "Block_Weld"
  7144. w24.Part0 = p24
  7145. 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)
  7146. w24.Part1 = p25
  7147. 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)
  7148. w25 = Instance.new("Weld", p25)
  7149. w25.Name = "Block_Weld"
  7150. w25.Part0 = p25
  7151. 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)
  7152. w25.Part1 = p26
  7153. 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)
  7154. w26 = Instance.new("Weld", p26)
  7155. w26.Name = "Block_Weld"
  7156. w26.Part0 = p26
  7157. 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)
  7158. w26.Part1 = p27
  7159. 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)
  7160. w27 = Instance.new("Weld", p27)
  7161. w27.Name = "Circle_Weld"
  7162. w27.Part0 = p27
  7163. 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)
  7164. w27.Part1 = p28
  7165. 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)
  7166. w28 = Instance.new("Weld", p28)
  7167. w28.Name = "Block_Weld"
  7168. w28.Part0 = p28
  7169. 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)
  7170. w28.Part1 = p29
  7171. 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)
  7172. w29 = Instance.new("Weld", p29)
  7173. w29.Name = "Block_Weld"
  7174. w29.Part0 = p29
  7175. 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)
  7176. w29.Part1 = p30
  7177. 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)
  7178. w30 = Instance.new("Weld", p30)
  7179. w30.Name = "Block_Weld"
  7180. w30.Part0 = p30
  7181. 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)
  7182. w30.Part1 = p31
  7183. 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)
  7184. w31 = Instance.new("Weld", p31)
  7185. w31.Name = "Block_Weld"
  7186. w31.Part0 = p31
  7187. 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)
  7188. w31.Part1 = p32
  7189. 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)
  7190. w32 = Instance.new("Weld", p32)
  7191. w32.Name = "Block_Weld"
  7192. w32.Part0 = p32
  7193. 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)
  7194. w32.Part1 = p33
  7195. 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)
  7196. w33 = Instance.new("Weld", p33)
  7197. w33.Name = "Block_Weld"
  7198. w33.Part0 = p33
  7199. 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)
  7200. w33.Part1 = p34
  7201. 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)
  7202. w34 = Instance.new("Weld", p34)
  7203. w34.Name = "Block_Weld"
  7204. w34.Part0 = p34
  7205. 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)
  7206. w34.Part1 = p35
  7207. 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)
  7208. w35 = Instance.new("Weld", p35)
  7209. w35.Name = "Block_Weld"
  7210. w35.Part0 = p35
  7211. 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)
  7212. w35.Part1 = p36
  7213. 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)
  7214. w36 = Instance.new("Weld", p36)
  7215. w36.Name = "Circle_Weld"
  7216. w36.Part0 = p36
  7217. 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)
  7218. w36.Part1 = p37
  7219. 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)
  7220. w37 = Instance.new("Weld", p37)
  7221. w37.Name = "Block_Weld"
  7222. w37.Part0 = p37
  7223. 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)
  7224. w37.Part1 = p38
  7225. 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)
  7226. w38 = Instance.new("Weld", p38)
  7227. w38.Name = "Block_Weld"
  7228. w38.Part0 = p38
  7229. 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)
  7230. w38.Part1 = p39
  7231. 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)
  7232. w39 = Instance.new("Weld", p39)
  7233. w39.Name = "Block_Weld"
  7234. w39.Part0 = p39
  7235. 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)
  7236. w39.Part1 = p40
  7237. 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)
  7238. w40 = Instance.new("Weld", p40)
  7239. w40.Name = "Block_Weld"
  7240. w40.Part0 = p40
  7241. 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)
  7242. w40.Part1 = p41
  7243. 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)
  7244. w41 = Instance.new("Weld", p41)
  7245. w41.Name = "Block_Weld"
  7246. w41.Part0 = p41
  7247. 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)
  7248. w41.Part1 = p42
  7249. 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)
  7250. w42 = Instance.new("Weld", p42)
  7251. w42.Name = "Block_Weld"
  7252. w42.Part0 = p42
  7253. 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)
  7254. w42.Part1 = p43
  7255. 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)
  7256. w43 = Instance.new("Weld", p43)
  7257. w43.Name = "Circle_Weld"
  7258. w43.Part0 = p43
  7259. 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)
  7260. w43.Part1 = p44
  7261. 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)
  7262. w44 = Instance.new("Weld", p44)
  7263. w44.Name = "Block_Weld"
  7264. w44.Part0 = p44
  7265. 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)
  7266. w44.Part1 = p45
  7267. 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)
  7268. w45 = Instance.new("Weld", p45)
  7269. w45.Name = "Block_Weld"
  7270. w45.Part0 = p45
  7271. 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)
  7272. w45.Part1 = p46
  7273. 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)
  7274. w46 = Instance.new("Weld", p46)
  7275. w46.Name = "Block_Weld"
  7276. w46.Part0 = p46
  7277. 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)
  7278. w46.Part1 = p47
  7279. 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)
  7280. w47 = Instance.new("Weld", p47)
  7281. w47.Name = "Block_Weld"
  7282. w47.Part0 = p47
  7283. 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)
  7284. w47.Part1 = p48
  7285. 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)
  7286. w48 = Instance.new("Weld", p48)
  7287. w48.Name = "Block_Weld"
  7288. w48.Part0 = p48
  7289. 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)
  7290. w48.Part1 = p49
  7291. 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)
  7292. w49 = Instance.new("Weld", p49)
  7293. w49.Name = "Block_Weld"
  7294. w49.Part0 = p49
  7295. 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)
  7296. w49.Part1 = p50
  7297. 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)
  7298. w50 = Instance.new("Weld", p50)
  7299. w50.Name = "Block_Weld"
  7300. w50.Part0 = p50
  7301. 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)
  7302. w50.Part1 = p51
  7303. 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)
  7304. w51 = Instance.new("Weld", p51)
  7305. w51.Name = "Block_Weld"
  7306. w51.Part0 = p51
  7307. 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)
  7308. w51.Part1 = p52
  7309. 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)
  7310. w52 = Instance.new("Weld", p52)
  7311. w52.Name = "Block_Weld"
  7312. w52.Part0 = p52
  7313. 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)
  7314. w52.Part1 = p53
  7315. 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)
  7316. w53 = Instance.new("Weld", p53)
  7317. w53.Name = "Circle_Weld"
  7318. w53.Part0 = p53
  7319. 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)
  7320. w53.Part1 = p54
  7321. 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)
  7322. w54 = Instance.new("Weld", p54)
  7323. w54.Name = "Block_Weld"
  7324. w54.Part0 = p54
  7325. 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)
  7326. w54.Part1 = p55
  7327. 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)
  7328. w55 = Instance.new("Weld", p55)
  7329. w55.Name = "Block_Weld"
  7330. w55.Part0 = p55
  7331. 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)
  7332. w55.Part1 = p56
  7333. 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)
  7334. w56 = Instance.new("Weld", p56)
  7335. w56.Name = "Block_Weld"
  7336. w56.Part0 = p56
  7337. 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)
  7338. w56.Part1 = p57
  7339. 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)
  7340. w57 = Instance.new("Weld", p57)
  7341. w57.Name = "Block_Weld"
  7342. w57.Part0 = p57
  7343. 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)
  7344. w57.Part1 = p58
  7345. 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)
  7346. w58 = Instance.new("Weld", p58)
  7347. w58.Name = "Block_Weld"
  7348. w58.Part0 = p58
  7349. 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)
  7350. w58.Part1 = p59
  7351. 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)
  7352. w59 = Instance.new("Weld", p59)
  7353. w59.Name = "Circle_Weld"
  7354. w59.Part0 = p59
  7355. 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)
  7356. w59.Part1 = p60
  7357. 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)
  7358. w60 = Instance.new("Weld", p60)
  7359. w60.Name = "Circle_Weld"
  7360. w60.Part0 = p60
  7361. 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)
  7362. w60.Part1 = p61
  7363. 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)
  7364. w61 = Instance.new("Weld", p61)
  7365. w61.Name = "Block_Weld"
  7366. w61.Part0 = p61
  7367. 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)
  7368. w61.Part1 = p62
  7369. 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)
  7370. w62 = Instance.new("Weld", p62)
  7371. w62.Name = "Block_Weld"
  7372. w62.Part0 = p62
  7373. 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)
  7374. w62.Part1 = p63
  7375. 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)
  7376. w63 = Instance.new("Weld", p63)
  7377. w63.Name = "Block_Weld"
  7378. w63.Part0 = p63
  7379. 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)
  7380. w63.Part1 = p64
  7381. 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)
  7382. w64 = Instance.new("Weld", p64)
  7383. w64.Name = "Block_Weld"
  7384. w64.Part0 = p64
  7385. 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)
  7386. w64.Part1 = p65
  7387. 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)
  7388. w65 = Instance.new("Weld", p65)
  7389. w65.Name = "Block_Weld"
  7390. w65.Part0 = p65
  7391. 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)
  7392. w65.Part1 = p66
  7393. 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)
  7394. w66 = Instance.new("Weld", p66)
  7395. w66.Name = "Block_Weld"
  7396. w66.Part0 = p66
  7397. 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)
  7398. w66.Part1 = p67
  7399. 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)
  7400. w67 = Instance.new("Weld", p67)
  7401. w67.Name = "Block_Weld"
  7402. w67.Part0 = p67
  7403. 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)
  7404. w67.Part1 = p68
  7405. 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)
  7406. w68 = Instance.new("Weld", p68)
  7407. w68.Name = "Block_Weld"
  7408. w68.Part0 = p68
  7409. 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)
  7410. w68.Part1 = p69
  7411. 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)
  7412. w69 = Instance.new("Weld", p69)
  7413. w69.Name = "Circle_Weld"
  7414. w69.Part0 = p69
  7415. 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)
  7416. w69.Part1 = p70
  7417. 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)
  7418. w70 = Instance.new("Weld", p70)
  7419. w70.Name = "Wedge_Weld"
  7420. w70.Part0 = p70
  7421. 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)
  7422. w70.Part1 = p71
  7423. 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)
  7424. w71 = Instance.new("Weld", p71)
  7425. w71.Name = "Wedge_Weld"
  7426. w71.Part0 = p71
  7427. 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)
  7428. w71.Part1 = p72
  7429. 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)
  7430. w72 = Instance.new("Weld", p72)
  7431. w72.Name = "Wedge_Weld"
  7432. w72.Part0 = p72
  7433. 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)
  7434. w72.Part1 = p73
  7435. 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)
  7436. w73 = Instance.new("Weld", p73)
  7437. w73.Name = "Wedge_Weld"
  7438. w73.Part0 = p73
  7439. 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)
  7440. w73.Part1 = p74
  7441. 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)
  7442. w74 = Instance.new("Weld", p74)
  7443. w74.Name = "Wedge_Weld"
  7444. w74.Part0 = p74
  7445. 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)
  7446. w74.Part1 = p75
  7447. 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)
  7448. w75 = Instance.new("Weld", p75)
  7449. w75.Name = "Wedge_Weld"
  7450. w75.Part0 = p75
  7451. 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)
  7452. w75.Part1 = p76
  7453. 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)
  7454. w76 = Instance.new("Weld", p76)
  7455. w76.Name = "Wedge_Weld"
  7456. w76.Part0 = p76
  7457. 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)
  7458. w76.Part1 = p77
  7459. 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)
  7460. w77 = Instance.new("Weld", p77)
  7461. w77.Name = "Wedge_Weld"
  7462. w77.Part0 = p77
  7463. 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)
  7464. w77.Part1 = p78
  7465. 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)
  7466. w78 = Instance.new("Weld", p78)
  7467. w78.Name = "Wedge_Weld"
  7468. w78.Part0 = p78
  7469. 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)
  7470. w78.Part1 = p79
  7471. 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)
  7472. w79 = Instance.new("Weld", p79)
  7473. w79.Name = "Wedge_Weld"
  7474. w79.Part0 = p79
  7475. 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)
  7476. w79.Part1 = p80
  7477. 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)
  7478. w80 = Instance.new("Weld", p80)
  7479. w80.Name = "Wedge_Weld"
  7480. w80.Part0 = p80
  7481. 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)
  7482. w80.Part1 = p81
  7483. 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)
  7484. w81 = Instance.new("Weld", p81)
  7485. w81.Name = "Wedge_Weld"
  7486. w81.Part0 = p81
  7487. 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)
  7488. w81.Part1 = p82
  7489. 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)
  7490. w82 = Instance.new("Weld", p82)
  7491. w82.Name = "Wedge_Weld"
  7492. w82.Part0 = p82
  7493. 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)
  7494. w82.Part1 = p83
  7495. 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)
  7496. w83 = Instance.new("Weld", p83)
  7497. w83.Name = "Wedge_Weld"
  7498. w83.Part0 = p83
  7499. 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)
  7500. w83.Part1 = p84
  7501. 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)
  7502. w84 = Instance.new("Weld", p84)
  7503. w84.Name = "Wedge_Weld"
  7504. w84.Part0 = p84
  7505. 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)
  7506. w84.Part1 = p85
  7507. 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)
  7508. w85 = Instance.new("Weld", p85)
  7509. w85.Name = "Wedge_Weld"
  7510. w85.Part0 = p85
  7511. 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)
  7512. w85.Part1 = p86
  7513. 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)
  7514. w86 = Instance.new("Weld", p86)
  7515. w86.Name = "Wedge_Weld"
  7516. w86.Part0 = p86
  7517. 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)
  7518. w86.Part1 = p87
  7519. 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)
  7520. w87 = Instance.new("Weld", p87)
  7521. w87.Name = "Wedge_Weld"
  7522. w87.Part0 = p87
  7523. 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)
  7524. w87.Part1 = p88
  7525. 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)
  7526. w88 = Instance.new("Weld", p88)
  7527. w88.Name = "Wedge_Weld"
  7528. w88.Part0 = p88
  7529. 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)
  7530. w88.Part1 = p89
  7531. 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)
  7532. w89 = Instance.new("Weld", p89)
  7533. w89.Name = "Wedge_Weld"
  7534. w89.Part0 = p89
  7535. 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)
  7536. w89.Part1 = p90
  7537. 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)
  7538. w90 = Instance.new("Weld", p90)
  7539. w90.Name = "Wedge_Weld"
  7540. w90.Part0 = p90
  7541. 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)
  7542. w90.Part1 = p91
  7543. 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)
  7544. w91 = Instance.new("Weld", p91)
  7545. w91.Name = "Wedge_Weld"
  7546. w91.Part0 = p91
  7547. 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)
  7548. w91.Part1 = p92
  7549. 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)
  7550. w92 = Instance.new("Weld", p92)
  7551. w92.Name = "Wedge_Weld"
  7552. w92.Part0 = p92
  7553. 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)
  7554. w92.Part1 = p93
  7555. 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)
  7556. w93 = Instance.new("Weld", p93)
  7557. w93.Name = "Wedge_Weld"
  7558. w93.Part0 = p93
  7559. 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)
  7560. w93.Part1 = p94
  7561. 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)
  7562. w94 = Instance.new("Weld", p94)
  7563. w94.Name = "Wedge_Weld"
  7564. w94.Part0 = p94
  7565. 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)
  7566. w94.Part1 = p95
  7567. 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)
  7568. w95 = Instance.new("Weld", p95)
  7569. w95.Name = "Wedge_Weld"
  7570. w95.Part0 = p95
  7571. 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)
  7572. w95.Part1 = p96
  7573. 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)
  7574. w96 = Instance.new("Weld", p96)
  7575. w96.Name = "Wedge_Weld"
  7576. w96.Part0 = p96
  7577. 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)
  7578. w96.Part1 = p97
  7579. 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)
  7580. w97 = Instance.new("Weld", p97)
  7581. w97.Name = "Wedge_Weld"
  7582. w97.Part0 = p97
  7583. 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)
  7584. w97.Part1 = p98
  7585. 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)
  7586. w98 = Instance.new("Weld", p98)
  7587. w98.Name = "Wedge_Weld"
  7588. w98.Part0 = p98
  7589. 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)
  7590. w98.Part1 = p99
  7591. 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)
  7592. w99 = Instance.new("Weld", p99)
  7593. w99.Name = "Wedge_Weld"
  7594. w99.Part0 = p99
  7595. 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)
  7596. w99.Part1 = p100
  7597. 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)
  7598. w100 = Instance.new("Weld", p100)
  7599. w100.Name = "Wedge_Weld"
  7600. w100.Part0 = p100
  7601. 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)
  7602. w100.Part1 = p101
  7603. 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)
  7604. w101 = Instance.new("Weld", p101)
  7605. w101.Name = "Wedge_Weld"
  7606. w101.Part0 = p101
  7607. 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)
  7608. w101.Part1 = p102
  7609. 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)
  7610. w102 = Instance.new("Weld", p102)
  7611. w102.Name = "Wedge_Weld"
  7612. w102.Part0 = p102
  7613. 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)
  7614. w102.Part1 = p103
  7615. 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)
  7616. w103 = Instance.new("Weld", p103)
  7617. w103.Name = "Wedge_Weld"
  7618. w103.Part0 = p103
  7619. 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)
  7620. w103.Part1 = p104
  7621. 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)
  7622. w104 = Instance.new("Weld", p104)
  7623. w104.Name = "Wedge_Weld"
  7624. w104.Part0 = p104
  7625. 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)
  7626. w104.Part1 = p105
  7627. 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)
  7628. w105 = Instance.new("Weld", p105)
  7629. w105.Name = "Wedge_Weld"
  7630. w105.Part0 = p105
  7631. 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)
  7632. w105.Part1 = p106
  7633. 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)
  7634. w106 = Instance.new("Weld", p106)
  7635. w106.Name = "Wedge_Weld"
  7636. w106.Part0 = p106
  7637. 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)
  7638. w106.Part1 = p107
  7639. 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)
  7640. w107 = Instance.new("Weld", p107)
  7641. w107.Name = "Wedge_Weld"
  7642. w107.Part0 = p107
  7643. 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)
  7644. w107.Part1 = p108
  7645. 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)
  7646. w108 = Instance.new("Weld", p108)
  7647. w108.Name = "Wedge_Weld"
  7648. w108.Part0 = p108
  7649. 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)
  7650. w108.Part1 = p109
  7651. 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)
  7652. w109 = Instance.new("Weld", p109)
  7653. w109.Name = "Wedge_Weld"
  7654. w109.Part0 = p109
  7655. 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)
  7656. w109.Part1 = p110
  7657. 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)
  7658. w110 = Instance.new("Weld", p110)
  7659. w110.Name = "Hitbox_Weld"
  7660. w110.Part0 = p110
  7661. 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)
  7662. w110.Part1 = p111
  7663. 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)
  7664. m8.Parent = rarm
  7665. m8:MakeJoints()
  7666. ----------------------------------------------------
  7667. local cor8 = Instance.new("Part", rarm.Zyrodoxa)
  7668. cor8.Name = "Thingy"
  7669. cor8.Locked = true
  7670. cor8.BottomSurface = 0
  7671. cor8.CanCollide = false
  7672. cor8.Size = Vector3.new(1, 1, 1)
  7673. cor8.Transparency = 1
  7674. cor8.TopSurface = 0
  7675. corw8 = Instance.new("Weld", cor8)
  7676. corw8.Part0 = rarm
  7677. corw8.Part1 = cor8
  7678. corw8.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180))
  7679. corw8.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  7680. weld8 = Instance.new("Weld", rarm.Zyrodoxa)
  7681. weld8.Part0 = cor8
  7682. weld8.Part1 = rarm.Zyrodoxa.Handle
  7683. weld8.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  7684. Amulite = Instance.new("PointLight",m7.Center)
  7685. Amulite.Brightness = 0
  7686. Amulite.Color = Color3.new(0,1,0)
  7687. ----------------------------------------------------
  7688. models = {m,m2,m3,m4,m5,m6,m7,m8}
  7689. parts = {}
  7690. Stepped:connect(function()
  7691. for i,v in pairs(models) do
  7692. for _, a in pairs(v:GetChildren()) do
  7693. if v:IsA("Part") and v.Name ~= "Thingy" then
  7694. table.insert(parts, a)
  7695. for i,v in pairs(parts) do
  7696. v.CanCollide = false
  7697. end
  7698. end
  7699. end
  7700. end
  7701. end)
  7702. ----------------------------------------------------
  7703. local animpose = "Idle1"
  7704. local lastanimpose = "Idle1"
  7705. local grab = false
  7706. local Smooth = 1
  7707. local sine = 0
  7708. local change = 1
  7709. local val = 0
  7710. local ffing = false
  7711. ----------------------------------------------------
  7712. --[[local hitbox = rarm.Zyrodoxa.Hitbox--Zyrodoxa is the name of the dagger k
  7713.  
  7714. function FindHumanoids()
  7715. local function c_region(Position, Size)
  7716. local SizeOffset = Size/2
  7717. local Point1 = Position - SizeOffset
  7718. local Point2 = Position + SizeOffset
  7719. local a = Instance.new("Part", workspace)
  7720. a.Anchored = true
  7721. a.Size = Size
  7722. a.Position = Position
  7723. print("Hey!, I'm making a part!")
  7724. return Region3.new(Point1, Point2)
  7725. end
  7726.  
  7727. local a = c_region((hitbox.CFrame * CFrame.new(0, -1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7728. local b = c_region((hitbox.CFrame * CFrame.new(0, -0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7729. local c = c_region((hitbox.CFrame * CFrame.new(0, 0.6425, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7730. local d = c_region((hitbox.CFrame * CFrame.new(0, 1.285, 0)), Vector3.new(0.22, 0.6425, 1.22))
  7731.  
  7732. local regions = {a, b, c, d}
  7733.  
  7734. local found_humanoids = {}
  7735. local already_found = {char.Name}
  7736.  
  7737. for _, region in pairs(regions) do
  7738. for _, part in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(region, rarm.Zyrodoxa:GetChildren(), 100)) do
  7739. print(part, part.Parent, part.Name) ---nope
  7740. if part.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  7741. local humanoid = part.Parent:FindFirstChild("Humanoid")
  7742. local name = humanoid.Parent.Name
  7743. local exists = false
  7744. for _, n in pairs(already_found) do
  7745. if n == name then
  7746. exists = true
  7747. end
  7748. end
  7749. if not exists then
  7750. table.insert(already_found, name)
  7751. table.insert(found_humanoids, humanoid)
  7752. end
  7753. elseif part.Parent.Parent:FindFirstChild("Humanoid") ~= nil and part.Parent.Parent.ClassName == "Model" and not part:isDescendantOf(char) then
  7754. local humanoid = part.Parent.Parent:FindFirstChild("Humanoid")
  7755. local name = humanoid.Parent.Parent.Name
  7756. local exists = false
  7757. for _, n in pairs(already_found) do
  7758. if n == name then
  7759. exists = true
  7760. end
  7761. end
  7762. if not exists then
  7763. table.insert(already_found, name)
  7764. table.insert(found_humanoids, humanoid)
  7765. end
  7766. end
  7767. end
  7768. end
  7769. return found_humanoids
  7770. end
  7771.  
  7772. local humanoids = FindHumanoids()
  7773. if #humanoids == 0 then
  7774. for i, v in pairs(humanoids) do
  7775. print(v.Parent.Name)
  7776. if Debounces.Slashing == true then
  7777. v:TakeDamage(math.random(10,20) * math.random(1,3)) --max 60 damage?
  7778. elseif Debounces.Slashing == false then
  7779. wait()
  7780. end
  7781. end
  7782. wait(0.3)
  7783. end]]--
  7784. ----------------------------------------------------
  7785. --[[mouse.KeyDown:connect(function(key)
  7786. if key == "f" then
  7787. if Debounces.CanAttack == true then
  7788. Debounces.CanAttack = false
  7789. Debounces.NoIdl = true
  7790. Debounces.on = true
  7791. for i = 1, 20 do
  7792. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1.05, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  7793. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  7794. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-4),0,0),0.1)
  7795. CR2.Joint.C1 = Lerp(CR2.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7796. CR3.Joint.C1 = Lerp(CR3.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7797. CR4.Joint.C1 = Lerp(CR4.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7798. CR5.Joint.C1 = Lerp(CR5.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),0.1)
  7799. 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)
  7800. 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)
  7801. 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)
  7802. 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)
  7803. 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)
  7804. 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)
  7805. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-6), math.rad(0), 0), 0.1)
  7806. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-20), 0), 0.1)
  7807. 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)
  7808. 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)
  7809. 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)
  7810. 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)
  7811. if Debounces.on == false then
  7812. break
  7813. end
  7814. fat.Event:wait()
  7815. end
  7816. end
  7817. end
  7818. end)]]--
  7819. ----------------------------------------------------
  7820. mod4 = Instance.new("Model",char)
  7821.  
  7822. ptez = {0.7, 0.8, 0.9, 1}
  7823.  
  7824. function FindNearestTorso(Position,Distance,SinglePlayer)
  7825. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  7826. local List = {}
  7827. for i,v in pairs(workspace:GetChildren())do
  7828. if v:IsA("Model")then
  7829. if v:findFirstChild("Torso")then
  7830. if v ~= char then
  7831. if(v.Torso.Position -Position).magnitude <= Distance then
  7832. table.insert(List,v)
  7833. end
  7834. end
  7835. end
  7836. end
  7837. end
  7838. return List
  7839. end
  7840.  
  7841. function Slam()
  7842. local part=Instance.new('Part',mod4)
  7843. part.Anchored=true
  7844. part.CanCollide=false
  7845. part.FormFactor='Custom'
  7846. part.Size=Vector3.new(.2,.2,.2)
  7847. part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
  7848. part.Transparency=.7
  7849. part.BrickColor=BrickColor.new('Really black')
  7850. mesh=Instance.new('SpecialMesh',part)
  7851. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  7852. mesh.Scale=Vector3.new(3,3,3)
  7853. local part2=Instance.new('Part',mod4)
  7854. part2.Anchored=true
  7855. part2.CanCollide=false
  7856. part2.FormFactor='Custom'
  7857. part2.Size=Vector3.new(.2,.2,.2)
  7858. part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
  7859. part2.Transparency=.7
  7860. part2.BrickColor=BrickColor.new('Lime green')
  7861. mesh2=Instance.new('SpecialMesh',part2)
  7862. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  7863. mesh2.Scale=Vector3.new(3,1.5,3)
  7864. x = Instance.new("Sound",larm)
  7865. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  7866. x.Pitch = ptez[math.random(1,#ptez)]
  7867. x.Volume = 1
  7868. wait(.1)
  7869. x1 = Instance.new("Sound",larm)
  7870. x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
  7871. x1.Pitch = ptez[math.random(1,#ptez)]
  7872. x1.Volume = 1
  7873. wait(.1)
  7874. x:Play()
  7875. x1:Play()
  7876. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  7877. if v:FindFirstChild('Humanoid') then
  7878. v.Humanoid:TakeDamage(math.random(30,45))
  7879. end
  7880. end
  7881. coroutine.resume(coroutine.create(function()
  7882. for i=0,0.62,0.13 do
  7883. wait()
  7884. part.CFrame=part.CFrame
  7885. part.Transparency=i
  7886. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  7887. part2.CFrame=part2.CFrame
  7888. part2.Transparency=i
  7889. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  7890. end
  7891. part.Parent=nil
  7892. part2.Parent=nil
  7893. x:Destroy()
  7894. end))
  7895. end
  7896. ----------------------------------------------------
  7897. wPart = function(x,y,z,color,tr,cc,an,parent)
  7898. local wp = Instance.new('WedgePart',parent or Weapon)
  7899. wp.formFactor = 'Custom'
  7900. wp.Size = Vector3.new(x,y,z)
  7901. wp.BrickColor = BrickColor.new(color)
  7902. wp.CanCollide = cc
  7903. wp.Transparency = tr
  7904. wp.Anchored = an
  7905. wp.TopSurface,wp.BottomSurface = 0,0
  7906. return wp
  7907. end
  7908.  
  7909. Mesh = function(par,num,x,y,z)
  7910. local msh = _
  7911. if num == 1 then
  7912. msh = Instance.new("CylinderMesh",par)
  7913. elseif num == 2 then
  7914. msh = Instance.new("SpecialMesh",par)
  7915. msh.MeshType = 3
  7916. elseif num == 3 then
  7917. msh = Instance.new("BlockMesh",par)
  7918. elseif num == 4 then
  7919. msh = Instance.new("SpecialMesh",par)
  7920. msh.MeshType = "Torso"
  7921. elseif type(num) == 'string' then
  7922. msh = Instance.new("SpecialMesh",par)
  7923. msh.MeshId = num
  7924. end
  7925. msh.Scale = Vector3.new(x,y,z)
  7926. return msh
  7927. end
  7928.  
  7929. local function CFrameFromTopBack(at, top, back)
  7930. local right = top:Cross(back)
  7931. return CFrame.new(at.x, at.y, at.z,
  7932. right.x, top.x, back.x,
  7933. right.y, top.y, back.y,
  7934. right.z, top.z, back.z)
  7935. end
  7936.  
  7937. function Triangle(a, b, c)
  7938. local edg1 = (c-a):Dot((b-a).unit)
  7939. local edg2 = (a-b):Dot((c-b).unit)
  7940. local edg3 = (b-c):Dot((a-c).unit)
  7941. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  7942. a, b, c = a, b, c
  7943. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  7944. a, b, c = b, c, a
  7945. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  7946. a, b, c = c, a, b
  7947. else
  7948. print("unreachable")
  7949. end
  7950. local len1 = (c-a):Dot((b-a).unit)
  7951. local len2 = (b-a).magnitude - len1
  7952. local width = (a + (b-a).unit*len1 - c).magnitude
  7953. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  7954. local list = {}
  7955. if len1 > 0.01 then
  7956. local w1 = wPart(0,0,0,'Lime green',0.5,false,true,char)
  7957. local sz = Vector3.new(0.2, width, len1)
  7958. w1.Size = sz
  7959. local sp = Mesh(w1,2,0,0,0)
  7960. sp.MeshType='Wedge'
  7961. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  7962. w1:BreakJoints()
  7963. w1.Anchored = true
  7964. w1.Transparency = 0.7
  7965. Spawn(function()
  7966. for i=0,1,0.1 do
  7967. fat.Event:wait()
  7968. w1.Transparency=w1.Transparency+0.03
  7969. end
  7970. end)
  7971. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  7972. table.insert(list,w1)
  7973. end
  7974. if len2 > 0.01 then
  7975. local w2 = wPart(0,0,0,'Lime green',0.5,false,true,char)
  7976. local sz = Vector3.new(0.2, width, len2)
  7977. w2.Size = sz
  7978. local sp = Mesh(w2,2,0,0,0)
  7979. sp.MeshType='Wedge'
  7980. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  7981. w2:BreakJoints()
  7982. w2.Anchored = true
  7983. w2.Transparency = 0.7
  7984. Spawn(function()
  7985. for i=0,1,0.1 do
  7986. fat.Event:wait()
  7987. w2.Transparency=w2.Transparency+0.03
  7988. end
  7989. end)
  7990. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  7991. table.insert(list,w2)
  7992. end
  7993. return unpack(list)
  7994. end
  7995.  
  7996. function trail(p,t,h)
  7997. Spawn(function()
  7998. local blcf = p.CFrame
  7999. local scfr = blcf
  8000. for i=1,t do
  8001. local blcf = p.CFrame
  8002. if scfr and (p.Position-scfr.p).magnitude > .1 then
  8003. 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)
  8004. if a then game.Debris:AddItem(a,1) end
  8005. if b then game.Debris:AddItem(b,1) end
  8006. 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)
  8007. if a then game.Debris:AddItem(a,1) end
  8008. if b then game.Debris:AddItem(b,1) end
  8009. scfr = blcf
  8010. elseif not scfr then
  8011. scfr = blcf
  8012. end
  8013. fat.Event:wait()
  8014. end
  8015. scfr=nil
  8016. end)
  8017. end
  8018. --trail(char.Sword.Blade,1e1000,5)
  8019. ----------------------------------------------------
  8020. function Dmg()
  8021. local partofdeath = rarm.Zyrodoxa.Hitbox
  8022. local function CreateRegion3FromLocAndSize(Position, Size)
  8023. local SizeOffset = Size/2
  8024. local Point1 = Position - SizeOffset
  8025. local Point2 = Position + SizeOffset
  8026. return Region3.new(Point1, Point2)
  8027. end
  8028. local reg = CreateRegion3FromLocAndSize(partofdeath.Position, partofdeath.Size)
  8029. for i, v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, char:GetChildren(), 100)) do
  8030. Spawn(function()
  8031. if Debounces.Slashing == true and Debounces.Slashed == false then
  8032. Debounces.Slashed = true
  8033. ypcall(function()
  8034. local humanoid = v.Parent:FindFirstChild("Humanoid") or v.Parent.Parent:FindFirstChild("Humanoid")
  8035. humanoid:TakeDamage(math.random(10,18))
  8036. end)
  8037. wait(.4)
  8038. Debounces.Slashed = false
  8039. end
  8040. end)
  8041. end
  8042. end
  8043. ----------------------------------------------------
  8044. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  8045. ptz = {0.7, 0.8, 0.9, 1}
  8046. idz = {"161006212", "161006195"}
  8047. function attackone()
  8048. for i = 1, 13 do
  8049. 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)
  8050. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(20), math.rad(30), math.rad(0)), 0.8)
  8051. 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)
  8052. 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)
  8053. 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)
  8054. 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)
  8055. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.5)
  8056. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.5)
  8057. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.7)
  8058. 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)
  8059. 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)
  8060. 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)
  8061. 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)
  8062. 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)
  8063. if Debounces.on == false then
  8064. break
  8065. end
  8066. fat.Event:wait()
  8067. end
  8068. trail(rarm.Zyrodoxa.Hitbox,20,2)
  8069. Debounces.Slashing = true
  8070. wait(0.2)
  8071. --[[z = Instance.new("Sound", hed)
  8072. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  8073. z.Pitch = ptz[math.random(1,#ptz)]
  8074. z.Volume = 1
  8075. wait(.01)
  8076. z:Play()]]--
  8077. for i = 1, 14 do
  8078. Dmg()
  8079. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0.2) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(90)), 0.8)
  8080. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-40), math.rad(30), math.rad(0)), 0.8)
  8081. 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)
  8082. 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)
  8083. 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)
  8084. 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)
  8085. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(0),math.rad(40),0), 0.7)
  8086. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8087. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.4)
  8088. 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)
  8089. 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)
  8090. 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)
  8091. 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)
  8092. 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)
  8093. if Debounces.on == false then break end
  8094. rs:wait()
  8095. end
  8096. Debounces.Slashing = false
  8097. end
  8098. function attacktwo()
  8099. Debounces.Slashing = true
  8100. for i = 1, 14 do
  8101. Dmg()
  8102. corw8.C0 = Lerp(corw8.C0, CFrame.new(-0.37, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-90)), 0.4)
  8103. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-60), math.rad(0), math.rad(0)), 0.4)
  8104. 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)
  8105. 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)
  8106. 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)
  8107. 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)
  8108. 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)
  8109. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8110. 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)
  8111. 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)
  8112. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.5)
  8113. 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)
  8114. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.5)
  8115. 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)
  8116. if Debounces.on == false then
  8117. break
  8118. end
  8119. rs:wait()
  8120. end
  8121. end
  8122. ----------------------------------------------------
  8123. ComboNum = 0
  8124. mouse.Button1Down:connect(function()
  8125. if Debounces.CanAttack == true then
  8126. Debounces.CanAttack = false
  8127. Debounces.NoIdl = true
  8128. Debounces.on = true
  8129. if ComboNum == 0 then
  8130. attackone()
  8131. elseif ComboNum == 1 then
  8132. attacktwo()
  8133. --[[elseif ComboNum == 2 then
  8134. attackthree()]]--
  8135. end
  8136. ComboNum = ComboNum + 1
  8137. Debounces.CanAttack = true
  8138. Debounces.on = false
  8139. wait(.5)
  8140. if Debounces.CanAttack == true then
  8141. ComboNum = 0
  8142. Debounces.NoIdl = false
  8143. end
  8144. end
  8145. end)
  8146. ----------------------------------------------------
  8147. definition = 5
  8148. bc = {}
  8149. bezierparts = {}
  8150. function NoOutline(Part)
  8151. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  8152. end
  8153. function draw(p,d)
  8154. for i=1,d do
  8155. local t = i/d
  8156. bc[i] = p[1]*(1-t)^2+2*p[2]*(1-t)*t+p[3]*t^2
  8157. end
  8158. for i=1,d do
  8159. local bcs = Instance.new("Part",char)
  8160. NoOutline(bcs)
  8161. bcs.Anchored = true
  8162. bcs.CanCollide = false
  8163. bcs.Material = "Neon"
  8164. bcs.BrickColor = BrickColor.new("Lime green")
  8165. bcs.Size = Vector3.new(1,1,1)
  8166. bcs.Shape = Enum.PartType.Ball
  8167. bcs.CFrame = CFrame.new(bc[i])
  8168. local bcp = Instance.new("Part",char)
  8169. NoOutline(bcp)
  8170. bcp.Anchored = true
  8171. bcp.CanCollide = false
  8172. bcp.Material = "Neon"
  8173. bcp.BrickColor = BrickColor.new("Lime green")
  8174. local cm = Instance.new("CylinderMesh")
  8175. cm.Parent = bcp
  8176. if i ~= 1 then
  8177. bcp.CFrame = CFrame.new(bc[i]:Lerp(bc[i-1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  8178. bcp.Size = Vector3.new(1,(bc[i]-bc[i-1]).magnitude,1)
  8179. else
  8180. bcp.CFrame = CFrame.new(bc[i]:Lerp(p[1],0.5),bc[i])*CFrame.Angles(math.pi/2,0,0)
  8181. bcp.Size = Vector3.new(1,(bc[i]-p[1]).magnitude,1)
  8182. end
  8183. table.insert(bezierparts, bcs)
  8184. table.insert(bezierparts, bcp)
  8185. end
  8186. Spawn(function() fat.Event:wait()
  8187. for i,v in pairs(bezierparts) do
  8188. v.Transparency = 1
  8189. end
  8190. end)
  8191. end
  8192. --local points = {larm.Position,rarn.Position,invisipart.Position}
  8193. --draw(points,definition)
  8194. mouse.KeyDown:connect(function(key)
  8195. if key == "f" then
  8196. if Debounces.CanAttack == true then
  8197. Debounces.CanAttack = false
  8198. Debounces.NoIdl = true
  8199. Debounces.on = true
  8200. for i = 1, 20 do
  8201. 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)
  8202. 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)
  8203. 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)
  8204. 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)
  8205. 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)
  8206. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8207. 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)
  8208. 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)
  8209. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  8210. 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)
  8211. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  8212. 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)
  8213. if Debounces.on == false then
  8214. break
  8215. end
  8216. fat.Event:wait()
  8217. end
  8218. rpart = Instance.new("Part",rarm)
  8219. NoOutline(rpart)
  8220. rpart.Anchored = false
  8221. rpart.Size = Vector3.new(1,1,1)
  8222. rpart.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  8223. rpart.Transparency = 1
  8224. newWeld(rarm, rpart, 0, 0, 0)
  8225. rpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  8226. lpart = Instance.new("Part",larm)
  8227. NoOutline(lpart)
  8228. lpart.Anchored = false
  8229. lpart.Size = Vector3.new(1,1,1)
  8230. lpart.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  8231. lpart.Transparency = 1
  8232. newWeld(larm, lpart, 0, 0, 0)
  8233. lpart.Weld.C1 = CFrame.new(0, 1.1, 0)
  8234. invisipart = Instance.new("Part",torso)
  8235. NoOutline(invisipart)
  8236. invisipart.Anchored = false
  8237. invisipart.Size = Vector3.new(1,1,1)
  8238. invisipart.Transparency = 1
  8239. invisipart.CFrame = torso.CFrame
  8240. newWeld(torso, invisipart, 0, 0, 0)
  8241. invisipart.Weld.C1 = CFrame.new(0, 0, 6)
  8242. table.insert(bezierparts, rpart)
  8243. table.insert(bezierparts, lpart)
  8244. table.insert(bezierparts, invisipart)
  8245. for i = 1, 40 do
  8246. local points = {lpart.Position,invisipart.Position,rpart.Position}
  8247. draw(points,definition)
  8248. --invisipart.Weld.C1 = invisipart.Weld.C1 + Vector3.new(0,0,0.6)
  8249. 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)
  8250. 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)
  8251. 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)
  8252. 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)
  8253. 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)
  8254. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0, 0, 0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  8255. 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)
  8256. 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)
  8257. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(-10)), 0.2)
  8258. 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)
  8259. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(0), 0, math.rad(10)), 0.2)
  8260. 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)
  8261. if Debounces.on == false then
  8262. break
  8263. end
  8264. fat.Event:wait()
  8265. end
  8266. for i,v in pairs(bezierparts) do
  8267. v:Destroy()
  8268. end
  8269. --draw(points,definition)
  8270. if Debounces.CanAttack == false then
  8271. Debounces.CanAttack = true
  8272. Debounces.NoIdl = false
  8273. Debounces.on = false
  8274. end
  8275. end
  8276. end
  8277. end)
  8278. ----------------------------------------------------
  8279. pitches = {0.85, 0.9, 0.95, 1, 1.05, 1.1}
  8280. IDs = {"415880409","415880478"}
  8281. mouse.KeyDown:connect(function(key)
  8282. if key == "h" then
  8283. if Debounces.CanJoke == true then
  8284. Debounces.CanJoke = false
  8285. z = Instance.new("Sound",hed)
  8286. z.SoundId = "rbxassetid://"..IDs[math.random(1,#IDs)]
  8287. z.Pitch = 1
  8288. z.Volume = 1
  8289. z1 = Instance.new("Sound",hed)
  8290. z1.SoundId = z.SoundId
  8291. z1.Pitch = 1
  8292. z1.Volume = 1
  8293. wait()
  8294. z:Play()
  8295. z1:Play()
  8296. wait(20)
  8297. z:Destroy()
  8298. z1:Destroy()
  8299. if Debounces.CanJoke == false then
  8300. Debounces.CanJoke = true
  8301. end
  8302. end
  8303. end
  8304. end)
  8305. ----------------------------------------------------
  8306. mouse.KeyDown:connect(function(key)
  8307. if key == "j" then
  8308. if Debounces.CanJoke == true then
  8309. Debounces.CanJoke = false
  8310. z = Instance.new("Sound",hed)
  8311. z.SoundId = "rbxassetid://415859013"
  8312. z.Pitch = pitches[math.random(1,#pitches)]
  8313. z.Volume = 1
  8314. wait()
  8315. z:Play()
  8316. wait(2)
  8317. z:Destroy()
  8318. if Debounces.CanJoke == false then
  8319. Debounces.CanJoke = true
  8320. end
  8321. end
  8322. end
  8323. end)
  8324. ----------------------------------------------------
  8325. mouse.KeyDown:connect(function(key)
  8326. if key == "k" then
  8327. if Debounces.CanJoke == true then
  8328. Debounces.CanJoke = false
  8329. z = Instance.new("Sound",hed)
  8330. z.SoundId = "rbxassetid://415859085"
  8331. z.Pitch = pitches[math.random(1,#pitches)]
  8332. z.Volume = 1
  8333. wait()
  8334. z:Play()
  8335. wait(2)
  8336. z:Destroy()
  8337. if Debounces.CanJoke == false then
  8338. Debounces.CanJoke = true
  8339. end
  8340. end
  8341. end
  8342. end)
  8343. ----------------------------------------------------
  8344. Grab = false
  8345. mouse.KeyDown:connect(function(key)
  8346. if key == "z" then
  8347. Debounces.on = true
  8348. Debounces.NoIdl = true
  8349. Debounces.ks = true
  8350. if Grab == false then
  8351. gp = nil
  8352. for i = 1, 20 do
  8353. 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)
  8354. 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)
  8355. 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)
  8356. 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)
  8357. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
  8358. 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)
  8359. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
  8360. 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)
  8361. 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)
  8362. 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)
  8363. 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)
  8364. 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)
  8365. if Debounces.on == false then break end
  8366. fat.Event:wait()
  8367. end
  8368. con1=larm.LeftArm.LeftArmPlate.Touched:connect(function(hit)
  8369. ht = hit.Parent
  8370. for i,v in pairs(ht:GetChildren()) do
  8371. if v:IsA("Part") then
  8372. v.CanCollide = false
  8373. v.CustomPhysicalProperties = PhysicalProperties.new(0.001,0.001,0.001,0.001,0.001)
  8374. end
  8375. end
  8376. hum1=ht:FindFirstChild('Humanoid')
  8377. if hum1 ~= nil then
  8378. if Debounces.ks==true then
  8379. z = Instance.new("Sound",hed)
  8380. z.SoundId = "rbxassetid://169380525"
  8381. z.Volume = 1
  8382. z:Play()
  8383. Debounces.ks=false
  8384. end
  8385. hum1.PlatformStand=true
  8386. hum1:ChangeState'Physics'
  8387. gp = ht
  8388. Grab = true
  8389. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,0.6),CFrame.new(0,0,0))
  8390. asd.Parent = larm
  8391. asd.Name = "asd"
  8392. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
  8393. stanceToggle = "Grabbed"
  8394. --[[elseif hum1 == nil then
  8395. con1:disconnect()
  8396. wait() return]]--
  8397. end
  8398. end)
  8399. for i = 1, 20 do
  8400. 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)
  8401. 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)
  8402. 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)
  8403. 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)
  8404. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.2)
  8405. 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)
  8406. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
  8407. 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)
  8408. 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)
  8409. 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)
  8410. 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)
  8411. 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)
  8412. if Debounces.on == false then break end
  8413. fat.Event:wait()
  8414. end
  8415. con1:disconnect()
  8416. Debounces.on = false
  8417. Debounces.NoIdl = false
  8418. elseif Grab == true then
  8419. Grab = false
  8420. --[[for i = 1, 16 do
  8421. 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)
  8422. 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)
  8423. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
  8424. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  8425. 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)
  8426. 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)
  8427. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
  8428. if Debounces.on == false then end
  8429. rs:wait()
  8430. end]]--
  8431. for i = 1, 16 do
  8432. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.3)
  8433. 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)
  8434. 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)
  8435. 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)
  8436. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
  8437. 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)
  8438. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.3)
  8439. 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)
  8440. 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)
  8441. 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)
  8442. 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)
  8443. 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)
  8444. if Debounces.on == false then end
  8445. rs:wait()
  8446. end
  8447. for i = 1, 12 do
  8448. 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)
  8449. 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)
  8450. 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)
  8451. 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)
  8452. 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)
  8453. 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)
  8454. 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)
  8455. 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)
  8456. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.6)
  8457. 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)
  8458. 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)
  8459. 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)
  8460. if Debounces.on == false then end
  8461. rs:wait()
  8462. end
  8463. Slam()
  8464. if gp ~= nil then
  8465. for i,v in pairs(larm:GetChildren()) do
  8466. if v.Name == "asd" and v:IsA("Weld") then
  8467. v:Remove()
  8468. end
  8469. if v:IsA("Part") then
  8470. v.CanCollide = true
  8471. v.CustomPhysicalProperties = PhysicalProperties.new(1,1,1,1,1)
  8472. end
  8473. end
  8474. end
  8475. stanceToggle = "Idle1"
  8476. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  8477. bv.maxForce = Vector3.new(400000, 400000, 400000)
  8478. bv.P = 125000
  8479. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  8480. ht=nil
  8481. Debounces.on = false
  8482. Debounces.NoIdl = false
  8483. elseif ht == nil then wait()
  8484. Grab = false
  8485. Debounces.on = false
  8486. Debounces.NoIdl = false
  8487. end
  8488. end
  8489. end)
  8490. ----------------------------------------------------
  8491. Change = false
  8492. mouse.KeyDown:connect(function(key)
  8493. if key == "n" then
  8494. if Change == false then
  8495. Change = true
  8496. stanceToggle = "Idle2"
  8497. elseif Change == true then
  8498. Change = false
  8499. stanceToggle = "Idle1"
  8500. end
  8501. end
  8502. end)
  8503. ----------------------------------------------------
  8504. mouse.KeyDown:connect(function(key)
  8505. if string.byte(key) == 52 then
  8506. Swing = 2
  8507. char.Humanoid.WalkSpeed = 28
  8508. end
  8509. end)
  8510. mouse.KeyUp:connect(function(key)
  8511. if string.byte(key) == 52 then
  8512. Swing = 1
  8513. char.Humanoid.WalkSpeed = 16
  8514. end
  8515. end)
  8516. ----------------------------------------------------
  8517. CR = torso.Cloak.Rotater
  8518. CR2 = torso.Cloak.CapeLevel1
  8519. CR3 = torso.Cloak.CapeLevel2
  8520. CR4 = torso.Cloak.CapeLevel3
  8521. CR5 = torso.Cloak.CapeLevel4
  8522. jump = false
  8523. rs:connect(function()
  8524. if char.Humanoid.Jump == true then
  8525. jump = true
  8526. else
  8527. jump = false
  8528. end
  8529. char.Humanoid.FreeFalling:connect(function(f)
  8530. if f then
  8531. ffing = true
  8532. else
  8533. ffing = false
  8534. end
  8535. end)
  8536. sine = sine + change
  8537. if jump == true then
  8538. animpose = "Jumping"
  8539. elseif ffing == true then
  8540. animpose = "Freefalling"
  8541. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  8542. animpose = "Idle"
  8543. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  8544. animpose = "Walking"
  8545. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  8546. animpose = "Running"
  8547. end
  8548. RightLeg = CFrame.new(0.5,-1,0)
  8549. LeftLeg = CFrame.new(-0.5,-1,0)
  8550.  
  8551. lefth = (torso.CFrame*LeftLeg)
  8552. righth = (torso.CFrame*RightLeg)
  8553.  
  8554. speed = Vector3.new(torso.Velocity.X,0,torso.Velocity.Z)
  8555.  
  8556. TiltOnAxis = (torso.CFrame-torso.CFrame.p):vectorToObjectSpace(speed/100)
  8557.  
  8558. local AngleThetaR = (righth-righth.p):vectorToObjectSpace(speed/100)
  8559. local AngleThetaL = (lefth-lefth.p):vectorToObjectSpace(speed/100)
  8560. if animpose ~= lastanimpose then
  8561. sine = 0
  8562. if Debounces.NoIdl == false then
  8563. if stanceToggle == "Idle1" then
  8564. 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)
  8565. 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)
  8566. 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)
  8567. 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)
  8568. 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)
  8569. 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)
  8570. elseif stanceToggle == "Idle2" then
  8571. 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)
  8572. 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)
  8573. 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)
  8574. 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)
  8575. 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)
  8576. 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)
  8577. end
  8578. fat.Event:wait()
  8579. end
  8580. else
  8581. end
  8582. lastanimpose = animpose
  8583. if Debounces.NoIdl == false then
  8584. if animpose == "Idle" then
  8585. change = 0.5
  8586. if stanceToggle == "Idle1" then
  8587. 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)
  8588. 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)
  8589. 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)
  8590. 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)
  8591. 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)
  8592. 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)
  8593. 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)
  8594. 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)
  8595. 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)
  8596. 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)
  8597. 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)
  8598. 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)
  8599. 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)
  8600. 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)
  8601. 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)
  8602. 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)
  8603. 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)
  8604. 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)
  8605. 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)
  8606. elseif stanceToggle == "Idle2" then
  8607. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-6),0,0),0.1)
  8608. 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)
  8609. 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)
  8610. 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)
  8611. 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)
  8612. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8613. 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)
  8614. 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)
  8615. 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)
  8616. 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)
  8617. 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)
  8618. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  8619. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  8620. --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)
  8621. 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)
  8622. 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)
  8623. 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)
  8624. 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)
  8625. 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)
  8626. elseif stanceToggle == "Grabbed" then
  8627. grab = true
  8628. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8629. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8630. 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)
  8631. 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)
  8632. 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)
  8633. 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)
  8634. 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)
  8635. 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)
  8636. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  8637. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.1)
  8638. 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)
  8639. 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)
  8640. 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)
  8641. 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)
  8642. end
  8643. elseif animpose == "Walking" then
  8644. if stanceToggle == "Grabbed" then
  8645. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8646. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8647. 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)
  8648. 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)
  8649. 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)
  8650. 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)
  8651. 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)
  8652. 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)
  8653. 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)
  8654. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  8655. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  8656. 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)
  8657. 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)
  8658. 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)
  8659. 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)
  8660. elseif stanceToggle ~= "Grabbed" then
  8661. change = 1
  8662. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8663. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8664. 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)
  8665. 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)
  8666. 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)
  8667. 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)
  8668. 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)
  8669. 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)
  8670. 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)
  8671. 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)
  8672. 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)
  8673. 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)
  8674. 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)
  8675. 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)
  8676. --rj.C0 = rj.C0:lerp(CFrame.Angles(math.rad(-90)+TiltOnAxis.Z,TiltOnAxis.X,math.rad(180)+-TiltOnAxis.X),.1)
  8677. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.8)
  8678. --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)
  8679. 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)
  8680. 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)
  8681. --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)
  8682. 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)
  8683. 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)
  8684. end
  8685. elseif animpose == "Running" then
  8686. change = 1
  8687. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8688. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8689. 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)
  8690. 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)
  8691. 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)
  8692. 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)
  8693. 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)
  8694. 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)
  8695. 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)
  8696. 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)
  8697. 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)
  8698. 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)
  8699. 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)
  8700. 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)
  8701. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8702. 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)
  8703. 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)
  8704. 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)
  8705. 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)
  8706. elseif animpose == "Jumping" then
  8707. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-30),0,0),0.2)
  8708. 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)
  8709. 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)
  8710. 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)
  8711. 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)
  8712. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8713. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8714. 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)
  8715. 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)
  8716. 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)
  8717. 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)
  8718. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(30),math.rad(0),0), 0.2)
  8719. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  8720. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8721. 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)
  8722. 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)
  8723. 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)
  8724. 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)
  8725. elseif animpose == "Freefalling" then
  8726. CR.Joint.C1 = Lerp(CR.Joint.C1, CFrame.new(0,0,0) * CFrame.Angles(math.rad(-110),0,0),0.2)
  8727. 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)
  8728. 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)
  8729. 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)
  8730. 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)
  8731. corw8.C0 = Lerp(corw8.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(180)), 0.3)
  8732. corw8.C1 = Lerp(corw8.C1, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  8733. 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)
  8734. 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)
  8735. 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)
  8736. 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)
  8737. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.2)
  8738. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.2)
  8739. torso.Weld.C1 = Lerp(torso.Weld.C1, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.4)
  8740. 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)
  8741. 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)
  8742. 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)
  8743. 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)
  8744. end
  8745. end
  8746. end)
  8747. hum.MaxHealth = 5000
  8748. wait(3)
  8749. hum.Health = 5000
  8750. while wait() do
  8751. wait(5)
  8752. for i=1,100 do wait()
  8753. Amulite.Brightness=Amulite.Brightness+0.02
  8754. end
  8755. for i=1,100 do wait()
  8756. Amulite.Brightness=Amulite.Brightness-0.02
  8757. end
  8758. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement