Advertisement
Dark_EccentricYT

Untitled

Sep 5th, 2018
2,707
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 520.80 KB | None | 0 0
  1. --//=============================================================\\--
  2. --|| CREATED BY LUCKYPLAYERSCRIPTER/ORIGINAL CODE BY SHACKLUSTER
  3. --\\=============================================================//--
  4.  
  5. warn("Yes, i created this script, Original code made by Shackluster")
  6. warn("Go to line 9887 to change the name and make the taunt works")
  7.  
  8. wait(0.2)
  9.  
  10. Player = game:GetService("Players").LocalPlayer
  11. PlayerGui = Player.PlayerGui
  12. Cam = workspace.CurrentCamera
  13. Backpack = Player.Backpack
  14. Character = Player.Character
  15. Humanoid = Character.Humanoid
  16. Mouse = Player:GetMouse()
  17. RootPart = Character["HumanoidRootPart"]
  18. Torso = Character["Torso"]
  19. Head = Character["Head"]
  20. RightArm = Character["Right Arm"]
  21. LeftArm = Character["Left Arm"]
  22. RightLeg = Character["Right Leg"]
  23. LeftLeg = Character["Left Leg"]
  24. RootJoint = RootPart["RootJoint"]
  25. Neck = Torso["Neck"]
  26. RightShoulder = Torso["Right Shoulder"]
  27. LeftShoulder = Torso["Left Shoulder"]
  28. RightHip = Torso["Right Hip"]
  29. LeftHip = Torso["Left Hip"]
  30. plr = game.Players.LocalPlayer
  31. char = plr.Character
  32. for i,v in pairs(char:GetChildren()) do
  33. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  34. v:Destroy()
  35. end
  36. end
  37.  
  38. IT = Instance.new
  39. CF = CFrame.new
  40. VT = Vector3.new
  41. RAD = math.rad
  42. C3 = Color3.new
  43. UD2 = UDim2.new
  44. BRICKC = BrickColor.new
  45. ANGLES = CFrame.Angles
  46. EULER = CFrame.fromEulerAnglesXYZ
  47. COS = math.cos
  48. ACOS = math.acos
  49. SIN = math.sin
  50. ASIN = math.asin
  51. ABS = math.abs
  52. MRANDOM = math.random
  53. FLOOR = math.floor
  54. local sick = Instance.new("Sound",Character)
  55. sick.SoundId = "rbxassetid://212356028"
  56. sick.Looped = true
  57. sick.Pitch = 1
  58. sick.Volume = 1
  59. sick:Play()
  60.  
  61. --//=================================\\
  62. --|| USEFUL VALUES
  63. --\\=================================//
  64.  
  65. Animation_Speed = 3
  66. Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
  67. local Speed = 20
  68. local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  69. local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  70. local RIGHTSHOULDERC0 = CF(-0.5, 0, 0) * ANGLES(RAD(0), RAD(90), RAD(0))
  71. local LEFTSHOULDERC0 = CF(0.5, 0, 0) * ANGLES(RAD(0), RAD(-90), RAD(0))
  72. local DAMAGEMULTIPLIER = 1
  73. local ANIM = "Idle"
  74. local ATTACK = false
  75. local EQUIPPED = false
  76. local HOLD = false
  77. local COMBO = 1
  78. local Rooted = false
  79. local SINE = 0
  80. local KEYHOLD = false
  81. local CHANGE = 2 / Animation_Speed
  82. local WALKINGANIM = false
  83. local VALUE1 = false
  84. local VALUE2 = false
  85. local ROBLOXIDLEANIMATION = IT("Animation")
  86. ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation"
  87. ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571"
  88. --ROBLOXIDLEANIMATION.Parent = Humanoid
  89. local WEAPONGUI = IT("ScreenGui", PlayerGui)
  90. WEAPONGUI.Name = "Weapon GUI"
  91. local Weapon = IT("Model")
  92. Weapon.Name = "Adds"
  93. local Effects = IT("Folder", Weapon)
  94. Effects.Name = "Effects"
  95. local ANIMATOR = Humanoid.Animator
  96. local ANIMATE = Character.Animate
  97. local UNANCHOR = true
  98. local SONG = 383837680
  99. local DEAD = false
  100. local WALKINGANIM = false
  101. local WALK = 0
  102. Player_Size = 1 --Size of the player.
  103. Animation_Speed = 3
  104. Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
  105.  
  106. local Speed = 16
  107. local Effects2 = {}
  108.  
  109. --//=================================\\
  110. --\\=================================//
  111.  
  112.  
  113. --//=================================\\
  114. --|| SAZERENOS' ARTIFICIAL HEARTBEAT
  115. --\\=================================//
  116.  
  117. ArtificialHB = Instance.new("BindableEvent", script)
  118. ArtificialHB.Name = "ArtificialHB"
  119.  
  120. script:WaitForChild("ArtificialHB")
  121.  
  122. frame = Frame_Speed
  123. tf = 0
  124. allowframeloss = false
  125. tossremainder = false
  126. lastframe = tick()
  127. script.ArtificialHB:Fire()
  128.  
  129. game:GetService("RunService").Heartbeat:connect(function(s, p)
  130. tf = tf + s
  131. if tf >= frame then
  132. if allowframeloss then
  133. script.ArtificialHB:Fire()
  134. lastframe = tick()
  135. else
  136. for i = 1, math.floor(tf / frame) do
  137. script.ArtificialHB:Fire()
  138. end
  139. lastframe = tick()
  140. end
  141. if tossremainder then
  142. tf = 0
  143. else
  144. tf = tf - frame * math.floor(tf / frame)
  145. end
  146. end
  147. end)
  148.  
  149. --//=================================\\
  150. --\\=================================//
  151.  
  152. --//=================================\\
  153. --|| SOME FUNCTIONS
  154. --\\=================================//
  155.  
  156. function MagicSphere(SIZE,WAIT,CFRAME,COLOR,GROW)
  157. local wave = CreatePart(3, Effects, "Neon", 0, 0, BRICKC(COLOR), "Effect", VT(1,1,1), true)
  158. local mesh = IT("SpecialMesh",wave)
  159. mesh.MeshType = "Sphere"
  160. mesh.Scale = SIZE
  161. mesh.Offset = VT(0,0,0)
  162. wave.CFrame = CFRAME
  163. coroutine.resume(coroutine.create(function(PART)
  164. for i = 1, WAIT do
  165. Swait()
  166. mesh.Scale = mesh.Scale + GROW
  167. wave.Transparency = wave.Transparency + (1/WAIT)
  168. if wave.Transparency > 0.99 then
  169. wave:remove()
  170. end
  171. end
  172. end))
  173. end
  174.  
  175. function MagicBlock(SIZE,WAIT,CFRAME,COLOR,GROW)
  176. local wave = CreatePart(3, Effects, "Neon", 0, 0, BRICKC(COLOR), "Effect", VT(SIZE,SIZE,SIZE), true)
  177. local mesh = IT("BlockMesh",wave)
  178. wave.CFrame = CFRAME * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360)))
  179. coroutine.resume(coroutine.create(function(PART)
  180. for i = 1, WAIT do
  181. Swait()
  182. mesh.Scale = mesh.Scale + GROW
  183. wave.CFrame = CFRAME * ANGLES(RAD(math.random(-360,360)),RAD(math.random(-360,360)),RAD(math.random(-360,360)))
  184. wave.Transparency = wave.Transparency + (1/WAIT)
  185. if wave.Transparency > 0.99 then
  186. wave:remove()
  187. end
  188. end
  189. end))
  190. end
  191.  
  192. local partasdeff = Instance.new("ParticleEmitter",nil)
  193. partasdeff.LightEmission = 0.5
  194. partasdeff.Color = ColorSequence.new(C3(1,126/255,61/255)),ColorSequence.new(C3(1,25/255,25/255))
  195. partasdeff.Texture = "http://www.roblox.com/asset/?ID=301261210"
  196. aaa = NumberSequence.new({NumberSequenceKeypoint.new(0, 2),NumberSequenceKeypoint.new(1, 15)})
  197. bbb = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(1, 1)})
  198. partasdeff.Transparency = bbb
  199. partasdeff.Size = aaa
  200. partasdeff.ZOffset = 0
  201. partasdeff.LockedToPart = false
  202. partasdeff.Acceleration = Vector3.new(0, 0, 0)
  203. partasdeff.EmissionDirection = "Back"
  204. partasdeff.Lifetime = NumberRange.new(0.5)
  205. partasdeff.Rate = 1000
  206. partasdeff.Rotation = NumberRange.new(-360, 360)
  207. partasdeff.RotSpeed = NumberRange.new(-100,100)
  208. partasdeff.Speed = NumberRange.new(5)
  209. partasdeff.VelocitySpread = 999
  210. partasdeff.Enabled=false
  211.  
  212. function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  213. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  214. end
  215.  
  216. function PositiveAngle(NUMBER)
  217. if NUMBER >= 0 then
  218. NUMBER = 0
  219. end
  220. return NUMBER
  221. end
  222.  
  223. function NegativeAngle(NUMBER)
  224. if NUMBER <= 0 then
  225. NUMBER = 0
  226. end
  227. return NUMBER
  228. end
  229.  
  230. function Swait(NUMBER)
  231. if NUMBER == 0 or NUMBER == nil then
  232. ArtificialHB.Event:wait()
  233. else
  234. for i = 1, NUMBER do
  235. ArtificialHB.Event:wait()
  236. end
  237. end
  238. end
  239.  
  240. function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
  241. local NEWMESH = IT(MESH)
  242. if MESH == "SpecialMesh" then
  243. NEWMESH.MeshType = MESHTYPE
  244. if MESHID ~= "nil" and MESHID ~= "" then
  245. NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
  246. end
  247. if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
  248. NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
  249. end
  250. end
  251. NEWMESH.Offset = OFFSET or VT(0, 0, 0)
  252. NEWMESH.Scale = SCALE
  253. NEWMESH.Parent = PARENT
  254. return NEWMESH
  255. end
  256.  
  257. function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR)
  258. local NEWPART = IT("Part")
  259. NEWPART.formFactor = FORMFACTOR
  260. NEWPART.Reflectance = REFLECTANCE
  261. NEWPART.Transparency = TRANSPARENCY
  262. NEWPART.CanCollide = false
  263. NEWPART.Locked = true
  264. NEWPART.Anchored = true
  265. if ANCHOR == false then
  266. NEWPART.Anchored = false
  267. end
  268. NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR))
  269. NEWPART.Name = NAME
  270. NEWPART.Size = SIZE
  271. NEWPART.Position = Torso.Position
  272. NEWPART.Material = MATERIAL
  273. NEWPART:BreakJoints()
  274. NEWPART.Parent = PARENT
  275. return NEWPART
  276. end
  277.  
  278. local function weldBetween(a, b)
  279. local weldd = Instance.new("ManualWeld")
  280. weldd.Part0 = a
  281. weldd.Part1 = b
  282. weldd.C0 = CFrame.new()
  283. weldd.C1 = b.CFrame:inverse() * a.CFrame
  284. weldd.Parent = a
  285. return weldd
  286. end
  287.  
  288.  
  289. function QuaternionFromCFrame(cf)
  290. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  291. local trace = m00 + m11 + m22
  292. if trace > 0 then
  293. local s = math.sqrt(1 + trace)
  294. local recip = 0.5 / s
  295. return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  296. else
  297. local i = 0
  298. if m11 > m00 then
  299. i = 1
  300. end
  301. if m22 > (i == 0 and m00 or m11) then
  302. i = 2
  303. end
  304. if i == 0 then
  305. local s = math.sqrt(m00 - m11 - m22 + 1)
  306. local recip = 0.5 / s
  307. return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  308. elseif i == 1 then
  309. local s = math.sqrt(m11 - m22 - m00 + 1)
  310. local recip = 0.5 / s
  311. return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  312. elseif i == 2 then
  313. local s = math.sqrt(m22 - m00 - m11 + 1)
  314. local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  315. end
  316. end
  317. end
  318.  
  319. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  320. local xs, ys, zs = x + x, y + y, z + z
  321. local wx, wy, wz = w * xs, w * ys, w * zs
  322. local xx = x * xs
  323. local xy = x * ys
  324. local xz = x * zs
  325. local yy = y * ys
  326. local yz = y * zs
  327. local zz = z * zs
  328. return CFrame.new(px, py, pz, 1 - (yy + zz), xy - wz, xz + wy, xy + wz, 1 - (xx + zz), yz - wx, xz - wy, yz + wx, 1 - (xx + yy))
  329. end
  330.  
  331. function QuaternionSlerp(a, b, t)
  332. local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  333. local startInterp, finishInterp;
  334. if cosTheta >= 0.0001 then
  335. if (1 - cosTheta) > 0.0001 then
  336. local theta = ACOS(cosTheta)
  337. local invSinTheta = 1 / SIN(theta)
  338. startInterp = SIN((1 - t) * theta) * invSinTheta
  339. finishInterp = SIN(t * theta) * invSinTheta
  340. else
  341. startInterp = 1 - t
  342. finishInterp = t
  343. end
  344. else
  345. if (1 + cosTheta) > 0.0001 then
  346. local theta = ACOS(-cosTheta)
  347. local invSinTheta = 1 / SIN(theta)
  348. startInterp = SIN((t - 1) * theta) * invSinTheta
  349. finishInterp = SIN(t * theta) * invSinTheta
  350. else
  351. startInterp = t - 1
  352. finishInterp = t
  353. end
  354. end
  355. return a[1] * startInterp + b[1] * finishInterp, a[2] * startInterp + b[2] * finishInterp, a[3] * startInterp + b[3] * finishInterp, a[4] * startInterp + b[4] * finishInterp
  356. end
  357.  
  358. function Clerp(a, b, t)
  359. local qa = {QuaternionFromCFrame(a)}
  360. local qb = {QuaternionFromCFrame(b)}
  361. local ax, ay, az = a.x, a.y, a.z
  362. local bx, by, bz = b.x, b.y, b.z
  363. local _t = 1 - t
  364. return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  365. end
  366.  
  367. function CreateFrame(PARENT, TRANSPARENCY, BORDERSIZEPIXEL, POSITION, SIZE, COLOR, BORDERCOLOR, NAME)
  368. local frame = IT("Frame")
  369. frame.BackgroundTransparency = TRANSPARENCY
  370. frame.BorderSizePixel = BORDERSIZEPIXEL
  371. frame.Position = POSITION
  372. frame.Size = SIZE
  373. frame.BackgroundColor3 = COLOR
  374. frame.BorderColor3 = BORDERCOLOR
  375. frame.Name = NAME
  376. frame.Parent = PARENT
  377. return frame
  378. end
  379.  
  380. function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME)
  381. local label = IT("TextLabel")
  382. label.BackgroundTransparency = 1
  383. label.Size = UD2(1, 0, 1, 0)
  384. label.Position = UD2(0, 0, 0, 0)
  385. label.TextColor3 = TEXTCOLOR
  386. label.TextStrokeTransparency = STROKETRANSPARENCY
  387. label.TextTransparency = TRANSPARENCY
  388. label.FontSize = TEXTFONTSIZE
  389. label.Font = TEXTFONT
  390. label.BorderSizePixel = BORDERSIZEPIXEL
  391. label.TextScaled = false
  392. label.Text = TEXT
  393. label.Name = NAME
  394. label.Parent = PARENT
  395. return label
  396. end
  397.  
  398. function NoOutlines(PART)
  399. PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10
  400. end
  401.  
  402. function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1)
  403. local NEWWELD = IT(TYPE)
  404. NEWWELD.Part0 = PART0
  405. NEWWELD.Part1 = PART1
  406. NEWWELD.C0 = C0
  407. NEWWELD.C1 = C1
  408. NEWWELD.Parent = PARENT
  409. return NEWWELD
  410. end
  411.  
  412. local S = IT("Sound")
  413. function CreateSound(ID, PARENT, VOLUME, PITCH, DOESLOOP)
  414. local NEWSOUND = nil
  415. coroutine.resume(coroutine.create(function()
  416. NEWSOUND = S:Clone()
  417. NEWSOUND.Parent = PARENT
  418. NEWSOUND.Volume = VOLUME
  419. NEWSOUND.Pitch = PITCH
  420. NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
  421. NEWSOUND:play()
  422. if DOESLOOP == true then
  423. NEWSOUND.Looped = true
  424. else
  425. repeat wait(1) until NEWSOUND.Playing == false
  426. NEWSOUND:remove()
  427. end
  428. end))
  429. return NEWSOUND
  430. end
  431.  
  432. function CFrameFromTopBack(at, top, back)
  433. local right = top:Cross(back)
  434. return CF(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z)
  435. end
  436.  
  437. --WACKYEFFECT({EffectType = "", Size = VT(1,1,1), Size2 = VT(0,0,0), Transparency = 0, Transparency2 = 1, CFrame = CF(), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  438. function WACKYEFFECT(Table)
  439. local TYPE = (Table.EffectType or "Sphere")
  440. local SIZE = (Table.Size or VT(1,1,1))
  441. local ENDSIZE = (Table.Size2 or VT(0,0,0))
  442. local TRANSPARENCY = (Table.Transparency or 0)
  443. local ENDTRANSPARENCY = (Table.Transparency2 or 1)
  444. local CFRAME = (Table.CFrame or Torso.CFrame)
  445. local MOVEDIRECTION = (Table.MoveToPos or nil)
  446. local ROTATION1 = (Table.RotationX or 0)
  447. local ROTATION2 = (Table.RotationY or 0)
  448. local ROTATION3 = (Table.RotationZ or 0)
  449. local MATERIAL = (Table.Material or "Neon")
  450. local COLOR = (Table.Color or C3(1,1,1))
  451. local TIME = (Table.Time or 45)
  452. local SOUNDID = (Table.SoundID or nil)
  453. local SOUNDPITCH = (Table.SoundPitch or nil)
  454. local SOUNDVOLUME = (Table.SoundVolume or nil)
  455. coroutine.resume(coroutine.create(function()
  456. local PLAYSSOUND = false
  457. local SOUND = nil
  458. local EFFECT = CreatePart(3, Effects, MATERIAL, 0, TRANSPARENCY, BRICKC("Pearl"), "Effect", VT(1,1,1), true)
  459. if SOUNDID ~= nil and SOUNDPITCH ~= nil and SOUNDVOLUME ~= nil then
  460. PLAYSSOUND = true
  461. SOUND = CreateSound(SOUNDID, EFFECT, SOUNDVOLUME, SOUNDPITCH, false)
  462. end
  463. EFFECT.Color = COLOR
  464. local MSH = nil
  465. if TYPE == "Sphere" then
  466. MSH = CreateMesh("SpecialMesh", EFFECT, "Sphere", "", "", SIZE, VT(0,0,0))
  467. elseif TYPE == "Block" or TYPE == "Box" then
  468. MSH = IT("BlockMesh",EFFECT)
  469. MSH.Scale = VT(SIZE.X,SIZE.X,SIZE.X)
  470. elseif TYPE == "Wave" then
  471. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "20329976", "", SIZE, VT(0,0,-SIZE.X/8))
  472. elseif TYPE == "Ring" then
  473. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "559831844", "", VT(SIZE.X,SIZE.X,0.1), VT(0,0,0))
  474. elseif TYPE == "Slash" then
  475. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662586858", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  476. elseif TYPE == "Round Slash" then
  477. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662585058", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  478. elseif TYPE == "Swirl" then
  479. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "1051557", "", SIZE, VT(0,0,0))
  480. elseif TYPE == "Skull" then
  481. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "4770583", "", SIZE, VT(0,0,0))
  482. elseif TYPE == "Crystal" then
  483. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "9756362", "", SIZE, VT(0,0,0))
  484. end
  485. if MSH ~= nil then
  486. local MOVESPEED = nil
  487. if MOVEDIRECTION ~= nil then
  488. MOVESPEED = (CFRAME.p - MOVEDIRECTION).Magnitude/TIME
  489. end
  490. local GROWTH = SIZE - ENDSIZE
  491. local TRANS = TRANSPARENCY - ENDTRANSPARENCY
  492. if TYPE == "Block" then
  493. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  494. else
  495. EFFECT.CFrame = CFRAME
  496. end
  497. for LOOP = 1, TIME+1 do
  498. Swait()
  499. MSH.Scale = MSH.Scale - GROWTH/TIME
  500. if TYPE == "Wave" then
  501. MSH.Offset = VT(0,0,-MSH.Scale.X/8)
  502. end
  503. EFFECT.Transparency = EFFECT.Transparency - TRANS/TIME
  504. if TYPE == "Block" then
  505. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  506. else
  507. EFFECT.CFrame = EFFECT.CFrame*ANGLES(RAD(ROTATION1),RAD(ROTATION2),RAD(ROTATION3))
  508. end
  509. if MOVEDIRECTION ~= nil then
  510. local ORI = EFFECT.Orientation
  511. EFFECT.CFrame = CF(EFFECT.Position,MOVEDIRECTION)*CF(0,0,-MOVESPEED)
  512. EFFECT.Orientation = ORI
  513. end
  514. end
  515. if PLAYSSOUND == false then
  516. EFFECT:remove()
  517. else
  518. repeat Swait() until SOUND.Playing == false
  519. EFFECT:remove()
  520. end
  521. else
  522. if PLAYSSOUND == false then
  523. EFFECT:remove()
  524. else
  525. repeat Swait() until SOUND.Playing == false
  526. EFFECT:remove()
  527. end
  528. end
  529. end))
  530. end
  531.  
  532. function MakeForm(PART,TYPE)
  533. if TYPE == "Cyl" then
  534. local MSH = IT("CylinderMesh",PART)
  535. elseif TYPE == "Ball" then
  536. local MSH = IT("SpecialMesh",PART)
  537. MSH.MeshType = "Sphere"
  538. elseif TYPE == "Wedge" then
  539. local MSH = IT("SpecialMesh",PART)
  540. MSH.MeshType = "Wedge"
  541. end
  542. end
  543.  
  544. Debris = game:GetService("Debris")
  545.  
  546. function CastProperRay(StartPos, EndPos, Distance, Ignore)
  547. local DIRECTION = CF(StartPos,EndPos).lookVector
  548. return Raycast(StartPos, DIRECTION, Distance, Ignore)
  549. end
  550.  
  551. function turnto(position)
  552. RootPart.CFrame=CFrame.new(RootPart.CFrame.p,VT(position.X,RootPart.Position.Y,position.Z)) * CFrame.new(0, 0, 0)
  553. end
  554.  
  555. local naeeym2 = IT("BillboardGui",Character)
  556. naeeym2.AlwaysOnTop = true
  557. naeeym2.Size = UDim2.new(5,35,2,15)
  558. naeeym2.StudsOffset = Vector3.new(0,2,0)
  559. naeeym2.MaxDistance = 75
  560. naeeym2.Adornee = Character.Head
  561. naeeym2.Name = "Name"
  562. local tecks2 = IT("TextLabel",naeeym2)
  563. tecks2.BackgroundTransparency = 1
  564. tecks2.TextScaled = true
  565. tecks2.BorderSizePixel = 0
  566. tecks2.Text = "Heavy"
  567. tecks2.Font = "Fantasy"
  568. tecks2.TextSize = 30
  569. tecks2.TextStrokeTransparency = 0
  570. tecks2.TextColor3 = C3(0,0,0)
  571. tecks2.TextStrokeColor3 = C3(255, 0, 0)
  572. tecks2.Size = UDim2.new(1,0,0.5,0)
  573. tecks2.Parent = naeeym2
  574.  
  575. Humanoid.Died:connect(function()
  576. CreateSound("1080625252")
  577. if Head:FindFirstChild("face") then
  578. Head.face.Texture = "http://www.roblox.com/asset/?id=1661697171"
  579. end
  580. end)
  581.  
  582. function sandbox(var,func)
  583. local env = getfenv(func)
  584. local newenv = setmetatable({},{
  585. __index = function(self,k)
  586. if k=="script" then
  587. return var
  588. else
  589. return env[k]
  590. end
  591. end,
  592. })
  593. setfenv(func,newenv)
  594. return func
  595. end
  596. cors = {}
  597. mas = Instance.new("Model",game:GetService("Lighting"))
  598. Tool0 = Instance.new("Tool")
  599. Part1 = Instance.new("Part")
  600. CylinderMesh2 = Instance.new("CylinderMesh")
  601. Part3 = Instance.new("Part")
  602. CylinderMesh4 = Instance.new("CylinderMesh")
  603. Part5 = Instance.new("Part")
  604. CylinderMesh6 = Instance.new("CylinderMesh")
  605. Part7 = Instance.new("Part")
  606. CylinderMesh8 = Instance.new("CylinderMesh")
  607. Part9 = Instance.new("Part")
  608. CylinderMesh10 = Instance.new("CylinderMesh")
  609. Part11 = Instance.new("Part")
  610. CylinderMesh12 = Instance.new("CylinderMesh")
  611. Part13 = Instance.new("Part")
  612. CylinderMesh14 = Instance.new("CylinderMesh")
  613. Part15 = Instance.new("Part")
  614. CylinderMesh16 = Instance.new("CylinderMesh")
  615. Part17 = Instance.new("Part")
  616. CylinderMesh18 = Instance.new("CylinderMesh")
  617. Part19 = Instance.new("Part")
  618. CylinderMesh20 = Instance.new("CylinderMesh")
  619. Part21 = Instance.new("Part")
  620. CylinderMesh22 = Instance.new("CylinderMesh")
  621. Part23 = Instance.new("Part")
  622. CylinderMesh24 = Instance.new("CylinderMesh")
  623. Part25 = Instance.new("Part")
  624. CylinderMesh26 = Instance.new("CylinderMesh")
  625. Part27 = Instance.new("Part")
  626. BlockMesh28 = Instance.new("BlockMesh")
  627. Part29 = Instance.new("Part")
  628. CylinderMesh30 = Instance.new("CylinderMesh")
  629. Part31 = Instance.new("Part")
  630. CylinderMesh32 = Instance.new("CylinderMesh")
  631. Part33 = Instance.new("Part")
  632. CylinderMesh34 = Instance.new("CylinderMesh")
  633. Part35 = Instance.new("Part")
  634. CylinderMesh36 = Instance.new("CylinderMesh")
  635. LocalScript37 = Instance.new("LocalScript")
  636. Part38 = Instance.new("Part")
  637. CylinderMesh39 = Instance.new("CylinderMesh")
  638. Part40 = Instance.new("Part")
  639. CylinderMesh41 = Instance.new("CylinderMesh")
  640. Part42 = Instance.new("Part")
  641. CylinderMesh43 = Instance.new("CylinderMesh")
  642. Part44 = Instance.new("Part")
  643. CylinderMesh45 = Instance.new("CylinderMesh")
  644. Part46 = Instance.new("Part")
  645. CylinderMesh47 = Instance.new("CylinderMesh")
  646. Part48 = Instance.new("Part")
  647. CylinderMesh49 = Instance.new("CylinderMesh")
  648. Part50 = Instance.new("Part")
  649. CylinderMesh51 = Instance.new("CylinderMesh")
  650. Part52 = Instance.new("Part")
  651. CylinderMesh53 = Instance.new("CylinderMesh")
  652. Part54 = Instance.new("Part")
  653. CylinderMesh55 = Instance.new("CylinderMesh")
  654. Part56 = Instance.new("Part")
  655. CylinderMesh57 = Instance.new("CylinderMesh")
  656. Part58 = Instance.new("Part")
  657. CylinderMesh59 = Instance.new("CylinderMesh")
  658. Part60 = Instance.new("Part")
  659. BlockMesh61 = Instance.new("BlockMesh")
  660. Part62 = Instance.new("Part")
  661. SpecialMesh63 = Instance.new("SpecialMesh")
  662. Smoke64 = Instance.new("Smoke")
  663. Part65 = Instance.new("Part")
  664. SpecialMesh66 = Instance.new("SpecialMesh")
  665. Weld67 = Instance.new("Weld")
  666. Weld68 = Instance.new("Weld")
  667. Weld69 = Instance.new("Weld")
  668. Weld70 = Instance.new("Weld")
  669. Weld71 = Instance.new("Weld")
  670. Weld72 = Instance.new("Weld")
  671. Weld73 = Instance.new("Weld")
  672. Weld74 = Instance.new("Weld")
  673. Weld75 = Instance.new("Weld")
  674. Weld76 = Instance.new("Weld")
  675. Weld77 = Instance.new("Weld")
  676. Weld78 = Instance.new("Weld")
  677. Weld79 = Instance.new("Weld")
  678. Weld80 = Instance.new("Weld")
  679. Weld81 = Instance.new("Weld")
  680. Weld82 = Instance.new("Weld")
  681. Weld83 = Instance.new("Weld")
  682. Weld84 = Instance.new("Weld")
  683. Weld85 = Instance.new("Weld")
  684. Weld86 = Instance.new("Weld")
  685. Weld87 = Instance.new("Weld")
  686. Weld88 = Instance.new("Weld")
  687. Weld89 = Instance.new("Weld")
  688. Weld90 = Instance.new("Weld")
  689. Weld91 = Instance.new("Weld")
  690. Weld92 = Instance.new("Weld")
  691. Weld93 = Instance.new("Weld")
  692. Weld94 = Instance.new("Weld")
  693. Weld95 = Instance.new("Weld")
  694. Weld96 = Instance.new("Weld")
  695. Weld97 = Instance.new("Weld")
  696. Weld98 = Instance.new("Weld")
  697. Weld99 = Instance.new("Weld")
  698. Weld100 = Instance.new("Weld")
  699. Weld101 = Instance.new("Weld")
  700. Weld102 = Instance.new("Weld")
  701. Weld103 = Instance.new("Weld")
  702. Weld104 = Instance.new("Weld")
  703. Weld105 = Instance.new("Weld")
  704. Weld106 = Instance.new("Weld")
  705. Weld107 = Instance.new("Weld")
  706. Weld108 = Instance.new("Weld")
  707. Weld109 = Instance.new("Weld")
  708. Weld110 = Instance.new("Weld")
  709. Weld111 = Instance.new("Weld")
  710. Weld112 = Instance.new("Weld")
  711. Weld113 = Instance.new("Weld")
  712. Weld114 = Instance.new("Weld")
  713. Weld115 = Instance.new("Weld")
  714. Weld116 = Instance.new("Weld")
  715. Weld117 = Instance.new("Weld")
  716. Weld118 = Instance.new("Weld")
  717. Weld119 = Instance.new("Weld")
  718. Weld120 = Instance.new("Weld")
  719. Weld121 = Instance.new("Weld")
  720. Weld122 = Instance.new("Weld")
  721. Weld123 = Instance.new("Weld")
  722. Weld124 = Instance.new("Weld")
  723. Weld125 = Instance.new("Weld")
  724. Weld126 = Instance.new("Weld")
  725. Weld127 = Instance.new("Weld")
  726. Weld128 = Instance.new("Weld")
  727. Weld129 = Instance.new("Weld")
  728. Weld130 = Instance.new("Weld")
  729. Weld131 = Instance.new("Weld")
  730. Weld132 = Instance.new("Weld")
  731. Weld133 = Instance.new("Weld")
  732. Weld134 = Instance.new("Weld")
  733. Weld135 = Instance.new("Weld")
  734. Weld136 = Instance.new("Weld")
  735. Weld137 = Instance.new("Weld")
  736. Weld138 = Instance.new("Weld")
  737. Weld139 = Instance.new("Weld")
  738. Weld140 = Instance.new("Weld")
  739. Weld141 = Instance.new("Weld")
  740. Weld142 = Instance.new("Weld")
  741. Weld143 = Instance.new("Weld")
  742. Weld144 = Instance.new("Weld")
  743. Weld145 = Instance.new("Weld")
  744. Weld146 = Instance.new("Weld")
  745. Weld147 = Instance.new("Weld")
  746. Weld148 = Instance.new("Weld")
  747. Weld149 = Instance.new("Weld")
  748. Weld150 = Instance.new("Weld")
  749. Weld151 = Instance.new("Weld")
  750. Weld152 = Instance.new("Weld")
  751. Weld153 = Instance.new("Weld")
  752. Weld154 = Instance.new("Weld")
  753. Weld155 = Instance.new("Weld")
  754. Weld156 = Instance.new("Weld")
  755. Weld157 = Instance.new("Weld")
  756. Weld158 = Instance.new("Weld")
  757. Weld159 = Instance.new("Weld")
  758. Weld160 = Instance.new("Weld")
  759. Weld161 = Instance.new("Weld")
  760. Weld162 = Instance.new("Weld")
  761. Weld163 = Instance.new("Weld")
  762. Weld164 = Instance.new("Weld")
  763. Weld165 = Instance.new("Weld")
  764. Weld166 = Instance.new("Weld")
  765. Weld167 = Instance.new("Weld")
  766. Weld168 = Instance.new("Weld")
  767. Weld169 = Instance.new("Weld")
  768. Weld170 = Instance.new("Weld")
  769. Weld171 = Instance.new("Weld")
  770. Weld172 = Instance.new("Weld")
  771. Weld173 = Instance.new("Weld")
  772. Weld174 = Instance.new("Weld")
  773. Weld175 = Instance.new("Weld")
  774. Weld176 = Instance.new("Weld")
  775. Weld177 = Instance.new("Weld")
  776. Weld178 = Instance.new("Weld")
  777. Weld179 = Instance.new("Weld")
  778. Weld180 = Instance.new("Weld")
  779. Weld181 = Instance.new("Weld")
  780. Weld182 = Instance.new("Weld")
  781. Weld183 = Instance.new("Weld")
  782. Weld184 = Instance.new("Weld")
  783. Weld185 = Instance.new("Weld")
  784. Weld186 = Instance.new("Weld")
  785. Weld187 = Instance.new("Weld")
  786. Weld188 = Instance.new("Weld")
  787. Weld189 = Instance.new("Weld")
  788. Weld190 = Instance.new("Weld")
  789. Weld191 = Instance.new("Weld")
  790. Weld192 = Instance.new("Weld")
  791. Weld193 = Instance.new("Weld")
  792. Weld194 = Instance.new("Weld")
  793. Weld195 = Instance.new("Weld")
  794. Weld196 = Instance.new("Weld")
  795. Weld197 = Instance.new("Weld")
  796. Weld198 = Instance.new("Weld")
  797. Weld199 = Instance.new("Weld")
  798. Weld200 = Instance.new("Weld")
  799. Weld201 = Instance.new("Weld")
  800. Weld202 = Instance.new("Weld")
  801. Weld203 = Instance.new("Weld")
  802. Weld204 = Instance.new("Weld")
  803. Weld205 = Instance.new("Weld")
  804. Weld206 = Instance.new("Weld")
  805. Weld207 = Instance.new("Weld")
  806. Weld208 = Instance.new("Weld")
  807. Weld209 = Instance.new("Weld")
  808. Weld210 = Instance.new("Weld")
  809. Weld211 = Instance.new("Weld")
  810. Weld212 = Instance.new("Weld")
  811. Weld213 = Instance.new("Weld")
  812. Weld214 = Instance.new("Weld")
  813. Weld215 = Instance.new("Weld")
  814. Weld216 = Instance.new("Weld")
  815. Weld217 = Instance.new("Weld")
  816. Weld218 = Instance.new("Weld")
  817. Weld219 = Instance.new("Weld")
  818. Weld220 = Instance.new("Weld")
  819. Weld221 = Instance.new("Weld")
  820. Weld222 = Instance.new("Weld")
  821. Weld223 = Instance.new("Weld")
  822. Weld224 = Instance.new("Weld")
  823. Weld225 = Instance.new("Weld")
  824. Weld226 = Instance.new("Weld")
  825. Weld227 = Instance.new("Weld")
  826. Sound228 = Instance.new("Sound")
  827. Sound229 = Instance.new("Sound")
  828. Sound230 = Instance.new("Sound")
  829. Sound231 = Instance.new("Sound")
  830. Sound232 = Instance.new("Sound")
  831. Sound233 = Instance.new("Sound")
  832. Weld234 = Instance.new("Weld")
  833. Weld235 = Instance.new("Weld")
  834. Weld236 = Instance.new("Weld")
  835. Weld237 = Instance.new("Weld")
  836. Weld238 = Instance.new("Weld")
  837. Weld239 = Instance.new("Weld")
  838. Weld240 = Instance.new("Weld")
  839. Weld241 = Instance.new("Weld")
  840. Weld242 = Instance.new("Weld")
  841. Weld243 = Instance.new("Weld")
  842. Weld244 = Instance.new("Weld")
  843. Weld245 = Instance.new("Weld")
  844. Weld246 = Instance.new("Weld")
  845. Weld247 = Instance.new("Weld")
  846. Weld248 = Instance.new("Weld")
  847. Weld249 = Instance.new("Weld")
  848. Weld250 = Instance.new("Weld")
  849. Weld251 = Instance.new("Weld")
  850. Weld252 = Instance.new("Weld")
  851. Weld253 = Instance.new("Weld")
  852. Weld254 = Instance.new("Weld")
  853. Weld255 = Instance.new("Weld")
  854. Weld256 = Instance.new("Weld")
  855. Weld257 = Instance.new("Weld")
  856. Weld258 = Instance.new("Weld")
  857. Weld259 = Instance.new("Weld")
  858. Weld260 = Instance.new("Weld")
  859. Weld261 = Instance.new("Weld")
  860. Weld262 = Instance.new("Weld")
  861. Weld263 = Instance.new("Weld")
  862. Weld264 = Instance.new("Weld")
  863. Weld265 = Instance.new("Weld")
  864. Weld266 = Instance.new("Weld")
  865. Weld267 = Instance.new("Weld")
  866. Weld268 = Instance.new("Weld")
  867. Weld269 = Instance.new("Weld")
  868. Weld270 = Instance.new("Weld")
  869. Weld271 = Instance.new("Weld")
  870. Weld272 = Instance.new("Weld")
  871. Weld273 = Instance.new("Weld")
  872. Weld274 = Instance.new("Weld")
  873. Weld275 = Instance.new("Weld")
  874. Weld276 = Instance.new("Weld")
  875. Weld277 = Instance.new("Weld")
  876. Weld278 = Instance.new("Weld")
  877. Weld279 = Instance.new("Weld")
  878. Weld280 = Instance.new("Weld")
  879. Weld281 = Instance.new("Weld")
  880. Weld282 = Instance.new("Weld")
  881. Weld283 = Instance.new("Weld")
  882. Weld284 = Instance.new("Weld")
  883. Weld285 = Instance.new("Weld")
  884. Weld286 = Instance.new("Weld")
  885. Weld287 = Instance.new("Weld")
  886. Weld288 = Instance.new("Weld")
  887. Weld289 = Instance.new("Weld")
  888. Weld290 = Instance.new("Weld")
  889. Weld291 = Instance.new("Weld")
  890. Weld292 = Instance.new("Weld")
  891. Weld293 = Instance.new("Weld")
  892. Weld294 = Instance.new("Weld")
  893. Weld295 = Instance.new("Weld")
  894. Weld296 = Instance.new("Weld")
  895. Weld297 = Instance.new("Weld")
  896. Weld298 = Instance.new("Weld")
  897. Weld299 = Instance.new("Weld")
  898. Weld300 = Instance.new("Weld")
  899. Weld301 = Instance.new("Weld")
  900. Weld302 = Instance.new("Weld")
  901. Weld303 = Instance.new("Weld")
  902. Weld304 = Instance.new("Weld")
  903. Weld305 = Instance.new("Weld")
  904. Weld306 = Instance.new("Weld")
  905. Weld307 = Instance.new("Weld")
  906. Weld308 = Instance.new("Weld")
  907. Weld309 = Instance.new("Weld")
  908. Weld310 = Instance.new("Weld")
  909. Weld311 = Instance.new("Weld")
  910. Weld312 = Instance.new("Weld")
  911. Weld313 = Instance.new("Weld")
  912. Weld314 = Instance.new("Weld")
  913. Weld315 = Instance.new("Weld")
  914. Weld316 = Instance.new("Weld")
  915. Weld317 = Instance.new("Weld")
  916. Weld318 = Instance.new("Weld")
  917. Weld319 = Instance.new("Weld")
  918. Weld320 = Instance.new("Weld")
  919. Weld321 = Instance.new("Weld")
  920. Weld322 = Instance.new("Weld")
  921. Weld323 = Instance.new("Weld")
  922. Weld324 = Instance.new("Weld")
  923. Weld325 = Instance.new("Weld")
  924. Weld326 = Instance.new("Weld")
  925. Weld327 = Instance.new("Weld")
  926. Weld328 = Instance.new("Weld")
  927. Weld329 = Instance.new("Weld")
  928. Weld330 = Instance.new("Weld")
  929. Weld331 = Instance.new("Weld")
  930. Weld332 = Instance.new("Weld")
  931. Weld333 = Instance.new("Weld")
  932. Weld334 = Instance.new("Weld")
  933. Weld335 = Instance.new("Weld")
  934. Weld336 = Instance.new("Weld")
  935. Weld337 = Instance.new("Weld")
  936. Weld338 = Instance.new("Weld")
  937. Weld339 = Instance.new("Weld")
  938. Weld340 = Instance.new("Weld")
  939. Weld341 = Instance.new("Weld")
  940. Weld342 = Instance.new("Weld")
  941. Weld343 = Instance.new("Weld")
  942. Weld344 = Instance.new("Weld")
  943. Weld345 = Instance.new("Weld")
  944. Weld346 = Instance.new("Weld")
  945. Weld347 = Instance.new("Weld")
  946. Weld348 = Instance.new("Weld")
  947. Weld349 = Instance.new("Weld")
  948. Weld350 = Instance.new("Weld")
  949. Weld351 = Instance.new("Weld")
  950. Weld352 = Instance.new("Weld")
  951. Weld353 = Instance.new("Weld")
  952. Weld354 = Instance.new("Weld")
  953. Weld355 = Instance.new("Weld")
  954. Weld356 = Instance.new("Weld")
  955. Weld357 = Instance.new("Weld")
  956. Weld358 = Instance.new("Weld")
  957. Weld359 = Instance.new("Weld")
  958. Weld360 = Instance.new("Weld")
  959. Weld361 = Instance.new("Weld")
  960. Weld362 = Instance.new("Weld")
  961. Weld363 = Instance.new("Weld")
  962. Weld364 = Instance.new("Weld")
  963. Weld365 = Instance.new("Weld")
  964. Weld366 = Instance.new("Weld")
  965. Weld367 = Instance.new("Weld")
  966. Weld368 = Instance.new("Weld")
  967. Weld369 = Instance.new("Weld")
  968. Weld370 = Instance.new("Weld")
  969. Weld371 = Instance.new("Weld")
  970. Weld372 = Instance.new("Weld")
  971. Weld373 = Instance.new("Weld")
  972. Weld374 = Instance.new("Weld")
  973. Weld375 = Instance.new("Weld")
  974. Weld376 = Instance.new("Weld")
  975. Weld377 = Instance.new("Weld")
  976. Weld378 = Instance.new("Weld")
  977. Weld379 = Instance.new("Weld")
  978. Weld380 = Instance.new("Weld")
  979. Weld381 = Instance.new("Weld")
  980. Weld382 = Instance.new("Weld")
  981. Weld383 = Instance.new("Weld")
  982. Weld384 = Instance.new("Weld")
  983. Weld385 = Instance.new("Weld")
  984. Weld386 = Instance.new("Weld")
  985. Weld387 = Instance.new("Weld")
  986. Weld388 = Instance.new("Weld")
  987. Weld389 = Instance.new("Weld")
  988. Weld390 = Instance.new("Weld")
  989. Weld391 = Instance.new("Weld")
  990. Weld392 = Instance.new("Weld")
  991. Weld393 = Instance.new("Weld")
  992. Weld394 = Instance.new("Weld")
  993. Weld395 = Instance.new("Weld")
  994. Weld396 = Instance.new("Weld")
  995. Weld397 = Instance.new("Weld")
  996. Weld398 = Instance.new("Weld")
  997. Weld399 = Instance.new("Weld")
  998. Weld400 = Instance.new("Weld")
  999. Weld401 = Instance.new("Weld")
  1000. Weld402 = Instance.new("Weld")
  1001. Weld403 = Instance.new("Weld")
  1002. Weld404 = Instance.new("Weld")
  1003. Weld405 = Instance.new("Weld")
  1004. Weld406 = Instance.new("Weld")
  1005. Weld407 = Instance.new("Weld")
  1006. Weld408 = Instance.new("Weld")
  1007. Weld409 = Instance.new("Weld")
  1008. Weld410 = Instance.new("Weld")
  1009. Weld411 = Instance.new("Weld")
  1010. Weld412 = Instance.new("Weld")
  1011. Weld413 = Instance.new("Weld")
  1012. Weld414 = Instance.new("Weld")
  1013. Weld415 = Instance.new("Weld")
  1014. Weld416 = Instance.new("Weld")
  1015. Weld417 = Instance.new("Weld")
  1016. Weld418 = Instance.new("Weld")
  1017. Weld419 = Instance.new("Weld")
  1018. Weld420 = Instance.new("Weld")
  1019. Weld421 = Instance.new("Weld")
  1020. Weld422 = Instance.new("Weld")
  1021. Weld423 = Instance.new("Weld")
  1022. Weld424 = Instance.new("Weld")
  1023. Weld425 = Instance.new("Weld")
  1024. Weld426 = Instance.new("Weld")
  1025. Weld427 = Instance.new("Weld")
  1026. Weld428 = Instance.new("Weld")
  1027. Weld429 = Instance.new("Weld")
  1028. Weld430 = Instance.new("Weld")
  1029. Weld431 = Instance.new("Weld")
  1030. Weld432 = Instance.new("Weld")
  1031. Weld433 = Instance.new("Weld")
  1032. Weld434 = Instance.new("Weld")
  1033. Weld435 = Instance.new("Weld")
  1034. Weld436 = Instance.new("Weld")
  1035. Weld437 = Instance.new("Weld")
  1036. Weld438 = Instance.new("Weld")
  1037. Weld439 = Instance.new("Weld")
  1038. Weld440 = Instance.new("Weld")
  1039. Weld441 = Instance.new("Weld")
  1040. Weld442 = Instance.new("Weld")
  1041. Weld443 = Instance.new("Weld")
  1042. Weld444 = Instance.new("Weld")
  1043. Weld445 = Instance.new("Weld")
  1044. Weld446 = Instance.new("Weld")
  1045. Weld447 = Instance.new("Weld")
  1046. Weld448 = Instance.new("Weld")
  1047. Weld449 = Instance.new("Weld")
  1048. Weld450 = Instance.new("Weld")
  1049. Weld451 = Instance.new("Weld")
  1050. Weld452 = Instance.new("Weld")
  1051. Weld453 = Instance.new("Weld")
  1052. Weld454 = Instance.new("Weld")
  1053. Weld455 = Instance.new("Weld")
  1054. Weld456 = Instance.new("Weld")
  1055. Weld457 = Instance.new("Weld")
  1056. Weld458 = Instance.new("Weld")
  1057. Weld459 = Instance.new("Weld")
  1058. Weld460 = Instance.new("Weld")
  1059. Weld461 = Instance.new("Weld")
  1060. Weld462 = Instance.new("Weld")
  1061. Weld463 = Instance.new("Weld")
  1062. Weld464 = Instance.new("Weld")
  1063. Weld465 = Instance.new("Weld")
  1064. Weld466 = Instance.new("Weld")
  1065. Weld467 = Instance.new("Weld")
  1066. Weld468 = Instance.new("Weld")
  1067. Weld469 = Instance.new("Weld")
  1068. Weld470 = Instance.new("Weld")
  1069. Weld471 = Instance.new("Weld")
  1070. Weld472 = Instance.new("Weld")
  1071. Weld473 = Instance.new("Weld")
  1072. Weld474 = Instance.new("Weld")
  1073. Weld475 = Instance.new("Weld")
  1074. Weld476 = Instance.new("Weld")
  1075. Weld477 = Instance.new("Weld")
  1076. Weld478 = Instance.new("Weld")
  1077. Weld479 = Instance.new("Weld")
  1078. Weld480 = Instance.new("Weld")
  1079. Weld481 = Instance.new("Weld")
  1080. Weld482 = Instance.new("Weld")
  1081. Weld483 = Instance.new("Weld")
  1082. Weld484 = Instance.new("Weld")
  1083. Weld485 = Instance.new("Weld")
  1084. Weld486 = Instance.new("Weld")
  1085. Weld487 = Instance.new("Weld")
  1086. Weld488 = Instance.new("Weld")
  1087. Weld489 = Instance.new("Weld")
  1088. Weld490 = Instance.new("Weld")
  1089. Weld491 = Instance.new("Weld")
  1090. Weld492 = Instance.new("Weld")
  1091. Weld493 = Instance.new("Weld")
  1092. Weld494 = Instance.new("Weld")
  1093. Weld495 = Instance.new("Weld")
  1094. Weld496 = Instance.new("Weld")
  1095. Weld497 = Instance.new("Weld")
  1096. Weld498 = Instance.new("Weld")
  1097. Weld499 = Instance.new("Weld")
  1098. Weld500 = Instance.new("Weld")
  1099. Weld501 = Instance.new("Weld")
  1100. Weld502 = Instance.new("Weld")
  1101. Weld503 = Instance.new("Weld")
  1102. Weld504 = Instance.new("Weld")
  1103. Weld505 = Instance.new("Weld")
  1104. Weld506 = Instance.new("Weld")
  1105. Weld507 = Instance.new("Weld")
  1106. Weld508 = Instance.new("Weld")
  1107. Weld509 = Instance.new("Weld")
  1108. Weld510 = Instance.new("Weld")
  1109. Weld511 = Instance.new("Weld")
  1110. Weld512 = Instance.new("Weld")
  1111. Weld513 = Instance.new("Weld")
  1112. Weld514 = Instance.new("Weld")
  1113. Weld515 = Instance.new("Weld")
  1114. Weld516 = Instance.new("Weld")
  1115. Weld517 = Instance.new("Weld")
  1116. Weld518 = Instance.new("Weld")
  1117. Weld519 = Instance.new("Weld")
  1118. Weld520 = Instance.new("Weld")
  1119. Weld521 = Instance.new("Weld")
  1120. Weld522 = Instance.new("Weld")
  1121. Weld523 = Instance.new("Weld")
  1122. Weld524 = Instance.new("Weld")
  1123. Weld525 = Instance.new("Weld")
  1124. Weld526 = Instance.new("Weld")
  1125. Weld527 = Instance.new("Weld")
  1126. Weld528 = Instance.new("Weld")
  1127. Weld529 = Instance.new("Weld")
  1128. Weld530 = Instance.new("Weld")
  1129. Weld531 = Instance.new("Weld")
  1130. Weld532 = Instance.new("Weld")
  1131. Weld533 = Instance.new("Weld")
  1132. Weld534 = Instance.new("Weld")
  1133. Weld535 = Instance.new("Weld")
  1134. Weld536 = Instance.new("Weld")
  1135. Weld537 = Instance.new("Weld")
  1136. Weld538 = Instance.new("Weld")
  1137. Weld539 = Instance.new("Weld")
  1138. Weld540 = Instance.new("Weld")
  1139. Weld541 = Instance.new("Weld")
  1140. Weld542 = Instance.new("Weld")
  1141. Weld543 = Instance.new("Weld")
  1142. Weld544 = Instance.new("Weld")
  1143. Weld545 = Instance.new("Weld")
  1144. Weld546 = Instance.new("Weld")
  1145. Weld547 = Instance.new("Weld")
  1146. Weld548 = Instance.new("Weld")
  1147. Weld549 = Instance.new("Weld")
  1148. Weld550 = Instance.new("Weld")
  1149. Weld551 = Instance.new("Weld")
  1150. Weld552 = Instance.new("Weld")
  1151. Weld553 = Instance.new("Weld")
  1152. Weld554 = Instance.new("Weld")
  1153. Weld555 = Instance.new("Weld")
  1154. Weld556 = Instance.new("Weld")
  1155. Weld557 = Instance.new("Weld")
  1156. Weld558 = Instance.new("Weld")
  1157. Weld559 = Instance.new("Weld")
  1158. Weld560 = Instance.new("Weld")
  1159. Weld561 = Instance.new("Weld")
  1160. Weld562 = Instance.new("Weld")
  1161. Weld563 = Instance.new("Weld")
  1162. Weld564 = Instance.new("Weld")
  1163. Weld565 = Instance.new("Weld")
  1164. Weld566 = Instance.new("Weld")
  1165. Weld567 = Instance.new("Weld")
  1166. Weld568 = Instance.new("Weld")
  1167. Weld569 = Instance.new("Weld")
  1168. Weld570 = Instance.new("Weld")
  1169. Weld571 = Instance.new("Weld")
  1170. Weld572 = Instance.new("Weld")
  1171. Weld573 = Instance.new("Weld")
  1172. Weld574 = Instance.new("Weld")
  1173. Weld575 = Instance.new("Weld")
  1174. Weld576 = Instance.new("Weld")
  1175. Weld577 = Instance.new("Weld")
  1176. Weld578 = Instance.new("Weld")
  1177. Weld579 = Instance.new("Weld")
  1178. Weld580 = Instance.new("Weld")
  1179. Weld581 = Instance.new("Weld")
  1180. Weld582 = Instance.new("Weld")
  1181. Weld583 = Instance.new("Weld")
  1182. Weld584 = Instance.new("Weld")
  1183. Weld585 = Instance.new("Weld")
  1184. Weld586 = Instance.new("Weld")
  1185. Weld587 = Instance.new("Weld")
  1186. Weld588 = Instance.new("Weld")
  1187. Weld589 = Instance.new("Weld")
  1188. Weld590 = Instance.new("Weld")
  1189. Weld591 = Instance.new("Weld")
  1190. Weld592 = Instance.new("Weld")
  1191. Weld593 = Instance.new("Weld")
  1192. Weld594 = Instance.new("Weld")
  1193. Weld595 = Instance.new("Weld")
  1194. Weld596 = Instance.new("Weld")
  1195. Weld597 = Instance.new("Weld")
  1196. Weld598 = Instance.new("Weld")
  1197. Weld599 = Instance.new("Weld")
  1198. Weld600 = Instance.new("Weld")
  1199. Weld601 = Instance.new("Weld")
  1200. Weld602 = Instance.new("Weld")
  1201. Weld603 = Instance.new("Weld")
  1202. Weld604 = Instance.new("Weld")
  1203. Weld605 = Instance.new("Weld")
  1204. Weld606 = Instance.new("Weld")
  1205. Weld607 = Instance.new("Weld")
  1206. Weld608 = Instance.new("Weld")
  1207. Weld609 = Instance.new("Weld")
  1208. Weld610 = Instance.new("Weld")
  1209. Weld611 = Instance.new("Weld")
  1210. Weld612 = Instance.new("Weld")
  1211. Weld613 = Instance.new("Weld")
  1212. Weld614 = Instance.new("Weld")
  1213. Weld615 = Instance.new("Weld")
  1214. Weld616 = Instance.new("Weld")
  1215. Weld617 = Instance.new("Weld")
  1216. Weld618 = Instance.new("Weld")
  1217. Weld619 = Instance.new("Weld")
  1218. Weld620 = Instance.new("Weld")
  1219. Weld621 = Instance.new("Weld")
  1220. Weld622 = Instance.new("Weld")
  1221. Weld623 = Instance.new("Weld")
  1222. Weld624 = Instance.new("Weld")
  1223. Weld625 = Instance.new("Weld")
  1224. Weld626 = Instance.new("Weld")
  1225. Weld627 = Instance.new("Weld")
  1226. Weld628 = Instance.new("Weld")
  1227. Weld629 = Instance.new("Weld")
  1228. Weld630 = Instance.new("Weld")
  1229. Weld631 = Instance.new("Weld")
  1230. Weld632 = Instance.new("Weld")
  1231. Weld633 = Instance.new("Weld")
  1232. Weld634 = Instance.new("Weld")
  1233. Weld635 = Instance.new("Weld")
  1234. Weld636 = Instance.new("Weld")
  1235. Weld637 = Instance.new("Weld")
  1236. Weld638 = Instance.new("Weld")
  1237. Weld639 = Instance.new("Weld")
  1238. Weld640 = Instance.new("Weld")
  1239. Weld641 = Instance.new("Weld")
  1240. Weld642 = Instance.new("Weld")
  1241. Weld643 = Instance.new("Weld")
  1242. Weld644 = Instance.new("Weld")
  1243. Weld645 = Instance.new("Weld")
  1244. Weld646 = Instance.new("Weld")
  1245. Weld647 = Instance.new("Weld")
  1246. Weld648 = Instance.new("Weld")
  1247. Weld649 = Instance.new("Weld")
  1248. Weld650 = Instance.new("Weld")
  1249. Weld651 = Instance.new("Weld")
  1250. Weld652 = Instance.new("Weld")
  1251. Weld653 = Instance.new("Weld")
  1252. Weld654 = Instance.new("Weld")
  1253. Weld655 = Instance.new("Weld")
  1254. Weld656 = Instance.new("Weld")
  1255. Weld657 = Instance.new("Weld")
  1256. Weld658 = Instance.new("Weld")
  1257. Weld659 = Instance.new("Weld")
  1258. Weld660 = Instance.new("Weld")
  1259. Weld661 = Instance.new("Weld")
  1260. Weld662 = Instance.new("Weld")
  1261. Weld663 = Instance.new("Weld")
  1262. Weld664 = Instance.new("Weld")
  1263. Weld665 = Instance.new("Weld")
  1264. Weld666 = Instance.new("Weld")
  1265. Part667 = Instance.new("Part")
  1266. BlockMesh668 = Instance.new("BlockMesh")
  1267. Part669 = Instance.new("Part")
  1268. BlockMesh670 = Instance.new("BlockMesh")
  1269. Part671 = Instance.new("Part")
  1270. BlockMesh672 = Instance.new("BlockMesh")
  1271. Part673 = Instance.new("Part")
  1272. BlockMesh674 = Instance.new("BlockMesh")
  1273. Part675 = Instance.new("Part")
  1274. CylinderMesh676 = Instance.new("CylinderMesh")
  1275. Part677 = Instance.new("Part")
  1276. CylinderMesh678 = Instance.new("CylinderMesh")
  1277. Part679 = Instance.new("Part")
  1278. CylinderMesh680 = Instance.new("CylinderMesh")
  1279. Part681 = Instance.new("Part")
  1280. CylinderMesh682 = Instance.new("CylinderMesh")
  1281. Part683 = Instance.new("Part")
  1282. CylinderMesh684 = Instance.new("CylinderMesh")
  1283. Part685 = Instance.new("Part")
  1284. CylinderMesh686 = Instance.new("CylinderMesh")
  1285. Part687 = Instance.new("Part")
  1286. CylinderMesh688 = Instance.new("CylinderMesh")
  1287. Part689 = Instance.new("Part")
  1288. CylinderMesh690 = Instance.new("CylinderMesh")
  1289. Part691 = Instance.new("Part")
  1290. CylinderMesh692 = Instance.new("CylinderMesh")
  1291. Part693 = Instance.new("Part")
  1292. CylinderMesh694 = Instance.new("CylinderMesh")
  1293. Part695 = Instance.new("Part")
  1294. SpecialMesh696 = Instance.new("SpecialMesh")
  1295. Part697 = Instance.new("Part")
  1296. CylinderMesh698 = Instance.new("CylinderMesh")
  1297. Part699 = Instance.new("Part")
  1298. CylinderMesh700 = Instance.new("CylinderMesh")
  1299. Part701 = Instance.new("Part")
  1300. CylinderMesh702 = Instance.new("CylinderMesh")
  1301. Part703 = Instance.new("Part")
  1302. CylinderMesh704 = Instance.new("CylinderMesh")
  1303. Part705 = Instance.new("Part")
  1304. CylinderMesh706 = Instance.new("CylinderMesh")
  1305. Part707 = Instance.new("Part")
  1306. CylinderMesh708 = Instance.new("CylinderMesh")
  1307. Part709 = Instance.new("Part")
  1308. CylinderMesh710 = Instance.new("CylinderMesh")
  1309. Part711 = Instance.new("Part")
  1310. CylinderMesh712 = Instance.new("CylinderMesh")
  1311. Part713 = Instance.new("Part")
  1312. CylinderMesh714 = Instance.new("CylinderMesh")
  1313. Part715 = Instance.new("Part")
  1314. CylinderMesh716 = Instance.new("CylinderMesh")
  1315. Part717 = Instance.new("Part")
  1316. CylinderMesh718 = Instance.new("CylinderMesh")
  1317. Part719 = Instance.new("Part")
  1318. CylinderMesh720 = Instance.new("CylinderMesh")
  1319. Part721 = Instance.new("Part")
  1320. CylinderMesh722 = Instance.new("CylinderMesh")
  1321. Part723 = Instance.new("Part")
  1322. CylinderMesh724 = Instance.new("CylinderMesh")
  1323. Part725 = Instance.new("Part")
  1324. CylinderMesh726 = Instance.new("CylinderMesh")
  1325. Part727 = Instance.new("Part")
  1326. BlockMesh728 = Instance.new("BlockMesh")
  1327. Part729 = Instance.new("Part")
  1328. CylinderMesh730 = Instance.new("CylinderMesh")
  1329. Part731 = Instance.new("Part")
  1330. CylinderMesh732 = Instance.new("CylinderMesh")
  1331. Part733 = Instance.new("Part")
  1332. SpecialMesh734 = Instance.new("SpecialMesh")
  1333. Part735 = Instance.new("Part")
  1334. CylinderMesh736 = Instance.new("CylinderMesh")
  1335. Part737 = Instance.new("Part")
  1336. CylinderMesh738 = Instance.new("CylinderMesh")
  1337. Part739 = Instance.new("Part")
  1338. BlockMesh740 = Instance.new("BlockMesh")
  1339. Decal741 = Instance.new("Decal")
  1340. Part742 = Instance.new("Part")
  1341. CylinderMesh743 = Instance.new("CylinderMesh")
  1342. Part744 = Instance.new("Part")
  1343. CylinderMesh745 = Instance.new("CylinderMesh")
  1344. Part746 = Instance.new("Part")
  1345. BlockMesh747 = Instance.new("BlockMesh")
  1346. Decal748 = Instance.new("Decal")
  1347. Part749 = Instance.new("Part")
  1348. CylinderMesh750 = Instance.new("CylinderMesh")
  1349. Part751 = Instance.new("Part")
  1350. CylinderMesh752 = Instance.new("CylinderMesh")
  1351. Part753 = Instance.new("Part")
  1352. CylinderMesh754 = Instance.new("CylinderMesh")
  1353. Part755 = Instance.new("Part")
  1354. CylinderMesh756 = Instance.new("CylinderMesh")
  1355. Part757 = Instance.new("Part")
  1356. SpecialMesh758 = Instance.new("SpecialMesh")
  1357. Part759 = Instance.new("Part")
  1358. CylinderMesh760 = Instance.new("CylinderMesh")
  1359. Part761 = Instance.new("Part")
  1360. BlockMesh762 = Instance.new("BlockMesh")
  1361. Part763 = Instance.new("Part")
  1362. SpecialMesh764 = Instance.new("SpecialMesh")
  1363. Part765 = Instance.new("Part")
  1364. BlockMesh766 = Instance.new("BlockMesh")
  1365. Part767 = Instance.new("Part")
  1366. SpecialMesh768 = Instance.new("SpecialMesh")
  1367. Part769 = Instance.new("Part")
  1368. SpecialMesh770 = Instance.new("SpecialMesh")
  1369. Part771 = Instance.new("Part")
  1370. CylinderMesh772 = Instance.new("CylinderMesh")
  1371. Part773 = Instance.new("Part")
  1372. CylinderMesh774 = Instance.new("CylinderMesh")
  1373. Part775 = Instance.new("Part")
  1374. CylinderMesh776 = Instance.new("CylinderMesh")
  1375. Part777 = Instance.new("Part")
  1376. BlockMesh778 = Instance.new("BlockMesh")
  1377. Part779 = Instance.new("Part")
  1378. CylinderMesh780 = Instance.new("CylinderMesh")
  1379. Part781 = Instance.new("Part")
  1380. CylinderMesh782 = Instance.new("CylinderMesh")
  1381. Part783 = Instance.new("Part")
  1382. CylinderMesh784 = Instance.new("CylinderMesh")
  1383. Part785 = Instance.new("Part")
  1384. CylinderMesh786 = Instance.new("CylinderMesh")
  1385. Part787 = Instance.new("Part")
  1386. CylinderMesh788 = Instance.new("CylinderMesh")
  1387. Part789 = Instance.new("Part")
  1388. CylinderMesh790 = Instance.new("CylinderMesh")
  1389. Part791 = Instance.new("Part")
  1390. BlockMesh792 = Instance.new("BlockMesh")
  1391. Decal793 = Instance.new("Decal")
  1392. Part794 = Instance.new("Part")
  1393. BlockMesh795 = Instance.new("BlockMesh")
  1394. Part796 = Instance.new("Part")
  1395. CylinderMesh797 = Instance.new("CylinderMesh")
  1396. Part798 = Instance.new("Part")
  1397. BlockMesh799 = Instance.new("BlockMesh")
  1398. Part800 = Instance.new("Part")
  1399. SpecialMesh801 = Instance.new("SpecialMesh")
  1400. Part802 = Instance.new("Part")
  1401. CylinderMesh803 = Instance.new("CylinderMesh")
  1402. Part804 = Instance.new("Part")
  1403. SpecialMesh805 = Instance.new("SpecialMesh")
  1404. Part806 = Instance.new("Part")
  1405. CylinderMesh807 = Instance.new("CylinderMesh")
  1406. Part808 = Instance.new("Part")
  1407. CylinderMesh809 = Instance.new("CylinderMesh")
  1408. Part810 = Instance.new("Part")
  1409. CylinderMesh811 = Instance.new("CylinderMesh")
  1410. Part812 = Instance.new("Part")
  1411. CylinderMesh813 = Instance.new("CylinderMesh")
  1412. Part814 = Instance.new("Part")
  1413. SpecialMesh815 = Instance.new("SpecialMesh")
  1414. Part816 = Instance.new("Part")
  1415. SpecialMesh817 = Instance.new("SpecialMesh")
  1416. Part818 = Instance.new("Part")
  1417. SpecialMesh819 = Instance.new("SpecialMesh")
  1418. Part820 = Instance.new("Part")
  1419. SpecialMesh821 = Instance.new("SpecialMesh")
  1420. Part822 = Instance.new("Part")
  1421. CylinderMesh823 = Instance.new("CylinderMesh")
  1422. Part824 = Instance.new("Part")
  1423. SpecialMesh825 = Instance.new("SpecialMesh")
  1424. Part826 = Instance.new("Part")
  1425. SpecialMesh827 = Instance.new("SpecialMesh")
  1426. Part828 = Instance.new("Part")
  1427. SpecialMesh829 = Instance.new("SpecialMesh")
  1428. Part830 = Instance.new("Part")
  1429. SpecialMesh831 = Instance.new("SpecialMesh")
  1430. Part832 = Instance.new("Part")
  1431. CylinderMesh833 = Instance.new("CylinderMesh")
  1432. Part834 = Instance.new("Part")
  1433. SpecialMesh835 = Instance.new("SpecialMesh")
  1434. Part836 = Instance.new("Part")
  1435. SpecialMesh837 = Instance.new("SpecialMesh")
  1436. Part838 = Instance.new("Part")
  1437. SpecialMesh839 = Instance.new("SpecialMesh")
  1438. Part840 = Instance.new("Part")
  1439. BlockMesh841 = Instance.new("BlockMesh")
  1440. Part842 = Instance.new("Part")
  1441. SpecialMesh843 = Instance.new("SpecialMesh")
  1442. Part844 = Instance.new("Part")
  1443. CylinderMesh845 = Instance.new("CylinderMesh")
  1444. Part846 = Instance.new("Part")
  1445. CylinderMesh847 = Instance.new("CylinderMesh")
  1446. Part848 = Instance.new("Part")
  1447. CylinderMesh849 = Instance.new("CylinderMesh")
  1448. Part850 = Instance.new("Part")
  1449. CylinderMesh851 = Instance.new("CylinderMesh")
  1450. Part852 = Instance.new("Part")
  1451. CylinderMesh853 = Instance.new("CylinderMesh")
  1452. Part854 = Instance.new("Part")
  1453. CylinderMesh855 = Instance.new("CylinderMesh")
  1454. Part856 = Instance.new("Part")
  1455. SpecialMesh857 = Instance.new("SpecialMesh")
  1456. Part858 = Instance.new("Part")
  1457. CylinderMesh859 = Instance.new("CylinderMesh")
  1458. Part860 = Instance.new("Part")
  1459. CylinderMesh861 = Instance.new("CylinderMesh")
  1460. Part862 = Instance.new("Part")
  1461. CylinderMesh863 = Instance.new("CylinderMesh")
  1462. Part864 = Instance.new("Part")
  1463. CylinderMesh865 = Instance.new("CylinderMesh")
  1464. Part866 = Instance.new("Part")
  1465. CylinderMesh867 = Instance.new("CylinderMesh")
  1466. Part868 = Instance.new("Part")
  1467. CylinderMesh869 = Instance.new("CylinderMesh")
  1468. Part870 = Instance.new("Part")
  1469. CylinderMesh871 = Instance.new("CylinderMesh")
  1470. Part872 = Instance.new("Part")
  1471. CylinderMesh873 = Instance.new("CylinderMesh")
  1472. Part874 = Instance.new("Part")
  1473. BlockMesh875 = Instance.new("BlockMesh")
  1474. Part876 = Instance.new("Part")
  1475. SpecialMesh877 = Instance.new("SpecialMesh")
  1476. Part878 = Instance.new("Part")
  1477. CylinderMesh879 = Instance.new("CylinderMesh")
  1478. Part880 = Instance.new("Part")
  1479. BlockMesh881 = Instance.new("BlockMesh")
  1480. Part882 = Instance.new("Part")
  1481. SpecialMesh883 = Instance.new("SpecialMesh")
  1482. Part884 = Instance.new("Part")
  1483. SpecialMesh885 = Instance.new("SpecialMesh")
  1484. Part886 = Instance.new("Part")
  1485. BlockMesh887 = Instance.new("BlockMesh")
  1486. Part888 = Instance.new("Part")
  1487. CylinderMesh889 = Instance.new("CylinderMesh")
  1488. Part890 = Instance.new("Part")
  1489. SpecialMesh891 = Instance.new("SpecialMesh")
  1490. Part892 = Instance.new("Part")
  1491. SpecialMesh893 = Instance.new("SpecialMesh")
  1492. Part894 = Instance.new("Part")
  1493. BlockMesh895 = Instance.new("BlockMesh")
  1494. Part896 = Instance.new("Part")
  1495. SpecialMesh897 = Instance.new("SpecialMesh")
  1496. Part898 = Instance.new("Part")
  1497. CylinderMesh899 = Instance.new("CylinderMesh")
  1498. Part900 = Instance.new("Part")
  1499. BlockMesh901 = Instance.new("BlockMesh")
  1500. Part902 = Instance.new("Part")
  1501. CylinderMesh903 = Instance.new("CylinderMesh")
  1502. Part904 = Instance.new("Part")
  1503. BlockMesh905 = Instance.new("BlockMesh")
  1504. Part906 = Instance.new("Part")
  1505. BlockMesh907 = Instance.new("BlockMesh")
  1506. Part908 = Instance.new("Part")
  1507. CylinderMesh909 = Instance.new("CylinderMesh")
  1508. Part910 = Instance.new("Part")
  1509. SpecialMesh911 = Instance.new("SpecialMesh")
  1510. Part912 = Instance.new("Part")
  1511. SpecialMesh913 = Instance.new("SpecialMesh")
  1512. Part914 = Instance.new("Part")
  1513. SpecialMesh915 = Instance.new("SpecialMesh")
  1514. Part916 = Instance.new("Part")
  1515. BlockMesh917 = Instance.new("BlockMesh")
  1516. Part918 = Instance.new("Part")
  1517. BlockMesh919 = Instance.new("BlockMesh")
  1518. Part920 = Instance.new("Part")
  1519. SpecialMesh921 = Instance.new("SpecialMesh")
  1520. Part922 = Instance.new("Part")
  1521. SpecialMesh923 = Instance.new("SpecialMesh")
  1522. Part924 = Instance.new("Part")
  1523. BlockMesh925 = Instance.new("BlockMesh")
  1524. Part926 = Instance.new("Part")
  1525. BlockMesh927 = Instance.new("BlockMesh")
  1526. Part928 = Instance.new("Part")
  1527. BlockMesh929 = Instance.new("BlockMesh")
  1528. Part930 = Instance.new("Part")
  1529. BlockMesh931 = Instance.new("BlockMesh")
  1530. NumberValue932 = Instance.new("NumberValue")
  1531. Script933 = Instance.new("Script")
  1532. LocalScript934 = Instance.new("LocalScript")
  1533. SpecialMesh935 = Instance.new("SpecialMesh")
  1534. NumberValue936 = Instance.new("NumberValue")
  1535. NumberValue937 = Instance.new("NumberValue")
  1536. SpecialMesh938 = Instance.new("SpecialMesh")
  1537. LocalScript939 = Instance.new("LocalScript")
  1538. Sound940 = Instance.new("Sound")
  1539. Sound941 = Instance.new("Sound")
  1540. NumberValue942 = Instance.new("NumberValue")
  1541. NumberValue943 = Instance.new("NumberValue")
  1542. LocalScript944 = Instance.new("LocalScript")
  1543. LocalScript945 = Instance.new("LocalScript")
  1544. LocalScript946 = Instance.new("LocalScript")
  1545. LocalScript947 = Instance.new("LocalScript")
  1546. ScreenGui948 = Instance.new("ScreenGui")
  1547. Frame949 = Instance.new("Frame")
  1548. Frame950 = Instance.new("Frame")
  1549. TextLabel951 = Instance.new("TextLabel")
  1550. Frame952 = Instance.new("Frame")
  1551. NumberValue953 = Instance.new("NumberValue")
  1552. NumberValue954 = Instance.new("NumberValue")
  1553. Script955 = Instance.new("Script")
  1554. Tool0.Name = "Minigun V2"
  1555. Tool0.Parent = mas
  1556. Tool0.Grip = CFrame.new(0, 0, 0, 0.788958907, 0.058553569, 0.611649752, -0.570498824, -0.299894214, 0.764587879, 0.228199542, -0.952173829, -0.203199431)
  1557. Tool0.GripForward = Vector3.new(-0.611649752, -0.764587879, 0.203199431)
  1558. Tool0.GripRight = Vector3.new(0.788958907, -0.570498824, 0.228199542)
  1559. Tool0.GripUp = Vector3.new(0.058553569, -0.299894214, -0.952173829)
  1560. Part1.Name = "S5"
  1561. Part1.Parent = Tool0
  1562. Part1.CFrame = CFrame.new(-41.4150238, 1.37227201, 20.2803345, -0.999999881, -3.49049151e-06, -5.88042894e-05, 6.12536605e-05, 0.000153842673, -0.99999702, 3.64538732e-06, -1.00000012, -0.000147691229)
  1563. Part1.Orientation = Vector3.new(89.8600006, -158.289993, 21.7099991)
  1564. Part1.Position = Vector3.new(-41.4150238, 1.37227201, 20.2803345)
  1565. Part1.Rotation = Vector3.new(90.0099945, 0, 180)
  1566. Part1.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1567. Part1.Transparency = 1
  1568. Part1.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1569. Part1.BottomSurface = Enum.SurfaceType.Smooth
  1570. Part1.BrickColor = BrickColor.new("Cool yellow")
  1571. Part1.TopSurface = Enum.SurfaceType.Smooth
  1572. Part1.brickColor = BrickColor.new("Cool yellow")
  1573. Part1.FormFactor = Enum.FormFactor.Custom
  1574. Part1.formFactor = Enum.FormFactor.Custom
  1575. CylinderMesh2.Parent = Part1
  1576. CylinderMesh2.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1577. Part3.Name = "S11"
  1578. Part3.Parent = Tool0
  1579. Part3.CFrame = CFrame.new(-41.6828575, 1.03037453, 20.3685436, -0.965891898, 0.000237933767, -0.258945227, 0.258946866, 0.000165894598, -0.96588856, -0.000188312231, -1.00000012, -0.000215869368)
  1580. Part3.Orientation = Vector3.new(74.9899979, -90.0499954, 89.9599991)
  1581. Part3.Position = Vector3.new(-41.6828575, 1.03037453, 20.3685436)
  1582. Part3.Rotation = Vector3.new(90.0099945, -15.0099993, -179.98999)
  1583. Part3.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1584. Part3.Transparency = 1
  1585. Part3.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1586. Part3.BottomSurface = Enum.SurfaceType.Smooth
  1587. Part3.BrickColor = BrickColor.new("Cool yellow")
  1588. Part3.TopSurface = Enum.SurfaceType.Smooth
  1589. Part3.brickColor = BrickColor.new("Cool yellow")
  1590. Part3.FormFactor = Enum.FormFactor.Custom
  1591. Part3.formFactor = Enum.FormFactor.Custom
  1592. CylinderMesh4.Parent = Part3
  1593. CylinderMesh4.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1594. Part5.Parent = Tool0
  1595. Part5.CFrame = CFrame.new(-40.8092499, 0.905222058, 21.2717247, 0.000268243835, -0.499894142, -0.866086543, -0.500312984, -0.749963462, 0.432714462, -0.865844667, 0.433198243, -0.250304729)
  1596. Part5.Orientation = Vector3.new(-25.6399994, -106.119995, -146.289993)
  1597. Part5.Position = Vector3.new(-40.8092499, 0.905222058, 21.2717247)
  1598. Part5.Rotation = Vector3.new(-120.049995, -60.0099983, 89.9700012)
  1599. Part5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1600. Part5.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1601. Part5.BottomSurface = Enum.SurfaceType.Smooth
  1602. Part5.BrickColor = BrickColor.new("Really black")
  1603. Part5.TopSurface = Enum.SurfaceType.Smooth
  1604. Part5.brickColor = BrickColor.new("Really black")
  1605. Part5.FormFactor = Enum.FormFactor.Custom
  1606. Part5.formFactor = Enum.FormFactor.Custom
  1607. CylinderMesh6.Parent = Part5
  1608. CylinderMesh6.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  1609. Part7.Name = "S9"
  1610. Part7.Parent = Tool0
  1611. Part7.CFrame = CFrame.new(-41.5813446, 1.13227773, 20.3684425, -0.965891898, 0.000238852663, -0.258945227, 0.258946866, 0.000169322127, -0.9658885, -0.000188312231, -1.00000012, -0.000219417969)
  1612. Part7.Orientation = Vector3.new(74.9899979, -90.0499954, 89.9599991)
  1613. Part7.Position = Vector3.new(-41.5813446, 1.13227773, 20.3684425)
  1614. Part7.Rotation = Vector3.new(90.0099945, -15.0099993, -179.98999)
  1615. Part7.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1616. Part7.Transparency = 1
  1617. Part7.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1618. Part7.BottomSurface = Enum.SurfaceType.Smooth
  1619. Part7.BrickColor = BrickColor.new("Cool yellow")
  1620. Part7.TopSurface = Enum.SurfaceType.Smooth
  1621. Part7.brickColor = BrickColor.new("Cool yellow")
  1622. Part7.FormFactor = Enum.FormFactor.Custom
  1623. Part7.formFactor = Enum.FormFactor.Custom
  1624. CylinderMesh8.Parent = Part7
  1625. CylinderMesh8.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1626. Part9.Name = "S1"
  1627. Part9.Parent = Tool0
  1628. Part9.CFrame = CFrame.new(-41.172699, 1.52408767, 20.3679161, -0.999999881, -4.4740882e-06, -5.80447886e-05, 6.04939851e-05, 0.000157493399, -0.99999702, 4.62908793e-06, -1.00000012, -0.000151341897)
  1629. Part9.Orientation = Vector3.new(89.8600006, -159.019989, 21.0100002)
  1630. Part9.Position = Vector3.new(-41.172699, 1.52408767, 20.3679161)
  1631. Part9.Rotation = Vector3.new(90.0099945, 0, 180)
  1632. Part9.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1633. Part9.Transparency = 1
  1634. Part9.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1635. Part9.BottomSurface = Enum.SurfaceType.Smooth
  1636. Part9.BrickColor = BrickColor.new("Cool yellow")
  1637. Part9.TopSurface = Enum.SurfaceType.Smooth
  1638. Part9.brickColor = BrickColor.new("Cool yellow")
  1639. Part9.FormFactor = Enum.FormFactor.Custom
  1640. Part9.formFactor = Enum.FormFactor.Custom
  1641. CylinderMesh10.Parent = Part9
  1642. CylinderMesh10.Scale = Vector3.new(0.357142866, 1, 1.78571427)
  1643. Part11.Name = "S10"
  1644. Part11.Parent = Tool0
  1645. Part11.CFrame = CFrame.new(-41.6323586, 1.08136046, 20.3684959, -0.965891898, 0.000237933767, -0.258945227, 0.258946866, 0.000165894598, -0.96588856, -0.000188312231, -1.00000012, -0.000215869368)
  1646. Part11.Orientation = Vector3.new(74.9899979, -90.0499954, 89.9599991)
  1647. Part11.Position = Vector3.new(-41.6323586, 1.08136046, 20.3684959)
  1648. Part11.Rotation = Vector3.new(90.0099945, -15.0099993, -179.98999)
  1649. Part11.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1650. Part11.Transparency = 1
  1651. Part11.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1652. Part11.BottomSurface = Enum.SurfaceType.Smooth
  1653. Part11.BrickColor = BrickColor.new("Cool yellow")
  1654. Part11.TopSurface = Enum.SurfaceType.Smooth
  1655. Part11.brickColor = BrickColor.new("Cool yellow")
  1656. Part11.FormFactor = Enum.FormFactor.Custom
  1657. Part11.formFactor = Enum.FormFactor.Custom
  1658. CylinderMesh12.Parent = Part11
  1659. CylinderMesh12.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1660. Part13.Parent = Tool0
  1661. Part13.CFrame = CFrame.new(-40.4324799, 0.835716248, 21.3116169, 0.499763161, -0.866162002, -3.35423392e-05, -0.749993086, -0.432713032, -0.50026387, 0.433301061, 0.25004217, -0.865869284)
  1662. Part13.Orientation = Vector3.new(30.0199986, -180, -119.979996)
  1663. Part13.Position = Vector3.new(-40.4324799, 0.835716248, 21.3116169)
  1664. Part13.Rotation = Vector3.new(149.979996, 0, 60.0200005)
  1665. Part13.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1666. Part13.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1667. Part13.BottomSurface = Enum.SurfaceType.Smooth
  1668. Part13.BrickColor = BrickColor.new("Really black")
  1669. Part13.TopSurface = Enum.SurfaceType.Smooth
  1670. Part13.brickColor = BrickColor.new("Really black")
  1671. Part13.FormFactor = Enum.FormFactor.Custom
  1672. Part13.formFactor = Enum.FormFactor.Custom
  1673. CylinderMesh14.Parent = Part13
  1674. CylinderMesh14.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  1675. Part15.Name = "S12"
  1676. Part15.Parent = Tool0
  1677. Part15.CFrame = CFrame.new(-41.7334824, 0.979157209, 20.3687534, -0.965891898, 0.000237933767, -0.258945227, 0.258946866, 0.000165894598, -0.96588856, -0.000188312231, -1.00000012, -0.000215869368)
  1678. Part15.Orientation = Vector3.new(74.9899979, -90.0499954, 89.9599991)
  1679. Part15.Position = Vector3.new(-41.7334824, 0.979157209, 20.3687534)
  1680. Part15.Rotation = Vector3.new(90.0099945, -15.0099993, -179.98999)
  1681. Part15.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1682. Part15.Transparency = 1
  1683. Part15.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1684. Part15.BottomSurface = Enum.SurfaceType.Smooth
  1685. Part15.BrickColor = BrickColor.new("Cool yellow")
  1686. Part15.TopSurface = Enum.SurfaceType.Smooth
  1687. Part15.brickColor = BrickColor.new("Cool yellow")
  1688. Part15.FormFactor = Enum.FormFactor.Custom
  1689. Part15.formFactor = Enum.FormFactor.Custom
  1690. CylinderMesh16.Parent = Part15
  1691. CylinderMesh16.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1692. Part17.Name = "S7"
  1693. Part17.Parent = Tool0
  1694. Part17.CFrame = CFrame.new(-41.4937744, 1.25539052, 20.3683434, -0.999999881, -4.4740882e-06, -5.80447886e-05, 6.04939851e-05, 0.000157493399, -0.99999702, 4.62908793e-06, -1.00000012, -0.000151341897)
  1695. Part17.Orientation = Vector3.new(89.8600006, -159.019989, 21.0100002)
  1696. Part17.Position = Vector3.new(-41.4937744, 1.25539052, 20.3683434)
  1697. Part17.Rotation = Vector3.new(90.0099945, 0, 180)
  1698. Part17.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1699. Part17.Transparency = 1
  1700. Part17.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1701. Part17.BottomSurface = Enum.SurfaceType.Smooth
  1702. Part17.BrickColor = BrickColor.new("Cool yellow")
  1703. Part17.TopSurface = Enum.SurfaceType.Smooth
  1704. Part17.brickColor = BrickColor.new("Cool yellow")
  1705. Part17.FormFactor = Enum.FormFactor.Custom
  1706. Part17.formFactor = Enum.FormFactor.Custom
  1707. CylinderMesh18.Parent = Part17
  1708. CylinderMesh18.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1709. Part19.Name = "S4"
  1710. Part19.Parent = Tool0
  1711. Part19.CFrame = CFrame.new(-41.3603783, 1.41650629, 20.3681679, -0.999999881, -4.4740882e-06, -5.80447886e-05, 6.04939851e-05, 0.000157493399, -0.99999702, 4.62908793e-06, -1.00000012, -0.000151341897)
  1712. Part19.Orientation = Vector3.new(89.8600006, -159.019989, 21.0100002)
  1713. Part19.Position = Vector3.new(-41.3603783, 1.41650629, 20.3681679)
  1714. Part19.Rotation = Vector3.new(90.0099945, 0, 180)
  1715. Part19.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1716. Part19.Transparency = 1
  1717. Part19.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1718. Part19.BottomSurface = Enum.SurfaceType.Smooth
  1719. Part19.BrickColor = BrickColor.new("Cool yellow")
  1720. Part19.TopSurface = Enum.SurfaceType.Smooth
  1721. Part19.brickColor = BrickColor.new("Cool yellow")
  1722. Part19.FormFactor = Enum.FormFactor.Custom
  1723. Part19.formFactor = Enum.FormFactor.Custom
  1724. CylinderMesh20.Parent = Part19
  1725. CylinderMesh20.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1726. Part21.Parent = Tool0
  1727. Part21.CFrame = CFrame.new(-40.4754944, 0.822180986, 21.3188095, 0.258676648, -0.96596396, -3.33996359e-05, -0.836403728, -0.223961696, -0.500264049, 0.483236283, 0.129436508, -0.865869105)
  1728. Part21.Orientation = Vector3.new(30.0199986, -180, -104.989998)
  1729. Part21.Position = Vector3.new(-40.4754944, 0.822180986, 21.3188095)
  1730. Part21.Rotation = Vector3.new(149.979996, 0, 75.0100021)
  1731. Part21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1732. Part21.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1733. Part21.BottomSurface = Enum.SurfaceType.Smooth
  1734. Part21.BrickColor = BrickColor.new("Really black")
  1735. Part21.TopSurface = Enum.SurfaceType.Smooth
  1736. Part21.brickColor = BrickColor.new("Really black")
  1737. Part21.FormFactor = Enum.FormFactor.Custom
  1738. Part21.formFactor = Enum.FormFactor.Custom
  1739. CylinderMesh22.Parent = Part21
  1740. CylinderMesh22.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  1741. Part23.Name = "S2"
  1742. Part23.Parent = Tool0
  1743. Part23.CFrame = CFrame.new(-41.234726, 1.48880601, 20.3682232, -0.999999881, -4.4740882e-06, -5.80447886e-05, 6.04939851e-05, 0.000157493399, -0.99999702, 4.62908793e-06, -1.00000012, -0.000151341897)
  1744. Part23.Orientation = Vector3.new(89.8600006, -159.019989, 21.0100002)
  1745. Part23.Position = Vector3.new(-41.234726, 1.48880601, 20.3682232)
  1746. Part23.Rotation = Vector3.new(90.0099945, 0, 180)
  1747. Part23.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1748. Part23.Transparency = 1
  1749. Part23.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1750. Part23.BottomSurface = Enum.SurfaceType.Smooth
  1751. Part23.BrickColor = BrickColor.new("Cool yellow")
  1752. Part23.TopSurface = Enum.SurfaceType.Smooth
  1753. Part23.brickColor = BrickColor.new("Cool yellow")
  1754. Part23.FormFactor = Enum.FormFactor.Custom
  1755. Part23.formFactor = Enum.FormFactor.Custom
  1756. CylinderMesh24.Parent = Part23
  1757. CylinderMesh24.Scale = Vector3.new(0.357142866, 1, 1.78571427)
  1758. Part25.Name = "S3"
  1759. Part25.Parent = Tool0
  1760. Part25.CFrame = CFrame.new(-41.2973824, 1.45236039, 20.3679066, -0.999999881, -4.4740882e-06, -5.80447886e-05, 6.04939851e-05, 0.000157493399, -0.99999702, 4.62908793e-06, -1.00000012, -0.000151341897)
  1761. Part25.Orientation = Vector3.new(89.8600006, -159.019989, 21.0100002)
  1762. Part25.Position = Vector3.new(-41.2973824, 1.45236039, 20.3679066)
  1763. Part25.Rotation = Vector3.new(90.0099945, 0, 180)
  1764. Part25.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1765. Part25.Transparency = 1
  1766. Part25.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1767. Part25.BottomSurface = Enum.SurfaceType.Smooth
  1768. Part25.BrickColor = BrickColor.new("Cool yellow")
  1769. Part25.TopSurface = Enum.SurfaceType.Smooth
  1770. Part25.brickColor = BrickColor.new("Cool yellow")
  1771. Part25.FormFactor = Enum.FormFactor.Custom
  1772. Part25.formFactor = Enum.FormFactor.Custom
  1773. CylinderMesh26.Parent = Part25
  1774. CylinderMesh26.Scale = Vector3.new(0.357142866, 1, 1.78571427)
  1775. Part27.Parent = Tool0
  1776. Part27.CFrame = CFrame.new(-40.7531738, 2.1398406, 21.4829407, -0.999999881, 5.80407395e-05, -4.52624863e-06, 6.04939851e-05, 0.999996722, -0.000741035445, 4.62908793e-06, -0.000747189857, -0.999999881)
  1777. Part27.Orientation = Vector3.new(0.0399999991, -180, 0)
  1778. Part27.Position = Vector3.new(-40.7531738, 2.1398406, 21.4829407)
  1779. Part27.Rotation = Vector3.new(179.959991, 0, -180)
  1780. Part27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1781. Part27.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1782. Part27.BottomSurface = Enum.SurfaceType.Smooth
  1783. Part27.BrickColor = BrickColor.new("Really black")
  1784. Part27.TopSurface = Enum.SurfaceType.Smooth
  1785. Part27.brickColor = BrickColor.new("Really black")
  1786. Part27.FormFactor = Enum.FormFactor.Custom
  1787. Part27.formFactor = Enum.FormFactor.Custom
  1788. BlockMesh28.Parent = Part27
  1789. BlockMesh28.Scale = Vector3.new(0.669642806, 0.223214284, 0.133928567)
  1790. Part29.Parent = Tool0
  1791. Part29.CFrame = CFrame.new(-40.4352646, 2.065624, 19.0938244, -0.999999881, -5.80407395e-05, 4.52624863e-06, 6.04939851e-05, -0.999996722, 0.000741035445, 4.62908793e-06, 0.000747189857, 0.999999881)
  1792. Part29.Orientation = Vector3.new(-0.0399999991, 0, 180)
  1793. Part29.Position = Vector3.new(-40.4352646, 2.065624, 19.0938244)
  1794. Part29.Rotation = Vector3.new(-0.0399999991, 0, 180)
  1795. Part29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1796. Part29.Size = Vector3.new(0.200000003, 0.267857134, 0.200000003)
  1797. Part29.BottomSurface = Enum.SurfaceType.Smooth
  1798. Part29.BrickColor = BrickColor.new("Really black")
  1799. Part29.TopSurface = Enum.SurfaceType.Smooth
  1800. Part29.brickColor = BrickColor.new("Really black")
  1801. Part29.FormFactor = Enum.FormFactor.Custom
  1802. Part29.formFactor = Enum.FormFactor.Custom
  1803. CylinderMesh30.Parent = Part29
  1804. CylinderMesh30.Scale = Vector3.new(0.446428567, 1, 0.446428567)
  1805. Part31.Name = "S6"
  1806. Part31.Parent = Tool0
  1807. Part31.CFrame = CFrame.new(-41.4580193, 1.31858993, 20.3680019, -0.999999881, -4.4740882e-06, -5.80447886e-05, 6.04939851e-05, 0.000157493399, -0.99999702, 4.62908793e-06, -1.00000012, -0.000151341897)
  1808. Part31.Orientation = Vector3.new(89.8600006, -159.019989, 21.0100002)
  1809. Part31.Position = Vector3.new(-41.4580193, 1.31858993, 20.3680019)
  1810. Part31.Rotation = Vector3.new(90.0099945, 0, 180)
  1811. Part31.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1812. Part31.Transparency = 1
  1813. Part31.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1814. Part31.BottomSurface = Enum.SurfaceType.Smooth
  1815. Part31.BrickColor = BrickColor.new("Cool yellow")
  1816. Part31.TopSurface = Enum.SurfaceType.Smooth
  1817. Part31.brickColor = BrickColor.new("Cool yellow")
  1818. Part31.FormFactor = Enum.FormFactor.Custom
  1819. Part31.formFactor = Enum.FormFactor.Custom
  1820. CylinderMesh32.Parent = Part31
  1821. CylinderMesh32.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1822. Part33.Parent = Tool0
  1823. Part33.CFrame = CFrame.new(-41.0610046, 2.06539083, 19.0936527, -0.999999881, -5.80407395e-05, 4.52624863e-06, 6.04939851e-05, -0.999996722, 0.000741035445, 4.62908793e-06, 0.000747189857, 0.999999881)
  1824. Part33.Orientation = Vector3.new(-0.0399999991, 0, 180)
  1825. Part33.Position = Vector3.new(-41.0610046, 2.06539083, 19.0936527)
  1826. Part33.Rotation = Vector3.new(-0.0399999991, 0, 180)
  1827. Part33.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1828. Part33.Size = Vector3.new(0.200000003, 0.267857134, 0.200000003)
  1829. Part33.BottomSurface = Enum.SurfaceType.Smooth
  1830. Part33.BrickColor = BrickColor.new("Really black")
  1831. Part33.TopSurface = Enum.SurfaceType.Smooth
  1832. Part33.brickColor = BrickColor.new("Really black")
  1833. Part33.FormFactor = Enum.FormFactor.Custom
  1834. Part33.formFactor = Enum.FormFactor.Custom
  1835. CylinderMesh34.Parent = Part33
  1836. CylinderMesh34.Scale = Vector3.new(0.446428567, 1, 0.446428567)
  1837. Part35.Parent = Tool0
  1838. Part35.CFrame = CFrame.new(-40.3446884, 0.922336102, 21.2614765, -0.965875566, 0.259006351, -3.35292789e-05, 0.224284396, 0.83631748, -0.500263453, -0.129545048, -0.483206481, -0.865869522)
  1839. Part35.Orientation = Vector3.new(30.0199986, -180, 15.0099993)
  1840. Part35.Position = Vector3.new(-40.3446884, 0.922336102, 21.2614765)
  1841. Part35.Rotation = Vector3.new(149.979996, 0, -164.98999)
  1842. Part35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1843. Part35.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1844. Part35.BottomSurface = Enum.SurfaceType.Smooth
  1845. Part35.BrickColor = BrickColor.new("Really black")
  1846. Part35.TopSurface = Enum.SurfaceType.Smooth
  1847. Part35.brickColor = BrickColor.new("Really black")
  1848. Part35.FormFactor = Enum.FormFactor.Custom
  1849. Part35.formFactor = Enum.FormFactor.Custom
  1850. CylinderMesh36.Parent = Part35
  1851. CylinderMesh36.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  1852. LocalScript37.Name = "GuiScript"
  1853. LocalScript37.Parent = Tool0
  1854. table.insert(cors,sandbox(LocalScript37,function()
  1855. local Tool = script.Parent
  1856. local Ammo = Tool.Ammo
  1857. local MaxAmmo = Ammo.Value
  1858.  
  1859. local vPlayer
  1860. local Gui
  1861. local Text
  1862.  
  1863. function onChanged(value)
  1864. if value == "Value" or value == Ammo.Value then
  1865. if Gui ~= nil and Text ~= nil then
  1866. if Ammo.Value >= 1 then
  1867. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  1868. elseif math.floor(Ammo.Value) == 0 then
  1869. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  1870. elseif Ammo.Value < 0 then
  1871. for i = 0, 1, 0.03 / 2 do
  1872. local Num = math.floor(i * MaxAmmo + 0.5)
  1873.  
  1874. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  1875. wait()
  1876. end
  1877. end
  1878. end
  1879. end
  1880. end
  1881.  
  1882. function on2Changed()
  1883. if Gui ~= nil and Text ~= nil then
  1884.  
  1885. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  1886. wait()
  1887. end
  1888. end
  1889.  
  1890. function setUpGui()
  1891. if vPlayer == nil or vPlayer:findFirstChild("PlayerGui") == nil then
  1892. return
  1893. end
  1894.  
  1895. Gui = Instance.new("ScreenGui")
  1896. Text = Instance.new("TextLabel")
  1897.  
  1898. Gui.Name = "DEDisplay"
  1899. Gui.Parent = vPlayer.PlayerGui
  1900.  
  1901. Text.BackgroundColor3 = BrickColor.Black().Color
  1902. Text.BackgroundTransparency = 1
  1903. Text.BorderColor3 = BrickColor.White().Color
  1904. Text.BorderSizePixel = 0
  1905. Text.Name = "Ammo"
  1906. Text.Parent = Gui
  1907. Text.Position = UDim2.new(0.15, 0, 0.825, 0)
  1908. Text.Size = UDim2.new(0, -60, 0, 64)
  1909. Text.FontSize = "Size18"
  1910. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  1911. Text.TextColor3 = BrickColor.White().Color
  1912. end
  1913.  
  1914. function onEquippedLocal(mouse)
  1915. vPlayer = game.Players.LocalPlayer
  1916.  
  1917. setUpGui()
  1918. end
  1919.  
  1920. function onUnequippedLocal(mouse)
  1921. if Gui then
  1922. Gui:remove()
  1923. end
  1924.  
  1925. Gui = nil
  1926. Text = nil
  1927. vPlayer = nil
  1928. end
  1929.  
  1930. Tool.Equipped:connect(onEquippedLocal)
  1931. Tool.Unequipped:connect(onUnequippedLocal)
  1932.  
  1933. Ammo.Changed:connect(onChanged)
  1934. Tool.StoredAmmo.Changed:connect(on2Changed)
  1935. end))
  1936. Part38.Name = "S8"
  1937. Part38.Parent = Tool0
  1938. Part38.CFrame = CFrame.new(-41.5294991, 1.19315267, 20.3684196, -0.999999881, -4.4740882e-06, -5.80447886e-05, 6.04939851e-05, 0.000157493399, -0.99999702, 4.62908793e-06, -1.00000012, -0.000151341897)
  1939. Part38.Orientation = Vector3.new(89.8600006, -159.019989, 21.0100002)
  1940. Part38.Position = Vector3.new(-41.5294991, 1.19315267, 20.3684196)
  1941. Part38.Rotation = Vector3.new(90.0099945, 0, 180)
  1942. Part38.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1943. Part38.Transparency = 1
  1944. Part38.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  1945. Part38.BottomSurface = Enum.SurfaceType.Smooth
  1946. Part38.BrickColor = BrickColor.new("Cool yellow")
  1947. Part38.TopSurface = Enum.SurfaceType.Smooth
  1948. Part38.brickColor = BrickColor.new("Cool yellow")
  1949. Part38.FormFactor = Enum.FormFactor.Custom
  1950. Part38.formFactor = Enum.FormFactor.Custom
  1951. CylinderMesh39.Parent = Part38
  1952. CylinderMesh39.Scale = Vector3.new(0.357142866, 1, 1.07142854)
  1953. Part40.Name = "B1"
  1954. Part40.Parent = Tool0
  1955. Part40.CFrame = CFrame.new(-40.7253418, 1.46735358, 17.9563313, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  1956. Part40.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  1957. Part40.Position = Vector3.new(-40.7253418, 1.46735358, 17.9563313)
  1958. Part40.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  1959. Part40.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1960. Part40.Size = Vector3.new(0.200000003, 2.64285707, 0.200000003)
  1961. Part40.BottomSurface = Enum.SurfaceType.Smooth
  1962. Part40.BrickColor = BrickColor.new("Bright yellow")
  1963. Part40.Material = Enum.Material.Ice
  1964. Part40.TopSurface = Enum.SurfaceType.Smooth
  1965. Part40.brickColor = BrickColor.new("Bright yellow")
  1966. Part40.FormFactor = Enum.FormFactor.Custom
  1967. Part40.formFactor = Enum.FormFactor.Custom
  1968. CylinderMesh41.Parent = Part40
  1969. CylinderMesh41.Offset = Vector3.new(0.200000003, 0, 1.22460632e-17)
  1970. CylinderMesh41.Scale = Vector3.new(0.928571343, 1, 0.928571343)
  1971. Part42.Name = "B2"
  1972. Part42.Parent = Tool0
  1973. Part42.CFrame = CFrame.new(-40.7253418, 1.46735358, 17.9563313, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  1974. Part42.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  1975. Part42.Position = Vector3.new(-40.7253418, 1.46735358, 17.9563313)
  1976. Part42.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  1977. Part42.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1978. Part42.Size = Vector3.new(0.200000003, 2.64285707, 0.200000003)
  1979. Part42.BottomSurface = Enum.SurfaceType.Smooth
  1980. Part42.BrickColor = BrickColor.new("Bright yellow")
  1981. Part42.Material = Enum.Material.Ice
  1982. Part42.TopSurface = Enum.SurfaceType.Smooth
  1983. Part42.brickColor = BrickColor.new("Bright yellow")
  1984. Part42.FormFactor = Enum.FormFactor.Custom
  1985. Part42.formFactor = Enum.FormFactor.Custom
  1986. CylinderMesh43.Parent = Part42
  1987. CylinderMesh43.Offset = Vector3.new(0.100000001, 0, 0.173205078)
  1988. CylinderMesh43.Scale = Vector3.new(0.928571343, 1, 0.928571343)
  1989. Part44.Name = "B3"
  1990. Part44.Parent = Tool0
  1991. Part44.CFrame = CFrame.new(-40.7253418, 1.46735358, 17.9563313, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  1992. Part44.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  1993. Part44.Position = Vector3.new(-40.7253418, 1.46735358, 17.9563313)
  1994. Part44.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  1995. Part44.Color = Color3.new(0.960784, 0.803922, 0.188235)
  1996. Part44.Size = Vector3.new(0.200000003, 2.64285707, 0.200000003)
  1997. Part44.BottomSurface = Enum.SurfaceType.Smooth
  1998. Part44.BrickColor = BrickColor.new("Bright yellow")
  1999. Part44.Material = Enum.Material.Ice
  2000. Part44.TopSurface = Enum.SurfaceType.Smooth
  2001. Part44.brickColor = BrickColor.new("Bright yellow")
  2002. Part44.FormFactor = Enum.FormFactor.Custom
  2003. Part44.formFactor = Enum.FormFactor.Custom
  2004. CylinderMesh45.Parent = Part44
  2005. CylinderMesh45.Offset = Vector3.new(-0.100000001, 0, 0.173205078)
  2006. CylinderMesh45.Scale = Vector3.new(0.928571343, 1, 0.928571343)
  2007. Part46.Name = "B4"
  2008. Part46.Parent = Tool0
  2009. Part46.CFrame = CFrame.new(-40.7253418, 1.46735358, 17.9563313, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  2010. Part46.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2011. Part46.Position = Vector3.new(-40.7253418, 1.46735358, 17.9563313)
  2012. Part46.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  2013. Part46.Color = Color3.new(0.960784, 0.803922, 0.188235)
  2014. Part46.Size = Vector3.new(0.200000003, 2.64285707, 0.200000003)
  2015. Part46.BottomSurface = Enum.SurfaceType.Smooth
  2016. Part46.BrickColor = BrickColor.new("Bright yellow")
  2017. Part46.Material = Enum.Material.Ice
  2018. Part46.TopSurface = Enum.SurfaceType.Smooth
  2019. Part46.brickColor = BrickColor.new("Bright yellow")
  2020. Part46.FormFactor = Enum.FormFactor.Custom
  2021. Part46.formFactor = Enum.FormFactor.Custom
  2022. CylinderMesh47.Parent = Part46
  2023. CylinderMesh47.Offset = Vector3.new(-0.200000003, 0, -3.67381913e-17)
  2024. CylinderMesh47.Scale = Vector3.new(0.928571343, 1, 0.928571343)
  2025. Part48.Name = "B5"
  2026. Part48.Parent = Tool0
  2027. Part48.CFrame = CFrame.new(-40.7253418, 1.46735358, 17.9563313, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  2028. Part48.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2029. Part48.Position = Vector3.new(-40.7253418, 1.46735358, 17.9563313)
  2030. Part48.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  2031. Part48.Color = Color3.new(0.960784, 0.803922, 0.188235)
  2032. Part48.Size = Vector3.new(0.200000003, 2.64285707, 0.200000003)
  2033. Part48.BottomSurface = Enum.SurfaceType.Smooth
  2034. Part48.BrickColor = BrickColor.new("Bright yellow")
  2035. Part48.Material = Enum.Material.Ice
  2036. Part48.TopSurface = Enum.SurfaceType.Smooth
  2037. Part48.brickColor = BrickColor.new("Bright yellow")
  2038. Part48.FormFactor = Enum.FormFactor.Custom
  2039. Part48.formFactor = Enum.FormFactor.Custom
  2040. CylinderMesh49.Parent = Part48
  2041. CylinderMesh49.Offset = Vector3.new(-0.100000001, 0, -0.173205078)
  2042. CylinderMesh49.Scale = Vector3.new(0.928571343, 1, 0.928571343)
  2043. Part50.Name = "B6"
  2044. Part50.Parent = Tool0
  2045. Part50.CFrame = CFrame.new(-40.7253418, 1.46735358, 17.9563313, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  2046. Part50.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2047. Part50.Position = Vector3.new(-40.7253418, 1.46735358, 17.9563313)
  2048. Part50.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  2049. Part50.Color = Color3.new(0.960784, 0.803922, 0.188235)
  2050. Part50.Size = Vector3.new(0.200000003, 2.64285707, 0.200000003)
  2051. Part50.BottomSurface = Enum.SurfaceType.Smooth
  2052. Part50.BrickColor = BrickColor.new("Bright yellow")
  2053. Part50.Material = Enum.Material.Ice
  2054. Part50.TopSurface = Enum.SurfaceType.Smooth
  2055. Part50.brickColor = BrickColor.new("Bright yellow")
  2056. Part50.FormFactor = Enum.FormFactor.Custom
  2057. Part50.formFactor = Enum.FormFactor.Custom
  2058. CylinderMesh51.Parent = Part50
  2059. CylinderMesh51.Offset = Vector3.new(0.100000001, 0, -0.173205078)
  2060. CylinderMesh51.Scale = Vector3.new(0.928571343, 1, 0.928571343)
  2061. Part52.Name = "C1"
  2062. Part52.Parent = Tool0
  2063. Part52.CFrame = CFrame.new(-40.7245293, 1.46817601, 16.7345428, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  2064. Part52.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2065. Part52.Position = Vector3.new(-40.7245293, 1.46817601, 16.7345428)
  2066. Part52.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  2067. Part52.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2068. Part52.Size = Vector3.new(0.628571451, 0.200000003, 0.628571451)
  2069. Part52.BottomSurface = Enum.SurfaceType.Smooth
  2070. Part52.BrickColor = BrickColor.new("Really black")
  2071. Part52.TopSurface = Enum.SurfaceType.Smooth
  2072. Part52.brickColor = BrickColor.new("Really black")
  2073. Part52.FormFactor = Enum.FormFactor.Custom
  2074. Part52.formFactor = Enum.FormFactor.Custom
  2075. CylinderMesh53.Parent = Part52
  2076. CylinderMesh53.Scale = Vector3.new(1, 0.428571433, 1)
  2077. Part54.Name = "C2"
  2078. Part54.Parent = Tool0
  2079. Part54.CFrame = CFrame.new(-40.7249565, 1.46817088, 17.0207825, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  2080. Part54.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2081. Part54.Position = Vector3.new(-40.7249565, 1.46817088, 17.0207825)
  2082. Part54.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  2083. Part54.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2084. Part54.Size = Vector3.new(0.628571451, 0.200000003, 0.628571451)
  2085. Part54.BottomSurface = Enum.SurfaceType.Smooth
  2086. Part54.BrickColor = BrickColor.new("Really black")
  2087. Part54.TopSurface = Enum.SurfaceType.Smooth
  2088. Part54.brickColor = BrickColor.new("Really black")
  2089. Part54.FormFactor = Enum.FormFactor.Custom
  2090. Part54.formFactor = Enum.FormFactor.Custom
  2091. CylinderMesh55.Parent = Part54
  2092. CylinderMesh55.Scale = Vector3.new(1, 0.428571433, 1)
  2093. Part56.Name = "C3"
  2094. Part56.Parent = Tool0
  2095. Part56.CFrame = CFrame.new(-40.7244911, 1.46799397, 17.3066196, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  2096. Part56.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2097. Part56.Position = Vector3.new(-40.7244911, 1.46799397, 17.3066196)
  2098. Part56.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  2099. Part56.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2100. Part56.Size = Vector3.new(0.628571451, 0.200000003, 0.628571451)
  2101. Part56.BottomSurface = Enum.SurfaceType.Smooth
  2102. Part56.BrickColor = BrickColor.new("Really black")
  2103. Part56.TopSurface = Enum.SurfaceType.Smooth
  2104. Part56.brickColor = BrickColor.new("Really black")
  2105. Part56.FormFactor = Enum.FormFactor.Custom
  2106. Part56.formFactor = Enum.FormFactor.Custom
  2107. CylinderMesh57.Parent = Part56
  2108. CylinderMesh57.Scale = Vector3.new(1, 0.428571433, 1)
  2109. Part58.Name = "C4"
  2110. Part58.Parent = Tool0
  2111. Part58.CFrame = CFrame.new(-40.7251816, 1.46729517, 18.2638111, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  2112. Part58.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2113. Part58.Position = Vector3.new(-40.7251816, 1.46729517, 18.2638111)
  2114. Part58.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  2115. Part58.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2116. Part58.Size = Vector3.new(0.628571451, 0.200000003, 0.628571451)
  2117. Part58.BottomSurface = Enum.SurfaceType.Smooth
  2118. Part58.BrickColor = BrickColor.new("Really black")
  2119. Part58.TopSurface = Enum.SurfaceType.Smooth
  2120. Part58.brickColor = BrickColor.new("Really black")
  2121. Part58.FormFactor = Enum.FormFactor.Custom
  2122. Part58.formFactor = Enum.FormFactor.Custom
  2123. CylinderMesh59.Parent = Part58
  2124. CylinderMesh59.Scale = Vector3.new(1, 0.857142866, 1)
  2125. Part60.Name = "Center"
  2126. Part60.Parent = Tool0
  2127. Part60.CFrame = CFrame.new(-40.7253418, 1.46735358, 17.9563313, 0.000105275205, 0.000267040945, 0.999999881, -0.999996722, -0.00073931535, 0.000103022219, 0.000745496887, -0.999999881, 0.000266816263)
  2128. Part60.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2129. Part60.Position = Vector3.new(-40.7253418, 1.46735358, 17.9563313)
  2130. Part60.Rotation = Vector3.new(-21.1099987, 89.9700012, -68.4799957)
  2131. Part60.Transparency = 1
  2132. Part60.Size = Vector3.new(0.200000003, 2.64285707, 0.200000003)
  2133. Part60.BottomSurface = Enum.SurfaceType.Smooth
  2134. Part60.TopSurface = Enum.SurfaceType.Smooth
  2135. Part60.FormFactor = Enum.FormFactor.Custom
  2136. Part60.formFactor = Enum.FormFactor.Custom
  2137. BlockMesh61.Parent = Part60
  2138. BlockMesh61.Scale = Vector3.new(0.928571343, 1, 0.928571343)
  2139. Part62.Name = "Flash"
  2140. Part62.Parent = Tool0
  2141. Part62.CFrame = CFrame.new(-40.7238388, 1.68314385, 16.4552498, 0.000104797953, 0.000268203323, 0.999999881, -0.999996781, -0.000742593606, 0.000102546706, 0.000748775201, -0.999999881, 0.000267978641)
  2142. Part62.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  2143. Part62.Position = Vector3.new(-40.7238388, 1.68314385, 16.4552498)
  2144. Part62.Rotation = Vector3.new(-20.9399986, 89.9700012, -68.659996)
  2145. Part62.Color = Color3.new(0.854902, 0.521569, 0.254902)
  2146. Part62.Transparency = 1
  2147. Part62.Size = Vector3.new(0.200000003, 0.285714298, 0.200000003)
  2148. Part62.BottomSurface = Enum.SurfaceType.Smooth
  2149. Part62.BrickColor = BrickColor.new("Bright orange")
  2150. Part62.TopSurface = Enum.SurfaceType.Smooth
  2151. Part62.brickColor = BrickColor.new("Bright orange")
  2152. Part62.FormFactor = Enum.FormFactor.Custom
  2153. Part62.formFactor = Enum.FormFactor.Custom
  2154. SpecialMesh63.Parent = Part62
  2155. SpecialMesh63.Scale = Vector3.new(1.85714269, 3, 1.85714269)
  2156. SpecialMesh63.MeshType = Enum.MeshType.Sphere
  2157. Smoke64.Parent = Part62
  2158. Smoke64.Enabled = false
  2159. Smoke64.RiseVelocity = 2
  2160. Part65.Name = "Handle"
  2161. Part65.Parent = Tool0
  2162. Part65.CFrame = CFrame.new(-40.7538109, 2.32334399, 21.8312073, 0.999999881, -0.000130385335, 2.48523938e-05, 2.24398791e-05, 0.000288672687, -0.99999696, 0.000130231827, 1.00000012, 0.000294828264)
  2163. Part65.Orientation = Vector3.new(89.8600006, 4.81999969, 4.44000006)
  2164. Part65.Position = Vector3.new(-40.7538109, 2.32334399, 21.8312073)
  2165. Part65.Rotation = Vector3.new(89.9799957, 0, 0.00999999978)
  2166. Part65.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2167. Part65.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2168. Part65.BottomSurface = Enum.SurfaceType.Smooth
  2169. Part65.BrickColor = BrickColor.new("Really black")
  2170. Part65.TopSurface = Enum.SurfaceType.Smooth
  2171. Part65.brickColor = BrickColor.new("Really black")
  2172. Part65.FormFactor = Enum.FormFactor.Custom
  2173. Part65.formFactor = Enum.FormFactor.Custom
  2174. SpecialMesh66.Parent = Part65
  2175. SpecialMesh66.Scale = Vector3.new(0.669642806, 0.223214284, 0.535714269)
  2176. SpecialMesh66.MeshType = Enum.MeshType.Wedge
  2177. Weld67.Parent = Part65
  2178. Weld67.C0 = CFrame.new(0, 0, 0, 0.870962679, -0.000244291237, 0.491348982, 0.000745383964, 0.999999404, -0.00082407915, -0.491348535, 0.0010839859, 0.870962381)
  2179. Weld67.C1 = CFrame.new(0, 0, 0, 0.870962679, -0.000244291237, 0.491348982, 0.000745383964, 0.999999404, -0.00082407915, -0.491348535, 0.0010839859, 0.870962381)
  2180. Weld67.Part0 = Part65
  2181. Weld67.Part1 = Part65
  2182. Weld67.part1 = Part65
  2183. Weld68.Parent = Part65
  2184. Weld68.C0 = CFrame.new(0, 0, 0, 0.95894444, 0.264218539, 0.102981396, -0.101220123, -0.0203057788, 0.994655371, 0.264896631, -0.964248121, 0.00727632316)
  2185. Weld68.C1 = CFrame.new(0, 0, 0, 0.95894444, 0.264218539, 0.102981396, -0.101220123, -0.0203057788, 0.994655371, 0.264896631, -0.964248121, 0.00727632316)
  2186. Weld68.Part0 = Part65
  2187. Weld68.Part1 = Part65
  2188. Weld68.part1 = Part65
  2189. Weld69.Parent = Part65
  2190. Weld69.C0 = CFrame.new(0, 0, 0, 0.958942592, 0.264220297, 0.102982938, -0.101219952, -0.0203114618, 0.994654834, 0.264898717, -0.964247227, 0.00727215782)
  2191. Weld69.C1 = CFrame.new(0, 0, 0, 0.958942592, 0.264220297, 0.102982938, -0.101219952, -0.0203114618, 0.994654834, 0.264898717, -0.964247227, 0.00727215782)
  2192. Weld69.Part0 = Part65
  2193. Weld69.Part1 = Part65
  2194. Weld69.part1 = Part65
  2195. Weld70.Parent = Part65
  2196. Weld70.C0 = CFrame.new(0, 0, 0, 0.959792197, 0.261885136, 0.101066299, -0.103428498, -0.00478547253, 0.994625092, 0.260961264, -0.965086997, 0.022493707)
  2197. Weld70.C1 = CFrame.new(0, 0, 0, 0.959792197, 0.261885136, 0.101066299, -0.103428498, -0.00478547253, 0.994625092, 0.260961264, -0.965086997, 0.022493707)
  2198. Weld70.Part0 = Part65
  2199. Weld70.Part1 = Part65
  2200. Weld70.part1 = Part65
  2201. Weld71.Parent = Part65
  2202. Weld71.C0 = CFrame.new(0, 0, 0, 0.958947122, 0.264220655, 0.102982745, -0.101221323, -0.0203095358, 0.994656205, 0.264900088, -0.96424818, 0.00727005722)
  2203. Weld71.C1 = CFrame.new(0, 0, 0, 0.958947122, 0.264220655, 0.102982745, -0.101221323, -0.0203095358, 0.994656205, 0.264900088, -0.96424818, 0.00727005722)
  2204. Weld71.Part0 = Part65
  2205. Weld71.Part1 = Part65
  2206. Weld71.part1 = Part65
  2207. Weld72.Parent = Part65
  2208. Weld72.C0 = CFrame.new(0, 0, 0, 0.958952427, 0.264225364, 0.102953695, -0.101182975, -0.0203350261, 0.994661808, 0.264906436, -0.964249253, 0.00723968679)
  2209. Weld72.C1 = CFrame.new(0, 0, 0, 0.958952427, 0.264225364, 0.102953695, -0.101182975, -0.0203350261, 0.994661808, 0.264906436, -0.964249253, 0.00723968679)
  2210. Weld72.Part0 = Part65
  2211. Weld72.Part1 = Part65
  2212. Weld72.part1 = Part65
  2213. Weld73.Parent = Part65
  2214. Weld73.C0 = CFrame.new(0, 0, 0, 0.958953679, 0.264222443, 0.102949478, -0.101182893, -0.0203192867, 0.994662106, 0.264901936, -0.964250386, 0.00725443801)
  2215. Weld73.C1 = CFrame.new(0, 0, 0, 0.958953679, 0.264222443, 0.102949478, -0.101182893, -0.0203192867, 0.994662106, 0.264901936, -0.964250386, 0.00725443801)
  2216. Weld73.Part0 = Part65
  2217. Weld73.Part1 = Part65
  2218. Weld73.part1 = Part65
  2219. Weld74.Parent = Part65
  2220. Weld74.C0 = CFrame.new(0, 0, 0, 0.958951592, 0.26422736, 0.102956511, -0.10118302, -0.0203455184, 0.99466157, 0.264909506, -0.964248478, 0.00722985854)
  2221. Weld74.C1 = CFrame.new(0, 0, 0, 0.958951592, 0.26422736, 0.102956511, -0.10118302, -0.0203455184, 0.99466157, 0.264909506, -0.964248478, 0.00722985854)
  2222. Weld74.Part0 = Part65
  2223. Weld74.Part1 = Part65
  2224. Weld74.part1 = Part65
  2225. Weld75.Parent = Part65
  2226. Weld75.C0 = CFrame.new(0, 0, 0, 0.74839884, -0.508151591, 0.426240683, -0.578328967, -0.814600289, 0.0442951024, 0.324707091, -0.279657722, -0.903524697)
  2227. Weld75.C1 = CFrame.new(0, 0, 0, 0.74839884, -0.508151591, 0.426240683, -0.578328967, -0.814600289, 0.0442951024, 0.324707091, -0.279657722, -0.903524697)
  2228. Weld75.Part0 = Part65
  2229. Weld75.Part1 = Part65
  2230. Weld75.part1 = Part65
  2231. Weld76.Parent = Part65
  2232. Weld76.C0 = CFrame.new(0, 0, 0, 0.958939731, 0.264218181, 0.102981597, -0.101218753, -0.0203077029, 0.99465394, 0.264895231, -0.964247227, 0.00727842376)
  2233. Weld76.C1 = CFrame.new(0, 0, 0, 0.958939731, 0.264218181, 0.102981597, -0.101218753, -0.0203077029, 0.99465394, 0.264895231, -0.964247227, 0.00727842376)
  2234. Weld76.Part0 = Part65
  2235. Weld76.Part1 = Part65
  2236. Weld76.part1 = Part65
  2237. Weld77.Parent = Part65
  2238. Weld77.C0 = CFrame.new(0, 0, 0, 0.731291413, 0.345030367, 0.588359416, -0.652786732, 0.10402815, 0.750365078, 0.197691187, -0.932806313, 0.301309079)
  2239. Weld77.C1 = CFrame.new(0, 0, 0, 0.731291413, 0.345030367, 0.588359416, -0.652786732, 0.10402815, 0.750365078, 0.197691187, -0.932806313, 0.301309079)
  2240. Weld77.Part0 = Part65
  2241. Weld77.Part1 = Part65
  2242. Weld77.part1 = Part65
  2243. Weld78.Parent = Part65
  2244. Weld78.C0 = CFrame.new(0, 0, 0, 0.959787846, 0.261895686, 0.101074733, -0.103318922, -0.00522417901, 0.994634092, 0.261018515, -0.965081751, 0.022045387)
  2245. Weld78.C1 = CFrame.new(0, 0, 0, 0.959787846, 0.261895686, 0.101074733, -0.103318922, -0.00522417901, 0.994634092, 0.261018515, -0.965081751, 0.022045387)
  2246. Weld78.Part0 = Part65
  2247. Weld78.Part1 = Part65
  2248. Weld78.part1 = Part65
  2249. Weld79.Parent = Part65
  2250. Weld79.C0 = CFrame.new(0, 0, 0, 0.959788561, 0.261895865, 0.101074822, -0.103318997, -0.00522390101, 0.994634449, 0.261018693, -0.96508193, 0.0220451225)
  2251. Weld79.C1 = CFrame.new(0, 0, 0, 0.959788561, 0.261895865, 0.101074822, -0.103318997, -0.00522390101, 0.994634449, 0.261018693, -0.96508193, 0.0220451225)
  2252. Weld79.Part0 = Part65
  2253. Weld79.Part1 = Part65
  2254. Weld79.part1 = Part65
  2255. Weld80.Parent = Part65
  2256. Weld80.C0 = CFrame.new(0, 0, 0, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  2257. Weld80.C1 = CFrame.new(0, 0, 0, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  2258. Weld80.Part0 = Part65
  2259. Weld80.Part1 = Part65
  2260. Weld80.part1 = Part65
  2261. Weld81.Parent = Part65
  2262. Weld81.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2263. Weld81.C1 = CFrame.new(-3.87419891, 0.856246948, -0.0276489258, 0.652799606, -0.103571042, -0.750417292, -0.198034465, 0.932823718, -0.301026702, 0.731186867, 0.34511742, 0.588438213)
  2264. Weld81.Part0 = Part65
  2265. Weld81.Part1 = Part667
  2266. Weld81.part1 = Part667
  2267. Weld82.Parent = Part65
  2268. Weld82.C0 = CFrame.new(0, 0, 0, 0.870962679, -0.000244291237, 0.491348982, 0.000745383964, 0.999999404, -0.00082407915, -0.491348535, 0.0010839859, 0.870962381)
  2269. Weld82.C1 = CFrame.new(0, 0, 0, 0.870962679, -0.000244291237, 0.491348982, 0.000745383964, 0.999999404, -0.00082407915, -0.491348535, 0.0010839859, 0.870962381)
  2270. Weld82.Part0 = Part65
  2271. Weld82.Part1 = Part65
  2272. Weld82.part1 = Part65
  2273. Weld83.Parent = Part65
  2274. Weld83.C0 = CFrame.new(0, 0, 0, 0.870962679, -0.000244291237, 0.491348982, 0.000745383964, 0.999999404, -0.00082407915, -0.491348535, 0.0010839859, 0.870962381)
  2275. Weld83.C1 = CFrame.new(0, 0, 0, 0.870962679, -0.000244291237, 0.491348982, 0.000745383964, 0.999999404, -0.00082407915, -0.491348535, 0.0010839859, 0.870962381)
  2276. Weld83.Part0 = Part65
  2277. Weld83.Part1 = Part65
  2278. Weld83.part1 = Part65
  2279. Weld84.Parent = Part65
  2280. Weld84.C0 = CFrame.new(0, 0, 0, 4.54108886e-07, 5.96046448e-07, 1.00000727, -1.00000429, -1.68252382e-06, -4.24309064e-07, -1.71232227e-06, -1.0000087, -5.36441803e-07)
  2281. Weld84.C1 = CFrame.new(0, 0, 0, 4.54108886e-07, 5.96046448e-07, 1.00000727, -1.00000429, -1.68252382e-06, -4.24309064e-07, -1.71232227e-06, -1.0000087, -5.36441803e-07)
  2282. Weld84.Part0 = Part65
  2283. Weld84.Part1 = Part65
  2284. Weld84.part1 = Part65
  2285. Weld85.Parent = Part65
  2286. Weld85.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2287. Weld85.C1 = CFrame.new(-1.19465828, -0.885124207, 0.194290161, 0.664266765, -0.556502759, -0.499047875, -0.339170873, -0.819338918, 0.462219268, -0.666117132, -0.137773439, -0.733012438)
  2288. Weld85.Part0 = Part65
  2289. Weld85.Part1 = Part675
  2290. Weld85.part1 = Part675
  2291. Weld86.Parent = Part65
  2292. Weld86.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2293. Weld86.C1 = CFrame.new(-0.807044983, 0.63533783, -1.1941185, -0.499940693, -0.827046752, 0.25700587, -0.555954337, 0.0789364576, -0.827457249, 0.664058208, -0.556557119, -0.499264747)
  2294. Weld86.Part0 = Part65
  2295. Weld86.Part1 = Part677
  2296. Weld86.part1 = Part677
  2297. Weld87.Parent = Part65
  2298. Weld87.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2299. Weld87.C1 = CFrame.new(-0.398395538, 0.86554718, -1.19422913, -0.710934401, -0.676783144, -0.191146269, -0.231513843, 0.481880635, -0.845099092, 0.664058447, -0.556557, -0.499270201)
  2300. Weld87.Part0 = Part65
  2301. Weld87.Part1 = Part679
  2302. Weld87.part1 = Part679
  2303. Weld88.Parent = Part65
  2304. Weld88.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2305. Weld88.C1 = CFrame.new(0.419067383, -0.938209534, -1.26528168, -0.731395781, -0.344940007, -0.588282466, 0.652600944, -0.103664421, -0.750577152, 0.1979177, -0.932878971, 0.300932288)
  2306. Weld88.Part0 = Part65
  2307. Weld88.Part1 = Part681
  2308. Weld88.part1 = Part681
  2309. Weld89.Parent = Part65
  2310. Weld89.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2311. Weld89.C1 = CFrame.new(0.418113708, -0.338699341, -1.40975189, -0.731396675, -0.344935805, -0.588284254, 0.579113781, 0.141382307, -0.802893758, 0.36011982, -0.927917242, 0.0963505283)
  2312. Weld89.Part0 = Part65
  2313. Weld89.Part1 = Part683
  2314. Weld89.part1 = Part683
  2315. Weld90.Parent = Part65
  2316. Weld90.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2317. Weld90.C1 = CFrame.new(0.963806152, 0.455059052, -1.19425964, -0.407259613, 0.290755421, -0.865794957, 0.627030134, 0.778270721, -0.0335848108, 0.66405797, -0.556557238, -0.499270558)
  2318. Weld90.Part0 = Part65
  2319. Weld90.Part1 = Part685
  2320. Weld90.part1 = Part685
  2321. Weld91.Parent = Part65
  2322. Weld91.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2323. Weld91.C1 = CFrame.new(0.419082642, -1.00510406, -1.26435089, -0.731395781, -0.344940007, -0.588282466, 0.652600944, -0.103664421, -0.750577152, 0.1979177, -0.932878971, 0.300932288)
  2324. Weld91.Part0 = Part65
  2325. Weld91.Part1 = Part687
  2326. Weld91.part1 = Part687
  2327. Weld92.Parent = Part65
  2328. Weld92.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2329. Weld92.C1 = CFrame.new(-0.952964783, 0.450332642, -1.19446182, -0.339098126, -0.81931293, 0.462318689, -0.666362643, -0.137705624, -0.732802093, 0.664057612, -0.556557715, -0.499264777)
  2330. Weld92.Part0 = Part65
  2331. Weld92.Part1 = Part689
  2332. Weld92.part1 = Part689
  2333. Weld93.Parent = Part65
  2334. Weld93.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2335. Weld93.C1 = CFrame.new(-0.164421082, 0.893280029, -1.19451904, -0.746634781, -0.528936267, -0.403439015, -0.0395453461, 0.640679598, -0.766789377, 0.664057791, -0.556557417, -0.499270618)
  2336. Weld93.Part0 = Part65
  2337. Weld93.Part1 = Part691
  2338. Weld93.part1 = Part691
  2339. Weld94.Parent = Part65
  2340. Weld94.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2341. Weld94.C1 = CFrame.new(0.418205261, -1.19512939, -1.26460266, -0.731395781, -0.344939619, -0.588282645, 0.652600944, -0.103664517, -0.750577152, 0.197917297, -0.93287909, 0.300932139)
  2342. Weld94.Part0 = Part65
  2343. Weld94.Part1 = Part693
  2344. Weld94.part1 = Part693
  2345. Weld95.Parent = Part65
  2346. Weld95.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2347. Weld95.C1 = CFrame.new(-0.442480087, 1.05645752, -2.73705292, -0.377432942, -0.903617144, -0.202534929, -0.656833053, 0.415402144, -0.629294395, 0.652774751, -0.104484811, -0.750311971)
  2348. Weld95.Part0 = Part65
  2349. Weld95.Part1 = Part695
  2350. Weld95.part1 = Part695
  2351. Weld96.Parent = Part65
  2352. Weld96.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2353. Weld96.C1 = CFrame.new(-1.19302177, -0.859977722, -0.0378417969, 0.664266109, -0.556502104, -0.499049336, -0.155330494, -0.755820155, 0.636088908, -0.731178582, -0.345013589, -0.588509381)
  2354. Weld96.Part0 = Part65
  2355. Weld96.Part1 = Part697
  2356. Weld96.part1 = Part697
  2357. Weld97.Parent = Part65
  2358. Weld97.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2359. Weld97.C1 = CFrame.new(-0.385536194, 0.499420166, -1.37267303, -0.731395423, -0.344939977, -0.588283062, 0.321619749, 0.586209655, -0.743587196, 0.601349056, -0.733053803, -0.317811012)
  2360. Weld97.Part0 = Part65
  2361. Weld97.Part1 = Part699
  2362. Weld97.part1 = Part699
  2363. Weld98.Parent = Part65
  2364. Weld98.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2365. Weld98.C1 = CFrame.new(-1.18979073, 0.0306243896, 1.06378174, 0.664278746, -0.556496799, -0.499038577, -0.666021466, -0.137576208, -0.733136296, 0.339335233, 0.819376111, -0.462032735)
  2366. Weld98.Part0 = Part65
  2367. Weld98.Part1 = Part701
  2368. Weld98.part1 = Part701
  2369. Weld99.Parent = Part65
  2370. Weld99.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2371. Weld99.C1 = CFrame.new(-0.604499817, 0.798957825, -1.19407272, -0.746636808, -0.52889657, -0.403487295, -0.0394986309, 0.640712619, -0.766764104, 0.664058268, -0.556557119, -0.49927032)
  2372. Weld99.Part0 = Part65
  2373. Weld99.Part1 = Part703
  2374. Weld99.part1 = Part703
  2375. Weld100.Parent = Part65
  2376. Weld100.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2377. Weld100.C1 = CFrame.new(-0.385017395, 0.883514404, -1.19428253, -0.731395483, -0.344939798, -0.588283122, 0.155199468, 0.755813241, -0.636129141, 0.66405797, -0.556557238, -0.499264926)
  2378. Weld100.Part0 = Part65
  2379. Weld100.Part1 = Part705
  2380. Weld100.part1 = Part705
  2381. Weld101.Parent = Part65
  2382. Weld101.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2383. Weld101.C1 = CFrame.new(0.0699691772, 0.860496521, -1.20338821, -0.731405377, -0.34498772, -0.58824271, 0.155152455, 0.755791903, -0.636166036, 0.664058089, -0.556556642, -0.499265552)
  2384. Weld101.Part0 = Part65
  2385. Weld101.Part1 = Part707
  2386. Weld101.part1 = Part707
  2387. Weld102.Parent = Part65
  2388. Weld102.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2389. Weld102.C1 = CFrame.new(-1.18905449, -0.200813293, 1.03869629, 0.664278328, -0.55649662, -0.499039501, -0.731176734, -0.34506765, -0.588479877, 0.155287251, 0.755799592, -0.636123896)
  2390. Weld102.Part0 = Part65
  2391. Weld102.Part1 = Part709
  2392. Weld102.part1 = Part709
  2393. Weld103.Parent = Part65
  2394. Weld103.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2395. Weld103.C1 = CFrame.new(-1.18938255, -0.604316711, 0.816474915, 0.66426295, -0.556511998, -0.499048293, -0.71081835, -0.676844537, -0.191360548, -0.231283665, 0.481846392, -0.845181584)
  2396. Weld103.Part0 = Part65
  2397. Weld103.Part1 = Part711
  2398. Weld103.part1 = Part711
  2399. Weld104.Parent = Part65
  2400. Weld104.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2401. Weld104.C1 = CFrame.new(0.418479919, 0.883964539, -1.19429016, -0.731395543, -0.344940364, -0.588282526, 0.155198276, 0.755813479, -0.636129141, 0.664058149, -0.556556582, -0.499265492)
  2402. Weld104.Part0 = Part65
  2403. Weld104.Part1 = Part713
  2404. Weld104.part1 = Part713
  2405. Weld105.Parent = Part65
  2406. Weld105.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2407. Weld105.C1 = CFrame.new(0.0701065063, 0.257995605, -1.3236084, -0.731409669, -0.34493342, -0.588269234, 0.321610689, 0.586207032, -0.743593097, 0.601336539, -0.733058929, -0.317822695)
  2408. Weld105.Part0 = Part65
  2409. Weld105.Part1 = Part715
  2410. Weld105.part1 = Part715
  2411. Weld106.Parent = Part65
  2412. Weld106.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2413. Weld106.C1 = CFrame.new(-0.386108398, -0.93800354, -1.26512146, -0.731395304, -0.344940424, -0.588282824, 0.652601182, -0.103663482, -0.750577092, 0.197918504, -0.932878911, 0.300931931)
  2414. Weld106.Part0 = Part65
  2415. Weld106.Part1 = Part717
  2416. Weld106.part1 = Part717
  2417. Weld107.Parent = Part65
  2418. Weld107.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2419. Weld107.C1 = CFrame.new(-0.386047363, 0.0830383301, -1.44641876, -0.731395423, -0.344940007, -0.588282883, 0.466204494, 0.376673967, -0.800483406, 0.497707993, -0.859724462, -0.114683062)
  2420. Weld107.Part0 = Part65
  2421. Weld107.Part1 = Part719
  2422. Weld107.part1 = Part719
  2423. Weld108.Parent = Part65
  2424. Weld108.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2425. Weld108.C1 = CFrame.new(0.0699005127, -0.138717651, -1.34219551, -0.731401086, -0.344943136, -0.588274002, 0.466196924, 0.376669377, -0.800489902, 0.497706711, -0.859725296, -0.114682972)
  2426. Weld108.Part0 = Part65
  2427. Weld108.Part1 = Part721
  2428. Weld108.part1 = Part721
  2429. Weld109.Parent = Part65
  2430. Weld109.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2431. Weld109.C1 = CFrame.new(-1.18914032, -0.4167099, 0.953994751, 0.664262772, -0.556511402, -0.499049217, -0.746462584, -0.529004395, -0.403668284, -0.0393532291, 0.640663445, -0.766812742)
  2432. Weld109.Part0 = Part65
  2433. Weld109.Part1 = Part723
  2434. Weld109.part1 = Part723
  2435. Weld110.Parent = Part65
  2436. Weld110.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2437. Weld110.C1 = CFrame.new(-0.793510437, 0.661026001, -1.1938324, -0.710948825, -0.676753342, -0.191198379, -0.231470108, 0.481922656, -0.845087051, 0.664058268, -0.556557, -0.499270439)
  2438. Weld110.Part0 = Part65
  2439. Weld110.Part1 = Part725
  2440. Weld110.part1 = Part725
  2441. Weld111.Parent = Part65
  2442. Weld111.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2443. Weld111.C1 = CFrame.new(-0.000694274902, 1.16493988, -0.423789978, 0.731395543, 0.344940066, 0.588282883, -0.652601123, 0.103663683, 0.750577152, 0.197918102, -0.932879031, 0.300931811)
  2444. Weld111.Part0 = Part65
  2445. Weld111.Part1 = Part727
  2446. Weld111.part1 = Part727
  2447. Weld112.Parent = Part65
  2448. Weld112.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2449. Weld112.C1 = CFrame.new(-1.19428635, -0.725822449, -0.0378723145, 0.664252877, -0.556509197, -0.499059141, -0.155332342, -0.755820036, 0.63608861, -0.731190264, -0.345002472, -0.588501453)
  2450. Weld112.Part0 = Part65
  2451. Weld112.Part1 = Part729
  2452. Weld112.part1 = Part729
  2453. Weld113.Parent = Part65
  2454. Weld113.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2455. Weld113.C1 = CFrame.new(-0.385856628, -0.803955078, -1.26448441, -0.731395543, -0.344940066, -0.588282883, 0.652601123, -0.103663683, -0.750577152, 0.197918102, -0.932879031, 0.300931811)
  2456. Weld113.Part0 = Part65
  2457. Weld113.Part1 = Part731
  2458. Weld113.part1 = Part731
  2459. Weld114.Parent = Part65
  2460. Weld114.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2461. Weld114.C1 = CFrame.new(7.62939453e-06, -0.0304107666, 0.379714966, -0.731395721, -0.344939888, -0.588282764, 0.197339162, -0.932786763, 0.301597208, -0.652776241, 0.104490981, 0.750310004)
  2462. Weld114.Part0 = Part65
  2463. Weld114.Part1 = Part733
  2464. Weld114.part1 = Part733
  2465. Weld115.Parent = Part65
  2466. Weld115.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2467. Weld115.C1 = CFrame.new(-0.307411194, -1.17318726, -0.669570923, -0.731395543, -0.344940066, -0.588282883, 0.652601123, -0.103663683, -0.750577152, 0.197918102, -0.932879031, 0.300931811)
  2468. Weld115.Part0 = Part65
  2469. Weld115.Part1 = Part735
  2470. Weld115.part1 = Part735
  2471. Weld116.Parent = Part65
  2472. Weld116.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2473. Weld116.C1 = CFrame.new(3.05175781e-05, 0.00409317017, -0.0131607056, -0.731395364, -0.344940245, -0.588282824, 0.678500235, -0.454767823, -0.576905012, -0.0685369521, -0.821094155, 0.566662669)
  2474. Weld116.Part0 = Part65
  2475. Weld116.Part1 = Part737
  2476. Weld116.part1 = Part737
  2477. Weld117.Parent = Part65
  2478. Weld117.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2479. Weld117.C1 = CFrame.new(1.21857452, 0.597503662, -0.314910889, -0.652758718, 0.103550911, 0.750455439, -0.657004416, 0.415806949, -0.628848076, -0.377162427, -0.903538525, -0.203388184)
  2480. Weld117.Part0 = Part65
  2481. Weld117.Part1 = Part739
  2482. Weld117.part1 = Part739
  2483. Weld118.Parent = Part65
  2484. Weld118.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2485. Weld118.C1 = CFrame.new(-0.000968933105, 0.0360183716, -0.0134506226, -0.731395781, -0.344939739, -0.588282764, 0.678499997, -0.454766601, -0.576906323, -0.0685360208, -0.82109499, 0.566661417)
  2486. Weld118.Part0 = Part65
  2487. Weld118.Part1 = Part742
  2488. Weld118.part1 = Part742
  2489. Weld119.Parent = Part65
  2490. Weld119.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2491. Weld119.C1 = CFrame.new(-0.174224854, -1.10630035, -0.607032776, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2492. Weld119.Part0 = Part65
  2493. Weld119.Part1 = Part744
  2494. Weld119.part1 = Part744
  2495. Weld120.Parent = Part65
  2496. Weld120.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2497. Weld120.C1 = CFrame.new(1.57519531, 0.597808838, -0.315238953, -0.652749479, 0.103574358, 0.750460148, -0.657004058, 0.415806592, -0.628848672, -0.377178878, -0.903536081, -0.203368738)
  2498. Weld120.Part0 = Part65
  2499. Weld120.Part1 = Part746
  2500. Weld120.part1 = Part746
  2501. Weld121.Parent = Part65
  2502. Weld121.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2503. Weld121.C1 = CFrame.new(0.418762207, -1.59621429, -1.26395416, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2504. Weld121.Part0 = Part65
  2505. Weld121.Part1 = Part749
  2506. Weld121.part1 = Part749
  2507. Weld122.Parent = Part65
  2508. Weld122.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2509. Weld122.C1 = CFrame.new(0.0047454834, -0.931816101, -0.885002136, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2510. Weld122.Part0 = Part65
  2511. Weld122.Part1 = Part751
  2512. Weld122.part1 = Part751
  2513. Weld123.Parent = Part65
  2514. Weld123.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2515. Weld123.C1 = CFrame.new(0.620162964, -0.693492889, -2.73661804, 0.731395781, 0.344939619, 0.588282645, 0.19733949, -0.932787001, 0.301596522, 0.652775943, -0.10449037, -0.750310361)
  2516. Weld123.Part0 = Part65
  2517. Weld123.Part1 = Part753
  2518. Weld123.part1 = Part753
  2519. Weld124.Parent = Part65
  2520. Weld124.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2521. Weld124.C1 = CFrame.new(-0.0372009277, -0.906837463, -1.07592773, -0.7313959, -0.344938993, -0.588283062, 0.652600825, -0.103663377, -0.75057739, 0.197917536, -0.932879448, 0.300930858)
  2522. Weld124.Part0 = Part65
  2523. Weld124.Part1 = Part755
  2524. Weld124.part1 = Part755
  2525. Weld125.Parent = Part65
  2526. Weld125.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2527. Weld125.C1 = CFrame.new(-0.586572647, -2.73716736, -0.908172607, -0.194570765, -0.980338812, -0.0327462852, 0.65262419, -0.104456335, -0.750447154, 0.732272565, -0.167385221, 0.660120845)
  2528. Weld125.Part0 = Part65
  2529. Weld125.Part1 = Part757
  2530. Weld125.part1 = Part757
  2531. Weld126.Parent = Part65
  2532. Weld126.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2533. Weld126.C1 = CFrame.new(-0.173614502, -1.24050903, -0.607234955, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2534. Weld126.Part0 = Part65
  2535. Weld126.Part1 = Part759
  2536. Weld126.part1 = Part759
  2537. Weld127.Parent = Part65
  2538. Weld127.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2539. Weld127.C1 = CFrame.new(-0.000274658203, 0.410804749, -0.28086853, -0.731395781, -0.344939619, -0.588282645, -0.19733949, 0.932787001, -0.301596522, 0.652775943, -0.10449037, -0.750310361)
  2540. Weld127.Part0 = Part65
  2541. Weld127.Part1 = Part761
  2542. Weld127.part1 = Part761
  2543. Weld128.Parent = Part65
  2544. Weld128.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2545. Weld128.C1 = CFrame.new(0.000228881836, 0.129261017, 0.37953186, 0.731395781, 0.344939619, 0.588282645, -0.19733949, 0.932787001, -0.301596522, -0.652775943, 0.10449037, 0.750310361)
  2546. Weld128.Part0 = Part65
  2547. Weld128.Part1 = Part763
  2548. Weld128.part1 = Part763
  2549. Weld129.Parent = Part65
  2550. Weld129.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2551. Weld129.C1 = CFrame.new(-0.000305175781, 0.0800285339, -0.339080811, -0.731395781, -0.344939619, -0.588282645, -0.19733949, 0.932787001, -0.301596522, 0.652775943, -0.10449037, -0.750310361)
  2552. Weld129.Part0 = Part65
  2553. Weld129.Part1 = Part765
  2554. Weld129.part1 = Part765
  2555. Weld130.Parent = Part65
  2556. Weld130.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2557. Weld130.C1 = CFrame.new(0.418762207, -1.59621429, -1.26395416, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2558. Weld130.Part0 = Part65
  2559. Weld130.Part1 = Part767
  2560. Weld130.part1 = Part767
  2561. Weld131.Parent = Part65
  2562. Weld131.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2563. Weld131.C1 = CFrame.new(-0.000289916992, -0.183048248, 0.379165649, -0.731395781, -0.344939619, -0.588282645, 0.19733949, -0.932787001, 0.301596522, -0.652775943, 0.10449037, 0.750310361)
  2564. Weld131.Part0 = Part65
  2565. Weld131.Part1 = Part769
  2566. Weld131.part1 = Part769
  2567. Weld132.Parent = Part65
  2568. Weld132.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2569. Weld132.C1 = CFrame.new(-0.401870728, -1.46335602, -0.781394958, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2570. Weld132.Part0 = Part65
  2571. Weld132.Part1 = Part771
  2572. Weld132.part1 = Part771
  2573. Weld133.Parent = Part65
  2574. Weld133.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2575. Weld133.C1 = CFrame.new(-0.385772705, -1.59673309, -1.2641449, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2576. Weld133.Part0 = Part65
  2577. Weld133.Part1 = Part773
  2578. Weld133.part1 = Part773
  2579. Weld134.Parent = Part65
  2580. Weld134.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2581. Weld134.C1 = CFrame.new(0.630661011, -0.693828583, 2.73690033, -0.731395781, -0.344939619, -0.588282645, 0.19733949, -0.932787001, 0.301596522, -0.652775943, 0.10449037, 0.750310361)
  2582. Weld134.Part0 = Part65
  2583. Weld134.Part1 = Part775
  2584. Weld134.part1 = Part775
  2585. Weld135.Parent = Part65
  2586. Weld135.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2587. Weld135.C1 = CFrame.new(0.394828796, 2.0097084, -0.423164368, 0.537602365, 0.360015988, 0.762477577, -0.819640875, 0.0108690308, 0.572774708, 0.197918236, -0.93287909, 0.300931454)
  2588. Weld135.Part0 = Part65
  2589. Weld135.Part1 = Part777
  2590. Weld135.part1 = Part777
  2591. Weld136.Parent = Part65
  2592. Weld136.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2593. Weld136.C1 = CFrame.new(-0.884403229, -0.517044067, -0.00484466553, 0.197456822, -0.93273139, 0.301691383, 0.652974784, -0.104396939, -0.750150383, 0.731186688, 0.345118016, 0.588438094)
  2594. Weld136.Part0 = Part65
  2595. Weld136.Part1 = Part779
  2596. Weld136.part1 = Part779
  2597. Weld137.Parent = Part65
  2598. Weld137.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2599. Weld137.C1 = CFrame.new(0.41771698, 0.499336243, -1.37315369, -0.731395602, -0.344940245, -0.588282645, 0.321618438, 0.586210549, -0.743586957, 0.601349533, -0.73305285, -0.317812204)
  2600. Weld137.Part0 = Part65
  2601. Weld137.Part1 = Part781
  2602. Weld137.part1 = Part781
  2603. Weld138.Parent = Part65
  2604. Weld138.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2605. Weld138.C1 = CFrame.new(-1.18966484, -0.749616623, 0.634803772, 0.66426295, -0.556511343, -0.499049038, -0.626724303, -0.778501868, 0.0339354314, -0.407396078, 0.290224075, -0.86590904)
  2606. Weld138.Part0 = Part65
  2607. Weld138.Part1 = Part783
  2608. Weld138.part1 = Part783
  2609. Weld139.Parent = Part65
  2610. Weld139.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2611. Weld139.C1 = CFrame.new(2.73693848, 0.586448669, -0.69644928, -0.65279907, 0.103569642, 0.750417948, -0.731218696, -0.34496823, -0.588486016, 0.197918639, -0.932879031, 0.300931424)
  2612. Weld139.Part0 = Part65
  2613. Weld139.Part1 = Part785
  2614. Weld139.part1 = Part785
  2615. Weld140.Parent = Part65
  2616. Weld140.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2617. Weld140.C1 = CFrame.new(-1.0459137, 0.23273468, -1.19389343, -0.155151263, -0.755789757, 0.636168718, -0.731405735, -0.344990253, -0.588240802, 0.66405797, -0.556557834, -0.49926424)
  2618. Weld140.Part0 = Part65
  2619. Weld140.Part1 = Part787
  2620. Weld140.part1 = Part787
  2621. Weld141.Parent = Part65
  2622. Weld141.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2623. Weld141.C1 = CFrame.new(0.0701141357, -0.90687561, -1.07551575, -0.731396258, -0.344938219, -0.588283002, 0.652600706, -0.103663817, -0.750577509, 0.197916761, -0.932879686, 0.300930649)
  2624. Weld141.Part0 = Part65
  2625. Weld141.Part1 = Part789
  2626. Weld141.part1 = Part789
  2627. Weld142.Parent = Part65
  2628. Weld142.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2629. Weld142.C1 = CFrame.new(1.93300629, 0.596313477, -0.313997269, -0.652800798, 0.103576839, 0.750415266, -0.656963229, 0.415799022, -0.628896296, -0.377161026, -0.903539121, -0.203387797)
  2630. Weld142.Part0 = Part65
  2631. Weld142.Part1 = Part791
  2632. Weld142.part1 = Part791
  2633. Weld143.Parent = Part65
  2634. Weld143.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2635. Weld143.C1 = CFrame.new(0.000106811523, 0.415500641, -0.374862671, -0.731395781, -0.344939619, -0.588282645, -0.19733949, 0.932787001, -0.301596522, 0.652775943, -0.10449037, -0.750310361)
  2636. Weld143.Part0 = Part65
  2637. Weld143.Part1 = Part794
  2638. Weld143.part1 = Part794
  2639. Weld144.Parent = Part65
  2640. Weld144.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2641. Weld144.C1 = CFrame.new(-0.385482788, -1.19445038, -1.26436996, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2642. Weld144.Part0 = Part65
  2643. Weld144.Part1 = Part796
  2644. Weld144.part1 = Part796
  2645. Weld145.Parent = Part65
  2646. Weld145.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2647. Weld145.C1 = CFrame.new(-0.397872925, 2.05067444, -0.423919678, 0.87534523, 0.30637145, 0.374041766, -0.441132843, 0.189384595, 0.877231717, 0.197918579, -0.932878911, 0.300931811)
  2648. Weld145.Part0 = Part65
  2649. Weld145.Part1 = Part798
  2650. Weld145.part1 = Part798
  2651. Weld146.Parent = Part65
  2652. Weld146.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2653. Weld146.C1 = CFrame.new(-0.737941742, -2.73664093, -0.568267822, 0.197455913, -0.932731628, 0.301691413, 0.652974546, -0.104397625, -0.750150442, 0.731187105, 0.345117271, 0.588438034)
  2654. Weld146.Part0 = Part65
  2655. Weld146.Part1 = Part800
  2656. Weld146.part1 = Part800
  2657. Weld147.Parent = Part65
  2658. Weld147.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2659. Weld147.C1 = CFrame.new(0.00582885742, -2.24482727, -0.883674622, -0.731395781, -0.344939619, -0.588282645, 0.652600765, -0.103663661, -0.75057739, 0.197917908, -0.93287921, 0.300931454)
  2660. Weld147.Part0 = Part65
  2661. Weld147.Part1 = Part802
  2662. Weld147.part1 = Part802
  2663. Weld148.Parent = Part65
  2664. Weld148.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2665. Weld148.C1 = CFrame.new(-0.162406921, 2.73532104, -1.27388382, 0.757549107, 0.0916257054, 0.646316111, -0.65277499, 0.103572488, 0.750438511, 0.00181597471, -0.990389109, 0.138275951)
  2666. Weld148.Part0 = Part65
  2667. Weld148.Part1 = Part804
  2668. Weld148.part1 = Part804
  2669. Weld149.Parent = Part65
  2670. Weld149.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2671. Weld149.C1 = CFrame.new(2.73745728, -0.00498199463, 0.167678833, -0.65279907, 0.103569642, 0.750417948, 0.731218815, 0.344968021, 0.588486195, -0.197918445, 0.93287915, -0.300931245)
  2672. Weld149.Part0 = Part65
  2673. Weld149.Part1 = Part806
  2674. Weld149.part1 = Part806
  2675. Weld150.Parent = Part65
  2676. Weld150.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  2677. Weld150.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  2678. Weld150.Part0 = Part65
  2679. Weld150.Part1 = Part65
  2680. Weld150.part1 = Part65
  2681. Weld151.Parent = Part65
  2682. Weld151.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  2683. Weld151.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  2684. Weld151.Part0 = Part65
  2685. Weld151.Part1 = Part65
  2686. Weld151.part1 = Part65
  2687. Weld152.Parent = Part65
  2688. Weld152.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2689. Weld152.C1 = CFrame.new(-0.157661438, -2.73513031, -1.27020264, -0.655337811, -0.574739575, -0.490107298, 0.652477264, -0.103852764, -0.750658631, 0.380532444, -0.811715543, 0.443067908)
  2690. Weld152.Part0 = Part65
  2691. Weld152.Part1 = Part818
  2692. Weld152.part1 = Part818
  2693. Weld153.Parent = Part65
  2694. Weld153.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2695. Weld153.C1 = CFrame.new(-1.1899147, 0.2602005, 1.0282402, 0.664279044, -0.556496322, -0.499038726, -0.555449188, 0.0792672634, -0.827764809, 0.500208735, 0.82705605, -0.256453753)
  2696. Weld153.Part0 = Part65
  2697. Weld153.Part1 = Part822
  2698. Weld153.part1 = Part822
  2699. Weld154.Parent = Part65
  2700. Weld154.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2701. Weld154.C1 = CFrame.new(-0.277679443, -1.2871666, -2.73632813, 0.757549703, 0.0916256309, 0.646315277, 0.00116959214, -0.990285993, 0.139018998, 0.652775705, -0.104553238, -0.750301838)
  2702. Weld154.Part0 = Part65
  2703. Weld154.Part1 = Part824
  2704. Weld154.part1 = Part824
  2705. Weld155.Parent = Part65
  2706. Weld155.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2707. Weld155.C1 = CFrame.new(-0.687391281, 0.736686707, -2.73677063, 0.00151084363, -0.990256369, 0.139227301, -0.757548928, -0.0920176953, -0.646260679, 0.652776062, -0.104490399, -0.750310302)
  2708. Weld155.Part0 = Part65
  2709. Weld155.Part1 = Part814
  2710. Weld155.part1 = Part814
  2711. Weld156.Parent = Part65
  2712. Weld156.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2713. Weld156.C1 = CFrame.new(0.418380737, -0.803596497, -1.26549911, -0.731395602, -0.344940275, -0.588282645, 0.652600825, -0.103662975, -0.75057745, 0.197918817, -0.932879031, 0.300931334)
  2714. Weld156.Part0 = Part65
  2715. Weld156.Part1 = Part832
  2716. Weld156.part1 = Part832
  2717. Weld157.Parent = Part65
  2718. Weld157.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2719. Weld157.C1 = CFrame.new(-1.20292091, -0.726127625, 0.0696563721, 0.664264202, -0.556502998, -0.499051124, -0.155193046, -0.755755544, 0.636199355, -0.731209576, -0.345153987, -0.588388622)
  2720. Weld157.Part0 = Part65
  2721. Weld157.Part1 = Part812
  2722. Weld157.part1 = Part812
  2723. Weld158.Parent = Part65
  2724. Weld158.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2725. Weld158.C1 = CFrame.new(0.000534057617, 0.54586792, -0.192230225, -0.731395423, -0.344940633, -0.588282704, -0.197339788, 0.932786584, -0.301597625, 0.652776361, -0.104490876, -0.750309944)
  2726. Weld158.Part0 = Part65
  2727. Weld158.Part1 = Part840
  2728. Weld158.part1 = Part840
  2729. Weld159.Parent = Part65
  2730. Weld159.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  2731. Weld159.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  2732. Weld159.Part0 = Part65
  2733. Weld159.Part1 = Part65
  2734. Weld159.part1 = Part65
  2735. Weld160.Parent = Part65
  2736. Weld160.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2737. Weld160.C1 = CFrame.new(-0.0372314453, -0.52041626, -1.25136566, -0.731444299, -0.344937772, -0.588223815, 0.579057992, 0.141355932, -0.80293864, 0.360112786, -0.927920461, 0.0963449925)
  2738. Weld160.Part0 = Part65
  2739. Weld160.Part1 = Part848
  2740. Weld160.part1 = Part848
  2741. Weld161.Parent = Part65
  2742. Weld161.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2743. Weld161.C1 = CFrame.new(-0.552988052, -2.73640442, -1.07328033, -0.377432793, -0.90361762, -0.20253326, 0.65249449, -0.104308851, -0.750580192, 0.657111526, -0.415445387, 0.628975093)
  2744. Weld161.Part0 = Part65
  2745. Weld161.Part1 = Part820
  2746. Weld161.part1 = Part820
  2747. Weld162.Parent = Part65
  2748. Weld162.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2749. Weld162.C1 = CFrame.new(0.00455474854, -1.57564545, -0.882778168, -0.731257558, -0.345046699, -0.588392019, 0.652852356, -0.104155041, -0.750290334, 0.197600812, -0.932787955, 0.301429451)
  2750. Weld162.Part0 = Part65
  2751. Weld162.Part1 = Part844
  2752. Weld162.part1 = Part844
  2753. Weld163.Parent = Part65
  2754. Weld163.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2755. Weld163.C1 = CFrame.new(-0.592033386, 2.73636627, -0.909275055, 0.536561847, -0.635400414, 0.555306911, -0.653138876, 0.103971146, 0.750066638, -0.53433162, -0.765146732, -0.359217167)
  2756. Weld163.Part0 = Part65
  2757. Weld163.Part1 = Part836
  2758. Weld163.part1 = Part836
  2759. Weld164.Parent = Part65
  2760. Weld164.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2761. Weld164.C1 = CFrame.new(-0.558143616, 2.73564148, -1.07595444, 0.656661212, -0.415812522, 0.629202783, -0.653080225, 0.103754438, 0.750147521, -0.377203315, -0.903512597, -0.203427419)
  2762. Weld164.Part0 = Part65
  2763. Weld164.Part1 = Part830
  2764. Weld164.part1 = Part830
  2765. Weld165.Parent = Part65
  2766. Weld165.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2767. Weld165.C1 = CFrame.new(-0.884483337, -0.557403564, -0.00498199463, 0.197461084, -0.932727337, 0.301698565, 0.652977824, -0.104396775, -0.75014776, 0.731182575, 0.345125914, 0.58843863)
  2768. Weld165.Part0 = Part65
  2769. Weld165.Part1 = Part846
  2770. Weld165.part1 = Part846
  2771. Weld166.Parent = Part65
  2772. Weld166.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2773. Weld166.C1 = CFrame.new(-0.0617523193, 1.24313736, 2.73688507, 0.757549703, 0.0916256309, 0.646315277, -0.00121052563, 0.990292668, -0.138971984, -0.652775645, 0.104491122, 0.750310481)
  2774. Weld166.Part0 = Part65
  2775. Weld166.Part1 = Part834
  2776. Weld166.part1 = Part834
  2777. Weld167.Parent = Part65
  2778. Weld167.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2779. Weld167.C1 = CFrame.new(0.000679016113, 0.0570526123, 0.581336975, -0.731395423, -0.344940633, -0.588282704, -0.652600884, 0.103662558, 0.750577509, -0.197919339, 0.932878911, -0.300931275)
  2780. Weld167.Part0 = Part65
  2781. Weld167.Part1 = Part828
  2782. Weld167.part1 = Part828
  2783. Weld168.Parent = Part65
  2784. Weld168.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2785. Weld168.C1 = CFrame.new(-0.692443848, 0.734298706, 2.73648071, 0.37994203, -0.811701536, 0.443599999, 0.655382693, 0.574643731, 0.490159601, -0.652776241, 0.104490869, 0.750310063)
  2786. Weld168.Part0 = Part65
  2787. Weld168.Part1 = Part816
  2788. Weld168.part1 = Part816
  2789. Weld169.Parent = Part65
  2790. Weld169.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2791. Weld169.C1 = CFrame.new(-0.743560791, 2.73644257, -0.558395386, 0.197455496, -0.932731807, 0.301691055, -0.652974606, 0.104397595, 0.750150383, -0.731187165, -0.345116764, -0.588438272)
  2792. Weld169.Part0 = Part65
  2793. Weld169.Part1 = Part842
  2794. Weld169.part1 = Part842
  2795. Weld170.Parent = Part65
  2796. Weld170.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2797. Weld170.C1 = CFrame.new(-0.0574493408, 1.23936462, -2.73684692, -0.655338049, -0.574739754, -0.490106851, -0.380019575, 0.811633468, -0.443657935, 0.652775943, -0.104491033, -0.750310302)
  2798. Weld170.Part0 = Part65
  2799. Weld170.Part1 = Part826
  2800. Weld170.part1 = Part826
  2801. Weld171.Parent = Part65
  2802. Weld171.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  2803. Weld171.C1 = CFrame.new(-0.447044373, 1.05793571, 2.73709106, 0.656660974, -0.415813327, 0.629202485, 0.377733082, 0.903427839, 0.202819914, -0.652774215, 0.104486652, 0.75031215)
  2804. Weld171.Part0 = Part65
  2805. Weld171.Part1 = Part838
  2806. Weld171.part1 = Part838
  2807. Weld172.Parent = Part65
  2808. Weld172.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2809. Weld172.C1 = CFrame.new(-0.0372543335, -0.133987427, -1.33485985, -0.731439531, -0.344946146, -0.588224769, 0.466156214, 0.376645178, -0.800522864, 0.497689307, -0.859738648, -0.114694394)
  2810. Weld172.Part0 = Part65
  2811. Weld172.Part1 = Part854
  2812. Weld172.part1 = Part854
  2813. Weld173.Parent = Part65
  2814. Weld173.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2815. Weld173.C1 = CFrame.new(0.070022583, -0.879928589, -1.07650375, -0.731400788, -0.344929218, -0.588282645, 0.652596951, -0.103662021, -0.750580966, 0.197911501, -0.932882011, 0.300924152)
  2816. Weld173.Part0 = Part65
  2817. Weld173.Part1 = Part862
  2818. Weld173.part1 = Part862
  2819. Weld174.Parent = Part65
  2820. Weld174.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2821. Weld174.C1 = CFrame.new(-0.307579041, -1.46359253, -0.669647217, -0.731399655, -0.344931006, -0.588283062, 0.652597785, -0.103661455, -0.750580251, 0.197912887, -0.932881415, 0.300925076)
  2822. Weld174.Part0 = Part65
  2823. Weld174.Part1 = Part860
  2824. Weld174.part1 = Part860
  2825. Weld175.Parent = Part65
  2826. Weld175.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2827. Weld175.C1 = CFrame.new(-0.385452271, -1.00476837, -1.26490784, -0.731399655, -0.344931006, -0.588283062, 0.652597785, -0.103661455, -0.750580251, 0.197912887, -0.932881415, 0.300925076)
  2828. Weld175.Part0 = Part65
  2829. Weld175.Part1 = Part864
  2830. Weld175.part1 = Part864
  2831. Weld176.Parent = Part65
  2832. Weld176.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2833. Weld176.C1 = CFrame.new(0.0695037842, -0.526687622, -1.25836563, -0.73140049, -0.344929248, -0.588282943, 0.579110801, 0.141386166, -0.802897274, 0.360115051, -0.927914083, 0.0963467658)
  2834. Weld176.Part0 = Part65
  2835. Weld176.Part1 = Part858
  2836. Weld176.part1 = Part858
  2837. Weld177.Parent = Part65
  2838. Weld177.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2839. Weld177.C1 = CFrame.new(0.419372559, -1.99868011, -1.26423645, -0.731399655, -0.344931006, -0.588283062, 0.652597785, -0.103661455, -0.750580251, 0.197912887, -0.932881415, 0.300925076)
  2840. Weld177.Part0 = Part65
  2841. Weld177.Part1 = Part868
  2842. Weld177.part1 = Part868
  2843. Weld178.Parent = Part65
  2844. Weld178.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2845. Weld178.C1 = CFrame.new(-0.0372085571, 0.260467529, -1.3155632, -0.73142767, -0.344960958, -0.588230908, 0.321575731, 0.586187661, -0.743621588, 0.601334214, -0.733066082, -0.317822784)
  2846. Weld178.Part0 = Part65
  2847. Weld178.Part1 = Part852
  2848. Weld178.part1 = Part852
  2849. Weld179.Parent = Part65
  2850. Weld179.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2851. Weld179.C1 = CFrame.new(-0.0368881226, -0.871841431, -1.07102203, -0.731399298, -0.344930291, -0.588284016, 0.6525985, -0.103661187, -0.750579774, 0.197912231, -0.932881713, 0.300924599)
  2852. Weld179.Part0 = Part65
  2853. Weld179.Part1 = Part850
  2854. Weld179.part1 = Part850
  2855. Weld180.Parent = Part65
  2856. Weld180.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2857. Weld180.C1 = CFrame.new(-0.279533386, -3.00630951, 0.265426636, -0.65534389, -0.574732065, -0.490107507, 0.755324006, -0.496080279, -0.42823264, 0.00298374891, -0.650828898, 0.759220004)
  2858. Weld180.Part0 = Part65
  2859. Weld180.Part1 = Part856
  2860. Weld180.part1 = Part856
  2861. Weld181.Parent = Part65
  2862. Weld181.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2863. Weld181.C1 = CFrame.new(-0.934997559, 0.472732544, -1.18989182, -0.626806855, -0.778427362, 0.0340873897, -0.407613546, 0.290307611, -0.865780234, 0.664050639, -0.556563616, -0.499265671)
  2864. Weld181.Part0 = Part65
  2865. Weld181.Part1 = Part866
  2866. Weld181.part1 = Part866
  2867. Weld182.Parent = Part65
  2868. Weld182.C0 = CFrame.new(0, 0, 0, 0.959788203, 0.261895776, 0.101074778, -0.103318959, -0.00522404071, 0.994634271, 0.261018604, -0.965081811, 0.0220452566)
  2869. Weld182.C1 = CFrame.new(0, 0, 0, 0.959788203, 0.261895776, 0.101074778, -0.103318959, -0.00522404071, 0.994634271, 0.261018604, -0.965081811, 0.0220452566)
  2870. Weld182.Part0 = Part65
  2871. Weld182.Part1 = Part65
  2872. Weld182.part1 = Part65
  2873. Weld183.Parent = Part65
  2874. Weld183.C0 = CFrame.new(0, 0, 0, 0.95895201, 0.264226377, 0.102955103, -0.101182997, -0.0203402732, 0.994661689, 0.264907986, -0.964248836, 0.00723477267)
  2875. Weld183.C1 = CFrame.new(0, 0, 0, 0.95895201, 0.264226377, 0.102955103, -0.101182997, -0.0203402732, 0.994661689, 0.264907986, -0.964248836, 0.00723477267)
  2876. Weld183.Part0 = Part65
  2877. Weld183.Part1 = Part65
  2878. Weld183.part1 = Part65
  2879. Weld184.Parent = Part65
  2880. Weld184.C0 = CFrame.new(0, 0, 0, 0.958946705, 0.264218718, 0.102981292, -0.101220809, -0.0203048158, 0.994656026, 0.264897317, -0.964248538, 0.00727527356)
  2881. Weld184.C1 = CFrame.new(0, 0, 0, 0.958946705, 0.264218718, 0.102981292, -0.101220809, -0.0203048158, 0.994656026, 0.264897317, -0.964248538, 0.00727527356)
  2882. Weld184.Part0 = Part65
  2883. Weld184.Part1 = Part65
  2884. Weld184.part1 = Part65
  2885. Weld185.Parent = Part65
  2886. Weld185.C0 = CFrame.new(0, 0, 0, 0.958948612, 0.264220208, 0.102981962, -0.101219699, -0.0203133952, 0.994656742, 0.264900327, -0.964248538, 0.00726478593)
  2887. Weld185.C1 = CFrame.new(0, 0, 0, 0.958948612, 0.264220208, 0.102981962, -0.101219699, -0.0203133952, 0.994656742, 0.264900327, -0.964248538, 0.00726478593)
  2888. Weld185.Part0 = Part65
  2889. Weld185.Part1 = Part65
  2890. Weld185.part1 = Part65
  2891. Weld186.Parent = Part65
  2892. Weld186.C0 = CFrame.new(0, 0, 0, 0.958951175, 0.264228374, 0.102957919, -0.101183049, -0.0203507654, 0.99466151, 0.264911085, -0.964248061, 0.00722494442)
  2893. Weld186.C1 = CFrame.new(0, 0, 0, 0.958951175, 0.264228374, 0.102957919, -0.101183049, -0.0203507654, 0.99466151, 0.264911085, -0.964248061, 0.00722494442)
  2894. Weld186.Part0 = Part65
  2895. Weld186.Part1 = Part65
  2896. Weld186.part1 = Part65
  2897. Weld187.Parent = Part65
  2898. Weld187.C0 = CFrame.new(0, 0, 0, 0.74839884, -0.508151591, 0.426240683, -0.578328967, -0.814600289, 0.0442951024, 0.324707091, -0.279657722, -0.903524697)
  2899. Weld187.C1 = CFrame.new(0, 0, 0, 0.74839884, -0.508151591, 0.426240683, -0.578328967, -0.814600289, 0.0442951024, 0.324707091, -0.279657722, -0.903524697)
  2900. Weld187.Part0 = Part65
  2901. Weld187.Part1 = Part65
  2902. Weld187.part1 = Part65
  2903. Weld188.Parent = Part65
  2904. Weld188.C0 = CFrame.new(0, 0, 0, 0.731291354, 0.345031053, 0.588359356, -0.65278703, 0.104029775, 0.750364602, 0.197692186, -0.93280834, 0.301307857)
  2905. Weld188.C1 = CFrame.new(0, 0, 0, 0.731291354, 0.345031053, 0.588359356, -0.65278703, 0.104029775, 0.750364602, 0.197692186, -0.93280834, 0.301307857)
  2906. Weld188.Part0 = Part65
  2907. Weld188.Part1 = Part65
  2908. Weld188.part1 = Part65
  2909. Weld189.Parent = Part65
  2910. Weld189.C0 = CFrame.new(0, 0, 0, 0.731291354, 0.345031053, 0.588359356, -0.65278703, 0.104029775, 0.750364602, 0.197692186, -0.93280834, 0.301307857)
  2911. Weld189.C1 = CFrame.new(0, 0, 0, 0.731291354, 0.345031053, 0.588359356, -0.65278703, 0.104029775, 0.750364602, 0.197692186, -0.93280834, 0.301307857)
  2912. Weld189.Part0 = Part65
  2913. Weld189.Part1 = Part65
  2914. Weld189.part1 = Part65
  2915. Weld190.Parent = Part65
  2916. Weld190.C0 = CFrame.new(0, 0, 0, 0.959791899, 0.261885077, 0.101066254, -0.103428446, -0.0047855936, 0.994624913, 0.260961235, -0.965086877, 0.02249383)
  2917. Weld190.C1 = CFrame.new(0, 0, 0, 0.959791899, 0.261885077, 0.101066254, -0.103428446, -0.0047855936, 0.994624913, 0.260961235, -0.965086877, 0.02249383)
  2918. Weld190.Part0 = Part65
  2919. Weld190.Part1 = Part65
  2920. Weld190.part1 = Part65
  2921. Weld191.Parent = Part65
  2922. Weld191.C0 = CFrame.new(0, 0, 0, 0.958953261, 0.264223397, 0.102950886, -0.10118293, -0.0203245357, 0.994662046, 0.264903426, -0.964249969, 0.00724951923)
  2923. Weld191.C1 = CFrame.new(0, 0, 0, 0.958953261, 0.264223397, 0.102950886, -0.10118293, -0.0203245357, 0.994662046, 0.264903426, -0.964249969, 0.00724951923)
  2924. Weld191.Part0 = Part65
  2925. Weld191.Part1 = Part65
  2926. Weld191.part1 = Part65
  2927. Weld192.Parent = Part65
  2928. Weld192.C0 = CFrame.new(0, 0, 0, 0.958944857, 0.264220476, 0.102982841, -0.101220638, -0.0203105006, 0.99465549, 0.264899403, -0.964247704, 0.00727110635)
  2929. Weld192.C1 = CFrame.new(0, 0, 0, 0.958944857, 0.264220476, 0.102982841, -0.101220638, -0.0203105006, 0.99465549, 0.264899403, -0.964247704, 0.00727110635)
  2930. Weld192.Part0 = Part65
  2931. Weld192.Part1 = Part65
  2932. Weld192.part1 = Part65
  2933. Weld193.Parent = Part65
  2934. Weld193.C0 = CFrame.new(0, 0, 0, 0.731291354, 0.345031053, 0.588359356, -0.65278703, 0.104029775, 0.750364602, 0.197692186, -0.93280834, 0.301307857)
  2935. Weld193.C1 = CFrame.new(0, 0, 0, 0.731291354, 0.345031053, 0.588359356, -0.65278703, 0.104029775, 0.750364602, 0.197692186, -0.93280834, 0.301307857)
  2936. Weld193.Part0 = Part65
  2937. Weld193.Part1 = Part65
  2938. Weld193.part1 = Part65
  2939. Weld194.Parent = Part65
  2940. Weld194.C0 = CFrame.new(0, 0, 0, 0.958940268, 0.264220119, 0.102983035, -0.101219259, -0.0203124229, 0.994654119, 0.264898062, -0.96424675, 0.00727321021)
  2941. Weld194.C1 = CFrame.new(0, 0, 0, 0.958940268, 0.264220119, 0.102983035, -0.101219259, -0.0203124229, 0.994654119, 0.264898062, -0.96424675, 0.00727321021)
  2942. Weld194.Part0 = Part65
  2943. Weld194.Part1 = Part65
  2944. Weld194.part1 = Part65
  2945. Weld195.Parent = Part65
  2946. Weld195.C0 = CFrame.new(0, 0, 0, 0.958952904, 0.26422438, 0.102952294, -0.101182945, -0.0203297809, 0.994661868, 0.264904946, -0.964249611, 0.00724460371)
  2947. Weld195.C1 = CFrame.new(0, 0, 0, 0.958952904, 0.26422438, 0.102952294, -0.101182945, -0.0203297809, 0.994661868, 0.264904946, -0.964249611, 0.00724460371)
  2948. Weld195.Part0 = Part65
  2949. Weld195.Part1 = Part65
  2950. Weld195.part1 = Part65
  2951. Weld196.Parent = Part65
  2952. Weld196.C0 = CFrame.new(0, 0, 0, 0.731291294, 0.345030695, 0.588359296, -0.652786851, 0.10402897, 0.75036478, 0.197691679, -0.932807326, 0.301308453)
  2953. Weld196.C1 = CFrame.new(0, 0, 0, 0.731291294, 0.345030695, 0.588359296, -0.652786851, 0.10402897, 0.75036478, 0.197691679, -0.932807326, 0.301308453)
  2954. Weld196.Part0 = Part65
  2955. Weld196.Part1 = Part65
  2956. Weld196.part1 = Part65
  2957. Weld197.Parent = Part65
  2958. Weld197.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2959. Weld197.C1 = CFrame.new(0.00072479248, -0.0581207275, 0.352798462, -0.731399655, -0.344931006, -0.588283062, 0.197331116, -0.93278867, 0.301593989, -0.652773976, 0.104492947, 0.750311732)
  2960. Weld197.Part0 = Part65
  2961. Weld197.Part1 = Part892
  2962. Weld197.part1 = Part892
  2963. Weld198.Parent = Part65
  2964. Weld198.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2965. Weld198.C1 = CFrame.new(-0.000686645508, 0.0215301514, -0.380340576, 0.731399655, 0.344931006, 0.588283062, -0.652597785, 0.103661455, 0.750580251, 0.197912887, -0.932881415, 0.300925076)
  2966. Weld198.Part0 = Part65
  2967. Weld198.Part1 = Part884
  2968. Weld198.part1 = Part884
  2969. Weld199.Parent = Part65
  2970. Weld199.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2971. Weld199.C1 = CFrame.new(0.000373840332, 0.415634155, -0.196121216, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  2972. Weld199.Part0 = Part65
  2973. Weld199.Part1 = Part880
  2974. Weld199.part1 = Part880
  2975. Weld200.Parent = Part65
  2976. Weld200.C0 = CFrame.new(0, 0, 0, 0.958942115, 0.26421836, 0.1029815, -0.101219438, -0.0203067418, 0.994654655, 0.264895946, -0.964247704, 0.00727737322)
  2977. Weld200.C1 = CFrame.new(0, 0, 0, 0.958942115, 0.26421836, 0.1029815, -0.101219438, -0.0203067418, 0.994654655, 0.264895946, -0.964247704, 0.00727737322)
  2978. Weld200.Part0 = Part65
  2979. Weld200.Part1 = Part65
  2980. Weld200.part1 = Part65
  2981. Weld201.Parent = Part65
  2982. Weld201.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2983. Weld201.C1 = CFrame.new(0.821342468, 0.644702911, -1.19493866, -0.555682182, 0.0793925822, -0.827596664, 0.500252724, 0.826997161, -0.256557167, 0.664050698, -0.556563854, -0.499265224)
  2984. Weld201.Part0 = Part65
  2985. Weld201.Part1 = Part888
  2986. Weld201.part1 = Part888
  2987. Weld202.Parent = Part65
  2988. Weld202.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2989. Weld202.C1 = CFrame.new(0.00593566895, -2.37873077, -0.883869171, -0.731399655, -0.344931006, -0.588283062, 0.652597785, -0.103661455, -0.750580251, 0.197912887, -0.932881415, 0.300925076)
  2990. Weld202.Part0 = Part65
  2991. Weld202.Part1 = Part878
  2992. Weld202.part1 = Part878
  2993. Weld203.Parent = Part65
  2994. Weld203.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  2995. Weld203.C1 = CFrame.new(-0.00023651123, 0.0221405029, 0.107040405, -0.731399655, -0.344931006, -0.588283062, -0.652597785, 0.103661455, 0.750580251, -0.197912887, 0.932881415, -0.300925076)
  2996. Weld203.Part0 = Part65
  2997. Weld203.Part1 = Part882
  2998. Weld203.part1 = Part882
  2999. Weld204.Parent = Part65
  3000. Weld204.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3001. Weld204.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3002. Weld204.Part0 = Part65
  3003. Weld204.Part1 = Part65
  3004. Weld204.part1 = Part65
  3005. Weld205.Parent = Part65
  3006. Weld205.C0 = CFrame.new(0, 0, 0, 0.959792435, 0.261885166, 0.101066336, -0.103428535, -0.00478535006, 0.99462527, 0.260961294, -0.965087116, 0.0224935841)
  3007. Weld205.C1 = CFrame.new(0, 0, 0, 0.959792435, 0.261885166, 0.101066336, -0.103428535, -0.00478535006, 0.99462527, 0.260961294, -0.965087116, 0.0224935841)
  3008. Weld205.Part0 = Part65
  3009. Weld205.Part1 = Part65
  3010. Weld205.part1 = Part65
  3011. Weld206.Parent = Part65
  3012. Weld206.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3013. Weld206.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3014. Weld206.Part0 = Part65
  3015. Weld206.Part1 = Part65
  3016. Weld206.part1 = Part65
  3017. Weld207.Parent = Part65
  3018. Weld207.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3019. Weld207.C1 = CFrame.new(4.57763672e-05, -0.0182533264, 0.232040405, 0.731399655, 0.344931006, 0.588283062, -0.197331116, 0.93278867, -0.301593989, -0.652773976, 0.104492947, 0.750311732)
  3020. Weld207.Part0 = Part65
  3021. Weld207.Part1 = Part890
  3022. Weld207.part1 = Part890
  3023. Weld208.Parent = Part65
  3024. Weld208.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3025. Weld208.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3026. Weld208.Part0 = Part65
  3027. Weld208.Part1 = Part65
  3028. Weld208.part1 = Part65
  3029. Weld209.Parent = Part65
  3030. Weld209.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3031. Weld209.C1 = CFrame.new(0.000122070313, 0.0307655334, -0.348297119, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  3032. Weld209.Part0 = Part65
  3033. Weld209.Part1 = Part886
  3034. Weld209.part1 = Part886
  3035. Weld210.Parent = Part65
  3036. Weld210.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3037. Weld210.C1 = CFrame.new(0.000396728516, 0.478347778, -0.111251831, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  3038. Weld210.Part0 = Part65
  3039. Weld210.Part1 = Part874
  3040. Weld210.part1 = Part874
  3041. Weld211.Parent = Part65
  3042. Weld211.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3043. Weld211.C1 = CFrame.new(-0.385368347, -1.59667206, -1.26446915, -0.731399655, -0.344931006, -0.588283062, 0.652597785, -0.103661455, -0.750580251, 0.197912887, -0.932881415, 0.300925076)
  3044. Weld211.Part0 = Part65
  3045. Weld211.Part1 = Part876
  3046. Weld211.part1 = Part876
  3047. Weld212.Parent = Part65
  3048. Weld212.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3049. Weld212.C1 = CFrame.new(-0.000175476074, 0.343864441, -0.348480225, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  3050. Weld212.Part0 = Part65
  3051. Weld212.Part1 = Part904
  3052. Weld212.part1 = Part904
  3053. Weld213.Parent = Part65
  3054. Weld213.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3055. Weld213.C1 = CFrame.new(0.000221252441, -0.227481842, 0.348144531, -0.731399655, -0.344931006, -0.588283062, 0.197331116, -0.93278867, 0.301593989, -0.652773976, 0.104492947, 0.750311732)
  3056. Weld213.Part0 = Part65
  3057. Weld213.Part1 = Part910
  3058. Weld213.part1 = Part910
  3059. Weld214.Parent = Part65
  3060. Weld214.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3061. Weld214.C1 = CFrame.new(-0.000610351563, 0.102302551, 0.352714539, 0.731399655, 0.344931006, 0.588283062, -0.197331116, 0.93278867, -0.301593989, -0.652773976, 0.104492947, 0.750311732)
  3062. Weld214.Part0 = Part65
  3063. Weld214.Part1 = Part896
  3064. Weld214.part1 = Part896
  3065. Weld215.Parent = Part65
  3066. Weld215.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3067. Weld215.C1 = CFrame.new(0.418769836, 0.0830154419, -1.44681358, -0.731400907, -0.344927728, -0.588283718, 0.466208816, 0.37667045, -0.800480366, 0.497696936, -0.859735072, -0.114688739)
  3068. Weld215.Part0 = Part65
  3069. Weld215.Part1 = Part898
  3070. Weld215.part1 = Part898
  3071. Weld216.Parent = Part65
  3072. Weld216.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3073. Weld216.C1 = CFrame.new(-0.00540924072, 2.73661041, -0.43680191, 0.731399655, 0.344931006, 0.588283062, -0.652597785, 0.103661455, 0.750580251, 0.197912887, -0.932881415, 0.300925076)
  3074. Weld216.Part0 = Part65
  3075. Weld216.Part1 = Part926
  3076. Weld216.part1 = Part926
  3077. Weld217.Parent = Part65
  3078. Weld217.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3079. Weld217.C1 = CFrame.new(0.00101470947, 0.746315002, -0.280975342, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  3080. Weld217.Part0 = Part65
  3081. Weld217.Part1 = Part918
  3082. Weld217.part1 = Part918
  3083. Weld218.Parent = Part65
  3084. Weld218.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3085. Weld218.C1 = CFrame.new(-2.73628235, 0.575317383, -0.695701599, 0.652801573, -0.103565559, -0.750416338, 0.731217861, 0.344959646, 0.588492215, 0.197912559, -0.932881474, 0.300925076)
  3086. Weld218.Part0 = Part65
  3087. Weld218.Part1 = Part902
  3088. Weld218.part1 = Part902
  3089. Weld219.Parent = Part65
  3090. Weld219.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3091. Weld219.C1 = CFrame.new(0.000480651855, 0.499500275, -0.727668762, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  3092. Weld219.Part0 = Part65
  3093. Weld219.Part1 = Part922
  3094. Weld219.part1 = Part922
  3095. Weld220.Parent = Part65
  3096. Weld220.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3097. Weld220.C1 = CFrame.new(0.485328674, 2.73657227, -0.570537567, 0.731399655, 0.344931006, 0.588283062, -0.652597785, 0.103661455, 0.750580251, 0.197912887, -0.932881415, 0.300925076)
  3098. Weld220.Part0 = Part65
  3099. Weld220.Part1 = Part900
  3100. Weld220.part1 = Part900
  3101. Weld221.Parent = Part65
  3102. Weld221.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3103. Weld221.C1 = CFrame.new(-0.000579833984, 0.298942566, 0.348091125, 0.731399655, 0.344931006, 0.588283062, -0.197331116, 0.93278867, -0.301593989, -0.652773976, 0.104492947, 0.750311732)
  3104. Weld221.Part0 = Part65
  3105. Weld221.Part1 = Part914
  3106. Weld221.part1 = Part914
  3107. Weld222.Parent = Part65
  3108. Weld222.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3109. Weld222.C1 = CFrame.new(-0.000267028809, 0.151626587, -0.366218567, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  3110. Weld222.Part0 = Part65
  3111. Weld222.Part1 = Part894
  3112. Weld222.part1 = Part894
  3113. Weld223.Parent = Part65
  3114. Weld223.C0 = CFrame.new(0, 0, 0, 4.54108886e-07, 5.96046448e-07, 1.00000727, -1.00000429, -1.68252382e-06, -4.24309064e-07, -1.71232227e-06, -1.0000087, -5.36441803e-07)
  3115. Weld223.C1 = CFrame.new(0, 0, 0, 4.54108886e-07, 5.96046448e-07, 1.00000727, -1.00000429, -1.68252382e-06, -4.24309064e-07, -1.71232227e-06, -1.0000087, -5.36441803e-07)
  3116. Weld223.Part0 = Part65
  3117. Weld223.Part1 = Part65
  3118. Weld223.part1 = Part65
  3119. Weld224.Parent = Part65
  3120. Weld224.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3121. Weld224.C1 = CFrame.new(-0.307220459, -1.91048431, -0.669532776, -0.731399655, -0.344931006, -0.588283062, 0.652597785, -0.103661455, -0.750580251, 0.197912887, -0.932881415, 0.300925076)
  3122. Weld224.Part0 = Part65
  3123. Weld224.Part1 = Part908
  3124. Weld224.part1 = Part908
  3125. Weld225.Parent = Part65
  3126. Weld225.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3127. Weld225.C1 = CFrame.new(0.000411987305, 0.191959381, -0.20072937, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  3128. Weld225.Part0 = Part65
  3129. Weld225.Part1 = Part906
  3130. Weld225.part1 = Part906
  3131. Weld226.Parent = Part65
  3132. Weld226.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3133. Weld226.C1 = CFrame.new(-0.000823974609, 0.343410492, 0.379234314, 0.731399655, 0.344931006, 0.588283062, -0.197331116, 0.93278867, -0.301593989, -0.652773976, 0.104492947, 0.750311732)
  3134. Weld226.Part0 = Part65
  3135. Weld226.Part1 = Part912
  3136. Weld226.part1 = Part912
  3137. Weld227.Parent = Part65
  3138. Weld227.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3139. Weld227.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3140. Weld227.Part0 = Part65
  3141. Weld227.Part1 = Part65
  3142. Weld227.part1 = Part65
  3143. Sound228.Name = "Reload"
  3144. Sound228.Parent = Part65
  3145. Sound228.Pitch = 0.93400001525879
  3146. Sound228.PlaybackSpeed = 0.93400001525879
  3147. Sound228.SoundId = "http://www.roblox.com/asset/?id=2697295"
  3148. Sound228.Volume = 0
  3149. Sound229.Name = "M2"
  3150. Sound229.Parent = Part65
  3151. Sound229.Pitch = 0.60000002384186
  3152. Sound229.PlayOnRemove = true
  3153. Sound229.PlaybackSpeed = 0.60000002384186
  3154. Sound229.SoundId = "http://www.roblox.com/asset/?id=2697295"
  3155. Sound229.Volume = 1
  3156. Sound230.Name = "M1"
  3157. Sound230.Parent = Part65
  3158. Sound230.Pitch = 0.5
  3159. Sound230.PlayOnRemove = true
  3160. Sound230.PlaybackSpeed = 0.5
  3161. Sound230.SoundId = "http://www.roblox.com/asset/?id=2697295"
  3162. Sound230.Volume = 1
  3163. Sound231.Name = "Engine"
  3164. Sound231.Parent = Part65
  3165. Sound231.Pitch = 0.69999998807907
  3166. Sound231.PlayOnRemove = true
  3167. Sound231.PlaybackSpeed = 0.69999998807907
  3168. Sound231.SoundId = "http://www.roblox.com/asset/?id=27041544"
  3169. Sound231.Volume = 1
  3170. Sound232.Name = "Ding"
  3171. Sound232.Parent = Part65
  3172. Sound232.SoundId = "http://www.roblox.com/asset/?id=2766581"
  3173. Sound233.Name = "Close"
  3174. Sound233.Parent = Part65
  3175. Sound233.Pitch = 0.69999998807907
  3176. Sound233.PlayOnRemove = true
  3177. Sound233.PlaybackSpeed = 0.69999998807907
  3178. Sound233.SoundId = "http://www.roblox.com/asset/?id=13510737"
  3179. Sound233.Volume = 1
  3180. Weld234.Parent = Part65
  3181. Weld234.C0 = CFrame.new(0, 0, 0, -0.313156426, 0.547003448, -0.776350617, 0.875547767, 0.482959569, -0.0128845274, 0.367898136, -0.683767021, -0.63016957)
  3182. Weld234.C1 = CFrame.new(0, 0, 0, -0.313156426, 0.547003448, -0.776350617, 0.875547767, 0.482959569, -0.0128845274, 0.367898136, -0.683767021, -0.63016957)
  3183. Weld234.Part0 = Part65
  3184. Weld234.Part1 = Part65
  3185. Weld234.part1 = Part65
  3186. Weld235.Parent = Part65
  3187. Weld235.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3188. Weld235.C1 = CFrame.new(0.000534057617, 0, -0.0445480347, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  3189. Weld235.Part0 = Part65
  3190. Weld235.Part1 = Part928
  3191. Weld235.part1 = Part928
  3192. Weld236.Parent = Part65
  3193. Weld236.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3194. Weld236.C1 = CFrame.new(-0.497306824, 2.73653412, -0.570789337, 0.731399655, 0.344931006, 0.588283062, -0.652597785, 0.103661455, 0.750580251, 0.197912887, -0.932881415, 0.300925076)
  3195. Weld236.Part0 = Part65
  3196. Weld236.Part1 = Part924
  3197. Weld236.part1 = Part924
  3198. Weld237.Parent = Part65
  3199. Weld237.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3200. Weld237.C1 = CFrame.new(0.000923156738, -0.549106598, 0.798606873, -0.731399655, -0.344931006, -0.588283062, 0.197331116, -0.93278867, 0.301593989, -0.652773976, 0.104492947, 0.750311732)
  3201. Weld237.Part0 = Part65
  3202. Weld237.Part1 = Part920
  3203. Weld237.part1 = Part920
  3204. Weld238.Parent = Part65
  3205. Weld238.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  3206. Weld238.C1 = CFrame.new(-0.000854492188, 0.449882507, -0.626052856, 0.731399655, 0.344931006, 0.588283062, -0.652597785, 0.103661455, 0.750580251, 0.197912887, -0.932881415, 0.300925076)
  3207. Weld238.Part0 = Part65
  3208. Weld238.Part1 = Part916
  3209. Weld238.part1 = Part916
  3210. Weld239.Parent = Part65
  3211. Weld239.C0 = CFrame.new(0, 0, 0, 0.965930104, -2.33202809e-06, -0.258803159, 0.258803159, 8.10184338e-06, 0.965930104, -1.55793316e-07, -1, 8.4293506e-06)
  3212. Weld239.C1 = CFrame.new(0, 0, 0, 0.965930104, -2.33202809e-06, -0.258803159, 0.258803159, 8.10184338e-06, 0.965930104, -1.55793316e-07, -1, 8.4293506e-06)
  3213. Weld239.Part0 = Part65
  3214. Weld239.Part1 = Part65
  3215. Weld239.part1 = Part65
  3216. Weld240.Parent = Part65
  3217. Weld240.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  3218. Weld240.C1 = CFrame.new(-0.167030334, -1.46183014, -1.69353437, -0.732056558, 0.167768359, -0.660263062, 0.652952313, -0.103603944, -0.750279784, -0.194282278, -0.980363727, -0.033697933)
  3219. Weld240.Part0 = Part65
  3220. Weld240.Part1 = Part669
  3221. Weld240.part1 = Part669
  3222. Weld241.Parent = Part65
  3223. Weld241.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  3224. Weld241.C1 = CFrame.new(-0.238998413, -1.46175385, -1.63597918, -0.732056558, 0.167768359, -0.660263062, 0.652952313, -0.103603944, -0.750279784, -0.194282278, -0.980363727, -0.033697933)
  3225. Weld241.Part0 = Part65
  3226. Weld241.Part1 = Part671
  3227. Weld241.part1 = Part671
  3228. Weld242.Parent = Part65
  3229. Weld242.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  3230. Weld242.C1 = CFrame.new(0.324920654, -1.46125793, -1.92182446, -0.732056558, 0.167768359, -0.660263062, 0.652952313, -0.103603944, -0.750279784, -0.194282278, -0.980363727, -0.033697933)
  3231. Weld242.Part0 = Part65
  3232. Weld242.Part1 = Part673
  3233. Weld242.part1 = Part673
  3234. Weld243.Parent = Part65
  3235. Weld243.C0 = CFrame.new(0, 0, 0, 0.965930641, -1.7339396e-06, -0.258801311, 0.258801311, 4.527702e-06, 0.965930581, -5.03090121e-07, -1, 4.82219184e-06)
  3236. Weld243.C1 = CFrame.new(0, 0, 0, 0.965930641, -1.7339396e-06, -0.258801311, 0.258801311, 4.527702e-06, 0.965930581, -5.03090121e-07, -1, 4.82219184e-06)
  3237. Weld243.Part0 = Part65
  3238. Weld243.Part1 = Part65
  3239. Weld243.part1 = Part65
  3240. Weld244.Parent = Part65
  3241. Weld244.C0 = CFrame.new(0, 0, 0, 0.965935946, 2.05956667e-07, -0.258806527, 0.258805096, 1.31312754e-06, 0.965933979, 1.91497975e-07, -1.0000087, 4.82227279e-06)
  3242. Weld244.C1 = CFrame.new(0, 0, 0, 0.965935946, 2.05956667e-07, -0.258806527, 0.258805096, 1.31312754e-06, 0.965933979, 1.91497975e-07, -1.0000087, 4.82227279e-06)
  3243. Weld244.Part0 = Part65
  3244. Weld244.Part1 = Part65
  3245. Weld244.part1 = Part65
  3246. Weld245.Parent = Part65
  3247. Weld245.C0 = CFrame.new(0, 0, 0, -0.313156426, 0.547003448, -0.776350617, 0.875547767, 0.482959569, -0.0128845274, 0.367898136, -0.683767021, -0.63016957)
  3248. Weld245.C1 = CFrame.new(0, 0, 0, -0.313156426, 0.547003448, -0.776350617, 0.875547767, 0.482959569, -0.0128845274, 0.367898136, -0.683767021, -0.63016957)
  3249. Weld245.Part0 = Part65
  3250. Weld245.Part1 = Part65
  3251. Weld245.part1 = Part65
  3252. Weld246.Parent = Part65
  3253. Weld246.C0 = CFrame.new(0, 0, 0, -0.313156426, 0.547003448, -0.776350617, 0.875547767, 0.482959569, -0.0128845274, 0.367898136, -0.683767021, -0.63016957)
  3254. Weld246.C1 = CFrame.new(0, 0, 0, -0.313156426, 0.547003448, -0.776350617, 0.875547767, 0.482959569, -0.0128845274, 0.367898136, -0.683767021, -0.63016957)
  3255. Weld246.Part0 = Part65
  3256. Weld246.Part1 = Part65
  3257. Weld246.part1 = Part65
  3258. Weld247.Parent = Part65
  3259. Weld247.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3260. Weld247.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3261. Weld247.Part0 = Part65
  3262. Weld247.Part1 = Part65
  3263. Weld247.part1 = Part65
  3264. Weld248.Parent = Part65
  3265. Weld248.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3266. Weld248.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3267. Weld248.Part0 = Part65
  3268. Weld248.Part1 = Part65
  3269. Weld248.part1 = Part65
  3270. Weld249.Parent = Part65
  3271. Weld249.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3272. Weld249.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3273. Weld249.Part0 = Part65
  3274. Weld249.Part1 = Part65
  3275. Weld249.part1 = Part65
  3276. Weld250.Parent = Part65
  3277. Weld250.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3278. Weld250.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3279. Weld250.Part0 = Part65
  3280. Weld250.Part1 = Part65
  3281. Weld250.part1 = Part65
  3282. Weld251.Parent = Part65
  3283. Weld251.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3284. Weld251.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3285. Weld251.Part0 = Part65
  3286. Weld251.Part1 = Part65
  3287. Weld251.part1 = Part65
  3288. Weld252.Parent = Part65
  3289. Weld252.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3290. Weld252.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3291. Weld252.Part0 = Part65
  3292. Weld252.Part1 = Part65
  3293. Weld252.part1 = Part65
  3294. Weld253.Parent = Part65
  3295. Weld253.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3296. Weld253.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3297. Weld253.Part0 = Part65
  3298. Weld253.Part1 = Part65
  3299. Weld253.part1 = Part65
  3300. Weld254.Parent = Part65
  3301. Weld254.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3302. Weld254.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3303. Weld254.Part0 = Part65
  3304. Weld254.Part1 = Part65
  3305. Weld254.part1 = Part65
  3306. Weld255.Parent = Part65
  3307. Weld255.C0 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3308. Weld255.C1 = CFrame.new(0, 0, 0, 0.877034724, 0.264274895, 0.401209503, -0.410918623, -0.0200255346, 0.911451101, 0.248907968, -0.964239776, 0.0910324305)
  3309. Weld255.Part0 = Part65
  3310. Weld255.Part1 = Part65
  3311. Weld255.part1 = Part65
  3312. Weld256.Parent = Part65
  3313. Weld256.C0 = CFrame.new(0, 0, 0, 0.0144980373, 0.0590405874, 0.998150229, -0.953641653, -0.299285263, 0.0315543301, 0.300594628, -0.952335298, 0.0519644953)
  3314. Weld256.C1 = CFrame.new(0, 0, 0, 0.0144980373, 0.0590405874, 0.998150229, -0.953641653, -0.299285263, 0.0315543301, 0.300594628, -0.952335298, 0.0519644953)
  3315. Weld256.Part0 = Part65
  3316. Weld256.Part1 = Part65
  3317. Weld256.part1 = Part65
  3318. Weld257.Parent = Part65
  3319. Weld257.C0 = CFrame.new(0, 0, 0, 0.0144980373, 0.0590405874, 0.998150229, -0.953641653, -0.299285263, 0.0315543301, 0.300594628, -0.952335298, 0.0519644953)
  3320. Weld257.C1 = CFrame.new(0, 0, 0, 0.0144980373, 0.0590405874, 0.998150229, -0.953641653, -0.299285263, 0.0315543301, 0.300594628, -0.952335298, 0.0519644953)
  3321. Weld257.Part0 = Part65
  3322. Weld257.Part1 = Part65
  3323. Weld257.part1 = Part65
  3324. Weld258.Parent = Part65
  3325. Weld258.C0 = CFrame.new(0, 0, 0, 0.0144980373, 0.0590405874, 0.998150229, -0.953641653, -0.299285263, 0.0315543301, 0.300594628, -0.952335298, 0.0519644953)
  3326. Weld258.C1 = CFrame.new(0, 0, 0, 0.0144980373, 0.0590405874, 0.998150229, -0.953641653, -0.299285263, 0.0315543301, 0.300594628, -0.952335298, 0.0519644953)
  3327. Weld258.Part0 = Part65
  3328. Weld258.Part1 = Part65
  3329. Weld258.part1 = Part65
  3330. Weld259.Parent = Part65
  3331. Weld259.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  3332. Weld259.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  3333. Weld259.Part0 = Part65
  3334. Weld259.Part1 = Part65
  3335. Weld259.part1 = Part65
  3336. Weld260.Parent = Part65
  3337. Weld260.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3338. Weld260.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3339. Weld260.Part0 = Part65
  3340. Weld260.Part1 = Part65
  3341. Weld260.part1 = Part65
  3342. Weld261.Parent = Part65
  3343. Weld261.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3344. Weld261.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3345. Weld261.Part0 = Part65
  3346. Weld261.Part1 = Part65
  3347. Weld261.part1 = Part65
  3348. Weld262.Parent = Part65
  3349. Weld262.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3350. Weld262.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3351. Weld262.Part0 = Part65
  3352. Weld262.Part1 = Part65
  3353. Weld262.part1 = Part65
  3354. Weld263.Parent = Part65
  3355. Weld263.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3356. Weld263.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3357. Weld263.Part0 = Part65
  3358. Weld263.Part1 = Part65
  3359. Weld263.part1 = Part65
  3360. Weld264.Parent = Part65
  3361. Weld264.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3362. Weld264.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3363. Weld264.Part0 = Part65
  3364. Weld264.Part1 = Part65
  3365. Weld264.part1 = Part65
  3366. Weld265.Parent = Part65
  3367. Weld265.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3368. Weld265.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3369. Weld265.Part0 = Part65
  3370. Weld265.Part1 = Part65
  3371. Weld265.part1 = Part65
  3372. Weld266.Parent = Part65
  3373. Weld266.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3374. Weld266.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3375. Weld266.Part0 = Part65
  3376. Weld266.Part1 = Part65
  3377. Weld266.part1 = Part65
  3378. Weld267.Parent = Part65
  3379. Weld267.C0 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3380. Weld267.C1 = CFrame.new(0, 0, 0, 0.726489365, 0.264219284, 0.634350002, -0.653383851, -0.0203041583, 0.756749094, 0.212826863, -0.96424973, 0.157886937)
  3381. Weld267.Part0 = Part65
  3382. Weld267.Part1 = Part65
  3383. Weld267.part1 = Part65
  3384. Weld268.Parent = Part65
  3385. Weld268.C0 = CFrame.new(0, 0, 0, 0.224031344, 0.61423552, -0.756653607, 0.162418753, 0.741999149, 0.650428653, 0.96095258, -0.268611133, 0.0664677322)
  3386. Weld268.C1 = CFrame.new(0, 0, 0, 0.224031344, 0.61423552, -0.756653607, 0.162418753, 0.741999149, 0.650428653, 0.96095258, -0.268611133, 0.0664677322)
  3387. Weld268.Part0 = Part65
  3388. Weld268.Part1 = Part65
  3389. Weld268.part1 = Part65
  3390. Weld269.Parent = Part65
  3391. Weld269.C0 = CFrame.new(0, 0, 0, 0.224031344, 0.61423552, -0.756653607, 0.162418753, 0.741999149, 0.650428653, 0.96095258, -0.268611133, 0.0664677322)
  3392. Weld269.C1 = CFrame.new(0, 0, 0, 0.224031344, 0.61423552, -0.756653607, 0.162418753, 0.741999149, 0.650428653, 0.96095258, -0.268611133, 0.0664677322)
  3393. Weld269.Part0 = Part65
  3394. Weld269.Part1 = Part65
  3395. Weld269.part1 = Part65
  3396. Weld270.Parent = Part65
  3397. Weld270.C0 = CFrame.new(0, 0, 0, 0.224031344, 0.61423552, -0.756653607, 0.162418753, 0.741999149, 0.650428653, 0.96095258, -0.268611133, 0.0664677322)
  3398. Weld270.C1 = CFrame.new(0, 0, 0, 0.224031344, 0.61423552, -0.756653607, 0.162418753, 0.741999149, 0.650428653, 0.96095258, -0.268611133, 0.0664677322)
  3399. Weld270.Part0 = Part65
  3400. Weld270.Part1 = Part65
  3401. Weld270.part1 = Part65
  3402. Weld271.Parent = Part65
  3403. Weld271.C0 = CFrame.new(0, 0, 0, 0.370545208, 0.440069318, -0.817945719, 0.81614995, 0.266123235, 0.512910783, 0.443390608, -0.8576231, -0.26055187)
  3404. Weld271.C1 = CFrame.new(0, 0, 0, 0.370545208, 0.440069318, -0.817945719, 0.81614995, 0.266123235, 0.512910783, 0.443390608, -0.8576231, -0.26055187)
  3405. Weld271.Part0 = Part65
  3406. Weld271.Part1 = Part65
  3407. Weld271.part1 = Part65
  3408. Weld272.Parent = Part65
  3409. Weld272.C0 = CFrame.new(0, 0, 0, -0.0683174878, 0.263769776, -0.96216327, 0.996975183, -0.0177728534, -0.0756615624, -0.0370576158, -0.964421928, -0.261757731)
  3410. Weld272.C1 = CFrame.new(0, 0, 0, -0.0683174878, 0.263769776, -0.96216327, 0.996975183, -0.0177728534, -0.0756615624, -0.0370576158, -0.964421928, -0.261757731)
  3411. Weld272.Part0 = Part65
  3412. Weld272.Part1 = Part65
  3413. Weld272.part1 = Part65
  3414. Weld273.Parent = Part65
  3415. Weld273.C0 = CFrame.new(0, 0, 0, -0.0683131069, 0.263772547, -0.96216172, 0.996969163, -0.0177791212, -0.0756621584, -0.0370618887, -0.96442163, -0.261758357)
  3416. Weld273.C1 = CFrame.new(0, 0, 0, -0.0683131069, 0.263772547, -0.96216172, 0.996969163, -0.0177791212, -0.0756621584, -0.0370618887, -0.96442163, -0.261758357)
  3417. Weld273.Part0 = Part65
  3418. Weld273.Part1 = Part65
  3419. Weld273.part1 = Part65
  3420. Weld274.Parent = Part65
  3421. Weld274.C0 = CFrame.new(0, 0, 0, -0.0683095083, 0.263774663, -0.962161422, 0.996969283, -0.0177821834, -0.0756593496, -0.0370642431, -0.964420974, -0.261760354)
  3422. Weld274.C1 = CFrame.new(0, 0, 0, -0.0683095083, 0.263774663, -0.962161422, 0.996969283, -0.0177821834, -0.0756593496, -0.0370642431, -0.964420974, -0.261760354)
  3423. Weld274.Part0 = Part65
  3424. Weld274.Part1 = Part65
  3425. Weld274.part1 = Part65
  3426. Weld275.Parent = Part65
  3427. Weld275.C0 = CFrame.new(0, 0, 0, -0.0683059096, 0.263776809, -0.962161124, 0.996969402, -0.0177852511, -0.0756565183, -0.0370666124, -0.964420319, -0.261762351)
  3428. Weld275.C1 = CFrame.new(0, 0, 0, -0.0683059096, 0.263776809, -0.962161124, 0.996969402, -0.0177852511, -0.0756565183, -0.0370666124, -0.964420319, -0.261762351)
  3429. Weld275.Part0 = Part65
  3430. Weld275.Part1 = Part65
  3431. Weld275.part1 = Part65
  3432. Weld276.Parent = Part65
  3433. Weld276.C0 = CFrame.new(0, 0, 0, -0.068302311, 0.263778895, -0.962160766, 0.99696964, -0.0177883152, -0.0756537169, -0.0370689705, -0.964419723, -0.261764377)
  3434. Weld276.C1 = CFrame.new(0, 0, 0, -0.068302311, 0.263778895, -0.962160766, 0.99696964, -0.0177883152, -0.0756537169, -0.0370689705, -0.964419723, -0.261764377)
  3435. Weld276.Part0 = Part65
  3436. Weld276.Part1 = Part65
  3437. Weld276.part1 = Part65
  3438. Weld277.Parent = Part65
  3439. Weld277.C0 = CFrame.new(0, 0, 0, -0.0682987049, 0.263781041, -0.962160528, 0.996969759, -0.0177913792, -0.0756509006, -0.0370713323, -0.964419067, -0.261766374)
  3440. Weld277.C1 = CFrame.new(0, 0, 0, -0.0682987049, 0.263781041, -0.962160528, 0.996969759, -0.0177913792, -0.0756509006, -0.0370713323, -0.964419067, -0.261766374)
  3441. Weld277.Part0 = Part65
  3442. Weld277.Part1 = Part65
  3443. Weld277.part1 = Part65
  3444. Weld278.Parent = Part65
  3445. Weld278.C0 = CFrame.new(0, 0, 0, -0.0682950988, 0.263783097, -0.96216011, 0.996969879, -0.0177944433, -0.0756480768, -0.0370736904, -0.964418411, -0.261768371)
  3446. Weld278.C1 = CFrame.new(0, 0, 0, -0.0682950988, 0.263783097, -0.96216011, 0.996969879, -0.0177944433, -0.0756480768, -0.0370736904, -0.964418411, -0.261768371)
  3447. Weld278.Part0 = Part65
  3448. Weld278.Part1 = Part65
  3449. Weld278.part1 = Part65
  3450. Weld279.Parent = Part65
  3451. Weld279.C0 = CFrame.new(0, 0, 0, -0.0682914928, 0.263785243, -0.962159812, 0.996970057, -0.0177975092, -0.0756452531, -0.0370760486, -0.964417815, -0.261770368)
  3452. Weld279.C1 = CFrame.new(0, 0, 0, -0.0682914928, 0.263785243, -0.962159812, 0.996970057, -0.0177975092, -0.0756452531, -0.0370760486, -0.964417815, -0.261770368)
  3453. Weld279.Part0 = Part65
  3454. Weld279.Part1 = Part65
  3455. Weld279.part1 = Part65
  3456. Weld280.Parent = Part65
  3457. Weld280.C0 = CFrame.new(0, 0, 0, -0.0682878941, 0.263787359, -0.962159455, 0.996970177, -0.0178005733, -0.0756424367, -0.0370784104, -0.96441716, -0.261772394)
  3458. Weld280.C1 = CFrame.new(0, 0, 0, -0.0682878941, 0.263787359, -0.962159455, 0.996970177, -0.0178005733, -0.0756424367, -0.0370784104, -0.96441716, -0.261772394)
  3459. Weld280.Part0 = Part65
  3460. Weld280.Part1 = Part65
  3461. Weld280.part1 = Part65
  3462. Weld281.Parent = Part65
  3463. Weld281.C0 = CFrame.new(0, 0, 0, -0.0690742582, 0.26407516, -0.962025344, 0.997425556, -0.000331307092, -0.0717068017, -0.0192546379, -0.964501977, -0.263372451)
  3464. Weld281.C1 = CFrame.new(0, 0, 0, -0.0690742582, 0.26407516, -0.962025344, 0.997425556, -0.000331307092, -0.0717068017, -0.0192546379, -0.964501977, -0.263372451)
  3465. Weld281.Part0 = Part65
  3466. Weld281.Part1 = Part65
  3467. Weld281.part1 = Part65
  3468. Weld282.Parent = Part65
  3469. Weld282.C0 = CFrame.new(0, 0, 0, -0.0690743998, 0.26407519, -0.962025106, 0.997425437, -0.000331423798, -0.0717066601, -0.0192545503, -0.964501798, -0.263372302)
  3470. Weld282.C1 = CFrame.new(0, 0, 0, -0.0690743998, 0.26407519, -0.962025106, 0.997425437, -0.000331423798, -0.0717066601, -0.0192545503, -0.964501798, -0.263372302)
  3471. Weld282.Part0 = Part65
  3472. Weld282.Part1 = Part65
  3473. Weld282.part1 = Part65
  3474. Weld283.Parent = Part65
  3475. Weld283.C0 = CFrame.new(0, 0, 0, -0.0690745488, 0.26407522, -0.962024927, 0.997425318, -0.000331539719, -0.071706526, -0.0192544647, -0.964501619, -0.263372213)
  3476. Weld283.C1 = CFrame.new(0, 0, 0, -0.0690745488, 0.26407522, -0.962024927, 0.997425318, -0.000331539719, -0.071706526, -0.0192544647, -0.964501619, -0.263372213)
  3477. Weld283.Part0 = Part65
  3478. Weld283.Part1 = Part65
  3479. Weld283.part1 = Part65
  3480. Weld284.Parent = Part65
  3481. Weld284.C0 = CFrame.new(0, 0, 0, 0.370545208, 0.440069318, -0.817945719, 0.81614995, 0.266123235, 0.512910783, 0.443390608, -0.8576231, -0.26055187)
  3482. Weld284.C1 = CFrame.new(0, 0, 0, 0.370545208, 0.440069318, -0.817945719, 0.81614995, 0.266123235, 0.512910783, 0.443390608, -0.8576231, -0.26055187)
  3483. Weld284.Part0 = Part65
  3484. Weld284.Part1 = Part65
  3485. Weld284.part1 = Part65
  3486. Weld285.Parent = Part65
  3487. Weld285.C0 = CFrame.new(0, 0, 0, 0.370545208, 0.440069318, -0.817945719, 0.81614995, 0.266123235, 0.512910783, 0.443390608, -0.8576231, -0.26055187)
  3488. Weld285.C1 = CFrame.new(0, 0, 0, 0.370545208, 0.440069318, -0.817945719, 0.81614995, 0.266123235, 0.512910783, 0.443390608, -0.8576231, -0.26055187)
  3489. Weld285.Part0 = Part65
  3490. Weld285.Part1 = Part65
  3491. Weld285.part1 = Part65
  3492. Weld286.Parent = Part65
  3493. Weld286.C0 = CFrame.new(0, 0, 0, 0.370543212, 0.44006899, -0.817945004, 0.816147447, 0.266122103, 0.512910783, 0.443389475, -0.857622027, -0.260550886)
  3494. Weld286.C1 = CFrame.new(0, 0, 0, 0.370543212, 0.44006899, -0.817945004, 0.816147447, 0.266122103, 0.512910783, 0.443389475, -0.857622027, -0.260550886)
  3495. Weld286.Part0 = Part65
  3496. Weld286.Part1 = Part65
  3497. Weld286.part1 = Part65
  3498. Weld287.Parent = Part65
  3499. Weld287.C0 = CFrame.new(0, 0, 0, 0.370541126, 0.440068662, -0.817944288, 0.816144764, 0.26612094, 0.512910664, 0.443388224, -0.857620895, -0.260549873)
  3500. Weld287.C1 = CFrame.new(0, 0, 0, 0.370541126, 0.440068662, -0.817944288, 0.816144764, 0.26612094, 0.512910664, 0.443388224, -0.857620895, -0.260549873)
  3501. Weld287.Part0 = Part65
  3502. Weld287.Part1 = Part65
  3503. Weld287.part1 = Part65
  3504. Weld288.Parent = Part65
  3505. Weld288.C0 = CFrame.new(0, 0, 0, 0.370543003, 0.440071434, -0.817945719, 0.816150665, 0.266123682, 0.51290983, 0.443391651, -0.857621908, -0.260554314)
  3506. Weld288.C1 = CFrame.new(0, 0, 0, 0.370543003, 0.440071434, -0.817945719, 0.816150665, 0.266123682, 0.51290983, 0.443391651, -0.857621908, -0.260554314)
  3507. Weld288.Part0 = Part65
  3508. Weld288.Part1 = Part65
  3509. Weld288.part1 = Part65
  3510. Weld289.Parent = Part65
  3511. Weld289.C0 = CFrame.new(0, 0, 0, -0.440055132, 0.483262867, 0.756841242, 0.562154949, 0.805502534, -0.187476993, -0.700238168, 0.342961788, -0.626134098)
  3512. Weld289.C1 = CFrame.new(0, 0, 0, -0.440055132, 0.483262867, 0.756841242, 0.562154949, 0.805502534, -0.187476993, -0.700238168, 0.342961788, -0.626134098)
  3513. Weld289.Part0 = Part65
  3514. Weld289.Part1 = Part65
  3515. Weld289.part1 = Part65
  3516. Weld290.Parent = Part65
  3517. Weld290.C0 = CFrame.new(0, 0, 0, -0.546303213, 0.822231293, -0.159618348, -0.331402868, -0.0371875279, 0.942746758, 0.76922971, 0.567923307, 0.29280746)
  3518. Weld290.C1 = CFrame.new(0, 0, 0, -0.546303213, 0.822231293, -0.159618348, -0.331402868, -0.0371875279, 0.942746758, 0.76922971, 0.567923307, 0.29280746)
  3519. Weld290.Part0 = Part65
  3520. Weld290.Part1 = Part65
  3521. Weld290.part1 = Part65
  3522. Weld291.Parent = Part65
  3523. Weld291.C0 = CFrame.new(0, 0, 0, -0.546303213, 0.822231233, -0.159618378, -0.331402779, -0.0371874981, 0.942746699, 0.769229591, 0.567923129, 0.29280749)
  3524. Weld291.C1 = CFrame.new(0, 0, 0, -0.546303213, 0.822231233, -0.159618378, -0.331402779, -0.0371874981, 0.942746699, 0.769229591, 0.567923129, 0.29280749)
  3525. Weld291.Part0 = Part65
  3526. Weld291.Part1 = Part65
  3527. Weld291.part1 = Part65
  3528. Weld292.Parent = Part65
  3529. Weld292.C0 = CFrame.new(0, 0, 0, -0.546306133, 0.822235525, -0.159619257, -0.331411123, -0.0371795371, 0.942753494, 0.769230902, 0.567931592, 0.292809516)
  3530. Weld292.C1 = CFrame.new(0, 0, 0, -0.546306133, 0.822235525, -0.159619257, -0.331411123, -0.0371795371, 0.942753494, 0.769230902, 0.567931592, 0.292809516)
  3531. Weld292.Part0 = Part65
  3532. Weld292.Part1 = Part65
  3533. Weld292.part1 = Part65
  3534. Weld293.Parent = Part65
  3535. Weld293.C0 = CFrame.new(0, 0, 0, -0.440055132, 0.483262867, 0.756841242, 0.562154949, 0.805502534, -0.187476993, -0.700238168, 0.342961788, -0.626134098)
  3536. Weld293.C1 = CFrame.new(0, 0, 0, -0.440055132, 0.483262867, 0.756841242, 0.562154949, 0.805502534, -0.187476993, -0.700238168, 0.342961788, -0.626134098)
  3537. Weld293.Part0 = Part65
  3538. Weld293.Part1 = Part65
  3539. Weld293.part1 = Part65
  3540. Weld294.Parent = Part65
  3541. Weld294.C0 = CFrame.new(0, 0, 0, -0.440055132, 0.483262867, 0.756841242, 0.562154949, 0.805502534, -0.187476993, -0.700238168, 0.342961788, -0.626134098)
  3542. Weld294.C1 = CFrame.new(0, 0, 0, -0.440055132, 0.483262867, 0.756841242, 0.562154949, 0.805502534, -0.187476993, -0.700238168, 0.342961788, -0.626134098)
  3543. Weld294.Part0 = Part65
  3544. Weld294.Part1 = Part65
  3545. Weld294.part1 = Part65
  3546. Weld295.Parent = Part65
  3547. Weld295.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  3548. Weld295.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  3549. Weld295.Part0 = Part65
  3550. Weld295.Part1 = Part65
  3551. Weld295.part1 = Part65
  3552. Weld296.Parent = Part65
  3553. Weld296.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3554. Weld296.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3555. Weld296.Part0 = Part65
  3556. Weld296.Part1 = Part65
  3557. Weld296.part1 = Part65
  3558. Weld297.Parent = Part65
  3559. Weld297.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3560. Weld297.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3561. Weld297.Part0 = Part65
  3562. Weld297.Part1 = Part65
  3563. Weld297.part1 = Part65
  3564. Weld298.Parent = Part65
  3565. Weld298.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3566. Weld298.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3567. Weld298.Part0 = Part65
  3568. Weld298.Part1 = Part65
  3569. Weld298.part1 = Part65
  3570. Weld299.Parent = Part65
  3571. Weld299.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3572. Weld299.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3573. Weld299.Part0 = Part65
  3574. Weld299.Part1 = Part65
  3575. Weld299.part1 = Part65
  3576. Weld300.Parent = Part65
  3577. Weld300.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3578. Weld300.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3579. Weld300.Part0 = Part65
  3580. Weld300.Part1 = Part65
  3581. Weld300.part1 = Part65
  3582. Weld301.Parent = Part65
  3583. Weld301.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3584. Weld301.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3585. Weld301.Part0 = Part65
  3586. Weld301.Part1 = Part65
  3587. Weld301.part1 = Part65
  3588. Weld302.Parent = Part65
  3589. Weld302.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3590. Weld302.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3591. Weld302.Part0 = Part65
  3592. Weld302.Part1 = Part65
  3593. Weld302.part1 = Part65
  3594. Weld303.Parent = Part65
  3595. Weld303.C0 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3596. Weld303.C1 = CFrame.new(0, 0, 0, 0.726315439, 0.263339311, -0.634917617, 0.66227746, -0.0208432637, 0.748969436, 0.183998883, -0.964479625, -0.189541966)
  3597. Weld303.Part0 = Part65
  3598. Weld303.Part1 = Part65
  3599. Weld303.part1 = Part65
  3600. Weld304.Parent = Part65
  3601. Weld304.C0 = CFrame.new(0, 0, 0, -0.849245667, 0.470315158, -0.239970118, 0.295200765, 0.799756169, 0.522730112, 0.437765419, 0.37308687, -0.818026662)
  3602. Weld304.C1 = CFrame.new(0, 0, 0, -0.849245667, 0.470315158, -0.239970118, 0.295200765, 0.799756169, 0.522730112, 0.437765419, 0.37308687, -0.818026662)
  3603. Weld304.Part0 = Part65
  3604. Weld304.Part1 = Part65
  3605. Weld304.part1 = Part65
  3606. Weld305.Parent = Part65
  3607. Weld305.C0 = CFrame.new(0, 0, 0, -0.849245667, 0.470315158, -0.239970118, 0.295200765, 0.799756169, 0.522730112, 0.437765419, 0.37308687, -0.818026662)
  3608. Weld305.C1 = CFrame.new(0, 0, 0, -0.849245667, 0.470315158, -0.239970118, 0.295200765, 0.799756169, 0.522730112, 0.437765419, 0.37308687, -0.818026662)
  3609. Weld305.Part0 = Part65
  3610. Weld305.Part1 = Part65
  3611. Weld305.part1 = Part65
  3612. Weld306.Parent = Part65
  3613. Weld306.C0 = CFrame.new(0, 0, 0, -0.849245667, 0.470315158, -0.239970118, 0.295200765, 0.799756169, 0.522730112, 0.437765419, 0.37308687, -0.818026662)
  3614. Weld306.C1 = CFrame.new(0, 0, 0, -0.849245667, 0.470315158, -0.239970118, 0.295200765, 0.799756169, 0.522730112, 0.437765419, 0.37308687, -0.818026662)
  3615. Weld306.Part0 = Part65
  3616. Weld306.Part1 = Part65
  3617. Weld306.part1 = Part65
  3618. Weld307.Parent = Part65
  3619. Weld307.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  3620. Weld307.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  3621. Weld307.Part0 = Part65
  3622. Weld307.Part1 = Part65
  3623. Weld307.part1 = Part65
  3624. Weld308.Parent = Part65
  3625. Weld308.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3626. Weld308.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3627. Weld308.Part0 = Part65
  3628. Weld308.Part1 = Part65
  3629. Weld308.part1 = Part65
  3630. Weld309.Parent = Part65
  3631. Weld309.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3632. Weld309.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3633. Weld309.Part0 = Part65
  3634. Weld309.Part1 = Part65
  3635. Weld309.part1 = Part65
  3636. Weld310.Parent = Part65
  3637. Weld310.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3638. Weld310.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3639. Weld310.Part0 = Part65
  3640. Weld310.Part1 = Part65
  3641. Weld310.part1 = Part65
  3642. Weld311.Parent = Part65
  3643. Weld311.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3644. Weld311.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3645. Weld311.Part0 = Part65
  3646. Weld311.Part1 = Part65
  3647. Weld311.part1 = Part65
  3648. Weld312.Parent = Part65
  3649. Weld312.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3650. Weld312.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3651. Weld312.Part0 = Part65
  3652. Weld312.Part1 = Part65
  3653. Weld312.part1 = Part65
  3654. Weld313.Parent = Part65
  3655. Weld313.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3656. Weld313.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3657. Weld313.Part0 = Part65
  3658. Weld313.Part1 = Part65
  3659. Weld313.part1 = Part65
  3660. Weld314.Parent = Part65
  3661. Weld314.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3662. Weld314.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3663. Weld314.Part0 = Part65
  3664. Weld314.Part1 = Part65
  3665. Weld314.part1 = Part65
  3666. Weld315.Parent = Part65
  3667. Weld315.C0 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3668. Weld315.C1 = CFrame.new(0, 0, 0, -0.379991174, -0.726179123, -0.572956562, 0.617998481, 0.26157859, -0.741390228, 0.688254774, -0.635804534, 0.349379599)
  3669. Weld315.Part0 = Part65
  3670. Weld315.Part1 = Part65
  3671. Weld315.part1 = Part65
  3672. Weld316.Parent = Part65
  3673. Weld316.C0 = CFrame.new(0, 0, 0, -0.393806547, -0.068392545, -0.916645288, -0.887093484, 0.289513648, 0.359509438, 0.240793467, 0.954727232, -0.174682975)
  3674. Weld316.C1 = CFrame.new(0, 0, 0, -0.393806547, -0.068392545, -0.916645288, -0.887093484, 0.289513648, 0.359509438, 0.240793467, 0.954727232, -0.174682975)
  3675. Weld316.Part0 = Part65
  3676. Weld316.Part1 = Part65
  3677. Weld316.part1 = Part65
  3678. Weld317.Parent = Part65
  3679. Weld317.C0 = CFrame.new(0, 0, 0, -0.393806547, -0.068392545, -0.916645288, -0.887093484, 0.289513648, 0.359509438, 0.240793467, 0.954727232, -0.174682975)
  3680. Weld317.C1 = CFrame.new(0, 0, 0, -0.393806547, -0.068392545, -0.916645288, -0.887093484, 0.289513648, 0.359509438, 0.240793467, 0.954727232, -0.174682975)
  3681. Weld317.Part0 = Part65
  3682. Weld317.Part1 = Part65
  3683. Weld317.part1 = Part65
  3684. Weld318.Parent = Part65
  3685. Weld318.C0 = CFrame.new(0, 0, 0, -0.393806547, -0.068392545, -0.916645288, -0.887093484, 0.289513648, 0.359509438, 0.240793467, 0.954727232, -0.174682975)
  3686. Weld318.C1 = CFrame.new(0, 0, 0, -0.393806547, -0.068392545, -0.916645288, -0.887093484, 0.289513648, 0.359509438, 0.240793467, 0.954727232, -0.174682975)
  3687. Weld318.Part0 = Part65
  3688. Weld318.Part1 = Part65
  3689. Weld318.part1 = Part65
  3690. Weld319.Parent = Part65
  3691. Weld319.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  3692. Weld319.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  3693. Weld319.Part0 = Part65
  3694. Weld319.Part1 = Part65
  3695. Weld319.part1 = Part65
  3696. Weld320.Parent = Part65
  3697. Weld320.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3698. Weld320.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3699. Weld320.Part0 = Part65
  3700. Weld320.Part1 = Part65
  3701. Weld320.part1 = Part65
  3702. Weld321.Parent = Part65
  3703. Weld321.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3704. Weld321.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3705. Weld321.Part0 = Part65
  3706. Weld321.Part1 = Part65
  3707. Weld321.part1 = Part65
  3708. Weld322.Parent = Part65
  3709. Weld322.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3710. Weld322.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3711. Weld322.Part0 = Part65
  3712. Weld322.Part1 = Part65
  3713. Weld322.part1 = Part65
  3714. Weld323.Parent = Part65
  3715. Weld323.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3716. Weld323.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3717. Weld323.Part0 = Part65
  3718. Weld323.Part1 = Part65
  3719. Weld323.part1 = Part65
  3720. Weld324.Parent = Part65
  3721. Weld324.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3722. Weld324.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3723. Weld324.Part0 = Part65
  3724. Weld324.Part1 = Part65
  3725. Weld324.part1 = Part65
  3726. Weld325.Parent = Part65
  3727. Weld325.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3728. Weld325.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3729. Weld325.Part0 = Part65
  3730. Weld325.Part1 = Part65
  3731. Weld325.part1 = Part65
  3732. Weld326.Parent = Part65
  3733. Weld326.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3734. Weld326.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3735. Weld326.Part0 = Part65
  3736. Weld326.Part1 = Part65
  3737. Weld326.part1 = Part65
  3738. Weld327.Parent = Part65
  3739. Weld327.C0 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3740. Weld327.C1 = CFrame.new(0, 0, 0, 0.0588784106, -0.253766447, -0.965471864, 0.0202408098, 0.967254341, -0.253000587, 0.998059928, -0.00464566099, 0.062086843)
  3741. Weld327.Part0 = Part65
  3742. Weld327.Part1 = Part65
  3743. Weld327.part1 = Part65
  3744. Weld328.Parent = Part65
  3745. Weld328.C0 = CFrame.new(0, 0, 0, -0.673482597, 0.546724737, 0.497507215, -0.224823356, 0.489649177, -0.842435896, -0.704184473, -0.6792171, -0.206853673)
  3746. Weld328.C1 = CFrame.new(0, 0, 0, -0.673482597, 0.546724737, 0.497507215, -0.224823356, 0.489649177, -0.842435896, -0.704184473, -0.6792171, -0.206853673)
  3747. Weld328.Part0 = Part65
  3748. Weld328.Part1 = Part65
  3749. Weld328.part1 = Part65
  3750. Weld329.Parent = Part65
  3751. Weld329.C0 = CFrame.new(0, 0, 0, -0.673482597, 0.546724737, 0.497507215, -0.224823356, 0.489649177, -0.842435896, -0.704184473, -0.6792171, -0.206853673)
  3752. Weld329.C1 = CFrame.new(0, 0, 0, -0.673482597, 0.546724737, 0.497507215, -0.224823356, 0.489649177, -0.842435896, -0.704184473, -0.6792171, -0.206853673)
  3753. Weld329.Part0 = Part65
  3754. Weld329.Part1 = Part65
  3755. Weld329.part1 = Part65
  3756. Weld330.Parent = Part65
  3757. Weld330.C0 = CFrame.new(0, 0, 0, -0.673482597, 0.546724737, 0.497507215, -0.224823356, 0.489649177, -0.842435896, -0.704184473, -0.6792171, -0.206853673)
  3758. Weld330.C1 = CFrame.new(0, 0, 0, -0.673482597, 0.546724737, 0.497507215, -0.224823356, 0.489649177, -0.842435896, -0.704184473, -0.6792171, -0.206853673)
  3759. Weld330.Part0 = Part65
  3760. Weld330.Part1 = Part65
  3761. Weld330.part1 = Part65
  3762. Weld331.Parent = Part65
  3763. Weld331.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  3764. Weld331.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  3765. Weld331.Part0 = Part65
  3766. Weld331.Part1 = Part65
  3767. Weld331.part1 = Part65
  3768. Weld332.Parent = Part65
  3769. Weld332.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3770. Weld332.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3771. Weld332.Part0 = Part65
  3772. Weld332.Part1 = Part65
  3773. Weld332.part1 = Part65
  3774. Weld333.Parent = Part65
  3775. Weld333.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3776. Weld333.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3777. Weld333.Part0 = Part65
  3778. Weld333.Part1 = Part65
  3779. Weld333.part1 = Part65
  3780. Weld334.Parent = Part65
  3781. Weld334.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3782. Weld334.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3783. Weld334.Part0 = Part65
  3784. Weld334.Part1 = Part65
  3785. Weld334.part1 = Part65
  3786. Weld335.Parent = Part65
  3787. Weld335.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3788. Weld335.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3789. Weld335.Part0 = Part65
  3790. Weld335.Part1 = Part65
  3791. Weld335.part1 = Part65
  3792. Weld336.Parent = Part65
  3793. Weld336.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3794. Weld336.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3795. Weld336.Part0 = Part65
  3796. Weld336.Part1 = Part65
  3797. Weld336.part1 = Part65
  3798. Weld337.Parent = Part65
  3799. Weld337.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3800. Weld337.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3801. Weld337.Part0 = Part65
  3802. Weld337.Part1 = Part65
  3803. Weld337.part1 = Part65
  3804. Weld338.Parent = Part65
  3805. Weld338.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3806. Weld338.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3807. Weld338.Part0 = Part65
  3808. Weld338.Part1 = Part65
  3809. Weld338.part1 = Part65
  3810. Weld339.Parent = Part65
  3811. Weld339.C0 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3812. Weld339.C1 = CFrame.new(0, 0, 0, -0.751501799, -0.0406260937, 0.658480346, -0.294827908, 0.913572311, -0.280112833, -0.590189159, -0.404643923, -0.698528111)
  3813. Weld339.Part0 = Part65
  3814. Weld339.Part1 = Part65
  3815. Weld339.part1 = Part65
  3816. Weld340.Parent = Part65
  3817. Weld340.C0 = CFrame.new(0, 0, 0, 0.756580532, -0.611720681, -0.231048748, -0.640167773, -0.764947116, -0.0710009485, -0.133307397, 0.201627895, -0.97034806)
  3818. Weld340.C1 = CFrame.new(0, 0, 0, 0.756580532, -0.611720681, -0.231048748, -0.640167773, -0.764947116, -0.0710009485, -0.133307397, 0.201627895, -0.97034806)
  3819. Weld340.Part0 = Part65
  3820. Weld340.Part1 = Part65
  3821. Weld340.part1 = Part65
  3822. Weld341.Parent = Part65
  3823. Weld341.C0 = CFrame.new(0, 0, 0, 0.756580532, -0.611720681, -0.231048748, -0.640167773, -0.764947116, -0.0710009485, -0.133307397, 0.201627895, -0.97034806)
  3824. Weld341.C1 = CFrame.new(0, 0, 0, 0.756580532, -0.611720681, -0.231048748, -0.640167773, -0.764947116, -0.0710009485, -0.133307397, 0.201627895, -0.97034806)
  3825. Weld341.Part0 = Part65
  3826. Weld341.Part1 = Part65
  3827. Weld341.part1 = Part65
  3828. Weld342.Parent = Part65
  3829. Weld342.C0 = CFrame.new(0, 0, 0, 0.756580532, -0.611720681, -0.231048748, -0.640167773, -0.764947116, -0.0710009485, -0.133307397, 0.201627895, -0.97034806)
  3830. Weld342.C1 = CFrame.new(0, 0, 0, 0.756580532, -0.611720681, -0.231048748, -0.640167773, -0.764947116, -0.0710009485, -0.133307397, 0.201627895, -0.97034806)
  3831. Weld342.Part0 = Part65
  3832. Weld342.Part1 = Part65
  3833. Weld342.part1 = Part65
  3834. Weld343.Parent = Part65
  3835. Weld343.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  3836. Weld343.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  3837. Weld343.Part0 = Part65
  3838. Weld343.Part1 = Part65
  3839. Weld343.part1 = Part65
  3840. Weld344.Parent = Part65
  3841. Weld344.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3842. Weld344.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3843. Weld344.Part0 = Part65
  3844. Weld344.Part1 = Part65
  3845. Weld344.part1 = Part65
  3846. Weld345.Parent = Part65
  3847. Weld345.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3848. Weld345.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3849. Weld345.Part0 = Part65
  3850. Weld345.Part1 = Part65
  3851. Weld345.part1 = Part65
  3852. Weld346.Parent = Part65
  3853. Weld346.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3854. Weld346.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3855. Weld346.Part0 = Part65
  3856. Weld346.Part1 = Part65
  3857. Weld346.part1 = Part65
  3858. Weld347.Parent = Part65
  3859. Weld347.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3860. Weld347.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3861. Weld347.Part0 = Part65
  3862. Weld347.Part1 = Part65
  3863. Weld347.part1 = Part65
  3864. Weld348.Parent = Part65
  3865. Weld348.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3866. Weld348.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3867. Weld348.Part0 = Part65
  3868. Weld348.Part1 = Part65
  3869. Weld348.part1 = Part65
  3870. Weld349.Parent = Part65
  3871. Weld349.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3872. Weld349.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3873. Weld349.Part0 = Part65
  3874. Weld349.Part1 = Part65
  3875. Weld349.part1 = Part65
  3876. Weld350.Parent = Part65
  3877. Weld350.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3878. Weld350.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3879. Weld350.Part0 = Part65
  3880. Weld350.Part1 = Part65
  3881. Weld350.part1 = Part65
  3882. Weld351.Parent = Part65
  3883. Weld351.C0 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3884. Weld351.C1 = CFrame.new(0, 0, 0, -0.500284791, 0.26421997, -0.82456404, 0.851871252, -0.0203025676, -0.523361206, -0.15502435, -0.964250684, -0.214923799)
  3885. Weld351.Part0 = Part65
  3886. Weld351.Part1 = Part65
  3887. Weld351.part1 = Part65
  3888. Weld352.Parent = Part65
  3889. Weld352.C0 = CFrame.new(0, 0, 0, 0.08645311, 0.196917951, -0.976600826, 0.991054177, -0.117040426, 0.0641330481, -0.101672798, -0.973408937, -0.20527485)
  3890. Weld352.C1 = CFrame.new(0, 0, 0, 0.08645311, 0.196917951, -0.976600826, 0.991054177, -0.117040426, 0.0641330481, -0.101672798, -0.973408937, -0.20527485)
  3891. Weld352.Part0 = Part65
  3892. Weld352.Part1 = Part65
  3893. Weld352.part1 = Part65
  3894. Weld353.Parent = Part65
  3895. Weld353.C0 = CFrame.new(0, 0, 0, 0.08645311, 0.196917951, -0.976600826, 0.991054177, -0.117040426, 0.0641330481, -0.101672798, -0.973408937, -0.20527485)
  3896. Weld353.C1 = CFrame.new(0, 0, 0, 0.08645311, 0.196917951, -0.976600826, 0.991054177, -0.117040426, 0.0641330481, -0.101672798, -0.973408937, -0.20527485)
  3897. Weld353.Part0 = Part65
  3898. Weld353.Part1 = Part65
  3899. Weld353.part1 = Part65
  3900. Weld354.Parent = Part65
  3901. Weld354.C0 = CFrame.new(0, 0, 0, 0.08645311, 0.196917951, -0.976600826, 0.991054177, -0.117040426, 0.0641330481, -0.101672798, -0.973408937, -0.20527485)
  3902. Weld354.C1 = CFrame.new(0, 0, 0, 0.08645311, 0.196917951, -0.976600826, 0.991054177, -0.117040426, 0.0641330481, -0.101672798, -0.973408937, -0.20527485)
  3903. Weld354.Part0 = Part65
  3904. Weld354.Part1 = Part65
  3905. Weld354.part1 = Part65
  3906. Weld355.Parent = Part65
  3907. Weld355.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  3908. Weld355.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  3909. Weld355.Part0 = Part65
  3910. Weld355.Part1 = Part65
  3911. Weld355.part1 = Part65
  3912. Weld356.Parent = Part65
  3913. Weld356.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3914. Weld356.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3915. Weld356.Part0 = Part65
  3916. Weld356.Part1 = Part65
  3917. Weld356.part1 = Part65
  3918. Weld357.Parent = Part65
  3919. Weld357.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3920. Weld357.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3921. Weld357.Part0 = Part65
  3922. Weld357.Part1 = Part65
  3923. Weld357.part1 = Part65
  3924. Weld358.Parent = Part65
  3925. Weld358.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3926. Weld358.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3927. Weld358.Part0 = Part65
  3928. Weld358.Part1 = Part65
  3929. Weld358.part1 = Part65
  3930. Weld359.Parent = Part65
  3931. Weld359.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3932. Weld359.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3933. Weld359.Part0 = Part65
  3934. Weld359.Part1 = Part65
  3935. Weld359.part1 = Part65
  3936. Weld360.Parent = Part65
  3937. Weld360.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3938. Weld360.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3939. Weld360.Part0 = Part65
  3940. Weld360.Part1 = Part65
  3941. Weld360.part1 = Part65
  3942. Weld361.Parent = Part65
  3943. Weld361.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3944. Weld361.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3945. Weld361.Part0 = Part65
  3946. Weld361.Part1 = Part65
  3947. Weld361.part1 = Part65
  3948. Weld362.Parent = Part65
  3949. Weld362.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3950. Weld362.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3951. Weld362.Part0 = Part65
  3952. Weld362.Part1 = Part65
  3953. Weld362.part1 = Part65
  3954. Weld363.Parent = Part65
  3955. Weld363.C0 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3956. Weld363.C1 = CFrame.new(0, 0, 0, -0.346819043, 0.264103055, -0.89998579, 0.930905104, -0.0203337986, -0.364708275, -0.114623643, -0.964286804, -0.238801792)
  3957. Weld363.Part0 = Part65
  3958. Weld363.Part1 = Part65
  3959. Weld363.part1 = Part65
  3960. Weld364.Parent = Part65
  3961. Weld364.C0 = CFrame.new(0, 0, 0, -0.405161262, 0.604873121, 0.685545683, 0.168584689, 0.78641957, -0.594241977, -0.898567557, -0.125191331, -0.420599103)
  3962. Weld364.C1 = CFrame.new(0, 0, 0, -0.405161262, 0.604873121, 0.685545683, 0.168584689, 0.78641957, -0.594241977, -0.898567557, -0.125191331, -0.420599103)
  3963. Weld364.Part0 = Part65
  3964. Weld364.Part1 = Part65
  3965. Weld364.part1 = Part65
  3966. Weld365.Parent = Part65
  3967. Weld365.C0 = CFrame.new(0, 0, 0, -0.405161262, 0.604873121, 0.685545683, 0.168584689, 0.78641957, -0.594241977, -0.898567557, -0.125191331, -0.420599103)
  3968. Weld365.C1 = CFrame.new(0, 0, 0, -0.405161262, 0.604873121, 0.685545683, 0.168584689, 0.78641957, -0.594241977, -0.898567557, -0.125191331, -0.420599103)
  3969. Weld365.Part0 = Part65
  3970. Weld365.Part1 = Part65
  3971. Weld365.part1 = Part65
  3972. Weld366.Parent = Part65
  3973. Weld366.C0 = CFrame.new(0, 0, 0, -0.405161262, 0.604873121, 0.685545683, 0.168584689, 0.78641957, -0.594241977, -0.898567557, -0.125191331, -0.420599103)
  3974. Weld366.C1 = CFrame.new(0, 0, 0, -0.405161262, 0.604873121, 0.685545683, 0.168584689, 0.78641957, -0.594241977, -0.898567557, -0.125191331, -0.420599103)
  3975. Weld366.Part0 = Part65
  3976. Weld366.Part1 = Part65
  3977. Weld366.part1 = Part65
  3978. Weld367.Parent = Part65
  3979. Weld367.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  3980. Weld367.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  3981. Weld367.Part0 = Part65
  3982. Weld367.Part1 = Part65
  3983. Weld367.part1 = Part65
  3984. Weld368.Parent = Part65
  3985. Weld368.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  3986. Weld368.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  3987. Weld368.Part0 = Part65
  3988. Weld368.Part1 = Part65
  3989. Weld368.part1 = Part65
  3990. Weld369.Parent = Part65
  3991. Weld369.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  3992. Weld369.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  3993. Weld369.Part0 = Part65
  3994. Weld369.Part1 = Part65
  3995. Weld369.part1 = Part65
  3996. Weld370.Parent = Part65
  3997. Weld370.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  3998. Weld370.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  3999. Weld370.Part0 = Part65
  4000. Weld370.Part1 = Part65
  4001. Weld370.part1 = Part65
  4002. Weld371.Parent = Part65
  4003. Weld371.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4004. Weld371.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4005. Weld371.Part0 = Part65
  4006. Weld371.Part1 = Part65
  4007. Weld371.part1 = Part65
  4008. Weld372.Parent = Part65
  4009. Weld372.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4010. Weld372.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4011. Weld372.Part0 = Part65
  4012. Weld372.Part1 = Part65
  4013. Weld372.part1 = Part65
  4014. Weld373.Parent = Part65
  4015. Weld373.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4016. Weld373.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4017. Weld373.Part0 = Part65
  4018. Weld373.Part1 = Part65
  4019. Weld373.part1 = Part65
  4020. Weld374.Parent = Part65
  4021. Weld374.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4022. Weld374.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4023. Weld374.Part0 = Part65
  4024. Weld374.Part1 = Part65
  4025. Weld374.part1 = Part65
  4026. Weld375.Parent = Part65
  4027. Weld375.C0 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4028. Weld375.C1 = CFrame.new(0, 0, 0, 0.104601718, 0.264218897, 0.958773732, -0.993277729, -0.0203037914, 0.113961875, 0.0495777726, -0.96424973, 0.260319114)
  4029. Weld375.Part0 = Part65
  4030. Weld375.Part1 = Part65
  4031. Weld375.part1 = Part65
  4032. Weld376.Parent = Part65
  4033. Weld376.C0 = CFrame.new(0, 0, 0, 0.1217741, 0.613454819, 0.780284822, -0.390170217, 0.752435088, -0.530668259, -0.912654698, -0.239822179, 0.33097887)
  4034. Weld376.C1 = CFrame.new(0, 0, 0, 0.1217741, 0.613454819, 0.780284822, -0.390170217, 0.752435088, -0.530668259, -0.912654698, -0.239822179, 0.33097887)
  4035. Weld376.Part0 = Part65
  4036. Weld376.Part1 = Part65
  4037. Weld376.part1 = Part65
  4038. Weld377.Parent = Part65
  4039. Weld377.C0 = CFrame.new(0, 0, 0, 0.1217741, 0.613454819, 0.780284822, -0.390170217, 0.752435088, -0.530668259, -0.912654698, -0.239822179, 0.33097887)
  4040. Weld377.C1 = CFrame.new(0, 0, 0, 0.1217741, 0.613454819, 0.780284822, -0.390170217, 0.752435088, -0.530668259, -0.912654698, -0.239822179, 0.33097887)
  4041. Weld377.Part0 = Part65
  4042. Weld377.Part1 = Part65
  4043. Weld377.part1 = Part65
  4044. Weld378.Parent = Part65
  4045. Weld378.C0 = CFrame.new(0, 0, 0, 0.1217741, 0.613454819, 0.780284822, -0.390170217, 0.752435088, -0.530668259, -0.912654698, -0.239822179, 0.33097887)
  4046. Weld378.C1 = CFrame.new(0, 0, 0, 0.1217741, 0.613454819, 0.780284822, -0.390170217, 0.752435088, -0.530668259, -0.912654698, -0.239822179, 0.33097887)
  4047. Weld378.Part0 = Part65
  4048. Weld378.Part1 = Part65
  4049. Weld378.part1 = Part65
  4050. Weld379.Parent = Part65
  4051. Weld379.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  4052. Weld379.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  4053. Weld379.Part0 = Part65
  4054. Weld379.Part1 = Part65
  4055. Weld379.part1 = Part65
  4056. Weld380.Parent = Part65
  4057. Weld380.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4058. Weld380.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4059. Weld380.Part0 = Part65
  4060. Weld380.Part1 = Part65
  4061. Weld380.part1 = Part65
  4062. Weld381.Parent = Part65
  4063. Weld381.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4064. Weld381.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4065. Weld381.Part0 = Part65
  4066. Weld381.Part1 = Part65
  4067. Weld381.part1 = Part65
  4068. Weld382.Parent = Part65
  4069. Weld382.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4070. Weld382.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4071. Weld382.Part0 = Part65
  4072. Weld382.Part1 = Part65
  4073. Weld382.part1 = Part65
  4074. Weld383.Parent = Part65
  4075. Weld383.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4076. Weld383.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4077. Weld383.Part0 = Part65
  4078. Weld383.Part1 = Part65
  4079. Weld383.part1 = Part65
  4080. Weld384.Parent = Part65
  4081. Weld384.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4082. Weld384.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4083. Weld384.Part0 = Part65
  4084. Weld384.Part1 = Part65
  4085. Weld384.part1 = Part65
  4086. Weld385.Parent = Part65
  4087. Weld385.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4088. Weld385.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4089. Weld385.Part0 = Part65
  4090. Weld385.Part1 = Part65
  4091. Weld385.part1 = Part65
  4092. Weld386.Parent = Part65
  4093. Weld386.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4094. Weld386.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4095. Weld386.Part0 = Part65
  4096. Weld386.Part1 = Part65
  4097. Weld386.part1 = Part65
  4098. Weld387.Parent = Part65
  4099. Weld387.C0 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4100. Weld387.C1 = CFrame.new(0, 0, 0, -0.555982888, 0.264219195, 0.788082838, -0.820146263, -0.0203040652, -0.571795344, -0.135078728, -0.964252889, 0.227987334)
  4101. Weld387.Part0 = Part65
  4102. Weld387.Part1 = Part65
  4103. Weld387.part1 = Part65
  4104. Weld388.Parent = Part65
  4105. Weld388.C0 = CFrame.new(0, 0, 0, -0.373116344, 0.606532216, 0.702070475, 0.123877391, 0.782509983, -0.61019069, -0.919477403, -0.140701413, -0.367102861)
  4106. Weld388.C1 = CFrame.new(0, 0, 0, -0.373116344, 0.606532216, 0.702070475, 0.123877391, 0.782509983, -0.61019069, -0.919477403, -0.140701413, -0.367102861)
  4107. Weld388.Part0 = Part65
  4108. Weld388.Part1 = Part65
  4109. Weld388.part1 = Part65
  4110. Weld389.Parent = Part65
  4111. Weld389.C0 = CFrame.new(0, 0, 0, -0.373116344, 0.606532216, 0.702070475, 0.123877391, 0.782509983, -0.61019069, -0.919477403, -0.140701413, -0.367102861)
  4112. Weld389.C1 = CFrame.new(0, 0, 0, -0.373116344, 0.606532216, 0.702070475, 0.123877391, 0.782509983, -0.61019069, -0.919477403, -0.140701413, -0.367102861)
  4113. Weld389.Part0 = Part65
  4114. Weld389.Part1 = Part65
  4115. Weld389.part1 = Part65
  4116. Weld390.Parent = Part65
  4117. Weld390.C0 = CFrame.new(0, 0, 0, -0.373116344, 0.606532216, 0.702070475, 0.123877391, 0.782509983, -0.61019069, -0.919477403, -0.140701413, -0.367102861)
  4118. Weld390.C1 = CFrame.new(0, 0, 0, -0.373116344, 0.606532216, 0.702070475, 0.123877391, 0.782509983, -0.61019069, -0.919477403, -0.140701413, -0.367102861)
  4119. Weld390.Part0 = Part65
  4120. Weld390.Part1 = Part65
  4121. Weld390.part1 = Part65
  4122. Weld391.Parent = Part65
  4123. Weld391.C0 = CFrame.new(0, 0, 0, 0.836518466, 0.491715312, 0.241780654, -0.543879211, 0.691447079, 0.475506991, 0.0666330233, -0.529260874, 0.845839739)
  4124. Weld391.C1 = CFrame.new(0, 0, 0, 0.836518466, 0.491715312, 0.241780654, -0.543879211, 0.691447079, 0.475506991, 0.0666330233, -0.529260874, 0.845839739)
  4125. Weld391.Part0 = Part65
  4126. Weld391.Part1 = Part65
  4127. Weld391.part1 = Part65
  4128. Weld392.Parent = Part65
  4129. Weld392.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4130. Weld392.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4131. Weld392.Part0 = Part65
  4132. Weld392.Part1 = Part65
  4133. Weld392.part1 = Part65
  4134. Weld393.Parent = Part65
  4135. Weld393.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4136. Weld393.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4137. Weld393.Part0 = Part65
  4138. Weld393.Part1 = Part65
  4139. Weld393.part1 = Part65
  4140. Weld394.Parent = Part65
  4141. Weld394.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4142. Weld394.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4143. Weld394.Part0 = Part65
  4144. Weld394.Part1 = Part65
  4145. Weld394.part1 = Part65
  4146. Weld395.Parent = Part65
  4147. Weld395.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4148. Weld395.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4149. Weld395.Part0 = Part65
  4150. Weld395.Part1 = Part65
  4151. Weld395.part1 = Part65
  4152. Weld396.Parent = Part65
  4153. Weld396.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4154. Weld396.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4155. Weld396.Part0 = Part65
  4156. Weld396.Part1 = Part65
  4157. Weld396.part1 = Part65
  4158. Weld397.Parent = Part65
  4159. Weld397.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4160. Weld397.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4161. Weld397.Part0 = Part65
  4162. Weld397.Part1 = Part65
  4163. Weld397.part1 = Part65
  4164. Weld398.Parent = Part65
  4165. Weld398.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4166. Weld398.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4167. Weld398.Part0 = Part65
  4168. Weld398.Part1 = Part65
  4169. Weld398.part1 = Part65
  4170. Weld399.Parent = Part65
  4171. Weld399.C0 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4172. Weld399.C1 = CFrame.new(0, 0, 0, -0.409984022, 0.264217794, 0.872984588, -0.907314599, -0.0203017332, -0.419962049, -0.0932383612, -0.964249313, 0.248052061)
  4173. Weld399.Part0 = Part65
  4174. Weld399.Part1 = Part65
  4175. Weld399.part1 = Part65
  4176. Weld400.Parent = Part65
  4177. Weld400.C0 = CFrame.new(0, 0, 0, -0.164201468, 0.605301201, 0.778876364, -0.0354363322, 0.785464346, -0.617891669, -0.985790074, -0.129059225, -0.107524753)
  4178. Weld400.C1 = CFrame.new(0, 0, 0, -0.164201468, 0.605301201, 0.778876364, -0.0354363322, 0.785464346, -0.617891669, -0.985790074, -0.129059225, -0.107524753)
  4179. Weld400.Part0 = Part65
  4180. Weld400.Part1 = Part65
  4181. Weld400.part1 = Part65
  4182. Weld401.Parent = Part65
  4183. Weld401.C0 = CFrame.new(0, 0, 0, -0.164201468, 0.605301201, 0.778876364, -0.0354363322, 0.785464346, -0.617891669, -0.985790074, -0.129059225, -0.107524753)
  4184. Weld401.C1 = CFrame.new(0, 0, 0, -0.164201468, 0.605301201, 0.778876364, -0.0354363322, 0.785464346, -0.617891669, -0.985790074, -0.129059225, -0.107524753)
  4185. Weld401.Part0 = Part65
  4186. Weld401.Part1 = Part65
  4187. Weld401.part1 = Part65
  4188. Weld402.Parent = Part65
  4189. Weld402.C0 = CFrame.new(0, 0, 0, -0.164201468, 0.605301201, 0.778876364, -0.0354363322, 0.785464346, -0.617891669, -0.985790074, -0.129059225, -0.107524753)
  4190. Weld402.C1 = CFrame.new(0, 0, 0, -0.164201468, 0.605301201, 0.778876364, -0.0354363322, 0.785464346, -0.617891669, -0.985790074, -0.129059225, -0.107524753)
  4191. Weld402.Part0 = Part65
  4192. Weld402.Part1 = Part65
  4193. Weld402.part1 = Part65
  4194. Weld403.Parent = Part65
  4195. Weld403.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  4196. Weld403.C1 = CFrame.new(-0.618311882, 0.777397156, -1.19405746, -0.626776993, -0.778451145, 0.0341240726, -0.407649726, 0.290270925, -0.865773916, 0.664057493, -0.556557834, -0.499270558)
  4197. Weld403.Part0 = Part65
  4198. Weld403.Part1 = Part808
  4199. Weld403.part1 = Part808
  4200. Weld404.Parent = Part65
  4201. Weld404.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4202. Weld404.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4203. Weld404.Part0 = Part65
  4204. Weld404.Part1 = Part65
  4205. Weld404.part1 = Part65
  4206. Weld405.Parent = Part65
  4207. Weld405.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4208. Weld405.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4209. Weld405.Part0 = Part65
  4210. Weld405.Part1 = Part65
  4211. Weld405.part1 = Part65
  4212. Weld406.Parent = Part65
  4213. Weld406.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4214. Weld406.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4215. Weld406.Part0 = Part65
  4216. Weld406.Part1 = Part65
  4217. Weld406.part1 = Part65
  4218. Weld407.Parent = Part65
  4219. Weld407.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4220. Weld407.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4221. Weld407.Part0 = Part65
  4222. Weld407.Part1 = Part65
  4223. Weld407.part1 = Part65
  4224. Weld408.Parent = Part65
  4225. Weld408.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4226. Weld408.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4227. Weld408.Part0 = Part65
  4228. Weld408.Part1 = Part65
  4229. Weld408.part1 = Part65
  4230. Weld409.Parent = Part65
  4231. Weld409.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4232. Weld409.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4233. Weld409.Part0 = Part65
  4234. Weld409.Part1 = Part65
  4235. Weld409.part1 = Part65
  4236. Weld410.Parent = Part65
  4237. Weld410.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4238. Weld410.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4239. Weld410.Part0 = Part65
  4240. Weld410.Part1 = Part65
  4241. Weld410.part1 = Part65
  4242. Weld411.Parent = Part65
  4243. Weld411.C0 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4244. Weld411.C1 = CFrame.new(0, 0, 0, -0.642179668, -0.0703134015, 0.763323247, -0.212382793, 0.97312218, -0.0890376195, -0.736544967, -0.219294429, -0.63985163)
  4245. Weld411.Part0 = Part65
  4246. Weld411.Part1 = Part65
  4247. Weld411.part1 = Part65
  4248. Weld412.Parent = Part65
  4249. Weld412.C0 = CFrame.new(0, 0, 0, -0.787880599, 0.61578387, -0.00738627277, 0.58243233, 0.741204679, -0.333748996, -0.200042471, -0.26725626, -0.942633212)
  4250. Weld412.C1 = CFrame.new(0, 0, 0, -0.787880599, 0.61578387, -0.00738627277, 0.58243233, 0.741204679, -0.333748996, -0.200042471, -0.26725626, -0.942633212)
  4251. Weld412.Part0 = Part65
  4252. Weld412.Part1 = Part65
  4253. Weld412.part1 = Part65
  4254. Weld413.Parent = Part65
  4255. Weld413.C0 = CFrame.new(0, 0, 0, -0.787880599, 0.61578387, -0.00738627277, 0.58243233, 0.741204679, -0.333748996, -0.200042471, -0.26725626, -0.942633212)
  4256. Weld413.C1 = CFrame.new(0, 0, 0, -0.787880599, 0.61578387, -0.00738627277, 0.58243233, 0.741204679, -0.333748996, -0.200042471, -0.26725626, -0.942633212)
  4257. Weld413.Part0 = Part65
  4258. Weld413.Part1 = Part65
  4259. Weld413.part1 = Part65
  4260. Weld414.Parent = Part65
  4261. Weld414.C0 = CFrame.new(0, 0, 0, -0.787880599, 0.61578387, -0.00738627277, 0.58243233, 0.741204679, -0.333748996, -0.200042471, -0.26725626, -0.942633212)
  4262. Weld414.C1 = CFrame.new(0, 0, 0, -0.787880599, 0.61578387, -0.00738627277, 0.58243233, 0.741204679, -0.333748996, -0.200042471, -0.26725626, -0.942633212)
  4263. Weld414.Part0 = Part65
  4264. Weld414.Part1 = Part65
  4265. Weld414.part1 = Part65
  4266. Weld415.Parent = Part65
  4267. Weld415.C0 = CFrame.new(0, 0, 0, 0.958954155, 0.26422143, 0.102948077, -0.101182878, -0.0203140415, 0.994662285, 0.264900357, -0.964250743, 0.007259354)
  4268. Weld415.C1 = CFrame.new(0, 0, 0, 0.958954155, 0.26422143, 0.102948077, -0.101182878, -0.0203140415, 0.994662285, 0.264900357, -0.964250743, 0.007259354)
  4269. Weld415.Part0 = Part65
  4270. Weld415.Part1 = Part65
  4271. Weld415.part1 = Part65
  4272. Weld416.Parent = Part65
  4273. Weld416.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4274. Weld416.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4275. Weld416.Part0 = Part65
  4276. Weld416.Part1 = Part65
  4277. Weld416.part1 = Part65
  4278. Weld417.Parent = Part65
  4279. Weld417.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4280. Weld417.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4281. Weld417.Part0 = Part65
  4282. Weld417.Part1 = Part65
  4283. Weld417.part1 = Part65
  4284. Weld418.Parent = Part65
  4285. Weld418.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4286. Weld418.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4287. Weld418.Part0 = Part65
  4288. Weld418.Part1 = Part65
  4289. Weld418.part1 = Part65
  4290. Weld419.Parent = Part65
  4291. Weld419.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4292. Weld419.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4293. Weld419.Part0 = Part65
  4294. Weld419.Part1 = Part65
  4295. Weld419.part1 = Part65
  4296. Weld420.Parent = Part65
  4297. Weld420.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4298. Weld420.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4299. Weld420.Part0 = Part65
  4300. Weld420.Part1 = Part65
  4301. Weld420.part1 = Part65
  4302. Weld421.Parent = Part65
  4303. Weld421.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4304. Weld421.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4305. Weld421.Part0 = Part65
  4306. Weld421.Part1 = Part65
  4307. Weld421.part1 = Part65
  4308. Weld422.Parent = Part65
  4309. Weld422.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4310. Weld422.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4311. Weld422.Part0 = Part65
  4312. Weld422.Part1 = Part65
  4313. Weld422.part1 = Part65
  4314. Weld423.Parent = Part65
  4315. Weld423.C0 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4316. Weld423.C1 = CFrame.new(0, 0, 0, 0.888660431, 0.264219582, 0.374801755, -0.383401632, -0.0203047767, 0.923361361, 0.251578599, -0.964248538, 0.0832590014)
  4317. Weld423.Part0 = Part65
  4318. Weld423.Part1 = Part65
  4319. Weld423.part1 = Part65
  4320. Weld424.Parent = Part65
  4321. Weld424.C0 = CFrame.new(0, 0, 0, 0.711656928, 0.614307582, -0.340838373, -0.370190114, 0.740248978, 0.561240435, 0.597079515, -0.273235559, 0.754213929)
  4322. Weld424.C1 = CFrame.new(0, 0, 0, 0.711656928, 0.614307582, -0.340838373, -0.370190114, 0.740248978, 0.561240435, 0.597079515, -0.273235559, 0.754213929)
  4323. Weld424.Part0 = Part65
  4324. Weld424.Part1 = Part65
  4325. Weld424.part1 = Part65
  4326. Weld425.Parent = Part65
  4327. Weld425.C0 = CFrame.new(0, 0, 0, 0.711656928, 0.614307582, -0.340838373, -0.370190114, 0.740248978, 0.561240435, 0.597079515, -0.273235559, 0.754213929)
  4328. Weld425.C1 = CFrame.new(0, 0, 0, 0.711656928, 0.614307582, -0.340838373, -0.370190114, 0.740248978, 0.561240435, 0.597079515, -0.273235559, 0.754213929)
  4329. Weld425.Part0 = Part65
  4330. Weld425.Part1 = Part65
  4331. Weld425.part1 = Part65
  4332. Weld426.Parent = Part65
  4333. Weld426.C0 = CFrame.new(0, 0, 0, 0.711656928, 0.614307582, -0.340838373, -0.370190114, 0.740248978, 0.561240435, 0.597079515, -0.273235559, 0.754213929)
  4334. Weld426.C1 = CFrame.new(0, 0, 0, 0.711656928, 0.614307582, -0.340838373, -0.370190114, 0.740248978, 0.561240435, 0.597079515, -0.273235559, 0.754213929)
  4335. Weld426.Part0 = Part65
  4336. Weld426.Part1 = Part65
  4337. Weld426.part1 = Part65
  4338. Weld427.Parent = Part65
  4339. Weld427.C0 = CFrame.new(0, 0, 0, 0.915298164, -0.358688384, 0.183226556, 0.244552702, 0.856364846, 0.454789281, -0.320036352, -0.371459186, 0.871547461)
  4340. Weld427.C1 = CFrame.new(0, 0, 0, 0.915298164, -0.358688384, 0.183226556, 0.244552702, 0.856364846, 0.454789281, -0.320036352, -0.371459186, 0.871547461)
  4341. Weld427.Part0 = Part65
  4342. Weld427.Part1 = Part65
  4343. Weld427.part1 = Part65
  4344. Weld428.Parent = Part65
  4345. Weld428.C0 = CFrame.new(0, 0, 0, 0.669115841, -0.734308779, -0.114429779, 0.450770676, 0.278601766, 0.848059118, -0.590842843, -0.619019687, 0.517416358)
  4346. Weld428.C1 = CFrame.new(0, 0, 0, 0.669115841, -0.734308779, -0.114429779, 0.450770676, 0.278601766, 0.848059118, -0.590842843, -0.619019687, 0.517416358)
  4347. Weld428.Part0 = Part65
  4348. Weld428.Part1 = Part65
  4349. Weld428.part1 = Part65
  4350. Weld429.Parent = Part65
  4351. Weld429.C0 = CFrame.new(0, 0, 0, 0.669110954, -0.734306455, -0.114430986, 0.450770676, 0.278595209, 0.848056197, -0.590846062, -0.619019926, 0.517412186)
  4352. Weld429.C1 = CFrame.new(0, 0, 0, 0.669110954, -0.734306455, -0.114430986, 0.450770676, 0.278595209, 0.848056197, -0.590846062, -0.619019926, 0.517412186)
  4353. Weld429.Part0 = Part65
  4354. Weld429.Part1 = Part65
  4355. Weld429.part1 = Part65
  4356. Weld430.Parent = Part65
  4357. Weld430.C0 = CFrame.new(0, 0, 0, 0.669113219, -0.734298348, -0.114426725, 0.450769603, 0.27860108, 0.8480497, -0.590842068, -0.619021297, 0.517415047)
  4358. Weld430.C1 = CFrame.new(0, 0, 0, 0.669113219, -0.734298348, -0.114426725, 0.450769603, 0.27860108, 0.8480497, -0.590842068, -0.619021297, 0.517415047)
  4359. Weld430.Part0 = Part65
  4360. Weld430.Part1 = Part65
  4361. Weld430.part1 = Part65
  4362. Weld431.Parent = Part65
  4363. Weld431.C0 = CFrame.new(0, 0, 0, 0.669107735, -0.734308839, -0.114434563, 0.450771093, 0.278588235, 0.848058283, -0.5908494, -0.619020224, 0.517408013)
  4364. Weld431.C1 = CFrame.new(0, 0, 0, 0.669107735, -0.734308839, -0.114434563, 0.450771093, 0.278588235, 0.848058283, -0.5908494, -0.619020224, 0.517408013)
  4365. Weld431.Part0 = Part65
  4366. Weld431.Part1 = Part65
  4367. Weld431.part1 = Part65
  4368. Weld432.Parent = Part65
  4369. Weld432.C0 = CFrame.new(0, 0, 0, 0.66911, -0.734300733, -0.114430323, 0.450769991, 0.278594106, 0.848051727, -0.590845406, -0.619021654, 0.517410815)
  4370. Weld432.C1 = CFrame.new(0, 0, 0, 0.66911, -0.734300733, -0.114430323, 0.450769991, 0.278594106, 0.848051727, -0.590845406, -0.619021654, 0.517410815)
  4371. Weld432.Part0 = Part65
  4372. Weld432.Part1 = Part65
  4373. Weld432.part1 = Part65
  4374. Weld433.Parent = Part65
  4375. Weld433.C0 = CFrame.new(0, 0, 0, 0.669104517, -0.734311163, -0.114438154, 0.450771421, 0.278581202, 0.848060429, -0.590852737, -0.619020581, 0.517403722)
  4376. Weld433.C1 = CFrame.new(0, 0, 0, 0.669104517, -0.734311163, -0.114438154, 0.450771421, 0.278581202, 0.848060429, -0.590852737, -0.619020581, 0.517403722)
  4377. Weld433.Part0 = Part65
  4378. Weld433.Part1 = Part65
  4379. Weld433.part1 = Part65
  4380. Weld434.Parent = Part65
  4381. Weld434.C0 = CFrame.new(0, 0, 0, 0.669106841, -0.734303057, -0.114433974, 0.450770319, 0.278587103, 0.848053873, -0.590848684, -0.619022071, 0.517406523)
  4382. Weld434.C1 = CFrame.new(0, 0, 0, 0.669106841, -0.734303057, -0.114433974, 0.450770319, 0.278587103, 0.848053873, -0.590848684, -0.619022071, 0.517406523)
  4383. Weld434.Part0 = Part65
  4384. Weld434.Part1 = Part65
  4385. Weld434.part1 = Part65
  4386. Weld435.Parent = Part65
  4387. Weld435.C0 = CFrame.new(0, 0, 0, 0.669101357, -0.734313488, -0.11444173, 0.450771779, 0.278574258, 0.848062515, -0.590856075, -0.619020939, 0.51739949)
  4388. Weld435.C1 = CFrame.new(0, 0, 0, 0.669101357, -0.734313488, -0.11444173, 0.450771779, 0.278574258, 0.848062515, -0.590856075, -0.619020939, 0.51739949)
  4389. Weld435.Part0 = Part65
  4390. Weld435.Part1 = Part65
  4391. Weld435.part1 = Part65
  4392. Weld436.Parent = Part65
  4393. Weld436.C0 = CFrame.new(0, 0, 0, 0.669103682, -0.734305322, -0.114437468, 0.450770676, 0.278580189, 0.848055959, -0.590852022, -0.619022369, 0.517402351)
  4394. Weld436.C1 = CFrame.new(0, 0, 0, 0.669103682, -0.734305322, -0.114437468, 0.450770676, 0.278580189, 0.848055959, -0.590852022, -0.619022369, 0.517402351)
  4395. Weld436.Part0 = Part65
  4396. Weld436.Part1 = Part65
  4397. Weld436.part1 = Part65
  4398. Weld437.Parent = Part65
  4399. Weld437.C0 = CFrame.new(0, 0, 0, 0.684409559, -0.720303655, -0.112898566, 0.437811762, 0.282198995, 0.853630126, -0.583013058, -0.633661091, 0.508497238)
  4400. Weld437.C1 = CFrame.new(0, 0, 0, 0.684409559, -0.720303655, -0.112898566, 0.437811762, 0.282198995, 0.853630126, -0.583013058, -0.633661091, 0.508497238)
  4401. Weld437.Part0 = Part65
  4402. Weld437.Part1 = Part65
  4403. Weld437.part1 = Part65
  4404. Weld438.Parent = Part65
  4405. Weld438.C0 = CFrame.new(0, 0, 0, 0.684409499, -0.720303595, -0.112898521, 0.437811673, 0.282198906, 0.853630006, -0.583012998, -0.633661091, 0.508497238)
  4406. Weld438.C1 = CFrame.new(0, 0, 0, 0.684409499, -0.720303595, -0.112898521, 0.437811673, 0.282198906, 0.853630006, -0.583012998, -0.633661091, 0.508497238)
  4407. Weld438.Part0 = Part65
  4408. Weld438.Part1 = Part65
  4409. Weld438.part1 = Part65
  4410. Weld439.Parent = Part65
  4411. Weld439.C0 = CFrame.new(0, 0, 0, 0.68440938, -0.720303535, -0.112898484, 0.437811583, 0.282198846, 0.853629887, -0.583012938, -0.633661091, 0.508497298)
  4412. Weld439.C1 = CFrame.new(0, 0, 0, 0.68440938, -0.720303535, -0.112898484, 0.437811583, 0.282198846, 0.853629887, -0.583012938, -0.633661091, 0.508497298)
  4413. Weld439.Part0 = Part65
  4414. Weld439.Part1 = Part65
  4415. Weld439.part1 = Part65
  4416. Weld440.Parent = Part65
  4417. Weld440.C0 = CFrame.new(0, 0, 0, 0.915298164, -0.358688384, 0.183226556, 0.244552702, 0.856364846, 0.454789281, -0.320036352, -0.371459186, 0.871547461)
  4418. Weld440.C1 = CFrame.new(0, 0, 0, 0.915298164, -0.358688384, 0.183226556, 0.244552702, 0.856364846, 0.454789281, -0.320036352, -0.371459186, 0.871547461)
  4419. Weld440.Part0 = Part65
  4420. Weld440.Part1 = Part65
  4421. Weld440.part1 = Part65
  4422. Weld441.Parent = Part65
  4423. Weld441.C0 = CFrame.new(0, 0, 0, 0.915298164, -0.358688384, 0.183226556, 0.244552702, 0.856364846, 0.454789281, -0.320036352, -0.371459186, 0.871547461)
  4424. Weld441.C1 = CFrame.new(0, 0, 0, 0.915298164, -0.358688384, 0.183226556, 0.244552702, 0.856364846, 0.454789281, -0.320036352, -0.371459186, 0.871547461)
  4425. Weld441.Part0 = Part65
  4426. Weld441.Part1 = Part65
  4427. Weld441.part1 = Part65
  4428. Weld442.Parent = Part65
  4429. Weld442.C0 = CFrame.new(0, 0, 0, 0.919531047, 0.390882343, 0.0409127474, -0.250095785, 0.662264466, -0.706298709, -0.303174734, 0.639231384, 0.706730664)
  4430. Weld442.C1 = CFrame.new(0, 0, 0, 0.919531047, 0.390882343, 0.0409127474, -0.250095785, 0.662264466, -0.706298709, -0.303174734, 0.639231384, 0.706730664)
  4431. Weld442.Part0 = Part65
  4432. Weld442.Part1 = Part65
  4433. Weld442.part1 = Part65
  4434. Weld443.Parent = Part65
  4435. Weld443.C0 = CFrame.new(0, 0, 0, 0.815190554, -0.548089027, 0.187249348, 0.275176108, 0.650977194, 0.707464755, -0.509648025, -0.525192201, 0.681493878)
  4436. Weld443.C1 = CFrame.new(0, 0, 0, 0.815190554, -0.548089027, 0.187249348, 0.275176108, 0.650977194, 0.707464755, -0.509648025, -0.525192201, 0.681493878)
  4437. Weld443.Part0 = Part65
  4438. Weld443.Part1 = Part65
  4439. Weld443.part1 = Part65
  4440. Weld444.Parent = Part65
  4441. Weld444.C0 = CFrame.new(0, 0, 0, 0.815189958, -0.548089325, 0.187249646, 0.275175452, 0.650976658, 0.707465231, -0.509647787, -0.525192499, 0.681495249)
  4442. Weld444.C1 = CFrame.new(0, 0, 0, 0.815189958, -0.548089325, 0.187249646, 0.275175452, 0.650976658, 0.707465231, -0.509647787, -0.525192499, 0.681495249)
  4443. Weld444.Part0 = Part65
  4444. Weld444.Part1 = Part65
  4445. Weld444.part1 = Part65
  4446. Weld445.Parent = Part65
  4447. Weld445.C0 = CFrame.new(0, 0, 0, 0.815189481, -0.548089623, 0.187249929, 0.275174767, 0.650976062, 0.707465649, -0.509647429, -0.525192738, 0.68149668)
  4448. Weld445.C1 = CFrame.new(0, 0, 0, 0.815189481, -0.548089623, 0.187249929, 0.275174767, 0.650976062, 0.707465649, -0.509647429, -0.525192738, 0.68149668)
  4449. Weld445.Part0 = Part65
  4450. Weld445.Part1 = Part65
  4451. Weld445.part1 = Part65
  4452. Weld446.Parent = Part65
  4453. Weld446.C0 = CFrame.new(0, 0, 0, 0.815189004, -0.548089921, 0.187250212, 0.275174111, 0.650975466, 0.707466066, -0.509647191, -0.525192976, 0.68149811)
  4454. Weld446.C1 = CFrame.new(0, 0, 0, 0.815189004, -0.548089921, 0.187250212, 0.275174111, 0.650975466, 0.707466066, -0.509647191, -0.525192976, 0.68149811)
  4455. Weld446.Part0 = Part65
  4456. Weld446.Part1 = Part65
  4457. Weld446.part1 = Part65
  4458. Weld447.Parent = Part65
  4459. Weld447.C0 = CFrame.new(0, 0, 0, 0.815188468, -0.548090219, 0.187250465, 0.275173426, 0.650974929, 0.707466483, -0.509646952, -0.525193214, 0.681499541)
  4460. Weld447.C1 = CFrame.new(0, 0, 0, 0.815188468, -0.548090219, 0.187250465, 0.275173426, 0.650974929, 0.707466483, -0.509646952, -0.525193214, 0.681499541)
  4461. Weld447.Part0 = Part65
  4462. Weld447.Part1 = Part65
  4463. Weld447.part1 = Part65
  4464. Weld448.Parent = Part65
  4465. Weld448.C0 = CFrame.new(0, 0, 0, 0.815188944, -0.548091173, 0.187250957, 0.275174379, 0.650974393, 0.707468092, -0.509652197, -0.525193572, 0.681488991)
  4466. Weld448.C1 = CFrame.new(0, 0, 0, 0.815188944, -0.548091173, 0.187250957, 0.275174379, 0.650974393, 0.707468092, -0.509652197, -0.525193572, 0.681488991)
  4467. Weld448.Part0 = Part65
  4468. Weld448.Part1 = Part65
  4469. Weld448.part1 = Part65
  4470. Weld449.Parent = Part65
  4471. Weld449.C0 = CFrame.new(0, 0, 0, 0.815188408, -0.548091412, 0.187251225, 0.275173753, 0.650973856, 0.70746851, -0.509651959, -0.52519381, 0.681490421)
  4472. Weld449.C1 = CFrame.new(0, 0, 0, 0.815188408, -0.548091412, 0.187251225, 0.275173753, 0.650973856, 0.70746851, -0.509651959, -0.52519381, 0.681490421)
  4473. Weld449.Part0 = Part65
  4474. Weld449.Part1 = Part65
  4475. Weld449.part1 = Part65
  4476. Weld450.Parent = Part65
  4477. Weld450.C0 = CFrame.new(0, 0, 0, 0.815187871, -0.54809171, 0.187251464, 0.275173128, 0.65097332, 0.707468987, -0.509651721, -0.525194049, 0.681491852)
  4478. Weld450.C1 = CFrame.new(0, 0, 0, 0.815187871, -0.54809171, 0.187251464, 0.275173128, 0.65097332, 0.707468987, -0.509651721, -0.525194049, 0.681491852)
  4479. Weld450.Part0 = Part65
  4480. Weld450.Part1 = Part65
  4481. Weld450.part1 = Part65
  4482. Weld451.Parent = Part65
  4483. Weld451.C0 = CFrame.new(0, 0, 0, 0.815187395, -0.548092067, 0.187251776, 0.275172532, 0.650972784, 0.707469404, -0.509651363, -0.525194287, 0.681493282)
  4484. Weld451.C1 = CFrame.new(0, 0, 0, 0.815187395, -0.548092067, 0.187251776, 0.275172532, 0.650972784, 0.707469404, -0.509651363, -0.525194287, 0.681493282)
  4485. Weld451.Part0 = Part65
  4486. Weld451.Part1 = Part65
  4487. Weld451.part1 = Part65
  4488. Weld452.Parent = Part65
  4489. Weld452.C0 = CFrame.new(0, 0, 0, 0.829660118, -0.486969709, 0.272988409, 0.246244907, 0.758070529, 0.603896379, -0.50102067, -0.433805913, 0.74886471)
  4490. Weld452.C1 = CFrame.new(0, 0, 0, 0.829660118, -0.486969709, 0.272988409, 0.246244907, 0.758070529, 0.603896379, -0.50102067, -0.433805913, 0.74886471)
  4491. Weld452.Part0 = Part65
  4492. Weld452.Part1 = Part65
  4493. Weld452.part1 = Part65
  4494. Weld453.Parent = Part65
  4495. Weld453.C0 = CFrame.new(0, 0, 0, 0.829659998, -0.48696965, 0.272988379, 0.246244907, 0.758070529, 0.603896379, -0.50102067, -0.433805913, 0.74886471)
  4496. Weld453.C1 = CFrame.new(0, 0, 0, 0.829659998, -0.48696965, 0.272988379, 0.246244907, 0.758070529, 0.603896379, -0.50102067, -0.433805913, 0.74886471)
  4497. Weld453.Part0 = Part65
  4498. Weld453.Part1 = Part65
  4499. Weld453.part1 = Part65
  4500. Weld454.Parent = Part65
  4501. Weld454.C0 = CFrame.new(0, 0, 0, 0.82965982, -0.48696956, 0.272988349, 0.246244907, 0.758070529, 0.603896379, -0.50102067, -0.433805913, 0.74886471)
  4502. Weld454.C1 = CFrame.new(0, 0, 0, 0.82965982, -0.48696956, 0.272988349, 0.246244907, 0.758070529, 0.603896379, -0.50102067, -0.433805913, 0.74886471)
  4503. Weld454.Part0 = Part65
  4504. Weld454.Part1 = Part65
  4505. Weld454.part1 = Part65
  4506. Weld455.Parent = Part65
  4507. Weld455.C0 = CFrame.new(0, 0, 0, 0.919531047, 0.390882343, 0.0409127474, -0.250095785, 0.662264466, -0.706298709, -0.303174734, 0.639231384, 0.706730664)
  4508. Weld455.C1 = CFrame.new(0, 0, 0, 0.919531047, 0.390882343, 0.0409127474, -0.250095785, 0.662264466, -0.706298709, -0.303174734, 0.639231384, 0.706730664)
  4509. Weld455.Part0 = Part65
  4510. Weld455.Part1 = Part65
  4511. Weld455.part1 = Part65
  4512. Weld456.Parent = Part65
  4513. Weld456.C0 = CFrame.new(0, 0, 0, 0.919531047, 0.390882343, 0.0409127474, -0.250095785, 0.662264466, -0.706298709, -0.303174734, 0.639231384, 0.706730664)
  4514. Weld456.C1 = CFrame.new(0, 0, 0, 0.919531047, 0.390882343, 0.0409127474, -0.250095785, 0.662264466, -0.706298709, -0.303174734, 0.639231384, 0.706730664)
  4515. Weld456.Part0 = Part65
  4516. Weld456.Part1 = Part65
  4517. Weld456.part1 = Part65
  4518. Weld457.Parent = Part65
  4519. Weld457.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  4520. Weld457.C1 = CFrame.new(-0.385704041, -0.338516235, -1.40965652, -0.731396437, -0.344936222, -0.588284194, 0.579113424, 0.141383275, -0.802893817, 0.360120684, -0.927916944, 0.0963499695)
  4521. Weld457.Part0 = Part65
  4522. Weld457.Part1 = Part810
  4523. Weld457.part1 = Part810
  4524. Weld458.Parent = Part65
  4525. Weld458.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4526. Weld458.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4527. Weld458.Part0 = Part65
  4528. Weld458.Part1 = Part65
  4529. Weld458.part1 = Part65
  4530. Weld459.Parent = Part65
  4531. Weld459.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4532. Weld459.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4533. Weld459.Part0 = Part65
  4534. Weld459.Part1 = Part65
  4535. Weld459.part1 = Part65
  4536. Weld460.Parent = Part65
  4537. Weld460.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4538. Weld460.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4539. Weld460.Part0 = Part65
  4540. Weld460.Part1 = Part65
  4541. Weld460.part1 = Part65
  4542. Weld461.Parent = Part65
  4543. Weld461.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4544. Weld461.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4545. Weld461.Part0 = Part65
  4546. Weld461.Part1 = Part65
  4547. Weld461.part1 = Part65
  4548. Weld462.Parent = Part65
  4549. Weld462.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4550. Weld462.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4551. Weld462.Part0 = Part65
  4552. Weld462.Part1 = Part65
  4553. Weld462.part1 = Part65
  4554. Weld463.Parent = Part65
  4555. Weld463.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4556. Weld463.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4557. Weld463.Part0 = Part65
  4558. Weld463.Part1 = Part65
  4559. Weld463.part1 = Part65
  4560. Weld464.Parent = Part65
  4561. Weld464.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4562. Weld464.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4563. Weld464.Part0 = Part65
  4564. Weld464.Part1 = Part65
  4565. Weld464.part1 = Part65
  4566. Weld465.Parent = Part65
  4567. Weld465.C0 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4568. Weld465.C1 = CFrame.new(0, 0, 0, 0.990515709, -0.0676827729, 0.119573757, 0.0469859652, 0.984645545, 0.168123931, -0.129116863, -0.160911083, 0.978486896)
  4569. Weld465.Part0 = Part65
  4570. Weld465.Part1 = Part65
  4571. Weld465.part1 = Part65
  4572. Weld466.Parent = Part65
  4573. Weld466.C0 = CFrame.new(0, 0, 0, 0.753592908, -0.60317719, -0.261294961, -0.609825432, -0.78989619, 0.0646293759, -0.245378852, 0.110640034, -0.963092983)
  4574. Weld466.C1 = CFrame.new(0, 0, 0, 0.753592908, -0.60317719, -0.261294961, -0.609825432, -0.78989619, 0.0646293759, -0.245378852, 0.110640034, -0.963092983)
  4575. Weld466.Part0 = Part65
  4576. Weld466.Part1 = Part65
  4577. Weld466.part1 = Part65
  4578. Weld467.Parent = Part65
  4579. Weld467.C0 = CFrame.new(0, 0, 0, 0.753592908, -0.60317719, -0.261294961, -0.609825432, -0.78989619, 0.0646293759, -0.245378852, 0.110640034, -0.963092983)
  4580. Weld467.C1 = CFrame.new(0, 0, 0, 0.753592908, -0.60317719, -0.261294961, -0.609825432, -0.78989619, 0.0646293759, -0.245378852, 0.110640034, -0.963092983)
  4581. Weld467.Part0 = Part65
  4582. Weld467.Part1 = Part65
  4583. Weld467.part1 = Part65
  4584. Weld468.Parent = Part65
  4585. Weld468.C0 = CFrame.new(0, 0, 0, 0.753592908, -0.60317719, -0.261294961, -0.609825432, -0.78989619, 0.0646293759, -0.245378852, 0.110640034, -0.963092983)
  4586. Weld468.C1 = CFrame.new(0, 0, 0, 0.753592908, -0.60317719, -0.261294961, -0.609825432, -0.78989619, 0.0646293759, -0.245378852, 0.110640034, -0.963092983)
  4587. Weld468.Part0 = Part65
  4588. Weld468.Part1 = Part65
  4589. Weld468.part1 = Part65
  4590. Weld469.Parent = Part65
  4591. Weld469.C0 = CFrame.new(0, 0, 0, 0.688040733, -0.578902185, 0.437575519, -0.511167467, -0.814638793, -0.273991764, 0.515080392, -0.0351569057, -0.856420517)
  4592. Weld469.C1 = CFrame.new(0, 0, 0, 0.688040733, -0.578902185, 0.437575519, -0.511167467, -0.814638793, -0.273991764, 0.515080392, -0.0351569057, -0.856420517)
  4593. Weld469.Part0 = Part65
  4594. Weld469.Part1 = Part65
  4595. Weld469.part1 = Part65
  4596. Weld470.Parent = Part65
  4597. Weld470.C0 = CFrame.new(0, 0, 0, 0.917599261, 0.264215916, 0.296987385, -0.302570552, -0.0203045793, 0.952910364, 0.257804841, -0.964250445, 0.0613129288)
  4598. Weld470.C1 = CFrame.new(0, 0, 0, 0.917599261, 0.264215916, 0.296987385, -0.302570552, -0.0203045793, 0.952910364, 0.257804841, -0.964250445, 0.0613129288)
  4599. Weld470.Part0 = Part65
  4600. Weld470.Part1 = Part65
  4601. Weld470.part1 = Part65
  4602. Weld471.Parent = Part65
  4603. Weld471.C0 = CFrame.new(0, 0, 0, 0.917599499, 0.264215767, 0.296986908, -0.302570879, -0.0203048289, 0.952909887, 0.257805169, -0.964251161, 0.0613131523)
  4604. Weld471.C1 = CFrame.new(0, 0, 0, 0.917599499, 0.264215767, 0.296986908, -0.302570879, -0.0203048289, 0.952909887, 0.257805169, -0.964251161, 0.0613131523)
  4605. Weld471.Part0 = Part65
  4606. Weld471.Part1 = Part65
  4607. Weld471.part1 = Part65
  4608. Weld472.Parent = Part65
  4609. Weld472.C0 = CFrame.new(0, 0, 0, 0.917599678, 0.264215589, 0.296986431, -0.302571207, -0.0203050785, 0.952909529, 0.257805496, -0.964251816, 0.0613133684)
  4610. Weld472.C1 = CFrame.new(0, 0, 0, 0.917599678, 0.264215589, 0.296986431, -0.302571207, -0.0203050785, 0.952909529, 0.257805496, -0.964251816, 0.0613133684)
  4611. Weld472.Part0 = Part65
  4612. Weld472.Part1 = Part65
  4613. Weld472.part1 = Part65
  4614. Weld473.Parent = Part65
  4615. Weld473.C0 = CFrame.new(0, 0, 0, 0.917599916, 0.26421541, 0.296985984, -0.302571565, -0.0203053225, 0.952909172, 0.257805794, -0.964252472, 0.061313577)
  4616. Weld473.C1 = CFrame.new(0, 0, 0, 0.917599916, 0.26421541, 0.296985984, -0.302571565, -0.0203053225, 0.952909172, 0.257805794, -0.964252472, 0.061313577)
  4617. Weld473.Part0 = Part65
  4618. Weld473.Part1 = Part65
  4619. Weld473.part1 = Part65
  4620. Weld474.Parent = Part65
  4621. Weld474.C0 = CFrame.new(0, 0, 0, 0.917600155, 0.264215231, 0.296985477, -0.302571923, -0.0203055721, 0.952908695, 0.257806122, -0.964253128, 0.0613137893)
  4622. Weld474.C1 = CFrame.new(0, 0, 0, 0.917600155, 0.264215231, 0.296985477, -0.302571923, -0.0203055721, 0.952908695, 0.257806122, -0.964253128, 0.0613137893)
  4623. Weld474.Part0 = Part65
  4624. Weld474.Part1 = Part65
  4625. Weld474.part1 = Part65
  4626. Weld475.Parent = Part65
  4627. Weld475.C0 = CFrame.new(0, 0, 0, 0.917600274, 0.264215052, 0.296985, -0.30257228, -0.0203058179, 0.952908278, 0.25780645, -0.964253843, 0.0613140091)
  4628. Weld475.C1 = CFrame.new(0, 0, 0, 0.917600274, 0.264215052, 0.296985, -0.30257228, -0.0203058179, 0.952908278, 0.25780645, -0.964253843, 0.0613140091)
  4629. Weld475.Part0 = Part65
  4630. Weld475.Part1 = Part65
  4631. Weld475.part1 = Part65
  4632. Weld476.Parent = Part65
  4633. Weld476.C0 = CFrame.new(0, 0, 0, 0.917600453, 0.264214873, 0.296984524, -0.302572608, -0.0203060601, 0.95290786, 0.257806778, -0.964254498, 0.0613142252)
  4634. Weld476.C1 = CFrame.new(0, 0, 0, 0.917600453, 0.264214873, 0.296984524, -0.302572608, -0.0203060601, 0.95290786, 0.257806778, -0.964254498, 0.0613142252)
  4635. Weld476.Part0 = Part65
  4636. Weld476.Part1 = Part65
  4637. Weld476.part1 = Part65
  4638. Weld477.Parent = Part65
  4639. Weld477.C0 = CFrame.new(0, 0, 0, 0.917600632, 0.264214694, 0.296984047, -0.302572966, -0.0203063115, 0.952907443, 0.257807106, -0.964255333, 0.0613144375)
  4640. Weld477.C1 = CFrame.new(0, 0, 0, 0.917600632, 0.264214694, 0.296984047, -0.302572966, -0.0203063115, 0.952907443, 0.257807106, -0.964255333, 0.0613144375)
  4641. Weld477.Part0 = Part65
  4642. Weld477.Part1 = Part65
  4643. Weld477.part1 = Part65
  4644. Weld478.Parent = Part65
  4645. Weld478.C0 = CFrame.new(0, 0, 0, 0.91760093, 0.264214575, 0.2969836, -0.302573323, -0.0203065556, 0.952906966, 0.257807434, -0.964256048, 0.0613146536)
  4646. Weld478.C1 = CFrame.new(0, 0, 0, 0.91760093, 0.264214575, 0.2969836, -0.302573323, -0.0203065556, 0.952906966, 0.257807434, -0.964256048, 0.0613146536)
  4647. Weld478.Part0 = Part65
  4648. Weld478.Part1 = Part65
  4649. Weld478.part1 = Part65
  4650. Weld479.Parent = Part65
  4651. Weld479.C0 = CFrame.new(0, 0, 0, 0.918824553, 0.261843801, 0.29529497, -0.304675072, -0.00503150746, 0.952439964, 0.250881314, -0.965103328, 0.0751583725)
  4652. Weld479.C1 = CFrame.new(0, 0, 0, 0.918824553, 0.261843801, 0.29529497, -0.304675072, -0.00503150746, 0.952439964, 0.250881314, -0.965103328, 0.0751583725)
  4653. Weld479.Part0 = Part65
  4654. Weld479.Part1 = Part65
  4655. Weld479.part1 = Part65
  4656. Weld480.Parent = Part65
  4657. Weld480.C0 = CFrame.new(0, 0, 0, 0.918824434, 0.261843741, 0.295294911, -0.304675013, -0.00503163645, 0.952439845, 0.250881284, -0.965103209, 0.0751584917)
  4658. Weld480.C1 = CFrame.new(0, 0, 0, 0.918824434, 0.261843741, 0.295294911, -0.304675013, -0.00503163645, 0.952439845, 0.250881284, -0.965103209, 0.0751584917)
  4659. Weld480.Part0 = Part65
  4660. Weld480.Part1 = Part65
  4661. Weld480.part1 = Part65
  4662. Weld481.Parent = Part65
  4663. Weld481.C0 = CFrame.new(0, 0, 0, 0.918824196, 0.261843652, 0.295294821, -0.304674953, -0.00503176497, 0.952439785, 0.250881225, -0.96510303, 0.0751586035)
  4664. Weld481.C1 = CFrame.new(0, 0, 0, 0.918824196, 0.261843652, 0.295294821, -0.304674953, -0.00503176497, 0.952439785, 0.250881225, -0.96510303, 0.0751586035)
  4665. Weld481.Part0 = Part65
  4666. Weld481.Part1 = Part65
  4667. Weld481.part1 = Part65
  4668. Weld482.Parent = Part65
  4669. Weld482.C0 = CFrame.new(0, 0, 0, 0.688040733, -0.578902185, 0.437575519, -0.511167467, -0.814638793, -0.273991764, 0.515080392, -0.0351569057, -0.856420517)
  4670. Weld482.C1 = CFrame.new(0, 0, 0, 0.688040733, -0.578902185, 0.437575519, -0.511167467, -0.814638793, -0.273991764, 0.515080392, -0.0351569057, -0.856420517)
  4671. Weld482.Part0 = Part65
  4672. Weld482.Part1 = Part65
  4673. Weld482.part1 = Part65
  4674. Weld483.Parent = Part65
  4675. Weld483.C0 = CFrame.new(0, 0, 0, 0.688040733, -0.578902185, 0.437575519, -0.511167467, -0.814638793, -0.273991764, 0.515080392, -0.0351569057, -0.856420517)
  4676. Weld483.C1 = CFrame.new(0, 0, 0, 0.688040733, -0.578902185, 0.437575519, -0.511167467, -0.814638793, -0.273991764, 0.515080392, -0.0351569057, -0.856420517)
  4677. Weld483.Part0 = Part65
  4678. Weld483.Part1 = Part65
  4679. Weld483.part1 = Part65
  4680. Weld484.Parent = Part65
  4681. Weld484.C0 = CFrame.new(0, 0, 0, 0.573060036, -0.198518112, 0.795105457, -0.718602955, -0.588142037, 0.371077687, 0.393969297, -0.784015, -0.479696423)
  4682. Weld484.C1 = CFrame.new(0, 0, 0, 0.573060036, -0.198518112, 0.795105457, -0.718602955, -0.588142037, 0.371077687, 0.393969297, -0.784015, -0.479696423)
  4683. Weld484.Part0 = Part65
  4684. Weld484.Part1 = Part65
  4685. Weld484.part1 = Part65
  4686. Weld485.Parent = Part65
  4687. Weld485.C0 = CFrame.new(0, 0, 0, 0.917584717, 0.264221072, 0.297027737, -0.30260995, -0.0203120466, 0.952898026, 0.257808954, -0.9642483, 0.0613178909)
  4688. Weld485.C1 = CFrame.new(0, 0, 0, 0.917584717, 0.264221072, 0.297027737, -0.30260995, -0.0203120466, 0.952898026, 0.257808954, -0.9642483, 0.0613178909)
  4689. Weld485.Part0 = Part65
  4690. Weld485.Part1 = Part65
  4691. Weld485.part1 = Part65
  4692. Weld486.Parent = Part65
  4693. Weld486.C0 = CFrame.new(0, 0, 0, 0.91759479, 0.264211595, 0.2970047, -0.30259499, -0.0203074943, 0.952899575, 0.257803708, -0.964256585, 0.0613197945)
  4694. Weld486.C1 = CFrame.new(0, 0, 0, 0.91759479, 0.264211595, 0.2970047, -0.30259499, -0.0203074943, 0.952899575, 0.257803708, -0.964256585, 0.0613197945)
  4695. Weld486.Part0 = Part65
  4696. Weld486.Part1 = Part65
  4697. Weld486.part1 = Part65
  4698. Weld487.Parent = Part65
  4699. Weld487.C0 = CFrame.new(0, 0, 0, 0.917598605, 0.264208108, 0.296995968, -0.302585542, -0.020308014, 0.952902555, 0.257801145, -0.964257538, 0.0613156781)
  4700. Weld487.C1 = CFrame.new(0, 0, 0, 0.917598605, 0.264208108, 0.296995968, -0.302585542, -0.020308014, 0.952902555, 0.257801145, -0.964257538, 0.0613156781)
  4701. Weld487.Part0 = Part65
  4702. Weld487.Part1 = Part65
  4703. Weld487.part1 = Part65
  4704. Weld488.Parent = Part65
  4705. Weld488.C0 = CFrame.new(0, 0, 0, 0.91760242, 0.264204592, 0.296987265, -0.302576095, -0.0203085467, 0.952905416, 0.257798582, -0.964258492, 0.0613115691)
  4706. Weld488.C1 = CFrame.new(0, 0, 0, 0.91760242, 0.264204592, 0.296987265, -0.302576095, -0.0203085467, 0.952905416, 0.257798582, -0.964258492, 0.0613115691)
  4707. Weld488.Part0 = Part65
  4708. Weld488.Part1 = Part65
  4709. Weld488.part1 = Part65
  4710. Weld489.Parent = Part65
  4711. Weld489.C0 = CFrame.new(0, 0, 0, 0.917606235, 0.264201045, 0.296978533, -0.302566677, -0.0203090832, 0.952908456, 0.257796019, -0.964259446, 0.0613074489)
  4712. Weld489.C1 = CFrame.new(0, 0, 0, 0.917606235, 0.264201045, 0.296978533, -0.302566677, -0.0203090832, 0.952908456, 0.257796019, -0.964259446, 0.0613074489)
  4713. Weld489.Part0 = Part65
  4714. Weld489.Part1 = Part65
  4715. Weld489.part1 = Part65
  4716. Weld490.Parent = Part65
  4717. Weld490.C0 = CFrame.new(0, 0, 0, 0.917610049, 0.264197499, 0.296969801, -0.30255726, -0.0203096177, 0.952911437, 0.257793397, -0.964260399, 0.0613033138)
  4718. Weld490.C1 = CFrame.new(0, 0, 0, 0.917610049, 0.264197499, 0.296969801, -0.30255726, -0.0203096177, 0.952911437, 0.257793397, -0.964260399, 0.0613033138)
  4719. Weld490.Part0 = Part65
  4720. Weld490.Part1 = Part65
  4721. Weld490.part1 = Part65
  4722. Weld491.Parent = Part65
  4723. Weld491.C0 = CFrame.new(0, 0, 0, 0.917613864, 0.264193982, 0.296961069, -0.302547812, -0.0203101486, 0.952914417, 0.257790804, -0.964261353, 0.0612991899)
  4724. Weld491.C1 = CFrame.new(0, 0, 0, 0.917613864, 0.264193982, 0.296961069, -0.302547812, -0.0203101486, 0.952914417, 0.257790804, -0.964261353, 0.0612991899)
  4725. Weld491.Part0 = Part65
  4726. Weld491.Part1 = Part65
  4727. Weld491.part1 = Part65
  4728. Weld492.Parent = Part65
  4729. Weld492.C0 = CFrame.new(0, 0, 0, 0.917617798, 0.264190495, 0.296952367, -0.302538395, -0.0203106776, 0.952917457, 0.257788241, -0.964262307, 0.0612950735)
  4730. Weld492.C1 = CFrame.new(0, 0, 0, 0.917617798, 0.264190495, 0.296952367, -0.302538395, -0.0203106776, 0.952917457, 0.257788241, -0.964262307, 0.0612950735)
  4731. Weld492.Part0 = Part65
  4732. Weld492.Part1 = Part65
  4733. Weld492.part1 = Part65
  4734. Weld493.Parent = Part65
  4735. Weld493.C0 = CFrame.new(0, 0, 0, 0.917621672, 0.264187008, 0.296943635, -0.302528948, -0.0203112066, 0.952920496, 0.257785648, -0.96426326, 0.0612909533)
  4736. Weld493.C1 = CFrame.new(0, 0, 0, 0.917621672, 0.264187008, 0.296943635, -0.302528948, -0.0203112066, 0.952920496, 0.257785648, -0.96426326, 0.0612909533)
  4737. Weld493.Part0 = Part65
  4738. Weld493.Part1 = Part65
  4739. Weld493.part1 = Part65
  4740. Weld494.Parent = Part65
  4741. Weld494.C0 = CFrame.new(0, 0, 0, 0.918844998, 0.261811048, 0.295260489, -0.304591566, -0.00517172134, 0.952468991, 0.25089398, -0.965105295, 0.0749933124)
  4742. Weld494.C1 = CFrame.new(0, 0, 0, 0.918844998, 0.261811048, 0.295260489, -0.304591566, -0.00517172134, 0.952468991, 0.25089398, -0.965105295, 0.0749933124)
  4743. Weld494.Part0 = Part65
  4744. Weld494.Part1 = Part65
  4745. Weld494.part1 = Part65
  4746. Weld495.Parent = Part65
  4747. Weld495.C0 = CFrame.new(0, 0, 0, 0.918844998, 0.261811078, 0.295260549, -0.304591596, -0.00517157465, 0.952469051, 0.25089404, -0.965105295, 0.0749931782)
  4748. Weld495.C1 = CFrame.new(0, 0, 0, 0.918844998, 0.261811078, 0.295260549, -0.304591596, -0.00517157465, 0.952469051, 0.25089404, -0.965105295, 0.0749931782)
  4749. Weld495.Part0 = Part65
  4750. Weld495.Part1 = Part65
  4751. Weld495.part1 = Part65
  4752. Weld496.Parent = Part65
  4753. Weld496.C0 = CFrame.new(0, 0, 0, 0.918844998, 0.261811078, 0.295260608, -0.304591596, -0.00517143589, 0.952469051, 0.250894099, -0.965105295, 0.0749930516)
  4754. Weld496.C1 = CFrame.new(0, 0, 0, 0.918844998, 0.261811078, 0.295260608, -0.304591596, -0.00517143589, 0.952469051, 0.250894099, -0.965105295, 0.0749930516)
  4755. Weld496.Part0 = Part65
  4756. Weld496.Part1 = Part65
  4757. Weld496.part1 = Part65
  4758. Weld497.Parent = Part65
  4759. Weld497.C0 = CFrame.new(0, 0, 0, 0.573060036, -0.198518112, 0.795105457, -0.718602955, -0.588142037, 0.371077687, 0.393969297, -0.784015, -0.479696423)
  4760. Weld497.C1 = CFrame.new(0, 0, 0, 0.573060036, -0.198518112, 0.795105457, -0.718602955, -0.588142037, 0.371077687, 0.393969297, -0.784015, -0.479696423)
  4761. Weld497.Part0 = Part65
  4762. Weld497.Part1 = Part65
  4763. Weld497.part1 = Part65
  4764. Weld498.Parent = Part65
  4765. Weld498.C0 = CFrame.new(0, 0, 0, 0.573060036, -0.198518112, 0.795105457, -0.718602955, -0.588142037, 0.371077687, 0.393969297, -0.784015, -0.479696423)
  4766. Weld498.C1 = CFrame.new(0, 0, 0, 0.573060036, -0.198518112, 0.795105457, -0.718602955, -0.588142037, 0.371077687, 0.393969297, -0.784015, -0.479696423)
  4767. Weld498.Part0 = Part65
  4768. Weld498.Part1 = Part65
  4769. Weld498.part1 = Part65
  4770. Weld499.Parent = Part65
  4771. Weld499.C0 = CFrame.new(0, 0, 0, 0.568618894, 0.149774387, 0.808851182, -0.788333356, -0.181630403, 0.587827206, 0.234953433, -0.971894085, 0.0147936866)
  4772. Weld499.C1 = CFrame.new(0, 0, 0, 0.568618894, 0.149774387, 0.808851182, -0.788333356, -0.181630403, 0.587827206, 0.234953433, -0.971894085, 0.0147936866)
  4773. Weld499.Part0 = Part65
  4774. Weld499.Part1 = Part65
  4775. Weld499.part1 = Part65
  4776. Weld500.Parent = Part65
  4777. Weld500.C0 = CFrame.new(0, 0, 0, 0.917576015, 0.264218658, 0.297054768, -0.302638918, -0.0203031842, 0.952888846, 0.257802784, -0.964249015, 0.0613321103)
  4778. Weld500.C1 = CFrame.new(0, 0, 0, 0.917576015, 0.264218658, 0.297054768, -0.302638918, -0.0203031842, 0.952888846, 0.257802784, -0.964249015, 0.0613321103)
  4779. Weld500.Part0 = Part65
  4780. Weld500.Part1 = Part65
  4781. Weld500.part1 = Part65
  4782. Weld501.Parent = Part65
  4783. Weld501.C0 = CFrame.new(0, 0, 0, 0.917575359, 0.264218479, 0.297055304, -0.302638352, -0.0203024596, 0.952888846, 0.257802963, -0.964248955, 0.0613315925)
  4784. Weld501.C1 = CFrame.new(0, 0, 0, 0.917575359, 0.264218479, 0.297055304, -0.302638352, -0.0203024596, 0.952888846, 0.257802963, -0.964248955, 0.0613315925)
  4785. Weld501.Part0 = Part65
  4786. Weld501.Part1 = Part65
  4787. Weld501.part1 = Part65
  4788. Weld502.Parent = Part65
  4789. Weld502.C0 = CFrame.new(0, 0, 0, 0.917574704, 0.264218271, 0.297055811, -0.302637786, -0.020301735, 0.952888846, 0.257803172, -0.964248955, 0.0613310821)
  4790. Weld502.C1 = CFrame.new(0, 0, 0, 0.917574704, 0.264218271, 0.297055811, -0.302637786, -0.020301735, 0.952888846, 0.257803172, -0.964248955, 0.0613310821)
  4791. Weld502.Part0 = Part65
  4792. Weld502.Part1 = Part65
  4793. Weld502.part1 = Part65
  4794. Weld503.Parent = Part65
  4795. Weld503.C0 = CFrame.new(0, 0, 0, 0.917573988, 0.264218062, 0.297056317, -0.302637219, -0.0203010123, 0.952888846, 0.25780338, -0.964248955, 0.0613305718)
  4796. Weld503.C1 = CFrame.new(0, 0, 0, 0.917573988, 0.264218062, 0.297056317, -0.302637219, -0.0203010123, 0.952888846, 0.25780338, -0.964248955, 0.0613305718)
  4797. Weld503.Part0 = Part65
  4798. Weld503.Part1 = Part65
  4799. Weld503.part1 = Part65
  4800. Weld504.Parent = Part65
  4801. Weld504.C0 = CFrame.new(0, 0, 0, 0.917573154, 0.264217854, 0.297056854, -0.302636683, -0.0203002933, 0.952888846, 0.257803559, -0.964248896, 0.061330054)
  4802. Weld504.C1 = CFrame.new(0, 0, 0, 0.917573154, 0.264217854, 0.297056854, -0.302636683, -0.0203002933, 0.952888846, 0.257803559, -0.964248896, 0.061330054)
  4803. Weld504.Part0 = Part65
  4804. Weld504.Part1 = Part65
  4805. Weld504.part1 = Part65
  4806. Weld505.Parent = Part65
  4807. Weld505.C0 = CFrame.new(0, 0, 0, 0.917572439, 0.264217645, 0.29705739, -0.302636087, -0.020299565, 0.952888846, 0.257803768, -0.964248896, 0.0613295399)
  4808. Weld505.C1 = CFrame.new(0, 0, 0, 0.917572439, 0.264217645, 0.29705739, -0.302636087, -0.020299565, 0.952888846, 0.257803768, -0.964248896, 0.0613295399)
  4809. Weld505.Part0 = Part65
  4810. Weld505.Part1 = Part65
  4811. Weld505.part1 = Part65
  4812. Weld506.Parent = Part65
  4813. Weld506.C0 = CFrame.new(0, 0, 0, 0.917571723, 0.264217496, 0.297057927, -0.302635521, -0.0202988423, 0.952888846, 0.257803977, -0.964248896, 0.0613290258)
  4814. Weld506.C1 = CFrame.new(0, 0, 0, 0.917571723, 0.264217496, 0.297057927, -0.302635521, -0.0202988423, 0.952888846, 0.257803977, -0.964248896, 0.0613290258)
  4815. Weld506.Part0 = Part65
  4816. Weld506.Part1 = Part65
  4817. Weld506.part1 = Part65
  4818. Weld507.Parent = Part65
  4819. Weld507.C0 = CFrame.new(0, 0, 0, 0.917574883, 0.26421839, 0.297059715, -0.302645236, -0.0203009956, 0.952886939, 0.257801175, -0.964249134, 0.0613362752)
  4820. Weld507.C1 = CFrame.new(0, 0, 0, 0.917574883, 0.26421839, 0.297059715, -0.302645236, -0.0203009956, 0.952886939, 0.257801175, -0.964249134, 0.0613362752)
  4821. Weld507.Part0 = Part65
  4822. Weld507.Part1 = Part65
  4823. Weld507.part1 = Part65
  4824. Weld508.Parent = Part65
  4825. Weld508.C0 = CFrame.new(0, 0, 0, 0.917574167, 0.264218211, 0.297060251, -0.30264467, -0.0203002747, 0.952886939, 0.257801354, -0.964249134, 0.0613357574)
  4826. Weld508.C1 = CFrame.new(0, 0, 0, 0.917574167, 0.264218211, 0.297060251, -0.30264467, -0.0203002747, 0.952886939, 0.257801354, -0.964249134, 0.0613357574)
  4827. Weld508.Part0 = Part65
  4828. Weld508.Part1 = Part65
  4829. Weld508.part1 = Part65
  4830. Weld509.Parent = Part65
  4831. Weld509.C0 = CFrame.new(0, 0, 0, 0.918842554, 0.261754543, 0.29531461, -0.30478403, -0.00461925333, 0.952409863, 0.250662863, -0.965123355, 0.0755323321)
  4832. Weld509.C1 = CFrame.new(0, 0, 0, 0.918842554, 0.261754543, 0.29531461, -0.30478403, -0.00461925333, 0.952409863, 0.250662863, -0.965123355, 0.0755323321)
  4833. Weld509.Part0 = Part65
  4834. Weld509.Part1 = Part65
  4835. Weld509.part1 = Part65
  4836. Weld510.Parent = Part65
  4837. Weld510.C0 = CFrame.new(0, 0, 0, 0.918842554, 0.261754543, 0.29531461, -0.30478403, -0.00461929385, 0.952409804, 0.250662833, -0.965123475, 0.0755323693)
  4838. Weld510.C1 = CFrame.new(0, 0, 0, 0.918842554, 0.261754543, 0.29531461, -0.30478403, -0.00461929385, 0.952409804, 0.250662833, -0.965123475, 0.0755323693)
  4839. Weld510.Part0 = Part65
  4840. Weld510.Part1 = Part65
  4841. Weld510.part1 = Part65
  4842. Weld511.Parent = Part65
  4843. Weld511.C0 = CFrame.new(0, 0, 0, 0.918842554, 0.261754543, 0.29531461, -0.30478403, -0.00461932644, 0.952409744, 0.250662804, -0.965123594, 0.0755323991)
  4844. Weld511.C1 = CFrame.new(0, 0, 0, 0.918842554, 0.261754543, 0.29531461, -0.30478403, -0.00461932644, 0.952409744, 0.250662804, -0.965123594, 0.0755323991)
  4845. Weld511.Part0 = Part65
  4846. Weld511.Part1 = Part65
  4847. Weld511.part1 = Part65
  4848. Weld512.Parent = Part65
  4849. Weld512.C0 = CFrame.new(0, 0, 0, 0.568618894, 0.149774387, 0.808851182, -0.788333356, -0.181630403, 0.587827206, 0.234953433, -0.971894085, 0.0147936866)
  4850. Weld512.C1 = CFrame.new(0, 0, 0, 0.568618894, 0.149774387, 0.808851182, -0.788333356, -0.181630403, 0.587827206, 0.234953433, -0.971894085, 0.0147936866)
  4851. Weld512.Part0 = Part65
  4852. Weld512.Part1 = Part65
  4853. Weld512.part1 = Part65
  4854. Weld513.Parent = Part65
  4855. Weld513.C0 = CFrame.new(0, 0, 0, 0.568618894, 0.149774387, 0.808851182, -0.788333356, -0.181630403, 0.587827206, 0.234953433, -0.971894085, 0.0147936866)
  4856. Weld513.C1 = CFrame.new(0, 0, 0, 0.568618894, 0.149774387, 0.808851182, -0.788333356, -0.181630403, 0.587827206, 0.234953433, -0.971894085, 0.0147936866)
  4857. Weld513.Part0 = Part65
  4858. Weld513.Part1 = Part65
  4859. Weld513.part1 = Part65
  4860. Weld514.Parent = Part65
  4861. Weld514.C0 = CFrame.new(0, 0, 0, 0.563812196, 0.0590397418, 0.823787868, -0.777267516, -0.299282938, 0.553427577, 0.279224128, -0.952336013, -0.122852236)
  4862. Weld514.C1 = CFrame.new(0, 0, 0, 0.563812196, 0.0590397418, 0.823787868, -0.777267516, -0.299282938, 0.553427577, 0.279224128, -0.952336013, -0.122852236)
  4863. Weld514.Part0 = Part65
  4864. Weld514.Part1 = Part65
  4865. Weld514.part1 = Part65
  4866. Weld515.Parent = Part65
  4867. Weld515.C0 = CFrame.new(0, 0, 0, 0.563809335, 0.0590389147, 0.823787391, -0.777265668, -0.299280584, 0.553428829, 0.279225945, -0.952336609, -0.122853361)
  4868. Weld515.C1 = CFrame.new(0, 0, 0, 0.563809335, 0.0590389147, 0.823787391, -0.777265668, -0.299280584, 0.553428829, 0.279225945, -0.952336609, -0.122853361)
  4869. Weld515.Part0 = Part65
  4870. Weld515.Part1 = Part65
  4871. Weld515.part1 = Part65
  4872. Weld516.Parent = Part65
  4873. Weld516.C0 = CFrame.new(0, 0, 0, 0.563809216, 0.0590383857, 0.823790967, -0.77727282, -0.299279988, 0.553422928, 0.279219478, -0.952337086, -0.122849174)
  4874. Weld516.C1 = CFrame.new(0, 0, 0, 0.563809216, 0.0590383857, 0.823790967, -0.77727282, -0.299279988, 0.553422928, 0.279219478, -0.952337086, -0.122849174)
  4875. Weld516.Part0 = Part65
  4876. Weld516.Part1 = Part65
  4877. Weld516.part1 = Part65
  4878. Weld517.Parent = Part65
  4879. Weld517.C0 = CFrame.new(0, 0, 0, 0.563814819, 0.0590405613, 0.823788106, -0.777269304, -0.299285263, 0.553426266, 0.27922222, -0.952335298, -0.122851051)
  4880. Weld517.C1 = CFrame.new(0, 0, 0, 0.563814819, 0.0590405613, 0.823788106, -0.777269304, -0.299285263, 0.553426266, 0.27922222, -0.952335298, -0.122851051)
  4881. Weld517.Part0 = Part65
  4882. Weld517.Part1 = Part65
  4883. Weld517.part1 = Part65
  4884. Weld518.Parent = Part65
  4885. Weld518.C0 = CFrame.new(0, 0, 0, 0.563807487, 0.0590391494, 0.823791087, -0.777272224, -0.299277812, 0.553423643, 0.279220313, -0.952337682, -0.122848168)
  4886. Weld518.C1 = CFrame.new(0, 0, 0, 0.563807487, 0.0590391494, 0.823791087, -0.777272224, -0.299277812, 0.553423643, 0.279220313, -0.952337682, -0.122848168)
  4887. Weld518.Part0 = Part65
  4888. Weld518.Part1 = Part65
  4889. Weld518.part1 = Part65
  4890. Weld519.Parent = Part65
  4891. Weld519.C0 = CFrame.new(0, 0, 0, 0.563807666, 0.0590391792, 0.823791265, -0.777272284, -0.299277812, 0.553423643, 0.279220402, -0.952337801, -0.122848228)
  4892. Weld519.C1 = CFrame.new(0, 0, 0, 0.563807666, 0.0590391792, 0.823791265, -0.777272284, -0.299277812, 0.553423643, 0.279220402, -0.952337801, -0.122848228)
  4893. Weld519.Part0 = Part65
  4894. Weld519.Part1 = Part65
  4895. Weld519.part1 = Part65
  4896. Weld520.Parent = Part65
  4897. Weld520.C0 = CFrame.new(0, 0, 0, 0.563807845, 0.0590392016, 0.823791444, -0.777272284, -0.299277812, 0.553423584, 0.279220492, -0.952337921, -0.122848257)
  4898. Weld520.C1 = CFrame.new(0, 0, 0, 0.563807845, 0.0590392016, 0.823791444, -0.777272284, -0.299277812, 0.553423584, 0.279220492, -0.952337921, -0.122848257)
  4899. Weld520.Part0 = Part65
  4900. Weld520.Part1 = Part65
  4901. Weld520.part1 = Part65
  4902. Weld521.Parent = Part65
  4903. Weld521.C0 = CFrame.new(0, 0, 0, 0.563814819, 0.0590405613, 0.823788106, -0.777269304, -0.299285263, 0.553426266, 0.27922222, -0.952335298, -0.122851051)
  4904. Weld521.C1 = CFrame.new(0, 0, 0, 0.563814819, 0.0590405613, 0.823788106, -0.777269304, -0.299285263, 0.553426266, 0.27922222, -0.952335298, -0.122851051)
  4905. Weld521.Part0 = Part65
  4906. Weld521.Part1 = Part65
  4907. Weld521.part1 = Part65
  4908. Weld522.Parent = Part65
  4909. Weld522.C0 = CFrame.new(0, 0, 0, 0.563814819, 0.0590405613, 0.823788106, -0.777269304, -0.299285263, 0.553426266, 0.27922222, -0.952335298, -0.122851051)
  4910. Weld522.C1 = CFrame.new(0, 0, 0, 0.563814819, 0.0590405613, 0.823788106, -0.777269304, -0.299285263, 0.553426266, 0.27922222, -0.952335298, -0.122851051)
  4911. Weld522.Part0 = Part65
  4912. Weld522.Part1 = Part65
  4913. Weld522.part1 = Part65
  4914. Weld523.Parent = Part65
  4915. Weld523.C0 = CFrame.new(0, 0, 0, 0.563812256, 0.0590446927, 0.823789775, -0.777269542, -0.299288452, 0.553424478, 0.279227525, -0.952334106, -0.122848853)
  4916. Weld523.C1 = CFrame.new(0, 0, 0, 0.563812256, 0.0590446927, 0.823789775, -0.777269542, -0.299288452, 0.553424478, 0.279227525, -0.952334106, -0.122848853)
  4917. Weld523.Part0 = Part65
  4918. Weld523.Part1 = Part65
  4919. Weld523.part1 = Part65
  4920. Weld524.Parent = Part65
  4921. Weld524.C0 = CFrame.new(0, 0, 0, 0.563806415, 0.0590376966, 0.823791623, -0.777272522, -0.299278349, 0.553422272, 0.279220015, -0.952337801, -0.122849286)
  4922. Weld524.C1 = CFrame.new(0, 0, 0, 0.563806415, 0.0590376966, 0.823791623, -0.777272522, -0.299278349, 0.553422272, 0.279220015, -0.952337801, -0.122849286)
  4923. Weld524.Part0 = Part65
  4924. Weld524.Part1 = Part65
  4925. Weld524.part1 = Part65
  4926. Weld525.Parent = Part65
  4927. Weld525.C0 = CFrame.new(0, 0, 0, 0.563805461, 0.0590446852, 0.823794365, -0.777274907, -0.299285442, 0.553418458, 0.279226065, -0.95233506, -0.122844793)
  4928. Weld525.C1 = CFrame.new(0, 0, 0, 0.563805461, 0.0590446852, 0.823794365, -0.777274907, -0.299285442, 0.553418458, 0.279226065, -0.95233506, -0.122844793)
  4929. Weld525.Part0 = Part65
  4930. Weld525.Part1 = Part65
  4931. Weld525.part1 = Part65
  4932. Weld526.Parent = Part65
  4933. Weld526.C0 = CFrame.new(0, 0, 0, 0.533033192, -0.146879047, 0.83324796, -0.815814853, -0.350325704, 0.460128158, 0.224324927, -0.925039649, -0.306561321)
  4934. Weld526.C1 = CFrame.new(0, 0, 0, 0.533033192, -0.146879047, 0.83324796, -0.815814853, -0.350325704, 0.460128158, 0.224324927, -0.925039649, -0.306561321)
  4935. Weld526.Part0 = Part65
  4936. Weld526.Part1 = Part65
  4937. Weld526.part1 = Part65
  4938. Weld527.Parent = Part65
  4939. Weld527.C0 = CFrame.new(0, 0, 0, 0.175578311, -0.470402867, -0.864808261, 0.972156346, 0.221325725, 0.0769851431, 0.155190319, -0.854245842, 0.496165216)
  4940. Weld527.C1 = CFrame.new(0, 0, 0, 0.175578311, -0.470402867, -0.864808261, 0.972156346, 0.221325725, 0.0769851431, 0.155190319, -0.854245842, 0.496165216)
  4941. Weld527.Part0 = Part65
  4942. Weld527.Part1 = Part65
  4943. Weld527.part1 = Part65
  4944. Weld528.Parent = Part65
  4945. Weld528.C0 = CFrame.new(0, 0, 0, 0.175578222, -0.470402837, -0.864808261, 0.972156167, 0.221325681, 0.0769852102, 0.155190334, -0.854245722, 0.496165186)
  4946. Weld528.C1 = CFrame.new(0, 0, 0, 0.175578222, -0.470402837, -0.864808261, 0.972156167, 0.221325681, 0.0769852102, 0.155190334, -0.854245722, 0.496165186)
  4947. Weld528.Part0 = Part65
  4948. Weld528.Part1 = Part65
  4949. Weld528.part1 = Part65
  4950. Weld529.Parent = Part65
  4951. Weld529.C0 = CFrame.new(0, 0, 0, 0.175578132, -0.470402837, -0.864808261, 0.972155988, 0.221325666, 0.0769852698, 0.155190334, -0.854245603, 0.496165186)
  4952. Weld529.C1 = CFrame.new(0, 0, 0, 0.175578132, -0.470402837, -0.864808261, 0.972155988, 0.221325666, 0.0769852698, 0.155190334, -0.854245603, 0.496165186)
  4953. Weld529.Part0 = Part65
  4954. Weld529.Part1 = Part65
  4955. Weld529.part1 = Part65
  4956. Weld530.Parent = Part65
  4957. Weld530.C0 = CFrame.new(0, 0, 0, 0.533033192, -0.146879047, 0.83324796, -0.815814853, -0.350325704, 0.460128158, 0.224324927, -0.925039649, -0.306561321)
  4958. Weld530.C1 = CFrame.new(0, 0, 0, 0.533033192, -0.146879047, 0.83324796, -0.815814853, -0.350325704, 0.460128158, 0.224324927, -0.925039649, -0.306561321)
  4959. Weld530.Part0 = Part65
  4960. Weld530.Part1 = Part65
  4961. Weld530.part1 = Part65
  4962. Weld531.Parent = Part65
  4963. Weld531.C0 = CFrame.new(0, 0, 0, 0.533033192, -0.146879047, 0.83324796, -0.815814853, -0.350325704, 0.460128158, 0.224324927, -0.925039649, -0.306561321)
  4964. Weld531.C1 = CFrame.new(0, 0, 0, 0.533033192, -0.146879047, 0.83324796, -0.815814853, -0.350325704, 0.460128158, 0.224324927, -0.925039649, -0.306561321)
  4965. Weld531.Part0 = Part65
  4966. Weld531.Part1 = Part65
  4967. Weld531.part1 = Part65
  4968. Weld532.Parent = Part65
  4969. Weld532.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  4970. Weld532.C1 = CFrame.new(0.000122070313, 0.12909317, -0.348388672, -0.731399655, -0.344931006, -0.588283062, -0.197331116, 0.93278867, -0.301593989, 0.652773976, -0.104492947, -0.750311732)
  4971. Weld532.Part0 = Part65
  4972. Weld532.Part1 = Part930
  4973. Weld532.part1 = Part930
  4974. Weld533.Parent = Part65
  4975. Weld533.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  4976. Weld533.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  4977. Weld533.Part0 = Part65
  4978. Weld533.Part1 = Part65
  4979. Weld533.part1 = Part65
  4980. Weld534.Parent = Part65
  4981. Weld534.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  4982. Weld534.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  4983. Weld534.Part0 = Part65
  4984. Weld534.Part1 = Part65
  4985. Weld534.part1 = Part65
  4986. Weld535.Parent = Part65
  4987. Weld535.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  4988. Weld535.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  4989. Weld535.Part0 = Part65
  4990. Weld535.Part1 = Part65
  4991. Weld535.part1 = Part65
  4992. Weld536.Parent = Part65
  4993. Weld536.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  4994. Weld536.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  4995. Weld536.Part0 = Part65
  4996. Weld536.Part1 = Part65
  4997. Weld536.part1 = Part65
  4998. Weld537.Parent = Part65
  4999. Weld537.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  5000. Weld537.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  5001. Weld537.Part0 = Part65
  5002. Weld537.Part1 = Part65
  5003. Weld537.part1 = Part65
  5004. Weld538.Parent = Part65
  5005. Weld538.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  5006. Weld538.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  5007. Weld538.Part0 = Part65
  5008. Weld538.Part1 = Part65
  5009. Weld538.part1 = Part65
  5010. Weld539.Parent = Part65
  5011. Weld539.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  5012. Weld539.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  5013. Weld539.Part0 = Part65
  5014. Weld539.Part1 = Part65
  5015. Weld539.part1 = Part65
  5016. Weld540.Parent = Part65
  5017. Weld540.C0 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  5018. Weld540.C1 = CFrame.new(0, 0, 0, 0.110360071, 0.264219195, -0.958127677, 0.993846178, -0.0203045197, 0.108876295, 0.00931382366, -0.964247704, -0.264833391)
  5019. Weld540.Part0 = Part65
  5020. Weld540.Part1 = Part65
  5021. Weld540.part1 = Part65
  5022. Weld541.Parent = Part65
  5023. Weld541.C0 = CFrame.new(0, 0, 0, 0.721759319, 0.0588910207, -0.689634025, 0.671822131, -0.29927519, 0.677561164, -0.166488066, -0.952347696, -0.255568922)
  5024. Weld541.C1 = CFrame.new(0, 0, 0, 0.721759319, 0.0588910207, -0.689634025, 0.671822131, -0.29927519, 0.677561164, -0.166488066, -0.952347696, -0.255568922)
  5025. Weld541.Part0 = Part65
  5026. Weld541.Part1 = Part65
  5027. Weld541.part1 = Part65
  5028. Weld542.Parent = Part65
  5029. Weld542.C0 = CFrame.new(0, 0, 0, 0.721759319, 0.0588910207, -0.689634025, 0.671822131, -0.29927519, 0.677561164, -0.166488066, -0.952347696, -0.255568922)
  5030. Weld542.C1 = CFrame.new(0, 0, 0, 0.721759319, 0.0588910207, -0.689634025, 0.671822131, -0.29927519, 0.677561164, -0.166488066, -0.952347696, -0.255568922)
  5031. Weld542.Part0 = Part65
  5032. Weld542.Part1 = Part65
  5033. Weld542.part1 = Part65
  5034. Weld543.Parent = Part65
  5035. Weld543.C0 = CFrame.new(0, 0, 0, 0.721759319, 0.0588910207, -0.689634025, 0.671822131, -0.29927519, 0.677561164, -0.166488066, -0.952347696, -0.255568922)
  5036. Weld543.C1 = CFrame.new(0, 0, 0, 0.721759319, 0.0588910207, -0.689634025, 0.671822131, -0.29927519, 0.677561164, -0.166488066, -0.952347696, -0.255568922)
  5037. Weld543.Part0 = Part65
  5038. Weld543.Part1 = Part65
  5039. Weld543.part1 = Part65
  5040. Weld544.Parent = Part65
  5041. Weld544.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  5042. Weld544.C1 = CFrame.new(0.00591278076, -2.51290131, -0.883796692, -0.731399655, -0.344931006, -0.588283062, 0.652597785, -0.103661455, -0.750580251, 0.197912887, -0.932881415, 0.300925076)
  5043. Weld544.Part0 = Part65
  5044. Weld544.Part1 = Part872
  5045. Weld544.part1 = Part872
  5046. Weld545.Parent = Part65
  5047. Weld545.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5048. Weld545.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5049. Weld545.Part0 = Part65
  5050. Weld545.Part1 = Part65
  5051. Weld545.part1 = Part65
  5052. Weld546.Parent = Part65
  5053. Weld546.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5054. Weld546.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5055. Weld546.Part0 = Part65
  5056. Weld546.Part1 = Part65
  5057. Weld546.part1 = Part65
  5058. Weld547.Parent = Part65
  5059. Weld547.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5060. Weld547.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5061. Weld547.Part0 = Part65
  5062. Weld547.Part1 = Part65
  5063. Weld547.part1 = Part65
  5064. Weld548.Parent = Part65
  5065. Weld548.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5066. Weld548.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5067. Weld548.Part0 = Part65
  5068. Weld548.Part1 = Part65
  5069. Weld548.part1 = Part65
  5070. Weld549.Parent = Part65
  5071. Weld549.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5072. Weld549.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5073. Weld549.Part0 = Part65
  5074. Weld549.Part1 = Part65
  5075. Weld549.part1 = Part65
  5076. Weld550.Parent = Part65
  5077. Weld550.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5078. Weld550.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5079. Weld550.Part0 = Part65
  5080. Weld550.Part1 = Part65
  5081. Weld550.part1 = Part65
  5082. Weld551.Parent = Part65
  5083. Weld551.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5084. Weld551.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5085. Weld551.Part0 = Part65
  5086. Weld551.Part1 = Part65
  5087. Weld551.part1 = Part65
  5088. Weld552.Parent = Part65
  5089. Weld552.C0 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5090. Weld552.C1 = CFrame.new(0, 0, 0, 0.317156315, 0.264215529, -0.910822988, 0.945997, -0.0203065574, 0.323517621, 0.0669861957, -0.964245617, -0.256385028)
  5091. Weld552.Part0 = Part65
  5092. Weld552.Part1 = Part65
  5093. Weld552.part1 = Part65
  5094. Weld553.Parent = Part65
  5095. Weld553.C0 = CFrame.new(0, 0, 0, 0.615647197, 0.390514255, -0.684453964, 0.678596735, 0.178828612, 0.712409258, 0.400606006, -0.903060913, -0.154906332)
  5096. Weld553.C1 = CFrame.new(0, 0, 0, 0.615647197, 0.390514255, -0.684453964, 0.678596735, 0.178828612, 0.712409258, 0.400606006, -0.903060913, -0.154906332)
  5097. Weld553.Part0 = Part65
  5098. Weld553.Part1 = Part65
  5099. Weld553.part1 = Part65
  5100. Weld554.Parent = Part65
  5101. Weld554.C0 = CFrame.new(0, 0, 0, 0.615647197, 0.390514255, -0.684453964, 0.678596735, 0.178828612, 0.712409258, 0.400606006, -0.903060913, -0.154906332)
  5102. Weld554.C1 = CFrame.new(0, 0, 0, 0.615647197, 0.390514255, -0.684453964, 0.678596735, 0.178828612, 0.712409258, 0.400606006, -0.903060913, -0.154906332)
  5103. Weld554.Part0 = Part65
  5104. Weld554.Part1 = Part65
  5105. Weld554.part1 = Part65
  5106. Weld555.Parent = Part65
  5107. Weld555.C0 = CFrame.new(0, 0, 0, 0.615647197, 0.390514255, -0.684453964, 0.678596735, 0.178828612, 0.712409258, 0.400606006, -0.903060913, -0.154906332)
  5108. Weld555.C1 = CFrame.new(0, 0, 0, 0.615647197, 0.390514255, -0.684453964, 0.678596735, 0.178828612, 0.712409258, 0.400606006, -0.903060913, -0.154906332)
  5109. Weld555.Part0 = Part65
  5110. Weld555.Part1 = Part65
  5111. Weld555.part1 = Part65
  5112. Weld556.Parent = Part65
  5113. Weld556.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5114. Weld556.C1 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5115. Weld556.Part0 = Part65
  5116. Weld556.Part1 = Part65
  5117. Weld556.part1 = Part65
  5118. Weld557.Parent = Part65
  5119. Weld557.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5120. Weld557.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5121. Weld557.Part0 = Part65
  5122. Weld557.Part1 = Part65
  5123. Weld557.part1 = Part65
  5124. Weld558.Parent = Part65
  5125. Weld558.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5126. Weld558.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5127. Weld558.Part0 = Part65
  5128. Weld558.Part1 = Part65
  5129. Weld558.part1 = Part65
  5130. Weld559.Parent = Part65
  5131. Weld559.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5132. Weld559.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5133. Weld559.Part0 = Part65
  5134. Weld559.Part1 = Part65
  5135. Weld559.part1 = Part65
  5136. Weld560.Parent = Part65
  5137. Weld560.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5138. Weld560.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5139. Weld560.Part0 = Part65
  5140. Weld560.Part1 = Part65
  5141. Weld560.part1 = Part65
  5142. Weld561.Parent = Part65
  5143. Weld561.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5144. Weld561.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5145. Weld561.Part0 = Part65
  5146. Weld561.Part1 = Part65
  5147. Weld561.part1 = Part65
  5148. Weld562.Parent = Part65
  5149. Weld562.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5150. Weld562.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5151. Weld562.Part0 = Part65
  5152. Weld562.Part1 = Part65
  5153. Weld562.part1 = Part65
  5154. Weld563.Parent = Part65
  5155. Weld563.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5156. Weld563.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5157. Weld563.Part0 = Part65
  5158. Weld563.Part1 = Part65
  5159. Weld563.part1 = Part65
  5160. Weld564.Parent = Part65
  5161. Weld564.C0 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5162. Weld564.C1 = CFrame.new(0, 0, 0, 0.12799795, 0.0317246094, -0.991267204, -0.821738958, 0.563016057, -0.0880881697, 0.555303812, 0.825838447, 0.098133482)
  5163. Weld564.Part0 = Part65
  5164. Weld564.Part1 = Part65
  5165. Weld564.part1 = Part65
  5166. Weld565.Parent = Part65
  5167. Weld565.C0 = CFrame.new(0, 0, 0, 0.568976521, -0.380524218, 0.729017973, 0.82092756, 0.210635245, -0.530764282, 0.0484117866, 0.900463343, 0.43222928)
  5168. Weld565.C1 = CFrame.new(0, 0, 0, 0.568976521, -0.380524218, 0.729017973, 0.82092756, 0.210635245, -0.530764282, 0.0484117866, 0.900463343, 0.43222928)
  5169. Weld565.Part0 = Part65
  5170. Weld565.Part1 = Part65
  5171. Weld565.part1 = Part65
  5172. Weld566.Parent = Part65
  5173. Weld566.C0 = CFrame.new(0, 0, 0, 0.568976521, -0.380524218, 0.729017973, 0.82092756, 0.210635245, -0.530764282, 0.0484117866, 0.900463343, 0.43222928)
  5174. Weld566.C1 = CFrame.new(0, 0, 0, 0.568976521, -0.380524218, 0.729017973, 0.82092756, 0.210635245, -0.530764282, 0.0484117866, 0.900463343, 0.43222928)
  5175. Weld566.Part0 = Part65
  5176. Weld566.Part1 = Part65
  5177. Weld566.part1 = Part65
  5178. Weld567.Parent = Part65
  5179. Weld567.C0 = CFrame.new(0, 0, 0, 0.568976521, -0.380524218, 0.729017973, 0.82092756, 0.210635245, -0.530764282, 0.0484117866, 0.900463343, 0.43222928)
  5180. Weld567.C1 = CFrame.new(0, 0, 0, 0.568976521, -0.380524218, 0.729017973, 0.82092756, 0.210635245, -0.530764282, 0.0484117866, 0.900463343, 0.43222928)
  5181. Weld567.Part0 = Part65
  5182. Weld567.Part1 = Part65
  5183. Weld567.part1 = Part65
  5184. Weld568.Parent = Part65
  5185. Weld568.C0 = CFrame.new(0, 0, 0, -0.939768314, -0.0918050408, 0.329252779, -0.223220348, -0.564654827, -0.794567585, 0.258859426, -0.82020539, 0.510151863)
  5186. Weld568.C1 = CFrame.new(0, 0, 0, -0.939768314, -0.0918050408, 0.329252779, -0.223220348, -0.564654827, -0.794567585, 0.258859426, -0.82020539, 0.510151863)
  5187. Weld568.Part0 = Part65
  5188. Weld568.Part1 = Part65
  5189. Weld568.part1 = Part65
  5190. Weld569.Parent = Part65
  5191. Weld569.C0 = CFrame.new(0, 0, 0, -0.0797333419, -0.934475303, -0.346990824, 0.468843281, 0.272037894, -0.840349019, 0.879680336, -0.229688287, 0.41642791)
  5192. Weld569.C1 = CFrame.new(0, 0, 0, -0.0797333419, -0.934475303, -0.346990824, 0.468843281, 0.272037894, -0.840349019, 0.879680336, -0.229688287, 0.41642791)
  5193. Weld569.Part0 = Part65
  5194. Weld569.Part1 = Part65
  5195. Weld569.part1 = Part65
  5196. Weld570.Parent = Part65
  5197. Weld570.C0 = CFrame.new(0, 0, 0, -0.07973326, -0.934477746, -0.346990466, 0.468846172, 0.272039056, -0.840350151, 0.879683912, -0.229689255, 0.416427433)
  5198. Weld570.C1 = CFrame.new(0, 0, 0, -0.07973326, -0.934477746, -0.346990466, 0.468846172, 0.272039056, -0.840350151, 0.879683912, -0.229689255, 0.416427433)
  5199. Weld570.Part0 = Part65
  5200. Weld570.Part1 = Part65
  5201. Weld570.part1 = Part65
  5202. Weld571.Parent = Part65
  5203. Weld571.C0 = CFrame.new(0, 0, 0, -0.07973212, -0.934472442, -0.34699288, 0.468842715, 0.272038311, -0.840346158, 0.879675686, -0.229687646, 0.416430384)
  5204. Weld571.C1 = CFrame.new(0, 0, 0, -0.07973212, -0.934472442, -0.34699288, 0.468842715, 0.272038311, -0.840346158, 0.879675686, -0.229687646, 0.416430384)
  5205. Weld571.Part0 = Part65
  5206. Weld571.Part1 = Part65
  5207. Weld571.part1 = Part65
  5208. Weld572.Parent = Part65
  5209. Weld572.C0 = CFrame.new(0, 0, 0, -0.0797325298, -0.93447572, -0.346987188, 0.468847156, 0.272032946, -0.840346992, 0.879675865, -0.22968699, 0.416434288)
  5210. Weld572.C1 = CFrame.new(0, 0, 0, -0.0797325298, -0.93447572, -0.346987188, 0.468847156, 0.272032946, -0.840346992, 0.879675865, -0.22968699, 0.416434288)
  5211. Weld572.Part0 = Part65
  5212. Weld572.Part1 = Part65
  5213. Weld572.part1 = Part65
  5214. Weld573.Parent = Part65
  5215. Weld573.C0 = CFrame.new(0, 0, 0, -0.0797324404, -0.934478283, -0.34698686, 0.468850046, 0.272034079, -0.840348125, 0.879679501, -0.229687959, 0.416433841)
  5216. Weld573.C1 = CFrame.new(0, 0, 0, -0.0797324404, -0.934478283, -0.34698686, 0.468850046, 0.272034079, -0.840348125, 0.879679501, -0.229687959, 0.416433841)
  5217. Weld573.Part0 = Part65
  5218. Weld573.Part1 = Part65
  5219. Weld573.part1 = Part65
  5220. Weld574.Parent = Part65
  5221. Weld574.C0 = CFrame.new(0, 0, 0, -0.0797314644, -0.934474051, -0.346988678, 0.468847662, 0.272033513, -0.840345025, 0.879673123, -0.229686752, 0.416436404)
  5222. Weld574.C1 = CFrame.new(0, 0, 0, -0.0797314644, -0.934474051, -0.346988678, 0.468847662, 0.272033513, -0.840345025, 0.879673123, -0.229686752, 0.416436404)
  5223. Weld574.Part0 = Part65
  5224. Weld574.Part1 = Part65
  5225. Weld574.part1 = Part65
  5226. Weld575.Parent = Part65
  5227. Weld575.C0 = CFrame.new(0, 0, 0, -0.0797317624, -0.934476972, -0.34698388, 0.468851745, 0.272029102, -0.840345681, 0.879673481, -0.22968626, 0.416439682)
  5228. Weld575.C1 = CFrame.new(0, 0, 0, -0.0797317624, -0.934476972, -0.34698388, 0.468851745, 0.272029102, -0.840345681, 0.879673481, -0.22968626, 0.416439682)
  5229. Weld575.Part0 = Part65
  5230. Weld575.Part1 = Part65
  5231. Weld575.part1 = Part65
  5232. Weld576.Parent = Part65
  5233. Weld576.C0 = CFrame.new(0, 0, 0, -0.0797316954, -0.934479415, -0.346983552, 0.468854666, 0.272030264, -0.840346813, 0.879677117, -0.229687214, 0.416439235)
  5234. Weld576.C1 = CFrame.new(0, 0, 0, -0.0797316954, -0.934479415, -0.346983552, 0.468854666, 0.272030264, -0.840346813, 0.879677117, -0.229687214, 0.416439235)
  5235. Weld576.Part0 = Part65
  5236. Weld576.Part1 = Part65
  5237. Weld576.part1 = Part65
  5238. Weld577.Parent = Part65
  5239. Weld577.C0 = CFrame.new(0, 0, 0, -0.0797307193, -0.934475362, -0.34698543, 0.468852252, 0.272029728, -0.840343654, 0.879670739, -0.229686096, 0.416441739)
  5240. Weld577.C1 = CFrame.new(0, 0, 0, -0.0797307193, -0.934475362, -0.34698543, 0.468852252, 0.272029728, -0.840343654, 0.879670739, -0.229686096, 0.416441739)
  5241. Weld577.Part0 = Part65
  5242. Weld577.Part1 = Part65
  5243. Weld577.part1 = Part65
  5244. Weld578.Parent = Part65
  5245. Weld578.C0 = CFrame.new(0, 0, 0, -0.940837681, -0.267157614, 0.208449572, 0.194565102, -0.929549873, -0.313179612, 0.277432561, -0.254094154, 0.92653513)
  5246. Weld578.C1 = CFrame.new(0, 0, 0, -0.940837681, -0.267157614, 0.208449572, 0.194565102, -0.929549873, -0.313179612, 0.277432561, -0.254094154, 0.92653513)
  5247. Weld578.Part0 = Part65
  5248. Weld578.Part1 = Part65
  5249. Weld578.part1 = Part65
  5250. Weld579.Parent = Part65
  5251. Weld579.C0 = CFrame.new(0, 0, 0, -0.940837681, -0.267157614, 0.208449587, 0.194565102, -0.929549932, -0.313179582, 0.277432531, -0.254094154, 0.92653513)
  5252. Weld579.C1 = CFrame.new(0, 0, 0, -0.940837681, -0.267157614, 0.208449587, 0.194565102, -0.929549932, -0.313179582, 0.277432531, -0.254094154, 0.92653513)
  5253. Weld579.Part0 = Part65
  5254. Weld579.Part1 = Part65
  5255. Weld579.part1 = Part65
  5256. Weld580.Parent = Part65
  5257. Weld580.C0 = CFrame.new(0, 0, 0, -0.940837681, -0.267157614, 0.208449587, 0.194565117, -0.929550052, -0.313179612, 0.277432531, -0.254094154, 0.92653513)
  5258. Weld580.C1 = CFrame.new(0, 0, 0, -0.940837681, -0.267157614, 0.208449587, 0.194565117, -0.929550052, -0.313179612, 0.277432531, -0.254094154, 0.92653513)
  5259. Weld580.Part0 = Part65
  5260. Weld580.Part1 = Part65
  5261. Weld580.part1 = Part65
  5262. Weld581.Parent = Part65
  5263. Weld581.C0 = CFrame.new(0, 0, 0, -0.939768314, -0.0918050408, 0.329252779, -0.223220348, -0.564654827, -0.794567585, 0.258859426, -0.82020539, 0.510151863)
  5264. Weld581.C1 = CFrame.new(0, 0, 0, -0.939768314, -0.0918050408, 0.329252779, -0.223220348, -0.564654827, -0.794567585, 0.258859426, -0.82020539, 0.510151863)
  5265. Weld581.Part0 = Part65
  5266. Weld581.Part1 = Part65
  5267. Weld581.part1 = Part65
  5268. Weld582.Parent = Part65
  5269. Weld582.C0 = CFrame.new(0, 0, 0, -0.939768314, -0.0918050408, 0.329252779, -0.223220348, -0.564654827, -0.794567585, 0.258859426, -0.82020539, 0.510151863)
  5270. Weld582.C1 = CFrame.new(0, 0, 0, -0.939768314, -0.0918050408, 0.329252779, -0.223220348, -0.564654827, -0.794567585, 0.258859426, -0.82020539, 0.510151863)
  5271. Weld582.Part0 = Part65
  5272. Weld582.Part1 = Part65
  5273. Weld582.part1 = Part65
  5274. Weld583.Parent = Part65
  5275. Weld583.C0 = CFrame.new(0, 0, 0, 0.964634597, 0.248528719, 0.087827161, -0.263360322, 0.894786358, 0.360553384, 0.0110212862, -0.37093237, 0.92859453)
  5276. Weld583.C1 = CFrame.new(0, 0, 0, 0.964634597, 0.248528719, 0.087827161, -0.263360322, 0.894786358, 0.360553384, 0.0110212862, -0.37093237, 0.92859453)
  5277. Weld583.Part0 = Part65
  5278. Weld583.Part1 = Part65
  5279. Weld583.part1 = Part65
  5280. Weld584.Parent = Part65
  5281. Weld584.C0 = CFrame.new(0, 0, 0, 0.913235009, -0.404496044, 0.0488363989, 0.0964164734, 0.331012547, 0.938688815, -0.395860314, -0.852533638, 0.341293335)
  5282. Weld584.C1 = CFrame.new(0, 0, 0, 0.913235009, -0.404496044, 0.0488363989, 0.0964164734, 0.331012547, 0.938688815, -0.395860314, -0.852533638, 0.341293335)
  5283. Weld584.Part0 = Part65
  5284. Weld584.Part1 = Part65
  5285. Weld584.part1 = Part65
  5286. Weld585.Parent = Part65
  5287. Weld585.C0 = CFrame.new(0, 0, 0, 0.913235128, -0.404496431, 0.0488364249, 0.0964161977, 0.331012309, 0.938690186, -0.395859927, -0.85253346, 0.34129408)
  5288. Weld585.C1 = CFrame.new(0, 0, 0, 0.913235128, -0.404496431, 0.0488364249, 0.0964161977, 0.331012309, 0.938690186, -0.395859927, -0.85253346, 0.34129408)
  5289. Weld585.Part0 = Part65
  5290. Weld585.Part1 = Part65
  5291. Weld585.part1 = Part65
  5292. Weld586.Parent = Part65
  5293. Weld586.C0 = CFrame.new(0, 0, 0, 0.913235128, -0.404496789, 0.0488364547, 0.0964159146, 0.33101204, 0.938691437, -0.395859569, -0.85253334, 0.341294825)
  5294. Weld586.C1 = CFrame.new(0, 0, 0, 0.913235128, -0.404496789, 0.0488364547, 0.0964159146, 0.33101204, 0.938691437, -0.395859569, -0.85253334, 0.341294825)
  5295. Weld586.Part0 = Part65
  5296. Weld586.Part1 = Part65
  5297. Weld586.part1 = Part65
  5298. Weld587.Parent = Part65
  5299. Weld587.C0 = CFrame.new(0, 0, 0, 0.913235128, -0.404497147, 0.0488364808, 0.0964156315, 0.331011772, 0.938692689, -0.395859182, -0.852533221, 0.34129557)
  5300. Weld587.C1 = CFrame.new(0, 0, 0, 0.913235128, -0.404497147, 0.0488364808, 0.0964156315, 0.331011772, 0.938692689, -0.395859182, -0.852533221, 0.34129557)
  5301. Weld587.Part0 = Part65
  5302. Weld587.Part1 = Part65
  5303. Weld587.part1 = Part65
  5304. Weld588.Parent = Part65
  5305. Weld588.C0 = CFrame.new(0, 0, 0, 0.913235068, -0.404497504, 0.0488364957, 0.0964153484, 0.331011504, 0.938694, -0.395858854, -0.852533102, 0.341296315)
  5306. Weld588.C1 = CFrame.new(0, 0, 0, 0.913235068, -0.404497504, 0.0488364957, 0.0964153484, 0.331011504, 0.938694, -0.395858854, -0.852533102, 0.341296315)
  5307. Weld588.Part0 = Part65
  5308. Weld588.Part1 = Part65
  5309. Weld588.part1 = Part65
  5310. Weld589.Parent = Part65
  5311. Weld589.C0 = CFrame.new(0, 0, 0, 0.913235068, -0.404497862, 0.0488365181, 0.096415095, 0.331011295, 0.938695312, -0.395858526, -0.852533102, 0.34129706)
  5312. Weld589.C1 = CFrame.new(0, 0, 0, 0.913235068, -0.404497862, 0.0488365181, 0.096415095, 0.331011295, 0.938695312, -0.395858526, -0.852533102, 0.34129706)
  5313. Weld589.Part0 = Part65
  5314. Weld589.Part1 = Part65
  5315. Weld589.part1 = Part65
  5316. Weld590.Parent = Part65
  5317. Weld590.C0 = CFrame.new(0, 0, 0, 0.913236141, -0.404493392, 0.0488366932, 0.0964149162, 0.331011623, 0.938688219, -0.395858675, -0.852535367, 0.341290951)
  5318. Weld590.C1 = CFrame.new(0, 0, 0, 0.913236141, -0.404493392, 0.0488366932, 0.0964149162, 0.331011623, 0.938688219, -0.395858675, -0.852535367, 0.341290951)
  5319. Weld590.Part0 = Part65
  5320. Weld590.Part1 = Part65
  5321. Weld590.part1 = Part65
  5322. Weld591.Parent = Part65
  5323. Weld591.C0 = CFrame.new(0, 0, 0, 0.913234055, -0.4044981, 0.0488365144, 0.0964149833, 0.331007481, 0.938690186, -0.395863086, -0.852534652, 0.341287524)
  5324. Weld591.C1 = CFrame.new(0, 0, 0, 0.913234055, -0.4044981, 0.0488365144, 0.0964149833, 0.331007481, 0.938690186, -0.395863086, -0.852534652, 0.341287524)
  5325. Weld591.Part0 = Part65
  5326. Weld591.Part1 = Part65
  5327. Weld591.part1 = Part65
  5328. Weld592.Parent = Part65
  5329. Weld592.C0 = CFrame.new(0, 0, 0, 0.913234055, -0.404498428, 0.0488365367, 0.0964147151, 0.331007242, 0.938691437, -0.395862758, -0.852534652, 0.341288298)
  5330. Weld592.C1 = CFrame.new(0, 0, 0, 0.913234055, -0.404498428, 0.0488365367, 0.0964147151, 0.331007242, 0.938691437, -0.395862758, -0.852534652, 0.341288298)
  5331. Weld592.Part0 = Part65
  5332. Weld592.Part1 = Part65
  5333. Weld592.part1 = Part65
  5334. Weld593.Parent = Part65
  5335. Weld593.C0 = CFrame.new(0, 0, 0, 0.87547642, -0.476947486, 0.077865079, 0.101698473, 0.339346677, 0.935150146, -0.472438306, -0.810780704, 0.34559688)
  5336. Weld593.C1 = CFrame.new(0, 0, 0, 0.87547642, -0.476947486, 0.077865079, 0.101698473, 0.339346677, 0.935150146, -0.472438306, -0.810780704, 0.34559688)
  5337. Weld593.Part0 = Part65
  5338. Weld593.Part1 = Part65
  5339. Weld593.part1 = Part65
  5340. Weld594.Parent = Part65
  5341. Weld594.C0 = CFrame.new(0, 0, 0, 0.875476778, -0.476947635, 0.0778650418, 0.101698518, 0.339346856, 0.935150266, -0.472438335, -0.810780704, 0.34559679)
  5342. Weld594.C1 = CFrame.new(0, 0, 0, 0.875476778, -0.476947635, 0.0778650418, 0.101698518, 0.339346856, 0.935150266, -0.472438335, -0.810780704, 0.34559679)
  5343. Weld594.Part0 = Part65
  5344. Weld594.Part1 = Part65
  5345. Weld594.part1 = Part65
  5346. Weld595.Parent = Part65
  5347. Weld595.C0 = CFrame.new(0, 0, 0, 0.875477016, -0.476947755, 0.0778649896, 0.101698525, 0.339347035, 0.935150385, -0.472438365, -0.810780704, 0.345596701)
  5348. Weld595.C1 = CFrame.new(0, 0, 0, 0.875477016, -0.476947755, 0.0778649896, 0.101698525, 0.339347035, 0.935150385, -0.472438365, -0.810780704, 0.345596701)
  5349. Weld595.Part0 = Part65
  5350. Weld595.Part1 = Part65
  5351. Weld595.part1 = Part65
  5352. Weld596.Parent = Part65
  5353. Weld596.C0 = CFrame.new(0, 0, 0, 0.964634597, 0.248528719, 0.087827161, -0.263360322, 0.894786358, 0.360553384, 0.0110212862, -0.37093237, 0.92859453)
  5354. Weld596.C1 = CFrame.new(0, 0, 0, 0.964634597, 0.248528719, 0.087827161, -0.263360322, 0.894786358, 0.360553384, 0.0110212862, -0.37093237, 0.92859453)
  5355. Weld596.Part0 = Part65
  5356. Weld596.Part1 = Part65
  5357. Weld596.part1 = Part65
  5358. Weld597.Parent = Part65
  5359. Weld597.C0 = CFrame.new(0, 0, 0, 0.964634597, 0.248528719, 0.087827161, -0.263360322, 0.894786358, 0.360553384, 0.0110212862, -0.37093237, 0.92859453)
  5360. Weld597.C1 = CFrame.new(0, 0, 0, 0.964634597, 0.248528719, 0.087827161, -0.263360322, 0.894786358, 0.360553384, 0.0110212862, -0.37093237, 0.92859453)
  5361. Weld597.Part0 = Part65
  5362. Weld597.Part1 = Part65
  5363. Weld597.part1 = Part65
  5364. Weld598.Parent = Part65
  5365. Weld598.C0 = CFrame.new(0, 0, 0, 0.731291533, 0.345029682, 0.588359594, -0.652786434, 0.104026511, 0.750365734, 0.197690219, -0.932804286, 0.301310301)
  5366. Weld598.C1 = CFrame.new(-0.385307312, -1.99829102, -1.26403809, -0.731399655, -0.344931006, -0.588283062, 0.652597785, -0.103661455, -0.750580251, 0.197912887, -0.932881415, 0.300925076)
  5367. Weld598.Part0 = Part65
  5368. Weld598.Part1 = Part870
  5369. Weld598.part1 = Part870
  5370. Weld599.Parent = Part65
  5371. Weld599.C0 = CFrame.new(0, 0, 0, 0.836518466, 0.491715312, 0.241780654, -0.543879211, 0.691447079, 0.475506991, 0.0666330233, -0.529260874, 0.845839739)
  5372. Weld599.C1 = CFrame.new(0, 0, 0, 0.836518466, 0.491715312, 0.241780654, -0.543879211, 0.691447079, 0.475506991, 0.0666330233, -0.529260874, 0.845839739)
  5373. Weld599.Part0 = Part65
  5374. Weld599.Part1 = Part65
  5375. Weld599.part1 = Part65
  5376. Weld600.Parent = Part65
  5377. Weld600.C0 = CFrame.new(0, 0, 0, 0.836518466, 0.491715312, 0.241780654, -0.543879211, 0.691447079, 0.475506991, 0.0666330233, -0.529260874, 0.845839739)
  5378. Weld600.C1 = CFrame.new(0, 0, 0, 0.836518466, 0.491715312, 0.241780654, -0.543879211, 0.691447079, 0.475506991, 0.0666330233, -0.529260874, 0.845839739)
  5379. Weld600.Part0 = Part65
  5380. Weld600.Part1 = Part65
  5381. Weld600.part1 = Part65
  5382. Weld601.Parent = Part65
  5383. Weld601.C0 = CFrame.new(0, 0, 0, 0.723494709, -0.192322418, 0.662998796, -0.628034294, -0.582072496, 0.516492546, 0.286580265, -0.790065646, -0.541911483)
  5384. Weld601.C1 = CFrame.new(0, 0, 0, 0.723494709, -0.192322418, 0.662998796, -0.628034294, -0.582072496, 0.516492546, 0.286580265, -0.790065646, -0.541911483)
  5385. Weld601.Part0 = Part65
  5386. Weld601.Part1 = Part65
  5387. Weld601.part1 = Part65
  5388. Weld602.Parent = Part65
  5389. Weld602.C0 = CFrame.new(0, 0, 0, 0.723494709, -0.192322418, 0.662998796, -0.628034294, -0.582072496, 0.516492546, 0.286580265, -0.790065646, -0.541911483)
  5390. Weld602.C1 = CFrame.new(0, 0, 0, 0.723494709, -0.192322418, 0.662998796, -0.628034294, -0.582072496, 0.516492546, 0.286580265, -0.790065646, -0.541911483)
  5391. Weld602.Part0 = Part65
  5392. Weld602.Part1 = Part65
  5393. Weld602.part1 = Part65
  5394. Weld603.Parent = Part65
  5395. Weld603.C0 = CFrame.new(0, 0, 0, 0.723494709, -0.192322418, 0.662998796, -0.628034294, -0.582072496, 0.516492546, 0.286580265, -0.790065646, -0.541911483)
  5396. Weld603.C1 = CFrame.new(0, 0, 0, 0.723494709, -0.192322418, 0.662998796, -0.628034294, -0.582072496, 0.516492546, 0.286580265, -0.790065646, -0.541911483)
  5397. Weld603.Part0 = Part65
  5398. Weld603.Part1 = Part65
  5399. Weld603.part1 = Part65
  5400. Weld604.Parent = Part65
  5401. Weld604.C0 = CFrame.new(0, 0, 0, 0.77841872, -0.611490726, 0.141927063, -0.536025524, -0.76514256, -0.356698185, 0.326712012, 0.201583996, -0.923376024)
  5402. Weld604.C1 = CFrame.new(0, 0, 0, 0.77841872, -0.611490726, 0.141927063, -0.536025524, -0.76514256, -0.356698185, 0.326712012, 0.201583996, -0.923376024)
  5403. Weld604.Part0 = Part65
  5404. Weld604.Part1 = Part65
  5405. Weld604.part1 = Part65
  5406. Weld605.Parent = Part65
  5407. Weld605.C0 = CFrame.new(0, 0, 0, 0.958938956, 0.264301449, 0.102864139, -0.101139747, -0.0201620236, 0.994667947, 0.26496613, -0.964229405, 0.00739726704)
  5408. Weld605.C1 = CFrame.new(0, 0, 0, 0.958938956, 0.264301449, 0.102864139, -0.101139747, -0.0201620236, 0.994667947, 0.26496613, -0.964229405, 0.00739726704)
  5409. Weld605.Part0 = Part65
  5410. Weld605.Part1 = Part65
  5411. Weld605.part1 = Part65
  5412. Weld606.Parent = Part65
  5413. Weld606.C0 = CFrame.new(0, 0, 0, 0.958939195, 0.264301509, 0.102864131, -0.101139784, -0.0201620702, 0.994668007, 0.26496613, -0.964229524, 0.00739730336)
  5414. Weld606.C1 = CFrame.new(0, 0, 0, 0.958939195, 0.264301509, 0.102864131, -0.101139784, -0.0201620702, 0.994668007, 0.26496613, -0.964229524, 0.00739730336)
  5415. Weld606.Part0 = Part65
  5416. Weld606.Part1 = Part65
  5417. Weld606.part1 = Part65
  5418. Weld607.Parent = Part65
  5419. Weld607.C0 = CFrame.new(0, 0, 0, 0.958939433, 0.264301538, 0.102864124, -0.101139821, -0.0201621167, 0.994668007, 0.26496613, -0.964229643, 0.00739734014)
  5420. Weld607.C1 = CFrame.new(0, 0, 0, 0.958939433, 0.264301538, 0.102864124, -0.101139821, -0.0201621167, 0.994668007, 0.26496613, -0.964229643, 0.00739734014)
  5421. Weld607.Part0 = Part65
  5422. Weld607.Part1 = Part65
  5423. Weld607.part1 = Part65
  5424. Weld608.Parent = Part65
  5425. Weld608.C0 = CFrame.new(0, 0, 0, 0.958939731, 0.264301568, 0.102864116, -0.101139851, -0.0201621614, 0.994668007, 0.26496616, -0.964229763, 0.00739737786)
  5426. Weld608.C1 = CFrame.new(0, 0, 0, 0.958939731, 0.264301568, 0.102864116, -0.101139851, -0.0201621614, 0.994668007, 0.26496616, -0.964229763, 0.00739737786)
  5427. Weld608.Part0 = Part65
  5428. Weld608.Part1 = Part65
  5429. Weld608.part1 = Part65
  5430. Weld609.Parent = Part65
  5431. Weld609.C0 = CFrame.new(0, 0, 0, 0.95893991, 0.264301598, 0.102864102, -0.101139888, -0.020162208, 0.994668007, 0.26496619, -0.964229882, 0.00739741605)
  5432. Weld609.C1 = CFrame.new(0, 0, 0, 0.95893991, 0.264301598, 0.102864102, -0.101139888, -0.020162208, 0.994668007, 0.26496619, -0.964229882, 0.00739741605)
  5433. Weld609.Part0 = Part65
  5434. Weld609.Part1 = Part65
  5435. Weld609.part1 = Part65
  5436. Weld610.Parent = Part65
  5437. Weld610.C0 = CFrame.new(0, 0, 0, 0.958940148, 0.264301658, 0.102864094, -0.101139918, -0.0201622546, 0.994668007, 0.26496619, -0.964229882, 0.00739745283)
  5438. Weld610.C1 = CFrame.new(0, 0, 0, 0.958940148, 0.264301658, 0.102864094, -0.101139918, -0.0201622546, 0.994668007, 0.26496619, -0.964229882, 0.00739745283)
  5439. Weld610.Part0 = Part65
  5440. Weld610.Part1 = Part65
  5441. Weld610.part1 = Part65
  5442. Weld611.Parent = Part65
  5443. Weld611.C0 = CFrame.new(0, 0, 0, 0.958940387, 0.264301717, 0.102864094, -0.101139955, -0.0201623011, 0.994668007, 0.26496619, -0.964229882, 0.00739749009)
  5444. Weld611.C1 = CFrame.new(0, 0, 0, 0.958940387, 0.264301717, 0.102864094, -0.101139955, -0.0201623011, 0.994668007, 0.26496619, -0.964229882, 0.00739749009)
  5445. Weld611.Part0 = Part65
  5446. Weld611.Part1 = Part65
  5447. Weld611.part1 = Part65
  5448. Weld612.Parent = Part65
  5449. Weld612.C0 = CFrame.new(0, 0, 0, 0.958940625, 0.264301777, 0.102864087, -0.101139992, -0.0201623477, 0.994668007, 0.26496619, -0.964229882, 0.00739752734)
  5450. Weld612.C1 = CFrame.new(0, 0, 0, 0.958940625, 0.264301777, 0.102864087, -0.101139992, -0.0201623477, 0.994668007, 0.26496619, -0.964229882, 0.00739752734)
  5451. Weld612.Part0 = Part65
  5452. Weld612.Part1 = Part65
  5453. Weld612.part1 = Part65
  5454. Weld613.Parent = Part65
  5455. Weld613.C0 = CFrame.new(0, 0, 0, 0.958940864, 0.264301836, 0.102864072, -0.101140022, -0.0201623924, 0.994668007, 0.26496619, -0.964229882, 0.00739756413)
  5456. Weld613.C1 = CFrame.new(0, 0, 0, 0.958940864, 0.264301836, 0.102864072, -0.101140022, -0.0201623924, 0.994668007, 0.26496619, -0.964229882, 0.00739756413)
  5457. Weld613.Part0 = Part65
  5458. Weld613.Part1 = Part65
  5459. Weld613.part1 = Part65
  5460. Weld614.Parent = Part65
  5461. Weld614.C0 = CFrame.new(0, 0, 0, 0.959011376, 0.264392972, 0.10196916, -0.105117686, -0.00225288956, 0.994457483, 0.263156801, -0.964412987, 0.0256326124)
  5462. Weld614.C1 = CFrame.new(0, 0, 0, 0.959011376, 0.264392972, 0.10196916, -0.105117686, -0.00225288956, 0.994457483, 0.263156801, -0.964412987, 0.0256326124)
  5463. Weld614.Part0 = Part65
  5464. Weld614.Part1 = Part65
  5465. Weld614.part1 = Part65
  5466. Weld615.Parent = Part65
  5467. Weld615.C0 = CFrame.new(0, 0, 0, 0.959011137, 0.264392942, 0.101969115, -0.105117656, -0.0022530586, 0.994457483, 0.263156772, -0.964412987, 0.0256327819)
  5468. Weld615.C1 = CFrame.new(0, 0, 0, 0.959011137, 0.264392942, 0.101969115, -0.105117656, -0.0022530586, 0.994457483, 0.263156772, -0.964412987, 0.0256327819)
  5469. Weld615.Part0 = Part65
  5470. Weld615.Part1 = Part65
  5471. Weld615.part1 = Part65
  5472. Weld616.Parent = Part65
  5473. Weld616.C0 = CFrame.new(0, 0, 0, 0.959011018, 0.264392942, 0.101969071, -0.105117626, -0.00225322694, 0.994457483, 0.263156712, -0.964413047, 0.0256329495)
  5474. Weld616.C1 = CFrame.new(0, 0, 0, 0.959011018, 0.264392942, 0.101969071, -0.105117626, -0.00225322694, 0.994457483, 0.263156712, -0.964413047, 0.0256329495)
  5475. Weld616.Part0 = Part65
  5476. Weld616.Part1 = Part65
  5477. Weld616.part1 = Part65
  5478. Weld617.Parent = Part65
  5479. Weld617.C0 = CFrame.new(0, 0, 0, 0.77841872, -0.611490726, 0.141927063, -0.536025524, -0.76514256, -0.356698185, 0.326712012, 0.201583996, -0.923376024)
  5480. Weld617.C1 = CFrame.new(0, 0, 0, 0.77841872, -0.611490726, 0.141927063, -0.536025524, -0.76514256, -0.356698185, 0.326712012, 0.201583996, -0.923376024)
  5481. Weld617.Part0 = Part65
  5482. Weld617.Part1 = Part65
  5483. Weld617.part1 = Part65
  5484. Weld618.Parent = Part65
  5485. Weld618.C0 = CFrame.new(0, 0, 0, 0.77841872, -0.611490726, 0.141927063, -0.536025524, -0.76514256, -0.356698185, 0.326712012, 0.201583996, -0.923376024)
  5486. Weld618.C1 = CFrame.new(0, 0, 0, 0.77841872, -0.611490726, 0.141927063, -0.536025524, -0.76514256, -0.356698185, 0.326712012, 0.201583996, -0.923376024)
  5487. Weld618.Part0 = Part65
  5488. Weld618.Part1 = Part65
  5489. Weld618.part1 = Part65
  5490. Weld619.Parent = Part65
  5491. Weld619.C0 = CFrame.new(0, 0, 0, 0.77837646, -0.611555755, 0.141878441, -0.53605783, -0.765064538, -0.356816858, 0.326759517, 0.201682791, -0.923337638)
  5492. Weld619.C1 = CFrame.new(0, 0, 0, 0.77837646, -0.611555755, 0.141878441, -0.53605783, -0.765064538, -0.356816858, 0.326759517, 0.201682791, -0.923337638)
  5493. Weld619.Part0 = Part65
  5494. Weld619.Part1 = Part65
  5495. Weld619.part1 = Part65
  5496. Weld620.Parent = Part65
  5497. Weld620.C0 = CFrame.new(0, 0, 0, 0.958959281, 0.26421997, 0.102909178, -0.101145796, -0.0203060061, 0.994665861, 0.264898419, -0.964250743, 0.00725639379)
  5498. Weld620.C1 = CFrame.new(0, 0, 0, 0.958959281, 0.26421997, 0.102909178, -0.101145796, -0.0203060061, 0.994665861, 0.264898419, -0.964250743, 0.00725639379)
  5499. Weld620.Part0 = Part65
  5500. Weld620.Part1 = Part65
  5501. Weld620.part1 = Part65
  5502. Weld621.Parent = Part65
  5503. Weld621.C0 = CFrame.new(0, 0, 0, 0.958961785, 0.264221042, 0.102909602, -0.101145223, -0.0203081369, 0.99466747, 0.2648983, -0.964252472, 0.00725857494)
  5504. Weld621.C1 = CFrame.new(0, 0, 0, 0.958961785, 0.264221042, 0.102909602, -0.101145223, -0.0203081369, 0.99466747, 0.2648983, -0.964252472, 0.00725857494)
  5505. Weld621.Part0 = Part65
  5506. Weld621.Part1 = Part65
  5507. Weld621.part1 = Part65
  5508. Weld622.Parent = Part65
  5509. Weld622.C0 = CFrame.new(0, 0, 0, 0.958957791, 0.264220327, 0.102909319, -0.101144962, -0.0203103852, 0.994665146, 0.264899939, -0.964249551, 0.00724991551)
  5510. Weld622.C1 = CFrame.new(0, 0, 0, 0.958957791, 0.264220327, 0.102909319, -0.101144962, -0.0203103852, 0.994665146, 0.264899939, -0.964249551, 0.00724991551)
  5511. Weld622.Part0 = Part65
  5512. Weld622.Part1 = Part65
  5513. Weld622.part1 = Part65
  5514. Weld623.Parent = Part65
  5515. Weld623.C0 = CFrame.new(0, 0, 0, 0.958960354, 0.2642214, 0.102909744, -0.101144396, -0.0203125179, 0.994666696, 0.26489982, -0.96425128, 0.0072520962)
  5516. Weld623.C1 = CFrame.new(0, 0, 0, 0.958960354, 0.2642214, 0.102909744, -0.101144396, -0.0203125179, 0.994666696, 0.26489982, -0.96425128, 0.0072520962)
  5517. Weld623.Part0 = Part65
  5518. Weld623.Part1 = Part65
  5519. Weld623.part1 = Part65
  5520. Weld624.Parent = Part65
  5521. Weld624.C0 = CFrame.new(0, 0, 0, 0.958957314, 0.264217407, 0.10290847, -0.101143248, -0.0203141551, 0.994664431, 0.264898151, -0.964249194, 0.00724339858)
  5522. Weld624.C1 = CFrame.new(0, 0, 0, 0.958957314, 0.264217407, 0.10290847, -0.101143248, -0.0203141551, 0.994664431, 0.264898151, -0.964249194, 0.00724339858)
  5523. Weld624.Part0 = Part65
  5524. Weld624.Part1 = Part65
  5525. Weld624.part1 = Part65
  5526. Weld625.Parent = Part65
  5527. Weld625.C0 = CFrame.new(0, 0, 0, 0.958957493, 0.26422137, 0.102909744, -0.101143621, -0.0203169156, 0.994665146, 0.264901668, -0.964249134, 0.00724340603)
  5528. Weld625.C1 = CFrame.new(0, 0, 0, 0.958957493, 0.26422137, 0.102909744, -0.101143621, -0.0203169156, 0.994665146, 0.264901668, -0.964249134, 0.00724340603)
  5529. Weld625.Part0 = Part65
  5530. Weld625.Part1 = Part65
  5531. Weld625.part1 = Part65
  5532. Weld626.Parent = Part65
  5533. Weld626.C0 = CFrame.new(0, 0, 0, 0.958959997, 0.264222413, 0.102910168, -0.101143055, -0.0203190483, 0.994666696, 0.264901549, -0.964250982, 0.00724558625)
  5534. Weld626.C1 = CFrame.new(0, 0, 0, 0.958959997, 0.264222413, 0.102910168, -0.101143055, -0.0203190483, 0.994666696, 0.264901549, -0.964250982, 0.00724558625)
  5535. Weld626.Part0 = Part65
  5536. Weld626.Part1 = Part65
  5537. Weld626.part1 = Part65
  5538. Weld627.Parent = Part65
  5539. Weld627.C0 = CFrame.new(0, 0, 0, 0.958956897, 0.26421842, 0.102908887, -0.101141885, -0.0203206781, 0.99466449, 0.26489982, -0.964248836, 0.00723689608)
  5540. Weld627.C1 = CFrame.new(0, 0, 0, 0.958956897, 0.26421842, 0.102908887, -0.101141885, -0.0203206781, 0.99466449, 0.26489982, -0.964248836, 0.00723689608)
  5541. Weld627.Part0 = Part65
  5542. Weld627.Part1 = Part65
  5543. Weld627.part1 = Part65
  5544. Weld628.Parent = Part65
  5545. Weld628.C0 = CFrame.new(0, 0, 0, 0.958957195, 0.264222413, 0.102910168, -0.101142272, -0.0203234479, 0.994665146, 0.264903396, -0.964248657, 0.00723689981)
  5546. Weld628.C1 = CFrame.new(0, 0, 0, 0.958957195, 0.264222413, 0.102910168, -0.101142272, -0.0203234479, 0.994665146, 0.264903396, -0.964248657, 0.00723689981)
  5547. Weld628.Part0 = Part65
  5548. Weld628.Part1 = Part65
  5549. Weld628.part1 = Part65
  5550. Weld629.Parent = Part65
  5551. Weld629.C0 = CFrame.new(0, 0, 0, 0.959803522, 0.261876553, 0.101013042, -0.10331171, -0.00501070358, 0.994638026, 0.260976702, -0.965090394, 0.022249911)
  5552. Weld629.C1 = CFrame.new(0, 0, 0, 0.959803522, 0.261876553, 0.101013042, -0.10331171, -0.00501070358, 0.994638026, 0.260976702, -0.965090394, 0.022249911)
  5553. Weld629.Part0 = Part65
  5554. Weld629.Part1 = Part65
  5555. Weld629.part1 = Part65
  5556. Weld630.Parent = Part65
  5557. Weld630.C0 = CFrame.new(0, 0, 0, 0.959803522, 0.261876553, 0.101013042, -0.103311703, -0.00501070544, 0.994638026, 0.260976702, -0.965090394, 0.0222499128)
  5558. Weld630.C1 = CFrame.new(0, 0, 0, 0.959803522, 0.261876553, 0.101013042, -0.103311703, -0.00501070544, 0.994638026, 0.260976702, -0.965090394, 0.0222499128)
  5559. Weld630.Part0 = Part65
  5560. Weld630.Part1 = Part65
  5561. Weld630.part1 = Part65
  5562. Weld631.Parent = Part65
  5563. Weld631.C0 = CFrame.new(0, 0, 0, 0.959803522, 0.261876553, 0.101013042, -0.103311695, -0.00501070637, 0.994638026, 0.260976702, -0.965090394, 0.0222499147)
  5564. Weld631.C1 = CFrame.new(0, 0, 0, 0.959803522, 0.261876553, 0.101013042, -0.103311695, -0.00501070637, 0.994638026, 0.260976702, -0.965090394, 0.0222499147)
  5565. Weld631.Part0 = Part65
  5566. Weld631.Part1 = Part65
  5567. Weld631.part1 = Part65
  5568. Weld632.Parent = Part65
  5569. Weld632.C0 = CFrame.new(0, 0, 0, 0.77837646, -0.611555755, 0.141878441, -0.53605783, -0.765064538, -0.356816858, 0.326759517, 0.201682791, -0.923337638)
  5570. Weld632.C1 = CFrame.new(0, 0, 0, 0.77837646, -0.611555755, 0.141878441, -0.53605783, -0.765064538, -0.356816858, 0.326759517, 0.201682791, -0.923337638)
  5571. Weld632.Part0 = Part65
  5572. Weld632.Part1 = Part65
  5573. Weld632.part1 = Part65
  5574. Weld633.Parent = Part65
  5575. Weld633.C0 = CFrame.new(0, 0, 0, 0.77837646, -0.611555755, 0.141878441, -0.53605783, -0.765064538, -0.356816858, 0.326759517, 0.201682791, -0.923337638)
  5576. Weld633.C1 = CFrame.new(0, 0, 0, 0.77837646, -0.611555755, 0.141878441, -0.53605783, -0.765064538, -0.356816858, 0.326759517, 0.201682791, -0.923337638)
  5577. Weld633.Part0 = Part65
  5578. Weld633.Part1 = Part65
  5579. Weld633.part1 = Part65
  5580. Weld634.Parent = Part65
  5581. Weld634.C0 = CFrame.new(0, 0, 0, 0.74839884, -0.508151591, 0.426240683, -0.578328967, -0.814600289, 0.0442951024, 0.324707091, -0.279657722, -0.903524697)
  5582. Weld634.C1 = CFrame.new(0, 0, 0, 0.74839884, -0.508151591, 0.426240683, -0.578328967, -0.814600289, 0.0442951024, 0.324707091, -0.279657722, -0.903524697)
  5583. Weld634.Part0 = Part65
  5584. Weld634.Part1 = Part65
  5585. Weld634.part1 = Part65
  5586. Weld635.Parent = Part65
  5587. Weld635.C0 = CFrame.new(0, 0, 0, 0.958956599, 0.264221013, 0.102946892, -0.101181649, -0.020308448, 0.994664192, 0.264897913, -0.964253604, 0.00726918783)
  5588. Weld635.C1 = CFrame.new(0, 0, 0, 0.958956599, 0.264221013, 0.102946892, -0.101181649, -0.020308448, 0.994664192, 0.264897913, -0.964253604, 0.00726918783)
  5589. Weld635.Part0 = Part65
  5590. Weld635.Part1 = Part65
  5591. Weld635.part1 = Part65
  5592. Weld636.Parent = Part65
  5593. Weld636.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5594. Weld636.C1 = CFrame.new(-0.661155701, -1.5507431, -0.951358795, -0.731394947, -0.344940007, -0.588283658, 0.652602315, -0.10366559, -0.750575781, 0.197916403, -0.932878852, 0.30093351)
  5595. Weld636.Part0 = Part65
  5596. Weld636.Part1 = Part1
  5597. Weld636.part1 = Part1
  5598. Weld637.Parent = Part65
  5599. Weld637.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5600. Weld637.C1 = CFrame.new(-0.63627243, -5.37644196, -0.028465271, 0.197454765, -0.932731628, 0.301692128, 0.652975917, -0.104398325, -0.75014919, 0.731186211, 0.345117033, 0.588439226)
  5601. Weld637.Part0 = Part65
  5602. Weld637.Part1 = Part62
  5603. Weld637.part1 = Part62
  5604. Weld638.Parent = Part65
  5605. Weld638.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5606. Weld638.C1 = CFrame.new(-0.598457336, -1.46202087, -1.55236053, -0.757549524, -0.091690585, -0.646306455, 0.652774394, -0.1035714, -0.750439227, 0.00186644495, -0.990383208, 0.138317496)
  5607. Weld638.Part0 = Part65
  5608. Weld638.Part1 = Part15
  5609. Weld638.part1 = Part15
  5610. Weld639.Parent = Part65
  5611. Weld639.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5612. Weld639.C1 = CFrame.new(0.318572998, -0.255702972, 2.73757172, -0.731395423, -0.344940633, -0.588282704, 0.197339788, -0.932786584, 0.301597625, -0.652776361, 0.104490876, 0.750309944)
  5613. Weld639.Part0 = Part65
  5614. Weld639.Part1 = Part29
  5615. Weld639.part1 = Part29
  5616. Weld640.Parent = Part65
  5617. Weld640.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5618. Weld640.C1 = CFrame.new(-1.19394112, -0.84888649, 0.425582886, 0.664266765, -0.556502759, -0.499047875, -0.499948621, -0.827088833, 0.256854951, -0.555698037, 0.0788787007, -0.827634811)
  5619. Weld640.Part0 = Part65
  5620. Weld640.Part1 = Part5
  5621. Weld640.part1 = Part5
  5622. Weld641.Parent = Part65
  5623. Weld641.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5624. Weld641.C1 = CFrame.new(-0.852062225, -4.52523041, -0.0280227661, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5625. Weld641.Part0 = Part65
  5626. Weld641.Part1 = Part56
  5627. Weld641.part1 = Part56
  5628. Weld642.Parent = Part65
  5629. Weld642.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5630. Weld642.C1 = CFrame.new(-0.606513977, -1.46291351, -0.907112122, -0.731395423, -0.344940633, -0.588282704, 0.652600884, -0.103662558, -0.750577509, 0.197919339, -0.932878911, 0.300931275)
  5631. Weld642.Part0 = Part65
  5632. Weld642.Part1 = Part19
  5633. Weld642.part1 = Part19
  5634. Weld643.Parent = Part65
  5635. Weld643.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5636. Weld643.C1 = CFrame.new(-0.491157532, -1.46238708, -1.36507034, -0.757549524, -0.091690585, -0.646306455, 0.652774334, -0.103567883, -0.750439703, 0.00186873972, -0.990383625, 0.138314813)
  5637. Weld643.Part0 = Part65
  5638. Weld643.Part1 = Part7
  5639. Weld643.part1 = Part7
  5640. Weld644.Parent = Part65
  5641. Weld644.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5642. Weld644.C1 = CFrame.new(-0.480865479, -1.46286774, -0.834804535, -0.731395423, -0.344940633, -0.588282704, 0.652600884, -0.103662558, -0.750577509, 0.197919339, -0.932878911, 0.300931275)
  5643. Weld644.Part0 = Part65
  5644. Weld644.Part1 = Part23
  5645. Weld644.part1 = Part23
  5646. Weld645.Parent = Part65
  5647. Weld645.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5648. Weld645.C1 = CFrame.new(-0.853458405, -3.56803894, -0.0275878906, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5649. Weld645.Part0 = Part65
  5650. Weld645.Part1 = Part58
  5651. Weld645.part1 = Part58
  5652. Weld646.Parent = Part65
  5653. Weld646.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5654. Weld646.C1 = CFrame.new(-0.527244568, -1.46231842, -1.4274559, -0.757549524, -0.091690585, -0.646306455, 0.652774394, -0.1035714, -0.750439227, 0.00186644495, -0.990383208, 0.138317496)
  5655. Weld646.Part0 = Part65
  5656. Weld646.Part1 = Part11
  5657. Weld646.part1 = Part11
  5658. Weld647.Parent = Part65
  5659. Weld647.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5660. Weld647.C1 = CFrame.new(-0.418838501, -1.46318054, -0.799518585, -0.731395423, -0.344940633, -0.588282704, 0.652600884, -0.103662558, -0.750577509, 0.197919339, -0.932878911, 0.300931275)
  5661. Weld647.Part0 = Part65
  5662. Weld647.Part1 = Part9
  5663. Weld647.part1 = Part9
  5664. Weld648.Parent = Part65
  5665. Weld648.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5666. Weld648.C1 = CFrame.new(0.635574341, 0.79044342, -1.19419098, -0.666256368, -0.137448251, -0.732946873, 0.339306295, 0.819356918, -0.462087929, 0.66405791, -0.556556582, -0.49926573)
  5667. Weld648.Part0 = Part65
  5668. Weld648.Part1 = Part35
  5669. Weld648.part1 = Part35
  5670. Weld649.Parent = Part65
  5671. Weld649.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5672. Weld649.C1 = CFrame.new(-0.853176117, -3.8755188, -0.02734375, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5673. Weld649.Part0 = Part65
  5674. Weld649.Part1 = Part40
  5675. Weld649.part1 = Part40
  5676. Weld650.Parent = Part65
  5677. Weld650.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5678. Weld650.C1 = CFrame.new(-0.853176117, -3.8755188, -0.02734375, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5679. Weld650.Part0 = Part65
  5680. Weld650.Part1 = Part48
  5681. Weld650.part1 = Part48
  5682. Weld651.Parent = Part65
  5683. Weld651.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5684. Weld651.C1 = CFrame.new(-0.739898682, -1.46271515, -1.0682373, -0.731395423, -0.344940633, -0.588282704, 0.652600884, -0.103662558, -0.750577509, 0.197919339, -0.932878911, 0.300931275)
  5685. Weld651.Part0 = Part65
  5686. Weld651.Part1 = Part17
  5687. Weld651.part1 = Part17
  5688. Weld652.Parent = Part65
  5689. Weld652.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5690. Weld652.C1 = CFrame.new(-0.307167053, -0.255973816, 2.73774719, -0.731395423, -0.344940633, -0.588282704, 0.197339788, -0.932786584, 0.301597625, -0.652776361, 0.104490876, 0.750309944)
  5691. Weld652.Part0 = Part65
  5692. Weld652.Part1 = Part33
  5693. Weld652.part1 = Part33
  5694. Weld653.Parent = Part65
  5695. Weld653.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5696. Weld653.C1 = CFrame.new(-0.851463318, -5.0973053, -0.0278320313, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5697. Weld653.Part0 = Part65
  5698. Weld653.Part1 = Part52
  5699. Weld653.part1 = Part52
  5700. Weld654.Parent = Part65
  5701. Weld654.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5702. Weld654.C1 = CFrame.new(-0.853176117, -3.8755188, -0.02734375, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5703. Weld654.Part0 = Part65
  5704. Weld654.Part1 = Part44
  5705. Weld654.part1 = Part44
  5706. Weld655.Parent = Part65
  5707. Weld655.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5708. Weld655.C1 = CFrame.new(-0.853176117, -3.8755188, -0.02734375, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5709. Weld655.Part0 = Part65
  5710. Weld655.Part1 = Part46
  5711. Weld655.part1 = Part46
  5712. Weld656.Parent = Part65
  5713. Weld656.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5714. Weld656.C1 = CFrame.new(-0.853176117, -3.8755188, -0.02734375, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5715. Weld656.Part0 = Part65
  5716. Weld656.Part1 = Part42
  5717. Weld656.part1 = Part42
  5718. Weld657.Parent = Part65
  5719. Weld657.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5720. Weld657.C1 = CFrame.new(-0.562820435, -1.46224976, -1.48978043, -0.757549524, -0.091690585, -0.646306455, 0.652774394, -0.1035714, -0.750439227, 0.00186644495, -0.990383208, 0.138317496)
  5721. Weld657.Part0 = Part65
  5722. Weld657.Part1 = Part3
  5723. Weld657.part1 = Part3
  5724. Weld658.Parent = Part65
  5725. Weld658.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5726. Weld658.C1 = CFrame.new(0.000648498535, 0.183250427, -0.348403931, -0.731395423, -0.344940633, -0.588282704, -0.197339788, 0.932786584, -0.301597625, 0.652776361, -0.104490876, -0.750309944)
  5727. Weld658.Part0 = Part65
  5728. Weld658.Part1 = Part27
  5729. Weld658.part1 = Part27
  5730. Weld659.Parent = Part65
  5731. Weld659.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5732. Weld659.C1 = CFrame.new(-0.775619507, -1.46263123, -1.13047791, -0.731395423, -0.344940633, -0.588282704, 0.652600884, -0.103662558, -0.750577509, 0.197919339, -0.932878911, 0.300931275)
  5733. Weld659.Part0 = Part65
  5734. Weld659.Part1 = Part38
  5735. Weld659.part1 = Part38
  5736. Weld660.Parent = Part65
  5737. Weld660.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5738. Weld660.C1 = CFrame.new(-0.853176117, -3.8755188, -0.02734375, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5739. Weld660.Part0 = Part65
  5740. Weld660.Part1 = Part50
  5741. Weld660.part1 = Part50
  5742. Weld661.Parent = Part65
  5743. Weld661.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5744. Weld661.C1 = CFrame.new(-0.853176117, -3.8755188, -0.02734375, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5745. Weld661.Part0 = Part65
  5746. Weld661.Part1 = Part60
  5747. Weld661.part1 = Part60
  5748. Weld662.Parent = Part65
  5749. Weld662.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5750. Weld662.C1 = CFrame.new(-0.851676941, -4.81106567, -0.0274810791, 0.197457284, -0.932731867, 0.301689982, 0.652974427, -0.104395643, -0.750150859, 0.731186867, 0.34511739, 0.588438272)
  5751. Weld662.Part0 = Part65
  5752. Weld662.Part1 = Part54
  5753. Weld662.part1 = Part54
  5754. Weld663.Parent = Part65
  5755. Weld663.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5756. Weld663.C1 = CFrame.new(-0.543518066, -1.46318054, -0.871253967, -0.731395423, -0.344940633, -0.588282704, 0.652600884, -0.103662558, -0.750577509, 0.197919339, -0.932878911, 0.300931275)
  5757. Weld663.Part0 = Part65
  5758. Weld663.Part1 = Part25
  5759. Weld663.part1 = Part25
  5760. Weld664.Parent = Part65
  5761. Weld664.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5762. Weld664.C1 = CFrame.new(-1.05117798, -0.235496521, -1.19412231, 0.231131315, -0.482245862, 0.844995439, -0.711059332, -0.676523149, -0.19160153, 0.66405803, -0.556556702, -0.499271095)
  5763. Weld664.Part0 = Part65
  5764. Weld664.Part1 = Part13
  5765. Weld664.part1 = Part13
  5766. Weld665.Parent = Part65
  5767. Weld665.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5768. Weld665.C1 = CFrame.new(-1.07998657, -0.00105285645, -1.19466782, 0.0393124297, -0.64084512, 0.766662896, -0.746646762, -0.528736293, -0.403678805, 0.664058149, -0.556556761, -0.499270827)
  5769. Weld665.Part0 = Part65
  5770. Weld665.Part1 = Part21
  5771. Weld665.part1 = Part21
  5772. Weld666.Parent = Part65
  5773. Weld666.C0 = CFrame.new(0, 0, 0, 0.731291473, 0.34503001, 0.588359475, -0.652786613, 0.104027331, 0.750365436, 0.197690696, -0.9328053, 0.301309675)
  5774. Weld666.C1 = CFrame.new(-0.704147339, -1.4630661, -1.0050354, -0.731395423, -0.344940633, -0.588282704, 0.652600884, -0.103662558, -0.750577509, 0.197919339, -0.932878911, 0.300931275)
  5775. Weld666.Part0 = Part65
  5776. Weld666.Part1 = Part31
  5777. Weld666.part1 = Part31
  5778. Part667.Name = "Heater"
  5779. Part667.Parent = Tool0
  5780. Part667.CFrame = CFrame.new(-40.7250366, 1.46770835, 17.9568958, 0.000266898685, -0.000105557214, 0.999999881, 0.000155279209, 0.999997079, 0.00010306538, -1.00000012, 0.000149100495, 0.000266768271)
  5781. Part667.Orientation = Vector3.new(-0.00999999978, 89.9799957, 0.00999999978)
  5782. Part667.Position = Vector3.new(-40.7250366, 1.46770835, 17.9568958)
  5783. Part667.Rotation = Vector3.new(-21.1199989, 89.9700012, 21.5799999)
  5784. Part667.Color = Color3.new(0.105882, 0.164706, 0.207843)
  5785. Part667.Transparency = 1
  5786. Part667.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5787. Part667.BottomSurface = Enum.SurfaceType.Smooth
  5788. Part667.BrickColor = BrickColor.new("Black")
  5789. Part667.TopSurface = Enum.SurfaceType.Smooth
  5790. Part667.brickColor = BrickColor.new("Black")
  5791. Part667.FormFactor = Enum.FormFactor.Custom
  5792. Part667.formFactor = Enum.FormFactor.Custom
  5793. BlockMesh668.Parent = Part667
  5794. BlockMesh668.Scale = Vector3.new(0.714285731, 0.714285731, 0.714285731)
  5795. Part669.Name = "Mag"
  5796. Part669.Parent = Tool0
  5797. Part669.CFrame = CFrame.new(-41.7447929, 0.940467596, 20.3688831, -0.865945458, 0.000455084257, -0.500138223, 0.500138283, 4.89872036e-05, -0.865945578, -0.000369577814, -0.999999881, -0.00027002531)
  5798. Part669.Orientation = Vector3.new(59.9899979, -90.0299988, 89.9899979)
  5799. Part669.Position = Vector3.new(-41.7447929, 0.940467596, 20.3688831)
  5800. Part669.Rotation = Vector3.new(90.0199966, -30.0100002, -179.970001)
  5801. Part669.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5802. Part669.Size = Vector3.new(0.200000003, 0.330357134, 0.200000003)
  5803. Part669.BottomSurface = Enum.SurfaceType.Smooth
  5804. Part669.BrickColor = BrickColor.new("Really black")
  5805. Part669.TopSurface = Enum.SurfaceType.Smooth
  5806. Part669.brickColor = BrickColor.new("Really black")
  5807. Part669.FormFactor = Enum.FormFactor.Custom
  5808. Part669.formFactor = Enum.FormFactor.Custom
  5809. BlockMesh670.Parent = Part669
  5810. BlockMesh670.Scale = Vector3.new(0.491071492, 1, 0.107142858)
  5811. Part671.Name = "Mag2"
  5812. Part671.Parent = Tool0
  5813. Part671.CFrame = CFrame.new(-41.7783279, 1.02630079, 20.3689461, -0.865945458, 0.000455084257, -0.500138223, 0.500138283, 4.89872036e-05, -0.865945578, -0.000369577814, -0.999999881, -0.00027002531)
  5814. Part671.Orientation = Vector3.new(59.9899979, -90.0299988, 89.9899979)
  5815. Part671.Position = Vector3.new(-41.7783279, 1.02630079, 20.3689461)
  5816. Part671.Rotation = Vector3.new(90.0199966, -30.0100002, -179.970001)
  5817. Part671.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5818. Part671.Size = Vector3.new(0.200000003, 0.330357134, 0.200000003)
  5819. Part671.BottomSurface = Enum.SurfaceType.Smooth
  5820. Part671.BrickColor = BrickColor.new("Really black")
  5821. Part671.TopSurface = Enum.SurfaceType.Smooth
  5822. Part671.brickColor = BrickColor.new("Really black")
  5823. Part671.FormFactor = Enum.FormFactor.Custom
  5824. Part671.formFactor = Enum.FormFactor.Custom
  5825. BlockMesh672.Parent = Part671
  5826. BlockMesh672.Scale = Vector3.new(0.223214433, 1, 0.491071492)
  5827. Part673.Name = "Mag3"
  5828. Part673.Parent = Tool0
  5829. Part673.CFrame = CFrame.new(-41.4329681, 0.496739507, 20.3695774, -0.865945458, 0.000455084257, -0.500138223, 0.500138283, 4.89872036e-05, -0.865945578, -0.000369577814, -0.999999881, -0.00027002531)
  5830. Part673.Orientation = Vector3.new(59.9899979, -90.0299988, 89.9899979)
  5831. Part673.Position = Vector3.new(-41.4329681, 0.496739507, 20.3695774)
  5832. Part673.Rotation = Vector3.new(90.0199966, -30.0100002, -179.970001)
  5833. Part673.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5834. Part673.Size = Vector3.new(1.16964293, 0.419642836, 0.473214298)
  5835. Part673.BottomSurface = Enum.SurfaceType.Smooth
  5836. Part673.BrickColor = BrickColor.new("Really black")
  5837. Part673.TopSurface = Enum.SurfaceType.Smooth
  5838. Part673.brickColor = BrickColor.new("Really black")
  5839. Part673.FormFactor = Enum.FormFactor.Custom
  5840. Part673.formFactor = Enum.FormFactor.Custom
  5841. BlockMesh674.Parent = Part673
  5842. Part675.Parent = Tool0
  5843. Part675.CFrame = CFrame.new(-40.7949104, 0.941841006, 21.2497406, 0.000268242991, -0.258820415, -0.965925276, -0.500311375, -0.836372972, 0.223970369, -0.865841806, 0.483210087, -0.129716828)
  5844. Part675.Orientation = Vector3.new(-12.9399996, -97.6500015, -149.110001)
  5845. Part675.Position = Vector3.new(-40.7949104, 0.941841006, 21.2497406)
  5846. Part675.Rotation = Vector3.new(-120.079994, -75, 89.9399948)
  5847. Part675.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5848. Part675.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5849. Part675.BottomSurface = Enum.SurfaceType.Smooth
  5850. Part675.BrickColor = BrickColor.new("Really black")
  5851. Part675.TopSurface = Enum.SurfaceType.Smooth
  5852. Part675.brickColor = BrickColor.new("Really black")
  5853. Part675.FormFactor = Enum.FormFactor.Custom
  5854. Part675.formFactor = Enum.FormFactor.Custom
  5855. CylinderMesh676.Parent = Part675
  5856. CylinderMesh676.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  5857. Part677.Parent = Tool0
  5858. Part677.CFrame = CFrame.new(-40.6068993, 0.84577632, 21.3058052, -0.499785006, -0.866149485, -3.42626008e-05, -0.749963343, 0.432763159, -0.500270963, 0.433324248, -0.250002235, -0.865868986)
  5859. Part677.Orientation = Vector3.new(30.0199986, -180, -60.0099983)
  5860. Part677.Position = Vector3.new(-40.6068993, 0.84577632, 21.3058052)
  5861. Part677.Rotation = Vector3.new(149.979996, 0, 119.989998)
  5862. Part677.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5863. Part677.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5864. Part677.BottomSurface = Enum.SurfaceType.Smooth
  5865. Part677.BrickColor = BrickColor.new("Really black")
  5866. Part677.TopSurface = Enum.SurfaceType.Smooth
  5867. Part677.brickColor = BrickColor.new("Really black")
  5868. Part677.FormFactor = Enum.FormFactor.Custom
  5869. Part677.formFactor = Enum.FormFactor.Custom
  5870. CylinderMesh678.Parent = Part677
  5871. CylinderMesh678.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  5872. Part679.Parent = Tool0
  5873. Part679.CFrame = CFrame.new(-40.6658363, 0.904437184, 21.2717991, -0.865892589, -0.500229657, -3.25609581e-05, -0.433117241, 0.749759257, -0.500264466, 0.250275105, -0.433167189, -0.865868986)
  5874. Part679.Orientation = Vector3.new(30.0199986, -180, -30.0100002)
  5875. Part679.Position = Vector3.new(-40.6658363, 0.904437184, 21.2717991)
  5876. Part679.Rotation = Vector3.new(149.979996, 0, 149.979996)
  5877. Part679.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5878. Part679.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5879. Part679.BottomSurface = Enum.SurfaceType.Smooth
  5880. Part679.BrickColor = BrickColor.new("Really black")
  5881. Part679.TopSurface = Enum.SurfaceType.Smooth
  5882. Part679.brickColor = BrickColor.new("Really black")
  5883. Part679.FormFactor = Enum.FormFactor.Custom
  5884. Part679.formFactor = Enum.FormFactor.Custom
  5885. CylinderMesh680.Parent = Part679
  5886. CylinderMesh680.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  5887. Part681.Parent = Tool0
  5888. Part681.CFrame = CFrame.new(-40.334816, 1.05819297, 20.8928185, -0.999999881, -4.92100389e-06, -5.86112292e-05, 6.10603674e-05, 0.000155630783, -0.999997079, 5.07597042e-06, -1.00000012, -0.000149479252)
  5889. Part681.Orientation = Vector3.new(89.8600006, -158.589996, 21.4200001)
  5890. Part681.Position = Vector3.new(-40.334816, 1.05819297, 20.8928185)
  5891. Part681.Rotation = Vector3.new(90.0099945, 0, 180)
  5892. Part681.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5893. Part681.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5894. Part681.BottomSurface = Enum.SurfaceType.Smooth
  5895. Part681.BrickColor = BrickColor.new("Really black")
  5896. Part681.TopSurface = Enum.SurfaceType.Smooth
  5897. Part681.brickColor = BrickColor.new("Really black")
  5898. Part681.FormFactor = Enum.FormFactor.Custom
  5899. Part681.formFactor = Enum.FormFactor.Custom
  5900. CylinderMesh682.Parent = Part681
  5901. CylinderMesh682.Scale = Vector3.new(0.669642806, 0.446428567, 0.669642806)
  5902. Part683.Parent = Tool0
  5903. Part683.CFrame = CFrame.new(-40.3357658, 1.04944515, 21.1389141, -0.999999881, 1.06438711e-05, -5.82592111e-05, 6.14777164e-05, 0.25904116, -0.965863287, 4.95688528e-06, -0.965867877, -0.259036094)
  5904. Part683.Orientation = Vector3.new(74.9899979, -179.98999, 0.00999999978)
  5905. Part683.Position = Vector3.new(-40.3357658, 1.04944515, 21.1389141)
  5906. Part683.Rotation = Vector3.new(105.009995, 0, -180)
  5907. Part683.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5908. Part683.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5909. Part683.BottomSurface = Enum.SurfaceType.Smooth
  5910. Part683.BrickColor = BrickColor.new("Really black")
  5911. Part683.TopSurface = Enum.SurfaceType.Smooth
  5912. Part683.brickColor = BrickColor.new("Really black")
  5913. Part683.FormFactor = Enum.FormFactor.Custom
  5914. Part683.formFactor = Enum.FormFactor.Custom
  5915. CylinderMesh684.Parent = Part683
  5916. CylinderMesh684.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  5917. Part685.Parent = Tool0
  5918. Part685.CFrame = CFrame.new(-40.3944283, 0.857100487, 21.2991028, -0.706876576, 0.707336843, -3.36675366e-05, 0.612474859, 0.612049103, -0.500264466, -0.353839666, -0.353650898, -0.865868926)
  5919. Part685.Orientation = Vector3.new(30.0199986, -180, 45.0200005)
  5920. Part685.Position = Vector3.new(-40.3944283, 0.857100487, 21.2991028)
  5921. Part685.Rotation = Vector3.new(149.979996, 0, -134.979996)
  5922. Part685.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5923. Part685.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5924. Part685.BottomSurface = Enum.SurfaceType.Smooth
  5925. Part685.BrickColor = BrickColor.new("Really black")
  5926. Part685.TopSurface = Enum.SurfaceType.Smooth
  5927. Part685.brickColor = BrickColor.new("Really black")
  5928. Part685.FormFactor = Enum.FormFactor.Custom
  5929. Part685.formFactor = Enum.FormFactor.Custom
  5930. CylinderMesh686.Parent = Part685
  5931. CylinderMesh686.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  5932. Part687.Parent = Tool0
  5933. Part687.CFrame = CFrame.new(-40.3348007, 1.05913424, 20.8259258, -0.999999881, -4.92100389e-06, -5.86112292e-05, 6.10603674e-05, 0.000155630783, -0.999997079, 5.07597042e-06, -1.00000012, -0.000149479252)
  5934. Part687.Orientation = Vector3.new(89.8600006, -158.589996, 21.4200001)
  5935. Part687.Position = Vector3.new(-40.3348007, 1.05913424, 20.8259258)
  5936. Part687.Rotation = Vector3.new(90.0099945, 0, 180)
  5937. Part687.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5938. Part687.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5939. Part687.BottomSurface = Enum.SurfaceType.Smooth
  5940. Part687.BrickColor = BrickColor.new("Really black")
  5941. Part687.TopSurface = Enum.SurfaceType.Smooth
  5942. Part687.brickColor = BrickColor.new("Really black")
  5943. Part687.FormFactor = Enum.FormFactor.Custom
  5944. Part687.formFactor = Enum.FormFactor.Custom
  5945. CylinderMesh688.Parent = Part687
  5946. CylinderMesh688.Scale = Vector3.new(1.33928561, 0.223214284, 1.33928561)
  5947. Part689.Parent = Tool0
  5948. Part689.CFrame = CFrame.new(-40.5653763, 0.827878237, 21.3157501, -0.258699745, -0.965957582, -3.35569712e-05, -0.836387992, 0.224018708, -0.500264764, 0.483248889, -0.129391968, -0.865868747)
  5949. Part689.Orientation = Vector3.new(30.0199986, -180, -75.0100021)
  5950. Part689.Position = Vector3.new(-40.5653763, 0.827878237, 21.3157501)
  5951. Part689.Rotation = Vector3.new(149.979996, 0, 104.989998)
  5952. Part689.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5953. Part689.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5954. Part689.BottomSurface = Enum.SurfaceType.Smooth
  5955. Part689.BrickColor = BrickColor.new("Really black")
  5956. Part689.TopSurface = Enum.SurfaceType.Smooth
  5957. Part689.brickColor = BrickColor.new("Really black")
  5958. Part689.FormFactor = Enum.FormFactor.Custom
  5959. Part689.formFactor = Enum.FormFactor.Custom
  5960. CylinderMesh690.Parent = Part689
  5961. CylinderMesh690.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  5962. Part691.Parent = Tool0
  5963. Part691.CFrame = CFrame.new(-40.6813164, 0.941849351, 21.2498493, -0.965884209, -0.258974224, -3.36769081e-05, -0.224219158, 0.836334229, -0.500264704, 0.129585788, -0.483196884, -0.865868747)
  5964. Part691.Orientation = Vector3.new(30.0199986, -180, -15.0099993)
  5965. Part691.Position = Vector3.new(-40.6813164, 0.941849351, 21.2498493)
  5966. Part691.Rotation = Vector3.new(149.979996, 0, 164.98999)
  5967. Part691.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5968. Part691.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5969. Part691.BottomSurface = Enum.SurfaceType.Smooth
  5970. Part691.BrickColor = BrickColor.new("Really black")
  5971. Part691.TopSurface = Enum.SurfaceType.Smooth
  5972. Part691.brickColor = BrickColor.new("Really black")
  5973. Part691.FormFactor = Enum.FormFactor.Custom
  5974. Part691.formFactor = Enum.FormFactor.Custom
  5975. CylinderMesh692.Parent = Part691
  5976. CylinderMesh692.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  5977. Part693.Parent = Tool0
  5978. Part693.CFrame = CFrame.new(-40.3356819, 1.0589118, 20.6359005, -0.999999881, -4.83140548e-06, -5.90284253e-05, 6.14775709e-05, 0.000155541347, -0.99999702, 4.98644067e-06, -1.00000012, -0.000149389816)
  5979. Part693.Orientation = Vector3.new(89.8600006, -158.440002, 21.5699997)
  5980. Part693.Position = Vector3.new(-40.3356819, 1.0589118, 20.6359005)
  5981. Part693.Rotation = Vector3.new(90.0099945, 0, 180)
  5982. Part693.Color = Color3.new(0.960784, 0.803922, 0.188235)
  5983. Part693.Size = Vector3.new(0.669642866, 0.200000003, 0.669642866)
  5984. Part693.BottomSurface = Enum.SurfaceType.Smooth
  5985. Part693.BrickColor = BrickColor.new("Bright yellow")
  5986. Part693.Material = Enum.Material.Ice
  5987. Part693.TopSurface = Enum.SurfaceType.Smooth
  5988. Part693.brickColor = BrickColor.new("Bright yellow")
  5989. Part693.FormFactor = Enum.FormFactor.Custom
  5990. Part693.formFactor = Enum.FormFactor.Custom
  5991. CylinderMesh694.Parent = Part693
  5992. CylinderMesh694.Scale = Vector3.new(1.04999995, 0.334821403, 1.04999995)
  5993. Part695.Parent = Tool0
  5994. Part695.CFrame = CFrame.new(-40.3194046, 1.26159656, 19.0949459, -0.706933081, -0.707280457, -4.66910205e-06, -0.707276404, 0.706932545, -0.000739386771, 0.00053071056, -0.000523641647, -1)
  5995. Part695.Orientation = Vector3.new(0.0399999991, -180, -45.0099983)
  5996. Part695.Position = Vector3.new(-40.3194046, 1.26159656, 19.0949459)
  5997. Part695.Rotation = Vector3.new(179.959991, 0, 134.98999)
  5998. Part695.Color = Color3.new(0, 0.12549, 0.376471)
  5999. Part695.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6000. Part695.BottomSurface = Enum.SurfaceType.Smooth
  6001. Part695.BrickColor = BrickColor.new("Navy blue")
  6002. Part695.Reflectance = 0.10000000149012
  6003. Part695.TopSurface = Enum.SurfaceType.Smooth
  6004. Part695.brickColor = BrickColor.new("Navy blue")
  6005. Part695.FormFactor = Enum.FormFactor.Custom
  6006. Part695.formFactor = Enum.FormFactor.Custom
  6007. SpecialMesh696.Parent = Part695
  6008. SpecialMesh696.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6009. SpecialMesh696.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6010. SpecialMesh696.MeshType = Enum.MeshType.FileMesh
  6011. Part697.Parent = Tool0
  6012. Part697.CFrame = CFrame.new(-40.7914772, 0.981865287, 21.2285023, 0.000267140364, -0.000167237711, -0.999999881, -0.500310242, -0.865842819, 1.35985774e-05, -0.865842402, 0.500317216, -0.000314827164)
  6013. Part697.Orientation = Vector3.new(0, -90.0199966, -149.979996)
  6014. Part697.Position = Vector3.new(-40.7914772, 0.981865287, 21.2285023)
  6015. Part697.Rotation = Vector3.new(-177.529999, -89.9700012, 32.0499992)
  6016. Part697.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6017. Part697.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6018. Part697.BottomSurface = Enum.SurfaceType.Smooth
  6019. Part697.BrickColor = BrickColor.new("Really black")
  6020. Part697.TopSurface = Enum.SurfaceType.Smooth
  6021. Part697.brickColor = BrickColor.new("Really black")
  6022. Part697.FormFactor = Enum.FormFactor.Custom
  6023. Part697.formFactor = Enum.FormFactor.Custom
  6024. CylinderMesh698.Parent = Part697
  6025. CylinderMesh698.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6026. Part699.Parent = Tool0
  6027. Part699.CFrame = CFrame.new(-41.1394234, 0.999591827, 21.2137833, -1, 4.01434627e-05, -4.63980869e-05, 6.11942887e-05, 0.707078815, -0.707134724, 4.42026658e-06, -0.707134724, -0.707078874)
  6028. Part699.Orientation = Vector3.new(45, -180, 0)
  6029. Part699.Position = Vector3.new(-41.1394234, 0.999591827, 21.2137833)
  6030. Part699.Rotation = Vector3.new(135, 0, -180)
  6031. Part699.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6032. Part699.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6033. Part699.BottomSurface = Enum.SurfaceType.Smooth
  6034. Part699.BrickColor = BrickColor.new("Really black")
  6035. Part699.TopSurface = Enum.SurfaceType.Smooth
  6036. Part699.brickColor = BrickColor.new("Really black")
  6037. Part699.FormFactor = Enum.FormFactor.Custom
  6038. Part699.formFactor = Enum.FormFactor.Custom
  6039. CylinderMesh700.Parent = Part699
  6040. CylinderMesh700.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6041. Part701.Parent = Tool0
  6042. Part701.CFrame = CFrame.new(-40.9994812, 0.831561327, 21.3190193, 0.00028454492, -0.965859234, 0.259066552, -0.500310957, 0.224175677, 0.836318195, -0.865841925, -0.129853487, -0.483173013)
  6043. Part701.Orientation = Vector3.new(-56.75, 151.800003, -65.8600006)
  6044. Part701.Position = Vector3.new(-40.9994812, 0.831561327, 21.3190193)
  6045. Part701.Rotation = Vector3.new(-120.019997, 15.0099993, 89.9799957)
  6046. Part701.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6047. Part701.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6048. Part701.BottomSurface = Enum.SurfaceType.Smooth
  6049. Part701.BrickColor = BrickColor.new("Really black")
  6050. Part701.TopSurface = Enum.SurfaceType.Smooth
  6051. Part701.brickColor = BrickColor.new("Really black")
  6052. Part701.FormFactor = Enum.FormFactor.Custom
  6053. Part701.formFactor = Enum.FormFactor.Custom
  6054. CylinderMesh702.Parent = Part701
  6055. CylinderMesh702.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6056. Part703.Parent = Tool0
  6057. Part703.CFrame = CFrame.new(-41.1308632, 0.922304273, 21.2616749, -0.965900362, -0.258913964, -3.31305091e-05, -0.224167243, 0.836348295, -0.500264585, 0.129555136, -0.48320505, -0.865868807)
  6058. Part703.Orientation = Vector3.new(30.0199986, -180, -15)
  6059. Part703.Position = Vector3.new(-41.1308632, 0.922304273, 21.2616749)
  6060. Part703.Rotation = Vector3.new(149.979996, 0, 164.98999)
  6061. Part703.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6062. Part703.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6063. Part703.BottomSurface = Enum.SurfaceType.Smooth
  6064. Part703.BrickColor = BrickColor.new("Really black")
  6065. Part703.TopSurface = Enum.SurfaceType.Smooth
  6066. Part703.brickColor = BrickColor.new("Really black")
  6067. Part703.FormFactor = Enum.FormFactor.Custom
  6068. Part703.formFactor = Enum.FormFactor.Custom
  6069. CylinderMesh704.Parent = Part703
  6070. CylinderMesh704.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6071. Part705.Parent = Tool0
  6072. Part705.CFrame = CFrame.new(-41.1389046, 0.960916162, 21.2391129, -0.999999881, 4.8892518e-05, -3.32190284e-05, 6.1402905e-05, 0.865869284, -0.500264227, 4.45000614e-06, -0.500271201, -0.865868986)
  6073. Part705.Orientation = Vector3.new(30.0199986, -180, 0)
  6074. Part705.Position = Vector3.new(-41.1389046, 0.960916162, 21.2391129)
  6075. Part705.Rotation = Vector3.new(149.979996, 0, -180)
  6076. Part705.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6077. Part705.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6078. Part705.BottomSurface = Enum.SurfaceType.Smooth
  6079. Part705.BrickColor = BrickColor.new("Really black")
  6080. Part705.TopSurface = Enum.SurfaceType.Smooth
  6081. Part705.brickColor = BrickColor.new("Really black")
  6082. Part705.FormFactor = Enum.FormFactor.Custom
  6083. Part705.formFactor = Enum.FormFactor.Custom
  6084. CylinderMesh706.Parent = Part705
  6085. CylinderMesh706.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6086. Part707.Parent = Tool0
  6087. Part707.CFrame = CFrame.new(-40.6838646, 0.976267457, 21.2197094, -0.999999881, -1.45591384e-05, -3.32680393e-05, 6.48654895e-06, 0.86586982, -0.500263393, 3.62354913e-05, -0.500270426, -0.865869462)
  6088. Part707.Orientation = Vector3.new(30.0199986, -180, 0)
  6089. Part707.Position = Vector3.new(-40.6838646, 0.976267457, 21.2197094)
  6090. Part707.Rotation = Vector3.new(149.979996, 0, 180)
  6091. Part707.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6092. Part707.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6093. Part707.BottomSurface = Enum.SurfaceType.Smooth
  6094. Part707.BrickColor = BrickColor.new("Really black")
  6095. Part707.TopSurface = Enum.SurfaceType.Smooth
  6096. Part707.brickColor = BrickColor.new("Really black")
  6097. Part707.FormFactor = Enum.FormFactor.Custom
  6098. Part707.formFactor = Enum.FormFactor.Custom
  6099. CylinderMesh708.Parent = Part707
  6100. CylinderMesh708.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6101. Part709.Parent = Tool0
  6102. Part709.CFrame = CFrame.new(-40.9543991, 0.829099536, 21.3213062, 0.000283770991, -0.99999994, 0.000113457645, -0.50031203, -4.37372728e-05, 0.865845263, -0.865845144, -0.000302465953, -0.50031203)
  6103. Part709.Orientation = Vector3.new(-59.9799995, 179.98999, -90.0099945)
  6104. Part709.Position = Vector3.new(-40.9543991, 0.829099536, 21.3213062)
  6105. Part709.Rotation = Vector3.new(-120.019997, 0.00999999978, 89.9799957)
  6106. Part709.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6107. Part709.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6108. Part709.BottomSurface = Enum.SurfaceType.Smooth
  6109. Part709.BrickColor = BrickColor.new("Really black")
  6110. Part709.TopSurface = Enum.SurfaceType.Smooth
  6111. Part709.brickColor = BrickColor.new("Really black")
  6112. Part709.FormFactor = Enum.FormFactor.Custom
  6113. Part709.formFactor = Enum.FormFactor.Custom
  6114. CylinderMesh710.Parent = Part709
  6115. CylinderMesh710.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6116. Part711.Parent = Tool0
  6117. Part711.CFrame = CFrame.new(-40.8684616, 0.854422808, 21.3063507, 0.000267618248, -0.865955055, -0.500121653, -0.500311911, -0.433140099, 0.749714434, -0.865841508, 0.250019789, -0.433369488)
  6118. Part711.Orientation = Vector3.new(-48.5699997, -130.910004, -130.87999)
  6119. Part711.Position = Vector3.new(-40.8684616, 0.854422808, 21.3063507)
  6120. Part711.Rotation = Vector3.new(-120.029999, -30.0100002, 89.9799957)
  6121. Part711.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6122. Part711.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6123. Part711.BottomSurface = Enum.SurfaceType.Smooth
  6124. Part711.BrickColor = BrickColor.new("Really black")
  6125. Part711.TopSurface = Enum.SurfaceType.Smooth
  6126. Part711.brickColor = BrickColor.new("Really black")
  6127. Part711.FormFactor = Enum.FormFactor.Custom
  6128. Part711.formFactor = Enum.FormFactor.Custom
  6129. CylinderMesh712.Parent = Part711
  6130. CylinderMesh712.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6131. Part713.Parent = Tool0
  6132. Part713.CFrame = CFrame.new(-40.3354073, 0.960473776, 21.2393265, -0.999999881, 4.80774033e-05, -3.3230117e-05, 6.07026705e-05, 0.86586982, -0.500263393, 4.86744511e-06, -0.500270426, -0.865869462)
  6133. Part713.Orientation = Vector3.new(30.0199986, -180, 0)
  6134. Part713.Position = Vector3.new(-40.3354073, 0.960473776, 21.2393265)
  6135. Part713.Rotation = Vector3.new(149.979996, 0, -180)
  6136. Part713.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6137. Part713.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6138. Part713.BottomSurface = Enum.SurfaceType.Smooth
  6139. Part713.BrickColor = BrickColor.new("Really black")
  6140. Part713.TopSurface = Enum.SurfaceType.Smooth
  6141. Part713.brickColor = BrickColor.new("Really black")
  6142. Part713.FormFactor = Enum.FormFactor.Custom
  6143. Part713.formFactor = Enum.FormFactor.Custom
  6144. CylinderMesh714.Parent = Part713
  6145. CylinderMesh714.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6146. Part715.Parent = Tool0
  6147. Part715.CFrame = CFrame.new(-40.6837883, 1.20496655, 21.0777493, -1, 2.90949847e-05, -6.41761944e-05, 6.59536236e-05, 0.707080007, -0.707133651, 2.48036613e-05, -0.707133651, -0.707080066)
  6148. Part715.Orientation = Vector3.new(45, -179.98999, 0.00999999978)
  6149. Part715.Position = Vector3.new(-40.6837883, 1.20496655, 21.0777493)
  6150. Part715.Rotation = Vector3.new(135, 0, -180)
  6151. Part715.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6152. Part715.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6153. Part715.BottomSurface = Enum.SurfaceType.Smooth
  6154. Part715.BrickColor = BrickColor.new("Really black")
  6155. Part715.TopSurface = Enum.SurfaceType.Smooth
  6156. Part715.brickColor = BrickColor.new("Really black")
  6157. Part715.FormFactor = Enum.FormFactor.Custom
  6158. Part715.formFactor = Enum.FormFactor.Custom
  6159. CylinderMesh716.Parent = Part715
  6160. CylinderMesh716.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6161. Part717.Parent = Tool0
  6162. Part717.CFrame = CFrame.new(-41.1399918, 1.05840313, 20.8930283, -0.999999881, -4.29524835e-06, -5.82384164e-05, 6.06876492e-05, 0.000156450318, -0.99999702, 4.45021715e-06, -1.00000012, -0.000150298845)
  6163. Part717.Orientation = Vector3.new(89.8600006, -158.819992, 21.1999989)
  6164. Part717.Position = Vector3.new(-41.1399918, 1.05840313, 20.8930283)
  6165. Part717.Rotation = Vector3.new(90.0099945, 0, 180)
  6166. Part717.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6167. Part717.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6168. Part717.BottomSurface = Enum.SurfaceType.Smooth
  6169. Part717.BrickColor = BrickColor.new("Really black")
  6170. Part717.TopSurface = Enum.SurfaceType.Smooth
  6171. Part717.brickColor = BrickColor.new("Really black")
  6172. Part717.FormFactor = Enum.FormFactor.Custom
  6173. Part717.formFactor = Enum.FormFactor.Custom
  6174. CylinderMesh718.Parent = Part717
  6175. CylinderMesh718.Scale = Vector3.new(0.669642806, 0.446428567, 0.669642806)
  6176. Part719.Parent = Tool0
  6177. Part719.CFrame = CFrame.new(-41.1399307, 1.02933288, 21.179718, -1, 2.66041388e-05, -5.51988378e-05, 6.11049327e-05, 0.500138342, -0.865945518, 4.56932003e-06, -0.865945578, -0.500138342)
  6178. Part719.Orientation = Vector3.new(59.9899979, -179.98999, 0.00999999978)
  6179. Part719.Position = Vector3.new(-41.1399307, 1.02933288, 21.179718)
  6180. Part719.Rotation = Vector3.new(120.009995, 0, -180)
  6181. Part719.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6182. Part719.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6183. Part719.BottomSurface = Enum.SurfaceType.Smooth
  6184. Part719.BrickColor = BrickColor.new("Really black")
  6185. Part719.TopSurface = Enum.SurfaceType.Smooth
  6186. Part719.brickColor = BrickColor.new("Really black")
  6187. Part719.FormFactor = Enum.FormFactor.Custom
  6188. Part719.formFactor = Enum.FormFactor.Custom
  6189. CylinderMesh720.Parent = Part719
  6190. CylinderMesh720.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6191. Part721.Parent = Tool0
  6192. Part721.CFrame = CFrame.new(-40.6839752, 1.23046422, 21.0398102, -1, 1.56715887e-05, -5.63540234e-05, 5.66374874e-05, 0.500137508, -0.865945995, 1.46140092e-05, -0.865945995, -0.500137508)
  6193. Part721.Orientation = Vector3.new(59.9899979, -179.98999, 0.00999999978)
  6194. Part721.Position = Vector3.new(-40.6839752, 1.23046422, 21.0398102)
  6195. Part721.Rotation = Vector3.new(120.009995, 0, -180)
  6196. Part721.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6197. Part721.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6198. Part721.BottomSurface = Enum.SurfaceType.Smooth
  6199. Part721.BrickColor = BrickColor.new("Really black")
  6200. Part721.TopSurface = Enum.SurfaceType.Smooth
  6201. Part721.brickColor = BrickColor.new("Really black")
  6202. Part721.FormFactor = Enum.FormFactor.Custom
  6203. Part721.formFactor = Enum.FormFactor.Custom
  6204. CylinderMesh722.Parent = Part721
  6205. CylinderMesh722.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6206. Part723.Parent = Tool0
  6207. Part723.CFrame = CFrame.new(-40.90905, 0.837150335, 21.316597, 0.000267081836, -0.965916574, -0.258853227, -0.500310957, -0.224252805, 0.836297572, -0.865842044, 0.129285678, -0.483325213)
  6208. Part723.Orientation = Vector3.new(-56.75, -151.830002, -114.139999)
  6209. Part723.Position = Vector3.new(-40.90905, 0.837150335, 21.316597)
  6210. Part723.Rotation = Vector3.new(-120.029999, -15, 89.9799957)
  6211. Part723.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6212. Part723.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6213. Part723.BottomSurface = Enum.SurfaceType.Smooth
  6214. Part723.BrickColor = BrickColor.new("Really black")
  6215. Part723.TopSurface = Enum.SurfaceType.Smooth
  6216. Part723.brickColor = BrickColor.new("Really black")
  6217. Part723.FormFactor = Enum.FormFactor.Custom
  6218. Part723.formFactor = Enum.FormFactor.Custom
  6219. CylinderMesh724.Parent = Part723
  6220. CylinderMesh724.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6221. Part725.Parent = Tool0
  6222. Part725.CFrame = CFrame.new(-41.1103287, 0.886867166, 21.2824268, -0.865923643, -0.500176013, -3.31706797e-05, -0.43307057, 0.749786198, -0.500264525, 0.25024882, -0.433182478, -0.865868866)
  6223. Part725.Orientation = Vector3.new(30.0199986, -180, -30.0100002)
  6224. Part725.Position = Vector3.new(-41.1103287, 0.886867166, 21.2824268)
  6225. Part725.Rotation = Vector3.new(149.979996, 0, 149.98999)
  6226. Part725.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6227. Part725.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6228. Part725.BottomSurface = Enum.SurfaceType.Smooth
  6229. Part725.BrickColor = BrickColor.new("Really black")
  6230. Part725.TopSurface = Enum.SurfaceType.Smooth
  6231. Part725.brickColor = BrickColor.new("Really black")
  6232. Part725.FormFactor = Enum.FormFactor.Custom
  6233. Part725.formFactor = Enum.FormFactor.Custom
  6234. CylinderMesh726.Parent = Part725
  6235. CylinderMesh726.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6236. Part727.Parent = Tool0
  6237. Part727.CFrame = CFrame.new(-40.7531433, 1.8997395, 20.6662083, 0.999999881, 4.47388356e-06, -5.86259121e-05, -6.10751158e-05, -0.000156286435, -0.999997079, -4.62890193e-06, 1.00000012, -0.000150134932)
  6238. Part727.Orientation = Vector3.new(89.8600006, -158.669998, -158.649994)
  6239. Part727.Position = Vector3.new(-40.7531433, 1.8997395, 20.6662083)
  6240. Part727.Rotation = Vector3.new(90.0099945, 0, 0)
  6241. Part727.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6242. Part727.Size = Vector3.new(0.200000003, 0.803571403, 0.200000003)
  6243. Part727.BottomSurface = Enum.SurfaceType.Smooth
  6244. Part727.BrickColor = BrickColor.new("Really black")
  6245. Part727.TopSurface = Enum.SurfaceType.Smooth
  6246. Part727.brickColor = BrickColor.new("Really black")
  6247. Part727.FormFactor = Enum.FormFactor.Custom
  6248. Part727.formFactor = Enum.FormFactor.Custom
  6249. BlockMesh728.Parent = Part727
  6250. BlockMesh728.Scale = Vector3.new(0.669642806, 1, 0.133928552)
  6251. Part729.Parent = Tool0
  6252. Part729.CFrame = CFrame.new(-40.7915077, 1.09738886, 21.1602879, 0.000249288569, -0.000168728147, -0.999999881, -0.500311196, -0.865842223, 2.38201392e-05, -0.865841806, 0.50031817, -0.000300116051)
  6253. Part729.Orientation = Vector3.new(0, -90.0199966, -149.979996)
  6254. Part729.Position = Vector3.new(-40.7915077, 1.09738886, 21.1602879)
  6255. Part729.Rotation = Vector3.new(-175.459991, -89.9700012, 34.0900002)
  6256. Part729.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6257. Part729.Size = Vector3.new(0.200000003, 0.223214284, 0.200000003)
  6258. Part729.BottomSurface = Enum.SurfaceType.Smooth
  6259. Part729.BrickColor = BrickColor.new("Really black")
  6260. Part729.TopSurface = Enum.SurfaceType.Smooth
  6261. Part729.brickColor = BrickColor.new("Really black")
  6262. Part729.FormFactor = Enum.FormFactor.Custom
  6263. Part729.formFactor = Enum.FormFactor.Custom
  6264. CylinderMesh730.Parent = Part729
  6265. CylinderMesh730.Scale = Vector3.new(0.223214284, 1, 0.223214284)
  6266. Part731.Parent = Tool0
  6267. Part731.CFrame = CFrame.new(-41.13974, 1.05901909, 21.0270767, -0.999999881, -4.47388356e-06, -5.86259121e-05, 6.10751158e-05, 0.000156286435, -0.999997079, 4.62890193e-06, -1.00000012, -0.000150134932)
  6268. Part731.Orientation = Vector3.new(89.8600006, -158.669998, 21.3500004)
  6269. Part731.Position = Vector3.new(-41.13974, 1.05901909, 21.0270767)
  6270. Part731.Rotation = Vector3.new(90.0099945, 0, 180)
  6271. Part731.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6272. Part731.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6273. Part731.BottomSurface = Enum.SurfaceType.Smooth
  6274. Part731.BrickColor = BrickColor.new("Really black")
  6275. Part731.TopSurface = Enum.SurfaceType.Smooth
  6276. Part731.brickColor = BrickColor.new("Really black")
  6277. Part731.FormFactor = Enum.FormFactor.Custom
  6278. Part731.formFactor = Enum.FormFactor.Custom
  6279. CylinderMesh732.Parent = Part731
  6280. CylinderMesh732.Scale = Vector3.new(0.334821403, 0.892857134, 0.334821403)
  6281. Part733.Parent = Tool0
  6282. Part733.CFrame = CFrame.new(-40.7538071, 2.29265618, 21.4515152, -0.999999881, -5.88006005e-05, 4.73521231e-06, 6.12540025e-05, -0.999996781, 0.000741109892, 4.83748045e-06, 0.000747264305, 0.999999881)
  6283. Part733.Orientation = Vector3.new(-0.0399999991, 0, 180)
  6284. Part733.Position = Vector3.new(-40.7538071, 2.29265618, 21.4515152)
  6285. Part733.Rotation = Vector3.new(-0.0399999991, 0, 180)
  6286. Part733.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6287. Part733.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6288. Part733.BottomSurface = Enum.SurfaceType.Smooth
  6289. Part733.BrickColor = BrickColor.new("Really black")
  6290. Part733.TopSurface = Enum.SurfaceType.Smooth
  6291. Part733.brickColor = BrickColor.new("Really black")
  6292. Part733.FormFactor = Enum.FormFactor.Custom
  6293. Part733.formFactor = Enum.FormFactor.Custom
  6294. SpecialMesh734.Parent = Part733
  6295. SpecialMesh734.Scale = Vector3.new(0.669642806, 0.133928567, 0.178571403)
  6296. SpecialMesh734.MeshType = Enum.MeshType.Wedge
  6297. Part735.Parent = Tool0
  6298. Part735.CFrame = CFrame.new(-41.061264, 1.65398073, 20.6579266, -0.999999881, -4.47388356e-06, -5.86259121e-05, 6.10751158e-05, 0.000156286435, -0.999997079, 4.62890193e-06, -1.00000012, -0.000150134932)
  6299. Part735.Orientation = Vector3.new(89.8600006, -158.669998, 21.3500004)
  6300. Part735.Position = Vector3.new(-41.061264, 1.65398073, 20.6579266)
  6301. Part735.Rotation = Vector3.new(90.0099945, 0, 180)
  6302. Part735.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6303. Part735.Size = Vector3.new(0.267857134, 0.267857134, 0.267857134)
  6304. Part735.BottomSurface = Enum.SurfaceType.Smooth
  6305. Part735.BrickColor = BrickColor.new("Really black")
  6306. Part735.TopSurface = Enum.SurfaceType.Smooth
  6307. Part735.brickColor = BrickColor.new("Really black")
  6308. Part735.FormFactor = Enum.FormFactor.Custom
  6309. Part735.formFactor = Enum.FormFactor.Custom
  6310. CylinderMesh736.Parent = Part735
  6311. CylinderMesh736.Scale = Vector3.new(1.39999998, 1, 1.39999998)
  6312. Part737.Parent = Tool0
  6313. Part737.CFrame = CFrame.new(-40.7537804, 2.31277156, 21.8400497, -0.999999881, -2.65114359e-05, -5.22534756e-05, 6.08813862e-05, -0.38478297, -0.923003852, 4.50977905e-06, -0.923004389, 0.384789824)
  6314. Part737.Orientation = Vector3.new(67.3699951, -0.00999999978, 179.98999)
  6315. Part737.Position = Vector3.new(-40.7537804, 2.31277156, 21.8400497)
  6316. Part737.Rotation = Vector3.new(67.3699951, 0, 180)
  6317. Part737.Color = Color3.new(1, 0, 0)
  6318. Part737.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6319. Part737.BottomSurface = Enum.SurfaceType.Smooth
  6320. Part737.BrickColor = BrickColor.new("Really red")
  6321. Part737.TopSurface = Enum.SurfaceType.Smooth
  6322. Part737.brickColor = BrickColor.new("Really red")
  6323. Part737.FormFactor = Enum.FormFactor.Custom
  6324. Part737.formFactor = Enum.FormFactor.Custom
  6325. CylinderMesh738.Parent = Part737
  6326. CylinderMesh738.Scale = Vector3.new(0.669642806, 0.0446428582, 0.446428567)
  6327. Part739.Parent = Tool0
  6328. Part739.CFrame = CFrame.new(-40.5538063, 1.67839456, 20.612566, -0.000221806738, -0.707009912, -0.707203627, -0.00020162118, 0.707203329, -0.707006037, 1.00000012, -1.84786768e-05, -0.000294958882)
  6329. Part739.Orientation = Vector3.new(44.9899979, -90.0199966, -0.0199999996)
  6330. Part739.Position = Vector3.new(-40.5538063, 1.67839456, 20.612566)
  6331. Part739.Rotation = Vector3.new(90.0199966, -45.0099983, 90.0199966)
  6332. Part739.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6333. Part739.Size = Vector3.new(0.267857134, 0.267857134, 0.200000003)
  6334. Part739.BottomSurface = Enum.SurfaceType.Smooth
  6335. Part739.BrickColor = BrickColor.new("Bright yellow")
  6336. Part739.Material = Enum.Material.Ice
  6337. Part739.TopSurface = Enum.SurfaceType.Smooth
  6338. Part739.brickColor = BrickColor.new("Bright yellow")
  6339. Part739.FormFactor = Enum.FormFactor.Custom
  6340. Part739.formFactor = Enum.FormFactor.Custom
  6341. BlockMesh740.Parent = Part739
  6342. BlockMesh740.Scale = Vector3.new(1, 1, 0.357142866)
  6343. Decal741.Parent = Part739
  6344. Decal741.Texture = "http://www.roblox.com/asset/?id=64841612"
  6345. Part742.Parent = Tool0
  6346. Part742.CFrame = CFrame.new(-40.7547798, 2.32478833, 21.8696289, -0.999999881, -2.70752389e-05, -5.2599753e-05, 6.14179371e-05, -0.384781361, -0.923004568, 4.89703643e-06, -0.923005104, 0.384788245)
  6347. Part742.Orientation = Vector3.new(67.3699951, -0.00999999978, 179.98999)
  6348. Part742.Position = Vector3.new(-40.7547798, 2.32478833, 21.8696289)
  6349. Part742.Rotation = Vector3.new(67.3699951, 0, 180)
  6350. Part742.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6351. Part742.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6352. Part742.BottomSurface = Enum.SurfaceType.Smooth
  6353. Part742.BrickColor = BrickColor.new("Bright yellow")
  6354. Part742.Material = Enum.Material.Ice
  6355. Part742.TopSurface = Enum.SurfaceType.Smooth
  6356. Part742.brickColor = BrickColor.new("Bright yellow")
  6357. Part742.FormFactor = Enum.FormFactor.Custom
  6358. Part742.formFactor = Enum.FormFactor.Custom
  6359. CylinderMesh743.Parent = Part742
  6360. CylinderMesh743.Scale = Vector3.new(0.535714269, 0.267857134, 0.357142866)
  6361. Part744.Parent = Tool0
  6362. Part744.CFrame = CFrame.new(-40.9280739, 1.71649992, 20.724823, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6363. Part744.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6364. Part744.Position = Vector3.new(-40.9280739, 1.71649992, 20.724823)
  6365. Part744.Rotation = Vector3.new(90.0099945, 0, 180)
  6366. Part744.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6367. Part744.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6368. Part744.BottomSurface = Enum.SurfaceType.Smooth
  6369. Part744.BrickColor = BrickColor.new("Really black")
  6370. Part744.TopSurface = Enum.SurfaceType.Smooth
  6371. Part744.brickColor = BrickColor.new("Really black")
  6372. Part744.FormFactor = Enum.FormFactor.Custom
  6373. Part744.formFactor = Enum.FormFactor.Custom
  6374. CylinderMesh745.Parent = Part744
  6375. CylinderMesh745.Scale = Vector3.new(1.78571427, 0.669642806, 1.78571427)
  6376. Part746.Parent = Tool0
  6377. Part746.CFrame = CFrame.new(-40.553772, 1.67798948, 20.2559547, -0.000203985372, -0.70701009, -0.707203388, -0.000182979478, 0.70720309, -0.707006156, 1.00000012, -1.90624851e-05, -0.000269175653)
  6378. Part746.Orientation = Vector3.new(44.9899979, -90.0199966, -0.00999999978)
  6379. Part746.Position = Vector3.new(-40.553772, 1.67798948, 20.2559547)
  6380. Part746.Rotation = Vector3.new(90.0199966, -45.0099983, 90.0199966)
  6381. Part746.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6382. Part746.Size = Vector3.new(0.267857134, 0.267857134, 0.200000003)
  6383. Part746.BottomSurface = Enum.SurfaceType.Smooth
  6384. Part746.BrickColor = BrickColor.new("Bright yellow")
  6385. Part746.Material = Enum.Material.Ice
  6386. Part746.TopSurface = Enum.SurfaceType.Smooth
  6387. Part746.brickColor = BrickColor.new("Bright yellow")
  6388. Part746.FormFactor = Enum.FormFactor.Custom
  6389. Part746.formFactor = Enum.FormFactor.Custom
  6390. BlockMesh747.Parent = Part746
  6391. BlockMesh747.Scale = Vector3.new(1, 1, 0.357142836)
  6392. Decal748.Parent = Part746
  6393. Decal748.Texture = "http://www.roblox.com/asset/?id=19736495"
  6394. Part749.Parent = Tool0
  6395. Part749.CFrame = CFrame.new(-40.335125, 1.05962396, 20.2348137, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6396. Part749.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6397. Part749.Position = Vector3.new(-40.335125, 1.05962396, 20.2348137)
  6398. Part749.Rotation = Vector3.new(90.0099945, 0, 180)
  6399. Part749.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6400. Part749.Size = Vector3.new(0.669642866, 1.00446427, 0.669642866)
  6401. Part749.BottomSurface = Enum.SurfaceType.Smooth
  6402. Part749.BrickColor = BrickColor.new("Really black")
  6403. Part749.TopSurface = Enum.SurfaceType.Smooth
  6404. Part749.brickColor = BrickColor.new("Really black")
  6405. Part749.FormFactor = Enum.FormFactor.Custom
  6406. Part749.formFactor = Enum.FormFactor.Custom
  6407. CylinderMesh750.Parent = Part749
  6408. Part751.Parent = Tool0
  6409. Part751.CFrame = CFrame.new(-40.7491188, 1.43849456, 20.8992672, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6410. Part751.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6411. Part751.Position = Vector3.new(-40.7491188, 1.43849456, 20.8992672)
  6412. Part751.Rotation = Vector3.new(90.0099945, 0, 180)
  6413. Part751.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6414. Part751.Size = Vector3.new(0.803571403, 0.200000003, 0.625)
  6415. Part751.BottomSurface = Enum.SurfaceType.Smooth
  6416. Part751.BrickColor = BrickColor.new("Bright yellow")
  6417. Part751.Material = Enum.Material.Ice
  6418. Part751.TopSurface = Enum.SurfaceType.Smooth
  6419. Part751.brickColor = BrickColor.new("Bright yellow")
  6420. Part751.FormFactor = Enum.FormFactor.Custom
  6421. Part751.formFactor = Enum.FormFactor.Custom
  6422. CylinderMesh752.Parent = Part751
  6423. CylinderMesh752.Scale = Vector3.new(1, 0.178571433, 1)
  6424. Part753.Parent = Tool0
  6425. Part753.CFrame = CFrame.new(-41.3740234, 1.62789774, 19.0951099, 0.999999881, -5.90240597e-05, -4.88428623e-06, -6.14775709e-05, -0.999996781, -0.000740349817, -4.98644067e-06, 0.000746504287, -0.999999881)
  6426. Part753.Orientation = Vector3.new(0.0399999991, -180, -180)
  6427. Part753.Position = Vector3.new(-41.3740234, 1.62789774, 19.0951099)
  6428. Part753.Rotation = Vector3.new(179.959991, 0, 0)
  6429. Part753.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6430. Part753.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6431. Part753.BottomSurface = Enum.SurfaceType.Smooth
  6432. Part753.BrickColor = BrickColor.new("Bright yellow")
  6433. Part753.Material = Enum.Material.Ice
  6434. Part753.TopSurface = Enum.SurfaceType.Smooth
  6435. Part753.brickColor = BrickColor.new("Bright yellow")
  6436. Part753.FormFactor = Enum.FormFactor.Custom
  6437. Part753.formFactor = Enum.FormFactor.Custom
  6438. CylinderMesh754.Parent = Part753
  6439. CylinderMesh754.Scale = Vector3.new(0.223214284, 0.714285731, 0.223214284)
  6440. Part755.Parent = Tool0
  6441. Part755.CFrame = CFrame.new(-40.7910767, 1.24756944, 20.9242191, -0.999999881, -4.65218363e-06, -5.97733961e-05, 6.22225707e-05, 0.000156703609, -0.999997079, 4.80739254e-06, -1.00000012, -0.000150552107)
  6442. Part755.Orientation = Vector3.new(89.8600006, -158.349991, 21.6599998)
  6443. Part755.Position = Vector3.new(-40.7910767, 1.24756944, 20.9242191)
  6444. Part755.Rotation = Vector3.new(90.0099945, 0, 180)
  6445. Part755.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6446. Part755.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6447. Part755.BottomSurface = Enum.SurfaceType.Smooth
  6448. Part755.BrickColor = BrickColor.new("Really black")
  6449. Part755.TopSurface = Enum.SurfaceType.Smooth
  6450. Part755.brickColor = BrickColor.new("Really black")
  6451. Part755.FormFactor = Enum.FormFactor.Custom
  6452. Part755.formFactor = Enum.FormFactor.Custom
  6453. CylinderMesh756.Parent = Part755
  6454. CylinderMesh756.Scale = Vector3.new(0.446428567, 0.0446428582, 0.446428567)
  6455. Part757.Parent = Tool0
  6456. Part757.CFrame = CFrame.new(-40.2608566, 1.35968542, 19.0945663, -0.499783844, -0.000191709056, 0.866150141, -0.866149962, -0.000639550155, -0.499783844, 0.000649759546, -0.999999762, 0.000153588058)
  6457. Part757.Orientation = Vector3.new(29.9899998, 89.9899979, -90.0400009)
  6458. Part757.Position = Vector3.new(-40.2608566, 1.35968542, 19.0945663)
  6459. Part757.Rotation = Vector3.new(89.9799957, 60.0099983, 179.979996)
  6460. Part757.Color = Color3.new(0, 0.12549, 0.376471)
  6461. Part757.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6462. Part757.BottomSurface = Enum.SurfaceType.Smooth
  6463. Part757.BrickColor = BrickColor.new("Navy blue")
  6464. Part757.Reflectance = 0.10000000149012
  6465. Part757.TopSurface = Enum.SurfaceType.Smooth
  6466. Part757.brickColor = BrickColor.new("Navy blue")
  6467. Part757.FormFactor = Enum.FormFactor.Custom
  6468. Part757.formFactor = Enum.FormFactor.Custom
  6469. SpecialMesh758.Parent = Part757
  6470. SpecialMesh758.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6471. SpecialMesh758.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6472. SpecialMesh758.MeshType = Enum.MeshType.FileMesh
  6473. Part759.Parent = Tool0
  6474. Part759.CFrame = CFrame.new(-40.9274635, 1.71631873, 20.5906143, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6475. Part759.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6476. Part759.Position = Vector3.new(-40.9274635, 1.71631873, 20.5906143)
  6477. Part759.Rotation = Vector3.new(90.0099945, 0, 180)
  6478. Part759.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6479. Part759.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6480. Part759.BottomSurface = Enum.SurfaceType.Smooth
  6481. Part759.BrickColor = BrickColor.new("Really black")
  6482. Part759.TopSurface = Enum.SurfaceType.Smooth
  6483. Part759.brickColor = BrickColor.new("Really black")
  6484. Part759.FormFactor = Enum.FormFactor.Custom
  6485. Part759.formFactor = Enum.FormFactor.Custom
  6486. CylinderMesh760.Parent = Part759
  6487. CylinderMesh760.Scale = Vector3.new(1.51785719, 0.669642806, 1.51785719)
  6488. Part761.Parent = Tool0
  6489. Part761.CFrame = CFrame.new(-40.7541084, 1.91233778, 21.5506458, -0.999999881, 5.90240597e-05, -4.88428623e-06, 6.14775709e-05, 0.999996781, -0.000740349817, 4.98644067e-06, -0.000746504287, -0.999999881)
  6490. Part761.Orientation = Vector3.new(0.0399999991, -180, 0)
  6491. Part761.Position = Vector3.new(-40.7541084, 1.91233778, 21.5506458)
  6492. Part761.Rotation = Vector3.new(179.959991, 0, -180)
  6493. Part761.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6494. Part761.Size = Vector3.new(0.200000003, 0.200000003, 0.428571433)
  6495. Part761.BottomSurface = Enum.SurfaceType.Smooth
  6496. Part761.BrickColor = BrickColor.new("Really black")
  6497. Part761.TopSurface = Enum.SurfaceType.Smooth
  6498. Part761.brickColor = BrickColor.new("Really black")
  6499. Part761.FormFactor = Enum.FormFactor.Custom
  6500. Part761.formFactor = Enum.FormFactor.Custom
  6501. BlockMesh762.Parent = Part761
  6502. BlockMesh762.Scale = Vector3.new(0.669642806, 0.446428567, 1)
  6503. Part763.Parent = Tool0
  6504. Part763.CFrame = CFrame.new(-40.7540474, 2.19380713, 21.4517727, 0.999999881, 5.90240597e-05, 4.88428623e-06, -6.14775709e-05, 0.999996781, 0.000740349817, -4.98644067e-06, -0.000746504287, 0.999999881)
  6505. Part763.Orientation = Vector3.new(-0.0399999991, 0, 0)
  6506. Part763.Position = Vector3.new(-40.7540474, 2.19380713, 21.4517727)
  6507. Part763.Rotation = Vector3.new(-0.0399999991, 0, 0)
  6508. Part763.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6509. Part763.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6510. Part763.BottomSurface = Enum.SurfaceType.Smooth
  6511. Part763.BrickColor = BrickColor.new("Really black")
  6512. Part763.TopSurface = Enum.SurfaceType.Smooth
  6513. Part763.brickColor = BrickColor.new("Really black")
  6514. Part763.FormFactor = Enum.FormFactor.Custom
  6515. Part763.formFactor = Enum.FormFactor.Custom
  6516. SpecialMesh764.Parent = Part763
  6517. SpecialMesh764.Scale = Vector3.new(0.669642806, 0.133928567, 0.178571403)
  6518. SpecialMesh764.MeshType = Enum.MeshType.Wedge
  6519. Part765.Parent = Tool0
  6520. Part765.CFrame = CFrame.new(-40.7541237, 2.2430687, 21.4921856, -0.999999881, 5.90240597e-05, -4.88428623e-06, 6.14775709e-05, 0.999996781, -0.000740349817, 4.98644067e-06, -0.000746504287, -0.999999881)
  6521. Part765.Orientation = Vector3.new(0.0399999991, -180, 0)
  6522. Part765.Position = Vector3.new(-40.7541237, 2.2430687, 21.4921856)
  6523. Part765.Rotation = Vector3.new(179.959991, 0, -180)
  6524. Part765.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6525. Part765.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6526. Part765.BottomSurface = Enum.SurfaceType.Smooth
  6527. Part765.BrickColor = BrickColor.new("Really black")
  6528. Part765.TopSurface = Enum.SurfaceType.Smooth
  6529. Part765.brickColor = BrickColor.new("Really black")
  6530. Part765.FormFactor = Enum.FormFactor.Custom
  6531. Part765.formFactor = Enum.FormFactor.Custom
  6532. BlockMesh766.Parent = Part765
  6533. BlockMesh766.Scale = Vector3.new(0.669642806, 0.357142866, 0.0446428582)
  6534. Part767.Parent = Tool0
  6535. Part767.CFrame = CFrame.new(-40.335125, 1.05962396, 20.2348137, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6536. Part767.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6537. Part767.Position = Vector3.new(-40.335125, 1.05962396, 20.2348137)
  6538. Part767.Rotation = Vector3.new(90.0099945, 0, 180)
  6539. Part767.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6540. Part767.Size = Vector3.new(0.401785702, 1.13839281, 0.401785702)
  6541. Part767.BottomSurface = Enum.SurfaceType.Smooth
  6542. Part767.BrickColor = BrickColor.new("Really black")
  6543. Part767.TopSurface = Enum.SurfaceType.Smooth
  6544. Part767.brickColor = BrickColor.new("Really black")
  6545. Part767.FormFactor = Enum.FormFactor.Custom
  6546. Part767.formFactor = Enum.FormFactor.Custom
  6547. SpecialMesh768.Parent = Part767
  6548. Part769.Parent = Tool0
  6549. Part769.CFrame = CFrame.new(-40.7541122, 2.14002061, 21.452179, -0.999999881, -5.90240597e-05, 4.88428623e-06, 6.14775709e-05, -0.999996781, 0.000740349817, 4.98644067e-06, 0.000746504287, 0.999999881)
  6550. Part769.Orientation = Vector3.new(-0.0399999991, 0, 180)
  6551. Part769.Position = Vector3.new(-40.7541122, 2.14002061, 21.452179)
  6552. Part769.Rotation = Vector3.new(-0.0399999991, 0, 180)
  6553. Part769.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6554. Part769.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6555. Part769.BottomSurface = Enum.SurfaceType.Smooth
  6556. Part769.BrickColor = BrickColor.new("Really black")
  6557. Part769.TopSurface = Enum.SurfaceType.Smooth
  6558. Part769.brickColor = BrickColor.new("Really black")
  6559. Part769.FormFactor = Enum.FormFactor.Custom
  6560. Part769.formFactor = Enum.FormFactor.Custom
  6561. SpecialMesh770.Parent = Part769
  6562. SpecialMesh770.Scale = Vector3.new(0.669642806, 0.223214284, 0.178571403)
  6563. SpecialMesh770.MeshType = Enum.MeshType.Wedge
  6564. Part771.Parent = Tool0
  6565. Part771.CFrame = CFrame.new(-41.1557312, 1.54220915, 20.3677425, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6566. Part771.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6567. Part771.Position = Vector3.new(-41.1557312, 1.54220915, 20.3677425)
  6568. Part771.Rotation = Vector3.new(90.0099945, 0, 180)
  6569. Part771.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6570. Part771.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  6571. Part771.BottomSurface = Enum.SurfaceType.Smooth
  6572. Part771.BrickColor = BrickColor.new("Really black")
  6573. Part771.TopSurface = Enum.SurfaceType.Smooth
  6574. Part771.brickColor = BrickColor.new("Really black")
  6575. Part771.FormFactor = Enum.FormFactor.Custom
  6576. Part771.formFactor = Enum.FormFactor.Custom
  6577. CylinderMesh772.Parent = Part771
  6578. CylinderMesh772.Scale = Vector3.new(0.491071463, 1, 2.45535707)
  6579. Part773.Parent = Tool0
  6580. Part773.CFrame = CFrame.new(-41.1396599, 1.05948305, 20.2342987, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6581. Part773.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6582. Part773.Position = Vector3.new(-41.1396599, 1.05948305, 20.2342987)
  6583. Part773.Rotation = Vector3.new(90.0099945, 0, 180)
  6584. Part773.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6585. Part773.Size = Vector3.new(0.669642866, 1.00446427, 0.669642866)
  6586. Part773.BottomSurface = Enum.SurfaceType.Smooth
  6587. Part773.BrickColor = BrickColor.new("Really black")
  6588. Part773.TopSurface = Enum.SurfaceType.Smooth
  6589. Part773.brickColor = BrickColor.new("Really black")
  6590. Part773.FormFactor = Enum.FormFactor.Custom
  6591. Part773.formFactor = Enum.FormFactor.Custom
  6592. CylinderMesh774.Parent = Part773
  6593. Part775.Parent = Tool0
  6594. Part775.CFrame = CFrame.new(-40.1231995, 1.62748516, 19.0948219, -0.999999881, -5.90240597e-05, 4.88428623e-06, 6.14775709e-05, -0.999996781, 0.000740349817, 4.98644067e-06, 0.000746504287, 0.999999881)
  6595. Part775.Orientation = Vector3.new(-0.0399999991, 0, 180)
  6596. Part775.Position = Vector3.new(-40.1231995, 1.62748516, 19.0948219)
  6597. Part775.Rotation = Vector3.new(-0.0399999991, 0, 180)
  6598. Part775.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6599. Part775.BottomSurface = Enum.SurfaceType.Smooth
  6600. Part775.TopSurface = Enum.SurfaceType.Smooth
  6601. Part775.FormFactor = Enum.FormFactor.Custom
  6602. Part775.formFactor = Enum.FormFactor.Custom
  6603. CylinderMesh776.Parent = Part775
  6604. CylinderMesh776.Scale = Vector3.new(0.223214284, 0.714285731, 0.223214284)
  6605. Part777.Parent = Tool0
  6606. Part777.CFrame = CFrame.new(-40.6151505, 1.90049481, 19.7877216, 0.965937734, -0.258774668, -6.12501244e-05, -9.96980234e-05, -0.000135453563, -1, 0.258774668, 0.965937674, -0.000156639027)
  6607. Part777.Orientation = Vector3.new(90, -15, 0)
  6608. Part777.Position = Vector3.new(-40.6151505, 1.90049481, 19.7877216)
  6609. Part777.Rotation = Vector3.new(90.0099945, 0, 15)
  6610. Part777.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6611. Part777.Size = Vector3.new(0.200000003, 1.11607146, 0.200000003)
  6612. Part777.BottomSurface = Enum.SurfaceType.Smooth
  6613. Part777.BrickColor = BrickColor.new("Really black")
  6614. Part777.TopSurface = Enum.SurfaceType.Smooth
  6615. Part777.brickColor = BrickColor.new("Really black")
  6616. Part777.FormFactor = Enum.FormFactor.Custom
  6617. Part777.formFactor = Enum.FormFactor.Custom
  6618. BlockMesh778.Parent = Part777
  6619. BlockMesh778.Scale = Vector3.new(0.669642806, 1, 0.133928552)
  6620. Part779.Parent = Tool0
  6621. Part779.CFrame = CFrame.new(-40.7487335, 1.43857121, 21.3148251, 0.000105960498, 0.00026713041, 0.999999881, -0.999996781, -0.000740716001, 0.000103707949, 0.000746897771, -0.999999881, 0.000266905059)
  6622. Part779.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  6623. Part779.Position = Vector3.new(-40.7487335, 1.43857121, 21.3148251)
  6624. Part779.Rotation = Vector3.new(-21.2299995, 89.9700012, -68.3600006)
  6625. Part779.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6626. Part779.Size = Vector3.new(0.200000003, 0.794642806, 0.200000003)
  6627. Part779.BottomSurface = Enum.SurfaceType.Smooth
  6628. Part779.BrickColor = BrickColor.new("Bright yellow")
  6629. Part779.Material = Enum.Material.Ice
  6630. Part779.TopSurface = Enum.SurfaceType.Smooth
  6631. Part779.brickColor = BrickColor.new("Bright yellow")
  6632. Part779.FormFactor = Enum.FormFactor.Custom
  6633. Part779.formFactor = Enum.FormFactor.Custom
  6634. CylinderMesh780.Parent = Part779
  6635. CylinderMesh780.Scale = Vector3.new(0.714285731, 1, 0.714285731)
  6636. Part781.Parent = Tool0
  6637. Part781.CFrame = CFrame.new(-40.3361702, 0.999263406, 21.2133789, -1, 3.96483156e-05, -4.64508303e-05, 6.08814735e-05, 0.707079887, -0.70713371, 4.80778954e-06, -0.70713377, -0.707079828)
  6638. Part781.Orientation = Vector3.new(45, -180, 0)
  6639. Part781.Position = Vector3.new(-40.3361702, 0.999263406, 21.2133789)
  6640. Part781.Rotation = Vector3.new(135, 0, -180)
  6641. Part781.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6642. Part781.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6643. Part781.BottomSurface = Enum.SurfaceType.Smooth
  6644. Part781.BrickColor = BrickColor.new("Really black")
  6645. Part781.TopSurface = Enum.SurfaceType.Smooth
  6646. Part781.brickColor = BrickColor.new("Really black")
  6647. Part781.FormFactor = Enum.FormFactor.Custom
  6648. Part781.formFactor = Enum.FormFactor.Custom
  6649. CylinderMesh782.Parent = Part781
  6650. CylinderMesh782.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6651. Part783.Parent = Tool0
  6652. Part783.CFrame = CFrame.new(-40.834507, 0.880534649, 21.2909451, 0.000267469237, -0.706984162, -0.707229257, -0.500311196, -0.612441897, 0.612043917, -0.865841806, 0.353676051, -0.353880763)
  6653. Part783.Orientation = Vector3.new(-37.7399979, -116.579994, -140.75)
  6654. Part783.Position = Vector3.new(-40.834507, 0.880534649, 21.2909451)
  6655. Part783.Rotation = Vector3.new(-120.040001, -45.0099983, 89.9799957)
  6656. Part783.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6657. Part783.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6658. Part783.BottomSurface = Enum.SurfaceType.Smooth
  6659. Part783.BrickColor = BrickColor.new("Really black")
  6660. Part783.TopSurface = Enum.SurfaceType.Smooth
  6661. Part783.brickColor = BrickColor.new("Really black")
  6662. Part783.FormFactor = Enum.FormFactor.Custom
  6663. Part783.formFactor = Enum.FormFactor.Custom
  6664. CylinderMesh784.Parent = Part783
  6665. CylinderMesh784.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6666. Part785.Parent = Tool0
  6667. Part785.CFrame = CFrame.new(-40.1666718, 1.62729406, 19.094326, -0.000266630435, -0.999999881, -5.85052476e-05, -0.000156918308, 6.09969866e-05, -0.999997079, 1.00000012, -0.000266475457, -0.000150783366)
  6668. Part785.Orientation = Vector3.new(89.8600006, -158.789993, -68.7600021)
  6669. Part785.Position = Vector3.new(-40.1666718, 1.62729406, 19.094326)
  6670. Part785.Rotation = Vector3.new(90.0099945, 0, 90.0199966)
  6671. Part785.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6672. Part785.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6673. Part785.BottomSurface = Enum.SurfaceType.Smooth
  6674. Part785.BrickColor = BrickColor.new("Bright yellow")
  6675. Part785.Material = Enum.Material.Ice
  6676. Part785.TopSurface = Enum.SurfaceType.Smooth
  6677. Part785.brickColor = BrickColor.new("Bright yellow")
  6678. Part785.FormFactor = Enum.FormFactor.Custom
  6679. Part785.formFactor = Enum.FormFactor.Custom
  6680. CylinderMesh786.Parent = Part785
  6681. CylinderMesh786.Scale = Vector3.new(0.223214284, 0.446428567, 0.223214284)
  6682. Part787.Parent = Tool0
  6683. Part787.CFrame = CFrame.new(-40.5210915, 0.820468903, 21.3206844, 2.12967516e-05, -0.999999881, -3.30579351e-05, -0.865868926, 5.47610398e-07, -0.500265062, 0.500271976, 3.94242124e-05, -0.865868628)
  6684. Part787.Orientation = Vector3.new(30.0199986, -180, -90)
  6685. Part787.Position = Vector3.new(-40.5210915, 0.820468903, 21.3206844)
  6686. Part787.Rotation = Vector3.new(149.979996, 0, 90)
  6687. Part787.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6688. Part787.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6689. Part787.BottomSurface = Enum.SurfaceType.Smooth
  6690. Part787.BrickColor = BrickColor.new("Really black")
  6691. Part787.TopSurface = Enum.SurfaceType.Smooth
  6692. Part787.brickColor = BrickColor.new("Really black")
  6693. Part787.FormFactor = Enum.FormFactor.Custom
  6694. Part787.formFactor = Enum.FormFactor.Custom
  6695. CylinderMesh788.Parent = Part787
  6696. CylinderMesh788.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6697. Part789.Parent = Tool0
  6698. Part789.CFrame = CFrame.new(-40.6837616, 1.2479744, 20.924181, -0.999999881, -5.03929914e-06, -6.05335299e-05, 6.29826391e-05, 0.00015633108, -0.99999702, 5.19459854e-06, -1.00000012, -0.00015017949)
  6699. Part789.Orientation = Vector3.new(89.8600006, -158.050003, 21.9399986)
  6700. Part789.Position = Vector3.new(-40.6837616, 1.2479744, 20.924181)
  6701. Part789.Rotation = Vector3.new(90.0099945, 0, 180)
  6702. Part789.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6703. Part789.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6704. Part789.BottomSurface = Enum.SurfaceType.Smooth
  6705. Part789.BrickColor = BrickColor.new("Really black")
  6706. Part789.TopSurface = Enum.SurfaceType.Smooth
  6707. Part789.brickColor = BrickColor.new("Really black")
  6708. Part789.FormFactor = Enum.FormFactor.Custom
  6709. Part789.formFactor = Enum.FormFactor.Custom
  6710. CylinderMesh790.Parent = Part789
  6711. CylinderMesh790.Scale = Vector3.new(0.446428567, 0.0446428582, 0.446428567)
  6712. Part791.Parent = Tool0
  6713. Part791.CFrame = CFrame.new(-40.5537529, 1.67994022, 19.8981743, -0.000267494819, -0.707010865, -0.707202494, -0.000156933762, 0.707202256, -0.707007051, 1.00000012, -8.23841838e-05, -0.000295675069)
  6714. Part791.Orientation = Vector3.new(44.9899979, -90.0199966, -0.00999999978)
  6715. Part791.Position = Vector3.new(-40.5537529, 1.67994022, 19.8981743)
  6716. Part791.Rotation = Vector3.new(90.0199966, -45.0099983, 90.0199966)
  6717. Part791.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6718. Part791.Size = Vector3.new(0.267857134, 0.267857134, 0.200000003)
  6719. Part791.BottomSurface = Enum.SurfaceType.Smooth
  6720. Part791.BrickColor = BrickColor.new("Really black")
  6721. Part791.TopSurface = Enum.SurfaceType.Smooth
  6722. Part791.brickColor = BrickColor.new("Really black")
  6723. Part791.FormFactor = Enum.FormFactor.Custom
  6724. Part791.formFactor = Enum.FormFactor.Custom
  6725. BlockMesh792.Parent = Part791
  6726. BlockMesh792.Scale = Vector3.new(1, 1, 0.357142836)
  6727. Decal793.Parent = Part791
  6728. Decal793.Texture = "http://www.roblox.com/asset/?id=25401482"
  6729. Part794.Parent = Tool0
  6730. Part794.CFrame = CFrame.new(-40.753727, 1.90757322, 21.4566555, -0.999999881, 5.90240597e-05, -4.88428623e-06, 6.14775709e-05, 0.999996781, -0.000740349817, 4.98644067e-06, -0.000746504287, -0.999999881)
  6731. Part794.Orientation = Vector3.new(0.0399999991, -180, 0)
  6732. Part794.Position = Vector3.new(-40.753727, 1.90757322, 21.4566555)
  6733. Part794.Rotation = Vector3.new(179.959991, 0, -180)
  6734. Part794.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6735. Part794.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6736. Part794.BottomSurface = Enum.SurfaceType.Smooth
  6737. Part794.BrickColor = BrickColor.new("Really black")
  6738. Part794.TopSurface = Enum.SurfaceType.Smooth
  6739. Part794.brickColor = BrickColor.new("Really black")
  6740. Part794.FormFactor = Enum.FormFactor.Custom
  6741. Part794.formFactor = Enum.FormFactor.Custom
  6742. BlockMesh795.Parent = Part794
  6743. BlockMesh795.Scale = Vector3.new(0.736607134, 0.178571433, 0.580357254)
  6744. Part796.Parent = Tool0
  6745. Part796.CFrame = CFrame.new(-41.13937, 1.05919504, 20.6365814, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6746. Part796.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6747. Part796.Position = Vector3.new(-41.13937, 1.05919504, 20.6365814)
  6748. Part796.Rotation = Vector3.new(90.0099945, 0, 180)
  6749. Part796.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6750. Part796.Size = Vector3.new(0.669642866, 0.200000003, 0.669642866)
  6751. Part796.BottomSurface = Enum.SurfaceType.Smooth
  6752. Part796.BrickColor = BrickColor.new("Bright yellow")
  6753. Part796.Material = Enum.Material.Ice
  6754. Part796.TopSurface = Enum.SurfaceType.Smooth
  6755. Part796.brickColor = BrickColor.new("Bright yellow")
  6756. Part796.FormFactor = Enum.FormFactor.Custom
  6757. Part796.formFactor = Enum.FormFactor.Custom
  6758. CylinderMesh797.Parent = Part796
  6759. CylinderMesh797.Scale = Vector3.new(1.04999995, 0.334821403, 1.04999995)
  6760. Part798.Parent = Tool0
  6761. Part798.CFrame = CFrame.new(-40.9001198, 1.89976299, 19.7473602, 0.965944588, 0.258748621, -5.82870343e-05, -1.81566938e-05, -0.000166951882, -0.99999702, -0.258748859, 0.965944767, -0.000150417036)
  6762. Part798.Orientation = Vector3.new(89.8600006, -158.819992, -173.789993)
  6763. Part798.Position = Vector3.new(-40.9001198, 1.89976299, 19.7473602)
  6764. Part798.Rotation = Vector3.new(90.0099945, 0, -15)
  6765. Part798.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6766. Part798.Size = Vector3.new(0.200000003, 1.11607146, 0.200000003)
  6767. Part798.BottomSurface = Enum.SurfaceType.Smooth
  6768. Part798.BrickColor = BrickColor.new("Really black")
  6769. Part798.TopSurface = Enum.SurfaceType.Smooth
  6770. Part798.brickColor = BrickColor.new("Really black")
  6771. Part798.FormFactor = Enum.FormFactor.Custom
  6772. Part798.formFactor = Enum.FormFactor.Custom
  6773. BlockMesh799.Parent = Part798
  6774. BlockMesh799.Scale = Vector3.new(0.669642806, 1, 0.133928552)
  6775. Part800.Parent = Tool0
  6776. Part800.CFrame = CFrame.new(-40.1847343, 1.58346486, 19.0952682, 0.000105215338, 0.000266683404, 0.999999881, -0.999996722, -0.000741312164, 0.000102962629, 0.000747493701, -0.999999881, 0.000266458548)
  6777. Part800.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  6778. Part800.Position = Vector3.new(-40.1847343, 1.58346486, 19.0952682)
  6779. Part800.Rotation = Vector3.new(-21.1299992, 89.9700012, -68.4700012)
  6780. Part800.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6781. Part800.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6782. Part800.BottomSurface = Enum.SurfaceType.Smooth
  6783. Part800.BrickColor = BrickColor.new("Bright yellow")
  6784. Part800.Material = Enum.Material.Ice
  6785. Part800.Reflectance = 0.10000000149012
  6786. Part800.TopSurface = Enum.SurfaceType.Smooth
  6787. Part800.brickColor = BrickColor.new("Bright yellow")
  6788. Part800.FormFactor = Enum.FormFactor.Custom
  6789. Part800.formFactor = Enum.FormFactor.Custom
  6790. SpecialMesh801.Parent = Part800
  6791. SpecialMesh801.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6792. SpecialMesh801.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6793. SpecialMesh801.MeshType = Enum.MeshType.FileMesh
  6794. Part802.Parent = Tool0
  6795. Part802.CFrame = CFrame.new(-40.7480392, 1.44002724, 19.586256, -0.999999881, -4.83135545e-06, -5.90284326e-05, 6.14775709e-05, 0.000156450318, -0.999997079, 4.98644067e-06, -1.00000012, -0.000150298787)
  6796. Part802.Orientation = Vector3.new(89.8600006, -158.559998, 21.4499989)
  6797. Part802.Position = Vector3.new(-40.7480392, 1.44002724, 19.586256)
  6798. Part802.Rotation = Vector3.new(90.0099945, 0, 180)
  6799. Part802.Color = Color3.new(0.960784, 0.803922, 0.188235)
  6800. Part802.Size = Vector3.new(0.803571403, 0.200000003, 0.625)
  6801. Part802.BottomSurface = Enum.SurfaceType.Smooth
  6802. Part802.BrickColor = BrickColor.new("Bright yellow")
  6803. Part802.Material = Enum.Material.Ice
  6804. Part802.TopSurface = Enum.SurfaceType.Smooth
  6805. Part802.brickColor = BrickColor.new("Bright yellow")
  6806. Part802.FormFactor = Enum.FormFactor.Custom
  6807. Part802.formFactor = Enum.FormFactor.Custom
  6808. CylinderMesh803.Parent = Part802
  6809. CylinderMesh803.Scale = Vector3.new(1, 0.446428627, 1)
  6810. Part804.Parent = Tool0
  6811. Part804.CFrame = CFrame.new(-40.9262428, 1.05132961, 19.0956554, 0.96587491, -0.000238404493, -0.259008557, -0.259010196, -0.000164540077, -0.965871513, 0.000189103564, 1.00000012, -0.000214695348)
  6812. Part804.Orientation = Vector3.new(74.9899979, -90.0499954, -90.0400009)
  6813. Part804.Position = Vector3.new(-40.9262428, 1.05132961, 19.0956554)
  6814. Part804.Rotation = Vector3.new(90.0099945, -15.0099993, 0.00999999978)
  6815. Part804.Color = Color3.new(0, 0.12549, 0.376471)
  6816. Part804.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6817. Part804.BottomSurface = Enum.SurfaceType.Smooth
  6818. Part804.BrickColor = BrickColor.new("Navy blue")
  6819. Part804.Reflectance = 0.10000000149012
  6820. Part804.TopSurface = Enum.SurfaceType.Smooth
  6821. Part804.brickColor = BrickColor.new("Navy blue")
  6822. Part804.FormFactor = Enum.FormFactor.Custom
  6823. Part804.formFactor = Enum.FormFactor.Custom
  6824. SpecialMesh805.Parent = Part804
  6825. SpecialMesh805.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6826. SpecialMesh805.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6827. SpecialMesh805.MeshType = Enum.MeshType.FileMesh
  6828. Part806.Parent = Tool0
  6829. Part806.CFrame = CFrame.new(-40.7481079, 2.15609574, 19.0937271, -0.000266630435, 0.999999881, 5.87585673e-05, -0.000156918308, -6.12503063e-05, 0.999997079, 1.00000012, 0.000266475399, 0.000150783395)
  6830. Part806.Orientation = Vector3.new(-89.8600006, 21.289999, -111.32)
  6831. Part806.Position = Vector3.new(-40.7481079, 2.15609574, 19.0937271)
  6832. Part806.Rotation = Vector3.new(-89.9899979, 0, -90.0199966)
  6833. Part806.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6834. Part806.Size = Vector3.new(0.200000003, 0.535714269, 0.200000003)
  6835. Part806.BottomSurface = Enum.SurfaceType.Smooth
  6836. Part806.BrickColor = BrickColor.new("Really black")
  6837. Part806.TopSurface = Enum.SurfaceType.Smooth
  6838. Part806.brickColor = BrickColor.new("Really black")
  6839. Part806.FormFactor = Enum.FormFactor.Custom
  6840. Part806.formFactor = Enum.FormFactor.Custom
  6841. CylinderMesh807.Parent = Part806
  6842. CylinderMesh807.Scale = Vector3.new(0.446428567, 1.0999999, 0.446428567)
  6843. Part808.Parent = Tool0
  6844. Part808.CFrame = CFrame.new(-40.6410561, 0.871514559, 21.2910194, -0.706894219, -0.70731914, -3.40281695e-05, -0.612431943, 0.612091541, -0.500265002, 0.353872865, -0.353618383, -0.865868628)
  6845. Part808.Orientation = Vector3.new(30.0199986, -180, -45.0200005)
  6846. Part808.Position = Vector3.new(-40.6410561, 0.871514559, 21.2910194)
  6847. Part808.Rotation = Vector3.new(149.979996, 0, 134.979996)
  6848. Part808.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6849. Part808.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6850. Part808.BottomSurface = Enum.SurfaceType.Smooth
  6851. Part808.BrickColor = BrickColor.new("Really black")
  6852. Part808.TopSurface = Enum.SurfaceType.Smooth
  6853. Part808.brickColor = BrickColor.new("Really black")
  6854. Part808.FormFactor = Enum.FormFactor.Custom
  6855. Part808.formFactor = Enum.FormFactor.Custom
  6856. CylinderMesh809.Parent = Part808
  6857. CylinderMesh809.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6858. Part810.Parent = Tool0
  6859. Part810.CFrame = CFrame.new(-41.1395798, 1.04953945, 21.1391182, -0.999999881, 1.06203042e-05, -5.79415428e-05, 6.1164792e-05, 0.259042054, -0.965862989, 4.89740205e-06, -0.965867639, -0.259036958)
  6860. Part810.Orientation = Vector3.new(74.9899979, -179.98999, 0.00999999978)
  6861. Part810.Position = Vector3.new(-41.1395798, 1.04953945, 21.1391182)
  6862. Part810.Rotation = Vector3.new(105.009995, 0, -180)
  6863. Part810.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6864. Part810.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6865. Part810.BottomSurface = Enum.SurfaceType.Smooth
  6866. Part810.BrickColor = BrickColor.new("Really black")
  6867. Part810.TopSurface = Enum.SurfaceType.Smooth
  6868. Part810.brickColor = BrickColor.new("Really black")
  6869. Part810.FormFactor = Enum.FormFactor.Custom
  6870. Part810.formFactor = Enum.FormFactor.Custom
  6871. CylinderMesh811.Parent = Part810
  6872. CylinderMesh811.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6873. Part812.Parent = Tool0
  6874. Part812.CFrame = CFrame.new(-40.6838226, 1.09281445, 21.1529884, 0.000264369563, 2.05480828e-05, -1, -0.500311732, -0.865845382, -0.000150058651, -0.865845382, 0.500311732, -0.000218622692)
  6875. Part812.Orientation = Vector3.new(0.00999999978, -90.0099945, -149.979996)
  6876. Part812.Position = Vector3.new(-40.6838226, 1.09281445, 21.1529884)
  6877. Part812.Rotation = Vector3.new(149.979996, -90, 0)
  6878. Part812.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6879. Part812.Size = Vector3.new(0.200000003, 0.223214284, 0.200000003)
  6880. Part812.BottomSurface = Enum.SurfaceType.Smooth
  6881. Part812.BrickColor = BrickColor.new("Really black")
  6882. Part812.TopSurface = Enum.SurfaceType.Smooth
  6883. Part812.brickColor = BrickColor.new("Really black")
  6884. Part812.FormFactor = Enum.FormFactor.Custom
  6885. Part812.formFactor = Enum.FormFactor.Custom
  6886. CylinderMesh813.Parent = Part812
  6887. CylinderMesh813.Scale = Vector3.new(0.223214284, 1, 0.223214284)
  6888. Part814.Parent = Tool0
  6889. Part814.CFrame = CFrame.new(-40.2199745, 1.4668206, 19.0950718, -0.25862512, -0.965977669, -4.82578525e-06, -0.965973973, 0.258626699, -0.000740451156, 0.000722490018, -0.00018828809, -0.999999881)
  6890. Part814.Orientation = Vector3.new(0.0399999991, -180, -75.0100021)
  6891. Part814.Position = Vector3.new(-40.2199745, 1.4668206, 19.0950718)
  6892. Part814.Rotation = Vector3.new(179.959991, 0, 104.989998)
  6893. Part814.Color = Color3.new(0, 0.12549, 0.376471)
  6894. Part814.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6895. Part814.BottomSurface = Enum.SurfaceType.Smooth
  6896. Part814.BrickColor = BrickColor.new("Navy blue")
  6897. Part814.Reflectance = 0.10000000149012
  6898. Part814.TopSurface = Enum.SurfaceType.Smooth
  6899. Part814.brickColor = BrickColor.new("Navy blue")
  6900. Part814.FormFactor = Enum.FormFactor.Custom
  6901. Part814.formFactor = Enum.FormFactor.Custom
  6902. SpecialMesh815.Parent = Part814
  6903. SpecialMesh815.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6904. SpecialMesh815.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6905. SpecialMesh815.MeshType = Enum.MeshType.FileMesh
  6906. Part816.Parent = Tool0
  6907. Part816.CFrame = CFrame.new(-41.2838936, 1.46246254, 19.0953693, 0.258808136, 0.965928674, 4.71024578e-06, -0.965926349, 0.258804917, 0.000740929623, 0.000720372889, -0.00019804234, 0.999999881)
  6908. Part816.Orientation = Vector3.new(-0.0399999991, 0, -75)
  6909. Part816.Position = Vector3.new(-41.2838936, 1.46246254, 19.0953693)
  6910. Part816.Rotation = Vector3.new(-0.0399999991, 0, -75)
  6911. Part816.Color = Color3.new(0, 0.12549, 0.376471)
  6912. Part816.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6913. Part816.BottomSurface = Enum.SurfaceType.Smooth
  6914. Part816.BrickColor = BrickColor.new("Navy blue")
  6915. Part816.Reflectance = 0.10000000149012
  6916. Part816.TopSurface = Enum.SurfaceType.Smooth
  6917. Part816.brickColor = BrickColor.new("Navy blue")
  6918. Part816.FormFactor = Enum.FormFactor.Custom
  6919. Part816.formFactor = Enum.FormFactor.Custom
  6920. SpecialMesh817.Parent = Part816
  6921. SpecialMesh817.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6922. SpecialMesh817.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6923. SpecialMesh817.MeshType = Enum.MeshType.FileMesh
  6924. Part818.Parent = Tool0
  6925. Part818.CFrame = CFrame.new(-40.5777817, 1.05572367, 19.0960236, -0.965899765, -0.000210822822, 0.258916169, -0.25891313, 2.81648245e-05, -0.965897501, 0.000198075562, -1.00000012, -7.58853275e-05)
  6926. Part818.Orientation = Vector3.new(74.9899979, 90.0199966, -89.9899979)
  6927. Part818.Position = Vector3.new(-40.5777817, 1.05572367, 19.0960236)
  6928. Part818.Rotation = Vector3.new(90, 15.0099993, 179.98999)
  6929. Part818.Color = Color3.new(0, 0.12549, 0.376471)
  6930. Part818.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6931. Part818.BottomSurface = Enum.SurfaceType.Smooth
  6932. Part818.BrickColor = BrickColor.new("Navy blue")
  6933. Part818.Reflectance = 0.10000000149012
  6934. Part818.TopSurface = Enum.SurfaceType.Smooth
  6935. Part818.brickColor = BrickColor.new("Navy blue")
  6936. Part818.FormFactor = Enum.FormFactor.Custom
  6937. Part818.formFactor = Enum.FormFactor.Custom
  6938. SpecialMesh819.Parent = Part818
  6939. SpecialMesh819.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6940. SpecialMesh819.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6941. SpecialMesh819.MeshType = Enum.MeshType.FileMesh
  6942. Part820.Parent = Tool0
  6943. Part820.CFrame = CFrame.new(-40.3864517, 1.17236757, 19.0952034, -0.706932187, -0.000318247738, 0.707281172, -0.707277238, -0.000427648018, -0.706931949, 0.000531902944, -1.00000012, 8.14744271e-05)
  6944. Part820.Orientation = Vector3.new(44.9899979, 89.9899979, -90.0299988)
  6945. Part820.Position = Vector3.new(-40.3864517, 1.17236757, 19.0952034)
  6946. Part820.Rotation = Vector3.new(89.9899979, 45.0099983, 179.970001)
  6947. Part820.Color = Color3.new(0, 0.12549, 0.376471)
  6948. Part820.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6949. Part820.BottomSurface = Enum.SurfaceType.Smooth
  6950. Part820.BrickColor = BrickColor.new("Navy blue")
  6951. Part820.Reflectance = 0.10000000149012
  6952. Part820.TopSurface = Enum.SurfaceType.Smooth
  6953. Part820.brickColor = BrickColor.new("Navy blue")
  6954. Part820.FormFactor = Enum.FormFactor.Custom
  6955. Part820.formFactor = Enum.FormFactor.Custom
  6956. SpecialMesh821.Parent = Part820
  6957. SpecialMesh821.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6958. SpecialMesh821.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6959. SpecialMesh821.MeshType = Enum.MeshType.FileMesh
  6960. Part822.Parent = Tool0
  6961. Part822.CFrame = CFrame.new(-41.042614, 0.844411135, 21.3114357, 0.000284873735, -0.865844786, 0.500312746, -0.50031215, 0.433069944, 0.74975884, -0.865845144, -0.2505261, -0.433069289)
  6962. Part822.Orientation = Vector3.new(-48.5699997, 130.87999, -49.1199989)
  6963. Part822.Position = Vector3.new(-41.042614, 0.844411135, 21.3114357)
  6964. Part822.Rotation = Vector3.new(-120.009995, 30.0199986, 89.9799957)
  6965. Part822.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6966. Part822.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6967. Part822.BottomSurface = Enum.SurfaceType.Smooth
  6968. Part822.BrickColor = BrickColor.new("Really black")
  6969. Part822.TopSurface = Enum.SurfaceType.Smooth
  6970. Part822.brickColor = BrickColor.new("Really black")
  6971. Part822.FormFactor = Enum.FormFactor.Custom
  6972. Part822.formFactor = Enum.FormFactor.Custom
  6973. CylinderMesh823.Parent = Part822
  6974. CylinderMesh823.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  6975. Part824.Parent = Tool0
  6976. Part824.CFrame = CFrame.new(-40.8190498, 1.00602782, 19.0959415, 0.96587491, -0.259008646, -2.17359211e-05, -0.259010166, -0.965871215, -0.000801524846, 0.000188060454, 0.000785784796, -0.999999821)
  6977. Part824.Orientation = Vector3.new(0.049999997, -180, -164.98999)
  6978. Part824.Position = Vector3.new(-40.8190498, 1.00602782, 19.0959415)
  6979. Part824.Rotation = Vector3.new(179.949997, 0, 15.0099993)
  6980. Part824.Color = Color3.new(0, 0.12549, 0.376471)
  6981. Part824.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6982. Part824.BottomSurface = Enum.SurfaceType.Smooth
  6983. Part824.BrickColor = BrickColor.new("Navy blue")
  6984. Part824.Reflectance = 0.10000000149012
  6985. Part824.TopSurface = Enum.SurfaceType.Smooth
  6986. Part824.brickColor = BrickColor.new("Navy blue")
  6987. Part824.FormFactor = Enum.FormFactor.Custom
  6988. Part824.formFactor = Enum.FormFactor.Custom
  6989. SpecialMesh825.Parent = Part824
  6990. SpecialMesh825.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6991. SpecialMesh825.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  6992. SpecialMesh825.MeshType = Enum.MeshType.FileMesh
  6993. Part826.Parent = Tool0
  6994. Part826.CFrame = CFrame.new(-40.4884148, 1.10937834, 19.0952644, -0.965899706, -0.258916467, -5.15378497e-06, -0.258913368, 0.965897262, -0.000741048018, 0.000198582275, -0.000720350072, -0.999999881)
  6995. Part826.Orientation = Vector3.new(0.0399999991, -180, -15.0099993)
  6996. Part826.Position = Vector3.new(-40.4884148, 1.10937834, 19.0952644)
  6997. Part826.Rotation = Vector3.new(179.959991, 0, 164.98999)
  6998. Part826.Color = Color3.new(0, 0.12549, 0.376471)
  6999. Part826.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7000. Part826.BottomSurface = Enum.SurfaceType.Smooth
  7001. Part826.BrickColor = BrickColor.new("Navy blue")
  7002. Part826.Reflectance = 0.10000000149012
  7003. Part826.TopSurface = Enum.SurfaceType.Smooth
  7004. Part826.brickColor = BrickColor.new("Navy blue")
  7005. Part826.FormFactor = Enum.FormFactor.Custom
  7006. Part826.formFactor = Enum.FormFactor.Custom
  7007. SpecialMesh827.Parent = Part826
  7008. SpecialMesh827.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7009. SpecialMesh827.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  7010. SpecialMesh827.MeshType = Enum.MeshType.FileMesh
  7011. Part828.Parent = Tool0
  7012. Part828.CFrame = CFrame.new(-40.7531624, 1.74202073, 21.7740726, -0.999999881, 4.4740882e-06, 5.80447886e-05, 6.04939851e-05, -0.000157493399, 0.99999702, 4.62908793e-06, 1.00000012, 0.000151341897)
  7013. Part828.Orientation = Vector3.new(-89.8600006, 20.9799995, 158.98999)
  7014. Part828.Position = Vector3.new(-40.7531624, 1.74202073, 21.7740726)
  7015. Part828.Rotation = Vector3.new(-89.9899979, 0, -180)
  7016. Part828.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7017. Part828.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7018. Part828.BottomSurface = Enum.SurfaceType.Smooth
  7019. Part828.BrickColor = BrickColor.new("Really black")
  7020. Part828.TopSurface = Enum.SurfaceType.Smooth
  7021. Part828.brickColor = BrickColor.new("Really black")
  7022. Part828.FormFactor = Enum.FormFactor.Custom
  7023. Part828.formFactor = Enum.FormFactor.Custom
  7024. SpecialMesh829.Parent = Part828
  7025. SpecialMesh829.Scale = Vector3.new(0.669642806, 0.803571045, 0.803571463)
  7026. SpecialMesh829.MeshType = Enum.MeshType.Wedge
  7027. Part830.Parent = Tool0
  7028. Part830.CFrame = CFrame.new(-41.1186371, 1.16755998, 19.095562, 0.706965446, -0.000579189102, -0.707247794, -0.707247436, 0.000156046415, -0.706961811, 0.000524077157, 1.00000012, -0.000294859172)
  7029. Part830.Orientation = Vector3.new(44.9899979, -90.0199966, -89.9899979)
  7030. Part830.Position = Vector3.new(-41.1186371, 1.16755998, 19.095562)
  7031. Part830.Rotation = Vector3.new(90.0199966, -45.0099983, 0.049999997)
  7032. Part830.Color = Color3.new(0, 0.12549, 0.376471)
  7033. Part830.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7034. Part830.BottomSurface = Enum.SurfaceType.Smooth
  7035. Part830.BrickColor = BrickColor.new("Navy blue")
  7036. Part830.Reflectance = 0.10000000149012
  7037. Part830.TopSurface = Enum.SurfaceType.Smooth
  7038. Part830.brickColor = BrickColor.new("Navy blue")
  7039. Part830.FormFactor = Enum.FormFactor.Custom
  7040. Part830.formFactor = Enum.FormFactor.Custom
  7041. SpecialMesh831.Parent = Part830
  7042. SpecialMesh831.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7043. SpecialMesh831.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  7044. SpecialMesh831.MeshType = Enum.MeshType.FileMesh
  7045. Part832.Parent = Tool0
  7046. Part832.CFrame = CFrame.new(-40.3355026, 1.05795586, 21.0274315, -0.999999881, -4.65277571e-06, -5.84024892e-05, 6.08516639e-05, 0.000157091068, -0.99999702, 4.80779636e-06, -1.00000012, -0.000150939566)
  7047. Part832.Orientation = Vector3.new(89.8600006, -158.849991, 21.1700001)
  7048. Part832.Position = Vector3.new(-40.3355026, 1.05795586, 21.0274315)
  7049. Part832.Rotation = Vector3.new(90.0099945, 0, 180)
  7050. Part832.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7051. Part832.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7052. Part832.BottomSurface = Enum.SurfaceType.Smooth
  7053. Part832.BrickColor = BrickColor.new("Really black")
  7054. Part832.TopSurface = Enum.SurfaceType.Smooth
  7055. Part832.brickColor = BrickColor.new("Really black")
  7056. Part832.FormFactor = Enum.FormFactor.Custom
  7057. Part832.formFactor = Enum.FormFactor.Custom
  7058. CylinderMesh833.Parent = Part832
  7059. CylinderMesh833.Scale = Vector3.new(0.334821403, 0.892857134, 0.334821403)
  7060. Part834.Parent = Tool0
  7061. Part834.CFrame = CFrame.new(-41.0161591, 1.10464633, 19.095232, 0.96587491, 0.259008676, 5.4968632e-06, -0.259010166, 0.965871334, 0.000740967575, 0.000188060454, -0.000723087811, 0.999999881)
  7062. Part834.Orientation = Vector3.new(-0.0399999991, 0, -15.0099993)
  7063. Part834.Position = Vector3.new(-41.0161591, 1.10464633, 19.095232)
  7064. Part834.Rotation = Vector3.new(-0.0399999991, 0, -15.0099993)
  7065. Part834.Color = Color3.new(0, 0.12549, 0.376471)
  7066. Part834.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7067. Part834.BottomSurface = Enum.SurfaceType.Smooth
  7068. Part834.BrickColor = BrickColor.new("Navy blue")
  7069. Part834.Reflectance = 0.10000000149012
  7070. Part834.TopSurface = Enum.SurfaceType.Smooth
  7071. Part834.brickColor = BrickColor.new("Navy blue")
  7072. Part834.FormFactor = Enum.FormFactor.Custom
  7073. Part834.formFactor = Enum.FormFactor.Custom
  7074. SpecialMesh835.Parent = Part834
  7075. SpecialMesh835.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7076. SpecialMesh835.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  7077. SpecialMesh835.MeshType = Enum.MeshType.FileMesh
  7078. Part836.Parent = Tool0
  7079. Part836.CFrame = CFrame.new(-41.2437744, 1.35499358, 19.0949478, 0.499893993, -0.000590392621, -0.866086364, -0.866086364, 0.000402996928, -0.499894232, 0.000644164043, 0.999999762, -0.000309875235)
  7080. Part836.Orientation = Vector3.new(29.9899998, -90.0199966, -89.9700012)
  7081. Part836.Position = Vector3.new(-41.2437744, 1.35499358, 19.0949478)
  7082. Part836.Rotation = Vector3.new(90.0400009, -60.0099983, 0.0700000003)
  7083. Part836.Color = Color3.new(0, 0.12549, 0.376471)
  7084. Part836.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7085. Part836.BottomSurface = Enum.SurfaceType.Smooth
  7086. Part836.BrickColor = BrickColor.new("Navy blue")
  7087. Part836.Reflectance = 0.10000000149012
  7088. Part836.TopSurface = Enum.SurfaceType.Smooth
  7089. Part836.brickColor = BrickColor.new("Navy blue")
  7090. Part836.FormFactor = Enum.FormFactor.Custom
  7091. Part836.formFactor = Enum.FormFactor.Custom
  7092. SpecialMesh837.Parent = Part836
  7093. SpecialMesh837.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7094. SpecialMesh837.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  7095. SpecialMesh837.MeshType = Enum.MeshType.FileMesh
  7096. Part838.Parent = Tool0
  7097. Part838.CFrame = CFrame.new(-41.1860046, 1.25730574, 19.0949173, 0.70696497, 0.707248449, 5.79122161e-06, -0.707247913, 0.706961036, 0.000740873977, 0.000524136878, -0.000532321923, 1)
  7098. Part838.Orientation = Vector3.new(-0.0399999991, 0, -45.0099983)
  7099. Part838.Position = Vector3.new(-41.1860046, 1.25730574, 19.0949173)
  7100. Part838.Rotation = Vector3.new(-0.0399999991, 0, -45.0099983)
  7101. Part838.Color = Color3.new(0, 0.12549, 0.376471)
  7102. Part838.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7103. Part838.BottomSurface = Enum.SurfaceType.Smooth
  7104. Part838.BrickColor = BrickColor.new("Navy blue")
  7105. Part838.Reflectance = 0.10000000149012
  7106. Part838.TopSurface = Enum.SurfaceType.Smooth
  7107. Part838.brickColor = BrickColor.new("Navy blue")
  7108. Part838.FormFactor = Enum.FormFactor.Custom
  7109. Part838.formFactor = Enum.FormFactor.Custom
  7110. SpecialMesh839.Parent = Part838
  7111. SpecialMesh839.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7112. SpecialMesh839.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  7113. SpecialMesh839.MeshType = Enum.MeshType.FileMesh
  7114. Part840.Parent = Tool0
  7115. Part840.CFrame = CFrame.new(-40.7533073, 1.77734017, 21.6393852, -0.999999881, 5.80407395e-05, -4.52624863e-06, 6.04939851e-05, 0.999996722, -0.000741035445, 4.62908793e-06, -0.000747189857, -0.999999881)
  7116. Part840.Orientation = Vector3.new(0.0399999991, -180, 0)
  7117. Part840.Position = Vector3.new(-40.7533073, 1.77734017, 21.6393852)
  7118. Part840.Rotation = Vector3.new(179.959991, 0, -180)
  7119. Part840.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7120. Part840.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7121. Part840.BottomSurface = Enum.SurfaceType.Smooth
  7122. Part840.BrickColor = BrickColor.new("Really black")
  7123. Part840.TopSurface = Enum.SurfaceType.Smooth
  7124. Part840.brickColor = BrickColor.new("Really black")
  7125. Part840.FormFactor = Enum.FormFactor.Custom
  7126. Part840.formFactor = Enum.FormFactor.Custom
  7127. BlockMesh841.Parent = Part840
  7128. BlockMesh841.Scale = Vector3.new(0.669642806, 0.446428627, 0.535714746)
  7129. Part842.Parent = Tool0
  7130. Part842.CFrame = CFrame.new(-41.3113976, 1.57773495, 19.095171, 0.000104649094, -0.000266772753, -0.999999881, -0.999996722, 0.000741282478, -0.000102396458, 0.000747463782, 0.999999881, -0.000266548333)
  7131. Part842.Orientation = Vector3.new(0.00999999978, -90.0199966, -89.9599991)
  7132. Part842.Position = Vector3.new(-41.3113976, 1.57773495, 19.095171)
  7133. Part842.Rotation = Vector3.new(158.98999, -89.9700012, 68.5800018)
  7134. Part842.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7135. Part842.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7136. Part842.BottomSurface = Enum.SurfaceType.Smooth
  7137. Part842.BrickColor = BrickColor.new("Bright yellow")
  7138. Part842.Material = Enum.Material.Ice
  7139. Part842.Reflectance = 0.10000000149012
  7140. Part842.TopSurface = Enum.SurfaceType.Smooth
  7141. Part842.brickColor = BrickColor.new("Bright yellow")
  7142. Part842.FormFactor = Enum.FormFactor.Custom
  7143. Part842.formFactor = Enum.FormFactor.Custom
  7144. SpecialMesh843.Parent = Part842
  7145. SpecialMesh843.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7146. SpecialMesh843.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  7147. SpecialMesh843.MeshType = Enum.MeshType.FileMesh
  7148. Part844.Parent = Tool0
  7149. Part844.CFrame = CFrame.new(-40.7489433, 1.43986607, 20.2559547, -1, 0.000178551345, 3.51970193e-05, -3.52763454e-05, -0.000444298668, -0.99999994, -0.000178535702, -0.999999881, 0.000444304984)
  7150. Part844.Orientation = Vector3.new(89.9799957, 4.52999973, -175.459991)
  7151. Part844.Position = Vector3.new(-40.7489433, 1.43986607, 20.2559547)
  7152. Part844.Rotation = Vector3.new(89.9700012, 0, -179.98999)
  7153. Part844.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7154. Part844.Size = Vector3.new(0.803571403, 1.25, 0.625)
  7155. Part844.BottomSurface = Enum.SurfaceType.Smooth
  7156. Part844.BrickColor = BrickColor.new("Really black")
  7157. Part844.TopSurface = Enum.SurfaceType.Smooth
  7158. Part844.brickColor = BrickColor.new("Really black")
  7159. Part844.FormFactor = Enum.FormFactor.Custom
  7160. Part844.formFactor = Enum.FormFactor.Custom
  7161. CylinderMesh845.Parent = Part844
  7162. Part846.Parent = Tool0
  7163. Part846.CFrame = CFrame.new(-40.7485771, 1.43846297, 21.2744694, 0.000115049894, 0.000270945631, 0.999999881, -0.999996781, -0.000744648976, 0.000112801208, 0.000750833657, -0.999999881, 0.000270713033)
  7164. Part846.Orientation = Vector3.new(-0.00999999978, 89.9799957, -90.0400009)
  7165. Part846.Position = Vector3.new(-40.7485771, 1.43846297, 21.2744694)
  7166. Part846.Rotation = Vector3.new(-22.6199989, 89.9700012, -66.9899979)
  7167. Part846.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7168. Part846.Size = Vector3.new(0.200000003, 0.267857105, 0.200000003)
  7169. Part846.BottomSurface = Enum.SurfaceType.Smooth
  7170. Part846.BrickColor = BrickColor.new("Bright yellow")
  7171. Part846.Material = Enum.Material.Ice
  7172. Part846.TopSurface = Enum.SurfaceType.Smooth
  7173. Part846.brickColor = BrickColor.new("Bright yellow")
  7174. Part846.FormFactor = Enum.FormFactor.Custom
  7175. Part846.formFactor = Enum.FormFactor.Custom
  7176. CylinderMesh847.Parent = Part846
  7177. CylinderMesh847.Scale = Vector3.new(0.892857134, 1, 0.892857134)
  7178. Part848.Parent = Tool0
  7179. Part848.CFrame = CFrame.new(-40.791153, 1.24952424, 21.0044289, -0.999999881, -6.50026996e-05, -6.86652347e-05, 5.1932926e-05, 0.259041339, -0.965863228, 8.07170363e-05, -0.965867758, -0.259036243)
  7180. Part848.Orientation = Vector3.new(74.9899979, -179.979996, 0.00999999978)
  7181. Part848.Position = Vector3.new(-40.791153, 1.24952424, 21.0044289)
  7182. Part848.Rotation = Vector3.new(105.009995, 0, 180)
  7183. Part848.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7184. Part848.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7185. Part848.BottomSurface = Enum.SurfaceType.Smooth
  7186. Part848.BrickColor = BrickColor.new("Really black")
  7187. Part848.TopSurface = Enum.SurfaceType.Smooth
  7188. Part848.brickColor = BrickColor.new("Really black")
  7189. Part848.FormFactor = Enum.FormFactor.Custom
  7190. Part848.formFactor = Enum.FormFactor.Custom
  7191. CylinderMesh849.Parent = Part848
  7192. CylinderMesh849.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7193. Part850.Parent = Tool0
  7194. Part850.CFrame = CFrame.new(-40.7907715, 1.25247526, 20.9592152, -0.999999881, -7.06167521e-06, -6.92069298e-05, 7.16556751e-05, 0.00016078644, -0.99999702, 7.21859942e-06, -1.00000012, -0.000154634705)
  7195. Part850.Orientation = Vector3.new(89.8600006, -155.889999, 24.0199986)
  7196. Part850.Position = Vector3.new(-40.7907715, 1.25247526, 20.9592152)
  7197. Part850.Rotation = Vector3.new(90.0099945, 0, 180)
  7198. Part850.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7199. Part850.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7200. Part850.BottomSurface = Enum.SurfaceType.Smooth
  7201. Part850.BrickColor = BrickColor.new("Really black")
  7202. Part850.TopSurface = Enum.SurfaceType.Smooth
  7203. Part850.brickColor = BrickColor.new("Really black")
  7204. Part850.FormFactor = Enum.FormFactor.Custom
  7205. Part850.formFactor = Enum.FormFactor.Custom
  7206. CylinderMesh851.Parent = Part850
  7207. CylinderMesh851.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7208. Part852.Parent = Tool0
  7209. Part852.CFrame = CFrame.new(-40.7910843, 1.20892286, 21.0852032, -0.999999881, -2.50598187e-05, -6.27647314e-05, 2.91139713e-05, 0.707075536, -0.70713383, 6.22463049e-05, -0.707140326, -0.70707345)
  7210. Part852.Orientation = Vector3.new(45, -179.98999, 0)
  7211. Part852.Position = Vector3.new(-40.7910843, 1.20892286, 21.0852032)
  7212. Part852.Rotation = Vector3.new(135, 0, 180)
  7213. Part852.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7214. Part852.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7215. Part852.BottomSurface = Enum.SurfaceType.Smooth
  7216. Part852.BrickColor = BrickColor.new("Really black")
  7217. Part852.TopSurface = Enum.SurfaceType.Smooth
  7218. Part852.brickColor = BrickColor.new("Really black")
  7219. Part852.FormFactor = Enum.FormFactor.Custom
  7220. Part852.formFactor = Enum.FormFactor.Custom
  7221. CylinderMesh853.Parent = Part852
  7222. CylinderMesh853.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7223. Part854.Parent = Tool0
  7224. Part854.CFrame = CFrame.new(-40.7911568, 1.23446536, 21.0475922, -0.999999881, -4.5224544e-05, -7.35046269e-05, 4.34826288e-05, 0.500134528, -0.865944207, 7.60703333e-05, -0.865950048, -0.500130773)
  7225. Part854.Orientation = Vector3.new(59.9899979, -179.98999, 0)
  7226. Part854.Position = Vector3.new(-40.7911568, 1.23446536, 21.0475922)
  7227. Part854.Rotation = Vector3.new(120.009995, 0, 180)
  7228. Part854.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7229. Part854.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7230. Part854.BottomSurface = Enum.SurfaceType.Smooth
  7231. Part854.BrickColor = BrickColor.new("Really black")
  7232. Part854.TopSurface = Enum.SurfaceType.Smooth
  7233. Part854.brickColor = BrickColor.new("Really black")
  7234. Part854.FormFactor = Enum.FormFactor.Custom
  7235. Part854.formFactor = Enum.FormFactor.Custom
  7236. CylinderMesh855.Parent = Part854
  7237. CylinderMesh855.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7238. Part856.Parent = Tool0
  7239. Part856.CFrame = CFrame.new(-40.694416, 1.02005529, 19.0954762, -0.96590203, 0.129363507, 0.224272639, -0.258904397, -0.483285964, -0.836299658, 0.000202900774, -0.86584872, 0.500306368)
  7240. Part856.Orientation = Vector3.new(56.75, 24.1499996, -151.819992)
  7241. Part856.Position = Vector3.new(-40.694416, 1.02005529, 19.0954762)
  7242. Part856.Rotation = Vector3.new(59.1099968, 12.96, -172.369995)
  7243. Part856.Color = Color3.new(0, 0.12549, 0.376471)
  7244. Part856.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7245. Part856.BottomSurface = Enum.SurfaceType.Smooth
  7246. Part856.BrickColor = BrickColor.new("Navy blue")
  7247. Part856.Reflectance = 0.10000000149012
  7248. Part856.TopSurface = Enum.SurfaceType.Smooth
  7249. Part856.brickColor = BrickColor.new("Navy blue")
  7250. Part856.FormFactor = Enum.FormFactor.Custom
  7251. Part856.formFactor = Enum.FormFactor.Custom
  7252. SpecialMesh857.Parent = Part856
  7253. SpecialMesh857.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7254. SpecialMesh857.Scale = Vector3.new(0.138392851, 0.116071425, 0.178571433)
  7255. SpecialMesh857.MeshType = Enum.MeshType.FileMesh
  7256. Part858.Parent = Tool0
  7257. Part858.CFrame = CFrame.new(-40.6843834, 1.24437392, 20.9965458, -1, 1.01808082e-05, -7.23837293e-05, 7.25502468e-05, 0.259041458, -0.965866208, 8.91708714e-06, -0.965866208, -0.259041458)
  7258. Part858.Orientation = Vector3.new(74.9899979, -179.979996, 0.0199999996)
  7259. Part858.Position = Vector3.new(-40.6843834, 1.24437392, 20.9965458)
  7260. Part858.Rotation = Vector3.new(105.009995, 0, -180)
  7261. Part858.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7262. Part858.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7263. Part858.BottomSurface = Enum.SurfaceType.Smooth
  7264. Part858.BrickColor = BrickColor.new("Really black")
  7265. Part858.TopSurface = Enum.SurfaceType.Smooth
  7266. Part858.brickColor = BrickColor.new("Really black")
  7267. Part858.FormFactor = Enum.FormFactor.Custom
  7268. Part858.formFactor = Enum.FormFactor.Custom
  7269. CylinderMesh859.Parent = Part858
  7270. CylinderMesh859.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7271. Part860.Parent = Tool0
  7272. Part860.CFrame = CFrame.new(-41.0614433, 1.65396047, 20.3675232, -0.999999881, -7.95612414e-06, -6.83430553e-05, 7.07916624e-05, 0.000160846044, -0.99999696, 8.1129092e-06, -1.00000012, -0.000154694251)
  7273. Part860.Orientation = Vector3.new(89.8600006, -156.160004, 23.7600002)
  7274. Part860.Position = Vector3.new(-41.0614433, 1.65396047, 20.3675232)
  7275. Part860.Rotation = Vector3.new(90.0099945, 0, 180)
  7276. Part860.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7277. Part860.Size = Vector3.new(0.200000003, 0.3125, 0.200000003)
  7278. Part860.BottomSurface = Enum.SurfaceType.Smooth
  7279. Part860.BrickColor = BrickColor.new("Really black")
  7280. Part860.TopSurface = Enum.SurfaceType.Smooth
  7281. Part860.brickColor = BrickColor.new("Really black")
  7282. Part860.FormFactor = Enum.FormFactor.Custom
  7283. Part860.formFactor = Enum.FormFactor.Custom
  7284. CylinderMesh861.Parent = Part860
  7285. CylinderMesh861.Scale = Vector3.new(1.78571427, 1, 1.78571427)
  7286. Part862.Parent = Tool0
  7287. Part862.CFrame = CFrame.new(-40.6838646, 1.2469871, 20.9511261, -0.999999881, -9.17725902e-06, -7.01019453e-05, 7.25503487e-05, 0.000160682102, -0.99999702, 9.33430056e-06, -1.00000012, -0.000154530222)
  7288. Part862.Orientation = Vector3.new(89.8600006, -155.599991, 24.2999992)
  7289. Part862.Position = Vector3.new(-40.6838646, 1.2469871, 20.9511261)
  7290. Part862.Rotation = Vector3.new(90.0099945, 0, 180)
  7291. Part862.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7292. Part862.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7293. Part862.BottomSurface = Enum.SurfaceType.Smooth
  7294. Part862.BrickColor = BrickColor.new("Really black")
  7295. Part862.TopSurface = Enum.SurfaceType.Smooth
  7296. Part862.brickColor = BrickColor.new("Really black")
  7297. Part862.FormFactor = Enum.FormFactor.Custom
  7298. Part862.formFactor = Enum.FormFactor.Custom
  7299. CylinderMesh863.Parent = Part862
  7300. CylinderMesh863.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7301. Part864.Parent = Tool0
  7302. Part864.CFrame = CFrame.new(-41.1393509, 1.0586375, 20.8262634, -0.999999881, -7.95612414e-06, -6.83430553e-05, 7.07916624e-05, 0.000160846044, -0.99999696, 8.1129092e-06, -1.00000012, -0.000154694251)
  7303. Part864.Orientation = Vector3.new(89.8600006, -156.160004, 23.7600002)
  7304. Part864.Position = Vector3.new(-41.1393509, 1.0586375, 20.8262634)
  7305. Part864.Rotation = Vector3.new(90.0099945, 0, 180)
  7306. Part864.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7307. Part864.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7308. Part864.BottomSurface = Enum.SurfaceType.Smooth
  7309. Part864.BrickColor = BrickColor.new("Really black")
  7310. Part864.TopSurface = Enum.SurfaceType.Smooth
  7311. Part864.brickColor = BrickColor.new("Really black")
  7312. Part864.FormFactor = Enum.FormFactor.Custom
  7313. Part864.formFactor = Enum.FormFactor.Custom
  7314. CylinderMesh865.Parent = Part864
  7315. CylinderMesh865.Scale = Vector3.new(1.33928561, 0.223214284, 1.33928561)
  7316. Part866.Parent = Tool0
  7317. Part866.CFrame = CFrame.new(-41.0804863, 0.866137028, 21.2989578, -0.706935763, -0.707277656, -4.1748106e-05, -0.612390816, 0.612127662, -0.500271142, 0.353861213, -0.353638798, -0.865865111)
  7318. Part866.Orientation = Vector3.new(30.0199986, -180, -45.0099983)
  7319. Part866.Position = Vector3.new(-41.0804863, 0.866137028, 21.2989578)
  7320. Part866.Rotation = Vector3.new(149.979996, 0, 134.98999)
  7321. Part866.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7322. Part866.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7323. Part866.BottomSurface = Enum.SurfaceType.Smooth
  7324. Part866.BrickColor = BrickColor.new("Really black")
  7325. Part866.TopSurface = Enum.SurfaceType.Smooth
  7326. Part866.brickColor = BrickColor.new("Really black")
  7327. Part866.FormFactor = Enum.FormFactor.Custom
  7328. Part866.formFactor = Enum.FormFactor.Custom
  7329. CylinderMesh867.Parent = Part866
  7330. CylinderMesh867.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7331. Part868.Parent = Tool0
  7332. Part868.CFrame = CFrame.new(-40.3345337, 1.05941164, 19.832346, -0.999999881, -7.95612414e-06, -6.83430553e-05, 7.07916624e-05, 0.000160846044, -0.99999696, 8.1129092e-06, -1.00000012, -0.000154694251)
  7333. Part868.Orientation = Vector3.new(89.8600006, -156.160004, 23.7600002)
  7334. Part868.Position = Vector3.new(-40.3345337, 1.05941164, 19.832346)
  7335. Part868.Rotation = Vector3.new(90.0099945, 0, 180)
  7336. Part868.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7337. Part868.Size = Vector3.new(0.669642866, 0.200000003, 0.669642866)
  7338. Part868.BottomSurface = Enum.SurfaceType.Smooth
  7339. Part868.BrickColor = BrickColor.new("Bright yellow")
  7340. Part868.Material = Enum.Material.Ice
  7341. Part868.TopSurface = Enum.SurfaceType.Smooth
  7342. Part868.brickColor = BrickColor.new("Bright yellow")
  7343. Part868.FormFactor = Enum.FormFactor.Custom
  7344. Part868.formFactor = Enum.FormFactor.Custom
  7345. CylinderMesh869.Parent = Part868
  7346. CylinderMesh869.Scale = Vector3.new(1.04999995, 0.334821403, 1.04999995)
  7347. Part870.Parent = Tool0
  7348. Part870.CFrame = CFrame.new(-41.1392136, 1.05966687, 19.8327408, -0.999999881, -7.95612414e-06, -6.83430553e-05, 7.07916624e-05, 0.000160846044, -0.99999696, 8.1129092e-06, -1.00000012, -0.000154694251)
  7349. Part870.Orientation = Vector3.new(89.8600006, -156.160004, 23.7600002)
  7350. Part870.Position = Vector3.new(-41.1392136, 1.05966687, 19.8327408)
  7351. Part870.Rotation = Vector3.new(90.0099945, 0, 180)
  7352. Part870.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7353. Part870.Size = Vector3.new(0.669642866, 0.200000003, 0.669642866)
  7354. Part870.BottomSurface = Enum.SurfaceType.Smooth
  7355. Part870.BrickColor = BrickColor.new("Bright yellow")
  7356. Part870.Material = Enum.Material.Ice
  7357. Part870.TopSurface = Enum.SurfaceType.Smooth
  7358. Part870.brickColor = BrickColor.new("Bright yellow")
  7359. Part870.FormFactor = Enum.FormFactor.Custom
  7360. Part870.formFactor = Enum.FormFactor.Custom
  7361. CylinderMesh871.Parent = Part870
  7362. CylinderMesh871.Scale = Vector3.new(1.04999995, 0.334821403, 1.04999995)
  7363. Part872.Parent = Tool0
  7364. Part872.CFrame = CFrame.new(-40.7479744, 1.43995976, 19.3181801, -0.999999881, -7.95612414e-06, -6.83430553e-05, 7.07916624e-05, 0.000160846044, -0.99999696, 8.1129092e-06, -1.00000012, -0.000154694251)
  7365. Part872.Orientation = Vector3.new(89.8600006, -156.160004, 23.7600002)
  7366. Part872.Position = Vector3.new(-40.7479744, 1.43995976, 19.3181801)
  7367. Part872.Rotation = Vector3.new(90.0099945, 0, 180)
  7368. Part872.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7369. Part872.Size = Vector3.new(0.892857134, 0.200000003, 0.714285731)
  7370. Part872.BottomSurface = Enum.SurfaceType.Smooth
  7371. Part872.BrickColor = BrickColor.new("Bright yellow")
  7372. Part872.Material = Enum.Material.Ice
  7373. Part872.TopSurface = Enum.SurfaceType.Smooth
  7374. Part872.brickColor = BrickColor.new("Bright yellow")
  7375. Part872.FormFactor = Enum.FormFactor.Custom
  7376. Part872.formFactor = Enum.FormFactor.Custom
  7377. CylinderMesh873.Parent = Part872
  7378. CylinderMesh873.Scale = Vector3.new(1, 0.446428567, 1)
  7379. Part874.Parent = Tool0
  7380. Part874.CFrame = CFrame.new(-40.7534447, 1.8449198, 21.720314, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7381. Part874.Orientation = Vector3.new(0.0399999991, -180, 0)
  7382. Part874.Position = Vector3.new(-40.7534447, 1.8449198, 21.720314)
  7383. Part874.Rotation = Vector3.new(179.959991, 0, -180)
  7384. Part874.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7385. Part874.Size = Vector3.new(0.200000003, 0.200000003, 0.267857224)
  7386. Part874.BottomSurface = Enum.SurfaceType.Smooth
  7387. Part874.BrickColor = BrickColor.new("Really black")
  7388. Part874.TopSurface = Enum.SurfaceType.Smooth
  7389. Part874.brickColor = BrickColor.new("Really black")
  7390. Part874.FormFactor = Enum.FormFactor.Custom
  7391. Part874.formFactor = Enum.FormFactor.Custom
  7392. BlockMesh875.Parent = Part874
  7393. BlockMesh875.Scale = Vector3.new(0.669642806, 0.223214284, 1)
  7394. Part876.Parent = Tool0
  7395. Part876.CFrame = CFrame.new(-41.1392708, 1.05917156, 20.2343597, -0.999999881, -7.95612414e-06, -6.83430553e-05, 7.07916624e-05, 0.000160846044, -0.99999696, 8.1129092e-06, -1.00000012, -0.000154694251)
  7396. Part876.Orientation = Vector3.new(89.8600006, -156.160004, 23.7600002)
  7397. Part876.Position = Vector3.new(-41.1392708, 1.05917156, 20.2343597)
  7398. Part876.Rotation = Vector3.new(90.0099945, 0, 180)
  7399. Part876.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7400. Part876.Size = Vector3.new(0.401785702, 1.13839281, 0.401785702)
  7401. Part876.BottomSurface = Enum.SurfaceType.Smooth
  7402. Part876.BrickColor = BrickColor.new("Really black")
  7403. Part876.TopSurface = Enum.SurfaceType.Smooth
  7404. Part876.brickColor = BrickColor.new("Really black")
  7405. Part876.FormFactor = Enum.FormFactor.Custom
  7406. Part876.formFactor = Enum.FormFactor.Custom
  7407. SpecialMesh877.Parent = Part876
  7408. Part878.Parent = Tool0
  7409. Part878.CFrame = CFrame.new(-40.7479477, 1.43986559, 19.4523506, -0.999999881, -7.95612414e-06, -6.83430553e-05, 7.07916624e-05, 0.000160846044, -0.99999696, 8.1129092e-06, -1.00000012, -0.000154694251)
  7410. Part878.Orientation = Vector3.new(89.8600006, -156.160004, 23.7600002)
  7411. Part878.Position = Vector3.new(-40.7479477, 1.43986559, 19.4523506)
  7412. Part878.Rotation = Vector3.new(90.0099945, 0, 180)
  7413. Part878.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7414. Part878.Size = Vector3.new(0.892857134, 0.200000003, 0.714285731)
  7415. Part878.BottomSurface = Enum.SurfaceType.Smooth
  7416. Part878.BrickColor = BrickColor.new("Really black")
  7417. Part878.TopSurface = Enum.SurfaceType.Smooth
  7418. Part878.brickColor = BrickColor.new("Really black")
  7419. Part878.FormFactor = Enum.FormFactor.Custom
  7420. Part878.formFactor = Enum.FormFactor.Custom
  7421. CylinderMesh879.Parent = Part878
  7422. CylinderMesh879.Scale = Vector3.new(1, 0.892857134, 1)
  7423. Part880.Parent = Tool0
  7424. Part880.CFrame = CFrame.new(-40.7534637, 1.90757072, 21.6353989, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7425. Part880.Orientation = Vector3.new(0.0399999991, -180, 0)
  7426. Part880.Position = Vector3.new(-40.7534637, 1.90757072, 21.6353989)
  7427. Part880.Rotation = Vector3.new(179.959991, 0, -180)
  7428. Part880.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7429. Part880.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7430. Part880.BottomSurface = Enum.SurfaceType.Smooth
  7431. Part880.BrickColor = BrickColor.new("Really black")
  7432. Part880.TopSurface = Enum.SurfaceType.Smooth
  7433. Part880.brickColor = BrickColor.new("Really black")
  7434. Part880.FormFactor = Enum.FormFactor.Custom
  7435. Part880.formFactor = Enum.FormFactor.Custom
  7436. BlockMesh881.Parent = Part880
  7437. BlockMesh881.Scale = Vector3.new(0.736607134, 0.178571433, 0.580357254)
  7438. Part882.Parent = Tool0
  7439. Part882.CFrame = CFrame.new(-40.754055, 2.21630812, 21.8090515, -0.999999881, 7.95612414e-06, 6.83430553e-05, 7.07916624e-05, -0.000160846044, 0.99999696, 8.1129092e-06, 1.00000012, 0.000154694251)
  7440. Part882.Orientation = Vector3.new(-89.8600006, 23.8400002, 156.23999)
  7441. Part882.Position = Vector3.new(-40.754055, 2.21630812, 21.8090515)
  7442. Part882.Rotation = Vector3.new(-89.9899979, 0, -180)
  7443. Part882.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7444. Part882.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7445. Part882.BottomSurface = Enum.SurfaceType.Smooth
  7446. Part882.BrickColor = BrickColor.new("Really black")
  7447. Part882.TopSurface = Enum.SurfaceType.Smooth
  7448. Part882.brickColor = BrickColor.new("Really black")
  7449. Part882.FormFactor = Enum.FormFactor.Custom
  7450. Part882.formFactor = Enum.FormFactor.Custom
  7451. SpecialMesh883.Parent = Part882
  7452. SpecialMesh883.Scale = Vector3.new(0.669642806, 0.446428567, 0.535714269)
  7453. SpecialMesh883.MeshType = Enum.MeshType.Wedge
  7454. Part884.Parent = Tool0
  7455. Part884.CFrame = CFrame.new(-40.7531471, 1.94301057, 21.8096237, 0.999999881, 7.95612414e-06, -6.83430553e-05, -7.07916624e-05, -0.000160846044, -0.99999696, -8.1129092e-06, 1.00000012, -0.000154694251)
  7456. Part884.Orientation = Vector3.new(89.8600006, -156.160004, -156.23999)
  7457. Part884.Position = Vector3.new(-40.7531471, 1.94301057, 21.8096237)
  7458. Part884.Rotation = Vector3.new(90.0099945, 0, 0)
  7459. Part884.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7460. Part884.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7461. Part884.BottomSurface = Enum.SurfaceType.Smooth
  7462. Part884.BrickColor = BrickColor.new("Really black")
  7463. Part884.TopSurface = Enum.SurfaceType.Smooth
  7464. Part884.brickColor = BrickColor.new("Really black")
  7465. Part884.FormFactor = Enum.FormFactor.Custom
  7466. Part884.formFactor = Enum.FormFactor.Custom
  7467. SpecialMesh885.Parent = Part884
  7468. SpecialMesh885.Scale = Vector3.new(0.669642806, 0.446428567, 0.758928597)
  7469. SpecialMesh885.MeshType = Enum.MeshType.Wedge
  7470. Part886.Parent = Tool0
  7471. Part886.CFrame = CFrame.new(-40.7536926, 2.2923243, 21.482933, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7472. Part886.Orientation = Vector3.new(0.0399999991, -180, 0)
  7473. Part886.Position = Vector3.new(-40.7536926, 2.2923243, 21.482933)
  7474. Part886.Rotation = Vector3.new(179.959991, 0, -180)
  7475. Part886.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7476. Part886.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7477. Part886.BottomSurface = Enum.SurfaceType.Smooth
  7478. Part886.BrickColor = BrickColor.new("Really black")
  7479. Part886.TopSurface = Enum.SurfaceType.Smooth
  7480. Part886.brickColor = BrickColor.new("Really black")
  7481. Part886.FormFactor = Enum.FormFactor.Custom
  7482. Part886.formFactor = Enum.FormFactor.Custom
  7483. BlockMesh887.Parent = Part886
  7484. BlockMesh887.Scale = Vector3.new(0.669642806, 0.133928567, 0.133928567)
  7485. Part888.Parent = Tool0
  7486. Part888.CFrame = CFrame.new(-40.3651962, 0.886432648, 21.2813683, -0.865873516, 0.500262737, -4.15066097e-05, 0.433180213, 0.749718189, -0.500271499, -0.250239432, -0.433195978, -0.865864873)
  7487. Part888.Orientation = Vector3.new(30.0199986, -180, 30.0199986)
  7488. Part888.Position = Vector3.new(-40.3651962, 0.886432648, 21.2813683)
  7489. Part888.Rotation = Vector3.new(149.979996, 0, -149.979996)
  7490. Part888.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7491. Part888.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7492. Part888.BottomSurface = Enum.SurfaceType.Smooth
  7493. Part888.BrickColor = BrickColor.new("Really black")
  7494. Part888.TopSurface = Enum.SurfaceType.Smooth
  7495. Part888.brickColor = BrickColor.new("Really black")
  7496. Part888.FormFactor = Enum.FormFactor.Custom
  7497. Part888.formFactor = Enum.FormFactor.Custom
  7498. CylinderMesh889.Parent = Part888
  7499. CylinderMesh889.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7500. Part890.Parent = Tool0
  7501. Part890.CFrame = CFrame.new(-40.7538567, 2.34142756, 21.5991535, 0.999999881, 6.83358157e-05, 8.01800707e-06, -7.07916624e-05, 0.999996781, 0.000744640944, -8.1129092e-06, -0.000750795589, 0.999999881)
  7502. Part890.Orientation = Vector3.new(-0.0399999991, 0, 0)
  7503. Part890.Position = Vector3.new(-40.7538567, 2.34142756, 21.5991535)
  7504. Part890.Rotation = Vector3.new(-0.0399999991, 0, 0)
  7505. Part890.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7506. Part890.Size = Vector3.new(0.200000003, 0.200000003, 0.330357134)
  7507. Part890.BottomSurface = Enum.SurfaceType.Smooth
  7508. Part890.BrickColor = BrickColor.new("Really black")
  7509. Part890.TopSurface = Enum.SurfaceType.Smooth
  7510. Part890.brickColor = BrickColor.new("Really black")
  7511. Part890.FormFactor = Enum.FormFactor.Custom
  7512. Part890.formFactor = Enum.FormFactor.Custom
  7513. SpecialMesh891.Parent = Part890
  7514. SpecialMesh891.Scale = Vector3.new(0.669642806, 0.357142866, 1)
  7515. SpecialMesh891.MeshType = Enum.MeshType.Wedge
  7516. Part892.Parent = Tool0
  7517. Part892.CFrame = CFrame.new(-40.7530937, 2.26496601, 21.4784527, -0.999999881, -6.83358157e-05, 8.01800707e-06, 7.07916624e-05, -0.999996781, 0.000744640944, 8.1129092e-06, 0.000750795589, 0.999999881)
  7518. Part892.Orientation = Vector3.new(-0.0399999991, 0, 180)
  7519. Part892.Position = Vector3.new(-40.7530937, 2.26496601, 21.4784527)
  7520. Part892.Rotation = Vector3.new(-0.0399999991, 0, 180)
  7521. Part892.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7522. Part892.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7523. Part892.BottomSurface = Enum.SurfaceType.Smooth
  7524. Part892.BrickColor = BrickColor.new("Really black")
  7525. Part892.TopSurface = Enum.SurfaceType.Smooth
  7526. Part892.brickColor = BrickColor.new("Really black")
  7527. Part892.FormFactor = Enum.FormFactor.Custom
  7528. Part892.formFactor = Enum.FormFactor.Custom
  7529. SpecialMesh893.Parent = Part892
  7530. SpecialMesh893.Scale = Vector3.new(0.669642806, 0.133928567, 0.0892857015)
  7531. SpecialMesh893.MeshType = Enum.MeshType.Wedge
  7532. Part894.Parent = Tool0
  7533. Part894.CFrame = CFrame.new(-40.7540894, 2.17145133, 21.4651031, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7534. Part894.Orientation = Vector3.new(0.0399999991, -180, 0)
  7535. Part894.Position = Vector3.new(-40.7540894, 2.17145133, 21.4651031)
  7536. Part894.Rotation = Vector3.new(179.959991, 0, -180)
  7537. Part894.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7538. Part894.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7539. Part894.BottomSurface = Enum.SurfaceType.Smooth
  7540. Part894.BrickColor = BrickColor.new("Really black")
  7541. Part894.TopSurface = Enum.SurfaceType.Smooth
  7542. Part894.brickColor = BrickColor.new("Really black")
  7543. Part894.FormFactor = Enum.FormFactor.Custom
  7544. Part894.formFactor = Enum.FormFactor.Custom
  7545. BlockMesh895.Parent = Part894
  7546. BlockMesh895.Scale = Vector3.new(0.669642806, 0.0892857239, 0.31250003)
  7547. Part896.Parent = Tool0
  7548. Part896.CFrame = CFrame.new(-40.7532082, 2.22078466, 21.478569, 0.999999881, 6.83358157e-05, 8.01800707e-06, -7.07916624e-05, 0.999996781, 0.000744640944, -8.1129092e-06, -0.000750795589, 0.999999881)
  7549. Part896.Orientation = Vector3.new(-0.0399999991, 0, 0)
  7550. Part896.Position = Vector3.new(-40.7532082, 2.22078466, 21.478569)
  7551. Part896.Rotation = Vector3.new(-0.0399999991, 0, 0)
  7552. Part896.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7553. Part896.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7554. Part896.BottomSurface = Enum.SurfaceType.Smooth
  7555. Part896.BrickColor = BrickColor.new("Really black")
  7556. Part896.TopSurface = Enum.SurfaceType.Smooth
  7557. Part896.brickColor = BrickColor.new("Really black")
  7558. Part896.FormFactor = Enum.FormFactor.Custom
  7559. Part896.formFactor = Enum.FormFactor.Custom
  7560. SpecialMesh897.Parent = Part896
  7561. SpecialMesh897.Scale = Vector3.new(0.669642806, 0.133928567, 0.0892857015)
  7562. SpecialMesh897.MeshType = Enum.MeshType.Wedge
  7563. Part898.Parent = Tool0
  7564. Part898.CFrame = CFrame.new(-40.3351212, 1.02895904, 21.1795101, -0.999999881, 2.6927315e-05, -6.33866875e-05, 7.08067018e-05, 0.500134885, -0.865944088, 8.53016627e-06, -0.865949929, -0.50013113)
  7565. Part898.Orientation = Vector3.new(59.9899979, -179.98999, 0.00999999978)
  7566. Part898.Position = Vector3.new(-40.3351212, 1.02895904, 21.1795101)
  7567. Part898.Rotation = Vector3.new(120.009995, 0, -180)
  7568. Part898.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7569. Part898.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7570. Part898.BottomSurface = Enum.SurfaceType.Smooth
  7571. Part898.BrickColor = BrickColor.new("Really black")
  7572. Part898.TopSurface = Enum.SurfaceType.Smooth
  7573. Part898.brickColor = BrickColor.new("Really black")
  7574. Part898.FormFactor = Enum.FormFactor.Custom
  7575. Part898.formFactor = Enum.FormFactor.Custom
  7576. CylinderMesh899.Parent = Part898
  7577. CylinderMesh899.Scale = Vector3.new(0.223214284, 0.290178567, 0.223214284)
  7578. Part900.Parent = Tool0
  7579. Part900.CFrame = CFrame.new(-41.2391968, 1.75328636, 19.0945587, 0.999999881, 7.95612414e-06, -6.83430553e-05, -7.07916624e-05, -0.000160846044, -0.99999696, -8.1129092e-06, 1.00000012, -0.000154694251)
  7580. Part900.Orientation = Vector3.new(89.8600006, -156.160004, -156.23999)
  7581. Part900.Position = Vector3.new(-41.2391968, 1.75328636, 19.0945587)
  7582. Part900.Rotation = Vector3.new(90.0099945, 0, 0)
  7583. Part900.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7584. Part900.Size = Vector3.new(0.200000003, 0.267857134, 0.357142866)
  7585. Part900.BottomSurface = Enum.SurfaceType.Smooth
  7586. Part900.BrickColor = BrickColor.new("Bright yellow")
  7587. Part900.Material = Enum.Material.Ice
  7588. Part900.TopSurface = Enum.SurfaceType.Smooth
  7589. Part900.brickColor = BrickColor.new("Bright yellow")
  7590. Part900.FormFactor = Enum.FormFactor.Custom
  7591. Part900.formFactor = Enum.FormFactor.Custom
  7592. BlockMesh901.Parent = Part900
  7593. BlockMesh901.Scale = Vector3.new(0.446428567, 1, 1)
  7594. Part902.Parent = Tool0
  7595. Part902.CFrame = CFrame.new(-41.3284302, 1.6281296, 19.0946712, 0.000270802644, 0.999999881, -6.8560621e-05, 0.000160613854, -7.10539971e-05, -0.99999696, -1.00000012, 0.00027064592, -0.000154481851)
  7596. Part902.Orientation = Vector3.new(89.8600006, -156.069992, 113.860001)
  7597. Part902.Position = Vector3.new(-41.3284302, 1.6281296, 19.0946712)
  7598. Part902.Rotation = Vector3.new(90.0099945, 0, -89.9799957)
  7599. Part902.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7600. Part902.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7601. Part902.BottomSurface = Enum.SurfaceType.Smooth
  7602. Part902.BrickColor = BrickColor.new("Bright yellow")
  7603. Part902.Material = Enum.Material.Ice
  7604. Part902.TopSurface = Enum.SurfaceType.Smooth
  7605. Part902.brickColor = BrickColor.new("Bright yellow")
  7606. Part902.FormFactor = Enum.FormFactor.Custom
  7607. Part902.formFactor = Enum.FormFactor.Custom
  7608. CylinderMesh903.Parent = Part902
  7609. CylinderMesh903.Scale = Vector3.new(0.223214284, 0.446428567, 0.223214284)
  7610. Part904.Parent = Tool0
  7611. Part904.CFrame = CFrame.new(-40.7540092, 1.9792285, 21.4829845, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7612. Part904.Orientation = Vector3.new(0.0399999991, -180, 0)
  7613. Part904.Position = Vector3.new(-40.7540092, 1.9792285, 21.4829845)
  7614. Part904.Rotation = Vector3.new(179.959991, 0, -180)
  7615. Part904.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7616. Part904.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7617. Part904.BottomSurface = Enum.SurfaceType.Smooth
  7618. Part904.BrickColor = BrickColor.new("Really black")
  7619. Part904.TopSurface = Enum.SurfaceType.Smooth
  7620. Part904.brickColor = BrickColor.new("Really black")
  7621. Part904.FormFactor = Enum.FormFactor.Custom
  7622. Part904.formFactor = Enum.FormFactor.Custom
  7623. BlockMesh905.Parent = Part904
  7624. BlockMesh905.Scale = Vector3.new(0.669642806, 0.223214284, 0.133928567)
  7625. Part906.Parent = Tool0
  7626. Part906.CFrame = CFrame.new(-40.7534142, 2.13123989, 21.6306229, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7627. Part906.Orientation = Vector3.new(0.0399999991, -180, 0)
  7628. Part906.Position = Vector3.new(-40.7534142, 2.13123989, 21.6306229)
  7629. Part906.Rotation = Vector3.new(179.959991, 0, -180)
  7630. Part906.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7631. Part906.Size = Vector3.new(0.200000003, 0.348214298, 0.267857194)
  7632. Part906.BottomSurface = Enum.SurfaceType.Smooth
  7633. Part906.BrickColor = BrickColor.new("Really black")
  7634. Part906.TopSurface = Enum.SurfaceType.Smooth
  7635. Part906.brickColor = BrickColor.new("Really black")
  7636. Part906.FormFactor = Enum.FormFactor.Custom
  7637. Part906.formFactor = Enum.FormFactor.Custom
  7638. BlockMesh907.Parent = Part906
  7639. BlockMesh907.Scale = Vector3.new(0.669642806, 1, 1)
  7640. Part908.Parent = Tool0
  7641. Part908.CFrame = CFrame.new(-41.0610886, 1.65414679, 19.9206314, -0.999999881, -7.95612414e-06, -6.83430553e-05, 7.07916624e-05, 0.000160846044, -0.99999696, 8.1129092e-06, -1.00000012, -0.000154694251)
  7642. Part908.Orientation = Vector3.new(89.8600006, -156.160004, 23.7600002)
  7643. Part908.Position = Vector3.new(-41.0610886, 1.65414679, 19.9206314)
  7644. Part908.Rotation = Vector3.new(90.0099945, 0, 180)
  7645. Part908.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7646. Part908.Size = Vector3.new(0.267857134, 0.580357134, 0.267857134)
  7647. Part908.BottomSurface = Enum.SurfaceType.Smooth
  7648. Part908.BrickColor = BrickColor.new("Really black")
  7649. Part908.TopSurface = Enum.SurfaceType.Smooth
  7650. Part908.brickColor = BrickColor.new("Really black")
  7651. Part908.FormFactor = Enum.FormFactor.Custom
  7652. Part908.formFactor = Enum.FormFactor.Custom
  7653. CylinderMesh909.Parent = Part908
  7654. CylinderMesh909.Scale = Vector3.new(1.5, 1, 1.5)
  7655. Part910.Parent = Tool0
  7656. Part910.CFrame = CFrame.new(-40.7536049, 2.09561014, 21.4832344, -0.999999881, -6.83358157e-05, 8.01800707e-06, 7.07916624e-05, -0.999996781, 0.000744640944, 8.1129092e-06, 0.000750795589, 0.999999881)
  7657. Part910.Orientation = Vector3.new(-0.0399999991, 0, 180)
  7658. Part910.Position = Vector3.new(-40.7536049, 2.09561014, 21.4832344)
  7659. Part910.Rotation = Vector3.new(-0.0399999991, 0, 180)
  7660. Part910.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7661. Part910.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7662. Part910.BottomSurface = Enum.SurfaceType.Smooth
  7663. Part910.BrickColor = BrickColor.new("Really black")
  7664. Part910.TopSurface = Enum.SurfaceType.Smooth
  7665. Part910.brickColor = BrickColor.new("Really black")
  7666. Part910.FormFactor = Enum.FormFactor.Custom
  7667. Part910.formFactor = Enum.FormFactor.Custom
  7668. SpecialMesh911.Parent = Part910
  7669. SpecialMesh911.Scale = Vector3.new(0.669642806, 0.223214284, 0.133928552)
  7670. SpecialMesh911.MeshType = Enum.MeshType.Wedge
  7671. Part912.Parent = Tool0
  7672. Part912.CFrame = CFrame.new(-40.7530098, 1.97965991, 21.4522305, 0.999999881, 6.83358157e-05, 8.01800707e-06, -7.07916624e-05, 0.999996781, 0.000744640944, -8.1129092e-06, -0.000750795589, 0.999999881)
  7673. Part912.Orientation = Vector3.new(-0.0399999991, 0, 0)
  7674. Part912.Position = Vector3.new(-40.7530098, 1.97965991, 21.4522305)
  7675. Part912.Rotation = Vector3.new(-0.0399999991, 0, 0)
  7676. Part912.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7677. Part912.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7678. Part912.BottomSurface = Enum.SurfaceType.Smooth
  7679. Part912.BrickColor = BrickColor.new("Really black")
  7680. Part912.TopSurface = Enum.SurfaceType.Smooth
  7681. Part912.brickColor = BrickColor.new("Really black")
  7682. Part912.FormFactor = Enum.FormFactor.Custom
  7683. Part912.formFactor = Enum.FormFactor.Custom
  7684. SpecialMesh913.Parent = Part912
  7685. SpecialMesh913.Scale = Vector3.new(0.669642806, 0.223214284, 0.178571403)
  7686. SpecialMesh913.MeshType = Enum.MeshType.Wedge
  7687. Part914.Parent = Tool0
  7688. Part914.CFrame = CFrame.new(-40.7532539, 2.02415013, 21.4833412, 0.999999881, 6.83358157e-05, 8.01800707e-06, -7.07916624e-05, 0.999996781, 0.000744640944, -8.1129092e-06, -0.000750795589, 0.999999881)
  7689. Part914.Orientation = Vector3.new(-0.0399999991, 0, 0)
  7690. Part914.Position = Vector3.new(-40.7532539, 2.02415013, 21.4833412)
  7691. Part914.Rotation = Vector3.new(-0.0399999991, 0, 0)
  7692. Part914.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7693. Part914.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7694. Part914.BottomSurface = Enum.SurfaceType.Smooth
  7695. Part914.BrickColor = BrickColor.new("Really black")
  7696. Part914.TopSurface = Enum.SurfaceType.Smooth
  7697. Part914.brickColor = BrickColor.new("Really black")
  7698. Part914.FormFactor = Enum.FormFactor.Custom
  7699. Part914.formFactor = Enum.FormFactor.Custom
  7700. SpecialMesh915.Parent = Part914
  7701. SpecialMesh915.Scale = Vector3.new(0.669642806, 0.223214284, 0.133928552)
  7702. SpecialMesh915.MeshType = Enum.MeshType.Wedge
  7703. Part916.Parent = Tool0
  7704. Part916.CFrame = CFrame.new(-40.7529984, 1.69736958, 21.381237, 0.999999881, 7.95612414e-06, -6.83430553e-05, -7.07916624e-05, -0.000160846044, -0.99999696, -8.1129092e-06, 1.00000012, -0.000154694251)
  7705. Part916.Orientation = Vector3.new(89.8600006, -156.160004, -156.23999)
  7706. Part916.Position = Vector3.new(-40.7529984, 1.69736958, 21.381237)
  7707. Part916.Rotation = Vector3.new(90.0099945, 0, 0)
  7708. Part916.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7709. Part916.Size = Vector3.new(0.200000003, 0.625, 0.200000003)
  7710. Part916.BottomSurface = Enum.SurfaceType.Smooth
  7711. Part916.BrickColor = BrickColor.new("Really black")
  7712. Part916.TopSurface = Enum.SurfaceType.Smooth
  7713. Part916.brickColor = BrickColor.new("Really black")
  7714. Part916.FormFactor = Enum.FormFactor.Custom
  7715. Part916.formFactor = Enum.FormFactor.Custom
  7716. BlockMesh917.Parent = Part916
  7717. BlockMesh917.Scale = Vector3.new(0.669642806, 1, 0.357142836)
  7718. Part918.Parent = Tool0
  7719. Part918.CFrame = CFrame.new(-40.7528458, 1.57683122, 21.5507927, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7720. Part918.Orientation = Vector3.new(0.0399999991, -180, 0)
  7721. Part918.Position = Vector3.new(-40.7528458, 1.57683122, 21.5507927)
  7722. Part918.Rotation = Vector3.new(179.959991, 0, -180)
  7723. Part918.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7724. Part918.Size = Vector3.new(0.200000003, 0.580357134, 0.200000003)
  7725. Part918.BottomSurface = Enum.SurfaceType.Smooth
  7726. Part918.BrickColor = BrickColor.new("Really black")
  7727. Part918.TopSurface = Enum.SurfaceType.Smooth
  7728. Part918.brickColor = BrickColor.new("Really black")
  7729. Part918.FormFactor = Enum.FormFactor.Custom
  7730. Part918.formFactor = Enum.FormFactor.Custom
  7731. BlockMesh919.Parent = Part918
  7732. BlockMesh919.Scale = Vector3.new(0.669642806, 1, 0.357142836)
  7733. Part920.Parent = Tool0
  7734. Part920.CFrame = CFrame.new(-40.7529297, 1.77365947, 21.0330124, -0.999999881, -6.83358157e-05, 8.01800707e-06, 7.07916624e-05, -0.999996781, 0.000744640944, 8.1129092e-06, 0.000750795589, 0.999999881)
  7735. Part920.Orientation = Vector3.new(-0.0399999991, 0, 180)
  7736. Part920.Position = Vector3.new(-40.7529297, 1.77365947, 21.0330124)
  7737. Part920.Rotation = Vector3.new(-0.0399999991, 0, 180)
  7738. Part920.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7739. Part920.Size = Vector3.new(0.200000003, 0.223214284, 0.200000003)
  7740. Part920.BottomSurface = Enum.SurfaceType.Smooth
  7741. Part920.BrickColor = BrickColor.new("Really black")
  7742. Part920.TopSurface = Enum.SurfaceType.Smooth
  7743. Part920.brickColor = BrickColor.new("Really black")
  7744. Part920.FormFactor = Enum.FormFactor.Custom
  7745. Part920.formFactor = Enum.FormFactor.Custom
  7746. SpecialMesh921.Parent = Part920
  7747. SpecialMesh921.Scale = Vector3.new(0.669642806, 1, 0.357142836)
  7748. SpecialMesh921.MeshType = Enum.MeshType.Wedge
  7749. Part922.Parent = Tool0
  7750. Part922.CFrame = CFrame.new(-40.7533684, 1.82331729, 21.1039124, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7751. Part922.Orientation = Vector3.new(0.0399999991, -180, 0)
  7752. Part922.Position = Vector3.new(-40.7533684, 1.82331729, 21.1039124)
  7753. Part922.Rotation = Vector3.new(179.959991, 0, -180)
  7754. Part922.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7755. Part922.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7756. Part922.BottomSurface = Enum.SurfaceType.Smooth
  7757. Part922.BrickColor = BrickColor.new("Really black")
  7758. Part922.TopSurface = Enum.SurfaceType.Smooth
  7759. Part922.brickColor = BrickColor.new("Really black")
  7760. Part922.FormFactor = Enum.FormFactor.Custom
  7761. Part922.formFactor = Enum.FormFactor.Custom
  7762. SpecialMesh923.Parent = Part922
  7763. SpecialMesh923.Scale = Vector3.new(0.669642806, 0.892857134, 0.357142836)
  7764. SpecialMesh923.MeshType = Enum.MeshType.Wedge
  7765. Part924.Parent = Tool0
  7766. Part924.CFrame = CFrame.new(-40.2565613, 1.75296521, 19.0945873, 0.999999881, 7.95612414e-06, -6.83430553e-05, -7.07916624e-05, -0.000160846044, -0.99999696, -8.1129092e-06, 1.00000012, -0.000154694251)
  7767. Part924.Orientation = Vector3.new(89.8600006, -156.160004, -156.23999)
  7768. Part924.Position = Vector3.new(-40.2565613, 1.75296521, 19.0945873)
  7769. Part924.Rotation = Vector3.new(90.0099945, 0, 0)
  7770. Part924.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7771. Part924.Size = Vector3.new(0.200000003, 0.267857134, 0.357142866)
  7772. Part924.BottomSurface = Enum.SurfaceType.Smooth
  7773. Part924.BrickColor = BrickColor.new("Bright yellow")
  7774. Part924.Material = Enum.Material.Ice
  7775. Part924.TopSurface = Enum.SurfaceType.Smooth
  7776. Part924.brickColor = BrickColor.new("Bright yellow")
  7777. Part924.FormFactor = Enum.FormFactor.Custom
  7778. Part924.formFactor = Enum.FormFactor.Custom
  7779. BlockMesh925.Parent = Part924
  7780. BlockMesh925.Scale = Vector3.new(0.446428567, 1, 1)
  7781. Part926.Parent = Tool0
  7782. Part926.CFrame = CFrame.new(-40.7484512, 1.88698626, 19.0945339, 0.999999881, 7.95612414e-06, -6.83430553e-05, -7.07916624e-05, -0.000160846044, -0.99999696, -8.1129092e-06, 1.00000012, -0.000154694251)
  7783. Part926.Orientation = Vector3.new(89.8600006, -156.160004, -156.23999)
  7784. Part926.Position = Vector3.new(-40.7484512, 1.88698626, 19.0945339)
  7785. Part926.Rotation = Vector3.new(90.0099945, 0, 0)
  7786. Part926.Color = Color3.new(0.960784, 0.803922, 0.188235)
  7787. Part926.Size = Vector3.new(0.892857134, 0.267857134, 0.200000003)
  7788. Part926.BottomSurface = Enum.SurfaceType.Smooth
  7789. Part926.BrickColor = BrickColor.new("Bright yellow")
  7790. Part926.Material = Enum.Material.Ice
  7791. Part926.TopSurface = Enum.SurfaceType.Smooth
  7792. Part926.brickColor = BrickColor.new("Bright yellow")
  7793. Part926.FormFactor = Enum.FormFactor.Custom
  7794. Part926.formFactor = Enum.FormFactor.Custom
  7795. BlockMesh927.Parent = Part926
  7796. BlockMesh927.Scale = Vector3.new(1, 1, 0.446428567)
  7797. Part928.Parent = Tool0
  7798. Part928.CFrame = CFrame.new(-40.7532768, 2.32331133, 21.7866592, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7799. Part928.Orientation = Vector3.new(0.0399999991, -180, 0)
  7800. Part928.Position = Vector3.new(-40.7532768, 2.32331133, 21.7866592)
  7801. Part928.Rotation = Vector3.new(179.959991, 0, -180)
  7802. Part928.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7803. Part928.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7804. Part928.BottomSurface = Enum.SurfaceType.Smooth
  7805. Part928.BrickColor = BrickColor.new("Really black")
  7806. Part928.TopSurface = Enum.SurfaceType.Smooth
  7807. Part928.brickColor = BrickColor.new("Really black")
  7808. Part928.FormFactor = Enum.FormFactor.Custom
  7809. Part928.formFactor = Enum.FormFactor.Custom
  7810. BlockMesh929.Parent = Part928
  7811. BlockMesh929.Scale = Vector3.new(0.669642806, 0.535714269, 0.223214492)
  7812. Part930.Parent = Tool0
  7813. Part930.CFrame = CFrame.new(-40.7537003, 2.19399762, 21.4829159, -0.999999881, 6.83358157e-05, -8.01800707e-06, 7.07916624e-05, 0.999996781, -0.000744640944, 8.1129092e-06, -0.000750795589, -0.999999881)
  7814. Part930.Orientation = Vector3.new(0.0399999991, -180, 0)
  7815. Part930.Position = Vector3.new(-40.7537003, 2.19399762, 21.4829159)
  7816. Part930.Rotation = Vector3.new(179.959991, 0, -180)
  7817. Part930.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  7818. Part930.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  7819. Part930.BottomSurface = Enum.SurfaceType.Smooth
  7820. Part930.BrickColor = BrickColor.new("Really black")
  7821. Part930.TopSurface = Enum.SurfaceType.Smooth
  7822. Part930.brickColor = BrickColor.new("Really black")
  7823. Part930.FormFactor = Enum.FormFactor.Custom
  7824. Part930.formFactor = Enum.FormFactor.Custom
  7825. BlockMesh931.Parent = Part930
  7826. BlockMesh931.Scale = Vector3.new(0.669642806, 0.133928567, 0.133928567)
  7827. NumberValue932.Name = "Ammo"
  7828. NumberValue932.Parent = Tool0
  7829. NumberValue932.Value = 200
  7830. Script933.Name = "Bullet"
  7831. Script933.Parent = Tool0
  7832. table.insert(cors,sandbox(Script933,function()
  7833. ball = script.Parent
  7834. damage = math.random(30,50)
  7835. local hitt = false
  7836.  
  7837. HitSound = Instance.new("Sound")
  7838. HitSound.Name = "HitSound"
  7839. HitSound.SoundId = "http://www.roblox.com/asset/?id=11945266"
  7840. HitSound.Pitch = .8
  7841. HitSound.Volume = 1
  7842. HitSound.Parent = ball
  7843.  
  7844. function onTouched(hit)
  7845. if hit.Parent:findFirstChild("ForceField") ~= nil then return end
  7846. if hit.CanCollide == false and hit.Parent:findFirstChild("Humanoid") == nil then return end
  7847. if hit.Parent.className == "Hat" and hitt == false then
  7848. hitt = true
  7849. hit:BreakJoints()
  7850. hit.Velocity = ball.Velocity
  7851. hit.Parent.Parent = game.Workspace
  7852. end
  7853.  
  7854. if hit:findFirstChild("Metal") ~= nil and hitt == false then
  7855. hitt = true
  7856. for i = 1,math.random(1,3) do
  7857. local j = Instance.new("Part")
  7858. j.formFactor = "Plate"
  7859. j.Size = Vector3.new(1,.4,1)
  7860. j.BrickColor = BrickColor.new("Bright yellow")
  7861. j.CanCollide = false
  7862. j.Velocity = Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  7863. j.CFrame = script.Parent.CFrame
  7864. j.Parent = game.Workspace
  7865. end
  7866. end
  7867.  
  7868. local humanoid = hit.Parent:findFirstChild("Humanoid")
  7869.  
  7870. if humanoid ~= nil and hitt == false then
  7871. hitt = true
  7872. tagHumanoid(humanoid)
  7873. if hit.Name == "Head" then
  7874. humanoid.Health = humanoid.Health - damage * 2
  7875. elseif hit.Name == "Torso" then
  7876. humanoid.Health = humanoid.Health - damage * 1.5
  7877. else
  7878. humanoid.Health = humanoid.Health - damage
  7879. end
  7880. wait(.2)
  7881. untagHumanoid(humanoid)
  7882. end
  7883. if hitt == true then
  7884. HitSound:play()
  7885. ball.Parent = nil
  7886. end
  7887. end
  7888.  
  7889. function tagHumanoid(humanoid)
  7890. -- todo: make tag expire
  7891. local tag = ball:findFirstChild("creator")
  7892. if tag ~= nil then
  7893. local new_tag = tag:clone()
  7894. new_tag.Parent = humanoid
  7895. end
  7896. end
  7897.  
  7898.  
  7899. function untagHumanoid(humanoid)
  7900. if humanoid ~= nil then
  7901. local tag = humanoid:findFirstChild("creator")
  7902. if tag ~= nil then
  7903. tag.Parent = nil
  7904. end
  7905. end
  7906. end
  7907.  
  7908. connection = ball.Touched:connect(onTouched)
  7909.  
  7910. while true do
  7911. wait(.01)
  7912. if damage < 0 then
  7913. break
  7914. else
  7915. damage = damage - .5
  7916. end
  7917. end
  7918.  
  7919. ball.Parent = nil
  7920. end))
  7921. Script933.Disabled = true
  7922. LocalScript934.Name = "GuiScript(backup)"
  7923. LocalScript934.Parent = Tool0
  7924. table.insert(cors,sandbox(LocalScript934,function()
  7925. local Tool = script.Parent
  7926. local Ammo = Tool.Ammo
  7927. local MaxAmmo = Ammo.Value
  7928.  
  7929. local vPlayer
  7930. local Gui
  7931. local Text
  7932.  
  7933. function onChanged(value)
  7934. if value == "Value" or value == Ammo.Value then
  7935. if Gui ~= nil and Text ~= nil then
  7936. if Ammo.Value >= 1 then
  7937. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  7938. elseif math.floor(Ammo.Value) == 0 then
  7939. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  7940. elseif Ammo.Value < 0 then
  7941. for i = 0, 1, 0.03 / 2 do
  7942. local Num = math.floor(i * MaxAmmo + 0.5)
  7943.  
  7944. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  7945. wait()
  7946. end
  7947. end
  7948. end
  7949. end
  7950. end
  7951.  
  7952. function on2Changed()
  7953. if Gui ~= nil and Text ~= nil then
  7954.  
  7955. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  7956. wait()
  7957. end
  7958. end
  7959.  
  7960. function setUpGui()
  7961. if vPlayer == nil or vPlayer:findFirstChild("PlayerGui") == nil then
  7962. return
  7963. end
  7964.  
  7965. Gui = Instance.new("ScreenGui")
  7966. Text = Instance.new("TextLabel")
  7967.  
  7968. Gui.Name = "DEDisplay"
  7969. Gui.Parent = vPlayer.PlayerGui
  7970.  
  7971. Text.BackgroundColor3 = BrickColor.Black().Color
  7972. Text.BackgroundTransparency = 1
  7973. Text.BorderColor3 = BrickColor.White().Color
  7974. Text.BorderSizePixel = 0
  7975. Text.Name = "Ammo"
  7976. Text.Parent = Gui
  7977. Text.Position = UDim2.new(0.15, 0, 0.825, 0)
  7978. Text.Size = UDim2.new(0, -60, 0, 64)
  7979. Text.FontSize = "Size18"
  7980. Text.Text = ""..script.Parent.Ammo.Value.."|"..script.Parent.StoredAmmo.Value..""
  7981. Text.TextColor3 = BrickColor.White().Color
  7982. end
  7983.  
  7984. function onEquippedLocal(mouse)
  7985. vPlayer = game.Players.LocalPlayer
  7986.  
  7987. setUpGui()
  7988. end
  7989.  
  7990. function onUnequippedLocal(mouse)
  7991. if Gui then
  7992. Gui:remove()
  7993. end
  7994.  
  7995. Gui = nil
  7996. Text = nil
  7997. vPlayer = nil
  7998. end
  7999.  
  8000. Tool.Equipped:connect(onEquippedLocal)
  8001. Tool.Unequipped:connect(onUnequippedLocal)
  8002.  
  8003. Ammo.Changed:connect(onChanged)
  8004. Tool.StoredAmmo.Changed:connect(on2Changed)
  8005. end))
  8006. SpecialMesh935.Name = "Larm"
  8007. SpecialMesh935.Parent = Tool0
  8008. SpecialMesh935.MeshId = "http://www.roblox.com/asset/?id=0"
  8009. SpecialMesh935.MeshType = Enum.MeshType.FileMesh
  8010. NumberValue936.Name = "Left"
  8011. NumberValue936.Parent = Tool0
  8012. NumberValue937.Name = "MaxAmmo"
  8013. NumberValue937.Parent = Tool0
  8014. NumberValue937.Value = 200
  8015. SpecialMesh938.Name = "Rarm"
  8016. SpecialMesh938.Parent = Tool0
  8017. SpecialMesh938.MeshId = "http://www.roblox.com/asset/?id=0"
  8018. SpecialMesh938.MeshType = Enum.MeshType.FileMesh
  8019. LocalScript939.Name = "PaintballShooter"
  8020. LocalScript939.Parent = Tool0
  8021. table.insert(cors,sandbox(LocalScript939,function()
  8022. -- Thanks for Meanwhile & XaXa for this script.
  8023. -- Remember this was designed for Meanwhile weapons so any other weapons might not work.
  8024. -- You have no permission to repubish this in you model even if it edited.
  8025. -- If your found then you will be ban from my place.
  8026. -- original Manofthelol Script
  8027.  
  8028. Tool = script.Parent
  8029. local Mouse = true
  8030. local Spin = script.Parent.Spin.Value
  8031. local Heat = script.Parent.Heat.Value
  8032. local chamber = true
  8033. local Player = Tool.Parent
  8034. local Dist = 0.20
  8035. local firing = false
  8036. local enabled = true
  8037. local reloading = false
  8038.  
  8039. rotvalueB1 = 90
  8040. rotvalueB2 = 30
  8041. rotvalueB3 = 330
  8042. rotvalueB4 = 270
  8043. rotvalueB5 = 210
  8044. rotvalueB6 = 150
  8045.  
  8046. local arms = nil
  8047. local torso = nil
  8048. local weld33 = nil -- right arm
  8049. local weld55 = nil -- left arm
  8050. local welds = {}
  8051.  
  8052. function ReloadSequence()
  8053. Tool.S1.Transparency = 1
  8054. wait()
  8055. Tool.S2.Transparency = 1
  8056. wait()
  8057. Tool.S3.Transparency = 1
  8058. wait(.03)
  8059. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0.2, math.rad(-90))
  8060. Tool.S4.Transparency = 1
  8061. wait(.03)
  8062. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0.1, math.rad(-90))
  8063. Tool.S5.Transparency = 1
  8064. wait(.03)
  8065. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  8066. Tool.S6.Transparency = 1
  8067. wait(.03)
  8068. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.1, math.rad(-90))
  8069. Tool.S7.Transparency = 1
  8070. wait(.03)
  8071. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.2, math.rad(-90))
  8072. Tool.S8.Transparency = 1
  8073. wait(.03)
  8074. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.3, math.rad(-90))
  8075. Tool.S9.Transparency = 1
  8076. wait(.03)
  8077. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.4, math.rad(-90))
  8078. Tool.S10.Transparency = 1
  8079. wait(.03)
  8080. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.5, math.rad(-90))
  8081. Tool.S11.Transparency = 1
  8082. wait(.03)
  8083. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.6, math.rad(-90))
  8084. Tool.S12.Transparency = 1
  8085. wait(.03)
  8086. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.7, math.rad(-90))
  8087. local mag = Tool.Mag:clone()
  8088. mag.CFrame = Tool.Mag.CFrame
  8089. mag.CanCollide = false
  8090. mag.Parent = game.Workspace
  8091. Tool.Mag.Transparency = 1
  8092.  
  8093. local mag = Tool.Mag2:clone()
  8094. mag.CFrame = Tool.Mag.CFrame
  8095. mag.CanCollide = false
  8096. mag.Parent = game.Workspace
  8097. Tool.Mag2.Transparency = 1
  8098.  
  8099. local mag = Tool.Mag3:clone()
  8100. mag.CFrame = Tool.Mag.CFrame
  8101. mag.CanCollide = false
  8102. mag.Parent = game.Workspace
  8103. Tool.Mag3.Transparency = 1
  8104.  
  8105. Tool.Handle.M1:play()
  8106. wait(1)
  8107. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.8, math.rad(-90))
  8108. wait(.03)
  8109. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.9, math.rad(-90))
  8110. wait(.2)
  8111. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -1, math.rad(-90))
  8112. Tool.Mag.Transparency = 0
  8113. Tool.Mag2.Transparency = 0
  8114. Tool.Mag3.Transparency = 0
  8115. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0.4)
  8116. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0.4)
  8117. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0.4)
  8118. wait(.03)
  8119. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.9, math.rad(-90))
  8120. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0.3)
  8121. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0.3)
  8122. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0.3)
  8123. wait(.03)
  8124. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.8, math.rad(-90))
  8125. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0.2)
  8126. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0.2)
  8127. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0.2)
  8128. wait(.03)
  8129. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.7, math.rad(-90))
  8130. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0.1)
  8131. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0.1)
  8132. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0.1)
  8133. wait(.03)
  8134. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.6, math.rad(-90))
  8135. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0)
  8136. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0)
  8137. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0)
  8138. Tool.Handle.M2:play()
  8139. wait(.03)
  8140. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(309), -0.61, math.rad(-90))
  8141. wait(.03)
  8142. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(308), -0.62, math.rad(-90))
  8143. wait(.03)
  8144. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(307), -0.63, math.rad(-90))
  8145. wait(.03)
  8146. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(306), -0.64, math.rad(-90))
  8147. wait(.03)
  8148. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(305), -0.65, math.rad(-90))
  8149. wait(.03)
  8150. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(304), -0.66, math.rad(-90))
  8151. wait(.03)
  8152. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(303), -0.67, math.rad(-90))
  8153. wait(.03)
  8154. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(302), -0.68, math.rad(-90))
  8155. wait(.03)
  8156. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(301), -0.69, math.rad(-90))
  8157. Tool.S12.Transparency = 0
  8158. wait(.03)
  8159. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), -0.7, math.rad(-90))
  8160. Tool.S11.Transparency = 0
  8161. wait(.03)
  8162. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(301), -0.69, math.rad(-90))
  8163. Tool.S10.Transparency = 0
  8164. wait(.03)
  8165. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(302), -0.68, math.rad(-90))
  8166. Tool.S9.Transparency = 0
  8167. wait(.03)
  8168. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(303), -0.67, math.rad(-90))
  8169. Tool.S8.Transparency = 0
  8170. wait(.03)
  8171. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(304), -0.66, math.rad(-90))
  8172. Tool.S7.Transparency = 0
  8173. wait(.03)
  8174. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(305), -0.65, math.rad(-90))
  8175. Tool.S6.Transparency = 0
  8176. wait(.03)
  8177. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(306), -0.64, math.rad(-90))
  8178. Tool.S5.Transparency = 0
  8179. wait(.03)
  8180. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(307), -0.63, math.rad(-90))
  8181. Tool.S4.Transparency = 0
  8182. wait(.03)
  8183. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(308), -0.62, math.rad(-90))
  8184. Tool.S3.Transparency = 0
  8185. wait(.03)
  8186. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(309), -0.61, math.rad(-90))
  8187. Tool.S2.Transparency = 0
  8188. wait(.03)
  8189. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.6, math.rad(-90))
  8190. Tool.S1.Transparency = 0
  8191. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.5, math.rad(-90))
  8192. wait(.03)
  8193. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0)
  8194. Tool.Handle.M2:play()
  8195. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.4, math.rad(-90))
  8196. wait(.03)
  8197. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.3, math.rad(-90))
  8198. wait(.03)
  8199. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.2, math.rad(-90))
  8200. wait(.03)
  8201. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.1, math.rad(-90))
  8202. wait(.03)
  8203. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  8204. wait(.5)
  8205. weld33.C1 = CFrame.new(-0.75, -1.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-70), math.rad(-35), 0)
  8206. weld55.C1 = CFrame.new(-0.35, 2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0, math.rad(-90))
  8207. end
  8208.  
  8209. function ReloadSequence2()
  8210. Tool.S1.Transparency = 1
  8211. wait()
  8212. Tool.S2.Transparency = 1
  8213. wait()
  8214. Tool.S3.Transparency = 1
  8215. wait(.03)
  8216. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0.2, math.rad(-90))
  8217. Tool.S4.Transparency = 1
  8218. wait(.03)
  8219. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0.1, math.rad(-90))
  8220. Tool.S5.Transparency = 1
  8221. wait(.03)
  8222. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), 0, math.rad(-90))
  8223. Tool.S6.Transparency = 1
  8224. wait(.03)
  8225. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.1, math.rad(-90))
  8226. Tool.S7.Transparency = 1
  8227. wait(.03)
  8228. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.2, math.rad(-90))
  8229. Tool.S8.Transparency = 1
  8230. wait(.03)
  8231. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.3, math.rad(-90))
  8232. Tool.S9.Transparency = 1
  8233. wait(.03)
  8234. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.4, math.rad(-90))
  8235. Tool.S10.Transparency = 1
  8236. wait(.03)
  8237. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.5, math.rad(-90))
  8238. Tool.S11.Transparency = 1
  8239. wait(.03)
  8240. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.6, math.rad(-90))
  8241. Tool.S12.Transparency = 1
  8242. wait(.03)
  8243. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.7, math.rad(-90))
  8244. local mag = Tool.Mag:clone()
  8245. mag.CFrame = Tool.Mag.CFrame
  8246. mag.CanCollide = false
  8247. mag.Parent = game.Workspace
  8248. Tool.Mag.Transparency = 1
  8249.  
  8250. local mag = Tool.Mag2:clone()
  8251. mag.CFrame = Tool.Mag.CFrame
  8252. mag.CanCollide = false
  8253. mag.Parent = game.Workspace
  8254. Tool.Mag2.Transparency = 1
  8255.  
  8256. local mag = Tool.Mag3:clone()
  8257. mag.CFrame = Tool.Mag.CFrame
  8258. mag.CanCollide = false
  8259. mag.Parent = game.Workspace
  8260. Tool.Mag3.Transparency = 1
  8261.  
  8262. Tool.Handle.M1:play()
  8263. wait(1)
  8264. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.8, math.rad(-90))
  8265. wait(.03)
  8266. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.9, math.rad(-90))
  8267. wait(.2)
  8268. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -1, math.rad(-90))
  8269. Tool.Mag.Transparency = 0
  8270. Tool.Mag2.Transparency = 0
  8271. Tool.Mag3.Transparency = 0
  8272. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0.4)
  8273. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0.4)
  8274. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0.4)
  8275. wait(.03)
  8276. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.9, math.rad(-90))
  8277. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0.3)
  8278. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0.3)
  8279. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0.3)
  8280. wait(.03)
  8281. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.8, math.rad(-90))
  8282. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0.2)
  8283. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0.2)
  8284. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0.2)
  8285. wait(.03)
  8286. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.7, math.rad(-90))
  8287. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0.1)
  8288. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0.1)
  8289. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0.1)
  8290. wait(.03)
  8291. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.6, math.rad(-90))
  8292. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0)
  8293. Tool.Mag2.Mesh.Offset = Vector3.new(0, 0, 0)
  8294. Tool.Mag3.Mesh.Offset = Vector3.new(0, 0, 0)
  8295. Tool.Handle.M2:play()
  8296. wait(.03)
  8297. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(309), -0.61, math.rad(-90))
  8298. wait(.03)
  8299. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(308), -0.62, math.rad(-90))
  8300. wait(.03)
  8301. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(307), -0.63, math.rad(-90))
  8302. wait(.03)
  8303. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(306), -0.64, math.rad(-90))
  8304. wait(.03)
  8305. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(305), -0.65, math.rad(-90))
  8306. wait(.03)
  8307. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(304), -0.66, math.rad(-90))
  8308. wait(.03)
  8309. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(303), -0.67, math.rad(-90))
  8310. wait(.03)
  8311. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(302), -0.68, math.rad(-90))
  8312. wait(.03)
  8313. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(301), -0.69, math.rad(-90))
  8314. Tool.S12.Transparency = 0
  8315. wait(.03)
  8316. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), -0.7, math.rad(-90))
  8317. Tool.S11.Transparency = 0
  8318. wait(.03)
  8319. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(301), -0.69, math.rad(-90))
  8320. Tool.S10.Transparency = 0
  8321. wait(.03)
  8322. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(302), -0.68, math.rad(-90))
  8323. Tool.S9.Transparency = 0
  8324. wait(.03)
  8325. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(303), -0.67, math.rad(-90))
  8326. Tool.S8.Transparency = 0
  8327. wait(.03)
  8328. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(304), -0.66, math.rad(-90))
  8329. Tool.S7.Transparency = 0
  8330. wait(.03)
  8331. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(305), -0.65, math.rad(-90))
  8332. Tool.S6.Transparency = 0
  8333. wait(.03)
  8334. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(306), -0.64, math.rad(-90))
  8335. Tool.S5.Transparency = 0
  8336. wait(.03)
  8337. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(307), -0.63, math.rad(-90))
  8338. Tool.S4.Transparency = 0
  8339. wait(.03)
  8340. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(308), -0.62, math.rad(-90))
  8341. Tool.S3.Transparency = 0
  8342. wait(.03)
  8343. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(309), -0.61, math.rad(-90))
  8344. Tool.S2.Transparency = 0
  8345. wait(.03)
  8346. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.6, math.rad(-90))
  8347. Tool.S1.Transparency = 0
  8348. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.5, math.rad(-90))
  8349. wait(.03)
  8350. Tool.Mag.Mesh.Offset = Vector3.new(0, 0, 0)
  8351. Tool.Handle.M2:play()
  8352. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.3, math.rad(-90))
  8353. wait(.5)
  8354. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.4, math.rad(-90))
  8355. wait(.03)
  8356. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.5, math.rad(-90))
  8357. wait(.03)
  8358. weld55.C1 = CFrame.new(-0.35, 1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(310), -0.6, math.rad(-90))
  8359. Tool.Handle.Close:play()
  8360. Tool.Handle.Engine:play()
  8361. wait(.03)
  8362. weld55.C1 = CFrame.new(-0.35, 1.1, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(308), -0.5, math.rad(-90))
  8363. wait(.03)
  8364. weld55.C1 = CFrame.new(-0.35, 1.2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(306), -0.4, math.rad(-90))
  8365. wait(.03)
  8366. weld55.C1 = CFrame.new(-0.35, 1.3, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(304), -0.3, math.rad(-90))
  8367. wait(.03)
  8368. weld55.C1 = CFrame.new(-0.35, 1.4, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(302), -0.2, math.rad(-90))
  8369. wait(.03)
  8370. weld55.C1 = CFrame.new(-0.35, 1.5, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(300), 0.1, math.rad(-90))
  8371. wait(.03)
  8372. weld55.C1 = CFrame.new(-0.35, 1.6, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(298), 0, math.rad(-90))
  8373. wait(.03)
  8374. weld55.C1 = CFrame.new(-0.35, 1.7, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(296), 0, math.rad(-90))
  8375. wait(.03)
  8376. weld55.C1 = CFrame.new(-0.35, 1.8, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0, math.rad(-90))
  8377. wait(.03)
  8378. weld55.C1 = CFrame.new(-0.35, 1.9, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0, math.rad(-90))
  8379. wait(.03)
  8380. weld33.C1 = CFrame.new(-0.75, -1.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-70), math.rad(-35), 0)
  8381. weld55.C1 = CFrame.new(-0.35, 2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0, math.rad(-90))
  8382. end
  8383.  
  8384. function Reload()
  8385. Tool.Left.Value = Tool.Ammo.Value
  8386. if script.Parent.Ammo.Value < script.Parent.MaxAmmo.Value and reloading == false and script.Parent.StoredAmmo.Value >= 1 then
  8387. reloading = true
  8388. script.Parent.Ammo.Value = 0
  8389. ReloadChoose()
  8390. script.Parent.StoredAmmo.Value = script.Parent.StoredAmmo.Value + script.Parent.Left.Value
  8391. if script.Parent.StoredAmmo.Value >= script.Parent.MaxAmmo.Value then
  8392. script.Parent.StoredAmmo.Value = script.Parent.StoredAmmo.Value - script.Parent.MaxAmmo.Value
  8393. script.Parent.Ammo.Value = script.Parent.MaxAmmo.Value
  8394. script.Parent.Recoil.Value = 5
  8395. elseif script.Parent.StoredAmmo.Value < script.Parent.MaxAmmo.Value and script.Parent.StoredAmmo.Value >= 1 then
  8396. script.Parent.Ammo.Value = script.Parent.StoredAmmo.Value
  8397. script.Parent.StoredAmmo.Value = 0
  8398. script.Parent.Recoil.Value = 5
  8399. end
  8400. reloading = false
  8401. end
  8402. end
  8403.  
  8404. function ReloadChoose()
  8405. if script.Parent.Left.Value == 0 then
  8406. ReloadSequence2()
  8407. elseif script.Parent.Left.Value >= 1 then
  8408. ReloadSequence()
  8409. end
  8410. end
  8411.  
  8412. function Equip(mouse)
  8413. wait(.1)
  8414.  
  8415. print("Equipped")
  8416. if game.Players.LocalPlayer ~= nil then
  8417. Gui = Tool.OverheatBar:clone()
  8418. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  8419. end
  8420.  
  8421. wait(0.01)
  8422. arms = {Tool.Parent:FindFirstChild("Left Arm"), Tool.Parent:FindFirstChild("Right Arm")}
  8423. torso = Tool.Parent:FindFirstChild("Torso")
  8424. if arms ~= nil and torso ~= nil then
  8425. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  8426. if sh ~= nil then
  8427. local yes = true
  8428. if yes then
  8429. yes = false
  8430. sh[1].Part1 = nil
  8431. sh[2].Part1 = nil
  8432. falsearm1 = arms[1]:clone()
  8433. local mesh1 = Tool.Larm:clone()
  8434. mesh1.Parent = falsearm1
  8435. local armweld1 = Instance.new("Weld")
  8436. falsearm1.BrickColor = BrickColor.new("Light orange") -- this is the arm colour incase u want to change it
  8437. falsearm1.Parent = Tool
  8438. armweld1.Parent = falsearm1
  8439. armweld1.Part0 = falsearm1
  8440. armweld1.Part1 = arms[1]
  8441. falsearm2 = arms[2]:clone()
  8442. local mesh2 = Tool.Rarm:clone()
  8443. mesh2.Parent = falsearm2
  8444. local armweld2 = Instance.new("Weld")
  8445. falsearm2.BrickColor = BrickColor.new("Light orange") -- this is the 2nd arm colour incase u want to change it
  8446. falsearm2.Parent = Tool
  8447. armweld2.Parent = falsearm2
  8448. armweld2.Part0 = falsearm2
  8449. armweld2.Part1 = arms[2]
  8450. local weld1 = Instance.new("Weld") -- left arm
  8451. weld55 = weld1
  8452. weld1.Part0 = torso
  8453. weld1.Parent = torso
  8454. weld1.Part1 = arms[1]
  8455. weld1.C1 = CFrame.new(-0.35, 2, 0.6) * CFrame.fromEulerAnglesXYZ(math.rad(295), 0, math.rad(-90))
  8456. welds[1] = weld1
  8457. local weld2 = Instance.new("Weld") -- right arm
  8458. weld33 = weld2
  8459. weld2.Part0 = torso
  8460. weld2.Parent = torso
  8461. weld2.Part1 = arms[2]
  8462. weld2.C1 = CFrame.new(-0.75, -1.2, 0.35) * CFrame.fromEulerAnglesXYZ(math.rad(-70), math.rad(-35), 0)
  8463. welds[2] = weld2
  8464. end
  8465. else
  8466. print("sh")
  8467. end
  8468. else
  8469. print("arms")
  8470. end
  8471. end
  8472.  
  8473. function Unequip(mouse)
  8474. Gui:Remove()
  8475. if arms ~= nil and torso ~= nil then
  8476. local sh = {torso:FindFirstChild("Left Shoulder"), torso:FindFirstChild("Right Shoulder")}
  8477. if sh ~= nil then
  8478. local yes = true
  8479. if yes then
  8480. yes = false
  8481. sh[1].Part1 = arms[1]
  8482. sh[2].Part1 = arms[2]
  8483. welds[1].Parent = nil
  8484. welds[2].Parent = nil
  8485. falsearm1:remove()
  8486. falsearm2:remove()
  8487. end
  8488. else
  8489. print("sh")
  8490. end
  8491. else
  8492. print("arms")
  8493. end
  8494. end
  8495.  
  8496.  
  8497.  
  8498.  
  8499. colors = {199}
  8500.  
  8501. local pellet = Instance.new("Part")
  8502. pellet.Name = "Bullet"
  8503. pellet.Shape = 1
  8504. pellet.formFactor = 3
  8505. pellet.BrickColor = BrickColor.new(24)
  8506. pellet.Size = Vector3.new(.2,.2,.2)
  8507. pellet.Locked = true
  8508.  
  8509.  
  8510. Tool.Equipped:connect(function(mouse)
  8511.  
  8512. function Shelling()
  8513. local ammo = script.Parent.Ammo
  8514. if ammo.Value == 12 then
  8515. Tool.S12.Transparency = 1
  8516. end
  8517. if ammo.Value == 11 then
  8518. Tool.S11.Transparency = 1
  8519. Tool.S12.Transparency = 1
  8520. end
  8521. if ammo.Value == 10 then
  8522. Tool.S10.Transparency = 1
  8523. Tool.S11.Transparency = 1
  8524. Tool.S12.Transparency = 1
  8525. end
  8526. if ammo.Value == 9 then
  8527. Tool.S9.Transparency = 1
  8528. Tool.S10.Transparency = 1
  8529. Tool.S11.Transparency = 1
  8530. Tool.S12.Transparency = 1
  8531. end
  8532. if ammo.Value == 8 then
  8533. Tool.S8.Transparency = 1
  8534. Tool.S9.Transparency = 1
  8535. Tool.S10.Transparency = 1
  8536. Tool.S11.Transparency = 1
  8537. Tool.S12.Transparency = 1
  8538. end
  8539. if ammo.Value == 7 then
  8540. Tool.S7.Transparency = 1
  8541. Tool.S8.Transparency = 1
  8542. Tool.S9.Transparency = 1
  8543. Tool.S10.Transparency = 1
  8544. Tool.S11.Transparency = 1
  8545. Tool.S12.Transparency = 1
  8546. end
  8547. if ammo.Value == 6 then
  8548. Tool.S6.Transparency = 1
  8549. Tool.S7.Transparency = 1
  8550. Tool.S8.Transparency = 1
  8551. Tool.S9.Transparency = 1
  8552. Tool.S10.Transparency = 1
  8553. Tool.S11.Transparency = 1
  8554. Tool.S12.Transparency = 1
  8555. end
  8556. if ammo.Value == 5 then
  8557. Tool.S5.Transparency = 1
  8558. Tool.S6.Transparency = 1
  8559. Tool.S7.Transparency = 1
  8560. Tool.S8.Transparency = 1
  8561. Tool.S9.Transparency = 1
  8562. Tool.S10.Transparency = 1
  8563. Tool.S11.Transparency = 1
  8564. Tool.S12.Transparency = 1
  8565. end
  8566. if ammo.Value == 4 then
  8567. Tool.S4.Transparency = 1
  8568. Tool.S5.Transparency = 1
  8569. Tool.S6.Transparency = 1
  8570. Tool.S7.Transparency = 1
  8571. Tool.S8.Transparency = 1
  8572. Tool.S9.Transparency = 1
  8573. Tool.S10.Transparency = 1
  8574. Tool.S11.Transparency = 1
  8575. Tool.S12.Transparency = 1
  8576. end
  8577. if ammo.Value == 3 then
  8578. Tool.S3.Transparency = 1
  8579. Tool.S4.Transparency = 1
  8580. Tool.S5.Transparency = 1
  8581. Tool.S6.Transparency = 1
  8582. Tool.S7.Transparency = 1
  8583. Tool.S8.Transparency = 1
  8584. Tool.S9.Transparency = 1
  8585. Tool.S10.Transparency = 1
  8586. Tool.S11.Transparency = 1
  8587. Tool.S12.Transparency = 1
  8588. end
  8589. if ammo.Value == 2 then
  8590. Tool.S2.Transparency = 1
  8591. Tool.S3.Transparency = 1
  8592. Tool.S4.Transparency = 1
  8593. Tool.S5.Transparency = 1
  8594. Tool.S6.Transparency = 1
  8595. Tool.S7.Transparency = 1
  8596. Tool.S8.Transparency = 1
  8597. Tool.S9.Transparency = 1
  8598. Tool.S10.Transparency = 1
  8599. Tool.S11.Transparency = 1
  8600. Tool.S12.Transparency = 1
  8601. end
  8602. if ammo.Value == 1 then
  8603. Tool.S1.Transparency = 1
  8604. Tool.S2.Transparency = 1
  8605. Tool.S3.Transparency = 1
  8606. Tool.S4.Transparency = 1
  8607. Tool.S5.Transparency = 1
  8608. Tool.S6.Transparency = 1
  8609. Tool.S7.Transparency = 1
  8610. Tool.S8.Transparency = 1
  8611. Tool.S9.Transparency = 1
  8612. Tool.S10.Transparency = 1
  8613. Tool.S11.Transparency = 1
  8614. Tool.S12.Transparency = 1
  8615. end
  8616. end
  8617.  
  8618. function fire(v)
  8619. if enabled == true then
  8620. Spin = Spin + 1
  8621. if Spin < 40 then
  8622. Heat = Heat + 0.2
  8623. return
  8624. else
  8625. end
  8626. if Spin >= 45 then
  8627. Spin = 45
  8628. end
  8629. Heat = Heat + 2
  8630. firing = true
  8631. local ammo = script.Parent.Ammo
  8632. if ammo.Value >= 1 then
  8633. ammo.Value = ammo.Value - 1
  8634.  
  8635. script.Fire:Play()
  8636.  
  8637. local vCharacter = Tool.Parent
  8638. local vPlayer = game.Players:playerFromCharacter(vCharacter)
  8639.  
  8640. local missile = Instance.new("Part")
  8641.  
  8642.  
  8643.  
  8644. local spawnPos = vCharacter.PrimaryPart.Position
  8645.  
  8646.  
  8647.  
  8648. spawnPos = spawnPos + (v * 8)
  8649.  
  8650. missile.Position = spawnPos
  8651. missile.Size = Vector3.new(1,1,1)
  8652. missile.Velocity = v * 500
  8653. missile.BrickColor = BrickColor.new(24)
  8654. missile.Shape = 0
  8655. missile.BottomSurface = 0
  8656. missile.TopSurface = 0
  8657. missile.Name = "Bullet"
  8658. missile.Elasticity = 0
  8659. missile.Reflectance = .3
  8660. missile.Friction = .9
  8661. missile.CanCollide = false
  8662.  
  8663. local force = Instance.new("BodyForce")
  8664. force.force = Vector3.new(math.random(-5, 5),math.random(95, 105),math.random(-5, 5))
  8665. force.Parent = missile
  8666.  
  8667. local mesh = Instance.new("SpecialMesh")
  8668. mesh.Scale = Vector3.new(.1,.1,.1)
  8669. mesh.MeshType = "Sphere"
  8670. mesh.Parent = missile
  8671.  
  8672. local new_script = script.Parent.Bullet:clone()
  8673. new_script.Disabled = false
  8674. new_script.Parent = missile
  8675.  
  8676. local creator_tag = Instance.new("ObjectValue")
  8677. creator_tag.Value = vPlayer
  8678. creator_tag.Name = "creator"
  8679. creator_tag.Parent = missile
  8680.  
  8681. missile.Parent = game.Workspace
  8682.  
  8683. cam = game.Workspace.CurrentCamera
  8684. local cam_rot = cam.CoordinateFrame - cam.CoordinateFrame.p
  8685. local cam_scroll = (cam.CoordinateFrame.p - cam.Focus.p).magnitude
  8686. local ncf = CFrame.new(cam.Focus.p)*cam_rot*CFrame.fromEulerAnglesXYZ(0.01, 0, 0)
  8687. cam.CoordinateFrame = ncf*CFrame.new(0, 0, cam_scroll)
  8688. Tool.Flash.Transparency = .5
  8689. Tool.Flash.Smoke.Enabled = true
  8690. wait()
  8691. Tool.Flash.Transparency = 1
  8692. Tool.Flash.Smoke.Enabled = false
  8693. Shelling()
  8694. elseif ammo.Value == 0 then
  8695. Reload()
  8696. end
  8697. elseif enabled == false then
  8698. end
  8699.  
  8700.  
  8701.  
  8702. end
  8703. end)
  8704.  
  8705. function KeyDownFunctions(key)
  8706. if key == "r" then
  8707. Reload()
  8708. end
  8709. end
  8710.  
  8711. function computeDirection(pos)
  8712. local invrtDir = 1 / math.sqrt((pos.magnitude * pos.magnitude))
  8713. local dir = Vector3.new(pos.x * invrtDir, pos.y * invrtDir, pos.z * invrtDir)
  8714. return dir
  8715. end
  8716.  
  8717.  
  8718. function check(en)
  8719. if not Tool.Enabled then
  8720. return false
  8721. end
  8722. if Tool.Enabled then
  8723. return true
  8724. end
  8725. if not enabled then
  8726. return false
  8727. end
  8728. if enabled then
  8729. return true
  8730. end
  8731. end
  8732.  
  8733.  
  8734. function onActivated()
  8735.  
  8736. if (not Tool.Enabled) or (not enabled) then
  8737. return
  8738. end
  8739.  
  8740. --Tool.Enabled = false
  8741.  
  8742. local character = Tool.Parent;
  8743. local humanoid = character.Humanoid
  8744. if humanoid == nil or humanoid.Health <= 0 then
  8745. Tool:Remove()
  8746. return
  8747. end
  8748.  
  8749.  
  8750.  
  8751. local targetPos = humanoid.TargetPoint
  8752. local lookAt = (targetPos - character.Head.Position).unit
  8753.  
  8754. if (check()) then
  8755.  
  8756. end
  8757. fire(lookAt)
  8758. wait()
  8759. onActivated()
  8760.  
  8761. return
  8762. --Tool.Enabled = true
  8763. end
  8764.  
  8765.  
  8766. function onButton1Up(mouse)
  8767. firing = false
  8768. enabled = false
  8769. Tool.Enabled = false
  8770. wait(.2)
  8771. firing = false
  8772. enabled = true
  8773. Tool.Enabled = true
  8774.  
  8775. end
  8776.  
  8777. function onEquippedLocal(mouse)
  8778.  
  8779. if mouse == nil then
  8780. print("Mouse not found")
  8781. return
  8782. end
  8783.  
  8784. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  8785. mouse.Button1Up:connect(function() onButton1Up(mouse)end)
  8786. mouse.KeyDown:connect(KeyDownFunctions)
  8787. end
  8788.  
  8789. function onEquippedLocal2(mouse)
  8790. wait(.2)
  8791. while Mouse == true do
  8792.  
  8793. Spin = Spin - .5
  8794. if not firing then
  8795. Heat = Heat - .75
  8796. end
  8797.  
  8798. mouse.Icon = "http://www.roblox.com/asset/?id=45003129"
  8799.  
  8800. --Spin Limit
  8801. if Spin <= 0 then
  8802. Spin = 0
  8803. end
  8804. if Spin > 10 then
  8805. cam = game.Workspace.CurrentCamera
  8806. local cam_rot = cam.CoordinateFrame - cam.CoordinateFrame.p
  8807. local cam_scroll = (cam.CoordinateFrame.p - cam.Focus.p).magnitude
  8808. local ncf = CFrame.new(cam.Focus.p)*cam_rot*CFrame.fromEulerAnglesXYZ(0.001, 0, 0)
  8809. cam.CoordinateFrame = ncf*CFrame.new(0, 0, cam_scroll)
  8810. script.Ding.Pitch = .6 + (.3 * (Spin/40))
  8811. script.Ding:Play()
  8812. end
  8813. if Spin > 45 then
  8814. Spin = 45
  8815. end
  8816.  
  8817. --Heat Limit
  8818. if Heat <= 0 then
  8819. enabled = true
  8820. Heat = 0
  8821. end
  8822.  
  8823. if Heat >= 150 then
  8824. enabled = false
  8825. Heat = 150
  8826. end
  8827.  
  8828. rotvalueB1 = rotvalueB1 + Spin
  8829. rotvalueB2 = rotvalueB2 + Spin
  8830. rotvalueB3 = rotvalueB3 + Spin
  8831. rotvalueB4 = rotvalueB4 + Spin
  8832. rotvalueB5 = rotvalueB5 + Spin
  8833. rotvalueB6 = rotvalueB6 + Spin
  8834.  
  8835. Tool.B1.Mesh.Offset = Vector3.new(math.sin(math.rad(rotvalueB1)) * Dist, 0, math.cos(math.rad(rotvalueB1)) * Dist)
  8836. Tool.B2.Mesh.Offset = Vector3.new(math.sin(math.rad(rotvalueB2)) * Dist, 0, math.cos(math.rad(rotvalueB2)) * Dist)
  8837. Tool.B3.Mesh.Offset = Vector3.new(math.sin(math.rad(rotvalueB3)) * Dist, 0, math.cos(math.rad(rotvalueB3)) * Dist)
  8838. Tool.B4.Mesh.Offset = Vector3.new(math.sin(math.rad(rotvalueB4)) * Dist, 0, math.cos(math.rad(rotvalueB4)) * Dist)
  8839. Tool.B5.Mesh.Offset = Vector3.new(math.sin(math.rad(rotvalueB5)) * Dist, 0, math.cos(math.rad(rotvalueB5)) * Dist)
  8840. Tool.B6.Mesh.Offset = Vector3.new(math.sin(math.rad(rotvalueB6)) * Dist, 0, math.cos(math.rad(rotvalueB6)) * Dist)
  8841.  
  8842. game.Players.LocalPlayer.PlayerGui.OverheatBar.HeatRed.Size = UDim2.new(0, Heat, 0, 10)
  8843. wait()
  8844.  
  8845. end
  8846. end
  8847.  
  8848.  
  8849.  
  8850. Tool.Equipped:connect(onEquippedLocal)
  8851. Tool.Equipped:connect(onEquippedLocal2)
  8852. Tool.Equipped:connect(Equip)
  8853. Tool.Unequipped:connect(Unequip)
  8854. script.Parent.Activated:connect(onActivated)
  8855. script.Parent.Equipped:connect(equip1)
  8856. script.Parent.Unequipped:connect(unequip1)
  8857. end))
  8858. Sound940.Name = "Ding"
  8859. Sound940.Parent = LocalScript939
  8860. Sound940.Pitch = 0.67874997854233
  8861. Sound940.PlaybackSpeed = 0.67874997854233
  8862. Sound940.SoundId = "http://www.roblox.com/asset/?id=2766581"
  8863. Sound940.Volume = 1
  8864. Sound941.Name = "Fire"
  8865. Sound941.Parent = LocalScript939
  8866. Sound941.Pitch = 2
  8867. Sound941.PlaybackSpeed = 2
  8868. Sound941.SoundId = "rbxasset://sounds//paintball.wav"
  8869. Sound941.Volume = 1
  8870. NumberValue942.Name = "Spin"
  8871. NumberValue942.Parent = Tool0
  8872. NumberValue943.Name = "StoredAmmo"
  8873. NumberValue943.Parent = Tool0
  8874. NumberValue943.Value = 500
  8875. LocalScript944.Name = "BackupWeld"
  8876. LocalScript944.Parent = Tool0
  8877. table.insert(cors,sandbox(LocalScript944,function()
  8878. function Weld(x,y)
  8879. local W = Instance.new("Weld")
  8880. W.Part0 = x
  8881. W.Part1 = y
  8882. local CJ = CFrame.new(x.Position)
  8883. local C0 = x.CFrame:inverse()*CJ
  8884. local C1 = y.CFrame:inverse()*CJ
  8885. W.C0 = C0
  8886. W.C1 = C1
  8887. W.Parent = x
  8888. end
  8889.  
  8890. function Get(A)
  8891. if A.className == "Part" then
  8892. Weld(script.Parent.Handle, A)
  8893. A.Anchored = false
  8894. else
  8895. local C = A:GetChildren()
  8896. for i=1, #C do
  8897. Get(C[i])
  8898. end
  8899. end
  8900. end
  8901.  
  8902. function Finale()
  8903. Get(script.Parent)
  8904. end
  8905.  
  8906. script.Parent.Equipped:connect(Finale)
  8907. script.Parent.Unequipped:connect(Finale)
  8908. Finale()
  8909. end))
  8910. LocalScript945.Name = "BackupWeld"
  8911. LocalScript945.Parent = Tool0
  8912. table.insert(cors,sandbox(LocalScript945,function()
  8913. function Weld(x,y)
  8914. local W = Instance.new("Weld")
  8915. W.Part0 = x
  8916. W.Part1 = y
  8917. local CJ = CFrame.new(x.Position)
  8918. local C0 = x.CFrame:inverse()*CJ
  8919. local C1 = y.CFrame:inverse()*CJ
  8920. W.C0 = C0
  8921. W.C1 = C1
  8922. W.Parent = x
  8923. end
  8924.  
  8925. function Get(A)
  8926. if A.className == "Part" then
  8927. Weld(script.Parent.Handle, A)
  8928. A.Anchored = false
  8929. else
  8930. local C = A:GetChildren()
  8931. for i=1, #C do
  8932. Get(C[i])
  8933. end
  8934. end
  8935. end
  8936.  
  8937. function Finale()
  8938. Get(script.Parent)
  8939. end
  8940.  
  8941. script.Parent.Equipped:connect(Finale)
  8942. script.Parent.Unequipped:connect(Finale)
  8943. Finale()
  8944. end))
  8945. LocalScript946.Name = "BackupWeld"
  8946. LocalScript946.Parent = Tool0
  8947. table.insert(cors,sandbox(LocalScript946,function()
  8948. function Weld(x,y)
  8949. local W = Instance.new("Weld")
  8950. W.Part0 = x
  8951. W.Part1 = y
  8952. local CJ = CFrame.new(x.Position)
  8953. local C0 = x.CFrame:inverse()*CJ
  8954. local C1 = y.CFrame:inverse()*CJ
  8955. W.C0 = C0
  8956. W.C1 = C1
  8957. W.Parent = x
  8958. end
  8959.  
  8960. function Get(A)
  8961. if A.className == "Part" then
  8962. Weld(script.Parent.Handle, A)
  8963. A.Anchored = false
  8964. else
  8965. local C = A:GetChildren()
  8966. for i=1, #C do
  8967. Get(C[i])
  8968. end
  8969. end
  8970. end
  8971.  
  8972. function Finale()
  8973. Get(script.Parent)
  8974. end
  8975.  
  8976. script.Parent.Equipped:connect(Finale)
  8977. script.Parent.Unequipped:connect(Finale)
  8978. Finale()
  8979. end))
  8980. LocalScript947.Name = "Crouch"
  8981. LocalScript947.Parent = Tool0
  8982. table.insert(cors,sandbox(LocalScript947,function()
  8983. on = 0
  8984. Tool = script.Parent
  8985. welds = {}
  8986. sh = {}
  8987. arms = nil
  8988. torso = nil
  8989. f = nil
  8990. function Crouch(ison)
  8991. if arms == nil and torso == nil then
  8992. arms = {Tool.Parent:FindFirstChild("Left Leg"), Tool.Parent:FindFirstChild("Right Leg")}
  8993. torso = Tool.Parent:FindFirstChild("Torso")
  8994. end
  8995. if arms ~= nil and torso ~= nil then
  8996. sh = {torso:FindFirstChild("Left Hip"), torso:FindFirstChild("Right Hip")}
  8997. if sh ~= nil then
  8998. local yes = true
  8999. if yes then
  9000. yes = false
  9001. if ison == 1 then
  9002. sh[1].Part1 = nil
  9003. sh[2].Part1 = nil
  9004. local weld1 = Instance.new("Weld")
  9005. weld1.Part0 = torso
  9006. weld1.Parent = torso
  9007. weld1.Part1 = arms[1]
  9008. weld1.C1 = CFrame.new(-0.5, 0.75, 1)
  9009. arms[1].Name = "Left Leg"
  9010. arms[1].CanCollide = true
  9011. welds[1] = weld1
  9012. -------------------------------------------
  9013. local weld2 = Instance.new("Weld")
  9014. weld2.Part0 = torso
  9015. weld2.Parent = torso
  9016. weld2.Part1 = arms[2]
  9017. weld2.C1 = CFrame.new(0.5,0.495,1.25) * CFrame.fromEulerAnglesXYZ(math.rad(90),0,0)
  9018. arms[2].Name = "Right Leg"
  9019. arms[2].CanCollide = true
  9020. welds[2] = weld2
  9021. ---------------------------------
  9022. local force = Instance.new("BodyForce")
  9023. force.Parent = torso
  9024. f = force
  9025. Tool.Parent.Humanoid.WalkSpeed = 0
  9026. wait(0.01)
  9027. elseif ison == 0 then
  9028. if arms then
  9029. sh[1].Part1 = arms[1]
  9030. sh[2].Part1 = arms[2]
  9031. f.Parent = nil
  9032. arms[2].Name = "Right Leg"
  9033. arms[1].Name = "Left Leg"
  9034. welds[1].Parent = nil
  9035. welds[2].Parent = nil
  9036. Tool.Parent.Humanoid.WalkSpeed = 16
  9037. end
  9038. end
  9039. --
  9040. end
  9041. else
  9042. print("sh")
  9043. end
  9044. else
  9045. print("arms")
  9046. end
  9047. end
  9048. function Key(key)
  9049. if key then
  9050. key = string.lower(key)
  9051. if (key=="c") then
  9052. if on == 1 then
  9053. on = 0
  9054. elseif on == 0 then
  9055. on = 1
  9056. end
  9057. Crouch(on)
  9058. end
  9059. end
  9060. end
  9061. function Equip(mouse)
  9062. mouse.KeyDown:connect(Key)
  9063. end
  9064. script.Parent.Equipped:connect(Equip)
  9065.  
  9066.  
  9067. end))
  9068. ScreenGui948.Name = "OverheatBar"
  9069. ScreenGui948.Parent = Tool0
  9070. Frame949.Name = "HeatRed"
  9071. Frame949.Parent = ScreenGui948
  9072. Frame949.Position = UDim2.new(0, 15, 0, 15)
  9073. Frame949.Size = UDim2.new(0, 100, 0, 10)
  9074. Frame949.BackgroundColor = BrickColor.new("Really red")
  9075. Frame949.BackgroundColor3 = Color3.new(1, 0, 0)
  9076. Frame949.ZIndex = 3
  9077. Frame950.Name = "HeatBack"
  9078. Frame950.Parent = ScreenGui948
  9079. Frame950.Position = UDim2.new(0, 15, 0, 15)
  9080. Frame950.Size = UDim2.new(0, 150, 0, 10)
  9081. Frame950.BackgroundColor = BrickColor.new("Institutional white")
  9082. Frame950.BackgroundColor3 = Color3.new(1, 1, 1)
  9083. Frame950.BorderColor = BrickColor.new("Really black")
  9084. Frame950.BorderColor3 = Color3.new(0, 0, 0)
  9085. Frame950.ZIndex = 2
  9086. TextLabel951.Name = "HeatLabel"
  9087. TextLabel951.Parent = Frame950
  9088. TextLabel951.Position = UDim2.new(0, 75, 0, 5)
  9089. TextLabel951.BackgroundColor = BrickColor.new("Really black")
  9090. TextLabel951.BackgroundColor3 = Color3.new(0, 0, 0)
  9091. TextLabel951.BorderColor = BrickColor.new("Really black")
  9092. TextLabel951.BorderColor3 = Color3.new(0, 0, 0)
  9093. TextLabel951.ZIndex = 4
  9094. TextLabel951.Text = "Heat"
  9095. Frame952.Name = "HeatFrame"
  9096. Frame952.Parent = ScreenGui948
  9097. Frame952.Position = UDim2.new(0, 10, 0, 10)
  9098. Frame952.Size = UDim2.new(0, 160, 0, 20)
  9099. NumberValue953.Name = "Heat"
  9100. NumberValue953.Parent = Tool0
  9101. NumberValue954.Name = "Recoil"
  9102. NumberValue954.Parent = Tool0
  9103. Script955.Parent = NumberValue954
  9104. table.insert(cors,sandbox(Script955,function()
  9105. while true do
  9106. wait(.3)
  9107. if script.Parent.Value > 0 then
  9108. script.Parent.Value = script.Parent.Value - 0
  9109. end
  9110. end
  9111.  
  9112. end))
  9113. for i,v in pairs(mas:GetChildren()) do
  9114. v.Parent = game:GetService("Players").LocalPlayer.Backpack
  9115. pcall(function() v:MakeJoints() end)
  9116. end
  9117. mas:Destroy()
  9118. for i,v in pairs(cors) do
  9119. spawn(function()
  9120. pcall(v)
  9121. end)
  9122. end
  9123.  
  9124. function sandbox(var,func)
  9125. local env = getfenv(func)
  9126. local newenv = setmetatable({},{
  9127. __index = function(self,k)
  9128. if k=="script" then
  9129. return var
  9130. else
  9131. return env[k]
  9132. end
  9133. end,
  9134. })
  9135. setfenv(func,newenv)
  9136. return func
  9137. end
  9138. cors = {}
  9139. mas = Instance.new("Model",game:GetService("Lighting"))
  9140. Tool0 = Instance.new("Tool")
  9141. Part1 = Instance.new("Part")
  9142. SpecialMesh2 = Instance.new("SpecialMesh")
  9143. Sound3 = Instance.new("Sound")
  9144. LocalScript4 = Instance.new("LocalScript")
  9145. Script5 = Instance.new("Script")
  9146. Sound6 = Instance.new("Sound")
  9147. Sound7 = Instance.new("Sound")
  9148. Script8 = Instance.new("Script")
  9149. LocalScript9 = Instance.new("LocalScript")
  9150. Animation10 = Instance.new("Animation")
  9151. LocalScript11 = Instance.new("LocalScript")
  9152. Tool0.Name = "RocketLauncher"
  9153. Tool0.Parent = mas
  9154. Tool0.TextureId = "http://www.roblox.com/asset/?id=94689922"
  9155. Tool0.Grip = CFrame.new(0.0500000007, -0.600000024, -1, 1, 0, 0, 0, 1, -0, -0, 0, 1)
  9156. Tool0.GripPos = Vector3.new(0.0500000007, -0.600000024, -1)
  9157. Tool0.ToolTip = "Rocket Launcher"
  9158. Part1.Name = "Handle"
  9159. Part1.Parent = Tool0
  9160. Part1.CFrame = CFrame.new(57.6000023, 19.6000004, -156.800003, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  9161. Part1.Position = Vector3.new(57.6000023, 19.6000004, -156.800003)
  9162. Part1.Size = Vector3.new(0.839999974, 1.14999998, 3.55000019)
  9163. Part1.BottomSurface = Enum.SurfaceType.Smooth
  9164. Part1.TopSurface = Enum.SurfaceType.Smooth
  9165. Part1.FormFactor = Enum.FormFactor.Custom
  9166. Part1.formFactor = Enum.FormFactor.Custom
  9167. SpecialMesh2.Parent = Part1
  9168. SpecialMesh2.MeshId = "http://www.roblox.com/asset/?id=94690054"
  9169. SpecialMesh2.TextureId = "http://www.roblox.com/asset/?id=94689966"
  9170. SpecialMesh2.MeshType = Enum.MeshType.FileMesh
  9171. Sound3.Name = "ReloadSound"
  9172. Sound3.Parent = Part1
  9173. Sound3.SoundId = "http://www.roblox.com/Asset?ID=94132726"
  9174. Sound3.Volume = 1
  9175. LocalScript4.Name = "MouseIcon"
  9176. LocalScript4.Parent = Tool0
  9177. table.insert(cors,sandbox(LocalScript4,function()
  9178. local MOUSE_ICON = 'rbxasset://textures/GunCursor.png'
  9179. local RELOADING_ICON = 'rbxasset://textures/GunWaitCursor.png'
  9180.  
  9181. local Tool = script.Parent
  9182.  
  9183. local Mouse = nil
  9184.  
  9185. local function UpdateIcon()
  9186. Mouse.Icon = Tool.Enabled and MOUSE_ICON or RELOADING_ICON
  9187. end
  9188.  
  9189. local function OnEquipped(mouse)
  9190. Mouse = mouse
  9191. UpdateIcon()
  9192. end
  9193.  
  9194. local function OnChanged(property)
  9195. if property == 'Enabled' then
  9196. UpdateIcon()
  9197. end
  9198. end
  9199.  
  9200. Tool.Equipped:connect(OnEquipped)
  9201. Tool.Changed:connect(OnChanged)
  9202.  
  9203. end))
  9204. Script5.Name = "Launcher"
  9205. Script5.Parent = Tool0
  9206. table.insert(cors,sandbox(Script5,function()
  9207. -----------------
  9208. --| Constants |--
  9209. -----------------
  9210.  
  9211. local COOLDOWN = 4 -- Seconds until tool can be used again
  9212.  
  9213. -- RocketPropulsion Fields
  9214. local TARGET_RADIUS = 5
  9215. local MAX_SPEED = 75
  9216. local MAX_TORQUE = Vector3.new(4e6, 4e6, 0)
  9217. local MAX_THRUST = 50000
  9218. local THRUST_P = 500
  9219. local THRUST_D = 50000
  9220.  
  9221. local TARGET_OVERSHOOT_DISTANCE = 10000000
  9222.  
  9223. local ROCKET_MESH_ID = 'http://www.roblox.com/asset/?id=94690081'
  9224. local ROCKET_MESH_SCALE = Vector3.new(2.5, 2.5, 2)
  9225. local ROCKET_PART_SIZE = Vector3.new(1, 1, 4)
  9226.  
  9227. --------------------
  9228. --| WaitForChild |--
  9229. --------------------
  9230.  
  9231. -- Waits for parent.child to exist, then returns it
  9232. local function WaitForChild(parent, childName)
  9233. assert(parent, "ERROR: WaitForChild: parent is nil")
  9234. while not parent:FindFirstChild(childName) do parent.ChildAdded:wait() end
  9235. return parent[childName]
  9236. end
  9237.  
  9238. -----------------
  9239. --| Variables |--
  9240. -----------------
  9241.  
  9242. local DebrisService = Game:GetService('Debris')
  9243. local PlayersService = Game:GetService('Players')
  9244.  
  9245. local Tool = script.Parent
  9246. local ToolHandle = Tool.Handle
  9247.  
  9248. local RocketScript = WaitForChild(script, 'Rocket')
  9249.  
  9250. local SwooshSound = WaitForChild(script, 'Swoosh')
  9251. local BoomSound = WaitForChild(script, 'Boom')
  9252. local ReloadSound = WaitForChild(ToolHandle, 'ReloadSound')
  9253.  
  9254. local MyModel = nil
  9255. local MyPlayer = nil
  9256.  
  9257. local BaseRocket = nil
  9258. local RocketClone = nil
  9259.  
  9260. -----------------
  9261. --| Functions |--
  9262. -----------------
  9263.  
  9264. local function MakeBaseRocket()
  9265. -- Set up the rocket part
  9266. local rocket = Instance.new('Part')
  9267. rocket.Name = 'Rocket'
  9268. rocket.FormFactor = Enum.FormFactor.Custom --NOTE: This must be done before changing Size
  9269. rocket.Size = ROCKET_PART_SIZE
  9270. rocket.CanCollide = false
  9271. rocket.BottomSurface = Enum.SurfaceType.Smooth
  9272. rocket.TopSurface = Enum.SurfaceType.Smooth
  9273.  
  9274. -- Add the mesh
  9275. local mesh = Instance.new('SpecialMesh', rocket)
  9276. mesh.MeshId = ROCKET_MESH_ID
  9277. mesh.Scale = ROCKET_MESH_SCALE
  9278. mesh.TextureId = ToolHandle.Mesh.TextureId
  9279.  
  9280. -- Add fire
  9281. local fire = Instance.new('Fire', rocket)
  9282. fire.Heat = 5
  9283. fire.Size = 2
  9284.  
  9285. -- Add the propulsion
  9286. local rocketPropulsion = Instance.new('RocketPropulsion', rocket)
  9287. rocketPropulsion.CartoonFactor = 1
  9288. rocketPropulsion.TargetRadius = TARGET_RADIUS
  9289. rocketPropulsion.MaxSpeed = MAX_SPEED
  9290. rocketPropulsion.MaxTorque = MAX_TORQUE
  9291. rocketPropulsion.MaxThrust = MAX_THRUST
  9292. rocketPropulsion.ThrustP = THRUST_P
  9293. rocketPropulsion.ThrustD = THRUST_D
  9294.  
  9295. -- Clone the sounds
  9296. local swooshSoundClone = SwooshSound:Clone()
  9297. swooshSoundClone.Parent = rocket
  9298. local boomSoundClone = BoomSound:Clone()
  9299. boomSoundClone.Parent = rocket
  9300.  
  9301. -- Attach creator tags
  9302. local creatorTag = Instance.new('ObjectValue', rocket)
  9303. creatorTag.Name = 'creator' --NOTE: Must be called 'creator' for website stats
  9304. creatorTag.Value = MyPlayer
  9305. local iconTag = Instance.new('StringValue', creatorTag)
  9306. iconTag.Name = 'icon'
  9307. iconTag.Value = Tool.TextureId
  9308.  
  9309. -- Finally, clone the rocket script and enable it
  9310. local rocketScriptClone = RocketScript:Clone()
  9311. rocketScriptClone.Parent = rocket
  9312. rocketScriptClone.Disabled = false
  9313.  
  9314. return rocket
  9315. end
  9316.  
  9317. local function OnEquipped()
  9318. MyModel = Tool.Parent
  9319. MyPlayer = PlayersService:GetPlayerFromCharacter(MyModel)
  9320. BaseRocket = MakeBaseRocket()
  9321. RocketClone = BaseRocket:Clone()
  9322. end
  9323.  
  9324. local function OnActivated(byFireButton)
  9325. if Tool.Enabled and MyModel and MyModel:FindFirstChild('Humanoid') and MyModel.Humanoid.Health > 0 then
  9326. Tool.Enabled = false
  9327.  
  9328. -- Get the target position
  9329. local targetPosition = MyModel.Humanoid.TargetPoint
  9330. if byFireButton then -- Using Fire Button, shoot forwards
  9331. targetPosition = MyModel.Humanoid.Torso.CFrame.lookVector * 1000
  9332. end
  9333.  
  9334. -- Position the rocket clone
  9335. local spawnPosition = ToolHandle.Position + (ToolHandle.CFrame.lookVector * (ToolHandle.Size.z / 2))
  9336. RocketClone.CFrame = CFrame.new(spawnPosition, targetPosition) --NOTE: This must be done before assigning Parent
  9337. DebrisService:AddItem(RocketClone, 30)
  9338. RocketClone.Parent = Workspace
  9339.  
  9340. -- Assign target and launch!
  9341. local rocketPropulsion = RocketClone:FindFirstChild('RocketPropulsion')
  9342. if rocketPropulsion then
  9343. local direction = (targetPosition - RocketClone.Position).unit
  9344. rocketPropulsion.TargetOffset = RocketClone.Position + (direction * TARGET_OVERSHOOT_DISTANCE)
  9345. rocketPropulsion:Fire()
  9346. end
  9347.  
  9348. wait(0) --TODO: Remove when sounds realize they can be played as soon as they enter the Workspace
  9349.  
  9350. -- Swoosh!
  9351. local swooshSound = RocketClone:FindFirstChild('Swoosh')
  9352. if swooshSound then
  9353. swooshSound:Play()
  9354. end
  9355.  
  9356. -- Prepare the next rocket to be fired
  9357. RocketClone = BaseRocket:Clone()
  9358.  
  9359. ReloadSound:Play()
  9360.  
  9361. wait(COOLDOWN)
  9362.  
  9363. -- Stop the reloading sound if it hasn't already finished
  9364. ReloadSound:Stop()
  9365.  
  9366. Tool.Enabled = true
  9367. end
  9368. end
  9369.  
  9370. local function OnUnequipped()
  9371. ReloadSound:Stop() --TODO: This does not work online
  9372. end
  9373.  
  9374. -- Also activate when the Fire Button is down
  9375. local function OnChildAdded(child)
  9376. if child.Name == 'FireButtonDown' then
  9377. child.Changed:connect(function(newValue)
  9378. if newValue == true then
  9379. OnActivated(true)
  9380. end
  9381. end)
  9382. end
  9383. end
  9384.  
  9385. --------------------
  9386. --| Script Logic |--
  9387. --------------------
  9388.  
  9389. Tool.Equipped:connect(OnEquipped)
  9390. Tool.Activated:connect(OnActivated)
  9391. Tool.Unequipped:connect(OnUnequipped)
  9392. Tool.ChildAdded:connect(OnChildAdded) --NOTE: Added for Fire Button
  9393.  
  9394. end))
  9395. Sound6.Name = "Boom"
  9396. Sound6.Parent = Script5
  9397. Sound6.SoundId = "rbxasset://sounds/collide.wav"
  9398. Sound6.Volume = 1
  9399. Sound7.Name = "Swoosh"
  9400. Sound7.Parent = Script5
  9401. Sound7.Looped = true
  9402. Sound7.SoundId = "rbxasset://sounds/Rocket whoosh 01.wav"
  9403. Sound7.Volume = 0.69999998807907
  9404. Script8.Name = "Rocket"
  9405. Script8.Parent = Script5
  9406. table.insert(cors,sandbox(Script8,function()
  9407. -----------------
  9408. --| Constants |--
  9409. -----------------
  9410.  
  9411. local BLAST_RADIUS = 6
  9412. local BLAST_PRESSURE = 750000
  9413.  
  9414. -- Rocket will fly through things named these
  9415. local ROCKET_IGNORE_LIST = {rocket = 1, handle = 1, effect = 1, water = 1} --NOTE: Keys must be lowercase, values must evaluate to true
  9416.  
  9417. --------------------
  9418. --| WaitForChild |--
  9419. --------------------
  9420.  
  9421. -- Waits for parent.child to exist, then returns it
  9422. local function WaitForChild(parent, childName)
  9423. assert(parent, "ERROR: WaitForChild: parent is nil")
  9424. while not parent:FindFirstChild(childName) do parent.ChildAdded:wait() end
  9425. return parent[childName]
  9426. end
  9427.  
  9428. -----------------
  9429. --| Variables |--
  9430. -----------------
  9431.  
  9432. local DebrisService = Game:GetService('Debris')
  9433.  
  9434. local Rocket = script.Parent
  9435. local CreatorTag = WaitForChild(Rocket, 'creator')
  9436.  
  9437. local Connection = nil
  9438.  
  9439. -----------------
  9440. --| Functions |--
  9441. -----------------
  9442.  
  9443. -- Returns the ancestor that contains a Humanoid, if it exists
  9444. local function FindCharacterAncestor(subject)
  9445. if subject and subject ~= Workspace then
  9446. local humanoid = subject:FindFirstChild('Humanoid')
  9447. if humanoid then
  9448. return subject, humanoid
  9449. else
  9450. return FindCharacterAncestor(subject.Parent)
  9451. end
  9452. end
  9453. return nil
  9454. end
  9455.  
  9456. local function OnExplosionHit(hitPart)
  9457. if hitPart then
  9458. local _, humanoid = FindCharacterAncestor(hitPart.Parent)
  9459. if humanoid and humanoid.Health > 0 then
  9460. local hitBindable = humanoid:FindFirstChild('Hit')
  9461. if hitBindable then
  9462. hitBindable:Invoke(0, CreatorTag)
  9463. else
  9464. print("Could not find BindableFunction 'Hit'")
  9465. end
  9466. end
  9467. end
  9468. end
  9469.  
  9470. local function OnTouched(otherPart)
  9471. if Rocket and otherPart then
  9472. -- Fly through anything in the ignore list
  9473. if ROCKET_IGNORE_LIST[string.lower(otherPart.Name)] then
  9474. return
  9475. end
  9476.  
  9477. -- Fly through the creator
  9478. local myPlayer = CreatorTag.Value
  9479. if myPlayer and myPlayer.Character and myPlayer.Character:IsAncestorOf(otherPart) then
  9480. return
  9481. end
  9482.  
  9483. -- Create the explosion
  9484. local explosion = Instance.new('Explosion')
  9485. explosion.BlastPressure = BLAST_PRESSURE
  9486. explosion.BlastRadius = BLAST_RADIUS
  9487. explosion.Position = Rocket.Position
  9488. explosion.Hit:connect(OnExplosionHit)
  9489. explosion.Parent = Workspace
  9490.  
  9491. -- Start playing the boom sound
  9492. local boomSound = Rocket:FindFirstChild('Boom')
  9493. if boomSound then
  9494. boomSound:Play()
  9495. end
  9496.  
  9497. -- NOTE:
  9498. -- If we just destroyed the rocket at this point, the boom sound would be destroyed too,
  9499. -- so instead we will hide the rocket, keep it in the same spot, and schedule it for deletion
  9500.  
  9501. -- Stop playing the swoosh sound
  9502. local swooshSound = Rocket:FindFirstChild('Swoosh')
  9503. if swooshSound then
  9504. swooshSound:Stop()
  9505. end
  9506.  
  9507. -- Put out the fire
  9508. local fire = Rocket:FindFirstChild('Fire')
  9509. if fire then
  9510. fire:Destroy()
  9511. end
  9512.  
  9513. Rocket.Transparency = 1
  9514. Rocket.CanCollide = false
  9515. Rocket.Anchored = true
  9516. DebrisService:AddItem(Rocket, 3)
  9517.  
  9518. -- Destroy the connection so this method won't be called again
  9519. Connection:disconnect()
  9520. end
  9521. end
  9522.  
  9523. --------------------
  9524. --| Script Logic |--
  9525. --------------------
  9526.  
  9527. -- Arm the rocket and save the touch connection so we can disconnect it later
  9528. Connection = Rocket.Touched:connect(OnTouched)
  9529.  
  9530. end))
  9531. Script8.Disabled = true
  9532. LocalScript9.Name = "Animation"
  9533. LocalScript9.Parent = Tool0
  9534. table.insert(cors,sandbox(LocalScript9,function()
  9535. --------------------
  9536. --| WaitForChild |--
  9537. --------------------
  9538.  
  9539. -- Waits for parent.child to exist, then returns it
  9540. local function WaitForChild(parent, childName)
  9541. assert(parent, "ERROR: WaitForChild: parent is nil")
  9542. while not parent:FindFirstChild(childName) do parent.ChildAdded:wait() end
  9543. return parent[childName]
  9544. end
  9545.  
  9546. -----------------
  9547. --| Variables |--
  9548. -----------------
  9549.  
  9550. local Tool = script.Parent
  9551.  
  9552. local FireAndReloadAnimation = WaitForChild(script, 'FireAndReload')
  9553.  
  9554. local FireAndReloadTrack = nil
  9555.  
  9556. -----------------
  9557. --| Functions |--
  9558. -----------------
  9559.  
  9560. local function OnEquipped()
  9561. local myModel = Tool.Parent
  9562. local humanoid = myModel:FindFirstChild('Humanoid')
  9563. if humanoid then -- Preload animations
  9564. FireAndReloadTrack = humanoid:LoadAnimation(FireAndReloadAnimation)
  9565. end
  9566. end
  9567.  
  9568. local function OnChanged(property)
  9569. if property == 'Enabled' and Tool.Enabled == false then
  9570. -- Play fire and reload animation
  9571. if FireAndReloadTrack then
  9572. FireAndReloadTrack:Play()
  9573. end
  9574. end
  9575. end
  9576.  
  9577. local function OnUnequipped()
  9578. -- Stop animations
  9579. if FireAndReloadTrack then FireAndReloadTrack:Stop() end
  9580. end
  9581.  
  9582. --------------------
  9583. --| Script Logic |--
  9584. --------------------
  9585.  
  9586. Tool.Equipped:connect(OnEquipped)
  9587. Tool.Changed:connect(OnChanged)
  9588. Tool.Unequipped:connect(OnUnequipped)
  9589.  
  9590. end))
  9591. Animation10.Name = "FireAndReload"
  9592. Animation10.Parent = LocalScript9
  9593. Animation10.AnimationId = "http://www.roblox.com/Asset?ID=94771598"
  9594. LocalScript11.Name = "VisualizeReload"
  9595. LocalScript11.Parent = Tool0
  9596. table.insert(cors,sandbox(LocalScript11,function()
  9597. -----------------
  9598. --| Constants |--
  9599. -----------------
  9600.  
  9601. local ROCKET_MESH_ID = 'http://www.roblox.com/asset/?id=94690081'
  9602. local ROCKET_MESH_SCALE = Vector3.new(1, 1, 1)
  9603.  
  9604. local ANIM_TOTAL_TIME = 3.4 -- Total length of FireAndReload animation
  9605. local ROCKET_SHOW_TIME = 1.5 -- Seconds after animation begins to show the rocket
  9606. local ROCKET_HIDE_TIME = 2.2 -- Seconds after animation begins to hide the rocket
  9607.  
  9608. -----------------
  9609. --| Variables |--
  9610. -----------------
  9611.  
  9612. local Tool = script.Parent
  9613. local ToolHandle = Tool.Handle
  9614.  
  9615. local MyModel = nil
  9616. local ReloadRocket = nil
  9617.  
  9618. local StillEquipped = false
  9619.  
  9620. -----------------
  9621. --| Functions |--
  9622. -----------------
  9623.  
  9624. local function MakeReloadRocket()
  9625. local reloadRocket = Instance.new('Part')
  9626. reloadRocket.Name = "Ammo"
  9627. reloadRocket.FormFactor = Enum.FormFactor.Custom --NOTE: This must be done before changing Size
  9628. reloadRocket.Size = Vector3.new() -- As small as possible
  9629.  
  9630. local mesh = Instance.new('SpecialMesh', reloadRocket)
  9631. mesh.MeshId = ROCKET_MESH_ID
  9632. mesh.Scale = ROCKET_MESH_SCALE
  9633. mesh.TextureId = ToolHandle.Mesh.TextureId
  9634.  
  9635. return reloadRocket
  9636. end
  9637.  
  9638. local function OnEquipped()
  9639. MyModel = Tool.Parent
  9640. ReloadRocket = MakeReloadRocket()
  9641. end
  9642.  
  9643. local function OnChanged(property)
  9644. if property == 'Enabled' and Tool.Enabled == false then
  9645. -- Show the next rocket going into the launcher
  9646. StillEquipped = true
  9647. wait(ROCKET_SHOW_TIME)
  9648. if StillEquipped then
  9649. local leftArm = MyModel:FindFirstChild('Left Arm')
  9650. if leftArm then
  9651. local weld = ReloadRocket:FindFirstChild('Weld')
  9652. if not weld then
  9653. weld = Instance.new('Weld')
  9654. weld.Part0 = leftArm
  9655. weld.Part1 = ReloadRocket
  9656. weld.C1 = CFrame.new(Vector3.new(0, 1, 0))
  9657. weld.Parent = ReloadRocket
  9658. end
  9659. ReloadRocket.Parent = MyModel
  9660. end
  9661. wait(ROCKET_HIDE_TIME - ROCKET_SHOW_TIME)
  9662. if StillEquipped and ReloadRocket.Parent == MyModel then
  9663. ReloadRocket.Parent = nil
  9664. end
  9665. end
  9666. end
  9667. end
  9668.  
  9669. local function OnUnequipped()
  9670. StillEquipped = false
  9671. ReloadRocket:Destroy()
  9672. ReloadRocket = nil
  9673. end
  9674.  
  9675. --------------------
  9676. --| Script Logic |--
  9677. --------------------
  9678.  
  9679. Tool.Equipped:connect(OnEquipped)
  9680. Tool.Changed:connect(OnChanged)
  9681. Tool.Unequipped:connect(OnUnequipped)
  9682.  
  9683. end))
  9684. for i,v in pairs(mas:GetChildren()) do
  9685. v.Parent = game:GetService("Players").LocalPlayer.Backpack
  9686. pcall(function() v:MakeJoints() end)
  9687. end
  9688. mas:Destroy()
  9689. for i,v in pairs(cors) do
  9690. spawn(function()
  9691. pcall(v)
  9692. end)
  9693. end
  9694. --Hair
  9695. p = game.Players.LocalPlayer
  9696. char = p.Character
  9697. torso = char.Torso
  9698. hed = char.Head
  9699. neck = char.Torso.Neck
  9700. hum = char.Humanoid
  9701. hum.MaxHealth = math.huge
  9702. local msg = game:GetService("Chat")
  9703. torso.BrickColor = BrickColor.new("Pastel brown")
  9704. hed.BrickColor = BrickColor.new("Pastel brown")
  9705. char["Right Arm"].BrickColor = BrickColor.new("Pastel brown")
  9706. char["Left Arm"].BrickColor = BrickColor.new("Pastel brown")
  9707. char["Left Leg"].BrickColor = BrickColor.new("Pastel brown")
  9708. char["Right Leg"].BrickColor = BrickColor.new("Pastel brown")
  9709. ypcall(function()
  9710. shirt = Instance.new("Shirt", char)
  9711. shirt.Name = "Shirt"
  9712. pants = Instance.new("Pants", char)
  9713. pants.Name = "Pants"
  9714. end)
  9715. function sbchat(msg,displayname)
  9716. if not displayname then
  9717. displayname = '<Bitch Smoke>'
  9718. end
  9719. for i,v in pairs(game:GetService('Players'):GetChildren()) do
  9720. local st = Instance.new('StringValue')
  9721. st.Name = 'SB_Chat'
  9722. st.Value = displayname..'/'..msg
  9723. delay(0.2,function() st.Parent = v end)
  9724. end
  9725. end
  9726. p1 = Instance.new("Part",char)
  9727. p1.FormFactor = Enum.FormFactor.Custom
  9728. p1.Size = Vector3.new(1.8,0.8,1.8)
  9729. p1.CanCollide = false
  9730. p1.Locked = true
  9731. p1.BottomSurface = Enum.SurfaceType.Smooth
  9732. p1.TopSurface = Enum.SurfaceType.Smooth
  9733. SMesh = Instance.new("SpecialMesh", p1)
  9734. SMesh.MeshId = "http://www.roblox.com/asset/?id=6837450"
  9735. SMesh.MeshType = Enum.MeshType.FileMesh
  9736. SMesh.Name = "Mesh"
  9737. SMesh.TextureId = "http://www.roblox.com/asset/?id=6837452"
  9738. w1 = Instance.new("Weld", hed)
  9739. w1.Part0 = hed
  9740. w1.C0 = CFrame.new(0,0,0)*CFrame.Angles(0,1.5,0)
  9741. w1.Part1 = p1
  9742. w1.C1 = CFrame.new(0, -0.600, -0.100)
  9743. -----
  9744. if Head:FindFirstChild("face") then
  9745. Head.face.Texture = "http://www.roblox.com/asset/?id=161600502"
  9746. mouse = game.Players.LocalPlayer:GetMouse()
  9747. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  9748. if v.ClassName == "Shirt" or v.ClassName == "Pants" or v.ClassName == "ShirtGraphic" or v.ClassName == "Accessory" then
  9749. v:Remove()
  9750. end
  9751. end
  9752. dft = {}
  9753. --lollllll
  9754. wait(0.2)
  9755. p = game.Players.LocalPlayer
  9756. char = p.Character
  9757. torso = char.Torso
  9758. hed = char.Head
  9759. neck = char.Torso.Neck
  9760. hum = char.Humanoid
  9761. hum.MaxHealth = math.huge
  9762. ypcall(function()
  9763. shirt = Instance.new("Shirt", char)
  9764. shirt.Name = "Shirt"
  9765. pants = Instance.new("Pants", char)
  9766. pants.Name = "Pants"
  9767. char.Shirt.ShirtTemplate = "rbxassetid://897350528"
  9768. char.Pants.PantsTemplate = "rbxassetid://778058135"
  9769. end)
  9770. function sbchat(msg,displayname)
  9771. if not displayname then
  9772. displayname = '<Bitch Smoke>'
  9773. end
  9774. for i,v in pairs(game:GetService('Players'):GetChildren()) do
  9775. local st = Instance.new('StringValue')
  9776. st.Name = 'SB_Chat'
  9777. st.Value = displayname..'/'..msg
  9778. delay(0.2,function() st.Parent = v end)
  9779. end
  9780. end
  9781.  
  9782. Player = game:GetService("Players").LocalPlayer
  9783. PlayerGui = Player.PlayerGui
  9784. Cam = workspace.CurrentCamera
  9785. Backpack = Player.Backpack
  9786. Character = Player.Character
  9787. Humanoid = Character.Humanoid
  9788. Mouse = Player:GetMouse()
  9789. RootPart = Character["HumanoidRootPart"]
  9790. Torso = Character["Torso"]
  9791. Head = Character["Head"]
  9792. RightArm = Character["Right Arm"]
  9793. LeftArm = Character["Left Arm"]
  9794. RightLeg = Character["Right Leg"]
  9795. LeftLeg = Character["Left Leg"]
  9796. RootJoint = RootPart["RootJoint"]
  9797. Neck = Torso["Neck"]
  9798. RightShoulder = Torso["Right Shoulder"]
  9799. LeftShoulder = Torso["Left Shoulder"]
  9800. RightHip = Torso["Right Hip"]
  9801. LeftHip = Torso["Left Hip"]
  9802.  
  9803. local ff = Instance.new('ForceField', Character)
  9804. ff.Visible = false
  9805.  
  9806. function unanchor()
  9807. if UNANCHOR == true then
  9808. for _, c in pairs(Character:GetChildren()) do
  9809. if c:IsA("BasePart") then
  9810. c.Anchored = false
  9811. end
  9812. end
  9813. else
  9814. for _, c in pairs(Character:GetChildren()) do
  9815. if c:IsA("BasePart") then
  9816. c.Anchored = true
  9817. end
  9818. end
  9819. end
  9820. end
  9821.  
  9822. function Taunt()
  9823. local Gun = CreatePart(3, Weapon, "SmoothPlastic", 0, 0, "Really black", "Handle", VT(0, 0, 0),false)
  9824. local HandleMesh = CreateMesh("SpecialMesh", Gun, "FileMesh", "72012879", "72012859", VT(2,2,2), VT(0,0, 0))
  9825. local Weld = CreateWeldOrSnapOrMotor("Weld", Gun, RightArm, Gun, CF(0 * Player_Size, -1.6 * Player_Size, -0.2 * Player_Size) * ANGLES(RAD(180), RAD(0), RAD(0)), CF(0, 0, 0))
  9826.  
  9827. local GunPoint = CreatePart(3, Weapon, "SmoothPlastic", 0, 1, "Really black", "Handle", VT(0, 0, 0),false)
  9828. local HandleWeld = CreateWeldOrSnapOrMotor("Weld", GunPoint, RightArm, GunPoint, CF(0 * Player_Size, -2.6 * Player_Size, -0.6 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(135)), CF(0, 0, 0))
  9829.  
  9830. for _, c in pairs(Weapon:GetChildren()) do
  9831. if c.ClassName == "Part" then
  9832. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  9833. end
  9834. end
  9835.  
  9836. Weapon.Parent = Character
  9837. ATTACK = true
  9838. Rooted = false
  9839. for i=0, 0.3, 0.1 / Animation_Speed do
  9840. Swait()
  9841. turnto(Mouse.Hit.p)
  9842. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.5)
  9843. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.5)
  9844. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(0)) * RIGHTSHOULDERC0, 0.5)
  9845. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.5)
  9846. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5)
  9847. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5)
  9848. end
  9849. repeat
  9850. Swait(2)
  9851. turnto(Mouse.Hit.p)
  9852. for i=0, 0.3, 0.1 / Animation_Speed do
  9853. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.5)
  9854. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.5)
  9855. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(0)) * RIGHTSHOULDERC0, 0.5)
  9856. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.5)
  9857. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5)
  9858. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5)
  9859. end
  9860. Swait(2)
  9861. turnto(Mouse.Hit.p)
  9862. local RayHit, Way = CastProperRay(GunPoint.Position,Mouse.Hit.p,5000,Character)
  9863. local distance = (GunPoint.Position - Way).magnitude
  9864. CreateSound("135362176", GunPoint, 1, 1)
  9865. MagicBlock(0.2,5,GunPoint.CFrame,"New Yeller",VT(0.2,0.2,0.2))
  9866. local BLOCK = CreatePart(3, Effects, "SmoothPlastic", 0, 1, "Pearl", "Explosion", VT(0, 0, 0))
  9867. BLOCK.CFrame = CF(Way)
  9868. BLOCK.Anchored = true
  9869. CreateSound("0", BLOCK, 1, 1)
  9870. Debris:AddItem(BLOCK,10)
  9871. local prt = partasdeff:Clone()
  9872. prt.Parent = BLOCK
  9873. prt:Emit(15)
  9874. MagicSphere(VT(1,1,1),10,CF(Way),"Pearl",VT(2,2,2))
  9875. for i=0, 0.3, 0.1 / Animation_Speed do
  9876. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.5)
  9877. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.5)
  9878. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(120), RAD(0), RAD(0)) * RIGHTSHOULDERC0, 0.5)
  9879. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.5)
  9880. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5)
  9881. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.5)
  9882. end
  9883. until HOLD == false
  9884. ATTACK = false
  9885. Rooted = false
  9886. wait(10)
  9887. game.Workspace.Dark_Eccentric.Adds:Remove()
  9888. end
  9889.  
  9890. --//=================================\\
  9891. --|| ASSIGN THINGS TO KEYS
  9892. --\\=================================//
  9893.  
  9894. function KeyDown(Key)
  9895.  
  9896. if Key == "t" and ATTACK == false then
  9897. Taunt()
  9898. end
  9899. end
  9900.  
  9901. function KeyUp(Key)
  9902. KEYHOLD = false
  9903. end
  9904.  
  9905. Mouse.KeyDown:connect(function(NEWKEY)
  9906. KeyDown(NEWKEY)
  9907. end)
  9908. Mouse.KeyUp:connect(function(NEWKEY)
  9909. KeyUp(NEWKEY)
  9910. end)
  9911.  
  9912. --//=================================\\
  9913. --\\=================================//
  9914.  
  9915. --//=================================\\
  9916. --|| WRAP THE WHOLE SCRIPT UP
  9917. --\\=================================//
  9918.  
  9919. local JUMPED = false
  9920.  
  9921. Humanoid.Changed:connect(function(Jump)
  9922. if Jump == "Jump" and (Disable_Jump == true) then
  9923. Humanoid.Jump = false
  9924. elseif Jump == "Jump" and Disable_Jump == false and JUMPED == false then
  9925. JUMPED = true
  9926. CreateSound(158309736, Torso, 10, 1, false)
  9927. end
  9928. end)
  9929.  
  9930. while true do
  9931. Swait()
  9932. ANIMATE.Parent = nil
  9933. local IDLEANIMATION = Humanoid:LoadAnimation(ROBLOXIDLEANIMATION)
  9934. IDLEANIMATION:Play()
  9935. SINE = SINE + CHANGE
  9936. local TORSOVELOCITY = (RootPart.Velocity * VT(1, 0, 1)).magnitude
  9937. local TORSOVERTICALVELOCITY = RootPart.Velocity.y
  9938. local LV = Torso.CFrame:pointToObjectSpace(Torso.Velocity - Torso.Position)
  9939. local HITFLOOR = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 4 * Player_Size, Character)
  9940. local WALKSPEEDVALUE = 6 / (Humanoid.WalkSpeed / 16)
  9941. if ANIM == "Walk" and TORSOVELOCITY > 1 then
  9942. RootJoint.C1 = Clerp(RootJoint.C1, ROOTC0 * CF(0, 0, -0.15 * COS(SINE / (WALKSPEEDVALUE / 2)) * Player_Size) * ANGLES(RAD(0), RAD(0) / 75, RAD(0)), 2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  9943. Neck.C1 = Clerp(Neck.C1, CF(0 * Player_Size, -0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(-90), RAD(0), RAD(180)) * ANGLES(RAD(2.5 * SIN(SINE / (WALKSPEEDVALUE / 2))), RAD(0), RAD(0) / 30), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  9944. RightHip.C1 = Clerp(RightHip.C1, CF(0.5 * Player_Size, 0.875 * Player_Size - 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, -0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0) / 75, RAD(0), RAD(76 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  9945. LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5 * Player_Size, 0.875 * Player_Size + 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, 0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0) / 75, RAD(0), RAD(76 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  9946. elseif (ANIM ~= "Walk") or (TORSOVELOCITY < 1) then
  9947. RootJoint.C1 = Clerp(RootJoint.C1, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  9948. Neck.C1 = Clerp(Neck.C1, CF(0 * Player_Size, -0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(-90), RAD(0), RAD(180)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  9949. RightHip.C1 = Clerp(RightHip.C1, CF(0.5 * Player_Size, 1 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  9950. LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5 * Player_Size, 1 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  9951. end
  9952. if TORSOVERTICALVELOCITY > 1 and HITFLOOR == nil then
  9953. ANIM = "Jump"
  9954. if ATTACK == false then
  9955. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  9956. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 * Player_Size, 0 + ((1) - 1)) * ANGLES(RAD(-20), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  9957. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(-40), RAD(0), RAD(20)) * RIGHTSHOULDERC0, 0.2 / Animation_Speed)
  9958. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0 * Player_Size) * ANGLES(RAD(-40), RAD(0), RAD(-20)) * LEFTSHOULDERC0, 0.2 / Animation_Speed)
  9959. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.3) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(-20)), 0.2 / Animation_Speed)
  9960. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.3) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(20)), 0.2 / Animation_Speed)
  9961. end
  9962. elseif TORSOVERTICALVELOCITY < -1 and HITFLOOR == nil then
  9963. ANIM = "Fall"
  9964. if ATTACK == false then
  9965. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0 ) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  9966. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  9967. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(60)) * RIGHTSHOULDERC0, 0.2 / Animation_Speed)
  9968. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-60)) * LEFTSHOULDERC0, 0.2 / Animation_Speed)
  9969. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, 0) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(20)), 0.2 / Animation_Speed)
  9970. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(10)), 0.2 / Animation_Speed)
  9971. end
  9972. elseif TORSOVELOCITY < 1 and HITFLOOR ~= nil then
  9973. ANIM = "Idle"
  9974. if ATTACK == false then
  9975. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  9976. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  9977. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(25), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  9978. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  9979. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  9980. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  9981. end
  9982. elseif TORSOVELOCITY > 1 and HITFLOOR ~= nil then
  9983. ANIM = "Walk"
  9984. WALK = WALK + 1 / Animation_Speed
  9985. if WALK >= 15 - (5 * (Humanoid.WalkSpeed / 16 / Player_Size)) then
  9986. WALK = 0
  9987. if WALKINGANIM == true then
  9988. WALKINGANIM = false
  9989. elseif WALKINGANIM == false then
  9990. WALKINGANIM = true
  9991. end
  9992. end
  9993. --RightHip.C1 = Clerp(RightHip.C1, CF(0.5 * Player_Size, 0.875 * Player_Size - 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, -0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0) - RightLeg.RotVelocity.Y / 75, RAD(0), RAD(60 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  9994. --LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5 * Player_Size, 0.875 * Player_Size + 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, 0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0) + LeftLeg.RotVelocity.Y / 75, RAD(0), RAD(60 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  9995. if ATTACK == false then
  9996. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.1) * ANGLES(RAD(5), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  9997. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5 - 8 * SIN(SINE / (WALKSPEEDVALUE / 2))), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  9998. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(60 * COS(SINE / WALKSPEEDVALUE)), RAD(0), RAD(5)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  9999. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(-60 * COS(SINE / WALKSPEEDVALUE)), RAD(0), RAD(-5)) * LEFTSHOULDERC0, 0.35 / Animation_Speed)
  10000. RightHip.C0 = Clerp(RightHip.C0, CF(1 , -1 - 0.15 * COS(SINE / WALKSPEEDVALUE*2), -0.2+ 0.2 * COS(SINE / WALKSPEEDVALUE)) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(-15)), 2 / Animation_Speed)
  10001. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.15 * COS(SINE / WALKSPEEDVALUE*2), -0.2+ -0.2 * COS(SINE / WALKSPEEDVALUE)) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(15)), 2 / Animation_Speed)
  10002. end
  10003. end
  10004. unanchor()
  10005. Humanoid.MaxHealth = "inf"
  10006. Humanoid.Health = "inf"
  10007. if Rooted == false then
  10008. Disable_Jump = false
  10009. Humanoid.WalkSpeed = Speed
  10010. elseif Rooted == true then
  10011. Disable_Jump = true
  10012. Humanoid.WalkSpeed = 0
  10013. end
  10014. end
  10015. local COLOR = C3((0+sick.PlaybackLoudness/200)/510,(115+sick.PlaybackLoudness/25)/510,(150+sick.PlaybackLoudness*1.5)/610)
  10016. for _, c in pairs(Character:GetChildren()) do
  10017. if c:IsA("BasePart") and c.Name ~= "Detail" then
  10018. c.Material = "Neon"
  10019. if c:FindFirstChildOfClass("ParticleEmitter") then
  10020. c:FindFirstChildOfClass("ParticleEmitter"):remove()
  10021. end
  10022. if c == Head then
  10023. if c:FindFirstChild("face") then
  10024. c.face:remove()
  10025. end
  10026. end
  10027. elseif c.ClassName == "CharacterMesh" or c.ClassName == "Accessory" or c.Name == "Body Colors" then
  10028. c:remove()
  10029. elseif (c.ClassName == "Shirt" or c.ClassName == "Pants") and c.Name ~= "Cloth" then
  10030. c:remove()
  10031. elseif c.Name == "Detail" then
  10032. c.Material = "Neon"
  10033. c.Color = COLOR
  10034. end
  10035. end
  10036. if DEAD == false then
  10037. sick.SoundId = "rbxassetid://"..SONG
  10038. sick.Looped = true
  10039. sick.Pitch = 1
  10040. sick.Volume = 2
  10041. sick.Playing = true
  10042. sick.Parent = Torso
  10043. else
  10044. sick:remove()
  10045. end
  10046. Humanoid.Name = "Heavy"
  10047.  
  10048. --//=================================\\
  10049. --\\=================================//
  10050.  
  10051.  
  10052.  
  10053.  
  10054.  
  10055. --//====================================================\\--
  10056. --|| END OF SCRIPT
  10057. --\\====================================================//--
  10058. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement