Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 145.96 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  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:FindFirstChild("Humanoid")
  11. local cam = game.Workspace.CurrentCamera
  12. local root = char.HumanoidRootPart
  13. local deb = false
  14. local shot = 0
  15. local l = game:GetService("Lighting")
  16. local rs = game:GetService("RunService").RenderStepped
  17. local hb = game:GetService("RunService").Heartbeat
  18. local debris = game:service("Debris")
  19. local stanceToggle = "Normal"
  20. math.randomseed(os.time())
  21. hum.JumpPower = 200
  22. hum.MaxHealth = 99999999999999999999999999999999999999999999999999999999999999999999999999999
  23. wait(1)
  24. hum.Health = 9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  25. CTB = {}
  26. fat = Instance.new("BindableEvent",script)
  27. fat.Name = "Heartbeat"
  28.  
  29. script:WaitForChild("Heartbeat")
  30.  
  31. frame = 1/30
  32. tf = 0
  33. 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.
  34. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  35. lastframe = tick()
  36. script.Heartbeat:Fire() --ayy lmao
  37.  
  38. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  39. tf = tf + s
  40. if tf >= frame then
  41. if allowframeloss then
  42. script.Heartbeat:Fire()
  43. lastframe=tick()
  44. else
  45. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  46. for i=1, math.floor(tf/frame) do
  47. script.Heartbeat:Fire()
  48. end
  49. lastframe=tick()
  50. end
  51. if tossremainder then
  52. tf = 0
  53. else
  54. tf = tf - frame * math.floor(tf/frame)
  55. end
  56. end
  57. end)
  58. ypcall(function()
  59.  
  60. char:FindFirstChild("Shirt"):Destroy()
  61. char:FindFirstChild("Pants"):Destroy()
  62. shirt = Instance.new("Shirt", char)
  63. shirt.Name = "Shirt"
  64. pants = Instance.new("Pants", char)
  65. pants.Name = "Pants"
  66. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  67. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  68. end
  69. )
  70. Debounces = {on = false, ks = false, CanAttack = true, CanJoke = true, NoIdl = false, Slashing = false, Slashed = false, Grabbing = false, Grabbed = false}
  71. local Touche = {char.Name}
  72. ------------------------------
  73. function lerp(a, b, t) -- Linear interpolation
  74. return a + (b - a)*t
  75. end
  76.  
  77. function slerp(a, b, t) --Spherical interpolation
  78. dot = a:Dot(b)
  79. if dot > 0.99999 or dot < -0.99999 then
  80. return t <= 0.5 and a or b
  81. else
  82. r = math.acos(dot)
  83. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  84. end
  85. end
  86.  
  87. function matrixInterpolate(a, b, t)
  88. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  89. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  90. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  91. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  92. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  93. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  94. local t = v1:Dot(v2)
  95. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  96. return CFrame.new()
  97. end
  98. return CFrame.new(
  99. v0.x, v0.y, v0.z,
  100. v1.x, v1.y, v1.z,
  101. v2.x, v2.y, v2.z,
  102. v3.x, v3.y, v3.z)
  103. end
  104. -------------------------
  105. function genWeld(a,b)
  106. local w = Instance.new("Weld",a)
  107. w.Part0 = a
  108. w.Part1 = b
  109. return w
  110. end
  111. function weld(a, b)
  112. local weld = Instance.new("Weld")
  113. weld.Name = "W"
  114. weld.Part0 = a
  115. weld.Part1 = b
  116. weld.C0 = a.CFrame:inverse() * b.CFrame
  117. weld.Parent = a
  118. return weld;
  119. end
  120. ----------------------------------------------------
  121. function Lerp(c1,c2,al)
  122. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  123. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  124. for i,v in pairs(com1) do
  125. com1[i] = v+(com2[i]-v)*al
  126. end
  127. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  128. end
  129. ----------------------------------------------------
  130. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  131. local wld = Instance.new("Weld", wp1)
  132. wld.Part0 = wp0
  133. wld.Part1 = wp1
  134. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  135. end
  136. ----------------------------------------------------
  137. Tween = function(a, b, c)
  138. return a + (b - a) * c
  139. end
  140. --------------------------
  141. NewPart = function(prnt, siz, cf, col)
  142. local prt = Instance.new("Part")
  143. prt.Parent = prnt
  144. prt.FormFactor = 3
  145. prt.Name = "Part"
  146. prt.Size = siz
  147. prt.CanCollide = false
  148. prt.Anchored = true
  149. prt.Locked = true
  150. prt.TopSurface = 10
  151. prt.BottomSurface = 10
  152. prt.FrontSurface = 10
  153. prt.BackSurface = 10
  154. prt.LeftSurface = 10
  155. prt.RightSurface = 10
  156. prt:BreakJoints()
  157. if not cf then
  158. prt.CFrame = CFrame.new(30, 10, 30)
  159. prt.Material = "Neon"
  160. prt.BrickColor = BrickColor.new(col)
  161. m = Instance.new("SpecialMesh", prt)
  162. m.MeshType = 6
  163. return prt
  164. end
  165. end
  166. --------------------------
  167. NewSound = function(parent, pitch, volume, id, looped)
  168.  
  169. local s = Instance.new("Sound", parent)
  170. s.Pitch = pitch
  171. s.Volume = volume 10
  172. s.SoundId = "rbxassetid://" .401676880. id
  173. s.Looped = looped
  174. return s
  175. end
  176.  
  177. newRay = function(start, face, range, wat)
  178.  
  179. local rey = Ray.new(start.p, (face.p - start.p).Unit * range)
  180. hit = Workspace:FindPartOnRayWithIgnoreList(rey, wat)
  181. return rey, hit, pos
  182. end
  183.  
  184. for i,v in pairs(char:children()) do
  185. if v:IsA("Hat") then
  186. v:Destroy()
  187. end
  188. end
  189. for i,v in pairs(hed:children()) do
  190. if v:IsA("Sound") then
  191. v:Destroy()
  192. end
  193. end
  194. HasntTouched = function(plrname)
  195.  
  196. local ret = true
  197. for _,v in pairs(Touche) do
  198. if v == plrname then
  199. ret = false
  200. end
  201. end
  202. return ret
  203. end
  204.  
  205. larm.Size = larm.Size * 2
  206. rarm.Size = rarm.Size * 2
  207. lleg.Size = lleg.Size * 2
  208. rleg.Size = rleg.Size * 2
  209. torso.Size = torso.Size * 2
  210. hed.Size = hed.Size * 2
  211. root.Size = root.Size * 2
  212. newWeld(torso, larm, -1.5, 0.5, 0)
  213. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  214. newWeld(torso, rarm, 1.5, 0.5, 0)
  215. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  216. newWeld(torso, hed, 0, 1.5, 0)
  217. newWeld(torso, lleg, -0.5, -1, 0)
  218. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  219. newWeld(torso, rleg, 0.5, -1, 0)
  220. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  221. newWeld(root, torso, 0, -1, 0)
  222. torso.Weld.C1 = CFrame.new(0, -1, 0)
  223. hed.face.Texture = "rbxassetid://272299908"
  224. z = Instance.new("Decal", hed)
  225. z.Face = "Front"
  226. z.Texture = "rbxassetid://99174105"
  227. z1 = Instance.new("Decal", hed)
  228. z1.Face = "Right"
  229. hed.BrickColor = BrickColor.new("Really black")
  230. lite = Instance.new("PointLight", torso)
  231. lite.Brightness = 14
  232. lite.Range = 10
  233. lite.Color = Color3.new(0, 0, 1)
  234. z = Instance.new("Sound", char)
  235. z.SoundId = "rbxassetid://411368002"
  236. z.Looped = true
  237. z.Pitch = 0.46
  238. z.Volume = 1
  239. wait(0.01)
  240. local l = game.Lighting
  241. local sky = Instance.new("Sky", l)
  242. sky.CelestialBodiesShown = false
  243. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  244. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  245. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  246. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  247. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  248. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  249. sky.StarCount = 0
  250. sky.Name = "GreenSpace"
  251. local m = Instance.new("Model")
  252. m.Name = "Cannon1"
  253. p1 = Instance.new("Part", m)
  254. p1.BrickColor = BrickColor.new("Really black")
  255. p1.Material = Enum.Material.Metal
  256. p1.Transparency = 1
  257. p1.Name = "ArmPart"
  258. p1.CFrame = CFrame.new(0.581796706, 5.99859476, -3.30460191, 0.996113539, 0.0433284715, 0.076688081, 0.00063173566, 0.867109001, -0.498118937, -0.0880796313, 0.496231258, 0.863711238)
  259. p1.Locked = true
  260. p1.FormFactor = Enum.FormFactor.Custom
  261. p1.Elasticity = 0
  262. p1.Size = Vector3.new(0.999999881, 1, 1)
  263. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  264. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  265. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  266. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  267. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  268. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  269. p2 = Instance.new("Part", m)
  270. p2.BrickColor = BrickColor.new("Really black")
  271. p2.Material = Enum.Material.Metal
  272. p2.Name = "Barrel1Main"
  273. p2.CFrame = CFrame.new(-0.615716994, 2.07050514, -16.8050823, 0.996056736, 0.0883464962, 0.0081301704, 0.000190305931, 0.08951094, -0.995986044, -0.0887195989, 0.992059886, 0.0891411602)
  274. p2.Locked = true
  275. p2.FormFactor = Enum.FormFactor.Custom
  276. p2.Elasticity = 0
  277. p2.Size = Vector3.new(4, 1.99999988, 4)
  278. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  279. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  280. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  281. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  282. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  283. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  284. b1 = Instance.new("CylinderMesh", p2)
  285. b1.Name = "Mesh"
  286. p3 = Instance.new("Part", m)
  287. p3.BrickColor = BrickColor.new("Really black")
  288. p3.Material = Enum.Material.Metal
  289. p3.Name = "Barrel1Part1"
  290. p3.CFrame = CFrame.new(-0.790599644, 1.89200282, -18.7893906, 0.996056855, 0.0883465037, 0.00813016761, 0.000190295686, 0.089511022, -0.995986164, -0.0887196064, 0.992060006, 0.0891412422)
  291. p3.Locked = true
  292. p3.FormFactor = Enum.FormFactor.Custom
  293. p3.Elasticity = 0
  294. p3.Size = Vector3.new(3.5, 2, 3.5)
  295. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  296. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  297. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  298. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  299. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  300. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  301. b2 = Instance.new("CylinderMesh", p3)
  302. b2.Name = "Mesh"
  303. p4 = Instance.new("Part", m)
  304. p4.BrickColor = BrickColor.new("Really black")
  305. p4.Material = Enum.Material.Metal
  306. p4.Name = "Barrel1Part2"
  307. p4.CFrame = CFrame.new(-0.96593082, 1.71337676, -20.7736721, 0.996056974, 0.0883465111, 0.00813017692, 0.00019030564, 0.0895110145, -0.995986283, -0.0887196139, 0.992060125, 0.0891412348)
  308. p4.Locked = true
  309. p4.FormFactor = Enum.FormFactor.Custom
  310. p4.Elasticity = 0
  311. p4.Size = Vector3.new(3, 2, 3)
  312. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  313. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  314. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  315. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  316. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  317. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  318. b3 = Instance.new("CylinderMesh", p4)
  319. b3.Name = "Mesh"
  320. p5 = Instance.new("Part", m)
  321. p5.BrickColor = BrickColor.new("Really black")
  322. p5.Material = Enum.Material.Metal
  323. p5.Name = "Barrel1End"
  324. p5.CFrame = CFrame.new(-1.14127386, 1.53474247, -22.7579479, 0.996057212, 0.0883465335, 0.00813017879, 0.00019030564, 0.0895110369, -0.995986521, -0.0887196362, 0.992060363, 0.0891412571)
  325. p5.Locked = true
  326. p5.FormFactor = Enum.FormFactor.Custom
  327. p5.Elasticity = 0
  328. p5.Size = Vector3.new(2.5, 2, 2.5)
  329. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  330. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  331. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  332. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  333. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  334. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  335. b4 = Instance.new("CylinderMesh", p5)
  336. b4.Name = "Mesh"
  337. p6 = Instance.new("Part", m)
  338. p6.BrickColor = BrickColor.new("Black")
  339. p6.Material = Enum.Material.Metal
  340. p6.Name = "BlackCylinder"
  341. p6.CFrame = CFrame.new(0.530412316, 4.23822689, -3.89782667, 0.088346459, -0.996056855, 0.00813017506, 0.0895109996, -0.000190309234, -0.995986164, 0.992060006, 0.0887195691, 0.0891412199)
  342. p6.Locked = true
  343. p6.FormFactor = Enum.FormFactor.Custom
  344. p6.Elasticity = 0
  345. p6.Size = Vector3.new(4, 1.20000005, 4)
  346. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  347. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  348. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  349. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  350. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  351. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  352. b5 = Instance.new("CylinderMesh", p6)
  353. b5.Name = "Mesh"
  354. p7 = Instance.new("Part", m)
  355. p7.BrickColor = BrickColor.new("Bright blue")
  356. p7.Material = Enum.Material.Neon
  357. p7.Name = "CenterCore"
  358. p7.CFrame = CFrame.new(-0.0644423366, 2.63128924, -10.579525, 0.996056616, 0.0883465037, 0.00813018903, 0.000190315142, 0.0895110443, -0.995985925, -0.0887195989, 0.992059886, 0.0891412571)
  359. p7.Locked = true
  360. p7.FormFactor = Enum.FormFactor.Custom
  361. p7.Elasticity = 0
  362. p7.Size = Vector3.new(2.5999999, 10.6499996, 2.5999999)
  363. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  364. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  365. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  366. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  367. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  368. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  369. p8 = Instance.new("Part", m)
  370. p8.BrickColor = BrickColor.new("Bright blue")
  371. p8.Material = Enum.Material.Neon
  372. p8.Name = "EndCore"
  373. p8.CFrame = CFrame.new(-1.14129305, 1.53475082, -22.7579384, 0.996057451, 0.0883465856, 0.00813015271, 0.000190271865, 0.089511089, -0.99598676, -0.0887196884, 0.992060602, 0.0891413167)
  374. p8.Locked = true
  375. p8.FormFactor = Enum.FormFactor.Custom
  376. p8.Elasticity = 0
  377. p8.Size = Vector3.new(1.5, 2.01999998, 1.5)
  378. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  379. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  380. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  381. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  382. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  383. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  384. b6 = Instance.new("CylinderMesh", p8)
  385. b6.Name = "Mesh"
  386. p9 = Instance.new("Part", m)
  387. p9.BrickColor = BrickColor.new("Bright blue")
  388. p9.Material = Enum.Material.Neon
  389. p9.Name = "LeftCore"
  390. p9.CFrame = CFrame.new(-1.54192448, 3.15233397, -4.62330246, 0.996056974, 0.0883465111, 0.00813017692, 0.000190305669, 0.0895110145, -0.995986342, -0.0887196213, 0.992060125, 0.0891412348)
  391. p9.Locked = true
  392. p9.FormFactor = Enum.FormFactor.Custom
  393. p9.Elasticity = 0
  394. p9.Size = Vector3.new(1, 4, 4)
  395. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  396. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  397. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  398. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  399. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  400. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  401. b7 = Instance.new("SpecialMesh", p9)
  402. b7.MeshType = Enum.MeshType.Sphere
  403. b7.Name = "Mesh"
  404. p10 = Instance.new("Part", m)
  405. p10.BrickColor = BrickColor.new("Really black")
  406. p10.Material = Enum.Material.Metal
  407. p10.CFrame = CFrame.new(-0.0521164536, 1.23685455, -10.4553328, 0.996057093, 0.0883464962, 0.00813019276, 0.000190315288, 0.0895110518, -0.995986402, -0.0887196288, 0.992059886, 0.0891412944)
  408. p10.Locked = true
  409. p10.FormFactor = Enum.FormFactor.Custom
  410. p10.Elasticity = 0
  411. p10.Size = Vector3.new(1.5, 10.6499996, 1.5)
  412. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  413. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  414. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  415. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  416. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  417. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  418. b8 = Instance.new("CylinderMesh", p10)
  419. b8.Name = "Mesh"
  420. p11 = Instance.new("Part", m)
  421. p11.BrickColor = BrickColor.new("Really black")
  422. p11.Material = Enum.Material.Metal
  423. p11.CFrame = CFrame.new(1.44622159, 3.15286684, -4.88948727, -0.0883464888, -0.996057212, -0.00813013036, -0.0895109549, -0.00019026165, 0.995986521, -0.992060006, 0.0887196213, -0.0891412124)
  424. p11.Locked = true
  425. p11.FormFactor = Enum.FormFactor.Custom
  426. p11.Elasticity = 0
  427. p11.Size = Vector3.new(2.5999999, 1, 1)
  428. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  429. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  430. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  431. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  432. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  433. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  434. p12 = Instance.new("Part", m)
  435. p12.BrickColor = BrickColor.new("Really black")
  436. p12.Material = Enum.Material.Metal
  437. p12.CFrame = CFrame.new(0.450196743, 3.1527276, -4.80074692, 0.088346459, -0.996056974, 0.00813017692, 0.0895109996, -0.000190309322, -0.995986283, 0.992060006, 0.0887195691, 0.0891412273)
  438. p12.Locked = true
  439. p12.FormFactor = Enum.FormFactor.Custom
  440. p12.Elasticity = 0
  441. p12.Size = Vector3.new(2.4000001, 5, 2.4000001)
  442. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  443. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  444. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  445. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  446. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  447. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  448. b9 = Instance.new("CylinderMesh", p12)
  449. b9.Name = "Mesh"
  450. p13 = Instance.new("WedgePart", m)
  451. p13.BrickColor = BrickColor.new("Really black")
  452. p13.Material = Enum.Material.Metal
  453. p13.Name = "Part"
  454. p13.CFrame = CFrame.new(0.45018059, 3.15268755, -4.80076313, 0.0883464739, -0.996057093, 0.00813019276, 0.0895110443, -0.000190317616, -0.995986402, 0.992059886, 0.0887196139, 0.0891412944)
  455. p13.Locked = true
  456. p13.FormFactor = Enum.FormFactor.Custom
  457. p13.Elasticity = 0
  458. p13.Size = Vector3.new(2.5999999, 4.19999981, 2.20000005)
  459. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  460. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  461. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  462. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  463. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  464. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  465. p14 = Instance.new("Part", m)
  466. p14.BrickColor = BrickColor.new("Really black")
  467. p14.Material = Enum.Material.Metal
  468. p14.CFrame = CFrame.new(0.261101305, 4.16617489, -6.92160463, 0.996056855, 0.0883464962, 0.00813017506, 0.000190305669, 0.0895109996, -0.995986164, -0.0887196064, 0.992060006, 0.0891412199)
  469. p14.Locked = true
  470. p14.FormFactor = Enum.FormFactor.Custom
  471. p14.Elasticity = 0
  472. p14.Size = Vector3.new(2.5, 5.05999947, 2.5)
  473. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  474. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  475. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  476. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  477. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  478. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  479. b10 = Instance.new("CylinderMesh", p14)
  480. b10.Name = "Mesh"
  481. p15 = Instance.new("Part", m)
  482. p15.BrickColor = BrickColor.new("Really black")
  483. p15.Material = Enum.Material.Metal
  484. p15.CFrame = CFrame.new(0.0623157024, 3.96475625, -9.15374756, 0.996056974, 0.0883465037, 0.00813017413, 0.00019030564, 0.0895109847, -0.995986283, -0.0887196139, 0.992060125, 0.089141205)
  485. p15.Locked = true
  486. p15.FormFactor = Enum.FormFactor.Custom
  487. p15.Elasticity = 0
  488. p15.Size = Vector3.new(2, 6.55999947, 2)
  489. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  490. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  491. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  492. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  493. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  494. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  495. b11 = Instance.new("CylinderMesh", p15)
  496. b11.Name = "Mesh"
  497. p16 = Instance.new("Part", m)
  498. p16.BrickColor = BrickColor.new("Really black")
  499. p16.Material = Enum.Material.Metal
  500. p16.CFrame = CFrame.new(0.489410222, 0.53123641, -4.36610842, 0.0883464664, -0.996057093, 0.00813017506, 0.0895109773, -0.000190309278, -0.995986402, 0.992060125, 0.0887195915, 0.0891412199)
  501. p16.Locked = true
  502. p16.FormFactor = Enum.FormFactor.Custom
  503. p16.Elasticity = 0
  504. p16.Size = Vector3.new(1, 2.5999999, 1)
  505. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  506. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  507. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  508. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  509. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  510. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  511. b12 = Instance.new("CylinderMesh", p16)
  512. b12.Name = "Mesh"
  513. p17 = Instance.new("Part", m)
  514. p17.BrickColor = BrickColor.new("Really black")
  515. p17.Material = Enum.Material.Metal
  516. p17.CFrame = CFrame.new(-0.0741840154, 3.82647705, -10.686492, 0.996057093, 0.0883465111, 0.00813017506, 0.000190305713, 0.0895109922, -0.995986402, -0.0887196213, 0.992060244, 0.0891412124)
  517. p17.Locked = true
  518. p17.FormFactor = Enum.FormFactor.Custom
  519. p17.Elasticity = 0
  520. p17.Size = Vector3.new(1.5, 10.6499996, 1.5)
  521. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  522. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  523. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  524. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  525. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  526. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  527. b13 = Instance.new("CylinderMesh", p17)
  528. b13.Name = "Mesh"
  529. p18 = Instance.new("WedgePart", m)
  530. p18.BrickColor = BrickColor.new("Really black")
  531. p18.Material = Enum.Material.Metal
  532. p18.Name = "Part"
  533. p18.CFrame = CFrame.new(0.45018059, 3.15268755, -4.80076313, 0.0883464739, -0.996057093, 0.00813019276, 0.0895110443, -0.000190317616, -0.995986402, 0.992059886, 0.0887196139, 0.0891412944)
  534. p18.Locked = true
  535. p18.FormFactor = Enum.FormFactor.Custom
  536. p18.Elasticity = 0
  537. p18.Size = Vector3.new(2.5999999, 1, 1)
  538. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  539. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  540. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  541. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  542. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  543. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  544. p19 = Instance.new("Part", m)
  545. p19.BrickColor = BrickColor.new("Really black")
  546. p19.Material = Enum.Material.Metal
  547. p19.CFrame = CFrame.new(0.45018059, 3.15268755, -4.80076313, 0.0883464739, -0.996056736, 0.00813018996, 0.0895110443, -0.000190317587, -0.995986044, 0.992059886, 0.088719584, 0.0891412646)
  548. p19.Locked = true
  549. p19.FormFactor = Enum.FormFactor.Custom
  550. p19.Elasticity = 0
  551. p19.Size = Vector3.new(5, 4, 5)
  552. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  553. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  554. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  555. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  556. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  557. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  558. b14 = Instance.new("CylinderMesh", p19)
  559. b14.Name = "Mesh"
  560. p20 = Instance.new("Part", m)
  561. p20.BrickColor = BrickColor.new("Really black")
  562. p20.Material = Enum.Material.Metal
  563. p20.CFrame = CFrame.new(0.692698598, 3.39841413, -2.07754064, 0.996057093, 0.0883465186, 0.00813019183, 0.000190315244, 0.0895110667, -0.995986402, -0.0887196288, 0.992060244, 0.0891412869)
  564. p20.Locked = true
  565. p20.FormFactor = Enum.FormFactor.Custom
  566. p20.Elasticity = 0
  567. p20.Size = Vector3.new(3, 2.49000025, 2)
  568. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  569. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  570. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  571. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  572. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  573. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  574. p21 = Instance.new("Part", m)
  575. p21.BrickColor = BrickColor.new("Really black")
  576. p21.Material = Enum.Material.Metal
  577. p21.CFrame = CFrame.new(0.283176571, 1.57656097, -6.69044447, 0.996056855, 0.0883464962, 0.00813019089, 0.000190315084, 0.0895110518, -0.995986164, -0.0887196139, 0.992059886, 0.0891412795)
  578. p21.Locked = true
  579. p21.FormFactor = Enum.FormFactor.Custom
  580. p21.Elasticity = 0
  581. p21.Size = Vector3.new(2.5, 5.05999947, 2.5)
  582. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  583. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  584. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  585. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  586. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  587. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  588. b15 = Instance.new("CylinderMesh", p21)
  589. b15.Name = "Mesh"
  590. p22 = Instance.new("Part", m)
  591. p22.BrickColor = BrickColor.new("Really black")
  592. p22.Material = Enum.Material.Metal
  593. p22.CFrame = CFrame.new(0.0843902677, 1.37515485, -8.92259026, 0.996056974, 0.0883464962, 0.00813019183, 0.000190315099, 0.0895110518, -0.995986283, -0.0887196213, 0.992059886, 0.0891412869)
  594. p22.Locked = true
  595. p22.FormFactor = Enum.FormFactor.Custom
  596. p22.Elasticity = 0
  597. p22.Size = Vector3.new(2, 6.55999947, 2)
  598. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  599. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  600. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  601. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  602. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  603. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  604. b16 = Instance.new("CylinderMesh", p22)
  605. b16.Name = "Mesh"
  606. p23 = Instance.new("Part", m)
  607. p23.BrickColor = BrickColor.new("Really black")
  608. p23.Material = Enum.Material.Metal
  609. p23.CFrame = CFrame.new(1.23360837, 2.5358398, -10.6859207, 0.00805338938, 0.0878702328, -0.99609983, -0.996064246, 0.0886407495, -0.00023371623, 0.088274464, 0.992180645, 0.0882382169)
  610. p23.Locked = true
  611. p23.FormFactor = Enum.FormFactor.Custom
  612. p23.Elasticity = 0
  613. p23.Size = Vector3.new(1.5, 10.6499996, 1.5)
  614. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  615. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  616. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  617. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  618. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  619. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  620. b17 = Instance.new("CylinderMesh", p23)
  621. b17.Name = "Mesh"
  622. p24 = Instance.new("Part", m)
  623. p24.BrickColor = BrickColor.new("Really black")
  624. p24.Material = Enum.Material.Metal
  625. p24.CFrame = CFrame.new(-1.02281618, 2.87056255, -6.69155407, 0.00805338752, 0.0878702253, -0.996099591, -0.996064007, 0.0886407346, -0.000233715589, 0.0882744491, 0.992180407, 0.0882382095)
  626. p24.Locked = true
  627. p24.FormFactor = Enum.FormFactor.Custom
  628. p24.Elasticity = 0
  629. p24.Size = Vector3.new(2.5, 5.05999947, 2.5)
  630. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  631. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  632. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  633. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  634. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  635. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  636. b18 = Instance.new("CylinderMesh", p24)
  637. b18.Name = "Mesh"
  638. p25 = Instance.new("Part", m)
  639. p25.BrickColor = BrickColor.new("Really black")
  640. p25.Material = Enum.Material.Metal
  641. p25.CFrame = CFrame.new(1.3693676, 2.67276216, -9.15297699, 0.00805338845, 0.0878702253, -0.99609971, -0.996064126, 0.088640742, -0.0002337162, 0.0882744566, 0.992180526, 0.0882382095)
  642. p25.Locked = true
  643. p25.FormFactor = Enum.FormFactor.Custom
  644. p25.Elasticity = 0
  645. p25.Size = Vector3.new(2, 6.55999947, 2)
  646. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  647. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  648. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  649. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  650. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  651. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  652. b19 = Instance.new("CylinderMesh", p25)
  653. b19.Name = "Mesh"
  654. p26 = Instance.new("Part", m)
  655. p26.BrickColor = BrickColor.new("Really black")
  656. p26.Material = Enum.Material.Metal
  657. p26.CFrame = CFrame.new(-1.22053206, 2.67111492, -8.92396164, 0.00805338845, 0.0878702328, -0.99609971, -0.996064126, 0.088640742, -0.000233715647, 0.0882744566, 0.992180526, 0.0882382169)
  658. p26.Locked = true
  659. p26.FormFactor = Enum.FormFactor.Custom
  660. p26.Elasticity = 0
  661. p26.Size = Vector3.new(2, 6.55999947, 2)
  662. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  663. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  664. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  665. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  666. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  667. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  668. b20 = Instance.new("CylinderMesh", p26)
  669. b20.Name = "Mesh"
  670. p27 = Instance.new("Part", m)
  671. p27.BrickColor = BrickColor.new("Really black")
  672. p27.Material = Enum.Material.Metal
  673. p27.CFrame = CFrame.new(1.56709123, 2.87219977, -6.92055225, 0.00805338752, 0.0878702179, -0.996099591, -0.996064007, 0.0886407346, -0.0002337162, 0.0882744491, 0.992180407, 0.088238202)
  674. p27.Locked = true
  675. p27.FormFactor = Enum.FormFactor.Custom
  676. p27.Elasticity = 0
  677. p27.Size = Vector3.new(2.5, 5.05999947, 2.5)
  678. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  679. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  680. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  681. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  682. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  683. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  684. b21 = Instance.new("CylinderMesh", p27)
  685. b21.Name = "Mesh"
  686. p28 = Instance.new("Part", m)
  687. p28.BrickColor = BrickColor.new("Really black")
  688. p28.Material = Enum.Material.Metal
  689. p28.CFrame = CFrame.new(-1.35629213, 2.53418827, -10.4568977, 0.00805338938, 0.0878702402, -0.99609983, -0.996064246, 0.0886407495, -0.000233715677, 0.088274464, 0.992180645, 0.0882382244)
  690. p28.Locked = true
  691. p28.FormFactor = Enum.FormFactor.Custom
  692. p28.Elasticity = 0
  693. p28.Size = Vector3.new(1.5, 10.6499996, 1.5)
  694. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  695. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  696. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  697. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  698. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  699. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  700. b22 = Instance.new("CylinderMesh", p28)
  701. b22.Name = "Mesh"
  702. p29 = Instance.new("Part", m)
  703. p29.BrickColor = BrickColor.new("Bright blue")
  704. p29.Material = Enum.Material.Neon
  705. p29.Name = "RightCore"
  706. p29.CFrame = CFrame.new(2.44230223, 3.15306687, -4.9781971, 0.996056855, 0.0883465037, 0.00813019089, 0.000190315186, 0.0895110443, -0.995986164, -0.0887196139, 0.992059886, 0.089141272)
  707. p29.Locked = true
  708. p29.FormFactor = Enum.FormFactor.Custom
  709. p29.Elasticity = 0
  710. p29.Size = Vector3.new(1, 4, 4)
  711. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  712. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  713. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  714. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  715. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  716. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  717. b23 = Instance.new("SpecialMesh", p29)
  718. b23.MeshType = Enum.MeshType.Sphere
  719. b23.Name = "Mesh"
  720. p30 = Instance.new("WedgePart", m)
  721. p30.BrickColor = BrickColor.new("Really black")
  722. p30.Material = Enum.Material.Metal
  723. p30.Name = "Part"
  724. p30.CFrame = CFrame.new(0.700464249, 5.26936245, -1.98473287, 0.996056974, 0.0883465037, 0.00813017599, 0.000190305742, 0.0895110071, -0.995986283, -0.0887196139, 0.992060125, 0.0891412273)
  725. p30.Locked = true
  726. p30.FormFactor = Enum.FormFactor.Custom
  727. p30.Elasticity = 0
  728. p30.Size = Vector3.new(3, 1.81000018, 1.71000016)
  729. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  730. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  731. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  732. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  733. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  734. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  735. p31 = Instance.new("WedgePart", m)
  736. p31.BrickColor = BrickColor.new("Really black")
  737. p31.Material = Enum.Material.Metal
  738. p31.Name = "Part"
  739. p31.CFrame = CFrame.new(0.335568041, 0.827270269, -6.09273863, 0.996056974, -0.0883464962, -0.00813016761, 0.000190305582, -0.0895108953, 0.995986283, -0.0887196213, -0.992060006, -0.0891411379)
  740. p31.Locked = true
  741. p31.FormFactor = Enum.FormFactor.Custom
  742. p31.Elasticity = 0
  743. p31.Size = Vector3.new(2.5999999, 3, 1.79999995)
  744. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  745. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  746. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  747. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  748. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  749. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  750. p32 = Instance.new("WedgePart", m)
  751. p32.BrickColor = BrickColor.new("Really black")
  752. p32.Material = Enum.Material.Metal
  753. p32.Name = "Part"
  754. p32.CFrame = CFrame.new(0.617143035, 1.41089261, -2.87375259, -0.996111989, 0.0827950761, -0.0301159136, -0.000646688626, 0.334949106, 0.942236722, 0.0880998224, 0.938591957, -0.333593071)
  755. p32.Locked = true
  756. p32.FormFactor = Enum.FormFactor.Custom
  757. p32.Elasticity = 0
  758. p32.Size = Vector3.new(2.5999999, 2.81999993, 1.5)
  759. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  760. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  761. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  762. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  763. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  764. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  765. w1 = Instance.new("Weld", p1)
  766. w1.Name = "Joint"
  767. w1.Part0 = p1
  768. w1.C0 = CFrame.new(-4.57763672e-05, -1.82303238, 0.360556602, 0.00067937636, -0.999999762, -0.000382148719, 0.573734701, 0.000702777412, -0.819041073, 0.819041073, 0.000337185105, 0.573734939)
  769. w1.Part1 = p6
  770. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  771. w2 = Instance.new("Weld", p2)
  772. w2.Name = "Weld"
  773. w2.Part0 = p2
  774. w2.C0 = CFrame.new(-0.00312137604, 6.27502441, 0.000902175903, 1.00000012, 1.0302756e-08, 1.01942987e-08, -1.0302756e-08, 1, 1.06680091e-07, -1.01952367e-08, -1.06680091e-07, 1.00000012)
  775. w2.Part1 = p7
  776. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  777. w3 = Instance.new("Weld", p3)
  778. w3.Name = "Weld"
  779. w3.Part0 = p3
  780. w3.C0 = CFrame.new(-0.00182008743, 1.99998093, 0.000519752502, 1.00000012, 8.73114914e-10, 1.03833457e-08, -8.73114914e-10, 1.00000012, -7.46367732e-08, -1.03894564e-08, 7.46367732e-08, 1.00000012)
  781. w3.Part1 = p2
  782. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  783. w4 = Instance.new("Weld", p4)
  784. w4.Name = "Weld"
  785. w4.Part0 = p4
  786. w4.C0 = CFrame.new(-0.00137090683, 2.00000477, 0.00039768219, 1.00000012, -1.16415322e-10, -9.98186067e-09, 1.16415322e-10, 1.00000012, 1.648732e-08, 9.9945936e-09, -1.648732e-08, 1.00000012)
  787. w4.Part1 = p3
  788. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  789. w5 = Instance.new("Weld", p5)
  790. w5.Name = "Weld"
  791. w5.Part0 = p5
  792. w5.C0 = CFrame.new(-0.00135850906, 2, 0.000389099121, 1.00000024, 5.82076609e-11, 4.10551593e-11, 0, 1.00000024, -1.45519152e-11, 1.1937118e-11, 0, 1.00000024)
  793. w5.Part1 = p4
  794. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  795. w6 = Instance.new("Weld", p6)
  796. w6.Name = "Joint"
  797. w6.Part0 = p6
  798. w6.C0 = CFrame.new(-1.00002265, 1.38282776e-05, 1.00004005, 1.00000012, 2.49710865e-08, 5.52099664e-08, -2.49710865e-08, 1.00000012, -1.06679323e-08, -5.52245183e-08, 1.06616369e-08, 1.00000012)
  799. w6.Part1 = p19
  800. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  801. w7 = Instance.new("Weld", p7)
  802. w7.Name = "Joint"
  803. w7.Part0 = p7
  804. w7.C0 = CFrame.new(3.33786011e-06, 5.82501316, 4.76837158e-06, -2.61934474e-08, -1.00000012, 9.32942612e-11, 1, -2.61934474e-08, -4.36557457e-11, 4.36557457e-11, 7.62696573e-11, 1.00000012)
  805. w7.Part1 = p19
  806. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  807. w8 = Instance.new("Weld", p8)
  808. w8.Name = "Joint"
  809. w8.Part0 = p8
  810. w8.C0 = CFrame.new(2.00085342e-05, -8.58306885e-06, 7.62939453e-06, 1.00000024, -3.09082679e-08, 3.11761568e-08, 3.09082679e-08, 1.00000024, -3.19705578e-08, -3.11217718e-08, 3.19414539e-08, 1.00000024)
  811. w8.Part1 = p5
  812. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  813. w9 = Instance.new("Weld", p9)
  814. w9.Name = "Joint"
  815. w9.Part0 = p9
  816. w9.C0 = CFrame.new(0.7005018, -2.03118896, 0.100494385, 3.99144028e-07, -0.000485243596, -1, -0.000873637327, 0.999999642, -0.000485243771, 0.999999762, 0.000873637502, -2.47675374e-08)
  817. w9.Part1 = p24
  818. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  819. w10 = Instance.new("Weld", p10)
  820. w10.Name = "Joint"
  821. w10.Part0 = p10
  822. w10.C0 = CFrame.new(1.04587525e-05, 1.54501152, -4.76837158e-06, 1.00000012, -2.32830644e-10, -1.7324453e-10, 2.32830644e-10, 1, 1.45519152e-11, 1.76058279e-10, -1.45519152e-11, 1.00000012)
  823. w10.Part1 = p22
  824. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  825. w11 = Instance.new("Weld", p11)
  826. w11.Name = "Joint"
  827. w11.Part0 = p11
  828. w11.C0 = CFrame.new(-6.67572021e-06, 0.999984264, 1.04904175e-05, -1.00000012, 1.10012479e-08, -9.77970132e-08, 1.10594556e-08, 1.00000012, -5.52245183e-08, 9.7803607e-08, -5.52245183e-08, -1.00000012)
  829. w11.Part1 = p18
  830. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  831. w12 = Instance.new("Weld", p12)
  832. w12.Name = "Joint"
  833. w12.Part0 = p12
  834. w12.C0 = CFrame.new(1.54972076e-06, 2.00000858, 1.52587891e-05, -4.01050784e-08, 1.00000012, 0, -1.00000012, -4.01050784e-08, 6.2996719e-11, 4.56168436e-11, 0, 1.00000012)
  835. w12.Part1 = p9
  836. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  837. w13 = Instance.new("Weld", p13)
  838. w13.Name = "Joint"
  839. w13.Part0 = p13
  840. w13.C0 = CFrame.new(0, 0, 0, 1, -5.82076609e-11, 0, -5.82076609e-11, 1.00000036, -4.01456646e-11, 0, -4.01456646e-11, 1.00000036)
  841. w13.Part1 = p19
  842. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  843. w14 = Instance.new("Weld", p14)
  844. w14.Name = "Joint"
  845. w14.Part0 = p14
  846. w14.C0 = CFrame.new(-1.9358471e-05, 2.02998734, 1.2000103, -1.51339918e-08, -1.00000012, 1.06310267e-08, 1.00000012, -1.51339918e-08, 5.51954145e-08, -5.52099664e-08, 1.06325473e-08, 1.00000012)
  847. w14.Part1 = p19
  848. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  849. w15 = Instance.new("Weld", p15)
  850. w15.Name = "Joint"
  851. w15.Part0 = p15
  852. w15.C0 = CFrame.new(5.24520874e-06, 2.25001001, -1.8119812e-05, 1.00000012, -1.16415322e-10, 4.56026328e-11, 1.16415322e-10, 1.00000012, 2.15513865e-08, -5.6147087e-11, -2.15513865e-08, 1.00000012)
  853. w15.Part1 = p14
  854. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  855. w16 = Instance.new("Weld", p16)
  856. w16.Name = "Joint"
  857. w16.Part0 = p16
  858. w16.C0 = CFrame.new(-1.70001316, -6.67572021e-06, -0.450009823, -4.0337909e-08, -1.00000012, 7.68050086e-08, -1.00000012, 4.0337909e-08, -5.43565193e-11, 6.0254024e-11, -7.68050086e-08, -1.00000012)
  859. w16.Part1 = p31
  860. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  861. w17 = Instance.new("Weld", p17)
  862. w17.Name = "Joint"
  863. w17.Part0 = p17
  864. w17.C0 = CFrame.new(3.33786011e-06, 1.54501009, 1.62124634e-05, 1.00000012, -1.16415322e-10, -5.62039304e-11, 1.16415322e-10, 1.00000012, -1.45519152e-11, 6.02256023e-11, 1.45519152e-11, 1.00000012)
  865. w17.Part1 = p15
  866. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  867. w18 = Instance.new("Weld", p18)
  868. w18.Name = "Joint"
  869. w18.Part0 = p18
  870. w18.C0 = CFrame.new(0, 0, 0, 1, -5.82076609e-11, 0, -5.82076609e-11, 1.00000036, -4.01456646e-11, 0, -4.01456646e-11, 1.00000036)
  871. w18.Part1 = p19
  872. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  873. w19 = Instance.new("Weld", p19)
  874. w19.Name = "Joint"
  875. w19.Part0 = p19
  876. w19.C0 = CFrame.new(5.7220459e-06, -2.00000763, 1.90734863e-06, -2.62516551e-08, 1, 2.91038305e-11, -1.00000012, -2.62516551e-08, 7.62554464e-11, 9.32800504e-11, -2.91038305e-11, 1.00000012)
  877. w19.Part1 = p29
  878. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  879. w20 = Instance.new("Weld", p20)
  880. w20.Name = "Joint"
  881. w20.Part0 = p20
  882. w20.C0 = CFrame.new(-0.000142740086, 0.260227203, -1.85510063, 1.00000012, -1.09430403e-08, -1.04921014e-08, 1.09430403e-08, 1.00000012, -5.52245183e-08, 1.04854792e-08, 5.52245183e-08, 1.00000012)
  883. w20.Part1 = p30
  884. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  885. w21 = Instance.new("Weld", p21)
  886. w21.Name = "Joint"
  887. w21.Part0 = p21
  888. w21.C0 = CFrame.new(-0.00100636669, 2.03051186, -1.39999294, -2.60770321e-08, -1.00000012, 2.09738005e-10, 1, -2.60770321e-08, -6.7811925e-09, 6.7811925e-09, 1.97260874e-10, 1.00000012)
  889. w21.Part1 = p19
  890. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  891. w22 = Instance.new("Weld", p22)
  892. w22.Name = "Joint"
  893. w22.Part0 = p22
  894. w22.C0 = CFrame.new(5.7220459e-06, 2.25001168, -5.24520874e-06, 1.00000012, 1.16415322e-10, 3.05249159e-11, -1.16415322e-10, 1, 0, -2.76969558e-11, 0, 1.00000012)
  895. w22.Part1 = p21
  896. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  897. w23 = Instance.new("Weld", p23)
  898. w23.Name = "Joint"
  899. w23.Part0 = p23
  900. w23.C0 = CFrame.new(2.95639038e-05, 1.54502153, 2.38418579e-06, 1.00000012, -1.16415322e-10, 7.44648787e-12, 1.16415322e-10, 1.00000012, -1.45519152e-11, 7.46069873e-12, 1.45519152e-11, 1.00000012)
  901. w23.Part1 = p25
  902. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  903. w24 = Instance.new("Weld", p24)
  904. w24.Name = "Joint"
  905. w24.Part0 = p24
  906. w24.C0 = CFrame.new(-0.102243423, 2.0304451, -1.30047679, -0.000873692508, -3.88481681e-07, 0.999999762, 0.999999583, 0.000485228404, 0.000873692683, -0.000485228549, 1, -3.54670391e-08)
  907. w24.Part1 = p19
  908. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  909. w25 = Instance.new("Weld", p25)
  910. w25.Name = "Joint"
  911. w25.Part0 = p25
  912. w25.C0 = CFrame.new(5.7220459e-06, 2.25001979, -1.38282776e-05, 1.00000012, -1.16415322e-10, 3.657874e-11, 1.16415322e-10, 1.00000012, -1.45519152e-11, -2.161471e-11, 1.45519152e-11, 1.00000012)
  913. w25.Part1 = p27
  914. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  915. w26 = Instance.new("Weld", p26)
  916. w26.Name = "Joint"
  917. w26.Part0 = p26
  918. w26.C0 = CFrame.new(-5.7220459e-06, 2.25000286, -7.62939453e-06, 1.00000012, 1.74622983e-10, -2.61763944e-11, -1.74622983e-10, 1.00000012, 2.91038305e-11, 3.20170557e-11, -2.91038305e-11, 1.00000012)
  919. w26.Part1 = p24
  920. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  921. w27 = Instance.new("Weld", p27)
  922. w27.Name = "Joint"
  923. w27.Part0 = p27
  924. w27.C0 = CFrame.new(-0.101255417, 2.02993202, 1.29953432, -0.000873692334, -3.88510671e-07, 0.999999762, 0.999999583, 0.000485235127, 0.000873692508, -0.000485235272, 1, -3.54392427e-08)
  925. w27.Part1 = p19
  926. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  927. w28 = Instance.new("Weld", p28)
  928. w28.Name = "Joint"
  929. w28.Part0 = p28
  930. w28.C0 = CFrame.new(2.47955322e-05, 1.54501534, 9.53674316e-07, 1.00000012, 5.82076609e-11, 2.95585778e-12, -5.82076609e-11, 1.00000012, 1.45519152e-11, 2.95585778e-12, -1.45519152e-11, 1.00000012)
  931. w28.Part1 = p26
  932. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  933. w29 = Instance.new("Weld", p29)
  934. w29.Name = "Joint"
  935. w29.Part0 = p29
  936. w29.C0 = CFrame.new(-1.99999273, 1.52587891e-05, -4.00543213e-05, -5.11645339e-08, -1.00000012, -1.05212195e-08, 1.00000012, -5.11645339e-08, -5.52390702e-08, 5.52390702e-08, -1.05223847e-08, 1.00000012)
  937. w29.Part1 = p12
  938. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  939. w30 = Instance.new("Weld", p30)
  940. w30.Name = "Joint"
  941. w30.Part0 = p30
  942. w30.C0 = CFrame.new(0.000151295215, -2.00522423, 0.855077744, -4.0163286e-08, -1.00000012, -7.07984782e-11, 1.00000012, -4.0163286e-08, -1.45519152e-11, 1.45519152e-11, -5.34186029e-11, 1.00000012)
  943. w30.Part1 = p6
  944. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  945. w31 = Instance.new("Weld", p31)
  946. w31.Name = "Joint"
  947. w31.Part0 = p31
  948. w31.C0 = CFrame.new(-2.03885138e-05, -1.49999237, 2.19998169, -1.52504072e-08, -1.00000024, 1.07182956e-08, -1.00000012, 1.53086148e-08, -1.53580913e-07, 1.53595465e-07, -1.06821432e-08, -1.00000024)
  949. w31.Part1 = p19
  950. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  951. w32 = Instance.new("Weld", p32)
  952. w32.Name = "Joint"
  953. w32.Part0 = p32
  954. w32.C0 = CFrame.new(-0.00367116928, -1.70592725, -0.327157497, -0.000660548452, 0.999999762, 0.000398853881, 0.968435347, 0.000739118608, -0.249264106, -0.24926433, 0.000221613169, -0.968435585)
  955. w32.Part1 = p16
  956. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  957. m.Parent = char
  958. m:MakeJoints()
  959. local cor = Instance.new("Part", char.Cannon1)
  960. cor.Name = "Thingy"
  961. cor.Locked = true
  962. cor.BottomSurface = 0
  963. cor.CanCollide = false
  964. cor.Size = Vector3.new(1, 1, 1)
  965. cor.Transparency = 1
  966. cor.TopSurface = 0
  967. corw = Instance.new("Weld", cor)
  968. corw.Part0 = rarm
  969. corw.Part1 = cor
  970. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0))
  971. corw.C1 = CFrame.new(0, 0, 0)
  972. weld1 = Instance.new("Weld", char.Cannon1)
  973. weld1.Part0 = cor
  974. weld1.Part1 = char.Cannon1.ArmPart
  975. weld1.C0 = CFrame.new(0, 0, 0)
  976. local m2 = Instance.new("Model")
  977. m2.Name = "Cannon2"
  978. p1 = Instance.new("Part", m2)
  979. p1.BrickColor = BrickColor.new("Really black")
  980. p1.Material = Enum.Material.Metal
  981. p1.Transparency = 1
  982. p1.Name = "ArmPart"
  983. p1.CFrame = CFrame.new(0.581796706, 5.99859476, -3.30460191, 0.996113539, 0.0433284715, 0.076688081, 0.00063173566, 0.867109001, -0.498118937, -0.0880796313, 0.496231258, 0.863711238)
  984. p1.Locked = true
  985. p1.FormFactor = Enum.FormFactor.Custom
  986. p1.Elasticity = 0
  987. p1.Size = Vector3.new(0.999999881, 1, 1)
  988. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  989. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  990. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  991. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  992. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  993. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  994. p2 = Instance.new("Part", m2)
  995. p2.BrickColor = BrickColor.new("Really black")
  996. p2.Material = Enum.Material.Metal
  997. p2.Name = "Barrel2Main"
  998. p2.CFrame = CFrame.new(-0.615716994, 2.07050514, -16.8050823, 0.996056736, 0.0883464962, 0.0081301704, 0.000190305931, 0.08951094, -0.995986044, -0.0887195989, 0.992059886, 0.0891411602)
  999. p2.Locked = true
  1000. p2.FormFactor = Enum.FormFactor.Custom
  1001. p2.Elasticity = 0
  1002. p2.Size = Vector3.new(4, 1.99999988, 4)
  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. b1 = Instance.new("CylinderMesh", p2)
  1010. b1.Name = "Mesh"
  1011. p3 = Instance.new("Part", m2)
  1012. p3.BrickColor = BrickColor.new("Really black")
  1013. p3.Material = Enum.Material.Metal
  1014. p3.Name = "Barrel2Part1"
  1015. p3.CFrame = CFrame.new(-0.790599644, 1.89200282, -18.7893906, 0.996056855, 0.0883465037, 0.00813016761, 0.000190295686, 0.089511022, -0.995986164, -0.0887196064, 0.992060006, 0.0891412422)
  1016. p3.Locked = true
  1017. p3.FormFactor = Enum.FormFactor.Custom
  1018. p3.Elasticity = 0
  1019. p3.Size = Vector3.new(3.5, 2, 3.5)
  1020. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1022. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1023. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1024. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1025. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1026. b2 = Instance.new("CylinderMesh", p3)
  1027. b2.Name = "Mesh"
  1028. p4 = Instance.new("Part", m2)
  1029. p4.BrickColor = BrickColor.new("Really black")
  1030. p4.Material = Enum.Material.Metal
  1031. p4.Name = "Barrel2Part2"
  1032. p4.CFrame = CFrame.new(-0.96593082, 1.71337676, -20.7736721, 0.996056974, 0.0883465111, 0.00813017692, 0.00019030564, 0.0895110145, -0.995986283, -0.0887196139, 0.992060125, 0.0891412348)
  1033. p4.Locked = true
  1034. p4.FormFactor = Enum.FormFactor.Custom
  1035. p4.Elasticity = 0
  1036. p4.Size = Vector3.new(3, 2, 3)
  1037. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1041. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1042. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1043. b3 = Instance.new("CylinderMesh", p4)
  1044. b3.Name = "Mesh"
  1045. p5 = Instance.new("Part", m2)
  1046. p5.BrickColor = BrickColor.new("Really black")
  1047. p5.Material = Enum.Material.Metal
  1048. p5.Name = "Barrel2End"
  1049. p5.CFrame = CFrame.new(-1.14127386, 1.53474247, -22.7579479, 0.996057212, 0.0883465335, 0.00813017879, 0.00019030564, 0.0895110369, -0.995986521, -0.0887196362, 0.992060363, 0.0891412571)
  1050. p5.Locked = true
  1051. p5.FormFactor = Enum.FormFactor.Custom
  1052. p5.Elasticity = 0
  1053. p5.Size = Vector3.new(2.5, 2, 2.5)
  1054. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1058. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1059. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1060. b4 = Instance.new("CylinderMesh", p5)
  1061. b4.Name = "Mesh"
  1062. p6 = Instance.new("Part", m2)
  1063. p6.BrickColor = BrickColor.new("Black")
  1064. p6.Material = Enum.Material.Metal
  1065. p6.Name = "BlackCylinder"
  1066. p6.CFrame = CFrame.new(0.530412316, 4.23822689, -3.89782667, 0.088346459, -0.996056855, 0.00813017506, 0.0895109996, -0.000190309234, -0.995986164, 0.992060006, 0.0887195691, 0.0891412199)
  1067. p6.Locked = true
  1068. p6.FormFactor = Enum.FormFactor.Custom
  1069. p6.Elasticity = 0
  1070. p6.Size = Vector3.new(4, 1.20000005, 4)
  1071. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1073. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1074. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1077. b5 = Instance.new("CylinderMesh", p6)
  1078. b5.Name = "Mesh"
  1079. p7 = Instance.new("Part", m2)
  1080. p7.BrickColor = BrickColor.new("Bright blue")
  1081. p7.Material = Enum.Material.Neon
  1082. p7.Name = "CenterCore"
  1083. p7.CFrame = CFrame.new(-0.0644423366, 2.63128924, -10.579525, 0.996056616, 0.0883465037, 0.00813018903, 0.000190315142, 0.0895110443, -0.995985925, -0.0887195989, 0.992059886, 0.0891412571)
  1084. p7.Locked = true
  1085. p7.FormFactor = Enum.FormFactor.Custom
  1086. p7.Elasticity = 0
  1087. p7.Size = Vector3.new(2.5999999, 10.6499996, 2.5999999)
  1088. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1091. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1092. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. p8 = Instance.new("Part", m2)
  1095. p8.BrickColor = BrickColor.new("Bright blue")
  1096. p8.Material = Enum.Material.Neon
  1097. p8.Name = "EndCore"
  1098. p8.CFrame = CFrame.new(-1.14129305, 1.53475082, -22.7579384, 0.996057451, 0.0883465856, 0.00813015271, 0.000190271865, 0.089511089, -0.99598676, -0.0887196884, 0.992060602, 0.0891413167)
  1099. p8.Locked = true
  1100. p8.FormFactor = Enum.FormFactor.Custom
  1101. p8.Elasticity = 0
  1102. p8.Size = Vector3.new(1.5, 2.01999998, 1.5)
  1103. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1104. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1105. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1106. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1107. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1108. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1109. b6 = Instance.new("CylinderMesh", p8)
  1110. b6.Name = "Mesh"
  1111. p9 = Instance.new("Part", m2)
  1112. p9.BrickColor = BrickColor.new("Bright blue")
  1113. p9.Material = Enum.Material.Neon
  1114. p9.Name = "LeftCore"
  1115. p9.CFrame = CFrame.new(-1.54192448, 3.15233397, -4.62330246, 0.996056974, 0.0883465111, 0.00813017692, 0.000190305669, 0.0895110145, -0.995986342, -0.0887196213, 0.992060125, 0.0891412348)
  1116. p9.Locked = true
  1117. p9.FormFactor = Enum.FormFactor.Custom
  1118. p9.Elasticity = 0
  1119. p9.Size = Vector3.new(1, 4, 4)
  1120. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1121. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1122. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1123. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1124. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1125. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1126. b7 = Instance.new("SpecialMesh", p9)
  1127. b7.MeshType = Enum.MeshType.Sphere
  1128. b7.Name = "Mesh"
  1129. p10 = Instance.new("Part", m2)
  1130. p10.BrickColor = BrickColor.new("Really black")
  1131. p10.Material = Enum.Material.Metal
  1132. p10.CFrame = CFrame.new(-0.0521164536, 1.23685455, -10.4553328, 0.996057093, 0.0883464962, 0.00813019276, 0.000190315288, 0.0895110518, -0.995986402, -0.0887196288, 0.992059886, 0.0891412944)
  1133. p10.Locked = true
  1134. p10.FormFactor = Enum.FormFactor.Custom
  1135. p10.Elasticity = 0
  1136. p10.Size = Vector3.new(1.5, 10.6499996, 1.5)
  1137. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1138. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1139. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1140. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1141. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1142. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1143. b8 = Instance.new("CylinderMesh", p10)
  1144. b8.Name = "Mesh"
  1145. p11 = Instance.new("Part", m2)
  1146. p11.BrickColor = BrickColor.new("Really black")
  1147. p11.Material = Enum.Material.Metal
  1148. p11.CFrame = CFrame.new(1.44622159, 3.15286684, -4.88948727, -0.0883464888, -0.996057212, -0.00813013036, -0.0895109549, -0.00019026165, 0.995986521, -0.992060006, 0.0887196213, -0.0891412124)
  1149. p11.Locked = true
  1150. p11.FormFactor = Enum.FormFactor.Custom
  1151. p11.Elasticity = 0
  1152. p11.Size = Vector3.new(2.5999999, 1, 1)
  1153. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1154. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1155. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1156. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1157. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1158. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1159. p12 = Instance.new("Part", m2)
  1160. p12.BrickColor = BrickColor.new("Really black")
  1161. p12.Material = Enum.Material.Metal
  1162. p12.CFrame = CFrame.new(0.450196743, 3.1527276, -4.80074692, 0.088346459, -0.996056974, 0.00813017692, 0.0895109996, -0.000190309322, -0.995986283, 0.992060006, 0.0887195691, 0.0891412273)
  1163. p12.Locked = true
  1164. p12.FormFactor = Enum.FormFactor.Custom
  1165. p12.Elasticity = 0
  1166. p12.Size = Vector3.new(2.4000001, 5, 2.4000001)
  1167. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1168. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1169. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1170. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1171. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1172. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1173. b9 = Instance.new("CylinderMesh", p12)
  1174. b9.Name = "Mesh"
  1175. p13 = Instance.new("WedgePart", m2)
  1176. p13.BrickColor = BrickColor.new("Really black")
  1177. p13.Material = Enum.Material.Metal
  1178. p13.Name = "Part"
  1179. p13.CFrame = CFrame.new(0.45018059, 3.15268755, -4.80076313, 0.0883464739, -0.996057093, 0.00813019276, 0.0895110443, -0.000190317616, -0.995986402, 0.992059886, 0.0887196139, 0.0891412944)
  1180. p13.Locked = true
  1181. p13.FormFactor = Enum.FormFactor.Custom
  1182. p13.Elasticity = 0
  1183. p13.Size = Vector3.new(2.5999999, 4.19999981, 2.20000005)
  1184. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1185. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1186. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1187. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1188. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1190. p14 = Instance.new("Part", m2)
  1191. p14.BrickColor = BrickColor.new("Really black")
  1192. p14.Material = Enum.Material.Metal
  1193. p14.CFrame = CFrame.new(0.261101305, 4.16617489, -6.92160463, 0.996056855, 0.0883464962, 0.00813017506, 0.000190305669, 0.0895109996, -0.995986164, -0.0887196064, 0.992060006, 0.0891412199)
  1194. p14.Locked = true
  1195. p14.FormFactor = Enum.FormFactor.Custom
  1196. p14.Elasticity = 0
  1197. p14.Size = Vector3.new(2.5, 5.05999947, 2.5)
  1198. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1199. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1201. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1202. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1203. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1204. b10 = Instance.new("CylinderMesh", p14)
  1205. b10.Name = "Mesh"
  1206. p15 = Instance.new("Part", m2)
  1207. p15.BrickColor = BrickColor.new("Really black")
  1208. p15.Material = Enum.Material.Metal
  1209. p15.CFrame = CFrame.new(0.0623157024, 3.96475625, -9.15374756, 0.996056974, 0.0883465037, 0.00813017413, 0.00019030564, 0.0895109847, -0.995986283, -0.0887196139, 0.992060125, 0.089141205)
  1210. p15.Locked = true
  1211. p15.FormFactor = Enum.FormFactor.Custom
  1212. p15.Elasticity = 0
  1213. p15.Size = Vector3.new(2, 6.55999947, 2)
  1214. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1215. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1217. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1218. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1219. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1220. b11 = Instance.new("CylinderMesh", p15)
  1221. b11.Name = "Mesh"
  1222. p16 = Instance.new("Part", m2)
  1223. p16.BrickColor = BrickColor.new("Really black")
  1224. p16.Material = Enum.Material.Metal
  1225. p16.CFrame = CFrame.new(0.489410222, 0.53123641, -4.36610842, 0.0883464664, -0.996057093, 0.00813017506, 0.0895109773, -0.000190309278, -0.995986402, 0.992060125, 0.0887195915, 0.0891412199)
  1226. p16.Locked = true
  1227. p16.FormFactor = Enum.FormFactor.Custom
  1228. p16.Elasticity = 0
  1229. p16.Size = Vector3.new(1, 2.5999999, 1)
  1230. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1231. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1232. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1233. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1234. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1235. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1236. b12 = Instance.new("CylinderMesh", p16)
  1237. b12.Name = "Mesh"
  1238. p17 = Instance.new("Part", m2)
  1239. p17.BrickColor = BrickColor.new("Really black")
  1240. p17.Material = Enum.Material.Metal
  1241. p17.CFrame = CFrame.new(-0.0741840154, 3.82647705, -10.686492, 0.996057093, 0.0883465111, 0.00813017506, 0.000190305713, 0.0895109922, -0.995986402, -0.0887196213, 0.992060244, 0.0891412124)
  1242. p17.Locked = true
  1243. p17.FormFactor = Enum.FormFactor.Custom
  1244. p17.Elasticity = 0
  1245. p17.Size = Vector3.new(1.5, 10.6499996, 1.5)
  1246. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1247. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1248. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1249. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1250. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1251. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1252. b13 = Instance.new("CylinderMesh", p17)
  1253. b13.Name = "Mesh"
  1254. p18 = Instance.new("WedgePart", m2)
  1255. p18.BrickColor = BrickColor.new("Really black")
  1256. p18.Material = Enum.Material.Metal
  1257. p18.Name = "Part"
  1258. p18.CFrame = CFrame.new(0.45018059, 3.15268755, -4.80076313, 0.0883464739, -0.996057093, 0.00813019276, 0.0895110443, -0.000190317616, -0.995986402, 0.992059886, 0.0887196139, 0.0891412944)
  1259. p18.Locked = true
  1260. p18.FormFactor = Enum.FormFactor.Custom
  1261. p18.Elasticity = 0
  1262. p18.Size = Vector3.new(2.5999999, 1, 1)
  1263. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1264. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1265. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1266. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1267. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1268. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1269. p19 = Instance.new("Part", m2)
  1270. p19.BrickColor = BrickColor.new("Really black")
  1271. p19.Material = Enum.Material.Metal
  1272. p19.CFrame = CFrame.new(0.45018059, 3.15268755, -4.80076313, 0.0883464739, -0.996056736, 0.00813018996, 0.0895110443, -0.000190317587, -0.995986044, 0.992059886, 0.088719584, 0.0891412646)
  1273. p19.Locked = true
  1274. p19.FormFactor = Enum.FormFactor.Custom
  1275. p19.Elasticity = 0
  1276. p19.Size = Vector3.new(5, 4, 5)
  1277. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1279. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1280. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1281. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1282. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1283. b14 = Instance.new("CylinderMesh", p19)
  1284. b14.Name = "Mesh"
  1285. p20 = Instance.new("Part", m2)
  1286. p20.BrickColor = BrickColor.new("Really black")
  1287. p20.Material = Enum.Material.Metal
  1288. p20.CFrame = CFrame.new(0.692698598, 3.39841413, -2.07754064, 0.996057093, 0.0883465186, 0.00813019183, 0.000190315244, 0.0895110667, -0.995986402, -0.0887196288, 0.992060244, 0.0891412869)
  1289. p20.Locked = true
  1290. p20.FormFactor = Enum.FormFactor.Custom
  1291. p20.Elasticity = 0
  1292. p20.Size = Vector3.new(3, 2.49000025, 2)
  1293. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1294. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1295. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1296. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1297. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1298. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1299. p21 = Instance.new("Part", m2)
  1300. p21.BrickColor = BrickColor.new("Really black")
  1301. p21.Material = Enum.Material.Metal
  1302. p21.CFrame = CFrame.new(0.283176571, 1.57656097, -6.69044447, 0.996056855, 0.0883464962, 0.00813019089, 0.000190315084, 0.0895110518, -0.995986164, -0.0887196139, 0.992059886, 0.0891412795)
  1303. p21.Locked = true
  1304. p21.FormFactor = Enum.FormFactor.Custom
  1305. p21.Elasticity = 0
  1306. p21.Size = Vector3.new(2.5, 5.05999947, 2.5)
  1307. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1309. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1310. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1311. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1312. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1313. b15 = Instance.new("CylinderMesh", p21)
  1314. b15.Name = "Mesh"
  1315. p22 = Instance.new("Part", m2)
  1316. p22.BrickColor = BrickColor.new("Really black")
  1317. p22.Material = Enum.Material.Metal
  1318. p22.CFrame = CFrame.new(0.0843902677, 1.37515485, -8.92259026, 0.996056974, 0.0883464962, 0.00813019183, 0.000190315099, 0.0895110518, -0.995986283, -0.0887196213, 0.992059886, 0.0891412869)
  1319. p22.Locked = true
  1320. p22.FormFactor = Enum.FormFactor.Custom
  1321. p22.Elasticity = 0
  1322. p22.Size = Vector3.new(2, 6.55999947, 2)
  1323. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1324. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1325. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1326. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1327. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1328. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1329. b16 = Instance.new("CylinderMesh", p22)
  1330. b16.Name = "Mesh"
  1331. p23 = Instance.new("Part", m2)
  1332. p23.BrickColor = BrickColor.new("Really black")
  1333. p23.Material = Enum.Material.Metal
  1334. p23.CFrame = CFrame.new(1.23360837, 2.5358398, -10.6859207, 0.00805338938, 0.0878702328, -0.99609983, -0.996064246, 0.0886407495, -0.00023371623, 0.088274464, 0.992180645, 0.0882382169)
  1335. p23.Locked = true
  1336. p23.FormFactor = Enum.FormFactor.Custom
  1337. p23.Elasticity = 0
  1338. p23.Size = Vector3.new(1.5, 10.6499996, 1.5)
  1339. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1340. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1341. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1342. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1343. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1344. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1345. b17 = Instance.new("CylinderMesh", p23)
  1346. b17.Name = "Mesh"
  1347. p24 = Instance.new("Part", m2)
  1348. p24.BrickColor = BrickColor.new("Really black")
  1349. p24.Material = Enum.Material.Metal
  1350. p24.CFrame = CFrame.new(-1.02281618, 2.87056255, -6.69155407, 0.00805338752, 0.0878702253, -0.996099591, -0.996064007, 0.0886407346, -0.000233715589, 0.0882744491, 0.992180407, 0.0882382095)
  1351. p24.Locked = true
  1352. p24.FormFactor = Enum.FormFactor.Custom
  1353. p24.Elasticity = 0
  1354. p24.Size = Vector3.new(2.5, 5.05999947, 2.5)
  1355. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1356. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1357. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1358. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1359. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1360. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1361. b18 = Instance.new("CylinderMesh", p24)
  1362. b18.Name = "Mesh"
  1363. p25 = Instance.new("Part", m2)
  1364. p25.BrickColor = BrickColor.new("Really black")
  1365. p25.Material = Enum.Material.Metal
  1366. p25.CFrame = CFrame.new(1.3693676, 2.67276216, -9.15297699, 0.00805338845, 0.0878702253, -0.99609971, -0.996064126, 0.088640742, -0.0002337162, 0.0882744566, 0.992180526, 0.0882382095)
  1367. p25.Locked = true
  1368. p25.FormFactor = Enum.FormFactor.Custom
  1369. p25.Elasticity = 0
  1370. p25.Size = Vector3.new(2, 6.55999947, 2)
  1371. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1372. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1374. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1375. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1376. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1377. b19 = Instance.new("CylinderMesh", p25)
  1378. b19.Name = "Mesh"
  1379. p26 = Instance.new("Part", m2)
  1380. p26.BrickColor = BrickColor.new("Really black")
  1381. p26.Material = Enum.Material.Metal
  1382. p26.CFrame = CFrame.new(-1.22053206, 2.67111492, -8.92396164, 0.00805338845, 0.0878702328, -0.99609971, -0.996064126, 0.088640742, -0.000233715647, 0.0882744566, 0.992180526, 0.0882382169)
  1383. p26.Locked = true
  1384. p26.FormFactor = Enum.FormFactor.Custom
  1385. p26.Elasticity = 0
  1386. p26.Size = Vector3.new(2, 6.55999947, 2)
  1387. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1389. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1390. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1391. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1392. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1393. b20 = Instance.new("CylinderMesh", p26)
  1394. b20.Name = "Mesh"
  1395. p27 = Instance.new("Part", m2)
  1396. p27.BrickColor = BrickColor.new("Really black")
  1397. p27.Material = Enum.Material.Metal
  1398. p27.CFrame = CFrame.new(1.56709123, 2.87219977, -6.92055225, 0.00805338752, 0.0878702179, -0.996099591, -0.996064007, 0.0886407346, -0.0002337162, 0.0882744491, 0.992180407, 0.088238202)
  1399. p27.Locked = true
  1400. p27.FormFactor = Enum.FormFactor.Custom
  1401. p27.Elasticity = 0
  1402. p27.Size = Vector3.new(2.5, 5.05999947, 2.5)
  1403. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1404. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1406. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1407. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1408. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1409. b21 = Instance.new("CylinderMesh", p27)
  1410. b21.Name = "Mesh"
  1411. p28 = Instance.new("Part", m2)
  1412. p28.BrickColor = BrickColor.new("Really black")
  1413. p28.Material = Enum.Material.Metal
  1414. p28.CFrame = CFrame.new(-1.35629213, 2.53418827, -10.4568977, 0.00805338938, 0.0878702402, -0.99609983, -0.996064246, 0.0886407495, -0.000233715677, 0.088274464, 0.992180645, 0.0882382244)
  1415. p28.Locked = true
  1416. p28.FormFactor = Enum.FormFactor.Custom
  1417. p28.Elasticity = 0
  1418. p28.Size = Vector3.new(1.5, 10.6499996, 1.5)
  1419. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1420. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1421. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1422. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1423. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1424. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1425. b22 = Instance.new("CylinderMesh", p28)
  1426. b22.Name = "Mesh"
  1427. p29 = Instance.new("Part", m2)
  1428. p29.BrickColor = BrickColor.new("Bright blue")
  1429. p29.Material = Enum.Material.Neon
  1430. p29.Name = "RightCore"
  1431. p29.CFrame = CFrame.new(2.44230223, 3.15306687, -4.9781971, 0.996056855, 0.0883465037, 0.00813019089, 0.000190315186, 0.0895110443, -0.995986164, -0.0887196139, 0.992059886, 0.089141272)
  1432. p29.Locked = true
  1433. p29.FormFactor = Enum.FormFactor.Custom
  1434. p29.Elasticity = 0
  1435. p29.Size = Vector3.new(1, 4, 4)
  1436. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1437. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1438. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1439. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1440. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1441. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1442. b23 = Instance.new("SpecialMesh", p29)
  1443. b23.MeshType = Enum.MeshType.Sphere
  1444. b23.Name = "Mesh"
  1445. p30 = Instance.new("WedgePart", m2)
  1446. p30.BrickColor = BrickColor.new("Really black")
  1447. p30.Material = Enum.Material.Metal
  1448. p30.Name = "Part"
  1449. p30.CFrame = CFrame.new(0.700464249, 5.26936245, -1.98473287, 0.996056974, 0.0883465037, 0.00813017599, 0.000190305742, 0.0895110071, -0.995986283, -0.0887196139, 0.992060125, 0.0891412273)
  1450. p30.Locked = true
  1451. p30.FormFactor = Enum.FormFactor.Custom
  1452. p30.Elasticity = 0
  1453. p30.Size = Vector3.new(3, 1.81000018, 1.71000016)
  1454. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1455. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1456. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1457. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1458. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1459. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1460. p31 = Instance.new("WedgePart", m2)
  1461. p31.BrickColor = BrickColor.new("Really black")
  1462. p31.Material = Enum.Material.Metal
  1463. p31.Name = "Part"
  1464. p31.CFrame = CFrame.new(0.335568041, 0.827270269, -6.09273863, 0.996056974, -0.0883464962, -0.00813016761, 0.000190305582, -0.0895108953, 0.995986283, -0.0887196213, -0.992060006, -0.0891411379)
  1465. p31.Locked = true
  1466. p31.FormFactor = Enum.FormFactor.Custom
  1467. p31.Elasticity = 0
  1468. p31.Size = Vector3.new(2.5999999, 3, 1.79999995)
  1469. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1470. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1471. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1472. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1473. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1474. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1475. p32 = Instance.new("WedgePart", m2)
  1476. p32.BrickColor = BrickColor.new("Really black")
  1477. p32.Material = Enum.Material.Metal
  1478. p32.Name = "Part"
  1479. p32.CFrame = CFrame.new(0.617143035, 1.41089261, -2.87375259, -0.996111989, 0.0827950761, -0.0301159136, -0.000646688626, 0.334949106, 0.942236722, 0.0880998224, 0.938591957, -0.333593071)
  1480. p32.Locked = true
  1481. p32.FormFactor = Enum.FormFactor.Custom
  1482. p32.Elasticity = 0
  1483. p32.Size = Vector3.new(2.5999999, 2.81999993, 1.5)
  1484. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1485. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1486. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1487. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1488. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1489. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1490. w1 = Instance.new("Weld", p1)
  1491. w1.Name = "Joint"
  1492. w1.Part0 = p1
  1493. w1.C0 = CFrame.new(-4.57763672e-05, -1.82303238, 0.360556602, 0.00067937636, -0.999999762, -0.000382148719, 0.573734701, 0.000702777412, -0.819041073, 0.819041073, 0.000337185105, 0.573734939)
  1494. w1.Part1 = p6
  1495. w1.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1496. w2 = Instance.new("Weld", p2)
  1497. w2.Name = "Weld"
  1498. w2.Part0 = p2
  1499. w2.C0 = CFrame.new(-0.00312137604, 6.27502441, 0.000902175903, 1.00000012, 1.0302756e-08, 1.01942987e-08, -1.0302756e-08, 1, 1.06680091e-07, -1.01952367e-08, -1.06680091e-07, 1.00000012)
  1500. w2.Part1 = p7
  1501. w2.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1502. w3 = Instance.new("Weld", p3)
  1503. w3.Name = "Weld"
  1504. w3.Part0 = p3
  1505. w3.C0 = CFrame.new(-0.00182008743, 1.99998093, 0.000519752502, 1.00000012, 8.73114914e-10, 1.03833457e-08, -8.73114914e-10, 1.00000012, -7.46367732e-08, -1.03894564e-08, 7.46367732e-08, 1.00000012)
  1506. w3.Part1 = p2
  1507. w3.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1508. w4 = Instance.new("Weld", p4)
  1509. w4.Name = "Weld"
  1510. w4.Part0 = p4
  1511. w4.C0 = CFrame.new(-0.00137090683, 2.00000477, 0.00039768219, 1.00000012, -1.16415322e-10, -9.98186067e-09, 1.16415322e-10, 1.00000012, 1.648732e-08, 9.9945936e-09, -1.648732e-08, 1.00000012)
  1512. w4.Part1 = p3
  1513. w4.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1514. w5 = Instance.new("Weld", p5)
  1515. w5.Name = "Weld"
  1516. w5.Part0 = p5
  1517. w5.C0 = CFrame.new(-0.00135850906, 2, 0.000389099121, 1.00000024, 5.82076609e-11, 4.10551593e-11, 0, 1.00000024, -1.45519152e-11, 1.1937118e-11, 0, 1.00000024)
  1518. w5.Part1 = p4
  1519. w5.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1520. w6 = Instance.new("Weld", p6)
  1521. w6.Name = "Joint"
  1522. w6.Part0 = p6
  1523. w6.C0 = CFrame.new(-1.00002265, 1.38282776e-05, 1.00004005, 1.00000012, 2.49710865e-08, 5.52099664e-08, -2.49710865e-08, 1.00000012, -1.06679323e-08, -5.52245183e-08, 1.06616369e-08, 1.00000012)
  1524. w6.Part1 = p19
  1525. w6.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1526. w7 = Instance.new("Weld", p7)
  1527. w7.Name = "Joint"
  1528. w7.Part0 = p7
  1529. w7.C0 = CFrame.new(3.33786011e-06, 5.82501316, 4.76837158e-06, -2.61934474e-08, -1.00000012, 9.32942612e-11, 1, -2.61934474e-08, -4.36557457e-11, 4.36557457e-11, 7.62696573e-11, 1.00000012)
  1530. w7.Part1 = p19
  1531. w7.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1532. w8 = Instance.new("Weld", p8)
  1533. w8.Name = "Joint"
  1534. w8.Part0 = p8
  1535. w8.C0 = CFrame.new(2.00085342e-05, -8.58306885e-06, 7.62939453e-06, 1.00000024, -3.09082679e-08, 3.11761568e-08, 3.09082679e-08, 1.00000024, -3.19705578e-08, -3.11217718e-08, 3.19414539e-08, 1.00000024)
  1536. w8.Part1 = p5
  1537. w8.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1538. w9 = Instance.new("Weld", p9)
  1539. w9.Name = "Joint"
  1540. w9.Part0 = p9
  1541. w9.C0 = CFrame.new(0.7005018, -2.03118896, 0.100494385, 3.99144028e-07, -0.000485243596, -1, -0.000873637327, 0.999999642, -0.000485243771, 0.999999762, 0.000873637502, -2.47675374e-08)
  1542. w9.Part1 = p24
  1543. w9.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1544. w10 = Instance.new("Weld", p10)
  1545. w10.Name = "Joint"
  1546. w10.Part0 = p10
  1547. w10.C0 = CFrame.new(1.04587525e-05, 1.54501152, -4.76837158e-06, 1.00000012, -2.32830644e-10, -1.7324453e-10, 2.32830644e-10, 1, 1.45519152e-11, 1.76058279e-10, -1.45519152e-11, 1.00000012)
  1548. w10.Part1 = p22
  1549. w10.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1550. w11 = Instance.new("Weld", p11)
  1551. w11.Name = "Joint"
  1552. w11.Part0 = p11
  1553. w11.C0 = CFrame.new(-6.67572021e-06, 0.999984264, 1.04904175e-05, -1.00000012, 1.10012479e-08, -9.77970132e-08, 1.10594556e-08, 1.00000012, -5.52245183e-08, 9.7803607e-08, -5.52245183e-08, -1.00000012)
  1554. w11.Part1 = p18
  1555. w11.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1556. w12 = Instance.new("Weld", p12)
  1557. w12.Name = "Joint"
  1558. w12.Part0 = p12
  1559. w12.C0 = CFrame.new(1.54972076e-06, 2.00000858, 1.52587891e-05, -4.01050784e-08, 1.00000012, 0, -1.00000012, -4.01050784e-08, 6.2996719e-11, 4.56168436e-11, 0, 1.00000012)
  1560. w12.Part1 = p9
  1561. w12.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1562. w13 = Instance.new("Weld", p13)
  1563. w13.Name = "Joint"
  1564. w13.Part0 = p13
  1565. w13.C0 = CFrame.new(0, 0, 0, 1, -5.82076609e-11, 0, -5.82076609e-11, 1.00000036, -4.01456646e-11, 0, -4.01456646e-11, 1.00000036)
  1566. w13.Part1 = p19
  1567. w13.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1568. w14 = Instance.new("Weld", p14)
  1569. w14.Name = "Joint"
  1570. w14.Part0 = p14
  1571. w14.C0 = CFrame.new(-1.9358471e-05, 2.02998734, 1.2000103, -1.51339918e-08, -1.00000012, 1.06310267e-08, 1.00000012, -1.51339918e-08, 5.51954145e-08, -5.52099664e-08, 1.06325473e-08, 1.00000012)
  1572. w14.Part1 = p19
  1573. w14.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1574. w15 = Instance.new("Weld", p15)
  1575. w15.Name = "Joint"
  1576. w15.Part0 = p15
  1577. w15.C0 = CFrame.new(5.24520874e-06, 2.25001001, -1.8119812e-05, 1.00000012, -1.16415322e-10, 4.56026328e-11, 1.16415322e-10, 1.00000012, 2.15513865e-08, -5.6147087e-11, -2.15513865e-08, 1.00000012)
  1578. w15.Part1 = p14
  1579. w15.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1580. w16 = Instance.new("Weld", p16)
  1581. w16.Name = "Joint"
  1582. w16.Part0 = p16
  1583. w16.C0 = CFrame.new(-1.70001316, -6.67572021e-06, -0.450009823, -4.0337909e-08, -1.00000012, 7.68050086e-08, -1.00000012, 4.0337909e-08, -5.43565193e-11, 6.0254024e-11, -7.68050086e-08, -1.00000012)
  1584. w16.Part1 = p31
  1585. w16.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1586. w17 = Instance.new("Weld", p17)
  1587. w17.Name = "Joint"
  1588. w17.Part0 = p17
  1589. w17.C0 = CFrame.new(3.33786011e-06, 1.54501009, 1.62124634e-05, 1.00000012, -1.16415322e-10, -5.62039304e-11, 1.16415322e-10, 1.00000012, -1.45519152e-11, 6.02256023e-11, 1.45519152e-11, 1.00000012)
  1590. w17.Part1 = p15
  1591. w17.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1592. w18 = Instance.new("Weld", p18)
  1593. w18.Name = "Joint"
  1594. w18.Part0 = p18
  1595. w18.C0 = CFrame.new(0, 0, 0, 1, -5.82076609e-11, 0, -5.82076609e-11, 1.00000036, -4.01456646e-11, 0, -4.01456646e-11, 1.00000036)
  1596. w18.Part1 = p19
  1597. w18.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1598. w19 = Instance.new("Weld", p19)
  1599. w19.Name = "Joint"
  1600. w19.Part0 = p19
  1601. w19.C0 = CFrame.new(5.7220459e-06, -2.00000763, 1.90734863e-06, -2.62516551e-08, 1, 2.91038305e-11, -1.00000012, -2.62516551e-08, 7.62554464e-11, 9.32800504e-11, -2.91038305e-11, 1.00000012)
  1602. w19.Part1 = p29
  1603. w19.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1604. w20 = Instance.new("Weld", p20)
  1605. w20.Name = "Joint"
  1606. w20.Part0 = p20
  1607. w20.C0 = CFrame.new(-0.000142740086, 0.260227203, -1.85510063, 1.00000012, -1.09430403e-08, -1.04921014e-08, 1.09430403e-08, 1.00000012, -5.52245183e-08, 1.04854792e-08, 5.52245183e-08, 1.00000012)
  1608. w20.Part1 = p30
  1609. w20.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1610. w21 = Instance.new("Weld", p21)
  1611. w21.Name = "Joint"
  1612. w21.Part0 = p21
  1613. w21.C0 = CFrame.new(-0.00100636669, 2.03051186, -1.39999294, -2.60770321e-08, -1.00000012, 2.09738005e-10, 1, -2.60770321e-08, -6.7811925e-09, 6.7811925e-09, 1.97260874e-10, 1.00000012)
  1614. w21.Part1 = p19
  1615. w21.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1616. w22 = Instance.new("Weld", p22)
  1617. w22.Name = "Joint"
  1618. w22.Part0 = p22
  1619. w22.C0 = CFrame.new(5.7220459e-06, 2.25001168, -5.24520874e-06, 1.00000012, 1.16415322e-10, 3.05249159e-11, -1.16415322e-10, 1, 0, -2.76969558e-11, 0, 1.00000012)
  1620. w22.Part1 = p21
  1621. w22.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1622. w23 = Instance.new("Weld", p23)
  1623. w23.Name = "Joint"
  1624. w23.Part0 = p23
  1625. w23.C0 = CFrame.new(2.95639038e-05, 1.54502153, 2.38418579e-06, 1.00000012, -1.16415322e-10, 7.44648787e-12, 1.16415322e-10, 1.00000012, -1.45519152e-11, 7.46069873e-12, 1.45519152e-11, 1.00000012)
  1626. w23.Part1 = p25
  1627. w23.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1628. w24 = Instance.new("Weld", p24)
  1629. w24.Name = "Joint"
  1630. w24.Part0 = p24
  1631. w24.C0 = CFrame.new(-0.102243423, 2.0304451, -1.30047679, -0.000873692508, -3.88481681e-07, 0.999999762, 0.999999583, 0.000485228404, 0.000873692683, -0.000485228549, 1, -3.54670391e-08)
  1632. w24.Part1 = p19
  1633. w24.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1634. w25 = Instance.new("Weld", p25)
  1635. w25.Name = "Joint"
  1636. w25.Part0 = p25
  1637. w25.C0 = CFrame.new(5.7220459e-06, 2.25001979, -1.38282776e-05, 1.00000012, -1.16415322e-10, 3.657874e-11, 1.16415322e-10, 1.00000012, -1.45519152e-11, -2.161471e-11, 1.45519152e-11, 1.00000012)
  1638. w25.Part1 = p27
  1639. w25.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1640. w26 = Instance.new("Weld", p26)
  1641. w26.Name = "Joint"
  1642. w26.Part0 = p26
  1643. w26.C0 = CFrame.new(-5.7220459e-06, 2.25000286, -7.62939453e-06, 1.00000012, 1.74622983e-10, -2.61763944e-11, -1.74622983e-10, 1.00000012, 2.91038305e-11, 3.20170557e-11, -2.91038305e-11, 1.00000012)
  1644. w26.Part1 = p24
  1645. w26.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1646. w27 = Instance.new("Weld", p27)
  1647. w27.Name = "Joint"
  1648. w27.Part0 = p27
  1649. w27.C0 = CFrame.new(-0.101255417, 2.02993202, 1.29953432, -0.000873692334, -3.88510671e-07, 0.999999762, 0.999999583, 0.000485235127, 0.000873692508, -0.000485235272, 1, -3.54392427e-08)
  1650. w27.Part1 = p19
  1651. w27.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1652. w28 = Instance.new("Weld", p28)
  1653. w28.Name = "Joint"
  1654. w28.Part0 = p28
  1655. w28.C0 = CFrame.new(2.47955322e-05, 1.54501534, 9.53674316e-07, 1.00000012, 5.82076609e-11, 2.95585778e-12, -5.82076609e-11, 1.00000012, 1.45519152e-11, 2.95585778e-12, -1.45519152e-11, 1.00000012)
  1656. w28.Part1 = p26
  1657. w28.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1658. w29 = Instance.new("Weld", p29)
  1659. w29.Name = "Joint"
  1660. w29.Part0 = p29
  1661. w29.C0 = CFrame.new(-1.99999273, 1.52587891e-05, -4.00543213e-05, -5.11645339e-08, -1.00000012, -1.05212195e-08, 1.00000012, -5.11645339e-08, -5.52390702e-08, 5.52390702e-08, -1.05223847e-08, 1.00000012)
  1662. w29.Part1 = p12
  1663. w29.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1664. w30 = Instance.new("Weld", p30)
  1665. w30.Name = "Joint"
  1666. w30.Part0 = p30
  1667. w30.C0 = CFrame.new(0.000151295215, -2.00522423, 0.855077744, -4.0163286e-08, -1.00000012, -7.07984782e-11, 1.00000012, -4.0163286e-08, -1.45519152e-11, 1.45519152e-11, -5.34186029e-11, 1.00000012)
  1668. w30.Part1 = p6
  1669. w30.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1670. w31 = Instance.new("Weld", p31)
  1671. w31.Name = "Joint"
  1672. w31.Part0 = p31
  1673. w31.C0 = CFrame.new(-2.03885138e-05, -1.49999237, 2.19998169, -1.52504072e-08, -1.00000024, 1.07182956e-08, -1.00000012, 1.53086148e-08, -1.53580913e-07, 1.53595465e-07, -1.06821432e-08, -1.00000024)
  1674. w31.Part1 = p19
  1675. w31.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1676. w32 = Instance.new("Weld", p32)
  1677. w32.Name = "Joint"
  1678. w32.Part0 = p32
  1679. w32.C0 = CFrame.new(-0.00367116928, -1.70592725, -0.327157497, -0.000660548452, 0.999999762, 0.000398853881, 0.968435347, 0.000739118608, -0.249264106, -0.24926433, 0.000221613169, -0.968435585)
  1680. w32.Part1 = p16
  1681. w32.C1 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1682. m2.Parent = char
  1683. m2:MakeJoints()
  1684. local cor2 = Instance.new("Part", char.Cannon2)
  1685. cor2.Name = "Thingy"
  1686. cor2.Locked = true
  1687. cor2.BottomSurface = 0
  1688. cor2.CanCollide = false
  1689. cor2.Size = Vector3.new(1, 1, 1)
  1690. cor2.Transparency = 1
  1691. cor2.TopSurface = 0
  1692. corw2 = Instance.new("Weld", cor2)
  1693. corw2.Part0 = larm
  1694. corw2.Part1 = cor2
  1695. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0))
  1696. corw2.C1 = CFrame.new(0, 0, 0)
  1697. weld2 = Instance.new("Weld", char.Cannon2)
  1698. weld2.Part0 = cor2
  1699. weld2.Part1 = char.Cannon2.ArmPart
  1700. weld2.C0 = CFrame.new(0, 0, 0)
  1701. local m3 = Instance.new("Model")
  1702. m3.Name = "LeftArm"
  1703. p1 = Instance.new("WedgePart", m3)
  1704. p1.BrickColor = BrickColor.new("Bright blue")
  1705. p1.Material = Enum.Material.Neon
  1706. p1.Name = "Wedge"
  1707. p1.FormFactor = Enum.FormFactor.Custom
  1708. p1.Size = Vector3.new(1, 1.19999981, 4)
  1709. p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-06, -0.707334042, 0.707343757, -2.62521735e-06, 0.707093, 0.707071185, -1.00027835, 3.43534703e-06, 4.43342998e-07)
  1710. p1.CanCollide = false
  1711. p1.Locked = true
  1712. p1.TopSurface = Enum.SurfaceType.Smooth
  1713. b1 = Instance.new("SpecialMesh", p1)
  1714. b1.MeshType = Enum.MeshType.Wedge
  1715. b1.Name = "Mesh"
  1716. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1717. p2 = Instance.new("WedgePart", m3)
  1718. p2.BrickColor = BrickColor.new("Bright blue")
  1719. p2.Material = Enum.Material.Neon
  1720. p2.Name = "Wedge"
  1721. p2.FormFactor = Enum.FormFactor.Custom
  1722. p2.Size = Vector3.new(1, 1.19999981, 4)
  1723. p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-06, -0.707337618, 0.707340181, -2.7146209e-06, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-06, 4.06471969e-07)
  1724. p2.CanCollide = false
  1725. p2.Locked = true
  1726. p2.TopSurface = Enum.SurfaceType.Smooth
  1727. b2 = Instance.new("SpecialMesh", p2)
  1728. b2.MeshType = Enum.MeshType.Wedge
  1729. b2.Name = "Mesh"
  1730. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1731. p3 = Instance.new("WedgePart", m3)
  1732. p3.BrickColor = BrickColor.new("Bright blue")
  1733. p3.Material = Enum.Material.Neon
  1734. p3.Name = "Wedge"
  1735. p3.FormFactor = Enum.FormFactor.Custom
  1736. p3.Size = Vector3.new(1, 1.19999981, 4)
  1737. p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-06, -0.707341254, 0.707336545, -2.72952207e-06, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-06, 4.69727013e-07)
  1738. p3.CanCollide = false
  1739. p3.Locked = true
  1740. p3.TopSurface = Enum.SurfaceType.Smooth
  1741. b3 = Instance.new("SpecialMesh", p3)
  1742. b3.MeshType = Enum.MeshType.Wedge
  1743. b3.Name = "Mesh"
  1744. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1745. p4 = Instance.new("WedgePart", m3)
  1746. p4.BrickColor = BrickColor.new("Bright blue")
  1747. p4.Material = Enum.Material.Neon
  1748. p4.Name = "Wedge"
  1749. p4.FormFactor = Enum.FormFactor.Custom
  1750. p4.Size = Vector3.new(1, 1.19999981, 4)
  1751. p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-06, -0.70734489, 0.707332909, -2.7742235e-06, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-06, 4.96093037e-07)
  1752. p4.CanCollide = false
  1753. p4.Locked = true
  1754. p4.TopSurface = Enum.SurfaceType.Smooth
  1755. b4 = Instance.new("SpecialMesh", p4)
  1756. b4.MeshType = Enum.MeshType.Wedge
  1757. b4.Name = "Mesh"
  1758. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1759. p5 = Instance.new("WedgePart", m3)
  1760. p5.BrickColor = BrickColor.new("Bright blue")
  1761. p5.Material = Enum.Material.Neon
  1762. p5.Name = "Wedge"
  1763. p5.FormFactor = Enum.FormFactor.Custom
  1764. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1765. p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-06, 0.422768414, 0.90661031, 3.01146247e-06, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-06, -6.48408104e-07)
  1766. p5.CanCollide = false
  1767. p5.Locked = true
  1768. p5.TopSurface = Enum.SurfaceType.Smooth
  1769. b5 = Instance.new("SpecialMesh", p5)
  1770. b5.MeshType = Enum.MeshType.Wedge
  1771. b5.Name = "Mesh"
  1772. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1773. p6 = Instance.new("WedgePart", m3)
  1774. p6.BrickColor = BrickColor.new("Bright blue")
  1775. p6.Material = Enum.Material.Neon
  1776. p6.Name = "Wedge"
  1777. p6.FormFactor = Enum.FormFactor.Custom
  1778. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1779. p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-06, 0.422772557, 0.906618714, 3.13068858e-06, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-06, -6.11540997e-07)
  1780. p6.CanCollide = false
  1781. p6.Locked = true
  1782. p6.TopSurface = Enum.SurfaceType.Smooth
  1783. b6 = Instance.new("SpecialMesh", p6)
  1784. b6.MeshType = Enum.MeshType.Wedge
  1785. b6.Name = "Mesh"
  1786. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1787. p7 = Instance.new("WedgePart", m3)
  1788. p7.BrickColor = BrickColor.new("Bright blue")
  1789. p7.Material = Enum.Material.Neon
  1790. p7.Name = "Wedge"
  1791. p7.FormFactor = Enum.FormFactor.Custom
  1792. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1793. p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-06, 0.422776699, 0.906627119, 3.24991538e-06, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-06, -5.74673834e-07)
  1794. p7.CanCollide = false
  1795. p7.Locked = true
  1796. p7.TopSurface = Enum.SurfaceType.Smooth
  1797. b7 = Instance.new("SpecialMesh", p7)
  1798. b7.MeshType = Enum.MeshType.Wedge
  1799. b7.Name = "Mesh"
  1800. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1801. p8 = Instance.new("Part", m3)
  1802. p8.BrickColor = BrickColor.new("Really black")
  1803. p8.Material = Enum.Material.Neon
  1804. p8.FormFactor = Enum.FormFactor.Custom
  1805. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1806. p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-06, -1.6914961e-06, -8.34465027e-07, 0.999961495, 3.15914986e-06, -2.15653972e-06, 3.05826416e-06, 1.00030792)
  1807. p8.CanCollide = false
  1808. p8.Locked = true
  1809. p8.BottomSurface = Enum.SurfaceType.Smooth
  1810. p8.TopSurface = Enum.SurfaceType.Smooth
  1811. b8 = Instance.new("SpecialMesh", p8)
  1812. b8.MeshType = Enum.MeshType.Sphere
  1813. b8.Name = "Mesh"
  1814. p9 = Instance.new("Part", m3)
  1815. p9.BrickColor = BrickColor.new("Really black")
  1816. p9.Material = Enum.Material.Neon
  1817. p9.FormFactor = Enum.FormFactor.Custom
  1818. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1819. p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-06, -1.78677055e-06, -8.82557742e-07, 0.999960482, 3.17407398e-06, -2.19382355e-06, 3.14769591e-06, 1.00031543)
  1820. p9.CanCollide = false
  1821. p9.Locked = true
  1822. p9.BottomSurface = Enum.SurfaceType.Smooth
  1823. p9.TopSurface = Enum.SurfaceType.Smooth
  1824. b9 = Instance.new("SpecialMesh", p9)
  1825. b9.MeshType = Enum.MeshType.Sphere
  1826. b9.Name = "Mesh"
  1827. p10 = Instance.new("Part", m3)
  1828. p10.BrickColor = BrickColor.new("Bright blue")
  1829. p10.Material = Enum.Material.Neon
  1830. p10.FormFactor = Enum.FormFactor.Custom
  1831. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1832. p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-06, 0.422602057, -0.906270981, 3.2933026e-06, 3.38190716e-06, -1.99476835e-06, 1.00032294)
  1833. p10.CanCollide = false
  1834. p10.Locked = true
  1835. p10.BottomSurface = Enum.SurfaceType.Smooth
  1836. p10.TopSurface = Enum.SurfaceType.Smooth
  1837. p11 = Instance.new("Part", m3)
  1838. p11.BrickColor = BrickColor.new("Bright blue")
  1839. p11.Material = Enum.Material.Neon
  1840. p11.FormFactor = Enum.FormFactor.Custom
  1841. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1842. p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-06, -0.573551893, -0.819118977, 3.41253167e-06, -9.27350783e-08, -4.03244348e-06, 1.00033033)
  1843. p11.CanCollide = false
  1844. p11.Locked = true
  1845. p11.BottomSurface = Enum.SurfaceType.Smooth
  1846. p11.TopSurface = Enum.SurfaceType.Smooth
  1847. p12 = Instance.new("Part", m3)
  1848. p12.BrickColor = BrickColor.new("Really black")
  1849. p12.Material = Enum.Material.Neon
  1850. p12.FormFactor = Enum.FormFactor.Custom
  1851. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1852. p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-06, -1.84644205e-06, -1.25169754e-06, 0.999957919, 3.50196092e-06, -2.25187659e-06, 3.46763295e-06, 1.00033784)
  1853. p12.CanCollide = false
  1854. p12.Locked = true
  1855. p12.BottomSurface = Enum.SurfaceType.Smooth
  1856. p12.TopSurface = Enum.SurfaceType.Smooth
  1857. b10 = Instance.new("SpecialMesh", p12)
  1858. b10.MeshType = Enum.MeshType.Sphere
  1859. b10.Name = "Mesh"
  1860. p13 = Instance.new("Part", m3)
  1861. p13.BrickColor = BrickColor.new("Bright blue")
  1862. p13.Material = Enum.Material.Neon
  1863. p13.FormFactor = Enum.FormFactor.Custom
  1864. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1865. p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-06, -1.88372474e-06, -1.43051466e-06, 0.999956846, 3.58340549e-06, -2.3487878e-06, 3.4825357e-06, 1.00034535)
  1866. p13.CanCollide = false
  1867. p13.Locked = true
  1868. p13.BottomSurface = Enum.SurfaceType.Smooth
  1869. p13.TopSurface = Enum.SurfaceType.Smooth
  1870. b11 = Instance.new("SpecialMesh", p13)
  1871. b11.MeshType = Enum.MeshType.Sphere
  1872. b11.Name = "Mesh"
  1873. p14 = Instance.new("Part", m3)
  1874. p14.BrickColor = BrickColor.new("Really black")
  1875. p14.Material = Enum.Material.Neon
  1876. p14.FormFactor = Enum.FormFactor.Custom
  1877. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1878. p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-06, -1.96572228e-06, -1.37091877e-06, 0.999956131, 3.62812011e-06, -2.37115751e-06, 3.4527211e-06, 1.00034904)
  1879. p14.CanCollide = false
  1880. p14.Locked = true
  1881. p14.BottomSurface = Enum.SurfaceType.Smooth
  1882. p14.TopSurface = Enum.SurfaceType.Smooth
  1883. b12 = Instance.new("SpecialMesh", p14)
  1884. b12.MeshType = Enum.MeshType.Sphere
  1885. b12.Name = "Mesh"
  1886. p15 = Instance.new("Part", m3)
  1887. p15.BrickColor = BrickColor.new("Really black")
  1888. p15.Material = Enum.Material.Metal
  1889. p15.Name = "Main"
  1890. p15.FormFactor = Enum.FormFactor.Custom
  1891. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1892. p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-06, -1.96572933e-06, -1.54973122e-06, 0.999955654, 3.62813353e-06, -2.38607572e-06, 3.57197018e-06, 1.00035274)
  1893. p15.CanCollide = false
  1894. p15.Locked = true
  1895. p15.BottomSurface = Enum.SurfaceType.Smooth
  1896. p15.TopSurface = Enum.SurfaceType.Smooth
  1897. p16 = Instance.new("Part", m3)
  1898. p16.BrickColor = BrickColor.new("Really black")
  1899. p16.Material = Enum.Material.Neon
  1900. p16.FormFactor = Enum.FormFactor.Custom
  1901. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1902. p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-06, -2.00301338e-06, -1.66894927e-06, 0.999954581, 3.71756369e-06, -2.46808372e-06, 3.61668594e-06, 1.00036013)
  1903. p16.CanCollide = false
  1904. p16.Locked = true
  1905. p16.BottomSurface = Enum.SurfaceType.Smooth
  1906. p16.TopSurface = Enum.SurfaceType.Smooth
  1907. b13 = Instance.new("SpecialMesh", p16)
  1908. b13.MeshType = Enum.MeshType.Sphere
  1909. b13.Name = "Mesh"
  1910. p17 = Instance.new("Part", m3)
  1911. p17.BrickColor = BrickColor.new("Bright blue")
  1912. p17.Material = Enum.Material.Neon
  1913. p17.FormFactor = Enum.FormFactor.Custom
  1914. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1915. p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-06, 0.499978155, -0.86598444, 3.73249213e-06, 4.01878242e-06, -1.94999211e-06, 1.00036764)
  1916. p17.CanCollide = false
  1917. p17.Locked = true
  1918. p17.BottomSurface = Enum.SurfaceType.Smooth
  1919. p17.TopSurface = Enum.SurfaceType.Smooth
  1920. p18 = Instance.new("Part", m3)
  1921. p18.BrickColor = BrickColor.new("Bright blue")
  1922. p18.Material = Enum.Material.Neon
  1923. p18.FormFactor = Enum.FormFactor.Custom
  1924. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1925. p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-06, -0.422596663, -0.906265914, 3.8437388e-06, 6.9698217e-07, -4.50413063e-06, 1.00037515)
  1926. p18.CanCollide = false
  1927. p18.Locked = true
  1928. p18.BottomSurface = Enum.SurfaceType.Smooth
  1929. p18.TopSurface = Enum.SurfaceType.Smooth
  1930. p19 = Instance.new("Part", m3)
  1931. p19.BrickColor = BrickColor.new("Bright blue")
  1932. p19.Material = Enum.Material.Neon
  1933. p19.FormFactor = Enum.FormFactor.Custom
  1934. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1935. p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-06, -0.707068563, -0.707078457, 3.72453474e-06, -9.59315798e-07, -4.56575162e-06, 1.00037515)
  1936. p19.CanCollide = false
  1937. p19.Locked = true
  1938. p19.BottomSurface = Enum.SurfaceType.Smooth
  1939. p19.TopSurface = Enum.SurfaceType.Smooth
  1940. p20 = Instance.new("Part", m3)
  1941. p20.BrickColor = BrickColor.new("Bright blue")
  1942. p20.Material = Enum.Material.Neon
  1943. p20.FormFactor = Enum.FormFactor.Custom
  1944. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1945. p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-06, -0.93964541, -0.342010528, 3.84375198e-06, -2.7989995e-06, -3.73256239e-06, 1.00037885)
  1946. p20.CanCollide = false
  1947. p20.Locked = true
  1948. p20.BottomSurface = Enum.SurfaceType.Smooth
  1949. p20.TopSurface = Enum.SurfaceType.Smooth
  1950. p21 = Instance.new("Part", m3)
  1951. p21.BrickColor = BrickColor.new("Bright blue")
  1952. p21.Material = Enum.Material.Neon
  1953. p21.FormFactor = Enum.FormFactor.Custom
  1954. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1955. p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-06, -0.707079053, 0.707067132, 3.83015185e-06, -4.56554562e-06, 9.7875602e-07, 1.00037885)
  1956. p21.CanCollide = false
  1957. p21.Locked = true
  1958. p21.BottomSurface = Enum.SurfaceType.Smooth
  1959. p21.TopSurface = Enum.SurfaceType.Smooth
  1960. p22 = Instance.new("Part", m3)
  1961. p22.BrickColor = BrickColor.new("Really black")
  1962. p22.Material = Enum.Material.Neon
  1963. p22.FormFactor = Enum.FormFactor.Custom
  1964. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1965. p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-06, -2.11486781e-06, -7.24196434e-06, 0.999951959, 3.84376608e-06, -2.5650661e-06, 4.02606338e-06, 1.00038254)
  1966. p22.CanCollide = false
  1967. p22.Locked = true
  1968. p22.BottomSurface = Enum.SurfaceType.Smooth
  1969. p22.TopSurface = Enum.SurfaceType.Smooth
  1970. b14 = Instance.new("SpecialMesh", p22)
  1971. b14.MeshType = Enum.MeshType.Sphere
  1972. b14.Name = "Mesh"
  1973. p23 = Instance.new("Part", m3)
  1974. p23.BrickColor = BrickColor.new("Really black")
  1975. p23.Material = Enum.Material.Neon
  1976. p23.FormFactor = Enum.FormFactor.Custom
  1977. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1978. p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-06, -2.12978443e-06, -7.22709638e-06, 0.999951601, 3.96298356e-06, -2.56507747e-06, 4.02606247e-06, 1.00038624)
  1979. p23.CanCollide = false
  1980. p23.Locked = true
  1981. p23.BottomSurface = Enum.SurfaceType.Smooth
  1982. p23.TopSurface = Enum.SurfaceType.Smooth
  1983. b15 = Instance.new("SpecialMesh", p23)
  1984. b15.MeshType = Enum.MeshType.Sphere
  1985. b15.Name = "Mesh"
  1986. p24 = Instance.new("Part", m3)
  1987. p24.BrickColor = BrickColor.new("Really black")
  1988. p24.Material = Enum.Material.Neon
  1989. p24.FormFactor = Enum.FormFactor.Custom
  1990. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1991. p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-06, -2.12978443e-06, -7.25689733e-06, 0.999951601, 3.96298356e-06, -2.56507769e-06, 4.02606247e-06, 1.00038624)
  1992. p24.CanCollide = false
  1993. p24.Locked = true
  1994. p24.BottomSurface = Enum.SurfaceType.Smooth
  1995. p24.TopSurface = Enum.SurfaceType.Smooth
  1996. b16 = Instance.new("SpecialMesh", p24)
  1997. b16.MeshType = Enum.MeshType.Sphere
  1998. b16.Name = "Mesh"
  1999. w1 = Instance.new("Weld", p1)
  2000. w1.Name = "Wedge_Weld"
  2001. w1.Part0 = p1
  2002. w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-07, -1.21785519e-07, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-07, 0.707110047, 0.707106352, 1.16605563e-07)
  2003. w1.Part1 = p2
  2004. w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-07, -9.19831891e-08, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-07, 0.707110047, 0.707106233, 1.65067799e-08)
  2005. w2 = Instance.new("Weld", p2)
  2006. w2.Name = "Wedge_Weld"
  2007. w2.Part0 = p2
  2008. w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-07, -9.19831891e-08, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-07, 0.707110047, 0.707106233, 1.65067799e-08)
  2009. w2.Part1 = p3
  2010. w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-07, -9.1983182e-08, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-07, 0.707110047, 0.707106233, 1.65067799e-08)
  2011. w3 = Instance.new("Weld", p3)
  2012. w3.Name = "Wedge_Weld"
  2013. w3.Part0 = p3
  2014. w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-07, -9.1983182e-08, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-07, 0.707110047, 0.707106233, 1.65067799e-08)
  2015. w3.Part1 = p4
  2016. w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-07, -1.21785519e-07, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-07, 0.707110107, 0.707106352, 1.16605577e-07)
  2017. w4 = Instance.new("Weld", p4)
  2018. w4.Name = "Wedge_Weld"
  2019. w4.Part0 = p4
  2020. w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-07, -1.21785519e-07, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-07, 0.707110107, 0.707106352, 1.16605577e-07)
  2021. w4.Part1 = p5
  2022. w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-07, 2.39803342e-07, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-07, 0.906312168, 0.422617614, 8.41069863e-08)
  2023. w5 = Instance.new("Weld", p5)
  2024. w5.Name = "Wedge_Weld"
  2025. w5.Part0 = p5
  2026. w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-07, 2.39803342e-07, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-07, 0.906312168, 0.422617614, 8.41069863e-08)
  2027. w5.Part1 = p6
  2028. w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-07, 2.39803342e-07, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-07, 0.906312168, 0.422617614, 8.41069792e-08)
  2029. w6 = Instance.new("Weld", p6)
  2030. w6.Name = "Wedge_Weld"
  2031. w6.Part0 = p6
  2032. w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-07, 2.39803342e-07, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-07, 0.906312168, 0.422617614, 8.41069792e-08)
  2033. w6.Part1 = p7
  2034. w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-07, 2.39803342e-07, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-07, 0.906312168, 0.422617614, 8.41069721e-08)
  2035. w7 = Instance.new("Weld", p7)
  2036. w7.Name = "Part_Weld"
  2037. w7.Part0 = p7
  2038. w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-07, 2.39803342e-07, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-07, 0.906312168, 0.422617614, 8.41069721e-08)
  2039. w7.Part1 = p8
  2040. w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-07, -3.7252903e-08, 1.71363354e-07, 0.999999285, -1.49011612e-08, -6.70552254e-08, 2.98023224e-08, 1.0000037)
  2041. w8 = Instance.new("Weld", p8)
  2042. w8.Name = "Part_Weld"
  2043. w8.Part0 = p8
  2044. w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-07, -3.7252903e-08, 1.71363354e-07, 0.999999285, -1.49011612e-08, -6.70552254e-08, 2.98023224e-08, 1.0000037)
  2045. w8.Part1 = p9
  2046. w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-07, 2.98023153e-08, 1.30103487e-07, 0.999999702, 5.96046448e-08, -5.79734909e-08, 2.98023224e-08, 1.00000381)
  2047. w9 = Instance.new("Weld", p9)
  2048. w9.Name = "Part_Weld"
  2049. w9.Part0 = p9
  2050. w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-07, 2.98023153e-08, 1.30103487e-07, 0.999999702, 5.96046448e-08, -5.79734909e-08, 2.98023224e-08, 1.00000381)
  2051. w9.Part1 = p10
  2052. w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-09, -0.422620118, -0.906307399, -6.66151578e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2053. w10 = Instance.new("Weld", p10)
  2054. w10.Name = "Part_Weld"
  2055. w10.Part0 = p10
  2056. w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-09, -0.422620118, -0.906307399, -6.66151578e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2057. w10.Part1 = p11
  2058. w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-08, 0.573578954, -0.8191517, -3.17313607e-08, -4.47034836e-08, 5.9604659e-08, 1.0000037)
  2059. w11 = Instance.new("Weld", p11)
  2060. w11.Name = "Part_Weld"
  2061. w11.Part0 = p11
  2062. w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-08, 0.573578954, -0.8191517, -3.17313607e-08, -4.47034836e-08, 5.9604659e-08, 1.0000037)
  2063. w11.Part1 = p12
  2064. w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-07, 2.980231e-08, 1.1920929e-07, 0.999999642, 5.16191463e-08, -5.96046341e-08, 2.98023224e-08, 1.00000381)
  2065. w12 = Instance.new("Weld", p12)
  2066. w12.Name = "Part_Weld"
  2067. w12.Part0 = p12
  2068. w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-07, 2.980231e-08, 1.1920929e-07, 0.999999642, 5.16191463e-08, -5.96046341e-08, 2.98023224e-08, 1.00000381)
  2069. w12.Part1 = p13
  2070. w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-07, -3.72529421e-08, 1.49011612e-07, 0.999999285, -1.49011443e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2071. w13 = Instance.new("Weld", p13)
  2072. w13.Name = "Part_Weld"
  2073. w13.Part0 = p13
  2074. w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-07, -3.72529421e-08, 1.49011612e-07, 0.999999285, -1.49011443e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2075. w13.Part1 = p14
  2076. w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-08, 4.47034871e-08, 8.94065622e-08, 1, -5.96044352e-08, -4.47034836e-08, 5.96044387e-08, 1)
  2077. w14 = Instance.new("Weld", p14)
  2078. w14.Name = "Part_Weld"
  2079. w14.Part0 = p14
  2080. w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-08, 4.47034871e-08, 8.94065622e-08, 1, -5.96044352e-08, -4.47034836e-08, 5.96044387e-08, 1)
  2081. w14.Part1 = p15
  2082. w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-07, 2.98023295e-08, 8.94069672e-08, 0.999999523, 5.9604659e-08, -4.47034836e-08, 5.9604659e-08, 1.0000037)
  2083. w15 = Instance.new("Weld", p15)
  2084. w15.Name = "Part_Weld"
  2085. w15.Part0 = p15
  2086. w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-07, 2.98023295e-08, 8.94069672e-08, 0.999999523, 5.9604659e-08, -4.47034836e-08, 5.9604659e-08, 1.0000037)
  2087. w15.Part1 = p16
  2088. w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-07, -3.72529385e-08, 1.1920929e-07, 0.999999404, -1.49011452e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2089. w16 = Instance.new("Weld", p16)
  2090. w16.Name = "Part_Weld"
  2091. w16.Part0 = p16
  2092. w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-07, -3.72529385e-08, 1.1920929e-07, 0.999999404, -1.49011452e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2093. w16.Part1 = p17
  2094. w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-15, -0.500002086, -0.86602509, -5.96046448e-08, -5.96046341e-08, 2.98023224e-08, 1.00000381)
  2095. w17 = Instance.new("Weld", p17)
  2096. w17.Name = "Part_Weld"
  2097. w17.Part0 = p17
  2098. w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-15, -0.500002086, -0.86602509, -5.96046448e-08, -5.96046341e-08, 2.98023224e-08, 1.00000381)
  2099. w17.Part1 = p18
  2100. w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-08, 0.422620177, -0.906307578, -4.1425146e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2101. w18 = Instance.new("Weld", p18)
  2102. w18.Name = "Part_Weld"
  2103. w18.Part0 = p18
  2104. w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-08, 0.422620177, -0.906307578, -4.1425146e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2105. w18.Part1 = p19
  2106. w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-08, 0.707109928, -0.70710659, -2.1073431e-08, -4.47034836e-08, 5.9604659e-08, 1.0000037)
  2107. w19 = Instance.new("Weld", p19)
  2108. w19.Name = "Part_Weld"
  2109. w19.Part0 = p19
  2110. w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-08, 0.707109928, -0.70710659, -2.1073431e-08, -4.47034836e-08, 5.9604659e-08, 1.0000037)
  2111. w19.Part1 = p20
  2112. w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-08, 0.939692557, -0.342020333, 6.23934611e-08, -4.47034836e-08, 5.96044387e-08, 1)
  2113. w20 = Instance.new("Weld", p20)
  2114. w20.Name = "Part_Weld"
  2115. w20.Part0 = p20
  2116. w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-08, 0.939692557, -0.342020333, 6.23934611e-08, -4.47034836e-08, 5.96044387e-08, 1)
  2117. w20.Part1 = p21
  2118. w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-08, 0.707107842, 0.707105696, 8.91225582e-09, -5.86070712e-08, 4.60033966e-08, 1)
  2119. w21 = Instance.new("Weld", p21)
  2120. w21.Name = "Part_Weld"
  2121. w21.Part0 = p21
  2122. w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-08, 0.707107842, 0.707105696, 8.91225582e-09, -5.86070712e-08, 4.60033966e-08, 1)
  2123. w21.Part1 = p22
  2124. w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-07, 2.98023224e-08, 7.4505806e-08, 0.999999642, 5.96046448e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2125. w22 = Instance.new("Weld", p22)
  2126. w22.Name = "Part_Weld"
  2127. w22.Part0 = p22
  2128. w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-07, 2.98023224e-08, 7.4505806e-08, 0.999999642, 5.96046448e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2129. w22.Part1 = p23
  2130. w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-08, 4.47034836e-08, 5.96043677e-08, 1, -5.9604421e-08, -4.470348e-08, 5.96044245e-08, 1)
  2131. w23 = Instance.new("Weld", p23)
  2132. w23.Name = "Part_Weld"
  2133. w23.Part0 = p23
  2134. w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-08, 4.47034836e-08, 5.96043677e-08, 1, -5.9604421e-08, -4.470348e-08, 5.96044245e-08, 1)
  2135. w23.Part1 = p24
  2136. w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-08, 4.47034871e-08, 8.94065622e-08, 1, -5.96044352e-08, -4.47034836e-08, 5.96044387e-08, 1)
  2137. w24 = Instance.new("Weld", p24)
  2138. w24.Name = "Part_Weld"
  2139. w24.Part0 = p24
  2140. w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-08, 4.47034871e-08, 8.94065622e-08, 1, -5.96044352e-08, -4.47034836e-08, 5.96044387e-08, 1)
  2141. m3.Parent = larm
  2142. m3:MakeJoints()
  2143. local cor3 = Instance.new("Part", larm.LeftArm)
  2144. cor3.Name = "Thingy"
  2145. cor3.Locked = true
  2146. cor3.BottomSurface = 0
  2147. cor3.CanCollide = false
  2148. cor3.Size = Vector3.new(2, 1, 1)
  2149. cor3.Transparency = 1
  2150. cor3.TopSurface = 0
  2151. corw3 = Instance.new("Weld", cor3)
  2152. corw3.Part0 = larm
  2153. corw3.Part1 = cor3
  2154. corw3.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2155. corw3.C1 = CFrame.new(0, 0, 0)
  2156. weld3 = Instance.new("Weld", larm.LeftArm)
  2157. weld3.Part0 = cor3
  2158. weld3.Part1 = p15
  2159. weld3.C0 = CFrame.new(0, 0, 0)
  2160. local m4 = Instance.new("Model")
  2161. m4.Name = "RightArm"
  2162. p1 = Instance.new("WedgePart", m4)
  2163. p1.BrickColor = BrickColor.new("Bright blue")
  2164. p1.Material = Enum.Material.Neon
  2165. p1.Name = "Wedge"
  2166. p1.FormFactor = Enum.FormFactor.Custom
  2167. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2168. p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-07, -0.422704399, -0.906498253, -1.70178805e-06, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-06, 2.39246219e-06)
  2169. p1.CanCollide = false
  2170. p1.Locked = true
  2171. p1.TopSurface = Enum.SurfaceType.Smooth
  2172. b1 = Instance.new("SpecialMesh", p1)
  2173. b1.MeshType = Enum.MeshType.Wedge
  2174. b1.Name = "Mesh"
  2175. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2176. p2 = Instance.new("WedgePart", m4)
  2177. p2.BrickColor = BrickColor.new("Bright blue")
  2178. p2.Material = Enum.Material.Neon
  2179. p2.Name = "Wedge"
  2180. p2.FormFactor = Enum.FormFactor.Custom
  2181. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2182. p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-07, -0.422708124, -0.906506479, -1.7167032e-06, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-06, 2.49332743e-06)
  2183. p2.CanCollide = false
  2184. p2.Locked = true
  2185. p2.TopSurface = Enum.SurfaceType.Smooth
  2186. b2 = Instance.new("SpecialMesh", p2)
  2187. b2.MeshType = Enum.MeshType.Wedge
  2188. b2.Name = "Mesh"
  2189. b2.Scale = Vector3.new(0.200000003, 1, 1)
  2190. p3 = Instance.new("WedgePart", m4)
  2191. p3.BrickColor = BrickColor.new("Bright blue")
  2192. p3.Material = Enum.Material.Neon
  2193. p3.Name = "Wedge"
  2194. p3.FormFactor = Enum.FormFactor.Custom
  2195. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2196. p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-07, -0.422711849, -0.906514704, -1.73161834e-06, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-06, 2.59419403e-06)
  2197. p3.CanCollide = false
  2198. p3.Locked = true
  2199. p3.TopSurface = Enum.SurfaceType.Smooth
  2200. b3 = Instance.new("SpecialMesh", p3)
  2201. b3.MeshType = Enum.MeshType.Wedge
  2202. b3.Name = "Mesh"
  2203. b3.Scale = Vector3.new(0.200000003, 1, 1)
  2204. p4 = Instance.new("WedgePart", m4)
  2205. p4.BrickColor = BrickColor.new("Bright blue")
  2206. p4.Material = Enum.Material.Neon
  2207. p4.Name = "Wedge"
  2208. p4.FormFactor = Enum.FormFactor.Custom
  2209. p4.Size = Vector3.new(1, 1.19999981, 4)
  2210. p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-07, 0.70726943, -0.707265258, 1.90324067e-06, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-08, 2.61978244e-06)
  2211. p4.CanCollide = false
  2212. p4.Locked = true
  2213. p4.TopSurface = Enum.SurfaceType.Smooth
  2214. b4 = Instance.new("SpecialMesh", p4)
  2215. b4.MeshType = Enum.MeshType.Wedge
  2216. b4.Name = "Mesh"
  2217. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2218. p5 = Instance.new("WedgePart", m4)
  2219. p5.BrickColor = BrickColor.new("Bright blue")
  2220. p5.Material = Enum.Material.Neon
  2221. p5.Name = "Wedge"
  2222. p5.FormFactor = Enum.FormFactor.Custom
  2223. p5.Size = Vector3.new(1, 1.19999981, 4)
  2224. p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-07, 0.707273066, -0.707261622, 1.91814229e-06, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-07, 2.53547341e-06)
  2225. p5.CanCollide = false
  2226. p5.Locked = true
  2227. p5.TopSurface = Enum.SurfaceType.Smooth
  2228. b5 = Instance.new("SpecialMesh", p5)
  2229. b5.MeshType = Enum.MeshType.Wedge
  2230. b5.Name = "Mesh"
  2231. b5.Scale = Vector3.new(0.200000003, 1, 1)
  2232. p6 = Instance.new("WedgePart", m4)
  2233. p6.BrickColor = BrickColor.new("Bright blue")
  2234. p6.Material = Enum.Material.Neon
  2235. p6.Name = "Wedge"
  2236. p6.FormFactor = Enum.FormFactor.Custom
  2237. p6.Size = Vector3.new(1, 1.19999981, 4)
  2238. p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-07, 0.707276702, -0.707257986, 1.93304436e-06, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-07, 2.45116462e-06)
  2239. p6.CanCollide = false
  2240. p6.Locked = true
  2241. p6.TopSurface = Enum.SurfaceType.Smooth
  2242. b6 = Instance.new("SpecialMesh", p6)
  2243. b6.MeshType = Enum.MeshType.Wedge
  2244. b6.Name = "Mesh"
  2245. b6.Scale = Vector3.new(0.200000003, 1, 1)
  2246. p7 = Instance.new("Part", m4)
  2247. p7.BrickColor = BrickColor.new("Really black")
  2248. p7.Material = Enum.Material.Neon
  2249. p7.FormFactor = Enum.FormFactor.Custom
  2250. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2251. p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-05, -7.92685455e-07, -1.94311142e-05, 0.999976158, 1.97985287e-06, -1.62725564e-06, 1.86058458e-06, 1.00020039)
  2252. p7.CanCollide = false
  2253. p7.Locked = true
  2254. p7.BottomSurface = Enum.SurfaceType.Smooth
  2255. p7.TopSurface = Enum.SurfaceType.Smooth
  2256. b7 = Instance.new("SpecialMesh", p7)
  2257. b7.MeshType = Enum.MeshType.Sphere
  2258. b7.Name = "Mesh"
  2259. p8 = Instance.new("Part", m4)
  2260. p8.BrickColor = BrickColor.new("Bright blue")
  2261. p8.Material = Enum.Material.Neon
  2262. p8.FormFactor = Enum.FormFactor.Custom
  2263. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  2264. p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
  2265. p8.CanCollide = false
  2266. p8.Locked = true
  2267. p8.BottomSurface = Enum.SurfaceType.Smooth
  2268. p8.TopSurface = Enum.SurfaceType.Smooth
  2269. p9 = Instance.new("Part", m4)
  2270. p9.BrickColor = BrickColor.new("Really black")
  2271. p9.Material = Enum.Material.Neon
  2272. p9.FormFactor = Enum.FormFactor.Custom
  2273. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2274. p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-05, -8.7916851e-07, -1.95577741e-05, 0.999974489, 1.9967556e-06, -1.75833702e-06, 2.01165676e-06, 1.00021148)
  2275. p9.CanCollide = false
  2276. p9.Locked = true
  2277. p9.BottomSurface = Enum.SurfaceType.Smooth
  2278. p9.TopSurface = Enum.SurfaceType.Smooth
  2279. b8 = Instance.new("SpecialMesh", p9)
  2280. b8.MeshType = Enum.MeshType.Sphere
  2281. b8.Name = "Mesh"
  2282. p10 = Instance.new("Part", m4)
  2283. p10.BrickColor = BrickColor.new("Really black")
  2284. p10.Material = Enum.Material.Neon
  2285. p10.FormFactor = Enum.FormFactor.Custom
  2286. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2287. p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-05, -9.23888138e-07, -1.9595207e-05, 0.999973536, 2.11597762e-06, -1.80306665e-06, 2.13088947e-06, 1.00021887)
  2288. p10.CanCollide = false
  2289. p10.Locked = true
  2290. p10.BottomSurface = Enum.SurfaceType.Smooth
  2291. p10.TopSurface = Enum.SurfaceType.Smooth
  2292. b9 = Instance.new("SpecialMesh", p10)
  2293. b9.MeshType = Enum.MeshType.Sphere
  2294. b9.Name = "Mesh"
  2295. p11 = Instance.new("Part", m4)
  2296. p11.BrickColor = BrickColor.new("Bright blue")
  2297. p11.Material = Enum.Material.Neon
  2298. p11.FormFactor = Enum.FormFactor.Custom
  2299. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  2300. p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
  2301. p11.CanCollide = false
  2302. p11.Locked = true
  2303. p11.BottomSurface = Enum.SurfaceType.Smooth
  2304. p11.TopSurface = Enum.SurfaceType.Smooth
  2305. p12 = Instance.new("Part", m4)
  2306. p12.BrickColor = BrickColor.new("Bright blue")
  2307. p12.Material = Enum.Material.Neon
  2308. p12.FormFactor = Enum.FormFactor.Custom
  2309. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  2310. p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
  2311. p12.CanCollide = false
  2312. p12.Locked = true
  2313. p12.BottomSurface = Enum.SurfaceType.Smooth
  2314. p12.TopSurface = Enum.SurfaceType.Smooth
  2315. p13 = Instance.new("Part", m4)
  2316. p13.BrickColor = BrickColor.new("Bright blue")
  2317. p13.Material = Enum.Material.Neon
  2318. p13.FormFactor = Enum.FormFactor.Custom
  2319. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  2320. p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-05, -1.06170774e-06, -1.99186616e-05, 0.999970496, 2.39908695e-06, -1.93528831e-06, 2.38418579e-06, 1.00024128)
  2321. p13.CanCollide = false
  2322. p13.Locked = true
  2323. p13.BottomSurface = Enum.SurfaceType.Smooth
  2324. p13.TopSurface = Enum.SurfaceType.Smooth
  2325. b10 = Instance.new("SpecialMesh", p13)
  2326. b10.MeshType = Enum.MeshType.Sphere
  2327. b10.Name = "Mesh"
  2328. p14 = Instance.new("Part", m4)
  2329. p14.BrickColor = BrickColor.new("Really black")
  2330. p14.Material = Enum.Material.Metal
  2331. p14.Name = "Main"
  2332. p14.FormFactor = Enum.FormFactor.Custom
  2333. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2334. p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-05, -1.16605349e-06, -2.0008245e-05, 0.999969125, 2.41400744e-06, -2.03963987e-06, 2.39908786e-06, 1.00024867)
  2335. p14.CanCollide = false
  2336. p14.Locked = true
  2337. p14.BottomSurface = Enum.SurfaceType.Smooth
  2338. p14.TopSurface = Enum.SurfaceType.Smooth
  2339. p15 = Instance.new("Part", m4)
  2340. p15.BrickColor = BrickColor.new("Really black")
  2341. p15.Material = Enum.Material.Neon
  2342. p15.FormFactor = Enum.FormFactor.Custom
  2343. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2344. p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-05, -1.24804228e-06, -2.02170359e-05, 0.999968052, 2.45872889e-06, -2.07692119e-06, 2.48851507e-06, 1.00025606)
  2345. p15.CanCollide = false
  2346. p15.Locked = true
  2347. p15.BottomSurface = Enum.SurfaceType.Smooth
  2348. p15.TopSurface = Enum.SurfaceType.Smooth
  2349. b11 = Instance.new("SpecialMesh", p15)
  2350. b11.MeshType = Enum.MeshType.Sphere
  2351. b11.Name = "Mesh"
  2352. p16 = Instance.new("Part", m4)
  2353. p16.BrickColor = BrickColor.new("Bright blue")
  2354. p16.Material = Enum.Material.Neon
  2355. p16.FormFactor = Enum.FormFactor.Custom
  2356. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  2357. p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
  2358. p16.CanCollide = false
  2359. p16.Locked = true
  2360. p16.BottomSurface = Enum.SurfaceType.Smooth
  2361. p16.TopSurface = Enum.SurfaceType.Smooth
  2362. p17 = Instance.new("Part", m4)
  2363. p17.BrickColor = BrickColor.new("Bright blue")
  2364. p17.Material = Enum.Material.Neon
  2365. p17.FormFactor = Enum.FormFactor.Custom
  2366. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  2367. p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-06, 0.707094371, -0.707072854, 2.48849392e-06, 3.42912972e-06, -4.32133675e-07, 1.00026357)
  2368. p17.CanCollide = false
  2369. p17.Locked = true
  2370. p17.BottomSurface = Enum.SurfaceType.Smooth
  2371. p17.TopSurface = Enum.SurfaceType.Smooth
  2372. p18 = Instance.new("Part", m4)
  2373. p18.BrickColor = BrickColor.new("Really black")
  2374. p18.Material = Enum.Material.Neon
  2375. p18.FormFactor = Enum.FormFactor.Custom
  2376. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2377. p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-06, -1.29642399e-06, -1.53779984e-05, 0.999966145, 2.53321537e-06, -2.20864695e-06, 2.76013293e-06, 1.00027096)
  2378. p18.CanCollide = false
  2379. p18.Locked = true
  2380. p18.BottomSurface = Enum.SurfaceType.Smooth
  2381. p18.TopSurface = Enum.SurfaceType.Smooth
  2382. b12 = Instance.new("SpecialMesh", p18)
  2383. b12.MeshType = Enum.MeshType.Sphere
  2384. b12.Name = "Mesh"
  2385. p19 = Instance.new("Part", m4)
  2386. p19.BrickColor = BrickColor.new("Really black")
  2387. p19.Material = Enum.Material.Neon
  2388. p19.FormFactor = Enum.FormFactor.Custom
  2389. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2390. p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-06, -1.41567671e-06, -1.53780693e-05, 0.999965429, 2.48852461e-06, -2.20865695e-06, 2.76013111e-06, 1.00027466)
  2391. p19.CanCollide = false
  2392. p19.Locked = true
  2393. p19.BottomSurface = Enum.SurfaceType.Smooth
  2394. p19.TopSurface = Enum.SurfaceType.Smooth
  2395. b13 = Instance.new("SpecialMesh", p19)
  2396. b13.MeshType = Enum.MeshType.Sphere
  2397. b13.Name = "Mesh"
  2398. w1 = Instance.new("Weld", p1)
  2399. w1.Name = "Wedge_Weld"
  2400. w1.Part0 = p1
  2401. w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-08, 1.14119814e-07, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-07, -0.906311929, 0.422617972, 5.9372038e-08)
  2402. w1.Part1 = p2
  2403. w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-08, 1.14119814e-07, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-07, -0.906311929, 0.422617972, 5.93720344e-08)
  2404. w2 = Instance.new("Weld", p2)
  2405. w2.Name = "Wedge_Weld"
  2406. w2.Part0 = p2
  2407. w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-08, 1.14119814e-07, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-07, -0.906311929, 0.422617972, 5.93720344e-08)
  2408. w2.Part1 = p3
  2409. w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-08, 1.14119814e-07, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-07, -0.906311929, 0.422617972, 5.93720415e-08)
  2410. w3 = Instance.new("Weld", p3)
  2411. w3.Name = "Wedge_Weld"
  2412. w3.Part0 = p3
  2413. w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-08, 1.14119814e-07, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-07, -0.906311929, 0.422617972, 5.93720415e-08)
  2414. w3.Part1 = p4
  2415. w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-08, 4.26051052e-08, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-08, -0.707109869, 0.707106531, -1.51036286e-08)
  2416. w4 = Instance.new("Weld", p4)
  2417. w4.Name = "Wedge_Weld"
  2418. w4.Part0 = p4
  2419. w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-08, 4.26051052e-08, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-08, -0.707109869, 0.707106531, -1.51036286e-08)
  2420. w4.Part1 = p5
  2421. w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-08, 4.26051088e-08, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-08, -0.707109869, 0.707106531, -1.51036286e-08)
  2422. w5 = Instance.new("Weld", p5)
  2423. w5.Name = "Wedge_Weld"
  2424. w5.Part0 = p5
  2425. w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-08, 4.26051088e-08, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-08, -0.707109869, 0.707106531, -1.51036286e-08)
  2426. w5.Part1 = p6
  2427. w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-08, 4.2605091e-08, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-08, -0.707109869, 0.707106531, -1.51036659e-08)
  2428. w6 = Instance.new("Weld", p6)
  2429. w6.Name = "Part_Weld"
  2430. w6.Part0 = p6
  2431. w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-08, 4.2605091e-08, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-08, -0.707109869, 0.707106531, -1.51036659e-08)
  2432. w6.Part1 = p7
  2433. w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-07, 4.47034942e-08, 1.41560378e-07, 1, -7.45055218e-08, -4.47034836e-08, 7.45055289e-08, 1)
  2434. w7 = Instance.new("Weld", p7)
  2435. w7.Name = "Part_Weld"
  2436. w7.Part0 = p7
  2437. w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-07, 4.47034942e-08, 1.41560378e-07, 1, -7.45055218e-08, -4.47034836e-08, 7.45055289e-08, 1)
  2438. w7.Part1 = p8
  2439. w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  2440. w8 = Instance.new("Weld", p8)
  2441. w8.Name = "Part_Weld"
  2442. w8.Part0 = p8
  2443. w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  2444. w8.Part1 = p9
  2445. w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-07, 0, 1.41561031e-07, 0.999999523, 4.47034836e-08, -4.47034836e-08, 7.4505806e-08, 1.0000037)
  2446. w9 = Instance.new("Weld", p9)
  2447. w9.Name = "Part_Weld"
  2448. w9.Part0 = p9
  2449. w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-07, 0, 1.41561031e-07, 0.999999523, 4.47034836e-08, -4.47034836e-08, 7.4505806e-08, 1.0000037)
  2450. w9.Part1 = p10
  2451. w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-07, 0, 1.41561031e-07, 0.999999523, 4.47034836e-08, -4.47034836e-08, 7.4505806e-08, 1.0000037)
  2452. w10 = Instance.new("Weld", p10)
  2453. w10.Name = "Part_Weld"
  2454. w10.Part0 = p10
  2455. w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-07, 0, 1.41561031e-07, 0.999999523, 4.47034836e-08, -4.47034836e-08, 7.4505806e-08, 1.0000037)
  2456. w10.Part1 = p11
  2457. w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  2458. w11 = Instance.new("Weld", p11)
  2459. w11.Name = "Part_Weld"
  2460. w11.Part0 = p11
  2461. w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  2462. w11.Part1 = p12
  2463. w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  2464. w12 = Instance.new("Weld", p12)
  2465. w12.Name = "Part_Weld"
  2466. w12.Part0 = p12
  2467. w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  2468. w12.Part1 = p13
  2469. w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-07, -3.72529421e-08, 1.49011612e-07, 0.999999285, -1.49011443e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2470. w13 = Instance.new("Weld", p13)
  2471. w13.Name = "Part_Weld"
  2472. w13.Part0 = p13
  2473. w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-07, -3.72529421e-08, 1.49011612e-07, 0.999999285, -1.49011443e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2474. w13.Part1 = p14
  2475. w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-07, -3.72529456e-08, 8.94069672e-08, 0.999999344, -1.49011452e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2476. w14 = Instance.new("Weld", p14)
  2477. w14.Name = "Part_Weld"
  2478. w14.Part0 = p14
  2479. w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-07, -3.72529456e-08, 8.94069672e-08, 0.999999344, -1.49011452e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2480. w14.Part1 = p15
  2481. w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-07, 2.98023188e-08, 1.1920929e-07, 0.999999583, 5.96046412e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2482. w15 = Instance.new("Weld", p15)
  2483. w15.Name = "Part_Weld"
  2484. w15.Part0 = p15
  2485. w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-07, 2.98023188e-08, 1.1920929e-07, 0.999999583, 5.96046412e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2486. w15.Part1 = p16
  2487. w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  2488. w16 = Instance.new("Weld", p16)
  2489. w16.Name = "Part_Weld"
  2490. w16.Part0 = p16
  2491. w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  2492. w16.Part1 = p17
  2493. w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-08, -0.707110047, -0.707106292, -6.32202699e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2494. w17 = Instance.new("Weld", p17)
  2495. w17.Name = "Part_Weld"
  2496. w17.Part0 = p17
  2497. w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-08, -0.707110047, -0.707106292, -6.32202699e-08, -4.47034836e-08, 5.96046448e-08, 1.0000037)
  2498. w17.Part1 = p18
  2499. w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-07, -4.47034836e-08, 1.63912773e-07, 0.999999285, -2.98023224e-08, -7.4505806e-08, -1.49011612e-08, 1.0000037)
  2500. w18 = Instance.new("Weld", p18)
  2501. w18.Name = "Part_Weld"
  2502. w18.Part0 = p18
  2503. w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-07, -4.47034836e-08, 1.63912773e-07, 0.999999285, -2.98023224e-08, -7.4505806e-08, -1.49011612e-08, 1.0000037)
  2504. w18.Part1 = p19
  2505. w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-07, 7.4505806e-08, 1.63912006e-07, 1, 1.49011186e-08, -7.4505806e-08, -1.49011061e-08, 1)
  2506. w19 = Instance.new("Weld", p19)
  2507. w19.Name = "Wedge_Weld"
  2508. w19.Part0 = p19
  2509. w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-07, 7.4505806e-08, 1.63912006e-07, 1, 1.49011186e-08, -7.4505806e-08, -1.49011061e-08, 1)
  2510. m4.Parent = rarm
  2511. m4:MakeJoints()
  2512. local cor4 = Instance.new("Part", rarm.RightArm)
  2513. cor4.Name = "Thingy"
  2514. cor4.Locked = true
  2515. cor4.BottomSurface = 0
  2516. cor4.CanCollide = false
  2517. cor4.Size = Vector3.new(2, 1, 1)
  2518. cor4.Transparency = 1
  2519. cor4.TopSurface = 0
  2520. corw4 = Instance.new("Weld", cor4)
  2521. corw4.Part0 = rarm
  2522. corw4.Part1 = cor4
  2523. corw4.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2524. corw4.C1 = CFrame.new(0, 0, 0)
  2525. weld4 = Instance.new("Weld", rarm.RightArm)
  2526. weld4.Part0 = cor4
  2527. weld4.Part1 = p14
  2528. weld4.C0 = CFrame.new(0, 0, 0)
  2529. local m5 = Instance.new("Model")
  2530. m5.Name = "Torso"
  2531. p1 = Instance.new("Part", m5)
  2532. p1.BrickColor = BrickColor.new("Really black")
  2533. p1.Material = Enum.Material.Neon
  2534. p1.FormFactor = Enum.FormFactor.Custom
  2535. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2536. p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-07, 2.23464554e-08, -1.44914884e-06, 0.999991, -1.49014099e-08, -1.51248571e-06, 5.96053269e-08, 1.00005186)
  2537. p1.CanCollide = false
  2538. p1.Locked = true
  2539. p1.BottomSurface = Enum.SurfaceType.Smooth
  2540. p1.TopSurface = Enum.SurfaceType.Smooth
  2541. b1 = Instance.new("SpecialMesh", p1)
  2542. b1.MeshType = Enum.MeshType.Sphere
  2543. b1.Name = "Mesh"
  2544. p2 = Instance.new("Part", m5)
  2545. p2.BrickColor = BrickColor.new("Really black")
  2546. p2.Material = Enum.Material.Neon
  2547. p2.FormFactor = Enum.FormFactor.Custom
  2548. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2549. p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-07, 1.2665987e-07, -1.35973096e-06, 0.999992192, -2.98023224e-08, -1.40815973e-06, 4.47034836e-08, 1.00004447)
  2550. p2.CanCollide = false
  2551. p2.Locked = true
  2552. p2.BottomSurface = Enum.SurfaceType.Smooth
  2553. p2.TopSurface = Enum.SurfaceType.Smooth
  2554. b2 = Instance.new("SpecialMesh", p2)
  2555. b2.MeshType = Enum.MeshType.Sphere
  2556. b2.Name = "Mesh"
  2557. p3 = Instance.new("Part", m5)
  2558. p3.BrickColor = BrickColor.new("Bright blue")
  2559. p3.Material = Enum.Material.Neon
  2560. p3.FormFactor = Enum.FormFactor.Custom
  2561. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2562. p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
  2563. p3.CanCollide = false
  2564. p3.Locked = true
  2565. p3.BottomSurface = Enum.SurfaceType.Smooth
  2566. p3.TopSurface = Enum.SurfaceType.Smooth
  2567. p4 = Instance.new("Part", m5)
  2568. p4.BrickColor = BrickColor.new("Bright blue")
  2569. p4.Material = Enum.Material.Neon
  2570. p4.FormFactor = Enum.FormFactor.Custom
  2571. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2572. p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-07, -0.49999845, 0.866020203, -2.98035943e-08, -1.06866298e-06, -5.48167122e-07, 1.00002968)
  2573. p4.CanCollide = false
  2574. p4.Locked = true
  2575. p4.BottomSurface = Enum.SurfaceType.Smooth
  2576. p4.TopSurface = Enum.SurfaceType.Smooth
  2577. p5 = Instance.new("Part", m5)
  2578. p5.BrickColor = BrickColor.new("Bright blue")
  2579. p5.Material = Enum.Material.Neon
  2580. p5.FormFactor = Enum.FormFactor.Custom
  2581. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2582. p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-07, 0.499999046, -0.866021395, -4.47044108e-08, 9.70867745e-07, 5.08911796e-07, 1.00002229)
  2583. p5.CanCollide = false
  2584. p5.Locked = true
  2585. p5.BottomSurface = Enum.SurfaceType.Smooth
  2586. p5.TopSurface = Enum.SurfaceType.Smooth
  2587. p6 = Instance.new("Part", m5)
  2588. p6.BrickColor = BrickColor.new("Bright blue")
  2589. p6.Material = Enum.Material.Neon
  2590. p6.FormFactor = Enum.FormFactor.Custom
  2591. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2592. p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-07, -0.499997824, -0.8660236, -5.96051208e-08, 8.43271948e-07, -5.21275751e-07, 1.0000149)
  2593. p6.CanCollide = false
  2594. p6.Locked = true
  2595. p6.BottomSurface = Enum.SurfaceType.Smooth
  2596. p6.TopSurface = Enum.SurfaceType.Smooth
  2597. p7 = Instance.new("Part", m5)
  2598. p7.BrickColor = BrickColor.new("Really black")
  2599. p7.Material = Enum.Material.Neon
  2600. p7.FormFactor = Enum.FormFactor.Custom
  2601. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2602. p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-07, 5.36441803e-07, -9.46223736e-07, 0.999997973, -1.04308121e-07, -8.7916851e-07, 5.96046519e-08, 1.00001121)
  2603. p7.CanCollide = false
  2604. p7.Locked = true
  2605. p7.BottomSurface = Enum.SurfaceType.Smooth
  2606. p7.TopSurface = Enum.SurfaceType.Smooth
  2607. b3 = Instance.new("SpecialMesh", p7)
  2608. b3.MeshType = Enum.MeshType.Sphere
  2609. b3.Name = "Mesh"
  2610. p8 = Instance.new("Part", m5)
  2611. p8.BrickColor = BrickColor.new("Really black")
  2612. p8.Material = Enum.Material.Neon
  2613. p8.FormFactor = Enum.FormFactor.Custom
  2614. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2615. p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-07, 5.6624458e-07, -8.4191629e-07, 0.999997973, -2.980277e-08, -9.08971174e-07, -1.4901623e-08, 1.00001121)
  2616. p8.CanCollide = false
  2617. p8.Locked = true
  2618. p8.BottomSurface = Enum.SurfaceType.Smooth
  2619. p8.TopSurface = Enum.SurfaceType.Smooth
  2620. b4 = Instance.new("SpecialMesh", p8)
  2621. b4.MeshType = Enum.MeshType.Sphere
  2622. b4.Name = "Mesh"
  2623. p9 = Instance.new("Part", m5)
  2624. p9.BrickColor = BrickColor.new("Really black")
  2625. p9.Material = Enum.Material.Neon
  2626. p9.FormFactor = Enum.FormFactor.Custom
  2627. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2628. p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-07, 5.36441803e-07, -9.46223736e-07, 0.999997973, -1.04308128e-07, -8.7916851e-07, 5.96046448e-08, 1.00001121)
  2629. p9.CanCollide = false
  2630. p9.Locked = true
  2631. p9.BottomSurface = Enum.SurfaceType.Smooth
  2632. p9.TopSurface = Enum.SurfaceType.Smooth
  2633. b5 = Instance.new("SpecialMesh", p9)
  2634. b5.MeshType = Enum.MeshType.Sphere
  2635. b5.Name = "Mesh"
  2636. p10 = Instance.new("Part", m5)
  2637. p10.BrickColor = BrickColor.new("Bright blue")
  2638. p10.Material = Enum.Material.Neon
  2639. p10.FormFactor = Enum.FormFactor.Custom
  2640. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2641. p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
  2642. p10.CanCollide = false
  2643. p10.Locked = true
  2644. p10.BottomSurface = Enum.SurfaceType.Smooth
  2645. p10.TopSurface = Enum.SurfaceType.Smooth
  2646. p11 = Instance.new("Part", m5)
  2647. p11.BrickColor = BrickColor.new("Really black")
  2648. p11.Material = Enum.Material.Metal
  2649. p11.Name = "Main"
  2650. p11.FormFactor = Enum.FormFactor.Custom
  2651. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2652. p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-07, 7.5990539e-07, -7.67355459e-07, 1, -2.98022478e-08, -7.5990539e-07, 2.98016651e-08, 1)
  2653. p11.CanCollide = false
  2654. p11.Locked = true
  2655. p11.BottomSurface = Enum.SurfaceType.Smooth
  2656. p11.TopSurface = Enum.SurfaceType.Smooth
  2657. p12 = Instance.new("Part", m5)
  2658. p12.BrickColor = BrickColor.new("Really black")
  2659. p12.Material = Enum.Material.Neon
  2660. p12.FormFactor = Enum.FormFactor.Custom
  2661. p12.Size = Vector3.new(3, 3, 2)
  2662. p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-07, 6.55599706e-07, -7.97160624e-07, 0.999999344, -1.49012251e-08, -7.5990863e-07, 2.98017362e-08, 1.0000037)
  2663. p12.CanCollide = false
  2664. p12.Locked = true
  2665. p12.BottomSurface = Enum.SurfaceType.Smooth
  2666. p12.TopSurface = Enum.SurfaceType.Smooth
  2667. b6 = Instance.new("SpecialMesh", p12)
  2668. b6.MeshType = Enum.MeshType.Sphere
  2669. b6.Name = "Mesh"
  2670. p13 = Instance.new("Part", m5)
  2671. p13.BrickColor = BrickColor.new("Bright blue")
  2672. p13.Material = Enum.Material.Neon
  2673. p13.FormFactor = Enum.FormFactor.Custom
  2674. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2675. p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-07, -1.00000906, 6.55602378e-07, 0.999998689, 8.72662156e-07, -1.49012802e-08, 4.47028583e-08, 8.64220965e-07, 1.00000739)
  2676. p13.CanCollide = false
  2677. p13.Locked = true
  2678. p13.BottomSurface = Enum.SurfaceType.Smooth
  2679. p13.TopSurface = Enum.SurfaceType.Smooth
  2680. p14 = Instance.new("Part", m5)
  2681. p14.BrickColor = BrickColor.new("Bright blue")
  2682. p14.Material = Enum.Material.Neon
  2683. p14.FormFactor = Enum.FormFactor.Custom
  2684. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2685. p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-07, -0.499999583, 0.866022587, -2.09610107e-13, -8.68580742e-07, -4.3265041e-07, 1.00001478)
  2686. p14.CanCollide = false
  2687. p14.Locked = true
  2688. p14.BottomSurface = Enum.SurfaceType.Smooth
  2689. p14.TopSurface = Enum.SurfaceType.Smooth
  2690. p15 = Instance.new("Part", m5)
  2691. p15.BrickColor = BrickColor.new("Bright blue")
  2692. p15.Material = Enum.Material.Neon
  2693. p15.FormFactor = Enum.FormFactor.Custom
  2694. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2695. p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-07, 0.49999693, 0.866022587, 1.49009658e-08, -8.91868751e-07, 6.00952262e-07, 1.00002217)
  2696. p15.CanCollide = false
  2697. p15.Locked = true
  2698. p15.BottomSurface = Enum.SurfaceType.Smooth
  2699. p15.TopSurface = Enum.SurfaceType.Smooth
  2700. p16 = Instance.new("Part", m5)
  2701. p16.BrickColor = BrickColor.new("Bright blue")
  2702. p16.Material = Enum.Material.Neon
  2703. p16.FormFactor = Enum.FormFactor.Custom
  2704. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2705. p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-07, -0.422617853, 0.906302929, 2.46360354e-08, -1.01209048e-06, -3.84037776e-07, 1.00002587)
  2706. p16.CanCollide = false
  2707. p16.Locked = true
  2708. p16.BottomSurface = Enum.SurfaceType.Smooth
  2709. p16.TopSurface = Enum.SurfaceType.Smooth
  2710. p17 = Instance.new("Part", m5)
  2711. p17.BrickColor = BrickColor.new("Bright blue")
  2712. p17.Material = Enum.Material.Neon
  2713. p17.FormFactor = Enum.FormFactor.Custom
  2714. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2715. p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-07, 0.499996245, 0.866021872, 5.96044032e-08, -8.79435504e-07, 6.97014912e-07, 1.00002956)
  2716. p17.CanCollide = false
  2717. p17.Locked = true
  2718. p17.BottomSurface = Enum.SurfaceType.Smooth
  2719. p17.TopSurface = Enum.SurfaceType.Smooth
  2720. p18 = Instance.new("Part", m5)
  2721. p18.BrickColor = BrickColor.new("Bright blue")
  2722. p18.Material = Enum.Material.Neon
  2723. p18.FormFactor = Enum.FormFactor.Custom
  2724. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2725. p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-07, 0.707104087, -0.707101464, 1.4901164e-07, 9.95719802e-07, 5.95316749e-07, 1.00003707)
  2726. p18.CanCollide = false
  2727. p18.Locked = true
  2728. p18.BottomSurface = Enum.SurfaceType.Smooth
  2729. p18.TopSurface = Enum.SurfaceType.Smooth
  2730. p19 = Instance.new("Part", m5)
  2731. p19.BrickColor = BrickColor.new("Really black")
  2732. p19.Material = Enum.Material.Neon
  2733. p19.FormFactor = Enum.FormFactor.Custom
  2734. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2735. p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-07, 3.08695888e-07, -1.7285347e-06, 0.999993682, 2.38419489e-07, -1.15321473e-06, 3.72538381e-07, 1.0000447)
  2736. p19.CanCollide = false
  2737. p19.Locked = true
  2738. p19.BottomSurface = Enum.SurfaceType.Smooth
  2739. p19.TopSurface = Enum.SurfaceType.Smooth
  2740. b7 = Instance.new("SpecialMesh", p19)
  2741. b7.MeshType = Enum.MeshType.Sphere
  2742. b7.Name = "Mesh"
  2743. p20 = Instance.new("Part", m5)
  2744. p20.BrickColor = BrickColor.new("Really black")
  2745. p20.Material = Enum.Material.Neon
  2746. p20.FormFactor = Enum.FormFactor.Custom
  2747. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2748. p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-07, 2.80525398e-07, -1.8477574e-06, 0.999992907, 3.27827962e-07, -1.18139712e-06, 4.61949412e-07, 1.00005233)
  2749. p20.CanCollide = false
  2750. p20.Locked = true
  2751. p20.BottomSurface = Enum.SurfaceType.Smooth
  2752. p20.TopSurface = Enum.SurfaceType.Smooth
  2753. b8 = Instance.new("SpecialMesh", p20)
  2754. b8.MeshType = Enum.MeshType.Sphere
  2755. b8.Name = "Mesh"
  2756. p21 = Instance.new("Part", m5)
  2757. p21.BrickColor = BrickColor.new("Bright blue")
  2758. p21.Material = Enum.Material.Neon
  2759. p21.FormFactor = Enum.FormFactor.Custom
  2760. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2761. p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-07, 0.965917706, 0.258818805, 4.17237061e-07, 2.19511691e-07, 1.31106742e-06, 1.00005996)
  2762. p21.CanCollide = false
  2763. p21.Locked = true
  2764. p21.BottomSurface = Enum.SurfaceType.Smooth
  2765. p21.TopSurface = Enum.SurfaceType.Smooth
  2766. p22 = Instance.new("Part", m5)
  2767. p22.BrickColor = BrickColor.new("Really black")
  2768. p22.Material = Enum.Material.Neon
  2769. p22.FormFactor = Enum.FormFactor.Custom
  2770. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2771. p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-07, 2.24182997e-07, -2.14576721e-06, 0.999991298, 5.06646757e-07, -1.23776351e-06, 6.40773351e-07, 1.00006759)
  2772. p22.CanCollide = false
  2773. p22.Locked = true
  2774. p22.BottomSurface = Enum.SurfaceType.Smooth
  2775. p22.TopSurface = Enum.SurfaceType.Smooth
  2776. b9 = Instance.new("SpecialMesh", p22)
  2777. b9.MeshType = Enum.MeshType.Sphere
  2778. b9.Name = "Mesh"
  2779. w1 = Instance.new("Weld", p1)
  2780. w1.Name = "Part_Weld"
  2781. w1.Part0 = p1
  2782. w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-07, -3.72529385e-08, 1.1920929e-07, 0.999999404, -1.49011452e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2783. w1.Part1 = p2
  2784. w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-07, -3.72529385e-08, 1.1920929e-07, 0.999999404, -1.49011452e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2785. w2 = Instance.new("Weld", p2)
  2786. w2.Name = "Part_Weld"
  2787. w2.Part0 = p2
  2788. w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-07, -3.72529385e-08, 1.1920929e-07, 0.999999404, -1.49011452e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2789. w2.Part1 = p3
  2790. w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2791. w3 = Instance.new("Weld", p3)
  2792. w3.Name = "Part_Weld"
  2793. w3.Part0 = p3
  2794. w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2795. w3.Part1 = p4
  2796. w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-08, 0.500002384, 0.866024733, -3.15312398e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2797. w4 = Instance.new("Weld", p4)
  2798. w4.Name = "Part_Weld"
  2799. w4.Part0 = p4
  2800. w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-08, 0.500002384, 0.866024733, -3.15312398e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2801. w4.Part1 = p5
  2802. w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-08, -0.500002444, -0.866024733, 3.15312398e-08, -6.70552254e-08, 2.98023224e-08, 1.0000037)
  2803. w5 = Instance.new("Weld", p5)
  2804. w5.Name = "Part_Weld"
  2805. w5.Part0 = p5
  2806. w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-08, -0.500002444, -0.866024733, 3.15312398e-08, -6.70552254e-08, 2.98023224e-08, 1.0000037)
  2807. w5.Part1 = p6
  2808. w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-08, 0.500002205, -0.866024911, -5.72166936e-09, -6.70552254e-08, 2.98023224e-08, 1.0000037)
  2809. w6 = Instance.new("Weld", p6)
  2810. w6.Name = "Part_Weld"
  2811. w6.Part0 = p6
  2812. w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-08, 0.500002205, -0.866024911, -5.72166936e-09, -6.70552254e-08, 2.98023224e-08, 1.0000037)
  2813. w6.Part1 = p7
  2814. w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-07, 7.4505806e-08, 1.63912006e-07, 1, 1.49011186e-08, -7.4505806e-08, -1.49011061e-08, 1)
  2815. w7 = Instance.new("Weld", p7)
  2816. w7.Name = "Part_Weld"
  2817. w7.Part0 = p7
  2818. w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-07, 7.4505806e-08, 1.63912006e-07, 1, 1.49011186e-08, -7.4505806e-08, -1.49011061e-08, 1)
  2819. w7.Part1 = p8
  2820. w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-08, 4.47034836e-08, 5.96043677e-08, 1, -5.9604421e-08, -4.470348e-08, 5.96044245e-08, 1)
  2821. w8 = Instance.new("Weld", p8)
  2822. w8.Name = "Part_Weld"
  2823. w8.Part0 = p8
  2824. w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-08, 4.47034836e-08, 5.96043677e-08, 1, -5.9604421e-08, -4.470348e-08, 5.96044245e-08, 1)
  2825. w8.Part1 = p9
  2826. w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-07, 7.4505806e-08, 1.63912006e-07, 1, 1.49011186e-08, -7.4505806e-08, -1.49011061e-08, 1)
  2827. w9 = Instance.new("Weld", p9)
  2828. w9.Name = "Part_Weld"
  2829. w9.Part0 = p9
  2830. w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-07, 7.4505806e-08, 1.63912006e-07, 1, 1.49011186e-08, -7.4505806e-08, -1.49011061e-08, 1)
  2831. w9.Part1 = p10
  2832. w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2833. w10 = Instance.new("Weld", p10)
  2834. w10.Name = "Main_Weld"
  2835. w10.Part0 = p10
  2836. w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2837. w10.Part1 = p11
  2838. w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-07, -3.72529456e-08, 8.94069672e-08, 0.999999344, -1.49011452e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2839. w11 = Instance.new("Weld", p11)
  2840. w11.Name = "Part_Weld"
  2841. w11.Part0 = p11
  2842. w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-07, -3.72529456e-08, 8.94069672e-08, 0.999999344, -1.49011452e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2843. w11.Part1 = p12
  2844. w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-07, 6.70552325e-08, 1.1920875e-07, 1, -2.98022158e-08, -6.70552325e-08, 2.98022229e-08, 1)
  2845. w12 = Instance.new("Weld", p12)
  2846. w12.Name = "Part_Weld"
  2847. w12.Part0 = p12
  2848. w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-07, 6.70552325e-08, 1.1920875e-07, 1, -2.98022158e-08, -6.70552325e-08, 2.98022229e-08, 1)
  2849. w12.Part1 = p13
  2850. w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-08, 0.999999344, -1.49011434e-08, -1.00000453, 1.94707212e-07, 3.72529385e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2851. w13 = Instance.new("Weld", p13)
  2852. w13.Name = "Part_Weld"
  2853. w13.Part0 = p13
  2854. w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-08, 0.999999344, -1.49011434e-08, -1.00000453, 1.94707212e-07, 3.72529385e-08, -6.70552325e-08, 2.9802333e-08, 1.0000037)
  2855. w13.Part1 = p14
  2856. w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-08, 0.500002325, 0.866024673, -3.15312434e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2857. w14 = Instance.new("Weld", p14)
  2858. w14.Name = "Part_Weld"
  2859. w14.Part0 = p14
  2860. w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-08, 0.500002325, 0.866024673, -3.15312434e-08, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2861. w14.Part1 = p15
  2862. w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-08, -0.500002146, 0.866024971, 5.72170222e-09, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2863. w15 = Instance.new("Weld", p15)
  2864. w15.Name = "Part_Weld"
  2865. w15.Part0 = p15
  2866. w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-08, -0.500002146, 0.866024971, 5.72170222e-09, -6.70552396e-08, 2.9802333e-08, 1.0000037)
  2867. w15.Part1 = p16
  2868. w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-08, 0.422618747, 0.906307578, 3.17729842e-09, -6.0350331e-08, 2.46360994e-08, 1)
  2869. w16 = Instance.new("Weld", p16)
  2870. w16.Name = "Part_Weld"
  2871. w16.Part0 = p16
  2872. w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-08, 0.422618747, 0.906307578, 3.17729842e-09, -6.0350331e-08, 2.46360994e-08, 1)
  2873. w16.Part1 = p17
  2874. w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-08, -0.500002265, 0.866025209, 3.67179815e-08, -4.470348e-08, 5.96046448e-08, 1.0000037)
  2875. w17 = Instance.new("Weld", p17)
  2876. w17.Name = "Part_Weld"
  2877. w17.Part0 = p17
  2878. w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-08, -0.500002265, 0.866025209, 3.67179815e-08, -4.470348e-08, 5.96046448e-08, 1.0000037)
  2879. w17.Part1 = p18
  2880. w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-08, -0.707110047, -0.707106233, -6.32202557e-08, -5.79734909e-08, 2.98023224e-08, 1.00000381)
  2881. w18 = Instance.new("Weld", p18)
  2882. w18.Name = "Part_Weld"
  2883. w18.Part0 = p18
  2884. w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-08, -0.707110047, -0.707106233, -6.32202557e-08, -5.79734909e-08, 2.98023224e-08, 1.00000381)
  2885. w18.Part1 = p19
  2886. w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-07, 2.98023117e-08, 8.94069672e-08, 0.999999642, 5.96046377e-08, -5.79734909e-08, 2.98023224e-08, 1.00000381)
  2887. w19 = Instance.new("Weld", p19)
  2888. w19.Name = "Part_Weld"
  2889. w19.Part0 = p19
  2890. w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-07, 2.98023117e-08, 8.94069672e-08, 0.999999642, 5.96046377e-08, -5.79734909e-08, 2.98023224e-08, 1.00000381)
  2891. w19.Part1 = p20
  2892. w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-07, 2.98023117e-08, 8.94069672e-08, 0.999999583, 5.96046377e-08, -5.79734909e-08, 2.98023224e-08, 1.00000381)
  2893. w20 = Instance.new("Weld", p20)
  2894. w20.Name = "Part_Weld"
  2895. w20.Part0 = p20
  2896. w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-07, 2.98023117e-08, 8.94069672e-08, 0.999999583, 5.96046377e-08, -5.79734909e-08, 2.98023224e-08, 1.00000381)
  2897. w20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement