Advertisement
Deyer

Untitled

Mar 14th, 2023
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 408.75 KB | None | 0 0
  1. game.Players.LocalPlayer.Character["LUAhEAD"].Handle.Mesh:Destroy() --Pink Hair
  2. game.Players.LocalPlayer.Character["Pink Hair"].Handle.Mesh:Destroy()
  3. game.Players.LocalPlayer.Character["Kate Hair"].Handle.Mesh:Destroy() --LavanderHair
  4. game.Players.LocalPlayer.Character["LavanderHair"].Handle.Mesh:Destroy()
  5. game.Players.LocalPlayer.Character["Robloxclassicred"].Handle.Mesh:Destroy()
  6. game.Players.LocalPlayer.Character["Surfboard"].Handle.Handle:Destroy() --VANS_Umbrella
  7. game.Players.LocalPlayer.Character["SamuraiHat"].Handle.SpecialMesh:Destroy()
  8.  
  9. local c = game.Players.LocalPlayer.Character
  10. for i, v in pairs({"Right Arm", "Left Arm"}) do
  11. local arm = c[v]
  12. arm.Parent = nil
  13. arm.Transparency = 1
  14. arm.Parent = c
  15. end
  16.  
  17. local c = game.Players.LocalPlayer.Character
  18. for i, v in pairs({"Right Leg", "Left Leg"}) do
  19. local Leg = c[v]
  20. Leg.Parent = nil
  21. Leg.Transparency = 1
  22. Leg.Parent = c
  23. end
  24.  
  25. local v3_net, v3_808 = Vector3.new(20000, 25.1, 20000), Vector3.new(8, 0, 8)
  26. local function getNetlessVelocity(realPartVelocity)
  27. local mag = realPartVelocity.Magnitude
  28. if mag > 1 then
  29. local unit = realPartVelocity.Unit
  30. if (unit.Y > 0.25) or (unit.Y < -0.75) then
  31. return unit * (25.1 / unit.Y)
  32. end
  33. end
  34. return v3_net + realPartVelocity * v3_808
  35. end
  36. local simradius = "shp" --simulation radius (net bypass) method
  37. --simulation radius (net bypass) method
  38. --"shp" - sethiddenproperty
  39. --"ssr" - setsimulationradius
  40. --false - disable
  41. local antiragdoll = true --removes hingeConstraints and ballSocketConstraints from your character
  42. local newanimate = false --disables the animate script and enables after reanimation
  43. local discharscripts = true --disables all localScripts parented to your character before reanimation
  44. local R15toR6 = true --tries to convert your character to r6 if its r15
  45. local hatcollide = true --makes hats cancollide (only method 0)
  46. local humState16 = true --enables collisions for limbs before the humanoid dies (using hum:ChangeState)
  47. local addtools = false --puts all tools from backpack to character and lets you hold them after reanimation
  48. local hedafterneck = false --disable aligns for head and enable after neck is removed
  49. local loadtime = game:GetService("Players").RespawnTime + 0.5 --anti respawn delay
  50. local method = 0 --reanimation method
  51. --methods:
  52. --0 - breakJoints (takes [loadtime] seconds to laod)
  53. --1 - limbs
  54. --2 - limbs + anti respawn
  55. --3 - limbs + breakJoints after [loadtime] seconds
  56. --4 - remove humanoid + breakJoints
  57. --5 - remove humanoid + limbs
  58. local alignmode = 3 --AlignPosition mode
  59. --modes:
  60. --1 - AlignPosition rigidity enabled true
  61. --2 - 2 AlignPositions rigidity enabled both true and false
  62. --3 - AlignPosition rigidity enabled false
  63.  
  64. healthHide = healthHide and ((method == 0) or (method == 2) or (method == 000)) and gp(c, "Head", "BasePart")
  65.  
  66. local lp = game:GetService("Players").LocalPlayer
  67. local rs = game:GetService("RunService")
  68. local stepped = rs.Stepped
  69. local heartbeat = rs.Heartbeat
  70. local renderstepped = rs.RenderStepped
  71. local sg = game:GetService("StarterGui")
  72. local ws = game:GetService("Workspace")
  73. local cf = CFrame.new
  74. local v3 = Vector3.new
  75. local v3_0 = v3(0, 0, 0)
  76. local inf = math.huge
  77.  
  78. local c = lp.Character
  79.  
  80. if not (c and c.Parent) then
  81. return
  82. end
  83.  
  84. c.Destroying:Connect(function()
  85. c = nil
  86. end)
  87.  
  88. local function gp(parent, name, className)
  89. if typeof(parent) == "Instance" then
  90. for i, v in pairs(parent:GetChildren()) do
  91. if (v.Name == name) and v:IsA(className) then
  92. return v
  93. end
  94. end
  95. end
  96. return nil
  97. end
  98.  
  99. local function align(Part0, Part1)
  100. Part0.CustomPhysicalProperties = PhysicalProperties.new(0.0001, 0.0001, 0.0001, 0.0001, 0.0001)
  101.  
  102. local att0 = Instance.new("Attachment", Part0)
  103. att0.Orientation = v3_0
  104. att0.Position = v3_0
  105. att0.Name = "att0_" .. Part0.Name
  106. local att1 = Instance.new("Attachment", Part1)
  107. att1.Orientation = v3_0
  108. att1.Position = v3_0
  109. att1.Name = "att1_" .. Part1.Name
  110.  
  111. if (alignmode == 1) or (alignmode == 2) then
  112. local ape = Instance.new("AlignPosition", att0)
  113. ape.ApplyAtCenterOfMass = false
  114. ape.MaxForce = inf
  115. ape.MaxVelocity = inf
  116. ape.ReactionForceEnabled = false
  117. ape.Responsiveness = 200
  118. ape.Attachment1 = att1
  119. ape.Attachment0 = att0
  120. ape.Name = "AlignPositionRtrue"
  121. ape.RigidityEnabled = true
  122. end
  123.  
  124. if (alignmode == 2) or (alignmode == 3) then
  125. local apd = Instance.new("AlignPosition", att0)
  126. apd.ApplyAtCenterOfMass = false
  127. apd.MaxForce = inf
  128. apd.MaxVelocity = inf
  129. apd.ReactionForceEnabled = false
  130. apd.Responsiveness = 200
  131. apd.Attachment1 = att1
  132. apd.Attachment0 = att0
  133. apd.Name = "AlignPositionRfalse"
  134. apd.RigidityEnabled = false
  135. end
  136.  
  137. local ao = Instance.new("AlignOrientation", att0)
  138. ao.MaxAngularVelocity = inf
  139. ao.MaxTorque = inf
  140. ao.PrimaryAxisOnly = false
  141. ao.ReactionTorqueEnabled = false
  142. ao.Responsiveness = 200
  143. ao.Attachment1 = att1
  144. ao.Attachment0 = att0
  145. ao.RigidityEnabled = false
  146.  
  147. if type(getNetlessVelocity) == "function" then
  148. local realVelocity = v3_0
  149. local steppedcon = stepped:Connect(function()
  150. Part0.Velocity = realVelocity
  151. end)
  152. local heartbeatcon = heartbeat:Connect(function()
  153. realVelocity = Part0.Velocity
  154. Part0.Velocity = getNetlessVelocity(realVelocity)
  155. end)
  156. Part0.Destroying:Connect(function()
  157. Part0 = nil
  158. steppedcon:Disconnect()
  159. heartbeatcon:Disconnect()
  160. end)
  161. end
  162. end
  163.  
  164. local function respawnrequest()
  165. local ccfr = ws.CurrentCamera.CFrame
  166. local c = lp.Character
  167. lp.Character = nil
  168. lp.Character = c
  169. local con = nil
  170. con = ws.CurrentCamera.Changed:Connect(function(prop)
  171. if (prop ~= "Parent") and (prop ~= "CFrame") then
  172. return
  173. end
  174. ws.CurrentCamera.CFrame = ccfr
  175. con:Disconnect()
  176. end)
  177. end
  178.  
  179. local destroyhum = (method == 4) or (method == 5)
  180. local breakjoints = (method == 0) or (method == 4)
  181. local antirespawn = (method == 0) or (method == 2) or (method == 3)
  182.  
  183. hatcollide = hatcollide and (method == 0)
  184.  
  185. addtools = addtools and gp(lp, "Backpack", "Backpack")
  186.  
  187. local fenv = getfenv()
  188. local shp = fenv.sethiddenproperty or fenv.set_hidden_property or fenv.set_hidden_prop or fenv.sethiddenprop
  189. local ssr = fenv.setsimulationradius or fenv.set_simulation_radius or fenv.set_sim_radius or fenv.setsimradius or fenv.set_simulation_rad or fenv.setsimulationrad
  190.  
  191. if shp and (simradius == "shp") then
  192. spawn(function()
  193. while c and heartbeat:Wait() do
  194. shp(lp, "SimulationRadius", inf)
  195. end
  196. end)
  197. elseif ssr and (simradius == "ssr") then
  198. spawn(function()
  199. while c and heartbeat:Wait() do
  200. ssr(inf)
  201. end
  202. end)
  203. end
  204.  
  205. antiragdoll = antiragdoll and function(v)
  206. if v:IsA("HingeConstraint") or v:IsA("BallSocketConstraint") then
  207. v.Parent = nil
  208. end
  209. end
  210.  
  211. if antiragdoll then
  212. for i, v in pairs(c:GetDescendants()) do
  213. antiragdoll(v)
  214. end
  215. c.DescendantAdded:Connect(antiragdoll)
  216. end
  217.  
  218. if antirespawn then
  219. respawnrequest()
  220. end
  221.  
  222. if method == 0 then
  223. wait(loadtime)
  224. if not c then
  225. return
  226. end
  227. end
  228.  
  229. if discharscripts then
  230. for i, v in pairs(c:GetChildren()) do
  231. if v:IsA("LocalScript") then
  232. v.Disabled = true
  233. end
  234. end
  235. elseif newanimate then
  236. local animate = gp(c, "Animate", "LocalScript")
  237. if animate and (not animate.Disabled) then
  238. animate.Disabled = true
  239. else
  240. newanimate = false
  241. end
  242. end
  243.  
  244. if addtools then
  245. for i, v in pairs(addtools:GetChildren()) do
  246. if v:IsA("Tool") then
  247. v.Parent = c
  248. end
  249. end
  250. end
  251.  
  252. pcall(function()
  253. settings().Physics.AllowSleep = false
  254. settings().Physics.PhysicsEnvironmentalThrottle = Enum.EnviromentalPhysicsThrottle.Disabled
  255. end)
  256.  
  257. local OLDscripts = {}
  258.  
  259. for i, v in pairs(c:GetDescendants()) do
  260. if v.ClassName == "Script" then
  261. table.insert(OLDscripts, v)
  262. end
  263. end
  264.  
  265. local scriptNames = {}
  266.  
  267. for i, v in pairs(c:GetDescendants()) do
  268. if v:IsA("BasePart") then
  269. local newName = tostring(i)
  270. local exists = true
  271. while exists do
  272. exists = false
  273. for i, v in pairs(OLDscripts) do
  274. if v.Name == newName then
  275. exists = true
  276. end
  277. end
  278. if exists then
  279. newName = newName .. "_"
  280. end
  281. end
  282. table.insert(scriptNames, newName)
  283. Instance.new("Script", v).Name = newName
  284. end
  285. end
  286.  
  287. c.Archivable = true
  288. local hum = c:FindFirstChildOfClass("Humanoid")
  289. if hum then
  290. for i, v in pairs(hum:GetPlayingAnimationTracks()) do
  291. v:Stop()
  292. end
  293. end
  294. local cl = c:Clone()
  295. if hum and humState16 then
  296. hum:ChangeState(Enum.HumanoidStateType.Physics)
  297. if destroyhum then
  298. wait(1.6)
  299. end
  300. end
  301. if hum and hum.Parent and destroyhum then
  302. hum:Destroy()
  303. end
  304.  
  305. if not c then
  306. return
  307. end
  308.  
  309. local head = gp(c, "Head", "BasePart")
  310. local torso = gp(c, "Torso", "BasePart") or gp(c, "UpperTorso", "BasePart")
  311. local root = gp(c, "HumanoidRootPart", "BasePart")
  312. if hatcollide and c:FindFirstChildOfClass("Accessory") then
  313. local anything = c:FindFirstChildOfClass("BodyColors") or gp(c, "Health", "Script")
  314. if not (torso and root and anything) then
  315. return
  316. end
  317. torso:Destroy()
  318. root:Destroy()
  319. if shp then
  320. for i,v in pairs(c:GetChildren()) do
  321. if v:IsA("Accessory") then
  322. shp(v, "BackendAccoutrementState", 0)
  323. end
  324. end
  325. end
  326. anything:Destroy()
  327. if head then
  328. head:Destroy()
  329. end
  330. end
  331.  
  332. for i, v in pairs(cl:GetDescendants()) do
  333. if v:IsA("BasePart") then
  334. v.Transparency = 1
  335. v.Anchored = false
  336. end
  337. end
  338.  
  339. local model = Instance.new("Model", c)
  340. model.Name = model.ClassName
  341.  
  342. model.Destroying:Connect(function()
  343. model = nil
  344. end)
  345.  
  346. for i, v in pairs(c:GetChildren()) do
  347. if v ~= model then
  348. if addtools and v:IsA("Tool") then
  349. for i1, v1 in pairs(v:GetDescendants()) do
  350. if v1 and v1.Parent and v1:IsA("BasePart") then
  351. local bv = Instance.new("BodyVelocity", v1)
  352. bv.Velocity = v3_0
  353. bv.MaxForce = v3(1000, 1000, 1000)
  354. bv.P = 1250
  355. bv.Name = "bv_" .. v.Name
  356. end
  357. end
  358. end
  359. v.Parent = model
  360. end
  361. end
  362.  
  363. if breakjoints then
  364. model:BreakJoints()
  365. else
  366. if head and torso then
  367. for i, v in pairs(model:GetDescendants()) do
  368. if v:IsA("Weld") or v:IsA("Snap") or v:IsA("Glue") or v:IsA("Motor") or v:IsA("Motor6D") then
  369. local save = false
  370. if (v.Part0 == torso) and (v.Part1 == head) then
  371. save = true
  372. end
  373. if (v.Part0 == head) and (v.Part1 == torso) then
  374. save = true
  375. end
  376. if save then
  377. if hedafterneck then
  378. hedafterneck = v
  379. end
  380. else
  381. v:Destroy()
  382. end
  383. end
  384. end
  385. end
  386. if method == 3 then
  387. spawn(function()
  388. wait(loadtime)
  389. if model then
  390. model:BreakJoints()
  391. end
  392. end)
  393. end
  394. end
  395.  
  396. cl.Parent = c
  397. for i, v in pairs(cl:GetChildren()) do
  398. v.Parent = c
  399. end
  400. cl:Destroy()
  401.  
  402. local modelDes = {}
  403. for i, v in pairs(model:GetDescendants()) do
  404. if v:IsA("BasePart") then
  405. i = tostring(i)
  406. v.Destroying:Connect(function()
  407. modelDes[i] = nil
  408. end)
  409. modelDes[i] = v
  410. end
  411. end
  412. local modelcolcon = nil
  413. local function modelcolf()
  414. if model then
  415. for i, v in pairs(modelDes) do
  416. v.CanCollide = false
  417. end
  418. else
  419. modelcolcon:Disconnect()
  420. end
  421. end
  422. modelcolcon = stepped:Connect(modelcolf)
  423. modelcolf()
  424.  
  425. for i, scr in pairs(model:GetDescendants()) do
  426. if (scr.ClassName == "Script") and table.find(scriptNames, scr.Name) then
  427. local Part0 = scr.Parent
  428. if Part0:IsA("BasePart") then
  429. for i1, scr1 in pairs(c:GetDescendants()) do
  430. if (scr1.ClassName == "Script") and (scr1.Name == scr.Name) and (not scr1:IsDescendantOf(model)) then
  431. local Part1 = scr1.Parent
  432. if (Part1.ClassName == Part0.ClassName) and (Part1.Name == Part0.Name) then
  433. align(Part0, Part1)
  434. break
  435. end
  436. end
  437. end
  438. end
  439. end
  440. end
  441.  
  442. if (typeof(hedafterneck) == "Instance") and head then
  443. local aligns = {}
  444. local con = nil
  445. con = hedafterneck.Changed:Connect(function(prop)
  446. if (prop == "Parent") and not hedafterneck.Parent then
  447. con:Disconnect()
  448. for i, v in pairs(aligns) do
  449. v.Enabled = true
  450. end
  451. end
  452. end)
  453. for i, v in pairs(head:GetDescendants()) do
  454. if v:IsA("AlignPosition") or v:IsA("AlignOrientation") then
  455. i = tostring(i)
  456. aligns[i] = v
  457. v.Destroying:Connect(function()
  458. aligns[i] = nil
  459. end)
  460. v.Enabled = false
  461. end
  462. end
  463. end
  464.  
  465. for i, v in pairs(c:GetDescendants()) do
  466. if v and v.Parent then
  467. if v.ClassName == "Script" then
  468. if table.find(scriptNames, v.Name) then
  469. v:Destroy()
  470. end
  471. elseif not v:IsDescendantOf(model) then
  472. if v:IsA("Decal") then
  473. v.Transparency = 1
  474. elseif v:IsA("ForceField") then
  475. v.Visible = false
  476. elseif v:IsA("Sound") then
  477. v.Playing = false
  478. elseif v:IsA("BillboardGui") or v:IsA("SurfaceGui") or v:IsA("ParticleEmitter") or v:IsA("Fire") or v:IsA("Smoke") or v:IsA("Sparkles") then
  479. v.Enabled = false
  480. end
  481. end
  482. end
  483. end
  484.  
  485. if newanimate then
  486. local animate = gp(c, "Animate", "LocalScript")
  487. if animate then
  488. animate.Disabled = false
  489. end
  490. end
  491.  
  492. if addtools then
  493. for i, v in pairs(c:GetChildren()) do
  494. if v:IsA("Tool") then
  495. v.Parent = addtools
  496. end
  497. end
  498. end
  499.  
  500. local hum0 = model:FindFirstChildOfClass("Humanoid")
  501. if hum0 then
  502. hum0.Destroying:Connect(function()
  503. hum0 = nil
  504. end)
  505. end
  506.  
  507. local hum1 = c:FindFirstChildOfClass("Humanoid")
  508. if hum1 then
  509. hum1.Destroying:Connect(function()
  510. hum1 = nil
  511. end)
  512. end
  513.  
  514. if hum1 then
  515. ws.CurrentCamera.CameraSubject = hum1
  516. local camSubCon = nil
  517. local function camSubFunc()
  518. camSubCon:Disconnect()
  519. if c and hum1 then
  520. ws.CurrentCamera.CameraSubject = hum1
  521. end
  522. end
  523. camSubCon = renderstepped:Connect(camSubFunc)
  524. if hum0 then
  525. hum0.Changed:Connect(function(prop)
  526. if hum1 and (prop == "Jump") then
  527. hum1.Jump = hum0.Jump
  528. end
  529. end)
  530. else
  531. respawnrequest()
  532. end
  533. end
  534.  
  535. local rb = Instance.new("BindableEvent", c)
  536. rb.Event:Connect(function()
  537. rb:Destroy()
  538. sg:SetCore("ResetButtonCallback", true)
  539. if destroyhum then
  540. c:BreakJoints()
  541. return
  542. end
  543. if hum0 and (hum0.Health > 0) then
  544. model:BreakJoints()
  545. hum0.Health = 0
  546. end
  547. if antirespawn then
  548. respawnrequest()
  549. end
  550. end)
  551. sg:SetCore("ResetButtonCallback", rb)
  552.  
  553. spawn(function()
  554. while c do
  555. if hum0 and hum1 then
  556. hum1.Jump = hum0.Jump
  557. end
  558. wait()
  559. end
  560. sg:SetCore("ResetButtonCallback", true)
  561. end)
  562.  
  563. R15toR6 = R15toR6 and hum1 and (hum1.RigType == Enum.HumanoidRigType.R15)
  564. if R15toR6 then
  565. local part = gp(c, "HumanoidRootPart", "BasePart") or gp(c, "UpperTorso", "BasePart") or gp(c, "LowerTorso", "BasePart") or gp(c, "Head", "BasePart") or c:FindFirstChildWhichIsA("BasePart")
  566. if part then
  567. local cfr = part.CFrame
  568. local R6parts = {
  569. head = {
  570. Name = "Head",
  571. Size = v3(2, 1, 1),
  572. R15 = {
  573. Head = 0
  574. }
  575. },
  576. torso = {
  577. Name = "Torso",
  578. Size = v3(2, 2, 1),
  579. R15 = {
  580. UpperTorso = 0.2,
  581. LowerTorso = -100
  582. }
  583. },
  584. root = {
  585. Name = "HumanoidRootPart",
  586. Size = v3(2, 2, 1),
  587. R15 = {
  588. HumanoidRootPart = 0
  589. }
  590. },
  591. leftArm = {
  592. Name = "Left Arm",
  593. Size = v3(1, 2, 1),
  594. R15 = {
  595. LeftHand = -0.73,
  596. LeftLowerArm = -0.2,
  597. LeftUpperArm = 0.4
  598. }
  599. },
  600. rightArm = {
  601. Name = "Right Arm",
  602. Size = v3(1, 2, 1),
  603. R15 = {
  604. RightHand = -0.73,
  605. RightLowerArm = -0.2,
  606. RightUpperArm = 0.4
  607. }
  608. },
  609. leftLeg = {
  610. Name = "Left Leg",
  611. Size = v3(1, 2, 1),
  612. R15 = {
  613. LeftFoot = -0.73,
  614. LeftLowerLeg = -0.15,
  615. LeftUpperLeg = 0.6
  616. }
  617. },
  618. rightLeg = {
  619. Name = "Right Leg",
  620. Size = v3(1, 2, 1),
  621. R15 = {
  622. RightFoot = -0.73,
  623. RightLowerLeg = -0.15,
  624. RightUpperLeg = 0.6
  625. }
  626. }
  627. }
  628. for i, v in pairs(c:GetChildren()) do
  629. if v:IsA("BasePart") then
  630. for i1, v1 in pairs(v:GetChildren()) do
  631. if v1:IsA("Motor6D") then
  632. v1.Part0 = nil
  633. end
  634. end
  635. end
  636. end
  637. part.Archivable = true
  638. for i, v in pairs(R6parts) do
  639. local part = part:Clone()
  640. part:ClearAllChildren()
  641. part.Name = v.Name
  642. part.Size = v.Size
  643. part.CFrame = cfr
  644. part.Anchored = false
  645. part.Transparency = 1
  646. part.CanCollide = false
  647. for i1, v1 in pairs(v.R15) do
  648. local R15part = gp(c, i1, "BasePart")
  649. local att = gp(R15part, "att1_" .. i1, "Attachment")
  650. if R15part then
  651. local weld = Instance.new("Weld", R15part)
  652. weld.Name = "Weld_" .. i1
  653. weld.Part0 = part
  654. weld.Part1 = R15part
  655. weld.C0 = cf(0, v1, 0)
  656. weld.C1 = cf(0, 0, 0)
  657. R15part.Massless = true
  658. R15part.Name = "R15_" .. i1
  659. R15part.Parent = part
  660. if att then
  661. att.Parent = part
  662. att.Position = v3(0, v1, 0)
  663. end
  664. end
  665. end
  666. part.Parent = c
  667. R6parts[i] = part
  668. end
  669. local R6joints = {
  670. neck = {
  671. Parent = R6parts.torso,
  672. Name = "Neck",
  673. Part0 = R6parts.torso,
  674. Part1 = R6parts.head,
  675. C0 = cf(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0),
  676. C1 = cf(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  677. },
  678. rootJoint = {
  679. Parent = R6parts.root,
  680. Name = "RootJoint" ,
  681. Part0 = R6parts.root,
  682. Part1 = R6parts.torso,
  683. C0 = cf(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0),
  684. C1 = cf(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  685. },
  686. rightShoulder = {
  687. Parent = R6parts.torso,
  688. Name = "Right Shoulder",
  689. Part0 = R6parts.torso,
  690. Part1 = R6parts.rightArm,
  691. C0 = cf(1, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),
  692. C1 = cf(-0.5, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  693. },
  694. leftShoulder = {
  695. Parent = R6parts.torso,
  696. Name = "Left Shoulder",
  697. Part0 = R6parts.torso,
  698. Part1 = R6parts.leftArm,
  699. C0 = cf(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  700. C1 = cf(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  701. },
  702. rightHip = {
  703. Parent = R6parts.torso,
  704. Name = "Right Hip",
  705. Part0 = R6parts.torso,
  706. Part1 = R6parts.rightLeg,
  707. C0 = cf(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),
  708. C1 = cf(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  709. },
  710. leftHip = {
  711. Parent = R6parts.torso,
  712. Name = "Left Hip" ,
  713. Part0 = R6parts.torso,
  714. Part1 = R6parts.leftLeg,
  715. C0 = cf(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  716. C1 = cf(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  717. }
  718. }
  719. for i, v in pairs(R6joints) do
  720. local joint = Instance.new("Motor6D")
  721. for prop, val in pairs(v) do
  722. joint[prop] = val
  723. end
  724. R6joints[i] = joint
  725. end
  726. hum1.RigType = Enum.HumanoidRigType.R6
  727. hum1.HipHeight = 0
  728. end
  729. end
  730.  
  731.  
  732.  
  733. --find rig joints
  734.  
  735. local function fakemotor()
  736. return {C0=cf(), C1=cf()}
  737. end
  738.  
  739. local torso = gp(c, "Torso", "BasePart")
  740. local root = gp(c, "HumanoidRootPart", "BasePart")
  741.  
  742. local neck = gp(torso, "Neck", "Motor6D")
  743. neck = neck or fakemotor()
  744.  
  745. local rootJoint = gp(root, "RootJoint", "Motor6D")
  746. rootJoint = rootJoint or fakemotor()
  747.  
  748. local leftShoulder = gp(torso, "Left Shoulder", "Motor6D")
  749. leftShoulder = leftShoulder or fakemotor()
  750.  
  751. local rightShoulder = gp(torso, "Right Shoulder", "Motor6D")
  752. rightShoulder = rightShoulder or fakemotor()
  753.  
  754. local leftHip = gp(torso, "Left Hip", "Motor6D")
  755. leftHip = leftHip or fakemotor()
  756.  
  757. local rightHip = gp(torso, "Right Hip", "Motor6D")
  758. rightHip = rightHip or fakemotor()
  759.  
  760. --120 fps
  761.  
  762. local fps = 0
  763. local event = Instance.new("BindableEvent", c)
  764. event.Name = "120 fps"
  765. local floor = math.floor
  766. fps = 1 / fps
  767. local tf = 0
  768. local con = nil
  769. con = game:GetService("RunService").RenderStepped:Connect(function(s)
  770. if not c then
  771. con:Disconnect()
  772. return
  773. end
  774. --tf += s
  775. if tf >= fps then
  776. for i=1, floor(tf / fps) do
  777. event:Fire(c)
  778. end
  779. tf = 0
  780. end
  781. end)
  782. local event = event.Event
  783.  
  784. local hedrot = v3(0, 5, 0)
  785.  
  786. local uis = game:GetService("UserInputService")
  787. local function isPressed(key)
  788. return (not uis:GetFocusedTextBox()) and uis:IsKeyDown(Enum.KeyCode[key])
  789. end
  790.  
  791. local biggesthandle = nil
  792. for i, v in pairs(c:GetChildren()) do
  793. if v:IsA("Accessory") then
  794. local handle = gp(v, "Handle", "BasePart")
  795. if biggesthandle then
  796. if biggesthandle.Size.Magnitude < handle.Size.Magnitude then
  797. biggesthandle = handle
  798. end
  799. else
  800. biggesthandle = gp(v, "Handle", "BasePart")
  801. end
  802. end
  803. end
  804.  
  805. if not biggesthandle then
  806. return
  807. end
  808.  
  809. local handle1 = gp(gp(model, biggesthandle.Parent.Name, "Accessory"), "Handle", "BasePart")
  810. if not handle1 then
  811. return
  812. end
  813.  
  814. handle1.Destroying:Connect(function()
  815. handle1 = nil
  816. end)
  817. biggesthandle.Destroying:Connect(function()
  818. biggesthandle = nil
  819. end)
  820.  
  821. --biggesthandle:BreakJoints()
  822. --biggesthandle.Anchored = true
  823.  
  824. --[[for i, v in pairs(handle1:GetDescendants()) do
  825. if v:IsA("AlignOrientation") then
  826. v.Enabled = false
  827. end
  828. end]]
  829.  
  830. --[[local mouse = lp:GetMouse()
  831. local fling = false
  832. mouse.Button1Down:Connect(function()
  833. fling = true
  834. end)
  835. mouse.Button1Up:Connect(function()
  836. fling = false
  837. end)]]
  838. local function doForSignal(signal, vel)
  839. spawn(function()
  840. while signal:Wait() and c and handle1 and biggesthandle do
  841. if fling and mouse.Target then
  842. biggesthandle.Position = mouse.Hit.Position
  843. end
  844. --handle1.RotVelocity = vel
  845. end
  846. end)
  847. end
  848. doForSignal(stepped, v3(100, 100, 100))
  849. doForSignal(renderstepped, v3(100, 100, 100))
  850. doForSignal(heartbeat, v3(20000, 20000, 20000)) --https://web.roblox.com/catalog/63690008/Pal-Hair
  851.  
  852. local lp = game:GetService("Players").LocalPlayer
  853. local rs = game:GetService("RunService")
  854. local stepped = rs.Stepped
  855. local heartbeat = rs.Heartbeat
  856. local renderstepped = rs.RenderStepped
  857. local sg = game:GetService("StarterGui")
  858. local ws = game:GetService("Workspace")
  859. local cf = CFrame.new
  860. local v3 = Vector3.new
  861. local v3_0 = Vector3.zero
  862. local inf = math.huge
  863.  
  864. local targetAccessory = "SamuraiHat"
  865. local targetHandle = nil
  866. for i, v in pairs(c:GetChildren()) do
  867. if v:IsA("Accessory") and v.Name == targetAccessory then
  868. targetHandle = gp(v, "Handle", "BasePart")
  869. break
  870. end
  871. end
  872.  
  873. if not targetHandle then
  874. return
  875. end
  876.  
  877. local handle1 = gp(gp(model, targetHandle.Parent.Name, "Accessory"), "Handle", "BasePart")
  878. if not handle1 then
  879. return
  880. end
  881.  
  882. handle1.Destroying:Connect(function()
  883. handle1 = nil
  884. end)
  885. targetHandle.Destroying:Connect(function()
  886. targetHandle = nil
  887. end)
  888.  
  889. targetHandle:BreakJoints()
  890. targetHandle.Anchored = true
  891.  
  892. for i, v in pairs(handle1:GetDescendants()) do
  893. if v:IsA("AlignOrientation") then
  894. v.Enabled = false
  895. end
  896. end
  897.  
  898. --local mouse = lp:GetMouse()
  899. --local fling = false
  900. --mouse.Button1Down:Connect(function()
  901. --fling = true
  902. --end)
  903. --mouse.Button1Up:Connect(function()
  904. --fling = false
  905. --end)
  906. local function doForSignal(signal, vel)
  907. spawn(function()
  908. while signal:Wait() and c and handle1 and targetHandle do
  909. if fling and mouse.Target then
  910. targetHandle.Position = mouse.Hit.Position
  911. end
  912. handle1.RotVelocity = vel
  913. end
  914. end)
  915. end
  916.  
  917. doForSignal(stepped, v3(100, 100, 100))
  918. doForSignal(renderstepped, v3(100, 100, 100))
  919. doForSignal(heartbeat, v3(-2000000000000000000, 2000000000000000, 200000000000000))
  920.  
  921.  
  922.  
  923. local cplayer = lp.Character
  924.  
  925. local v3 = Vector3.new
  926.  
  927. local function gp(parent, name, className)
  928. if typeof(parent) == "Instance" then
  929. for i, v in pairs(parent:GetChildren()) do
  930. if (v.Name == name) and v:IsA(className) then
  931. return v
  932. end
  933. end
  934. end
  935. return nil
  936. end
  937.  
  938.  
  939. local hat2 = gp(cplayer, "LUAhEAD", "Accessory")
  940. local handle2 = gp(hat2, "Handle", "BasePart")
  941. local att2 = gp(handle2, "att1_Handle", "Attachment")
  942. att2.Parent = cplayer["Torso"]
  943. att2.Position = Vector3.new(-0, -0.2, 0)
  944. att2.Rotation = Vector3.new(90, 0, 0)
  945.  
  946. local hat2 = gp(cplayer, "Pink Hair", "Accessory")
  947. local handle2 = gp(hat2, "Handle", "BasePart")
  948. local att2 = gp(handle2, "att1_Handle", "Attachment")
  949. att2.Parent = cplayer["Left Arm"]
  950. att2.Position = Vector3.new(0.2, -0.3, 0)
  951. att2.Rotation = Vector3.new(90, 0, 0)
  952.  
  953. local hat2 = gp(cplayer, "Kate Hair", "Accessory")
  954. local handle2 = gp(hat2, "Handle", "BasePart")
  955. local att2 = gp(handle2, "att1_Handle", "Attachment")
  956. att2.Parent = cplayer["Right Arm"]
  957. att2.Position = Vector3.new(-0.2, -0.3, 0)
  958. att2.Rotation = Vector3.new(90, 0, 0) --LavanderHair
  959.  
  960. local hat2 = gp(cplayer, "LavanderHair", "Accessory")
  961. local handle2 = gp(hat2, "Handle", "BasePart")
  962. local att2 = gp(handle2, "att1_Handle", "Attachment")
  963. att2.Parent = cplayer["Right Leg"]
  964. att2.Position = Vector3.new(0, 0, 0) --Robloxclassicred
  965. att2.Rotation = Vector3.new(90, 0, 0)
  966.  
  967. local hat2 = gp(cplayer, "Robloxclassicred", "Accessory")
  968. local handle2 = gp(hat2, "Handle", "BasePart")
  969. local att2 = gp(handle2, "att1_Handle", "Attachment")
  970. att2.Parent = cplayer["Left Leg"]
  971. att2.Position = Vector3.new(-0, 0, 0)
  972. att2.Rotation = Vector3.new(90, 0, 0)
  973.  
  974. Chillmusic = Instance.new("Sound", workspace)
  975. Chillmusic.Parent = game.Chat
  976. Chillmusic.Volume = 8
  977. Chillmusic.SoundId = "rbxassetid://5409360995"
  978. Chillmusic.Looped = true
  979. Chillmusic:Play()
  980.  
  981.  
  982. --- Did actually rework heavily away from original neptunian, and the non-rework neptunian. --NoobyGames12
  983. --- Was supposed to be for the770zone, or VengefulProgram.
  984.  
  985. warn'Neptune/Neptunian V'
  986. warn[[Absolutely.
  987.  
  988. Created by NoobyGames12
  989. ----------------------------]]
  990.  
  991. print[[Set your theme by:
  992. id/
  993. vol/
  994. pitch/
  995. You can skip through the position of theme by:
  996. skipto/]]
  997.  
  998. warn("Have fun using this!")
  999. ---- DO NOT CHANGE ANYTHING BELOW IF YOU'RE NOT AN EDITOR
  1000.  
  1001.  
  1002.  
  1003. function sandbox(var,func)
  1004. local env = getfenv(func)
  1005. local newenv = setmetatable({},{
  1006. __index = function(self,k)
  1007. if k=="script" then
  1008. return var
  1009. else
  1010. return env[k]
  1011. end
  1012. end,
  1013. })
  1014. setfenv(func,newenv)
  1015. return func
  1016. end
  1017. cors = {}
  1018. mas = Instance.new("Model",game:GetService("Lighting"))
  1019. Model0 = Instance.new("Model")
  1020. Part1 = Instance.new("Part")
  1021. SpecialMesh2 = Instance.new("SpecialMesh")
  1022. Part3 = Instance.new("Part")
  1023. SpecialMesh4 = Instance.new("SpecialMesh")
  1024. Weld5 = Instance.new("Weld")
  1025. Weld6 = Instance.new("Weld")
  1026. Weld7 = Instance.new("Weld")
  1027. Weld8 = Instance.new("Weld")
  1028. Weld9 = Instance.new("Weld")
  1029. Weld10 = Instance.new("Weld")
  1030. Weld11 = Instance.new("Weld")
  1031. Weld12 = Instance.new("Weld")
  1032. Weld13 = Instance.new("Weld")
  1033. Weld14 = Instance.new("Weld")
  1034. Weld15 = Instance.new("Weld")
  1035. Weld16 = Instance.new("Weld")
  1036. Weld17 = Instance.new("Weld")
  1037. Weld18 = Instance.new("Weld")
  1038. Weld19 = Instance.new("Weld")
  1039. Weld20 = Instance.new("Weld")
  1040. Weld21 = Instance.new("Weld")
  1041. Weld22 = Instance.new("Weld")
  1042. Weld23 = Instance.new("Weld")
  1043. Weld24 = Instance.new("Weld")
  1044. Weld25 = Instance.new("Weld")
  1045. Weld26 = Instance.new("Weld")
  1046. Weld27 = Instance.new("Weld")
  1047. Weld28 = Instance.new("Weld")
  1048. Weld29 = Instance.new("Weld")
  1049. Weld30 = Instance.new("Weld")
  1050. Weld31 = Instance.new("Weld")
  1051. Weld32 = Instance.new("Weld")
  1052. Weld33 = Instance.new("Weld")
  1053. Weld34 = Instance.new("Weld")
  1054. Weld35 = Instance.new("Weld")
  1055. Weld36 = Instance.new("Weld")
  1056. Weld37 = Instance.new("Weld")
  1057. Weld38 = Instance.new("Weld")
  1058. Weld39 = Instance.new("Weld")
  1059. Weld40 = Instance.new("Weld")
  1060. Weld41 = Instance.new("Weld")
  1061. Weld42 = Instance.new("Weld")
  1062. Weld43 = Instance.new("Weld")
  1063. Weld44 = Instance.new("Weld")
  1064. Weld45 = Instance.new("Weld")
  1065. Weld46 = Instance.new("Weld")
  1066. Weld47 = Instance.new("Weld")
  1067. Weld48 = Instance.new("Weld")
  1068. Weld49 = Instance.new("Weld")
  1069. Weld50 = Instance.new("Weld")
  1070. Weld51 = Instance.new("Weld")
  1071. Weld52 = Instance.new("Weld")
  1072. Weld53 = Instance.new("Weld")
  1073. Weld54 = Instance.new("Weld")
  1074. Weld55 = Instance.new("Weld")
  1075. Weld56 = Instance.new("Weld")
  1076. Weld57 = Instance.new("Weld")
  1077. Weld58 = Instance.new("Weld")
  1078. Weld59 = Instance.new("Weld")
  1079. Weld60 = Instance.new("Weld")
  1080. Weld61 = Instance.new("Weld")
  1081. Weld62 = Instance.new("Weld")
  1082. Weld63 = Instance.new("Weld")
  1083. Weld64 = Instance.new("Weld")
  1084. Weld65 = Instance.new("Weld")
  1085. Weld66 = Instance.new("Weld")
  1086. Weld67 = Instance.new("Weld")
  1087. Weld68 = Instance.new("Weld")
  1088. Weld69 = Instance.new("Weld")
  1089. Weld70 = Instance.new("Weld")
  1090. Weld71 = Instance.new("Weld")
  1091. Weld72 = Instance.new("Weld")
  1092. Weld73 = Instance.new("Weld")
  1093. Weld74 = Instance.new("Weld")
  1094. Weld75 = Instance.new("Weld")
  1095. Weld76 = Instance.new("Weld")
  1096. Weld77 = Instance.new("Weld")
  1097. Weld78 = Instance.new("Weld")
  1098. Weld79 = Instance.new("Weld")
  1099. Weld80 = Instance.new("Weld")
  1100. Weld81 = Instance.new("Weld")
  1101. Weld82 = Instance.new("Weld")
  1102. Weld83 = Instance.new("Weld")
  1103. Weld84 = Instance.new("Weld")
  1104. Weld85 = Instance.new("Weld")
  1105. Weld86 = Instance.new("Weld")
  1106. Weld87 = Instance.new("Weld")
  1107. Weld88 = Instance.new("Weld")
  1108. Weld89 = Instance.new("Weld")
  1109. Weld90 = Instance.new("Weld")
  1110. Weld91 = Instance.new("Weld")
  1111. Weld92 = Instance.new("Weld")
  1112. Weld93 = Instance.new("Weld")
  1113. Weld94 = Instance.new("Weld")
  1114. Weld95 = Instance.new("Weld")
  1115. Weld96 = Instance.new("Weld")
  1116. Weld97 = Instance.new("Weld")
  1117. Weld98 = Instance.new("Weld")
  1118. Weld99 = Instance.new("Weld")
  1119. Weld100 = Instance.new("Weld")
  1120. Weld101 = Instance.new("Weld")
  1121. Weld102 = Instance.new("Weld")
  1122. Weld103 = Instance.new("Weld")
  1123. Weld104 = Instance.new("Weld")
  1124. Weld105 = Instance.new("Weld")
  1125. Weld106 = Instance.new("Weld")
  1126. Weld107 = Instance.new("Weld")
  1127. Weld108 = Instance.new("Weld")
  1128. Weld109 = Instance.new("Weld")
  1129. Weld110 = Instance.new("Weld")
  1130. Weld111 = Instance.new("Weld")
  1131. Weld112 = Instance.new("Weld")
  1132. Weld113 = Instance.new("Weld")
  1133. Weld114 = Instance.new("Weld")
  1134. Weld115 = Instance.new("Weld")
  1135. Weld116 = Instance.new("Weld")
  1136. Weld117 = Instance.new("Weld")
  1137. Weld118 = Instance.new("Weld")
  1138. Weld119 = Instance.new("Weld")
  1139. Weld120 = Instance.new("Weld")
  1140. Weld121 = Instance.new("Weld")
  1141. Weld122 = Instance.new("Weld")
  1142. Weld123 = Instance.new("Weld")
  1143. Weld124 = Instance.new("Weld")
  1144. Weld125 = Instance.new("Weld")
  1145. Weld126 = Instance.new("Weld")
  1146. Weld127 = Instance.new("Weld")
  1147. Weld128 = Instance.new("Weld")
  1148. Weld129 = Instance.new("Weld")
  1149. Weld130 = Instance.new("Weld")
  1150. Weld131 = Instance.new("Weld")
  1151. Weld132 = Instance.new("Weld")
  1152. Weld133 = Instance.new("Weld")
  1153. Weld134 = Instance.new("Weld")
  1154. Weld135 = Instance.new("Weld")
  1155. Weld136 = Instance.new("Weld")
  1156. Weld137 = Instance.new("Weld")
  1157. Weld138 = Instance.new("Weld")
  1158. Weld139 = Instance.new("Weld")
  1159. Weld140 = Instance.new("Weld")
  1160. Weld141 = Instance.new("Weld")
  1161. Weld142 = Instance.new("Weld")
  1162. Weld143 = Instance.new("Weld")
  1163. Weld144 = Instance.new("Weld")
  1164. Weld145 = Instance.new("Weld")
  1165. Weld146 = Instance.new("Weld")
  1166. Weld147 = Instance.new("Weld")
  1167. Weld148 = Instance.new("Weld")
  1168. Weld149 = Instance.new("Weld")
  1169. Weld150 = Instance.new("Weld")
  1170. Weld151 = Instance.new("Weld")
  1171. Weld152 = Instance.new("Weld")
  1172. Weld153 = Instance.new("Weld")
  1173. Weld154 = Instance.new("Weld")
  1174. Weld155 = Instance.new("Weld")
  1175. Weld156 = Instance.new("Weld")
  1176. Weld157 = Instance.new("Weld")
  1177. Weld158 = Instance.new("Weld")
  1178. Weld159 = Instance.new("Weld")
  1179. Weld160 = Instance.new("Weld")
  1180. Weld161 = Instance.new("Weld")
  1181. Weld162 = Instance.new("Weld")
  1182. Part163 = Instance.new("Part")
  1183. SpecialMesh164 = Instance.new("SpecialMesh")
  1184. Part165 = Instance.new("Part")
  1185. SpecialMesh166 = Instance.new("SpecialMesh")
  1186. Part167 = Instance.new("Part")
  1187. SpecialMesh168 = Instance.new("SpecialMesh")
  1188. Part169 = Instance.new("Part")
  1189. SpecialMesh170 = Instance.new("SpecialMesh")
  1190. Part171 = Instance.new("Part")
  1191. SpecialMesh172 = Instance.new("SpecialMesh")
  1192. Part173 = Instance.new("Part")
  1193. SpecialMesh174 = Instance.new("SpecialMesh")
  1194. Part175 = Instance.new("Part")
  1195. SpecialMesh176 = Instance.new("SpecialMesh")
  1196. Part177 = Instance.new("Part")
  1197. SpecialMesh178 = Instance.new("SpecialMesh")
  1198. Part179 = Instance.new("Part")
  1199. SpecialMesh180 = Instance.new("SpecialMesh")
  1200. Part181 = Instance.new("Part")
  1201. SpecialMesh182 = Instance.new("SpecialMesh")
  1202. Part183 = Instance.new("Part")
  1203. SpecialMesh184 = Instance.new("SpecialMesh")
  1204. Part185 = Instance.new("Part")
  1205. SpecialMesh186 = Instance.new("SpecialMesh")
  1206. Part187 = Instance.new("Part")
  1207. SpecialMesh188 = Instance.new("SpecialMesh")
  1208. Part189 = Instance.new("Part")
  1209. SpecialMesh190 = Instance.new("SpecialMesh")
  1210. Part191 = Instance.new("Part")
  1211. SpecialMesh192 = Instance.new("SpecialMesh")
  1212. Part193 = Instance.new("Part")
  1213. SpecialMesh194 = Instance.new("SpecialMesh")
  1214. Part195 = Instance.new("Part")
  1215. SpecialMesh196 = Instance.new("SpecialMesh")
  1216. Part197 = Instance.new("Part")
  1217. SpecialMesh198 = Instance.new("SpecialMesh")
  1218. Part199 = Instance.new("Part")
  1219. SpecialMesh200 = Instance.new("SpecialMesh")
  1220. Part201 = Instance.new("Part")
  1221. SpecialMesh202 = Instance.new("SpecialMesh")
  1222. Part203 = Instance.new("Part")
  1223. SpecialMesh204 = Instance.new("SpecialMesh")
  1224. Part205 = Instance.new("Part")
  1225. SpecialMesh206 = Instance.new("SpecialMesh")
  1226. Part207 = Instance.new("Part")
  1227. SpecialMesh208 = Instance.new("SpecialMesh")
  1228. Part209 = Instance.new("Part")
  1229. SpecialMesh210 = Instance.new("SpecialMesh")
  1230. Part211 = Instance.new("Part")
  1231. SpecialMesh212 = Instance.new("SpecialMesh")
  1232. Part213 = Instance.new("Part")
  1233. SpecialMesh214 = Instance.new("SpecialMesh")
  1234. Part215 = Instance.new("Part")
  1235. SpecialMesh216 = Instance.new("SpecialMesh")
  1236. Part217 = Instance.new("Part")
  1237. SpecialMesh218 = Instance.new("SpecialMesh")
  1238. Part219 = Instance.new("Part")
  1239. SpecialMesh220 = Instance.new("SpecialMesh")
  1240. Part221 = Instance.new("Part")
  1241. SpecialMesh222 = Instance.new("SpecialMesh")
  1242. Part223 = Instance.new("Part")
  1243. SpecialMesh224 = Instance.new("SpecialMesh")
  1244. Part225 = Instance.new("Part")
  1245. SpecialMesh226 = Instance.new("SpecialMesh")
  1246. Part227 = Instance.new("Part")
  1247. SpecialMesh228 = Instance.new("SpecialMesh")
  1248. Part229 = Instance.new("Part")
  1249. SpecialMesh230 = Instance.new("SpecialMesh")
  1250. Part231 = Instance.new("Part")
  1251. SpecialMesh232 = Instance.new("SpecialMesh")
  1252. Part233 = Instance.new("Part")
  1253. SpecialMesh234 = Instance.new("SpecialMesh")
  1254. Part235 = Instance.new("Part")
  1255. SpecialMesh236 = Instance.new("SpecialMesh")
  1256. Part237 = Instance.new("Part")
  1257. SpecialMesh238 = Instance.new("SpecialMesh")
  1258. Part239 = Instance.new("Part")
  1259. SpecialMesh240 = Instance.new("SpecialMesh")
  1260. Part241 = Instance.new("Part")
  1261. SpecialMesh242 = Instance.new("SpecialMesh")
  1262. Part243 = Instance.new("Part")
  1263. SpecialMesh244 = Instance.new("SpecialMesh")
  1264. Part245 = Instance.new("Part")
  1265. SpecialMesh246 = Instance.new("SpecialMesh")
  1266. Part247 = Instance.new("Part")
  1267. SpecialMesh248 = Instance.new("SpecialMesh")
  1268. Part249 = Instance.new("Part")
  1269. SpecialMesh250 = Instance.new("SpecialMesh")
  1270. Part251 = Instance.new("Part")
  1271. SpecialMesh252 = Instance.new("SpecialMesh")
  1272. Part253 = Instance.new("Part")
  1273. SpecialMesh254 = Instance.new("SpecialMesh")
  1274. Part255 = Instance.new("Part")
  1275. SpecialMesh256 = Instance.new("SpecialMesh")
  1276. Part257 = Instance.new("Part")
  1277. SpecialMesh258 = Instance.new("SpecialMesh")
  1278. Part259 = Instance.new("Part")
  1279. SpecialMesh260 = Instance.new("SpecialMesh")
  1280. Part261 = Instance.new("Part")
  1281. SpecialMesh262 = Instance.new("SpecialMesh")
  1282. Part263 = Instance.new("Part")
  1283. SpecialMesh264 = Instance.new("SpecialMesh")
  1284. Part265 = Instance.new("Part")
  1285. SpecialMesh266 = Instance.new("SpecialMesh")
  1286. Part267 = Instance.new("Part")
  1287. SpecialMesh268 = Instance.new("SpecialMesh")
  1288. Part269 = Instance.new("Part")
  1289. SpecialMesh270 = Instance.new("SpecialMesh")
  1290. Part271 = Instance.new("Part")
  1291. SpecialMesh272 = Instance.new("SpecialMesh")
  1292. Part273 = Instance.new("Part")
  1293. SpecialMesh274 = Instance.new("SpecialMesh")
  1294. Part275 = Instance.new("Part")
  1295. SpecialMesh276 = Instance.new("SpecialMesh")
  1296. Part277 = Instance.new("Part")
  1297. SpecialMesh278 = Instance.new("SpecialMesh")
  1298. Part279 = Instance.new("Part")
  1299. SpecialMesh280 = Instance.new("SpecialMesh")
  1300. Part281 = Instance.new("Part")
  1301. SpecialMesh282 = Instance.new("SpecialMesh")
  1302. Part283 = Instance.new("Part")
  1303. SpecialMesh284 = Instance.new("SpecialMesh")
  1304. Part285 = Instance.new("Part")
  1305. SpecialMesh286 = Instance.new("SpecialMesh")
  1306. Part287 = Instance.new("Part")
  1307. SpecialMesh288 = Instance.new("SpecialMesh")
  1308. Part289 = Instance.new("Part")
  1309. SpecialMesh290 = Instance.new("SpecialMesh")
  1310. Part291 = Instance.new("Part")
  1311. SpecialMesh292 = Instance.new("SpecialMesh")
  1312. Part293 = Instance.new("Part")
  1313. SpecialMesh294 = Instance.new("SpecialMesh")
  1314. Part295 = Instance.new("Part")
  1315. SpecialMesh296 = Instance.new("SpecialMesh")
  1316. Part297 = Instance.new("Part")
  1317. SpecialMesh298 = Instance.new("SpecialMesh")
  1318. Part299 = Instance.new("Part")
  1319. SpecialMesh300 = Instance.new("SpecialMesh")
  1320. Part301 = Instance.new("Part")
  1321. SpecialMesh302 = Instance.new("SpecialMesh")
  1322. Part303 = Instance.new("Part")
  1323. SpecialMesh304 = Instance.new("SpecialMesh")
  1324. Part305 = Instance.new("Part")
  1325. SpecialMesh306 = Instance.new("SpecialMesh")
  1326. Part307 = Instance.new("Part")
  1327. SpecialMesh308 = Instance.new("SpecialMesh")
  1328. Part309 = Instance.new("Part")
  1329. SpecialMesh310 = Instance.new("SpecialMesh")
  1330. Part311 = Instance.new("Part")
  1331. SpecialMesh312 = Instance.new("SpecialMesh")
  1332. Part313 = Instance.new("Part")
  1333. SpecialMesh314 = Instance.new("SpecialMesh")
  1334. Part315 = Instance.new("Part")
  1335. SpecialMesh316 = Instance.new("SpecialMesh")
  1336. Part317 = Instance.new("Part")
  1337. SpecialMesh318 = Instance.new("SpecialMesh")
  1338. Part319 = Instance.new("Part")
  1339. SpecialMesh320 = Instance.new("SpecialMesh")
  1340. Part321 = Instance.new("Part")
  1341. SpecialMesh322 = Instance.new("SpecialMesh")
  1342. Part323 = Instance.new("Part")
  1343. SpecialMesh324 = Instance.new("SpecialMesh")
  1344. Part325 = Instance.new("Part")
  1345. SpecialMesh326 = Instance.new("SpecialMesh")
  1346. Part327 = Instance.new("Part")
  1347. SpecialMesh328 = Instance.new("SpecialMesh")
  1348. Part329 = Instance.new("Part")
  1349. SpecialMesh330 = Instance.new("SpecialMesh")
  1350. Part331 = Instance.new("Part")
  1351. SpecialMesh332 = Instance.new("SpecialMesh")
  1352. Part333 = Instance.new("Part")
  1353. SpecialMesh334 = Instance.new("SpecialMesh")
  1354. Part335 = Instance.new("Part")
  1355. SpecialMesh336 = Instance.new("SpecialMesh")
  1356. Part337 = Instance.new("Part")
  1357. SpecialMesh338 = Instance.new("SpecialMesh")
  1358. Part339 = Instance.new("Part")
  1359. SpecialMesh340 = Instance.new("SpecialMesh")
  1360. Part341 = Instance.new("Part")
  1361. SpecialMesh342 = Instance.new("SpecialMesh")
  1362. Part343 = Instance.new("Part")
  1363. SpecialMesh344 = Instance.new("SpecialMesh")
  1364. Part345 = Instance.new("Part")
  1365. SpecialMesh346 = Instance.new("SpecialMesh")
  1366. Part347 = Instance.new("Part")
  1367. SpecialMesh348 = Instance.new("SpecialMesh")
  1368. Part349 = Instance.new("Part")
  1369. SpecialMesh350 = Instance.new("SpecialMesh")
  1370. Part351 = Instance.new("Part")
  1371. SpecialMesh352 = Instance.new("SpecialMesh")
  1372. Part353 = Instance.new("Part")
  1373. SpecialMesh354 = Instance.new("SpecialMesh")
  1374. Part355 = Instance.new("Part")
  1375. SpecialMesh356 = Instance.new("SpecialMesh")
  1376. Part357 = Instance.new("Part")
  1377. SpecialMesh358 = Instance.new("SpecialMesh")
  1378. Part359 = Instance.new("Part")
  1379. SpecialMesh360 = Instance.new("SpecialMesh")
  1380. Part361 = Instance.new("Part")
  1381. SpecialMesh362 = Instance.new("SpecialMesh")
  1382. Part363 = Instance.new("Part")
  1383. SpecialMesh364 = Instance.new("SpecialMesh")
  1384. Part365 = Instance.new("Part")
  1385. SpecialMesh366 = Instance.new("SpecialMesh")
  1386. Part367 = Instance.new("Part")
  1387. SpecialMesh368 = Instance.new("SpecialMesh")
  1388. Part369 = Instance.new("Part")
  1389. SpecialMesh370 = Instance.new("SpecialMesh")
  1390. Part371 = Instance.new("Part")
  1391. SpecialMesh372 = Instance.new("SpecialMesh")
  1392. Part373 = Instance.new("Part")
  1393. SpecialMesh374 = Instance.new("SpecialMesh")
  1394. Part375 = Instance.new("Part")
  1395. SpecialMesh376 = Instance.new("SpecialMesh")
  1396. Part377 = Instance.new("Part")
  1397. SpecialMesh378 = Instance.new("SpecialMesh")
  1398. Part379 = Instance.new("Part")
  1399. SpecialMesh380 = Instance.new("SpecialMesh")
  1400. Part381 = Instance.new("Part")
  1401. SpecialMesh382 = Instance.new("SpecialMesh")
  1402. Part383 = Instance.new("Part")
  1403. SpecialMesh384 = Instance.new("SpecialMesh")
  1404. Part385 = Instance.new("Part")
  1405. SpecialMesh386 = Instance.new("SpecialMesh")
  1406. Part387 = Instance.new("Part")
  1407. SpecialMesh388 = Instance.new("SpecialMesh")
  1408. Part389 = Instance.new("Part")
  1409. SpecialMesh390 = Instance.new("SpecialMesh")
  1410. Part391 = Instance.new("Part")
  1411. SpecialMesh392 = Instance.new("SpecialMesh")
  1412. Part393 = Instance.new("Part")
  1413. SpecialMesh394 = Instance.new("SpecialMesh")
  1414. Part395 = Instance.new("Part")
  1415. SpecialMesh396 = Instance.new("SpecialMesh")
  1416. Part397 = Instance.new("Part")
  1417. SpecialMesh398 = Instance.new("SpecialMesh")
  1418. Part399 = Instance.new("Part")
  1419. SpecialMesh400 = Instance.new("SpecialMesh")
  1420. Part401 = Instance.new("Part")
  1421. SpecialMesh402 = Instance.new("SpecialMesh")
  1422. Part403 = Instance.new("Part")
  1423. SpecialMesh404 = Instance.new("SpecialMesh")
  1424. Part405 = Instance.new("Part")
  1425. SpecialMesh406 = Instance.new("SpecialMesh")
  1426. Part407 = Instance.new("Part")
  1427. SpecialMesh408 = Instance.new("SpecialMesh")
  1428. Part409 = Instance.new("Part")
  1429. SpecialMesh410 = Instance.new("SpecialMesh")
  1430. Part411 = Instance.new("Part")
  1431. SpecialMesh412 = Instance.new("SpecialMesh")
  1432. Part413 = Instance.new("Part")
  1433. SpecialMesh414 = Instance.new("SpecialMesh")
  1434. Part415 = Instance.new("Part")
  1435. SpecialMesh416 = Instance.new("SpecialMesh")
  1436. Part417 = Instance.new("Part")
  1437. SpecialMesh418 = Instance.new("SpecialMesh")
  1438. Part419 = Instance.new("Part")
  1439. SpecialMesh420 = Instance.new("SpecialMesh")
  1440. Part421 = Instance.new("Part")
  1441. SpecialMesh422 = Instance.new("SpecialMesh")
  1442. Part423 = Instance.new("Part")
  1443. SpecialMesh424 = Instance.new("SpecialMesh")
  1444. Part425 = Instance.new("Part")
  1445. SpecialMesh426 = Instance.new("SpecialMesh")
  1446. Part427 = Instance.new("Part")
  1447. SpecialMesh428 = Instance.new("SpecialMesh")
  1448. Part429 = Instance.new("Part")
  1449. SpecialMesh430 = Instance.new("SpecialMesh")
  1450. Part431 = Instance.new("Part")
  1451. SpecialMesh432 = Instance.new("SpecialMesh")
  1452. Part433 = Instance.new("Part")
  1453. SpecialMesh434 = Instance.new("SpecialMesh")
  1454. Part435 = Instance.new("Part")
  1455. SpecialMesh436 = Instance.new("SpecialMesh")
  1456. Part437 = Instance.new("Part")
  1457. SpecialMesh438 = Instance.new("SpecialMesh")
  1458. Part439 = Instance.new("Part")
  1459. SpecialMesh440 = Instance.new("SpecialMesh")
  1460. Part441 = Instance.new("Part")
  1461. SpecialMesh442 = Instance.new("SpecialMesh")
  1462. Part443 = Instance.new("Part")
  1463. SpecialMesh444 = Instance.new("SpecialMesh")
  1464. Part445 = Instance.new("Part")
  1465. SpecialMesh446 = Instance.new("SpecialMesh")
  1466. Part447 = Instance.new("Part")
  1467. SpecialMesh448 = Instance.new("SpecialMesh")
  1468. Part449 = Instance.new("Part")
  1469. SpecialMesh450 = Instance.new("SpecialMesh")
  1470. Part451 = Instance.new("Part")
  1471. SpecialMesh452 = Instance.new("SpecialMesh")
  1472. Part453 = Instance.new("Part")
  1473. SpecialMesh454 = Instance.new("SpecialMesh")
  1474. Part455 = Instance.new("Part")
  1475. SpecialMesh456 = Instance.new("SpecialMesh")
  1476. Part457 = Instance.new("Part")
  1477. SpecialMesh458 = Instance.new("SpecialMesh")
  1478. Part459 = Instance.new("Part")
  1479. SpecialMesh460 = Instance.new("SpecialMesh")
  1480. Part461 = Instance.new("Part")
  1481. SpecialMesh462 = Instance.new("SpecialMesh")
  1482. Part463 = Instance.new("Part")
  1483. SpecialMesh464 = Instance.new("SpecialMesh")
  1484. Part465 = Instance.new("Part")
  1485. SpecialMesh466 = Instance.new("SpecialMesh")
  1486. Part467 = Instance.new("Part")
  1487. SpecialMesh468 = Instance.new("SpecialMesh")
  1488. Part469 = Instance.new("Part")
  1489. SpecialMesh470 = Instance.new("SpecialMesh")
  1490. Part471 = Instance.new("Part")
  1491. SpecialMesh472 = Instance.new("SpecialMesh")
  1492. Part473 = Instance.new("Part")
  1493. SpecialMesh474 = Instance.new("SpecialMesh")
  1494. Part475 = Instance.new("Part")
  1495. SpecialMesh476 = Instance.new("SpecialMesh")
  1496. Model0.Parent = mas
  1497. Part1.Parent = Model0
  1498. Part1.CFrame = CFrame.new(-0.612978518, 3.52787709, -14.4877329, 0.999985635, -0.00299202278, 0.00444748998, 0.00513700023, 0.297964603, -0.95456326, 0.00153088011, 0.95457232, 0.297975689)
  1499. Part1.Orientation = Vector3.new(72.659996, 0.859999955, 0.98999995)
  1500. Part1.Position = Vector3.new(-0.612978518, 3.52787709, -14.4877329)
  1501. Part1.Rotation = Vector3.new(72.659996, 0.25, 0.170000002)
  1502. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1503. Part1.Velocity = Vector3.new(1.29135582e-08, 0.00246586069, 1.6969787e-07)
  1504. Part1.Size = Vector3.new(0.275000006, 0.22512494, 0.42337501)
  1505. Part1.Anchored = true
  1506. Part1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1507. Part1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1508. Part1.BrickColor = BrickColor.new("Really black")
  1509. Part1.CanCollide = false
  1510. Part1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1511. Part1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. Part1.Material = Enum.Material.Metal
  1513. Part1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. Part1.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  1515. Part1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. Part1.brickColor = BrickColor.new("Really black")
  1517. SpecialMesh2.Parent = Part1
  1518. SpecialMesh2.Scale = Vector3.new(0.400000006, 1, 0.5)
  1519. SpecialMesh2.MeshType = Enum.MeshType.Brick
  1520. Part3.Parent = Model0
  1521. Part3.CFrame = CFrame.new(-0.608517408, 2.57421446, -14.2038746, 0.999985635, 0.00162795268, -0.00510686403, 0.0051367972, -0.0189460143, 0.999807417, 0.00153088395, -0.999819279, -0.0189541057)
  1522. Part3.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  1523. Part3.Position = Vector3.new(-0.608517408, 2.57421446, -14.2038746)
  1524. Part3.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  1525. Part3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1526. Part3.Velocity = Vector3.new(1.6413172e-07, 0.00246645301, 2.15686623e-06)
  1527. Part3.Size = Vector3.new(0.275000006, 0.315999985, 0.303375006)
  1528. Part3.Anchored = true
  1529. Part3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. Part3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. Part3.BrickColor = BrickColor.new("Really black")
  1532. Part3.CanCollide = false
  1533. Part3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. Part3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1535. Part3.Material = Enum.Material.Glass
  1536. Part3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1537. Part3.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  1538. Part3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1539. Part3.brickColor = BrickColor.new("Really black")
  1540. SpecialMesh4.Parent = Part3
  1541. SpecialMesh4.Scale = Vector3.new(0.5, 1, 0.5)
  1542. SpecialMesh4.MeshType = Enum.MeshType.Wedge
  1543. Weld5.Name = "BTWeld"
  1544. Weld5.Parent = Part3
  1545. Weld5.C1 = CFrame.new(1.78813934e-06, -0.442868233, -0.256871939, -1, 2.08499841e-07, 2.3712164e-07, -2.08849087e-07, -1.00000024, 0, 2.39566361e-07, 1.86264515e-09, 1.00000024)
  1546. Weld5.Part0 = Part3
  1547. Weld5.Part1 = Part441
  1548. Weld5.part1 = Part441
  1549. Weld6.Name = "BTWeld"
  1550. Weld6.Parent = Part3
  1551. Weld6.C1 = CFrame.new(2.8014183e-06, 0.12912178, 0.434119463, -1, -2.32830644e-10, 3.05299181e-08, 2.32830644e-10, 1.00000024, 1.80676579e-07, -3.2619937e-08, 1.76951289e-07, -1.00000024)
  1552. Weld6.Part0 = Part3
  1553. Weld6.Part1 = Part323
  1554. Weld6.part1 = Part323
  1555. Weld7.Name = "BTWeld"
  1556. Weld7.Parent = Part3
  1557. Weld7.C1 = CFrame.new(-3.09944153e-06, -0.192704201, -0.62885952, 1, 8.96397978e-08, 1.20697223e-07, -8.91741365e-08, 1.00000024, 1.78813934e-07, -1.1825432e-07, -1.78813934e-07, 1.00000024)
  1558. Weld7.Part0 = Part3
  1559. Weld7.Part1 = Part371
  1560. Weld7.part1 = Part371
  1561. Weld8.Name = "BTWeld"
  1562. Weld8.Parent = Part3
  1563. Weld8.C1 = CFrame.new(-2.86102295e-06, 0.0544996262, -0.312496185, 1, 2.32830644e-10, 1.14778231e-09, 2.32830644e-10, 1.00000024, 1.86264515e-09, 1.14778231e-09, 1.86264515e-09, 1.00000024)
  1564. Weld8.Part0 = Part3
  1565. Weld8.Part1 = Part167
  1566. Weld8.part1 = Part167
  1567. Weld9.Name = "BTWeld"
  1568. Weld9.Parent = Part3
  1569. Weld9.C1 = CFrame.new(3.63588333e-06, -2.63571262, -0.638117313, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  1570. Weld9.Part0 = Part3
  1571. Weld9.Part1 = Part177
  1572. Weld9.part1 = Part177
  1573. Weld10.Name = "BTWeld"
  1574. Weld10.Parent = Part3
  1575. Weld10.C1 = CFrame.new(-2.98023224e-06, -0.077252388, -0.223499537, 1, 2.32830644e-10, 1.14778231e-09, 2.32830644e-10, 1.00000024, 1.86264515e-09, 1.14778231e-09, 1.86264515e-09, 1.00000024)
  1576. Weld10.Part0 = Part3
  1577. Weld10.Part1 = Part277
  1578. Weld10.part1 = Part277
  1579. Weld11.Name = "BTWeld"
  1580. Weld11.Parent = Part3
  1581. Weld11.C1 = CFrame.new(1.90734863e-06, -0.629117966, -0.531242609, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  1582. Weld11.Part0 = Part3
  1583. Weld11.Part1 = Part427
  1584. Weld11.part1 = Part427
  1585. Weld12.Name = "BTWeld"
  1586. Weld12.Parent = Part3
  1587. Weld12.C1 = CFrame.new(3.87430191e-06, -1.56084347, -0.606865883, -1, 2.08499841e-07, 1.81222276e-07, -2.08849087e-07, -1.00000024, 0, 1.83687007e-07, 1.86264515e-09, 1.00000024)
  1588. Weld12.Part0 = Part3
  1589. Weld12.Part1 = Part209
  1590. Weld12.part1 = Part209
  1591. Weld13.Name = "BTWeld"
  1592. Weld13.Parent = Part3
  1593. Weld13.C1 = CFrame.new(-1.66893005e-06, -0.394741058, 0.453120232, 1, -1.19092874e-07, -2.68964868e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, -2.71322278e-07, 5.77419996e-08, -1.00000024)
  1594. Weld13.Part0 = Part3
  1595. Weld13.Part1 = Part265
  1596. Weld13.part1 = Part265
  1597. Weld14.Name = "BTWeld"
  1598. Weld14.Parent = Part3
  1599. Weld14.C1 = CFrame.new(-3.51667404e-06, -3.62178516, 0.128079414, 1, 2.32830644e-10, -2.82076144e-07, 4.92436811e-08, -0.984807968, 0.173648342, -2.7945498e-07, -0.173648342, -0.984807968)
  1600. Weld14.Part0 = Part3
  1601. Weld14.Part1 = Part445
  1602. Weld14.part1 = Part445
  1603. Weld15.Name = "BTWeld"
  1604. Weld15.Parent = Part3
  1605. Weld15.C1 = CFrame.new(1.7285347e-06, -0.568753242, -0.743589878, -1, 1.18976459e-07, 3.28123861e-07, -1.1944212e-07, -1.00000024, -8.94069672e-08, 3.30041075e-07, -8.7544322e-08, 1.00000024)
  1606. Weld15.Part0 = Part3
  1607. Weld15.Part1 = Part175
  1608. Weld15.part1 = Part175
  1609. Weld16.Name = "BTWeld"
  1610. Weld16.Parent = Part3
  1611. Weld16.C1 = CFrame.new(-0.568752289, -0.0312482715, 1.24358273, -5.98374754e-08, -1.00000024, 0, -1, 5.93718141e-08, 3.27925591e-07, -3.30370312e-07, -1.86264515e-09, -1.00000024)
  1612. Weld16.Part0 = Part3
  1613. Weld16.Part1 = Part433
  1614. Weld16.part1 = Part433
  1615. Weld17.Name = "BTWeld"
  1616. Weld17.Parent = Part3
  1617. Weld17.C1 = CFrame.new(1.7285347e-06, -0.568753242, -0.743589878, -1, 1.18976459e-07, 3.28123861e-07, -1.1944212e-07, -1.00000024, -8.94069672e-08, 3.30041075e-07, -8.7544322e-08, 1.00000024)
  1618. Weld17.Part0 = Part3
  1619. Weld17.Part1 = Part417
  1620. Weld17.part1 = Part417
  1621. Weld18.Name = "BTWeld"
  1622. Weld18.Parent = Part3
  1623. Weld18.C1 = CFrame.new(-3.09944153e-06, -0.364574432, -0.628859282, 1, 8.96397978e-08, 1.20697223e-07, -8.91741365e-08, 1.00000024, 1.78813934e-07, -1.1825432e-07, -1.78813934e-07, 1.00000024)
  1624. Weld18.Part0 = Part3
  1625. Weld18.Part1 = Part295
  1626. Weld18.part1 = Part295
  1627. Weld19.Name = "BTWeld"
  1628. Weld19.Parent = Part3
  1629. Weld19.C1 = CFrame.new(3.93390656e-06, -3.33387375, 1.42912102, -1, 2.08499841e-07, 7.08205334e-08, -1.35507435e-07, -0.838670611, 0.544639409, 1.75263267e-07, 0.544639468, 0.838670611)
  1630. Weld19.Part0 = Part3
  1631. Weld19.Part1 = Part165
  1632. Weld19.part1 = Part165
  1633. Weld20.Name = "BTWeld"
  1634. Weld20.Parent = Part3
  1635. Weld20.C1 = CFrame.new(1.78813934e-07, -3.38045502, 0.755048752, 1, 2.32830644e-10, -2.6903399e-07, -2.32830644e-10, -1.00000024, 8.7544322e-08, -2.71093086e-07, -9.12696123e-08, -1.00000024)
  1636. Weld20.Part0 = Part3
  1637. Weld20.Part1 = Part315
  1638. Weld20.part1 = Part315
  1639. Weld21.Name = "BTWeld"
  1640. Weld21.Parent = Part3
  1641. Weld21.C1 = CFrame.new(0.522247314, -0.031253159, 0.449784279, 2.578774e-06, -0.500000775, -0.866025329, 1, 2.96742655e-06, 1.26622399e-06, 1.93726737e-06, -0.866025329, 0.500000715)
  1642. Weld21.Part0 = Part3
  1643. Weld21.Part1 = Part457
  1644. Weld21.part1 = Part457
  1645. Weld22.Name = "BTWeld"
  1646. Weld22.Parent = Part3
  1647. Weld22.C1 = CFrame.new(-3.03983688e-06, -0.26757431, -0.628857851, 1, 8.96397978e-08, 1.20697223e-07, -8.91741365e-08, 1.00000024, 1.78813934e-07, -1.1825432e-07, -1.78813934e-07, 1.00000024)
  1648. Weld22.Part0 = Part3
  1649. Weld22.Part1 = Part363
  1650. Weld22.part1 = Part363
  1651. Weld23.Name = "BTWeld"
  1652. Weld23.Parent = Part3
  1653. Weld23.C1 = CFrame.new(-3.03983688e-06, 0.579193592, -0.519788742, 1, 2.08732672e-07, 7.35781214e-08, -9.66247171e-08, 0.707106471, -0.707107365, -1.97673216e-07, 0.707107365, 0.707106471)
  1654. Weld23.Part0 = Part3
  1655. Weld23.Part1 = Part429
  1656. Weld23.part1 = Part429
  1657. Weld24.Name = "BTWeld"
  1658. Weld24.Parent = Part3
  1659. Weld24.C1 = CFrame.new(3.57627869e-06, -2.7432127, -0.596743584, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  1660. Weld24.Part0 = Part3
  1661. Weld24.Part1 = Part253
  1662. Weld24.part1 = Part253
  1663. Weld25.Name = "BTWeld"
  1664. Weld25.Parent = Part3
  1665. Weld25.C1 = CFrame.new(-5.96046448e-08, -0.0365514755, -0.0244483948, -1, 2.08383426e-07, 3.34477591e-07, -3.4889672e-07, -0.866025686, -0.49999994, 1.87254045e-07, -0.499999881, 0.866025686)
  1666. Weld25.Part0 = Part3
  1667. Weld25.Part1 = Part383
  1668. Weld25.part1 = Part383
  1669. Weld26.Name = "BTWeld"
  1670. Weld26.Parent = Part3
  1671. Weld26.C1 = CFrame.new(0.0437097549, -0.0312481523, 1.49426508, -1.02329068e-07, -0.707107306, -0.707106531, -1, -1.1047814e-07, 2.52499376e-07, -2.57976353e-07, 0.70710659, -0.707107306)
  1672. Weld26.Part0 = Part3
  1673. Weld26.Part1 = Part289
  1674. Weld26.part1 = Part289
  1675. Weld27.Name = "BTWeld"
  1676. Weld27.Parent = Part3
  1677. Weld27.C1 = CFrame.new(-0.390325546, -0.0312492251, 0.188101292, 1.53668225e-07, 0.866025686, 0.5, -1, 1.49011612e-07, 4.73319233e-08, -3.19560058e-08, -0.49999994, 0.866025686)
  1678. Weld27.Part0 = Part3
  1679. Weld27.Part1 = Part465
  1680. Weld27.part1 = Part465
  1681. Weld28.Name = "BTWeld"
  1682. Weld28.Parent = Part3
  1683. Weld28.C1 = CFrame.new(3.69548798e-06, 1.39622211, 0.606865406, -1, -8.95233825e-08, 3.02316039e-08, -8.91741365e-08, 1.00000024, -8.94069672e-08, -3.26745067e-08, -9.12696123e-08, -1.00000024)
  1684. Weld28.Part0 = Part3
  1685. Weld28.Part1 = Part325
  1686. Weld28.part1 = Part325
  1687. Weld29.Name = "BTWeld"
  1688. Weld29.Parent = Part3
  1689. Weld29.C1 = CFrame.new(-3.03983688e-06, -0.0283536911, -0.593729019, 1, 8.95233825e-08, 4.61641321e-08, -6.54254109e-08, 0.923879802, -0.382683307, -7.52625056e-08, 0.382683337, 0.923879921)
  1690. Weld29.Part0 = Part3
  1691. Weld29.Part1 = Part435
  1692. Weld29.part1 = Part435
  1693. Weld30.Name = "BTWeld"
  1694. Weld30.Parent = Part3
  1695. Weld30.C1 = CFrame.new(-2.98023224e-06, 0.0857448578, -0.331493855, 1, 2.32830644e-10, 1.14778231e-09, 2.32830644e-10, 1.00000024, 1.86264515e-09, 1.14778231e-09, 1.86264515e-09, 1.00000024)
  1696. Weld30.Part0 = Part3
  1697. Weld30.Part1 = Part297
  1698. Weld30.part1 = Part297
  1699. Weld31.Name = "BTWeld"
  1700. Weld31.Parent = Part3
  1701. Weld31.C1 = CFrame.new(2.98023224e-06, 0.0857439041, 0.434119463, -1, -2.32830644e-10, -8.87230271e-08, 2.32830644e-10, 1.00000024, 1.86264515e-09, 8.63965397e-08, -1.86264515e-09, -1.00000024)
  1702. Weld31.Part0 = Part3
  1703. Weld31.Part1 = Part403
  1704. Weld31.part1 = Part403
  1705. Weld32.Name = "BTWeld"
  1706. Weld32.Parent = Part3
  1707. Weld32.C1 = CFrame.new(3.69548798e-06, -1.12822342, -0.591116667, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  1708. Weld32.Part0 = Part3
  1709. Weld32.Part1 = Part317
  1710. Weld32.part1 = Part317
  1711. Weld33.Name = "BTWeld"
  1712. Weld33.Parent = Part3
  1713. Weld33.C1 = CFrame.new(-3.57627869e-06, 1.17320824, 0.736830235, 1, -1.19092874e-07, 2.04781827e-07, -1.19325705e-07, -1.00000024, 2.68220901e-07, 2.03222953e-07, -2.68220901e-07, -1.00000024)
  1714. Weld33.Part0 = Part3
  1715. Weld33.Part1 = Part171
  1716. Weld33.part1 = Part171
  1717. Weld34.Name = "BTWeld"
  1718. Weld34.Parent = Part3
  1719. Weld34.C1 = CFrame.new(3.51667404e-06, -2.70561504, -1.06026649, -1, 1.18976459e-07, 3.69582267e-07, -1.82189979e-07, -0.984807968, -0.173648283, 3.45506123e-07, -0.173648298, 0.984807968)
  1720. Weld34.Part0 = Part3
  1721. Weld34.Part1 = Part251
  1722. Weld34.part1 = Part251
  1723. Weld35.Name = "BTWeld"
  1724. Weld35.Parent = Part3
  1725. Weld35.C1 = CFrame.new(0.568753242, -0.0312516689, 1.24358273, 1.1944212e-07, 1.00000024, 0, 1, -1.18976459e-07, -3.28123861e-07, -3.30370312e-07, -1.86264515e-09, -1.00000024)
  1726. Weld35.Part0 = Part3
  1727. Weld35.Part1 = Part443
  1728. Weld35.part1 = Part443
  1729. Weld36.Name = "BTWeld"
  1730. Weld36.Parent = Part3
  1731. Weld36.C1 = CFrame.new(-0.00166904926, -3.09995842, -0.665301085, -1, -2.32830644e-10, 6.22057996e-08, -1.16415322e-10, -1.00000024, -6.14672899e-08, 6.45686669e-08, -5.77419996e-08, 1.00000024)
  1732. Weld36.Part0 = Part3
  1733. Weld36.Part1 = Part243
  1734. Weld36.part1 = Part243
  1735. Weld37.Name = "BTWeld"
  1736. Weld37.Parent = Part3
  1737. Weld37.C1 = CFrame.new(-1.3257277, -0.0312492847, 5.10531425, 9.66574589e-08, 0.0174533594, 0.999847949, -1, 2.08499841e-07, 9.1315087e-08, -2.07335688e-07, -0.999847949, 0.0174533576)
  1738. Weld37.Part0 = Part3
  1739. Weld37.Part1 = Part191
  1740. Weld37.part1 = Part191
  1741. Weld38.Name = "BTWeld"
  1742. Weld38.Parent = Part3
  1743. Weld38.C1 = CFrame.new(2.98023224e-06, -0.520121574, 0.565322638, -1, 2.08499841e-07, -1.4426405e-08, 1.87777914e-07, 0.923879921, 0.382683069, 9.12114047e-08, 0.382683039, -0.923879921)
  1744. Weld38.Part0 = Part3
  1745. Weld38.Part1 = Part459
  1746. Weld38.part1 = Part459
  1747. Weld39.Name = "BTWeld"
  1748. Weld39.Parent = Part3
  1749. Weld39.C1 = CFrame.new(-2.44379044e-06, 1.62276363, -0.980819702, 1, -3.87430191e-07, 3.99177225e-08, -1.89582352e-07, -0.569997728, -0.821646571, 3.3993274e-07, 0.821646512, -0.569997668)
  1750. Weld39.Part0 = Part3
  1751. Weld39.Part1 = Part327
  1752. Weld39.part1 = Part327
  1753. Weld40.Name = "BTWeld"
  1754. Weld40.Parent = Part3
  1755. Weld40.C1 = CFrame.new(3.69548798e-06, -1.7807188, -0.638116598, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  1756. Weld40.Part0 = Part3
  1757. Weld40.Part1 = Part229
  1758. Weld40.part1 = Part229
  1759. Weld41.Name = "BTWeld"
  1760. Weld41.Parent = Part3
  1761. Weld41.C1 = CFrame.new(-2.98023224e-06, -0.170754433, -0.381493092, 1, 2.32830644e-10, 1.14778231e-09, 2.32830644e-10, 1.00000024, 1.86264515e-09, 1.14778231e-09, 1.86264515e-09, 1.00000024)
  1762. Weld41.Part0 = Part3
  1763. Weld41.Part1 = Part469
  1764. Weld41.part1 = Part469
  1765. Weld42.Name = "BTWeld"
  1766. Weld42.Parent = Part3
  1767. Weld42.C1 = CFrame.new(1.7285347e-06, -0.568753242, -0.743589878, -1, 1.18976459e-07, 3.28123861e-07, -1.1944212e-07, -1.00000024, -8.94069672e-08, 3.30041075e-07, -8.7544322e-08, 1.00000024)
  1768. Weld42.Part0 = Part3
  1769. Weld42.Part1 = Part169
  1770. Weld42.part1 = Part169
  1771. Weld43.Name = "BTWeld"
  1772. Weld43.Parent = Part3
  1773. Weld43.C1 = CFrame.new(1.84774399e-06, -0.227245331, -0.390619993, -1, 1.18976459e-07, 3.56074452e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.58400939e-07, -5.77419996e-08, 1.00000024)
  1774. Weld43.Part0 = Part3
  1775. Weld43.Part1 = Part463
  1776. Weld43.part1 = Part463
  1777. Weld44.Name = "BTWeld"
  1778. Weld44.Parent = Part3
  1779. Weld44.C1 = CFrame.new(-1.84774399e-06, 0.916108131, -0.790865183, 1, -5.93718141e-08, 2.56368367e-08, 5.97210601e-08, 1.00000024, 5.96046448e-08, -2.29756552e-08, -5.77419996e-08, 1.00000024)
  1780. Weld44.Part0 = Part3
  1781. Weld44.Part1 = Part411
  1782. Weld44.part1 = Part411
  1783. Weld45.Name = "BTWeld"
  1784. Weld45.Parent = Part3
  1785. Weld45.C1 = CFrame.new(3.75509262e-06, -2.08321857, -0.731868029, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  1786. Weld45.Part0 = Part3
  1787. Weld45.Part1 = Part475
  1788. Weld45.part1 = Part475
  1789. Weld46.Name = "BTWeld"
  1790. Weld46.Parent = Part3
  1791. Weld46.C1 = CFrame.new(0.00166875124, 3.12339592, -0.606613398, 1, -1.18976459e-07, -6.2136678e-08, 1.1944212e-07, 1.00000024, -8.94069672e-08, 6.48051355e-08, 9.12696123e-08, 1.00000024)
  1792. Weld46.Part0 = Part3
  1793. Weld46.Part1 = Part473
  1794. Weld46.part1 = Part473
  1795. Weld47.Name = "BTWeld"
  1796. Weld47.Parent = Part3
  1797. Weld47.C1 = CFrame.new(-0.246384621, -0.03125, 0.315700531, 8.35862011e-08, -0.965926051, 0.258819014, 1, 6.17001206e-08, -9.08512447e-08, 7.39237294e-08, 0.258818984, 0.965926111)
  1798. Weld47.Part0 = Part3
  1799. Weld47.Part1 = Part355
  1800. Weld47.part1 = Part355
  1801. Weld48.Name = "BTWeld"
  1802. Weld48.Parent = Part3
  1803. Weld48.C1 = CFrame.new(2.74181366e-06, 0.908480644, 0.621105194, -1, 3.87430191e-07, -2.68737494e-08, -1.25437509e-07, -0.382683992, -0.923879504, -3.67756002e-07, -0.923879564, 0.382684022)
  1804. Weld48.Part0 = Part3
  1805. Weld48.Part1 = Part341
  1806. Weld48.part1 = Part341
  1807. Weld49.Name = "BTWeld"
  1808. Weld49.Parent = Part3
  1809. Weld49.C1 = CFrame.new(1.96695328e-06, -0.43809557, 0.254676819, -1, 2.08499841e-07, 8.61909939e-08, -8.48667696e-08, -0.707106531, 0.707107365, 2.10478902e-07, 0.707107365, 0.707106471)
  1810. Weld49.Part0 = Part3
  1811. Weld49.Part1 = Part269
  1812. Weld49.part1 = Part269
  1813. Weld50.Name = "BTWeld"
  1814. Weld50.Parent = Part3
  1815. Weld50.C1 = CFrame.new(1.32572746, -0.0312505364, 5.10531616, -1.84201781e-07, -0.0174533594, -0.999847949, 1, -2.08499841e-07, -1.78890332e-07, -2.05705874e-07, -0.999847949, 0.0174533576)
  1816. Weld50.Part0 = Part3
  1817. Weld50.Part1 = Part379
  1818. Weld50.part1 = Part379
  1819. Weld51.Name = "BTWeld"
  1820. Weld51.Parent = Part3
  1821. Weld51.C1 = CFrame.new(1.7285347e-06, -0.242359161, -0.146375895, -1, 2.08499841e-07, 2.3712164e-07, -2.08849087e-07, -1.00000024, 0, 2.39566361e-07, 1.86264515e-09, 1.00000024)
  1822. Weld51.Part0 = Part3
  1823. Weld51.Part1 = Part455
  1824. Weld51.part1 = Part455
  1825. Weld52.Name = "BTWeld"
  1826. Weld52.Parent = Part3
  1827. Weld52.C1 = CFrame.new(-3.03983688e-06, -0.143110275, -0.641388893, 1, 8.95233825e-08, 7.0387614e-08, -6.88014552e-08, 0.96592617, -0.258818775, -8.91450327e-08, 0.258818746, 0.96592623)
  1828. Weld52.Part0 = Part3
  1829. Weld52.Part1 = Part453
  1830. Weld52.part1 = Part453
  1831. Weld53.Name = "BTWeld"
  1832. Weld53.Parent = Part3
  1833. Weld53.C1 = CFrame.new(1.84774399e-06, -0.316618919, -0.362743855, -1, 1.18976459e-07, 3.56074452e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.58400939e-07, -5.77419996e-08, 1.00000024)
  1834. Weld53.Part0 = Part3
  1835. Weld53.Part1 = Part425
  1836. Weld53.part1 = Part425
  1837. Weld54.Name = "BTWeld"
  1838. Weld54.Parent = Part3
  1839. Weld54.C1 = CFrame.new(-2.44379044e-06, 3.96811485, 0.642149091, 1, -2.08499841e-07, 1.92838343e-07, -1.85798854e-07, -0.993572116, -0.113202929, 2.13360181e-07, 0.113202937, -0.993572235)
  1840. Weld54.Part0 = Part3
  1841. Weld54.Part1 = Part241
  1842. Weld54.part1 = Part241
  1843. Weld55.Name = "BTWeld"
  1844. Weld55.Parent = Part3
  1845. Weld55.C1 = CFrame.new(-2.08616257e-06, 0.207164764, -0.535107613, 1, 2.08732672e-07, 7.35781214e-08, -2.08383426e-07, 1.00000024, 1.78813934e-07, -7.12225301e-08, -1.76951289e-07, 1.00000024)
  1846. Weld55.Part0 = Part3
  1847. Weld55.Part1 = Part321
  1848. Weld55.part1 = Part321
  1849. Weld56.Name = "BTWeld"
  1850. Weld56.Parent = Part3
  1851. Weld56.C1 = CFrame.new(0.3903265, -0.0312507153, 0.188101292, -2.43075192e-07, -0.866025627, -0.5, 1, -2.29571015e-07, -8.65911716e-08, -3.80096026e-08, -0.49999994, 0.866025686)
  1852. Weld56.Part0 = Part3
  1853. Weld56.Part1 = Part449
  1854. Weld56.part1 = Part449
  1855. Weld57.Name = "BTWeld"
  1856. Weld57.Parent = Part3
  1857. Weld57.C1 = CFrame.new(4.0832634, -0.0312500596, 2.68361759, -3.40398401e-07, -0.719340265, -0.694658279, 1, -3.15834768e-07, -1.60429408e-07, -1.03143975e-07, -0.694658279, 0.719340265)
  1858. Weld57.Part0 = Part3
  1859. Weld57.Part1 = Part261
  1860. Weld57.part1 = Part261
  1861. Weld58.Name = "BTWeld"
  1862. Weld58.Parent = Part3
  1863. Weld58.C1 = CFrame.new(3.87430191e-06, -2.97136497, -1.32431102, -1, 1.19092874e-07, 2.00954673e-07, -1.67870894e-07, -0.965925992, -0.258819073, 1.64814992e-07, -0.258819073, 0.965926111)
  1864. Weld58.Part0 = Part3
  1865. Weld58.Part1 = Part367
  1866. Weld58.part1 = Part367
  1867. Weld59.Name = "BTWeld"
  1868. Weld59.Parent = Part3
  1869. Weld59.C1 = CFrame.new(-3.21865082e-06, -0.0555143356, 0.74919796, 1, 2.08732672e-07, 1.05254003e-07, 7.4505806e-08, -0.707106292, 0.707107484, 2.20257789e-07, -0.707107544, -0.707106352)
  1870. Weld59.Part0 = Part3
  1871. Weld59.Part1 = Part179
  1872. Weld59.part1 = Part179
  1873. Weld60.Name = "BTWeld"
  1874. Weld60.Parent = Part3
  1875. Weld60.C1 = CFrame.new(0.854812145, -0.0312569141, 0.683163643, -7.71833584e-08, 0.707106531, -0.707107306, 1, 1.8987339e-07, 8.20728019e-08, 1.90921128e-07, -0.707107365, -0.707106531)
  1876. Weld60.Part0 = Part3
  1877. Weld60.Part1 = Part437
  1878. Weld60.part1 = Part437
  1879. Weld61.Name = "BTWeld"
  1880. Weld61.Parent = Part3
  1881. Weld61.C1 = CFrame.new(1.84774399e-06, -0.363491058, -0.331495762, -1, 1.18976459e-07, 3.56074452e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.58400939e-07, -5.77419996e-08, 1.00000024)
  1882. Weld61.Part0 = Part3
  1883. Weld61.Part1 = Part365
  1884. Weld61.part1 = Part365
  1885. Weld62.Name = "BTWeld"
  1886. Weld62.Parent = Part3
  1887. Weld62.C1 = CFrame.new(-5.96046448e-08, -0.251069069, 0.0857863426, -1, 2.08499841e-07, 1.84947567e-07, -1.53202564e-07, -0.965926051, 0.258819163, 2.35246262e-07, 0.258819163, 0.96592617)
  1888. Weld62.Part0 = Part3
  1889. Weld62.Part1 = Part423
  1890. Weld62.part1 = Part423
  1891. Weld63.Name = "BTWeld"
  1892. Weld63.Parent = Part3
  1893. Weld63.C1 = CFrame.new(2.92062759e-06, 0.530877113, 0.384551048, -1, -2.32830644e-10, 1.16708179e-07, -1.19271135e-07, -1.01514161e-06, -1.00000024, -1.16415322e-10, -1.00000024, 1.01141632e-06)
  1894. Weld63.Part0 = Part3
  1895. Weld63.Part1 = Part421
  1896. Weld63.part1 = Part421
  1897. Weld64.Name = "BTWeld"
  1898. Weld64.Parent = Part3
  1899. Weld64.C1 = CFrame.new(3.81469727e-06, -1.63659573, -0.658368826, -1, 2.08499841e-07, 1.81222276e-07, -2.08849087e-07, -1.00000024, 0, 1.83687007e-07, 1.86264515e-09, 1.00000024)
  1900. Weld64.Part0 = Part3
  1901. Weld64.Part1 = Part391
  1902. Weld64.part1 = Part391
  1903. Weld65.Name = "BTWeld"
  1904. Weld65.Parent = Part3
  1905. Weld65.C1 = CFrame.new(3.93390656e-06, -2.9557457, -1.37312269, -1, 1.19092874e-07, 2.00954673e-07, -1.67870894e-07, -0.965925992, -0.258819073, 1.64814992e-07, -0.258819073, 0.965926111)
  1906. Weld65.Part0 = Part3
  1907. Weld65.Part1 = Part419
  1908. Weld65.part1 = Part419
  1909. Weld66.Name = "BTWeld"
  1910. Weld66.Parent = Part3
  1911. Weld66.C1 = CFrame.new(-2.98023224e-07, 3.86712265, 0.467648745, 1, -2.08499841e-07, 1.92838343e-07, -1.85798854e-07, -0.993572116, -0.113202929, 2.13360181e-07, 0.113202937, -0.993572235)
  1912. Weld66.Part0 = Part3
  1913. Weld66.Part1 = Part415
  1914. Weld66.part1 = Part415
  1915. Weld67.Name = "BTWeld"
  1916. Weld67.Parent = Part3
  1917. Weld67.C1 = CFrame.new(-2.02655792e-06, 0.114692688, -0.875624657, 1, 2.08732672e-07, 7.35781214e-08, -2.19908543e-07, 0.965926111, 0.258818954, -1.55705493e-08, -0.258818954, 0.96592617)
  1918. Weld67.Part0 = Part3
  1919. Weld67.Part1 = Part193
  1920. Weld67.part1 = Part193
  1921. Weld68.Name = "BTWeld"
  1922. Weld68.Parent = Part3
  1923. Weld68.C1 = CFrame.new(1.84774399e-06, -0.820864677, -0.453119278, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  1924. Weld68.Part0 = Part3
  1925. Weld68.Part1 = Part447
  1926. Weld68.part1 = Part447
  1927. Weld69.Name = "BTWeld"
  1928. Weld69.Parent = Part3
  1929. Weld69.C1 = CFrame.new(1.84774399e-06, -0.879114151, -0.453119278, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  1930. Weld69.Part0 = Part3
  1931. Weld69.Part1 = Part329
  1932. Weld69.part1 = Part329
  1933. Weld70.Name = "BTWeld"
  1934. Weld70.Parent = Part3
  1935. Weld70.C1 = CFrame.new(-3.09944153e-06, 2.06479263, 0.744927168, 1, -1.19092874e-07, 2.05247488e-07, -1.07684173e-07, -0.998391926, -0.0566923842, 2.10064172e-07, 0.0566923767, -0.998391867)
  1936. Weld70.Part0 = Part3
  1937. Weld70.Part1 = Part213
  1938. Weld70.part1 = Part213
  1939. Weld71.Name = "BTWeld"
  1940. Weld71.Parent = Part3
  1941. Weld71.C1 = CFrame.new(-4.0832634, -0.0312493443, 2.68361759, 2.50991434e-07, 0.719340265, 0.694658279, -1, 2.34693289e-07, 1.15569492e-07, -7.84639269e-08, -0.694658279, 0.719340265)
  1942. Weld71.Part0 = Part3
  1943. Weld71.Part1 = Part257
  1944. Weld71.part1 = Part257
  1945. Weld72.Name = "BTWeld"
  1946. Weld72.Parent = Part3
  1947. Weld72.C1 = CFrame.new(1.84774399e-06, -0.227245331, -0.390619993, -1, 1.18976459e-07, 3.56074452e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.58400939e-07, -5.77419996e-08, 1.00000024)
  1948. Weld72.Part0 = Part3
  1949. Weld72.Part1 = Part173
  1950. Weld72.part1 = Part173
  1951. Weld73.Name = "BTWeld"
  1952. Weld73.Parent = Part3
  1953. Weld73.C1 = CFrame.new(2.86102295e-06, 0.835924149, -0.142241955, -1, 3.27709131e-07, -1.37008101e-07, -1.36438757e-07, -0.707107067, -0.707106829, -3.27592716e-07, -0.707106769, 0.707107008)
  1954. Weld73.Part0 = Part3
  1955. Weld73.Part1 = Part361
  1956. Weld73.part1 = Part361
  1957. Weld74.Name = "BTWeld"
  1958. Weld74.Parent = Part3
  1959. Weld74.C1 = CFrame.new(-0.00166893005, 2.82995987, 0.726299524, -1, 1.18976459e-07, 1.49711923e-07, 1.1944212e-07, 1.00000024, 0, -1.52022039e-07, -1.86264515e-09, -1.00000024)
  1960. Weld74.Part0 = Part3
  1961. Weld74.Part1 = Part377
  1962. Weld74.part1 = Part377
  1963. Weld75.Name = "BTWeld"
  1964. Weld75.Parent = Part3
  1965. Weld75.C1 = CFrame.new(1.7285347e-06, 0.0122146606, -1.26963711, -1, -2.32830644e-10, 3.04902642e-07, -2.17230991e-07, -0.707107246, -0.70710665, 2.16532499e-07, -0.70710665, 0.707107186)
  1966. Weld75.Part0 = Part3
  1967. Weld75.Part1 = Part283
  1968. Weld75.part1 = Part283
  1969. Weld76.Name = "BTWeld"
  1970. Weld76.Parent = Part3
  1971. Weld76.C1 = CFrame.new(-2.86102295e-06, -0.724999189, 0.384550095, 1, -1.19092874e-07, -4.21059667e-08, 4.47653292e-08, 1.01514161e-06, 1.00000024, -1.19325705e-07, -1.00000024, 1.01327896e-06)
  1972. Weld76.Part0 = Part3
  1973. Weld76.Part1 = Part291
  1974. Weld76.part1 = Part291
  1975. Weld77.Name = "BTWeld"
  1976. Weld77.Parent = Part3
  1977. Weld77.C1 = CFrame.new(-8.94069672e-07, 4.09370422, 0.476376891, 1, -5.93718141e-08, 2.00789145e-07, -3.6903657e-08, -0.993572116, -0.113202639, 2.04046955e-07, 0.113202639, -0.993572235)
  1978. Weld77.Part0 = Part3
  1979. Weld77.Part1 = Part395
  1980. Weld77.part1 = Part395
  1981. Weld78.Name = "BTWeld"
  1982. Weld78.Parent = Part3
  1983. Weld78.C1 = CFrame.new(2.92062759e-06, -0.468894958, 0.574460983, -1, 2.08499841e-07, -3.86498868e-08, 1.92318112e-07, 0.965926051, 0.258818746, 8.94651748e-08, 0.258818746, -0.965926111)
  1984. Weld78.Part0 = Part3
  1985. Weld78.Part1 = Part451
  1986. Weld78.part1 = Part451
  1987. Weld79.Name = "BTWeld"
  1988. Weld79.Parent = Part3
  1989. Weld79.C1 = CFrame.new(1.90734863e-06, 0.962981224, 0.66424036, -1, 5.93718141e-08, 6.19384082e-08, 5.98374754e-08, 1.00000024, -8.94069672e-08, -6.48051355e-08, -9.12696123e-08, -1.00000024)
  1990. Weld79.Part0 = Part3
  1991. Weld79.Part1 = Part203
  1992. Weld79.part1 = Part203
  1993. Weld80.Name = "BTWeld"
  1994. Weld80.Parent = Part3
  1995. Weld80.C1 = CFrame.new(-1.93451118, -0.0312488079, -0.270594597, 1.53435394e-07, 0.998629808, 0.0523359701, -1, 1.53202564e-07, 4.08908818e-09, -2.91402102e-09, -0.0523359627, 0.998629689)
  1996. Weld80.Part0 = Part3
  1997. Weld80.Part1 = Part397
  1998. Weld80.part1 = Part397
  1999. Weld81.Name = "BTWeld"
  2000. Weld81.Parent = Part3
  2001. Weld81.C1 = CFrame.new(-1.90734863e-06, 0.382622719, -0.453119993, 1, 2.32830644e-10, 1.14778231e-09, 2.32830644e-10, 1.00000024, 1.86264515e-09, 1.14778231e-09, 1.86264515e-09, 1.00000024)
  2002. Weld81.Part0 = Part3
  2003. Weld81.Part1 = Part237
  2004. Weld81.part1 = Part237
  2005. Weld82.Name = "BTWeld"
  2006. Weld82.Parent = Part3
  2007. Weld82.C1 = CFrame.new(-1.90734863e-06, 1.7890873, 3.13711452, 1, 2.68220901e-07, 1.37593815e-07, 9.1502443e-08, -0.700908601, 0.713251352, 2.86381692e-07, -0.713251412, -0.700908601)
  2008. Weld82.Part0 = Part3
  2009. Weld82.Part1 = Part373
  2010. Weld82.part1 = Part373
  2011. Weld83.Name = "BTWeld"
  2012. Weld83.Parent = Part3
  2013. Weld83.C1 = CFrame.new(-3.57627869e-06, 1.17321014, 0.911328077, 1, -1.19092874e-07, 2.04781827e-07, -1.19325705e-07, -1.00000024, 2.68220901e-07, 2.03222953e-07, -2.68220901e-07, -1.00000024)
  2014. Weld83.Part0 = Part3
  2015. Weld83.Part1 = Part163
  2016. Weld83.part1 = Part163
  2017. Weld84.Name = "BTWeld"
  2018. Weld84.Parent = Part3
  2019. Weld84.C1 = CFrame.new(1.7285347e-06, -0.568753242, -0.743589878, -1, 1.18976459e-07, 3.28123861e-07, -1.1944212e-07, -1.00000024, -8.94069672e-08, 3.30041075e-07, -8.7544322e-08, 1.00000024)
  2020. Weld84.Part0 = Part3
  2021. Weld84.Part1 = Part281
  2022. Weld84.part1 = Part281
  2023. Weld85.Name = "BTWeld"
  2024. Weld85.Parent = Part3
  2025. Weld85.C1 = CFrame.new(-4.17232513e-07, 4.000597, -2.49560165, 1, -3.27709131e-07, 1.59834599e-07, -1.16531737e-07, -0.700910211, -0.713249803, 3.44938599e-07, 0.713249862, -0.700910151)
  2026. Weld85.Part0 = Part3
  2027. Weld85.Part1 = Part345
  2028. Weld85.part1 = Part345
  2029. Weld86.Name = "BTWeld"
  2030. Weld86.Parent = Part3
  2031. Weld86.C1 = CFrame.new(1.78813934e-06, -0.568753242, -1.01896238, -1, 1.18976459e-07, 3.28123861e-07, -1.1944212e-07, -1.00000024, -8.94069672e-08, 3.30041075e-07, -8.7544322e-08, 1.00000024)
  2032. Weld86.Part0 = Part3
  2033. Weld86.Part1 = Part399
  2034. Weld86.part1 = Part399
  2035. Weld87.Name = "BTWeld"
  2036. Weld87.Parent = Part3
  2037. Weld87.C1 = CFrame.new(3.69548798e-06, -2.28520775, -0.633616686, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  2038. Weld87.Part0 = Part3
  2039. Weld87.Part1 = Part199
  2040. Weld87.part1 = Part199
  2041. Weld88.Name = "BTWeld"
  2042. Weld88.Parent = Part3
  2043. Weld88.C1 = CFrame.new(1.78813934e-06, -0.829603195, -0.33899641, -1, 2.08499841e-07, 1.81222276e-07, -2.08849087e-07, -1.00000024, 0, 1.83687007e-07, 1.86264515e-09, 1.00000024)
  2044. Weld88.Part0 = Part3
  2045. Weld88.Part1 = Part219
  2046. Weld88.part1 = Part219
  2047. Weld89.Name = "BTWeld"
  2048. Weld89.Parent = Part3
  2049. Weld89.C1 = CFrame.new(-3.33786011e-06, -0.0132074356, 0.994934082, 1, 2.32830644e-10, 2.04248863e-07, -5.65778464e-08, -0.960049927, 0.279829443, 1.94384484e-07, -0.279829443, -0.960049987)
  2050. Weld89.Part0 = Part3
  2051. Weld89.Part1 = Part1
  2052. Weld89.part1 = Part1
  2053. Weld90.Name = "BTWeld"
  2054. Weld90.Parent = Part3
  2055. Weld90.C1 = CFrame.new(1.96695328e-06, 0.916108131, 0.907114267, -1, 5.93718141e-08, 6.19384082e-08, 5.98374754e-08, 1.00000024, -8.94069672e-08, -6.48051355e-08, -9.12696123e-08, -1.00000024)
  2056. Weld90.Part0 = Part3
  2057. Weld90.Part1 = Part275
  2058. Weld90.part1 = Part275
  2059. Weld91.Name = "BTWeld"
  2060. Weld91.Parent = Part3
  2061. Weld91.C1 = CFrame.new(-1.7285347e-06, -1.12285709, 0.789239883, 1, 2.32830644e-10, -1.49781044e-07, -1.16415322e-10, -1.00000024, -6.14672899e-08, -1.52112989e-07, 5.77419996e-08, -1.00000024)
  2062. Weld91.Part0 = Part3
  2063. Weld91.Part1 = Part233
  2064. Weld91.part1 = Part233
  2065. Weld92.Name = "BTWeld"
  2066. Weld92.Parent = Part3
  2067. Weld92.C1 = CFrame.new(3.03983688e-06, 0.303620577, 0.382497787, -1, -2.08732672e-07, 1.17877789e-07, -1.20393452e-07, -1.19395554e-06, -1.00000024, 2.08499841e-07, -1.00000024, 1.1920929e-06)
  2068. Weld92.Part0 = Part3
  2069. Weld92.Part1 = Part221
  2070. Weld92.part1 = Part221
  2071. Weld93.Name = "BTWeld"
  2072. Weld93.Parent = Part3
  2073. Weld93.C1 = CFrame.new(-0.522247314, -0.0312470198, 0.449783325, -2.65327981e-06, 0.500000775, 0.866025329, -1, -2.96032522e-06, -1.35692608e-06, 1.88592821e-06, -0.866025269, 0.500000715)
  2074. Weld93.Part0 = Part3
  2075. Weld93.Part1 = Part467
  2076. Weld93.part1 = Part467
  2077. Weld94.Name = "BTWeld"
  2078. Weld94.Parent = Part3
  2079. Weld94.C1 = CFrame.new(-3.4570694e-06, 1.39806747, 0.593937159, 1, -1.19092874e-07, 2.05247488e-07, -1.07684173e-07, -0.998391926, -0.0566924736, 2.09929567e-07, 0.0566924661, -0.998391867)
  2080. Weld94.Part0 = Part3
  2081. Weld94.Part1 = Part339
  2082. Weld94.part1 = Part339
  2083. Weld95.Name = "BTWeld"
  2084. Weld95.Parent = Part3
  2085. Weld95.C1 = CFrame.new(0.795685768, -0.0312509537, -0.711493969, -8.45175236e-08, -0.932008028, 0.362438083, 1, -8.89413059e-08, 5.51335688e-09, 2.98023224e-08, 0.362438083, 0.932008028)
  2086. Weld95.Part0 = Part3
  2087. Weld95.Part1 = Part401
  2088. Weld95.part1 = Part401
  2089. Weld96.Name = "BTWeld"
  2090. Weld96.Parent = Part3
  2091. Weld96.C1 = CFrame.new(3.93390656e-06, -1.17022419, -0.44987011, -1, 2.08499841e-07, 1.81222276e-07, -2.08849087e-07, -1.00000024, 0, 1.83687007e-07, 1.86264515e-09, 1.00000024)
  2092. Weld96.Part0 = Part3
  2093. Weld96.Part1 = Part409
  2094. Weld96.part1 = Part409
  2095. Weld97.Name = "BTWeld"
  2096. Weld97.Parent = Part3
  2097. Weld97.C1 = CFrame.new(-2.92062759e-06, 2.3621769, 0.817341089, 1, -1.19092874e-07, 1.99657734e-07, -1.07917003e-07, -0.998391926, -0.0566924736, 2.04341632e-07, 0.0566924661, -0.998391867)
  2098. Weld97.Part0 = Part3
  2099. Weld97.Part1 = Part381
  2100. Weld97.part1 = Part381
  2101. Weld98.Name = "BTWeld"
  2102. Weld98.Parent = Part3
  2103. Weld98.C1 = CFrame.new(-0.431774139, -0.0312498212, 0.503154755, 7.72997737e-08, -0.70710665, 0.707107186, 1, 2.03726813e-08, -8.74406396e-08, 4.88944352e-08, 0.707107186, 0.70710665)
  2104. Weld98.Part0 = Part3
  2105. Weld98.Part1 = Part431
  2106. Weld98.part1 = Part431
  2107. Weld99.Name = "BTWeld"
  2108. Weld99.Parent = Part3
  2109. Weld99.C1 = CFrame.new(-3.15904617e-06, 0.420814514, 0.987199306, 1, -1.18976459e-07, 2.12703526e-07, -1.42492354e-07, -0.993572056, 0.1132036, 1.96479959e-07, -0.113203593, -0.993572116)
  2110. Weld99.Part0 = Part3
  2111. Weld99.Part1 = Part215
  2112. Weld99.part1 = Part215
  2113. Weld100.Name = "BTWeld"
  2114. Weld100.Parent = Part3
  2115. Weld100.C1 = CFrame.new(1.66893005e-06, -0.394741058, -0.312496424, -1, 1.18976459e-07, 3.56074452e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.58400939e-07, -5.77419996e-08, 1.00000024)
  2116. Weld100.Part0 = Part3
  2117. Weld100.Part1 = Part231
  2118. Weld100.part1 = Part231
  2119. Weld101.Name = "BTWeld"
  2120. Weld101.Parent = Part3
  2121. Weld101.C1 = CFrame.new(0.431774139, -0.0312502384, 0.503154755, 1.21071935e-08, 0.70710665, -0.707107186, -1, 2.66591087e-08, 8.21273716e-09, 2.63098627e-08, 0.707107186, 0.70710665)
  2122. Weld101.Part0 = Part3
  2123. Weld101.Part1 = Part195
  2124. Weld101.part1 = Part195
  2125. Weld102.Name = "BTWeld"
  2126. Weld102.Parent = Part3
  2127. Weld102.C1 = CFrame.new(-2.98023224e-06, 0.52676487, 0.681500196, 1, -1.18976459e-07, 2.07579433e-07, -1.19325705e-07, -1.00000024, 3.57627869e-07, 2.05687684e-07, -3.57627869e-07, -1.00000024)
  2128. Weld102.Part0 = Part3
  2129. Weld102.Part1 = Part247
  2130. Weld102.part1 = Part247
  2131. Weld103.Name = "BTWeld"
  2132. Weld103.Parent = Part3
  2133. Weld103.C1 = CFrame.new(-3.33786011e-06, -0.982596397, -1.40651131, 1, 2.08732672e-07, -4.8930815e-10, -1.93249434e-07, 0.922201157, -0.386711091, -7.82310963e-08, 0.386711091, 0.922201216)
  2134. Weld103.Part0 = Part3
  2135. Weld103.Part1 = Part307
  2136. Weld103.part1 = Part307
  2137. Weld104.Name = "BTWeld"
  2138. Weld104.Parent = Part3
  2139. Weld104.C1 = CFrame.new(-0.0437107086, -0.0312517285, 1.4942646, 1.91503204e-07, 0.707107306, 0.70710659, 1, 2.29338184e-08, -2.9189323e-07, -2.23633833e-07, 0.707106531, -0.707107246)
  2140. Weld104.Part0 = Part3
  2141. Weld104.Part1 = Part259
  2142. Weld104.part1 = Part259
  2143. Weld105.Name = "BTWeld"
  2144. Weld105.Parent = Part3
  2145. Weld105.C1 = CFrame.new(3.87430191e-06, -3.31824732, 1.47011757, -1, 2.08499841e-07, 7.08205334e-08, -1.35507435e-07, -0.838670611, 0.544639409, 1.75263267e-07, 0.544639468, 0.838670611)
  2146. Weld105.Part0 = Part3
  2147. Weld105.Part1 = Part407
  2148. Weld105.part1 = Part407
  2149. Weld106.Name = "BTWeld"
  2150. Weld106.Parent = Part3
  2151. Weld106.C1 = CFrame.new(-0.795685768, -0.0312490463, -0.711493969, -4.88944352e-09, 0.932008028, -0.362438083, -1, 1.22236088e-08, 4.33428795e-08, 4.74974513e-08, 0.362438083, 0.932008028)
  2152. Weld106.Part0 = Part3
  2153. Weld106.Part1 = Part263
  2154. Weld106.part1 = Part263
  2155. Weld107.Name = "BTWeld"
  2156. Weld107.Parent = Part3
  2157. Weld107.C1 = CFrame.new(-3.69548798e-06, -3.00638485, 1.33266807, 1, -1.18976459e-07, -3.95668394e-07, -1.86846592e-07, -0.984807968, -0.173648164, -3.70942871e-07, 0.173648179, -0.984807909)
  2158. Weld107.Part0 = Part3
  2159. Weld107.Part1 = Part351
  2160. Weld107.part1 = Part351
  2161. Weld108.Name = "BTWeld"
  2162. Weld108.Parent = Part3
  2163. Weld108.C1 = CFrame.new(3.63588333e-06, -0.320664406, -1.40051842, -1, -2.32830644e-10, 3.04902642e-07, -2.17230991e-07, -0.707107246, -0.70710665, 2.16532499e-07, -0.70710665, 0.707107186)
  2164. Weld108.Part0 = Part3
  2165. Weld108.Part1 = Part331
  2166. Weld108.part1 = Part331
  2167. Weld109.Name = "BTWeld"
  2168. Weld109.Parent = Part3
  2169. Weld109.C1 = CFrame.new(4.17232513e-07, 0.449201822, 1.99047565, -1, 4.76720743e-07, 8.52196536e-08, -6.01830834e-08, 0.0566915721, -0.998391926, -4.81144525e-07, -0.998391926, -0.0566915721)
  2170. Weld109.Part0 = Part3
  2171. Weld109.Part1 = Part187
  2172. Weld109.part1 = Part187
  2173. Weld110.Name = "BTWeld"
  2174. Weld110.Parent = Part3
  2175. Weld110.C1 = CFrame.new(-2.86102295e-06, 2.36217117, 0.642843485, 1, -1.19092874e-07, 1.99657734e-07, -1.07800588e-07, -0.998391807, -0.0566924661, 2.0434527e-07, 0.0566924587, -0.998391867)
  2176. Weld110.Part0 = Part3
  2177. Weld110.Part1 = Part239
  2178. Weld110.part1 = Part239
  2179. Weld111.Name = "BTWeld"
  2180. Weld111.Parent = Part3
  2181. Weld111.C1 = CFrame.new(-3.64600945, -0.0312488079, -0.13107121, 1.57626346e-07, 0.994522154, 0.104528487, -1, 1.56695023e-07, 1.25419319e-08, -2.27009878e-09, -0.104528494, 0.994522214)
  2182. Weld111.Part0 = Part3
  2183. Weld111.Part1 = Part293
  2184. Weld111.part1 = Part293
  2185. Weld112.Name = "BTWeld"
  2186. Weld112.Parent = Part3
  2187. Weld112.C1 = CFrame.new(-1.84774399e-06, -0.363490105, 0.43412137, 1, -1.19092874e-07, -2.68964868e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, -2.71322278e-07, 5.77419996e-08, -1.00000024)
  2188. Weld112.Part0 = Part3
  2189. Weld112.Part1 = Part387
  2190. Weld112.part1 = Part387
  2191. Weld113.Name = "BTWeld"
  2192. Weld113.Parent = Part3
  2193. Weld113.C1 = CFrame.new(1.7285347e-06, -0.568753242, -0.743589878, -1, 1.18976459e-07, 3.28123861e-07, -1.1944212e-07, -1.00000024, -8.94069672e-08, 3.30041075e-07, -8.7544322e-08, 1.00000024)
  2194. Weld113.Part0 = Part3
  2195. Weld113.Part1 = Part471
  2196. Weld113.part1 = Part471
  2197. Weld114.Name = "BTWeld"
  2198. Weld114.Parent = Part3
  2199. Weld114.C1 = CFrame.new(5.96046448e-08, 0.289498925, 3.66633129, -1, 4.76720743e-07, 1.08511813e-07, -5.57629392e-08, 0.113202013, -0.993572295, -4.86383215e-07, -0.993572235, -0.113202013)
  2200. Weld114.Part0 = Part3
  2201. Weld114.Part1 = Part301
  2202. Weld114.part1 = Part301
  2203. Weld115.Name = "BTWeld"
  2204. Weld115.Parent = Part3
  2205. Weld115.C1 = CFrame.new(3.75509262e-06, -2.22058773, -0.638116837, -1, 2.08499841e-07, 1.81222276e-07, -2.08849087e-07, -1.00000024, 0, 1.83687007e-07, 1.86264515e-09, 1.00000024)
  2206. Weld115.Part0 = Part3
  2207. Weld115.Part1 = Part389
  2208. Weld115.part1 = Part389
  2209. Weld116.Name = "BTWeld"
  2210. Weld116.Parent = Part3
  2211. Weld116.C1 = CFrame.new(-3.03983688e-06, 0.552669525, 1.01939201, 1, 2.32830644e-10, 1.78628397e-07, -6.84522092e-08, -0.922201097, 0.386711597, 1.62399374e-07, -0.386711597, -0.922201097)
  2212. Weld116.Part0 = Part3
  2213. Weld116.Part1 = Part255
  2214. Weld116.part1 = Part255
  2215. Weld117.Name = "BTWeld"
  2216. Weld117.Parent = Part3
  2217. Weld117.C1 = CFrame.new(-3.75509262e-06, -3.10320187, 0.522767544, 1, -1.19092874e-07, -3.84490704e-07, -8.49831849e-08, -0.996194959, 0.0871557072, -3.95724783e-07, -0.0871557146, -0.996194959)
  2218. Weld117.Part0 = Part3
  2219. Weld117.Part1 = Part299
  2220. Weld117.part1 = Part299
  2221. Weld118.Name = "BTWeld"
  2222. Weld118.Parent = Part3
  2223. Weld118.C1 = CFrame.new(-4.76837158e-07, -2.59509277, 3.90086365, -1, 3.87430191e-07, 3.84452505e-07, 5.47152013e-09, 0.713250041, -0.700909913, -5.47152013e-07, -0.700909972, -0.713250101)
  2224. Weld118.Part0 = Part3
  2225. Weld118.Part1 = Part461
  2226. Weld118.part1 = Part461
  2227. Weld119.Name = "BTWeld"
  2228. Weld119.Parent = Part3
  2229. Weld119.C1 = CFrame.new(-3.4570694e-06, 3.23180103, 0.775444984, 1, -1.19092874e-07, 2.05247488e-07, -1.07567757e-07, -0.998391926, -0.056692116, 2.10009603e-07, 0.0566921085, -0.998391867)
  2230. Weld119.Part0 = Part3
  2231. Weld119.Part1 = Part349
  2232. Weld119.part1 = Part349
  2233. Weld120.Name = "BTWeld"
  2234. Weld120.Parent = Part3
  2235. Weld120.C1 = CFrame.new(-0.854813099, -0.0312469006, 0.683163643, 1.75787136e-08, -0.707106531, 0.707107306, -1, -9.8021701e-08, -7.47404556e-08, 1.20606273e-07, -0.707107365, -0.707106531)
  2236. Weld120.Part0 = Part3
  2237. Weld120.Part1 = Part217
  2238. Weld120.part1 = Part217
  2239. Weld121.Name = "BTWeld"
  2240. Weld121.Parent = Part3
  2241. Weld121.C1 = CFrame.new(8.94069672e-07, 0.388443947, 0.0130519867, -1, 2.08383426e-07, 3.34477591e-07, -3.4889672e-07, -0.866025686, -0.49999994, 1.87254045e-07, -0.499999881, 0.866025686)
  2242. Weld121.Part0 = Part3
  2243. Weld121.Part1 = Part393
  2244. Weld121.part1 = Part393
  2245. Weld122.Name = "BTWeld"
  2246. Weld122.Parent = Part3
  2247. Weld122.C1 = CFrame.new(1.84774399e-06, -1.088727, -0.591116905, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  2248. Weld122.Part0 = Part3
  2249. Weld122.Part1 = Part287
  2250. Weld122.part1 = Part287
  2251. Weld123.Name = "BTWeld"
  2252. Weld123.Parent = Part3
  2253. Weld123.C1 = CFrame.new(-2.98023224e-06, 0.291165352, -0.776105642, 1, 2.08732672e-07, 7.35781214e-08, -2.08383426e-07, 1.00000024, 1.78813934e-07, -7.12225301e-08, -1.76951289e-07, 1.00000024)
  2254. Weld123.Part0 = Part3
  2255. Weld123.Part1 = Part235
  2256. Weld123.part1 = Part235
  2257. Weld124.Name = "BTWeld"
  2258. Weld124.Parent = Part3
  2259. Weld124.C1 = CFrame.new(-1.78813934e-06, -0.316618919, 0.434119701, 1, -1.19092874e-07, -2.68964868e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, -2.71322278e-07, 5.77419996e-08, -1.00000024)
  2260. Weld124.Part0 = Part3
  2261. Weld124.Part1 = Part227
  2262. Weld124.part1 = Part227
  2263. Weld125.Name = "BTWeld"
  2264. Weld125.Parent = Part3
  2265. Weld125.C1 = CFrame.new(1.7285347e-06, -0.568753242, -0.743589878, -1, 1.18976459e-07, 3.28123861e-07, -1.1944212e-07, -1.00000024, -8.94069672e-08, 3.30041075e-07, -8.7544322e-08, 1.00000024)
  2266. Weld125.Part0 = Part3
  2267. Weld125.Part1 = Part375
  2268. Weld125.part1 = Part375
  2269. Weld126.Name = "BTWeld"
  2270. Weld126.Parent = Part3
  2271. Weld126.C1 = CFrame.new(1.1920929e-06, 0.194246531, 0.194999695, -1, -2.08732672e-07, 1.17877789e-07, -1.20393452e-07, -1.19395554e-06, -1.00000024, 2.08499841e-07, -1.00000024, 1.1920929e-06)
  2272. Weld126.Part0 = Part3
  2273. Weld126.Part1 = Part223
  2274. Weld126.part1 = Part223
  2275. Weld127.Name = "BTWeld"
  2276. Weld127.Parent = Part3
  2277. Weld127.C1 = CFrame.new(2.08616257e-06, 0.382621765, 0.593743563, -1, -2.32830644e-10, -8.87230271e-08, 2.32830644e-10, 1.00000024, 1.86264515e-09, 8.63965397e-08, -1.86264515e-09, -1.00000024)
  2278. Weld127.Part0 = Part3
  2279. Weld127.Part1 = Part347
  2280. Weld127.part1 = Part347
  2281. Weld128.Name = "BTWeld"
  2282. Weld128.Parent = Part3
  2283. Weld128.C1 = CFrame.new(3.87430191e-06, -3.59139156, -0.606614113, -1, 2.08383426e-07, 1.49542757e-07, -2.08732672e-07, -1.00000024, -5.96046448e-08, 1.52112989e-07, -5.77419996e-08, 1.00000024)
  2284. Weld128.Part0 = Part3
  2285. Weld128.Part1 = Part207
  2286. Weld128.part1 = Part207
  2287. Weld129.Name = "BTWeld"
  2288. Weld129.Parent = Part3
  2289. Weld129.C1 = CFrame.new(3.64600849, -0.0312508941, -0.13107121, -2.47033313e-07, -0.994522214, -0.104528487, 1, -2.45636329e-07, -2.16805347e-08, -2.28465069e-09, -0.104528487, 0.994522214)
  2290. Weld129.Part0 = Part3
  2291. Weld129.Part1 = Part273
  2292. Weld129.part1 = Part273
  2293. Weld130.Name = "BTWeld"
  2294. Weld130.Parent = Part3
  2295. Weld130.C1 = CFrame.new(-1.84774399e-06, -0.879115105, 0.593742847, 1, -1.19092874e-07, -2.13065505e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, -2.15442924e-07, 5.77419996e-08, -1.00000024)
  2296. Weld130.Part0 = Part3
  2297. Weld130.Part1 = Part369
  2298. Weld130.part1 = Part369
  2299. Weld131.Name = "BTWeld"
  2300. Weld131.Parent = Part3
  2301. Weld131.C1 = CFrame.new(3.51667404e-06, 2.25183678, 0.638117313, -1, -8.95233825e-08, 3.02316039e-08, -8.92905518e-08, 1.00000024, 5.96046448e-08, -3.29036993e-08, 5.77419996e-08, -1.00000024)
  2302. Weld131.Part0 = Part3
  2303. Weld131.Part1 = Part285
  2304. Weld131.part1 = Part285
  2305. Weld132.Name = "BTWeld"
  2306. Weld132.Parent = Part3
  2307. Weld132.C1 = CFrame.new(1.93451023, -0.0312511921, -0.27059412, -2.42958777e-07, -0.998629749, -0.0523359664, 1, -2.42260285e-07, -8.10723577e-09, -2.90310709e-09, -0.0523359701, 0.998629689)
  2308. Weld132.Part0 = Part3
  2309. Weld132.Part1 = Part405
  2310. Weld132.part1 = Part405
  2311. Weld133.Name = "BTWeld"
  2312. Weld133.Parent = Part3
  2313. Weld133.C1 = CFrame.new(3.63588333e-06, -1.6542244, -0.638116837, -1, 1.18976459e-07, 3.0064075e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.02987246e-07, -5.77419996e-08, 1.00000024)
  2314. Weld133.Part0 = Part3
  2315. Weld133.Part1 = Part359
  2316. Weld133.part1 = Part359
  2317. Weld134.Name = "BTWeld"
  2318. Weld134.Parent = Part3
  2319. Weld134.C1 = CFrame.new(-1.78813934e-06, 0.12912178, -0.362743616, 1, 2.32830644e-10, -1.18105163e-07, 2.32830644e-10, 1.00000024, 1.80676579e-07, 1.20164259e-07, -1.76951289e-07, 1.00000024)
  2320. Weld134.Part0 = Part3
  2321. Weld134.Part1 = Part183
  2322. Weld134.part1 = Part183
  2323. Weld135.Name = "BTWeld"
  2324. Weld135.Parent = Part3
  2325. Weld135.C1 = CFrame.new(-1.7285347e-06, 0.139364243, -0.256871939, 1, -1.18976459e-07, -1.49711923e-07, 1.1944212e-07, 1.00000024, 0, 1.52022039e-07, 1.86264515e-09, 1.00000024)
  2326. Weld135.Part0 = Part3
  2327. Weld135.Part1 = Part225
  2328. Weld135.part1 = Part225
  2329. Weld136.Name = "BTWeld"
  2330. Weld136.Parent = Part3
  2331. Weld136.C1 = CFrame.new(2.86102295e-06, 0.0545005798, 0.453119755, -1, -2.32830644e-10, -8.87230271e-08, 2.32830644e-10, 1.00000024, 1.86264515e-09, 8.63965397e-08, -1.86264515e-09, -1.00000024)
  2332. Weld136.Part0 = Part3
  2333. Weld136.Part1 = Part337
  2334. Weld136.part1 = Part337
  2335. Weld137.Name = "BTWeld"
  2336. Weld137.Parent = Part3
  2337. Weld137.C1 = CFrame.new(0.246384621, -0.0312500596, 0.315700054, 5.82076609e-09, 0.965926111, -0.258819044, -1, 2.29338184e-08, 6.17128535e-08, 6.73753675e-08, 0.258819014, 0.965926111)
  2338. Weld137.Part0 = Part3
  2339. Weld137.Part1 = Part245
  2340. Weld137.part1 = Part245
  2341. Weld138.Name = "BTWeld"
  2342. Weld138.Parent = Part3
  2343. Weld138.C1 = CFrame.new(-1.07288361e-06, 1.90734863e-06, 0.152749538, 1, -1.18976459e-07, -3.88215994e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, -3.90531568e-07, 5.77419996e-08, -1.00000024)
  2344. Weld138.Part0 = Part3
  2345. Weld138.Part1 = Part309
  2346. Weld138.part1 = Part309
  2347. Weld139.Name = "BTWeld"
  2348. Weld139.Parent = Part3
  2349. Weld139.C1 = CFrame.new(-3.03983688e-06, 0.82331419, -0.458539009, 1, 2.08732672e-07, 7.35781214e-08, -9.66247171e-08, 0.707106471, -0.707107365, -1.97673216e-07, 0.707107365, 0.707106471)
  2350. Weld139.Part0 = Part3
  2351. Weld139.Part1 = Part181
  2352. Weld139.part1 = Part181
  2353. Weld140.Name = "BTWeld"
  2354. Weld140.Parent = Part3
  2355. Weld140.C1 = CFrame.new(-3.39746475e-06, -1.05464268, -1.43672371, 1, 2.08732672e-07, -4.8930815e-10, -1.93249434e-07, 0.922201157, -0.386711091, -7.82310963e-08, 0.386711091, 0.922201216)
  2356. Weld140.Part0 = Part3
  2357. Weld140.Part1 = Part333
  2358. Weld140.part1 = Part333
  2359. Weld141.Name = "BTWeld"
  2360. Weld141.Parent = Part3
  2361. Weld141.C1 = CFrame.new(0.0437097549, -0.0312481523, 1.49426508, -1.02329068e-07, -0.707107306, -0.707106531, -1, -1.1047814e-07, 2.52499376e-07, -2.57976353e-07, 0.70710659, -0.707107306)
  2362. Weld141.Part0 = Part3
  2363. Weld141.Part1 = Part249
  2364. Weld141.part1 = Part249
  2365. Weld142.Name = "BTWeld"
  2366. Weld142.Parent = Part3
  2367. Weld142.C1 = CFrame.new(1.84774399e-06, 1.04499984, 4.84788132, -1, -2.32830644e-10, 1.16708179e-07, -1.19271135e-07, -1.01514161e-06, -1.00000024, -1.16415322e-10, -1.00000024, 1.01141632e-06)
  2368. Weld142.Part0 = Part3
  2369. Weld142.Part1 = Part205
  2370. Weld142.part1 = Part205
  2371. Weld143.Name = "BTWeld"
  2372. Weld143.Parent = Part3
  2373. Weld143.C1 = CFrame.new(-3.03983688e-06, 0.591758728, 0.577001572, 1, -1.18976459e-07, 2.07579433e-07, -1.19325705e-07, -1.00000024, 3.57627869e-07, 2.05687684e-07, -3.57627869e-07, -1.00000024)
  2374. Weld143.Part0 = Part3
  2375. Weld143.Part1 = Part385
  2376. Weld143.part1 = Part385
  2377. Weld144.Name = "BTWeld"
  2378. Weld144.Parent = Part3
  2379. Weld144.C1 = CFrame.new(-0.568752289, -0.0312482715, 1.24358273, -5.98374754e-08, -1.00000024, 0, -1, 5.93718141e-08, 3.27925591e-07, -3.30370312e-07, -1.86264515e-09, -1.00000024)
  2380. Weld144.Part0 = Part3
  2381. Weld144.Part1 = Part197
  2382. Weld144.part1 = Part197
  2383. Weld145.Name = "BTWeld"
  2384. Weld145.Parent = Part3
  2385. Weld145.C1 = CFrame.new(8.34465027e-07, 0.340940475, -0.537741661, -1, 2.08383426e-07, 3.34477591e-07, -1.24564394e-08, -0.866025329, 0.500000596, 3.95695679e-07, 0.500000596, 0.866025448)
  2386. Weld145.Part0 = Part3
  2387. Weld145.Part1 = Part357
  2388. Weld145.part1 = Part357
  2389. Weld146.Name = "BTWeld"
  2390. Weld146.Parent = Part3
  2391. Weld146.C1 = CFrame.new(-0.0784215927, -0.0312500596, 0.188100338, -2.43075192e-07, -0.866025627, -0.5, 1, -2.29571015e-07, -8.65911716e-08, -3.80096026e-08, -0.49999994, 0.866025686)
  2392. Weld146.Part0 = Part3
  2393. Weld146.Part1 = Part343
  2394. Weld146.part1 = Part343
  2395. Weld147.Name = "BTWeld"
  2396. Weld147.Parent = Part3
  2397. Weld147.C1 = CFrame.new(0.078420639, -0.0312501192, 0.188100815, 1.53668225e-07, 0.866025686, 0.5, -1, 1.49011612e-07, 4.73319233e-08, -3.19560058e-08, -0.49999994, 0.866025686)
  2398. Weld147.Part0 = Part3
  2399. Weld147.Part1 = Part353
  2400. Weld147.part1 = Part353
  2401. Weld148.Name = "BTWeld"
  2402. Weld148.Parent = Part3
  2403. Weld148.C1 = CFrame.new(-3.39746475e-06, -1.19873238, -1.4971447, 1, 2.08732672e-07, -4.8930815e-10, -1.93249434e-07, 0.922201157, -0.386711091, -7.82310963e-08, 0.386711091, 0.922201216)
  2404. Weld148.Part0 = Part3
  2405. Weld148.Part1 = Part313
  2406. Weld148.part1 = Part313
  2407. Weld149.Name = "BTWeld"
  2408. Weld149.Parent = Part3
  2409. Weld149.C1 = CFrame.new(-0.665288925, -0.0312472582, -0.400229454, 6.10016286e-08, 0.999914467, 0.0130897425, -1, 6.01867214e-08, 2.42216629e-08, 2.52284735e-08, -0.0130897434, 0.999914587)
  2410. Weld149.Part0 = Part3
  2411. Weld149.Part1 = Part211
  2412. Weld149.part1 = Part211
  2413. Weld150.Name = "BTWeld"
  2414. Weld150.Parent = Part3
  2415. Weld150.C1 = CFrame.new(1.78813934e-06, -0.22074604, -0.390618801, -1, 1.18976459e-07, 3.56074452e-07, -1.19325705e-07, -1.00000024, -5.96046448e-08, 3.58400939e-07, -5.77419996e-08, 1.00000024)
  2416. Weld150.Part0 = Part3
  2417. Weld150.Part1 = Part311
  2418. Weld150.part1 = Part311
  2419. Weld151.Name = "BTWeld"
  2420. Weld151.Parent = Part3
  2421. Weld151.C1 = CFrame.new(-3.39746475e-06, -1.12668896, -1.46693516, 1, 2.08732672e-07, -4.8930815e-10, -1.93249434e-07, 0.922201157, -0.386711091, -7.82310963e-08, 0.386711091, 0.922201216)
  2422. Weld151.Part0 = Part3
  2423. Weld151.Part1 = Part319
  2424. Weld151.part1 = Part319
  2425. Weld152.Name = "BTWeld"
  2426. Weld152.Parent = Part3
  2427. Weld152.C1 = CFrame.new(-3.03983688e-06, 0.522769928, 0.783498287, 1, -1.18976459e-07, 2.07579433e-07, -1.19325705e-07, -1.00000024, 3.57627869e-07, 2.05687684e-07, -3.57627869e-07, -1.00000024)
  2428. Weld152.Part0 = Part3
  2429. Weld152.Part1 = Part189
  2430. Weld152.part1 = Part189
  2431. Weld153.Name = "BTWeld"
  2432. Weld153.Parent = Part3
  2433. Weld153.C1 = CFrame.new(0.854812145, -0.0312569141, 0.683163643, -7.71833584e-08, 0.707106531, -0.707107306, 1, 1.8987339e-07, 8.20728019e-08, 1.90921128e-07, -0.707107365, -0.707106531)
  2434. Weld153.Part0 = Part3
  2435. Weld153.Part1 = Part271
  2436. Weld153.part1 = Part271
  2437. Weld154.Name = "BTWeld"
  2438. Weld154.Parent = Part3
  2439. Weld154.C1 = CFrame.new(1.78813934e-06, -0.589484215, -0.222372532, -1, 2.08499841e-07, 2.3712164e-07, -2.08849087e-07, -1.00000024, 0, 2.39566361e-07, 1.86264515e-09, 1.00000024)
  2440. Weld154.Part0 = Part3
  2441. Weld154.Part1 = Part303
  2442. Weld154.part1 = Part303
  2443. Weld155.Name = "BTWeld"
  2444. Weld155.Parent = Part3
  2445. Weld155.C1 = CFrame.new(-2.44379044e-06, 1.74366188, -2.46923256, 1, -3.87313776e-07, -1.35698428e-07, -2.53145117e-07, -0.31730628, -0.948323369, 3.2375101e-07, 0.948323369, -0.31730631)
  2446. Weld155.Part0 = Part3
  2447. Weld155.Part1 = Part305
  2448. Weld155.part1 = Part305
  2449. Weld156.Name = "BTWeld"
  2450. Weld156.Parent = Part3
  2451. Weld156.C1 = CFrame.new(2.74181366e-06, 0.0869274139, -0.603420258, -1, 2.08499841e-07, 2.86032446e-07, 5.57629392e-08, -0.707106411, 0.707107425, 3.51225026e-07, 0.707107425, 0.707106411)
  2452. Weld156.Part0 = Part3
  2453. Weld156.Part1 = Part413
  2454. Weld156.part1 = Part413
  2455. Weld157.Name = "BTWeld"
  2456. Weld157.Parent = Part3
  2457. Weld157.C1 = CFrame.new(-1.25169754e-06, 2.73876762, 0.462646961, 1, -2.08499841e-07, 1.89578714e-07, -1.861481e-07, -0.993572116, -0.113202803, 2.0985317e-07, 0.113202795, -0.993572176)
  2458. Weld157.Part0 = Part3
  2459. Weld157.Part1 = Part267
  2460. Weld157.part1 = Part267
  2461. Weld158.Name = "BTWeld"
  2462. Weld158.Parent = Part3
  2463. Weld158.C1 = CFrame.new(8.94069672e-07, 0.443323135, -0.28379035, -1, 2.08383426e-07, 3.34477591e-07, -2.08732672e-07, -1.00000024, 1.78813934e-07, 3.36614903e-07, 1.80676579e-07, 1.00000024)
  2464. Weld158.Part0 = Part3
  2465. Weld158.Part1 = Part439
  2466. Weld158.part1 = Part439
  2467. Weld159.Name = "BTWeld"
  2468. Weld159.Parent = Part3
  2469. Weld159.C1 = CFrame.new(-2.98023224e-07, 2.46521568, 0.596743584, -1, -8.95233825e-08, 3.02316039e-08, -8.92905518e-08, 1.00000024, 5.96046448e-08, -3.29036993e-08, 5.77419996e-08, -1.00000024)
  2470. Weld159.Part0 = Part3
  2471. Weld159.Part1 = Part201
  2472. Weld159.part1 = Part201
  2473. Weld160.Name = "BTWeld"
  2474. Weld160.Parent = Part3
  2475. Weld160.C1 = CFrame.new(0.665288925, -0.0312529206, -0.400229454, -1.50408596e-07, -0.999914527, -0.0130897444, 1, -1.49477273e-07, -2.5913323e-08, 2.56950443e-08, -0.0130897444, 0.999914587)
  2476. Weld160.Part0 = Part3
  2477. Weld160.Part1 = Part279
  2478. Weld160.part1 = Part279
  2479. Weld161.Name = "BTWeld"
  2480. Weld161.Parent = Part3
  2481. Weld161.C1 = CFrame.new(-3.63588333e-06, 1.55414867, 1.9456358, 1, 8.95233825e-08, 2.22247763e-07, -4.30736691e-08, -0.843391299, 0.537300408, 2.34518666e-07, -0.537300348, -0.84339118)
  2482. Weld161.Part0 = Part3
  2483. Weld161.Part1 = Part335
  2484. Weld161.part1 = Part335
  2485. Weld162.Name = "BTWeld"
  2486. Weld162.Parent = Part3
  2487. Weld162.C1 = CFrame.new(8.34465027e-07, -3.73201656, 0.770674467, 1, 2.32830644e-10, -2.6903399e-07, -2.32830644e-10, -1.00000024, 8.7544322e-08, -2.71093086e-07, -9.12696123e-08, -1.00000024)
  2488. Weld162.Part0 = Part3
  2489. Weld162.Part1 = Part185
  2490. Weld162.part1 = Part185
  2491. Part163.Parent = Model0
  2492. Part163.CFrame = CFrame.new(-0.611257851, 3.46313882, -15.394145, 0.999985635, -0.00162807317, 0.00510706799, 0.00513700349, 0.0189462826, -0.999807417, 0.00153099932, 0.999819279, 0.0189543739)
  2493. Part163.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2494. Part163.Position = Vector3.new(-0.611257851, 3.46313882, -15.394145)
  2495. Part163.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2496. Part163.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2497. Part163.Velocity = Vector3.new(2.31788153e-08, 0.0024639722, 3.04594494e-07)
  2498. Part163.Size = Vector3.new(0.275000006, 0.84512496, 0.359375)
  2499. Part163.Anchored = true
  2500. Part163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2501. Part163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2502. Part163.BrickColor = BrickColor.new("Really black")
  2503. Part163.CanCollide = false
  2504. Part163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2505. Part163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2506. Part163.Material = Enum.Material.Metal
  2507. Part163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2508. Part163.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2509. Part163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2510. Part163.brickColor = BrickColor.new("Really black")
  2511. SpecialMesh164.Parent = Part163
  2512. SpecialMesh164.Scale = Vector3.new(0.349999994, 1, 0.5)
  2513. SpecialMesh164.MeshType = Enum.MeshType.Brick
  2514. Part165.Parent = Model0
  2515. Part165.CFrame = CFrame.new(-0.617485046, 3.2590127, -10.6418428, -0.999985635, -0.00414685067, -0.00339615461, -0.00513672922, 0.560423911, 0.828190207, -0.00153109396, 0.828195751, -0.560437143)
  2516. Part165.Orientation = Vector3.new(-55.9099998, -179.649994, -0.529999971)
  2517. Part165.Position = Vector3.new(-0.617485046, 3.2590127, -10.6418428)
  2518. Part165.Rotation = Vector3.new(-124.089996, -0.189999998, 179.759995)
  2519. Part165.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2520. Part165.Velocity = Vector3.new(5.55462663e-08, 0.00247387378, 7.29936687e-07)
  2521. Part165.Size = Vector3.new(0.275000006, 0.4375, 0.25)
  2522. Part165.Anchored = true
  2523. Part165.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2524. Part165.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2525. Part165.BrickColor = BrickColor.new("Really black")
  2526. Part165.CanCollide = false
  2527. Part165.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2528. Part165.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2529. Part165.Material = Enum.Material.Metal
  2530. Part165.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2531. Part165.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2532. Part165.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2533. Part165.brickColor = BrickColor.new("Really black")
  2534. SpecialMesh166.Parent = Part165
  2535. SpecialMesh166.Scale = Vector3.new(0.5, 1, 0.25)
  2536. SpecialMesh166.MeshType = Enum.MeshType.Brick
  2537. Part167.Parent = Model0
  2538. Part167.CFrame = CFrame.new(-0.610199153, 2.88768315, -14.1553068, 0.999985635, 0.00162795268, -0.00510686403, 0.0051367972, -0.0189460143, 0.999807417, 0.00153088395, -0.999819279, -0.0189541057)
  2539. Part167.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  2540. Part167.Position = Vector3.new(-0.610199153, 2.88768315, -14.1553068)
  2541. Part167.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  2542. Part167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2543. Part167.Velocity = Vector3.new(1.14426342e-07, 0.00246655382, 1.50368453e-06)
  2544. Part167.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  2545. Part167.Anchored = true
  2546. Part167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2547. Part167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. Part167.BrickColor = BrickColor.new("Really black")
  2549. Part167.CanCollide = false
  2550. Part167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2551. Part167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2552. Part167.Material = Enum.Material.Glass
  2553. Part167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2554. Part167.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2555. Part167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2556. Part167.brickColor = BrickColor.new("Really black")
  2557. SpecialMesh168.Parent = Part167
  2558. SpecialMesh168.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  2559. SpecialMesh168.MeshType = Enum.MeshType.Wedge
  2560. Part169.Parent = Model0
  2561. Part169.CFrame = CFrame.new(-0.613238811, 3.32843637, -13.6493177, -0.999985635, -0.00162807142, -0.00510653527, -0.00513647031, 0.0189459249, 0.999807417, -0.00153100933, 0.999819279, -0.0189540163)
  2562. Part169.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2563. Part169.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  2564. Part169.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2565. Part169.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2566. Part169.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  2567. Part169.Size = Vector3.new(0.275000006, 0.698124886, 0.534374952)
  2568. Part169.Anchored = true
  2569. Part169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2570. Part169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2571. Part169.BrickColor = BrickColor.new("Bright blue")
  2572. Part169.CanCollide = false
  2573. Part169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2574. Part169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2575. Part169.Material = Enum.Material.Neon
  2576. Part169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2577. Part169.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2578. Part169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2579. Part169.brickColor = BrickColor.new("Bright blue")
  2580. SpecialMesh170.Parent = Part169
  2581. SpecialMesh170.Scale = Vector3.new(0.452499986, 1, 1)
  2582. SpecialMesh170.MeshType = Enum.MeshType.Cylinder
  2583. Part171.Parent = Model0
  2584. Part171.CFrame = CFrame.new(-0.610366702, 3.28867483, -15.3908367, 0.999985635, -0.00162807317, 0.00510706799, 0.00513700349, 0.0189462826, -0.999807417, 0.00153099932, 0.999819279, 0.0189543739)
  2585. Part171.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2586. Part171.Position = Vector3.new(-0.610366702, 3.28867483, -15.3908367)
  2587. Part171.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2588. Part171.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2589. Part171.Velocity = Vector3.new(5.08428144e-08, 0.00246397941, 6.68129019e-07)
  2590. Part171.Size = Vector3.new(0.275000006, 0.84512496, 0.422374964)
  2591. Part171.Anchored = true
  2592. Part171.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2593. Part171.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2594. Part171.BrickColor = BrickColor.new("Really black")
  2595. Part171.CanCollide = false
  2596. Part171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2597. Part171.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2598. Part171.Material = Enum.Material.Metal
  2599. Part171.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2600. Part171.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2601. Part171.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2602. Part171.brickColor = BrickColor.new("Really black")
  2603. SpecialMesh172.Parent = Part171
  2604. SpecialMesh172.Scale = Vector3.new(0.400000006, 1, 0.5)
  2605. SpecialMesh172.MeshType = Enum.MeshType.Brick
  2606. Part173.Parent = Model0
  2607. Part173.CFrame = CFrame.new(-0.610880256, 2.96906447, -13.9840736, -0.999985635, -0.00162807154, -0.00510650687, -0.00513644237, 0.0189459547, 0.999807417, -0.00153100991, 0.999819279, -0.0189540461)
  2608. Part173.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2609. Part173.Position = Vector3.new(-0.610880256, 2.96906447, -13.9840736)
  2610. Part173.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2611. Part173.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2612. Part173.Velocity = Vector3.new(1.01522062e-07, 0.00246691052, 1.33410845e-06)
  2613. Part173.Size = Vector3.new(0.275000006, 0.239124984, 0.205375016)
  2614. Part173.Anchored = true
  2615. Part173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2616. Part173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2617. Part173.BrickColor = BrickColor.new("Bright blue")
  2618. Part173.CanCollide = false
  2619. Part173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2620. Part173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2621. Part173.Material = Enum.Material.Neon
  2622. Part173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. Part173.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2624. Part173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. Part173.brickColor = BrickColor.new("Bright blue")
  2626. SpecialMesh174.Parent = Part173
  2627. SpecialMesh174.Scale = Vector3.new(0.550000012, 1, 1)
  2628. SpecialMesh174.MeshType = Enum.MeshType.Brick
  2629. Part175.Parent = Model0
  2630. Part175.CFrame = CFrame.new(-0.613238811, 3.32843637, -13.6493177, -0.999985635, -0.00162807142, -0.00510653527, -0.00513647031, 0.0189459249, 0.999807417, -0.00153100933, 0.999819279, -0.0189540163)
  2631. Part175.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2632. Part175.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  2633. Part175.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2634. Part175.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2635. Part175.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  2636. Part175.Size = Vector3.new(0.275000006, 0.698124886, 0.372374952)
  2637. Part175.Anchored = true
  2638. Part175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2639. Part175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2640. Part175.BrickColor = BrickColor.new("Really black")
  2641. Part175.CanCollide = false
  2642. Part175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2643. Part175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. Part175.Material = Enum.Material.Metal
  2645. Part175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. Part175.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2647. Part175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2648. Part175.brickColor = BrickColor.new("Really black")
  2649. SpecialMesh176.Parent = Part175
  2650. SpecialMesh176.Scale = Vector3.new(0.455000013, 1, 1)
  2651. SpecialMesh176.MeshType = Enum.MeshType.Cylinder
  2652. Part177.Parent = Model0
  2653. Part177.CFrame = CFrame.new(-0.616063476, 3.26214504, -11.5807333, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  2654. Part177.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2655. Part177.Position = Vector3.new(-0.616063476, 3.26214504, -11.5807333)
  2656. Part177.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2657. Part177.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2658. Part177.Velocity = Vector3.new(5.50495756e-08, 0.00247191754, 7.23409755e-07)
  2659. Part177.Size = Vector3.new(0.275000006, 0.630125046, 0.280375004)
  2660. Part177.Anchored = true
  2661. Part177.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2662. Part177.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. Part177.BrickColor = BrickColor.new("Really black")
  2664. Part177.CanCollide = false
  2665. Part177.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2666. Part177.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2667. Part177.Material = Enum.Material.Metal
  2668. Part177.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2669. Part177.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2670. Part177.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2671. Part177.brickColor = BrickColor.new("Really black")
  2672. SpecialMesh178.Parent = Part177
  2673. SpecialMesh178.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  2674. SpecialMesh178.MeshType = Enum.MeshType.Brick
  2675. Part179.Parent = Model0
  2676. Part179.CFrame = CFrame.new(-0.610621691, 3.13382888, -14.7050791, 0.999985635, -0.00476216245, 0.00246017892, 0.00513689732, 0.720368028, -0.693573177, 0.00153067347, 0.693575799, 0.720382154)
  2677. Part179.Orientation = Vector3.new(43.9099998, 0.199999988, 0.409999996)
  2678. Part179.Position = Vector3.new(-0.610621691, 3.13382888, -14.7050791)
  2679. Part179.Rotation = Vector3.new(43.9099998, 0.140000001, 0.269999981)
  2680. Part179.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2681. Part179.Velocity = Vector3.new(7.53960734e-08, 0.0024654083, 9.90785111e-07)
  2682. Part179.Size = Vector3.new(0.275000006, 0.221124932, 0.418375015)
  2683. Part179.Anchored = true
  2684. Part179.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2685. Part179.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. Part179.BrickColor = BrickColor.new("Really black")
  2687. Part179.CanCollide = false
  2688. Part179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2689. Part179.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2690. Part179.Material = Enum.Material.Metal
  2691. Part179.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2692. Part179.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2693. Part179.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2694. Part179.brickColor = BrickColor.new("Really black")
  2695. SpecialMesh180.Parent = Part179
  2696. SpecialMesh180.Scale = Vector3.new(0.550000012, 1.04999995, 0.899999976)
  2697. SpecialMesh180.MeshType = Enum.MeshType.Brick
  2698. Part181.Parent = Model0
  2699. Part181.CFrame = CFrame.new(-0.61356318, 3.48533392, -13.9631662, 0.999985635, 0.0047621401, -0.00246015727, 0.00513686566, -0.720367908, 0.693573296, 0.00153067405, -0.693575978, -0.720381975)
  2700. Part181.Orientation = Vector3.new(-43.9099998, -179.800003, 179.589996)
  2701. Part181.Position = Vector3.new(-0.61356318, 3.48533392, -13.9631662)
  2702. Part181.Rotation = Vector3.new(-136.089996, -0.140000001, -0.269999981)
  2703. Part181.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2704. Part181.Velocity = Vector3.new(1.96594527e-08, 0.00246695359, 2.58346063e-07)
  2705. Part181.Size = Vector3.new(0.275000006, 0.413124949, 0.622375011)
  2706. Part181.Anchored = true
  2707. Part181.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2708. Part181.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2709. Part181.BrickColor = BrickColor.new("Really black")
  2710. Part181.CanCollide = false
  2711. Part181.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2712. Part181.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2713. Part181.Material = Enum.Material.Metal
  2714. Part181.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. Part181.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2716. Part181.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. Part181.brickColor = BrickColor.new("Really black")
  2718. SpecialMesh182.Parent = Part181
  2719. SpecialMesh182.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  2720. SpecialMesh182.MeshType = Enum.MeshType.Brick
  2721. Part183.Parent = Model0
  2722. Part183.CFrame = CFrame.new(-0.610578179, 2.93933439, -14.0816517, 0.999985635, 0.00162795174, -0.00510674529, 0.005136678, -0.0189458355, 0.999807417, 0.00153088616, -0.999819279, -0.0189539269)
  2723. Part183.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  2724. Part183.Position = Vector3.new(-0.610578179, 2.93933439, -14.0816517)
  2725. Part183.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  2726. Part183.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2727. Part183.Velocity = Vector3.new(1.06236229e-07, 0.00246670726, 1.39605754e-06)
  2728. Part183.Size = Vector3.new(0.275000006, 0.252000004, 0.213375002)
  2729. Part183.Anchored = true
  2730. Part183.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2731. Part183.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2732. Part183.BrickColor = BrickColor.new("Really black")
  2733. Part183.CanCollide = false
  2734. Part183.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. Part183.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2736. Part183.Material = Enum.Material.Metal
  2737. Part183.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2738. Part183.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2739. Part183.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2740. Part183.brickColor = BrickColor.new("Really black")
  2741. SpecialMesh184.Parent = Part183
  2742. SpecialMesh184.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  2743. SpecialMesh184.MeshType = Enum.MeshType.Wedge
  2744. Part185.Parent = Model0
  2745. Part185.CFrame = CFrame.new(-0.61852932, 3.41544771, -10.4871407, 0.999985635, -0.00162795314, 0.00510659395, 0.00513652712, 0.0189461038, -0.999807417, 0.00153088907, 0.999819279, 0.0189541951)
  2746. Part185.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2747. Part185.Position = Vector3.new(-0.61852932, 3.41544771, -10.4871407)
  2748. Part185.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2749. Part185.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2750. Part185.Velocity = Vector3.new(3.07410488e-08, 0.00247419602, 4.03969523e-07)
  2751. Part185.Size = Vector3.new(0.270000011, 0.21875, 0.234375)
  2752. Part185.Anchored = true
  2753. Part185.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2754. Part185.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2755. Part185.BrickColor = BrickColor.new("Really black")
  2756. Part185.CanCollide = false
  2757. Part185.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2758. Part185.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. Part185.Material = Enum.Material.Metal
  2760. Part185.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. Part185.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2762. Part185.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2763. Part185.brickColor = BrickColor.new("Really black")
  2764. SpecialMesh186.Parent = Part185
  2765. SpecialMesh186.Scale = Vector3.new(0.5, 0.5, 0.5)
  2766. SpecialMesh186.MeshType = Enum.MeshType.Wedge
  2767. Part187.Parent = Model0
  2768. Part187.CFrame = CFrame.new(-0.608188927, 3.09825993, -16.1759663, -0.999985635, 0.00519088237, -0.00133629935, -0.0051367199, -0.999273539, -0.0377651006, -0.0015313623, -0.0377576947, 0.999285877)
  2769. Part187.Orientation = Vector3.new(2.15999985, -0.0799999982, -179.709991)
  2770. Part187.Position = Vector3.new(-0.608188927, 3.09825993, -16.1759663)
  2771. Part187.Rotation = Vector3.new(2.15999985, -0.0799999982, -179.699997)
  2772. Part187.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2773. Part187.Velocity = Vector3.new(8.10360774e-08, 0.00246234378, 1.06490097e-06)
  2774. Part187.Size = Vector3.new(0.275000006, 0.235124931, 1.6693753)
  2775. Part187.Anchored = true
  2776. Part187.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2777. Part187.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. Part187.BrickColor = BrickColor.new("Really black")
  2779. Part187.CanCollide = false
  2780. Part187.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2781. Part187.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2782. Part187.Material = Enum.Material.Metal
  2783. Part187.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2784. Part187.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2785. Part187.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2786. Part187.brickColor = BrickColor.new("Really black")
  2787. SpecialMesh188.Parent = Part187
  2788. SpecialMesh188.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  2789. SpecialMesh188.MeshType = Enum.MeshType.Brick
  2790. Part189.Parent = Model0
  2791. Part189.CFrame = CFrame.new(-0.611664593, 3.3476572, -14.7413998, 0.999985635, -0.00162807363, 0.00510707032, 0.00513700629, 0.018946372, -0.999807417, 0.0015309992, 0.999819279, 0.0189544633)
  2792. Part189.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2793. Part189.Position = Vector3.new(-0.611664593, 3.3476572, -14.7413998)
  2794. Part189.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2795. Part189.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2796. Part189.Velocity = Vector3.new(4.14902424e-08, 0.00246533239, 5.45226158e-07)
  2797. Part189.Size = Vector3.new(0.275000006, 0.480124891, 0.214375019)
  2798. Part189.Anchored = true
  2799. Part189.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2800. Part189.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2801. Part189.BrickColor = BrickColor.new("Bright blue")
  2802. Part189.CanCollide = false
  2803. Part189.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2804. Part189.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2805. Part189.Material = Enum.Material.Neon
  2806. Part189.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2807. Part189.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2808. Part189.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2809. Part189.brickColor = BrickColor.new("Bright blue")
  2810. SpecialMesh190.Parent = Part189
  2811. SpecialMesh190.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  2812. SpecialMesh190.MeshType = Enum.MeshType.Brick
  2813. Part191.Parent = Model0
  2814. Part191.CFrame = CFrame.new(-0.637731671, 3.71308732, -19.354105, -0.0050775772, -0.999985635, -0.00171704381, 0.999324501, -0.00513670873, 0.0363931209, -0.0364014208, -0.00153109431, 0.999336243)
  2815. Part191.Orientation = Vector3.new(-2.08999991, -0.099999994, 90.2900009)
  2816. Part191.Position = Vector3.new(-0.637731671, 3.71308732, -19.354105)
  2817. Part191.Rotation = Vector3.new(-2.08999991, -0.099999994, 90.2900009)
  2818. Part191.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2819. Part191.Velocity = Vector3.new(-1.64544822e-08, 0.00245571672, -2.16228841e-07)
  2820. Part191.Size = Vector3.new(0.210000038, 0.200000003, 0.285374999)
  2821. Part191.Anchored = true
  2822. Part191.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2823. Part191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2824. Part191.BrickColor = BrickColor.new("Royal purple")
  2825. Part191.CanCollide = false
  2826. Part191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2827. Part191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2828. Part191.Material = Enum.Material.Neon
  2829. Part191.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2830. Part191.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2831. Part191.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2832. Part191.brickColor = BrickColor.new("Royal purple")
  2833. SpecialMesh192.Parent = Part191
  2834. SpecialMesh192.Scale = Vector3.new(0.5, 0.300000012, 0.5)
  2835. SpecialMesh192.MeshType = Enum.MeshType.Wedge
  2836. Part193.Parent = Model0
  2837. Part193.CFrame = CFrame.new(-0.613232374, 3.39655375, -13.8819904, 0.999985635, 0.000250508543, -0.00535421353, 0.00513686566, 0.240468621, 0.97064352, 0.00153067405, -0.970657051, 0.240463868)
  2838. Part193.Orientation = Vector3.new(-76.0800018, -1.27999997, 1.22000003)
  2839. Part193.Position = Vector3.new(-0.613232374, 3.39655375, -13.8819904)
  2840. Part193.Rotation = Vector3.new(-76.0899963, -0.310000002, -0.00999999978)
  2841. Part193.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2842. Part193.Velocity = Vector3.new(3.37369386e-08, 0.00246712286, 4.43339275e-07)
  2843. Part193.Size = Vector3.new(0.275000006, 0.422124922, 0.412375003)
  2844. Part193.Anchored = true
  2845. Part193.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2846. Part193.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2847. Part193.BrickColor = BrickColor.new("Really black")
  2848. Part193.CanCollide = false
  2849. Part193.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2850. Part193.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2851. Part193.Material = Enum.Material.Metal
  2852. Part193.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2853. Part193.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2854. Part193.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2855. Part193.brickColor = BrickColor.new("Really black")
  2856. SpecialMesh194.Parent = Part193
  2857. SpecialMesh194.Scale = Vector3.new(0.5, 1.04999995, 0.5)
  2858. SpecialMesh194.MeshType = Enum.MeshType.Brick
  2859. Part195.Parent = Model0
  2860. Part195.CFrame = CFrame.new(-0.640585661, 2.53611565, -13.5419912, 0.00476224814, -0.999985635, -0.00245993445, -0.72036773, -0.00513678836, 0.693573475, -0.693576157, -0.00153091096, -0.720381796)
  2861. Part195.Orientation = Vector3.new(-43.9099998, -179.800003, -90.409996)
  2862. Part195.Position = Vector3.new(-0.640585661, 2.53611565, -13.5419912)
  2863. Part195.Rotation = Vector3.new(-136.089996, -0.140000001, 89.7299957)
  2864. Part195.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2865. Part195.Velocity = Vector3.new(1.70172896e-07, 0.00246782694, 2.23625375e-06)
  2866. Part195.Size = Vector3.new(0.421999991, 0.200000003, 0.280375004)
  2867. Part195.Anchored = true
  2868. Part195.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2869. Part195.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2870. Part195.BrickColor = BrickColor.new("Royal purple")
  2871. Part195.CanCollide = false
  2872. Part195.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2873. Part195.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2874. Part195.Material = Enum.Material.Neon
  2875. Part195.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2876. Part195.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2877. Part195.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2878. Part195.brickColor = BrickColor.new("Royal purple")
  2879. SpecialMesh196.Parent = Part195
  2880. SpecialMesh196.Scale = Vector3.new(1, 0.300000012, 0.5)
  2881. SpecialMesh196.MeshType = Enum.MeshType.Wedge
  2882. Part197.Parent = Model0
  2883. Part197.CFrame = CFrame.new(-0.647041559, 3.82817221, -13.658843, -0.00162801228, -0.999985635, 0.00510653481, 0.0189460143, -0.00513646938, -0.999807417, 0.999819279, -0.00153094972, 0.0189541057)
  2884. Part197.Orientation = Vector3.new(88.8799973, 15.0799999, 105.169998)
  2885. Part197.Position = Vector3.new(-0.647041559, 3.82817221, -13.658843)
  2886. Part197.Rotation = Vector3.new(88.909996, 0.289999992, 90.0899963)
  2887. Part197.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2888. Part197.Velocity = Vector3.new(-3.47029321e-08, 0.00246758247, -4.56033831e-07)
  2889. Part197.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  2890. Part197.Anchored = true
  2891. Part197.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2892. Part197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2893. Part197.BrickColor = BrickColor.new("Royal purple")
  2894. Part197.CanCollide = false
  2895. Part197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2896. Part197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2897. Part197.Material = Enum.Material.Neon
  2898. Part197.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2899. Part197.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2900. Part197.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2901. Part197.brickColor = BrickColor.new("Royal purple")
  2902. SpecialMesh198.Parent = Part197
  2903. SpecialMesh198.Scale = Vector3.new(1, 0.300000012, 0.5)
  2904. SpecialMesh198.MeshType = Enum.MeshType.Wedge
  2905. Part199.Parent = Model0
  2906. Part199.CFrame = CFrame.new(-0.615469754, 3.2510047, -11.9310894, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  2907. Part199.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2908. Part199.Position = Vector3.new(-0.615469754, 3.2510047, -11.9310894)
  2909. Part199.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2910. Part199.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2911. Part199.Velocity = Vector3.new(5.68160452e-08, 0.00247118762, 7.46623186e-07)
  2912. Part199.Size = Vector3.new(0.275000006, 0.261124998, 0.245374992)
  2913. Part199.Anchored = true
  2914. Part199.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2915. Part199.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2916. Part199.BrickColor = BrickColor.new("Bright blue")
  2917. Part199.CanCollide = false
  2918. Part199.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2919. Part199.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2920. Part199.Material = Enum.Material.Neon
  2921. Part199.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2922. Part199.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2923. Part199.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2924. Part199.brickColor = BrickColor.new("Bright blue")
  2925. SpecialMesh200.Parent = Part199
  2926. SpecialMesh200.Scale = Vector3.new(0.375, 1.04999995, 0.5)
  2927. SpecialMesh200.MeshType = Enum.MeshType.Brick
  2928. Part201.Parent = Model0
  2929. Part201.CFrame = CFrame.new(-0.615578175, 3.21754885, -11.7504148, -0.999985635, 0.00162786292, 0.00510683237, -0.00513676414, -0.0189459566, -0.999807417, -0.00153079513, -0.999819279, 0.0189540461)
  2930. Part201.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  2931. Part201.Position = Vector3.new(-0.615578175, 3.21754885, -11.7504148)
  2932. Part201.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  2933. Part201.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2934. Part201.Velocity = Vector3.new(6.21209963e-08, 0.0024715641, 8.16335842e-07)
  2935. Part201.Size = Vector3.new(0.275000006, 0.214125022, 0.234375)
  2936. Part201.Anchored = true
  2937. Part201.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2938. Part201.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2939. Part201.BrickColor = BrickColor.new("Really black")
  2940. Part201.CanCollide = false
  2941. Part201.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2942. Part201.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2943. Part201.Material = Enum.Material.Metal
  2944. Part201.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. Part201.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2946. Part201.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2947. Part201.brickColor = BrickColor.new("Really black")
  2948. SpecialMesh202.Parent = Part201
  2949. SpecialMesh202.Scale = Vector3.new(0.5, 0.560000002, 0.400000006)
  2950. SpecialMesh202.MeshType = Enum.MeshType.Wedge
  2951. Part203.Parent = Model0
  2952. Part203.CFrame = CFrame.new(-0.613475382, 3.25657153, -13.2536583, -0.999985635, 0.00162801275, 0.00510680024, -0.00513673527, -0.0189461038, -0.999807417, -0.00153094472, -0.999819279, 0.0189541951)
  2953. Part203.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  2954. Part203.Position = Vector3.new(-0.613475382, 3.25657153, -13.2536583)
  2955. Part203.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  2956. Part203.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2957. Part203.Velocity = Vector3.new(5.59333202e-08, 0.00246843207, 7.35023434e-07)
  2958. Part203.Size = Vector3.new(0.275000006, 0.204125047, 0.210375011)
  2959. Part203.Anchored = true
  2960. Part203.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2961. Part203.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2962. Part203.BrickColor = BrickColor.new("Really black")
  2963. Part203.CanCollide = false
  2964. Part203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2965. Part203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2966. Part203.Material = Enum.Material.Metal
  2967. Part203.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2968. Part203.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2969. Part203.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2970. Part203.brickColor = BrickColor.new("Really black")
  2971. SpecialMesh204.Parent = Part203
  2972. SpecialMesh204.Scale = Vector3.new(0.5, 0.5, 0.5)
  2973. SpecialMesh204.MeshType = Enum.MeshType.Wedge
  2974. Part205.Parent = Model0
  2975. Part205.CFrame = CFrame.new(-0.605959892, 3.52715993, -19.0706863, -0.999985635, 0.00510674436, -0.0016279578, -0.00513667939, -0.999807417, 0.0189470276, -0.00153088616, 0.018955119, 0.999819279)
  2976. Part205.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2977. Part205.Position = Vector3.new(-0.605959892, 3.52715993, -19.0706863)
  2978. Part205.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2979. Part205.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2980. Part205.Velocity = Vector3.new(1.30272237e-08, 0.0024563123, 1.71192255e-07)
  2981. Part205.Size = Vector3.new(0.275000006, 0.446125001, 0.496375084)
  2982. Part205.Anchored = true
  2983. Part205.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2984. Part205.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2985. Part205.BrickColor = BrickColor.new("Really black")
  2986. Part205.CanCollide = false
  2987. Part205.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2988. Part205.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2989. Part205.Material = Enum.Material.Metal
  2990. Part205.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2991. Part205.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2992. Part205.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2993. Part205.brickColor = BrickColor.new("Really black")
  2994. SpecialMesh206.Parent = Part205
  2995. SpecialMesh206.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  2996. SpecialMesh206.MeshType = Enum.MeshType.Wedge
  2997. Part207.Parent = Model0
  2998. Part207.CFrame = CFrame.new(-0.617458701, 3.24875402, -10.62463, -0.999985635, -0.00162816094, -0.00510671316, -0.00513665052, 0.0189459547, 0.999807417, -0.00153109536, 0.999819279, -0.0189540461)
  2999. Part207.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3000. Part207.Position = Vector3.new(-0.617458701, 3.24875402, -10.62463)
  3001. Part207.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3002. Part207.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3003. Part207.Velocity = Vector3.new(5.71729402e-08, 0.00247390964, 7.51312939e-07)
  3004. Part207.Size = Vector3.new(0.25999999, 0.375, 0.21875)
  3005. Part207.Anchored = true
  3006. Part207.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3007. Part207.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3008. Part207.BrickColor = BrickColor.new("Really black")
  3009. Part207.CanCollide = false
  3010. Part207.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3011. Part207.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3012. Part207.Material = Enum.Material.Metal
  3013. Part207.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3014. Part207.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3015. Part207.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3016. Part207.brickColor = BrickColor.new("Really black")
  3017. SpecialMesh208.Parent = Part207
  3018. SpecialMesh208.Scale = Vector3.new(0.300000012, 1, 1)
  3019. SpecialMesh208.MeshType = Enum.MeshType.Wedge
  3020. Part209.Parent = Model0
  3021. Part209.CFrame = CFrame.new(-0.614153862, 3.21053505, -12.6548157, -0.999985635, -0.00162816129, -0.00510668149, -0.00513661886, 0.0189460143, 0.999807417, -0.00153109606, 0.999819279, -0.0189541057)
  3022. Part209.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3023. Part209.Position = Vector3.new(-0.614153862, 3.21053505, -12.6548157)
  3024. Part209.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3025. Part209.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3026. Part209.Velocity = Vector3.new(6.32331378e-08, 0.00246967981, 8.30950682e-07)
  3027. Part209.Size = Vector3.new(0.275000006, 0.35512504, 0.416375011)
  3028. Part209.Anchored = true
  3029. Part209.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3030. Part209.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3031. Part209.BrickColor = BrickColor.new("Really black")
  3032. Part209.CanCollide = false
  3033. Part209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3034. Part209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3035. Part209.Material = Enum.Material.Metal
  3036. Part209.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3037. Part209.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3038. Part209.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3039. Part209.brickColor = BrickColor.new("Really black")
  3040. SpecialMesh210.Parent = Part209
  3041. SpecialMesh210.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  3042. SpecialMesh210.MeshType = Enum.MeshType.Wedge
  3043. Part211.Parent = Model0
  3044. Part211.CFrame = CFrame.new(-0.640777826, 2.97037435, -14.8715458, 0.00156102644, -0.999985635, -0.00512771169, -0.00585717242, -0.00513677299, 0.99996984, -0.999981701, -0.00153094484, -0.00586510729)
  3045. Part211.Orientation = Vector3.new(-89.5599976, -138.839996, -131.25)
  3046. Part211.Position = Vector3.new(-0.640777826, 2.97037435, -14.8715458)
  3047. Part211.Rotation = Vector3.new(-90.3399963, -0.289999992, 89.909996)
  3048. Part211.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3049. Part211.Velocity = Vector3.new(1.01314356e-07, 0.00246505649, 1.33137894e-06)
  3050. Part211.Size = Vector3.new(0.49000001, 0.200000003, 0.290374994)
  3051. Part211.Anchored = true
  3052. Part211.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. Part211.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3054. Part211.BrickColor = BrickColor.new("Royal purple")
  3055. Part211.CanCollide = false
  3056. Part211.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3057. Part211.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3058. Part211.Material = Enum.Material.Neon
  3059. Part211.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3060. Part211.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3061. Part211.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3062. Part211.brickColor = BrickColor.new("Royal purple")
  3063. SpecialMesh212.Parent = Part211
  3064. SpecialMesh212.Scale = Vector3.new(1, 0.300000012, 0.5)
  3065. SpecialMesh212.MeshType = Enum.MeshType.Wedge
  3066. Part213.Parent = Model0
  3067. Part213.CFrame = CFrame.new(-0.609622896, 3.39657903, -16.2390652, 0.999985635, -0.00133592181, 0.00519115385, 0.00513700396, -0.0377659053, -0.999273479, 0.00153099932, 0.999285877, -0.0377584994)
  3068. Part213.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  3069. Part213.Position = Vector3.new(-0.609622896, 3.39657903, -16.2390652)
  3070. Part213.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  3071. Part213.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3072. Part213.Velocity = Vector3.new(3.37329027e-08, 0.002462212, 4.43286638e-07)
  3073. Part213.Size = Vector3.new(0.275000006, 0.533124864, 0.214375019)
  3074. Part213.Anchored = true
  3075. Part213.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3076. Part213.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3077. Part213.BrickColor = BrickColor.new("Bright blue")
  3078. Part213.CanCollide = false
  3079. Part213.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3080. Part213.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3081. Part213.Material = Enum.Material.Neon
  3082. Part213.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3083. Part213.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3084. Part213.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3085. Part213.brickColor = BrickColor.new("Bright blue")
  3086. SpecialMesh214.Parent = Part213
  3087. SpecialMesh214.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  3088. SpecialMesh214.MeshType = Enum.MeshType.Brick
  3089. Part215.Parent = Model0
  3090. Part215.CFrame = CFrame.new(-0.612417579, 3.49721146, -14.7513313, 0.999985635, -0.00219574547, 0.00488994364, 0.00513701141, 0.13200599, -0.991235793, 0.00153099908, 0.991246581, 0.132015377)
  3091. Part215.Orientation = Vector3.new(82.409996, 2.11999989, 2.23000002)
  3092. Part215.Position = Vector3.new(-0.612417579, 3.49721146, -14.7513313)
  3093. Part215.Rotation = Vector3.new(82.409996, 0.280000001, 0.129999995)
  3094. Part215.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3095. Part215.Velocity = Vector3.new(1.77760739e-08, 0.00246531144, 2.33596552e-07)
  3096. Part215.Size = Vector3.new(0.275000006, 0.488124937, 0.359375)
  3097. Part215.Anchored = true
  3098. Part215.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3099. Part215.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3100. Part215.BrickColor = BrickColor.new("Really black")
  3101. Part215.CanCollide = false
  3102. Part215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3103. Part215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3104. Part215.Material = Enum.Material.Metal
  3105. Part215.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3106. Part215.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3107. Part215.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3108. Part215.brickColor = BrickColor.new("Really black")
  3109. SpecialMesh216.Parent = Part215
  3110. SpecialMesh216.Scale = Vector3.new(0.400000006, 1, 0.5)
  3111. SpecialMesh216.MeshType = Enum.MeshType.Brick
  3112. Part217.Parent = Model0
  3113. Part217.CFrame = CFrame.new(-0.645515323, 3.66365719, -14.1031828, -0.0047622188, -0.999985635, 0.00246008043, 0.720367849, -0.00513686892, -0.693573356, 0.693576038, -0.00153078465, 0.720381975)
  3114. Part217.Orientation = Vector3.new(43.9099998, 0.199999988, 90.409996)
  3115. Part217.Position = Vector3.new(-0.645515323, 3.66365719, -14.1031828)
  3116. Part217.Rotation = Vector3.new(43.9099998, 0.140000001, 90.2699966)
  3117. Part217.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3118. Part217.Velocity = Vector3.new(-8.61649951e-09, 0.00246665697, -1.13230158e-07)
  3119. Part217.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3120. Part217.Anchored = true
  3121. Part217.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3122. Part217.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3123. Part217.BrickColor = BrickColor.new("Royal purple")
  3124. Part217.CanCollide = false
  3125. Part217.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3126. Part217.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3127. Part217.Material = Enum.Material.Neon
  3128. Part217.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. Part217.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3130. Part217.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3131. Part217.brickColor = BrickColor.new("Royal purple")
  3132. SpecialMesh218.Parent = Part217
  3133. SpecialMesh218.Scale = Vector3.new(1, 0.300000012, 0.5)
  3134. SpecialMesh218.MeshType = Enum.MeshType.Wedge
  3135. Part219.Parent = Model0
  3136. Part219.CFrame = CFrame.new(-0.611597419, 2.92886329, -13.380847, -0.999985635, -0.00162816129, -0.00510668149, -0.00513661886, 0.0189460143, 0.999807417, -0.00153109606, 0.999819279, -0.0189541057)
  3137. Part219.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3138. Part219.Position = Vector3.new(-0.611597419, 2.92886329, -13.380847)
  3139. Part219.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3140. Part219.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3141. Part219.Velocity = Vector3.new(1.07896597e-07, 0.00246816734, 1.41787655e-06)
  3142. Part219.Size = Vector3.new(0.275000006, 0.630125046, 0.280375004)
  3143. Part219.Anchored = true
  3144. Part219.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3145. Part219.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. Part219.BrickColor = BrickColor.new("Really black")
  3147. Part219.CanCollide = false
  3148. Part219.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3149. Part219.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3150. Part219.Material = Enum.Material.Metal
  3151. Part219.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3152. Part219.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3153. Part219.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3154. Part219.brickColor = BrickColor.new("Really black")
  3155. SpecialMesh220.Parent = Part219
  3156. SpecialMesh220.Scale = Vector3.new(0.395000011, 0.75, 0.25)
  3157. SpecialMesh220.MeshType = Enum.MeshType.Wedge
  3158. Part221.Parent = Model0
  3159. Part221.CFrame = CFrame.new(-0.609442294, 2.87052941, -14.5920582, -0.999985635, 0.00510674296, -0.00162775011, -0.00513667427, -0.999807417, 0.0189472083, -0.00153067766, 0.0189552978, 0.999819279)
  3160. Part221.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  3161. Part221.Position = Vector3.new(-0.609442294, 2.87052941, -14.5920582)
  3162. Part221.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  3163. Part221.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3164. Part221.Velocity = Vector3.new(1.17146328e-07, 0.00246564392, 1.53942813e-06)
  3165. Part221.Size = Vector3.new(0.275000006, 0.216999978, 0.295375019)
  3166. Part221.Anchored = true
  3167. Part221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3168. Part221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3169. Part221.BrickColor = BrickColor.new("Really black")
  3170. Part221.CanCollide = false
  3171. Part221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3172. Part221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3173. Part221.Material = Enum.Material.Glass
  3174. Part221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3175. Part221.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3176. Part221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3177. Part221.brickColor = BrickColor.new("Really black")
  3178. SpecialMesh222.Parent = Part221
  3179. SpecialMesh222.Scale = Vector3.new(0.5, 0.75, 0.25)
  3180. SpecialMesh222.MeshType = Enum.MeshType.Wedge
  3181. Part223.Parent = Model0
  3182. Part223.CFrame = CFrame.new(-0.609190822, 2.76472902, -14.4025202, -0.999985635, 0.00510674296, -0.00162775011, -0.00513667427, -0.999807417, 0.0189472083, -0.00153067766, 0.0189552978, 0.999819279)
  3183. Part223.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  3184. Part223.Position = Vector3.new(-0.609190822, 2.76472902, -14.4025202)
  3185. Part223.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  3186. Part223.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3187. Part223.Velocity = Vector3.new(1.3392264e-07, 0.0024660388, 1.7598868e-06)
  3188. Part223.Size = Vector3.new(0.275000006, 0.23299998, 0.295375019)
  3189. Part223.Anchored = true
  3190. Part223.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3191. Part223.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3192. Part223.BrickColor = BrickColor.new("Really black")
  3193. Part223.CanCollide = false
  3194. Part223.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3195. Part223.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3196. Part223.Material = Enum.Material.Glass
  3197. Part223.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3198. Part223.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3199. Part223.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3200. Part223.brickColor = BrickColor.new("Really black")
  3201. SpecialMesh224.Parent = Part223
  3202. SpecialMesh224.Scale = Vector3.new(0.5, 1, 0.25)
  3203. SpecialMesh224.MeshType = Enum.MeshType.Wedge
  3204. Part225.Parent = Model0
  3205. Part225.CFrame = CFrame.new(-0.610054374, 2.83367729, -14.0694036, 0.999985635, 0.00162807188, -0.00510671316, 0.00513664866, -0.0189460143, 0.999807417, 0.00153100595, -0.999819279, -0.0189541057)
  3206. Part225.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3207. Part225.Position = Vector3.new(-0.610054374, 2.83367729, -14.0694036)
  3208. Part225.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3209. Part225.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3210. Part225.Velocity = Vector3.new(1.22989817e-07, 0.00246673287, 1.61621767e-06)
  3211. Part225.Size = Vector3.new(0.275000006, 0.311124951, 0.267374992)
  3212. Part225.Anchored = true
  3213. Part225.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3214. Part225.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3215. Part225.BrickColor = BrickColor.new("Really black")
  3216. Part225.CanCollide = false
  3217. Part225.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3218. Part225.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3219. Part225.Material = Enum.Material.Metal
  3220. Part225.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. Part225.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3222. Part225.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3223. Part225.brickColor = BrickColor.new("Really black")
  3224. SpecialMesh226.Parent = Part225
  3225. SpecialMesh226.Scale = Vector3.new(0.495000005, 1, 1)
  3226. SpecialMesh226.MeshType = Enum.MeshType.Brick
  3227. Part227.Parent = Model0
  3228. Part227.CFrame = CFrame.new(-0.611247957, 3.01424932, -13.8955402, 0.999985635, -0.00162807154, 0.00510659395, 0.00513652945, 0.0189459547, -0.999807417, 0.00153100828, 0.999819279, 0.0189540461)
  3229. Part227.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3230. Part227.Position = Vector3.new(-0.611247957, 3.01424932, -13.8955402)
  3231. Part227.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3232. Part227.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3233. Part227.Velocity = Vector3.new(9.43572971e-08, 0.00246709492, 1.23995574e-06)
  3234. Part227.Size = Vector3.new(0.275000006, 0.228, 0.213375002)
  3235. Part227.Anchored = true
  3236. Part227.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3237. Part227.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3238. Part227.BrickColor = BrickColor.new("Really black")
  3239. Part227.CanCollide = false
  3240. Part227.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3241. Part227.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3242. Part227.Material = Enum.Material.Metal
  3243. Part227.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3244. Part227.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3245. Part227.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3246. Part227.brickColor = BrickColor.new("Really black")
  3247. SpecialMesh228.Parent = Part227
  3248. SpecialMesh228.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  3249. SpecialMesh228.MeshType = Enum.MeshType.Wedge
  3250. Part229.Parent = Model0
  3251. Part229.CFrame = CFrame.new(-0.614671409, 3.24594569, -12.4355726, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  3252. Part229.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3253. Part229.Position = Vector3.new(-0.614671409, 3.24594569, -12.4355726)
  3254. Part229.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3255. Part229.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3256. Part229.Velocity = Vector3.new(5.76182231e-08, 0.00247013662, 7.57164685e-07)
  3257. Part229.Size = Vector3.new(0.275000006, 0.745124936, 0.280375004)
  3258. Part229.Anchored = true
  3259. Part229.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3260. Part229.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3261. Part229.BrickColor = BrickColor.new("Really black")
  3262. Part229.CanCollide = false
  3263. Part229.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3264. Part229.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3265. Part229.Material = Enum.Material.Metal
  3266. Part229.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3267. Part229.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3268. Part229.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3269. Part229.brickColor = BrickColor.new("Really black")
  3270. SpecialMesh230.Parent = Part229
  3271. SpecialMesh230.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3272. SpecialMesh230.MeshType = Enum.MeshType.Brick
  3273. Part231.Parent = Model0
  3274. Part231.CFrame = CFrame.new(-0.610754132, 2.89412951, -13.8151274, -0.999985635, -0.00162807154, -0.00510650687, -0.00513644237, 0.0189459547, 0.999807417, -0.00153100991, 0.999819279, -0.0189540461)
  3275. Part231.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3276. Part231.Position = Vector3.new(-0.610754132, 2.89412951, -13.8151274)
  3277. Part231.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3278. Part231.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3279. Part231.Velocity = Vector3.new(1.1340417e-07, 0.00246726256, 1.49025209e-06)
  3280. Part231.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  3281. Part231.Anchored = true
  3282. Part231.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3283. Part231.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3284. Part231.BrickColor = BrickColor.new("Really black")
  3285. Part231.CanCollide = false
  3286. Part231.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3287. Part231.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3288. Part231.Material = Enum.Material.Glass
  3289. Part231.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3290. Part231.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3291. Part231.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3292. Part231.brickColor = BrickColor.new("Really black")
  3293. SpecialMesh232.Parent = Part231
  3294. SpecialMesh232.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  3295. SpecialMesh232.MeshType = Enum.MeshType.Wedge
  3296. Part233.Parent = Model0
  3297. Part233.CFrame = CFrame.new(-0.614374042, 3.38457584, -13.09618, 0.999985635, -0.00162795233, 0.00510671316, 0.00513664633, 0.0189459547, -0.999807417, 0.00153088674, 0.999819279, 0.0189540461)
  3298. Part233.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3299. Part233.Position = Vector3.new(-0.614374042, 3.38457584, -13.09618)
  3300. Part233.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3301. Part233.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3302. Part233.Velocity = Vector3.new(3.56362335e-08, 0.00246876013, 4.68297941e-07)
  3303. Part233.Size = Vector3.new(0.275000006, 0.322125077, 0.363375008)
  3304. Part233.Anchored = true
  3305. Part233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3306. Part233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. Part233.BrickColor = BrickColor.new("Really black")
  3308. Part233.CanCollide = false
  3309. Part233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3310. Part233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3311. Part233.Material = Enum.Material.Metal
  3312. Part233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3313. Part233.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3314. Part233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3315. Part233.brickColor = BrickColor.new("Really black")
  3316. SpecialMesh234.Parent = Part233
  3317. SpecialMesh234.Scale = Vector3.new(0.5, 1, 1)
  3318. SpecialMesh234.MeshType = Enum.MeshType.Wedge
  3319. Part235.Parent = Model0
  3320. Part235.CFrame = CFrame.new(-0.612951875, 3.3556869, -13.9274721, 0.999985635, 0.00162774313, -0.00510693667, 0.00513686566, -0.0189458374, 0.999807417, 0.00153067405, -0.999819279, -0.0189539269)
  3321. Part235.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3322. Part235.Position = Vector3.new(-0.612951875, 3.3556869, -13.9274721)
  3323. Part235.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3324. Part235.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3325. Part235.Velocity = Vector3.new(4.02170173e-08, 0.0024670281, 5.28494468e-07)
  3326. Part235.Size = Vector3.new(0.275000006, 0.54112494, 0.367374986)
  3327. Part235.Anchored = true
  3328. Part235.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3329. Part235.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3330. Part235.BrickColor = BrickColor.new("Really black")
  3331. Part235.CanCollide = false
  3332. Part235.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3333. Part235.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3334. Part235.Material = Enum.Material.Metal
  3335. Part235.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3336. Part235.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3337. Part235.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3338. Part235.brickColor = BrickColor.new("Really black")
  3339. SpecialMesh236.Parent = Part235
  3340. SpecialMesh236.Scale = Vector3.new(0.5, 1.04999995, 0.600000024)
  3341. SpecialMesh236.MeshType = Enum.MeshType.Brick
  3342. Part237.Parent = Model0
  3343. Part237.CFrame = CFrame.new(-0.611452341, 3.03449631, -13.8299093, 0.999985635, 0.00162795268, -0.00510686403, 0.0051367972, -0.0189460143, 0.999807417, 0.00153088395, -0.999819279, -0.0189541057)
  3344. Part237.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3345. Part237.Position = Vector3.new(-0.611452341, 3.03449631, -13.8299093)
  3346. Part237.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3347. Part237.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3348. Part237.Velocity = Vector3.new(9.11468163e-08, 0.00246723159, 1.19776655e-06)
  3349. Part237.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  3350. Part237.Anchored = true
  3351. Part237.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3352. Part237.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3353. Part237.BrickColor = BrickColor.new("Really black")
  3354. Part237.CanCollide = false
  3355. Part237.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3356. Part237.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3357. Part237.Material = Enum.Material.Metal
  3358. Part237.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3359. Part237.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3360. Part237.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3361. Part237.brickColor = BrickColor.new("Really black")
  3362. SpecialMesh238.Parent = Part237
  3363. SpecialMesh238.Scale = Vector3.new(0.5, 0.5, 0.5)
  3364. SpecialMesh238.MeshType = Enum.MeshType.Wedge
  3365. Part239.Parent = Model0
  3366. Part239.CFrame = CFrame.new(-0.608695984, 3.30580091, -16.5400867, 0.999985635, -0.00133592135, 0.00519114826, 0.0051369979, -0.0377659909, -0.999273479, 0.00153099943, 0.999285758, -0.0377585851)
  3367. Part239.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  3368. Part239.Position = Vector3.new(-0.608695984, 3.30580091, -16.5400867)
  3369. Part239.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  3370. Part239.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3371. Part239.Velocity = Vector3.new(4.81271911e-08, 0.00246158475, 6.32443061e-07)
  3372. Part239.Size = Vector3.new(0.275000006, 1.65712488, 0.422374964)
  3373. Part239.Anchored = true
  3374. Part239.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3375. Part239.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3376. Part239.BrickColor = BrickColor.new("Really black")
  3377. Part239.CanCollide = false
  3378. Part239.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3379. Part239.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3380. Part239.Material = Enum.Material.Metal
  3381. Part239.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3382. Part239.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3383. Part239.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3384. Part239.brickColor = BrickColor.new("Really black")
  3385. SpecialMesh240.Parent = Part239
  3386. SpecialMesh240.Scale = Vector3.new(0.400000006, 1, 0.5)
  3387. SpecialMesh240.MeshType = Enum.MeshType.Brick
  3388. Part241.Parent = Model0
  3389. Part241.CFrame = CFrame.new(-0.607766628, 3.58790874, -18.0936966, 0.999985635, -0.0010395617, 0.00525854016, 0.00513699278, -0.0943568796, -0.99552542, 0.00153108896, 0.995537996, -0.094350189)
  3390. Part241.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  3391. Part241.Position = Vector3.new(-0.607766628, 3.58790874, -18.0936966)
  3392. Part241.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  3393. Part241.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3394. Part241.Velocity = Vector3.new(3.39455752e-09, 0.00245834771, 4.46085551e-08)
  3395. Part241.Size = Vector3.new(0.275000006, 1.66212487, 0.359375)
  3396. Part241.Anchored = true
  3397. Part241.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3398. Part241.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3399. Part241.BrickColor = BrickColor.new("Really black")
  3400. Part241.CanCollide = false
  3401. Part241.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3402. Part241.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3403. Part241.Material = Enum.Material.Metal
  3404. Part241.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3405. Part241.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3406. Part241.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3407. Part241.brickColor = BrickColor.new("Really black")
  3408. SpecialMesh242.Parent = Part241
  3409. SpecialMesh242.Scale = Vector3.new(0.400000006, 1, 0.5)
  3410. SpecialMesh242.MeshType = Enum.MeshType.Brick
  3411. Part243.Parent = Model0
  3412. Part243.CFrame = CFrame.new(-0.618630528, 3.29811025, -11.1170893, -0.999985635, -0.00162795233, -0.0051068007, -0.00513673387, 0.0189459547, 0.999807417, -0.00153088511, 0.999819279, -0.0189540461)
  3413. Part243.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3414. Part243.Position = Vector3.new(-0.618630528, 3.29811025, -11.1170893)
  3415. Part243.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3416. Part243.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3417. Part243.Velocity = Vector3.new(4.93467311e-08, 0.00247288332, 6.48468244e-07)
  3418. Part243.Size = Vector3.new(0.25999999, 0.3125, 0.320125014)
  3419. Part243.Anchored = true
  3420. Part243.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3421. Part243.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3422. Part243.BrickColor = BrickColor.new("Really black")
  3423. Part243.CanCollide = false
  3424. Part243.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3425. Part243.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3426. Part243.Material = Enum.Material.Metal
  3427. Part243.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3428. Part243.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3429. Part243.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3430. Part243.brickColor = BrickColor.new("Really black")
  3431. SpecialMesh244.Parent = Part243
  3432. SpecialMesh244.Scale = Vector3.new(0.5, 1, 1)
  3433. SpecialMesh244.MeshType = Enum.MeshType.Wedge
  3434. Part245.Parent = Model0
  3435. Part245.CFrame = CFrame.new(-0.639055848, 2.33898354, -13.8797112, 0.0028942409, -0.999985635, -0.00451144017, -0.277069569, -0.00513673481, 0.960836232, -0.960845649, -0.00153090828, -0.277080446)
  3436. Part245.Orientation = Vector3.new(-73.909996, -179.069992, -91.0599976)
  3437. Part245.Position = Vector3.new(-0.639055848, 2.33898354, -13.8797112)
  3438. Part245.Rotation = Vector3.new(-106.089996, -0.25999999, 89.8299942)
  3439. Part245.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3440. Part245.Velocity = Vector3.new(2.01431277e-07, 0.00246712356, 2.64702226e-06)
  3441. Part245.Size = Vector3.new(0.453000009, 0.200000003, 0.280375004)
  3442. Part245.Anchored = true
  3443. Part245.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3444. Part245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3445. Part245.BrickColor = BrickColor.new("Royal purple")
  3446. Part245.CanCollide = false
  3447. Part245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3448. Part245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3449. Part245.Material = Enum.Material.Neon
  3450. Part245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3451. Part245.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3452. Part245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3453. Part245.brickColor = BrickColor.new("Royal purple")
  3454. SpecialMesh246.Parent = Part245
  3455. SpecialMesh246.Scale = Vector3.new(1, 0.300000012, 0.5)
  3456. SpecialMesh246.MeshType = Enum.MeshType.Wedge
  3457. Part247.Parent = Model0
  3458. Part247.CFrame = CFrame.new(-0.611137211, 3.24560308, -14.7434616, 0.999985635, -0.00162807363, 0.00510707032, 0.00513700629, 0.018946372, -0.999807417, 0.0015309992, 0.999819279, 0.0189544633)
  3459. Part247.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3460. Part247.Position = Vector3.new(-0.611137211, 3.24560308, -14.7434616)
  3461. Part247.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3462. Part247.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3463. Part247.Velocity = Vector3.new(5.76725228e-08, 0.0024653282, 7.57878638e-07)
  3464. Part247.Size = Vector3.new(0.275000006, 0.488124937, 0.418375015)
  3465. Part247.Anchored = true
  3466. Part247.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3467. Part247.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3468. Part247.BrickColor = BrickColor.new("Really black")
  3469. Part247.CanCollide = false
  3470. Part247.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3471. Part247.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3472. Part247.Material = Enum.Material.Metal
  3473. Part247.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3474. Part247.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3475. Part247.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3476. Part247.brickColor = BrickColor.new("Really black")
  3477. SpecialMesh248.Parent = Part247
  3478. SpecialMesh248.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  3479. SpecialMesh248.MeshType = Enum.MeshType.Brick
  3480. Part249.Parent = Model0
  3481. Part249.CFrame = CFrame.new(-0.646988273, 3.68078995, -13.1990242, 0.00245985761, -0.999985635, 0.00476197852, -0.693573356, -0.00513654156, -0.720367849, 0.720381916, -0.00153077836, -0.693576097)
  3482. Part249.Orientation = Vector3.new(46.079998, 179.610001, -90.4199982)
  3483. Part249.Position = Vector3.new(-0.646988273, 3.68078995, -13.1990242)
  3484. Part249.Rotation = Vector3.new(133.910004, 0.269999981, 89.8600006)
  3485. Part249.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3486. Part249.Velocity = Vector3.new(-1.13331566e-08, 0.00246854057, -1.48930098e-07)
  3487. Part249.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3488. Part249.Anchored = true
  3489. Part249.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3490. Part249.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3491. Part249.BrickColor = BrickColor.new("Royal purple")
  3492. Part249.CanCollide = false
  3493. Part249.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3494. Part249.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3495. Part249.Material = Enum.Material.Neon
  3496. Part249.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3497. Part249.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3498. Part249.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3499. Part249.brickColor = BrickColor.new("Royal purple")
  3500. SpecialMesh250.Parent = Part249
  3501. SpecialMesh250.Scale = Vector3.new(1, 0.300000012, 0.5)
  3502. SpecialMesh250.MeshType = Enum.MeshType.Wedge
  3503. Part251.Parent = Model0
  3504. Part251.CFrame = CFrame.new(-0.616084397, 3.20240736, -11.3666525, -0.999985635, -0.000716604234, -0.00531162601, -0.00513642887, -0.154956639, 0.987908065, -0.00153101014, 0.987921119, 0.154950723)
  3505. Part251.Orientation = Vector3.new(-81.0800018, -1.95999992, -178.099991)
  3506. Part251.Position = Vector3.new(-0.616084397, 3.20240736, -11.3666525)
  3507. Part251.Rotation = Vector3.new(-81.0899963, -0.299999982, 179.959991)
  3508. Part251.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3509. Part251.Velocity = Vector3.new(6.45219203e-08, 0.00247236365, 8.47886554e-07)
  3510. Part251.Size = Vector3.new(0.275000006, 0.203125, 0.234375)
  3511. Part251.Anchored = true
  3512. Part251.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3513. Part251.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3514. Part251.BrickColor = BrickColor.new("Really black")
  3515. Part251.CanCollide = false
  3516. Part251.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3517. Part251.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3518. Part251.Material = Enum.Material.Metal
  3519. Part251.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3520. Part251.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3521. Part251.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3522. Part251.brickColor = BrickColor.new("Really black")
  3523. SpecialMesh252.Parent = Part251
  3524. SpecialMesh252.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  3525. SpecialMesh252.MeshType = Enum.MeshType.Brick
  3526. Part253.Parent = Model0
  3527. Part253.CFrame = CFrame.new(-0.616027236, 3.22281599, -11.4724684, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  3528. Part253.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3529. Part253.Position = Vector3.new(-0.616027236, 3.22281599, -11.4724684)
  3530. Part253.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3531. Part253.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3532. Part253.Velocity = Vector3.new(6.12858102e-08, 0.00247214315, 8.05360628e-07)
  3533. Part253.Size = Vector3.new(0.275000006, 0.415125012, 0.234375)
  3534. Part253.Anchored = true
  3535. Part253.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3536. Part253.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3537. Part253.BrickColor = BrickColor.new("Really black")
  3538. Part253.CanCollide = false
  3539. Part253.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3540. Part253.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3541. Part253.Material = Enum.Material.Metal
  3542. Part253.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3543. Part253.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3544. Part253.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3545. Part253.brickColor = BrickColor.new("Really black")
  3546. SpecialMesh254.Parent = Part253
  3547. SpecialMesh254.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  3548. SpecialMesh254.MeshType = Enum.MeshType.Brick
  3549. Part255.Parent = Model0
  3550. Part255.CFrame = CFrame.new(-0.610752404, 3.28331137, -15.1213608, 0.999985635, -0.00347625092, 0.00408016983, 0.00513697462, 0.404109061, -0.914696634, 0.00153088057, 0.914704442, 0.404121131)
  3551. Part255.Orientation = Vector3.new(66.159996, 0.579999983, 0.729999959)
  3552. Part255.Position = Vector3.new(-0.610752404, 3.28331137, -15.1213608)
  3553. Part255.Rotation = Vector3.new(66.159996, 0.229999989, 0.199999988)
  3554. Part255.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3555. Part255.Velocity = Vector3.new(5.16932808e-08, 0.00246454077, 6.79305003e-07)
  3556. Part255.Size = Vector3.new(0.275000006, 0.330124885, 0.214375019)
  3557. Part255.Anchored = true
  3558. Part255.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3559. Part255.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3560. Part255.BrickColor = BrickColor.new("Bright blue")
  3561. Part255.CanCollide = false
  3562. Part255.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3563. Part255.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3564. Part255.Material = Enum.Material.Neon
  3565. Part255.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3566. Part255.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3567. Part255.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3568. Part255.brickColor = BrickColor.new("Bright blue")
  3569. SpecialMesh256.Parent = Part255
  3570. SpecialMesh256.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  3571. SpecialMesh256.MeshType = Enum.MeshType.Brick
  3572. Part257.Parent = Model0
  3573. Part257.CFrame = CFrame.new(-0.63657546, 3.38894939, -19.0216789, -0.00237622252, -0.999985635, -0.00480452133, 0.680895686, -0.00513668498, 0.732362568, -0.732376754, -0.00153112097, 0.68089813)
  3574. Part257.Orientation = Vector3.new(-47.079998, -0.399999976, 90.4300003)
  3575. Part257.Position = Vector3.new(-0.63657546, 3.38894939, -19.0216789)
  3576. Part257.Rotation = Vector3.new(-47.0900002, -0.280000001, 90.1399994)
  3577. Part257.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3578. Part257.Velocity = Vector3.new(3.49426692e-08, 0.00245640939, 4.59184662e-07)
  3579. Part257.Size = Vector3.new(0.940000057, 0.200000003, 0.285374999)
  3580. Part257.Anchored = true
  3581. Part257.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3582. Part257.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3583. Part257.BrickColor = BrickColor.new("Royal purple")
  3584. Part257.CanCollide = false
  3585. Part257.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3586. Part257.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3587. Part257.Material = Enum.Material.Neon
  3588. Part257.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3589. Part257.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3590. Part257.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3591. Part257.brickColor = BrickColor.new("Royal purple")
  3592. SpecialMesh258.Parent = Part257
  3593. SpecialMesh258.Scale = Vector3.new(1, 0.300000012, 0.5)
  3594. SpecialMesh258.MeshType = Enum.MeshType.Wedge
  3595. Part259.Parent = Model0
  3596. Part259.CFrame = CFrame.new(-0.584489346, 3.6811111, -13.1989288, -0.00245976867, 0.999985635, 0.00476201251, 0.693573415, 0.00513650384, -0.720367789, -0.720381916, 0.00153086672, -0.693576038)
  3597. Part259.Orientation = Vector3.new(46.079998, 179.610001, 89.5799942)
  3598. Part259.Position = Vector3.new(-0.584489346, 3.6811111, -13.1989288)
  3599. Part259.Rotation = Vector3.new(133.910004, 0.269999981, -90.1399994)
  3600. Part259.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3601. Part259.Velocity = Vector3.new(-1.13840777e-08, 0.00246855081, -1.49599259e-07)
  3602. Part259.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3603. Part259.Anchored = true
  3604. Part259.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3605. Part259.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3606. Part259.BrickColor = BrickColor.new("Royal purple")
  3607. Part259.CanCollide = false
  3608. Part259.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3609. Part259.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3610. Part259.Material = Enum.Material.Neon
  3611. Part259.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3612. Part259.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3613. Part259.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3614. Part259.brickColor = BrickColor.new("Royal purple")
  3615. SpecialMesh260.Parent = Part259
  3616. SpecialMesh260.Scale = Vector3.new(1, 0.300000012, 0.5)
  3617. SpecialMesh260.MeshType = Enum.MeshType.Wedge
  3618. Part261.Parent = Model0
  3619. Part261.CFrame = CFrame.new(-0.574076533, 3.38927007, -19.0215836, 0.00237613311, 0.999985635, -0.00480454601, -0.680895686, 0.00513664167, 0.732362568, 0.732376754, 0.00153120293, 0.68089813)
  3620. Part261.Orientation = Vector3.new(-47.079998, -0.399999976, -89.5699997)
  3621. Part261.Position = Vector3.new(-0.574076533, 3.38927007, -19.0215836)
  3622. Part261.Rotation = Vector3.new(-47.0900002, -0.280000001, -89.8600006)
  3623. Part261.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3624. Part261.Velocity = Vector3.new(3.48918228e-08, 0.00245641964, 4.58516467e-07)
  3625. Part261.Size = Vector3.new(0.940000057, 0.200000003, 0.285374999)
  3626. Part261.Anchored = true
  3627. Part261.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3628. Part261.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3629. Part261.BrickColor = BrickColor.new("Royal purple")
  3630. Part261.CanCollide = false
  3631. Part261.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3632. Part261.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3633. Part261.Material = Enum.Material.Neon
  3634. Part261.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3635. Part261.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3636. Part261.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3637. Part261.brickColor = BrickColor.new("Royal purple")
  3638. SpecialMesh262.Parent = Part261
  3639. SpecialMesh262.Scale = Vector3.new(1, 0.300000012, 0.5)
  3640. SpecialMesh262.MeshType = Enum.MeshType.Wedge
  3641. Part263.Parent = Model0
  3642. Part263.CFrame = CFrame.new(-0.640052557, 2.92977762, -15.2103024, 0.00336818164, -0.999985635, -0.00416955911, -0.380026042, -0.00513675297, 0.924961627, -0.924969733, -0.00153089722, -0.380037904)
  3643. Part263.Orientation = Vector3.new(-67.659996, -179.369995, -90.7699966)
  3644. Part263.Position = Vector3.new(-0.640052557, 2.92977762, -15.2103024)
  3645. Part263.Rotation = Vector3.new(-112.339996, -0.239999995, 89.8099976)
  3646. Part263.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3647. Part263.Velocity = Vector3.new(1.07751589e-07, 0.00246435078, 1.41597127e-06)
  3648. Part263.Size = Vector3.new(0.288000047, 0.200000003, 0.27837503)
  3649. Part263.Anchored = true
  3650. Part263.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3651. Part263.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3652. Part263.BrickColor = BrickColor.new("Royal purple")
  3653. Part263.CanCollide = false
  3654. Part263.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3655. Part263.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3656. Part263.Material = Enum.Material.Neon
  3657. Part263.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3658. Part263.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3659. Part263.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3660. Part263.brickColor = BrickColor.new("Royal purple")
  3661. SpecialMesh264.Parent = Part263
  3662. SpecialMesh264.Scale = Vector3.new(1, 0.300000012, 0.5)
  3663. SpecialMesh264.MeshType = Enum.MeshType.Wedge
  3664. Part265.Parent = Model0
  3665. Part265.CFrame = CFrame.new(-0.611472309, 3.03472614, -13.8177929, 0.999985635, -0.00162807154, 0.00510659395, 0.00513652945, 0.0189459547, -0.999807417, 0.00153100828, 0.999819279, 0.0189540461)
  3666. Part265.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3667. Part265.Position = Vector3.new(-0.611472309, 3.03472614, -13.8177929)
  3668. Part265.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3669. Part265.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3670. Part265.Velocity = Vector3.new(9.11103797e-08, 0.00246725697, 1.1972877e-06)
  3671. Part265.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  3672. Part265.Anchored = true
  3673. Part265.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3674. Part265.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3675. Part265.BrickColor = BrickColor.new("Really black")
  3676. Part265.CanCollide = false
  3677. Part265.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3678. Part265.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3679. Part265.Material = Enum.Material.Glass
  3680. Part265.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3681. Part265.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3682. Part265.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3683. Part265.brickColor = BrickColor.new("Really black")
  3684. SpecialMesh266.Parent = Part265
  3685. SpecialMesh266.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  3686. SpecialMesh266.MeshType = Enum.MeshType.Wedge
  3687. Part267.Parent = Model0
  3688. Part267.CFrame = CFrame.new(-0.608101904, 3.29321218, -16.8867702, 0.999985635, -0.00103956275, 0.00525853597, 0.00513698952, -0.0943567529, -0.99552536, 0.00153108896, 0.995537996, -0.0943500549)
  3689. Part267.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  3690. Part267.Position = Vector3.new(-0.608101904, 3.29321218, -16.8867702)
  3691. Part267.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  3692. Part267.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3693. Part267.Velocity = Vector3.new(5.0123333e-08, 0.00246086251, 6.5867448e-07)
  3694. Part267.Size = Vector3.new(0.275000006, 0.454124868, 0.214375019)
  3695. Part267.Anchored = true
  3696. Part267.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3697. Part267.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3698. Part267.BrickColor = BrickColor.new("Bright blue")
  3699. Part267.CanCollide = false
  3700. Part267.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3701. Part267.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3702. Part267.Material = Enum.Material.Neon
  3703. Part267.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3704. Part267.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3705. Part267.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3706. Part267.brickColor = BrickColor.new("Bright blue")
  3707. SpecialMesh268.Parent = Part267
  3708. SpecialMesh268.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  3709. SpecialMesh268.MeshType = Enum.MeshType.Brick
  3710. Part269.Parent = Model0
  3711. Part269.CFrame = CFrame.new(-0.609975338, 2.71316695, -13.7165575, -0.999985635, -0.00476232171, -0.00245974911, -0.00513671385, 0.720367908, 0.693573296, -0.0015310942, 0.693576038, -0.720381975)
  3712. Part269.Orientation = Vector3.new(-43.9099998, -179.800003, -0.409999996)
  3713. Part269.Position = Vector3.new(-0.609975338, 2.71316695, -13.7165575)
  3714. Part269.Rotation = Vector3.new(-136.089996, -0.140000001, 179.729996)
  3715. Part269.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3716. Part269.Velocity = Vector3.new(1.42098628e-07, 0.00246746815, 1.8673278e-06)
  3717. Part269.Size = Vector3.new(0.275000006, 0.403124899, 0.352375001)
  3718. Part269.Anchored = true
  3719. Part269.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3720. Part269.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3721. Part269.BrickColor = BrickColor.new("Really black")
  3722. Part269.CanCollide = false
  3723. Part269.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3724. Part269.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3725. Part269.Material = Enum.Material.Metal
  3726. Part269.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3727. Part269.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3728. Part269.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3729. Part269.brickColor = BrickColor.new("Really black")
  3730. SpecialMesh270.Parent = Part269
  3731. SpecialMesh270.Scale = Vector3.new(0.349999994, 1, 1)
  3732. SpecialMesh270.MeshType = Enum.MeshType.Brick
  3733. Part271.Parent = Model0
  3734. Part271.CFrame = CFrame.new(-0.583012402, 3.6639781, -14.1030874, 0.00476215919, 0.999985635, 0.00246015075, -0.720367849, 0.0051368745, -0.693573356, -0.693576038, 0.00153069268, 0.720381975)
  3735. Part271.Orientation = Vector3.new(43.9099998, 0.199999988, -89.5899963)
  3736. Part271.Position = Vector3.new(-0.583012402, 3.6639781, -14.1030874)
  3737. Part271.Rotation = Vector3.new(43.9099998, 0.140000001, -89.7299957)
  3738. Part271.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3739. Part271.Velocity = Vector3.new(-8.66738503e-09, 0.00246666698, -1.13898864e-07)
  3740. Part271.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3741. Part271.Anchored = true
  3742. Part271.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3743. Part271.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3744. Part271.BrickColor = BrickColor.new("Royal purple")
  3745. Part271.CanCollide = false
  3746. Part271.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3747. Part271.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3748. Part271.Material = Enum.Material.Neon
  3749. Part271.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3750. Part271.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3751. Part271.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3752. Part271.brickColor = BrickColor.new("Royal purple")
  3753. SpecialMesh272.Parent = Part271
  3754. SpecialMesh272.Scale = Vector3.new(1, 0.300000012, 0.5)
  3755. SpecialMesh272.MeshType = Enum.MeshType.Wedge
  3756. Part273.Parent = Model0
  3757. Part273.CFrame = CFrame.new(-0.573997319, 3.0173018, -17.825201, -0.00108546892, 0.999985635, -0.00524905883, -0.0856661052, 0.00513677904, 0.99631083, 0.996323526, 0.00153113017, 0.0856593028)
  3758. Part273.Orientation = Vector3.new(-85.0800018, -3.50999999, -86.5699997)
  3759. Part273.Position = Vector3.new(-0.573997319, 3.0173018, -17.825201)
  3760. Part273.Rotation = Vector3.new(-85.0899963, -0.299999982, -90.0599976)
  3761. Part273.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3762. Part273.Velocity = Vector3.new(9.38732327e-08, 0.00245891255, 1.23359519e-06)
  3763. Part273.Size = Vector3.new(1.78499997, 0.200000003, 0.301375002)
  3764. Part273.Anchored = true
  3765. Part273.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3766. Part273.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3767. Part273.BrickColor = BrickColor.new("Royal purple")
  3768. Part273.CanCollide = false
  3769. Part273.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3770. Part273.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3771. Part273.Material = Enum.Material.Neon
  3772. Part273.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3773. Part273.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3774. Part273.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3775. Part273.brickColor = BrickColor.new("Royal purple")
  3776. SpecialMesh274.Parent = Part273
  3777. SpecialMesh274.Scale = Vector3.new(1, 0.300000012, 0.5)
  3778. SpecialMesh274.MeshType = Enum.MeshType.Wedge
  3779. Part275.Parent = Model0
  3780. Part275.CFrame = CFrame.new(-0.614639282, 3.4985106, -13.3051252, -0.999985635, 0.00162801275, 0.00510680024, -0.00513673527, -0.0189461038, -0.999807417, -0.00153094472, -0.999819279, 0.0189541951)
  3781. Part275.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3782. Part275.Position = Vector3.new(-0.614639282, 3.4985106, -13.3051252)
  3783. Part275.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3784. Part275.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3785. Part275.Velocity = Vector3.new(1.75700912e-08, 0.00246832473, 2.30889498e-07)
  3786. Part275.Size = Vector3.new(0.275000006, 0.204125047, 0.207375005)
  3787. Part275.Anchored = true
  3788. Part275.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3789. Part275.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3790. Part275.BrickColor = BrickColor.new("Really black")
  3791. Part275.CanCollide = false
  3792. Part275.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3793. Part275.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3794. Part275.Material = Enum.Material.Metal
  3795. Part275.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3796. Part275.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3797. Part275.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3798. Part275.brickColor = BrickColor.new("Really black")
  3799. SpecialMesh276.Parent = Part275
  3800. SpecialMesh276.Scale = Vector3.new(0.5, 0.5, 0.5)
  3801. SpecialMesh276.MeshType = Enum.MeshType.Wedge
  3802. Part277.Parent = Model0
  3803. Part277.CFrame = CFrame.new(-0.609530032, 2.79620743, -14.2853489, 0.999985635, 0.00162795268, -0.00510686403, 0.0051367972, -0.0189460143, 0.999807417, 0.00153088395, -0.999819279, -0.0189541057)
  3804. Part277.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3805. Part277.Position = Vector3.new(-0.609530032, 2.79620743, -14.2853489)
  3806. Part277.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3807. Part277.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3808. Part277.Velocity = Vector3.new(1.28931248e-07, 0.00246628304, 1.6942945e-06)
  3809. Part277.Size = Vector3.new(0.275000006, 0.223999977, 0.375375003)
  3810. Part277.Anchored = true
  3811. Part277.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. Part277.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. Part277.BrickColor = BrickColor.new("Really black")
  3814. Part277.CanCollide = false
  3815. Part277.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3816. Part277.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3817. Part277.Material = Enum.Material.Glass
  3818. Part277.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3819. Part277.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3820. Part277.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3821. Part277.brickColor = BrickColor.new("Really black")
  3822. SpecialMesh278.Parent = Part277
  3823. SpecialMesh278.Scale = Vector3.new(0.5, 0.699999988, 0.5)
  3824. SpecialMesh278.MeshType = Enum.MeshType.Brick
  3825. Part279.Parent = Model0
  3826. Part279.CFrame = CFrame.new(-0.578278601, 2.9706955, -14.8714504, -0.00156111596, 0.999985635, -0.00512771122, 0.00585717056, 0.00513677299, 0.99996984, 0.999981761, 0.00153103413, -0.00586510636)
  3827. Part279.Orientation = Vector3.new(-89.5599976, -138.839996, 48.75)
  3828. Part279.Position = Vector3.new(-0.578278601, 2.9706955, -14.8714504)
  3829. Part279.Rotation = Vector3.new(-90.3399963, -0.289999992, -90.0899963)
  3830. Part279.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3831. Part279.Velocity = Vector3.new(1.01263424e-07, 0.00246506673, 1.33070978e-06)
  3832. Part279.Size = Vector3.new(0.49000001, 0.200000003, 0.290374994)
  3833. Part279.Anchored = true
  3834. Part279.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3835. Part279.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3836. Part279.BrickColor = BrickColor.new("Royal purple")
  3837. Part279.CanCollide = false
  3838. Part279.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3839. Part279.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3840. Part279.Material = Enum.Material.Neon
  3841. Part279.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3842. Part279.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3843. Part279.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3844. Part279.brickColor = BrickColor.new("Royal purple")
  3845. SpecialMesh280.Parent = Part279
  3846. SpecialMesh280.Scale = Vector3.new(1, 0.300000012, 0.5)
  3847. SpecialMesh280.MeshType = Enum.MeshType.Wedge
  3848. Part281.Parent = Model0
  3849. Part281.CFrame = CFrame.new(-0.613238811, 3.32843637, -13.6493177, -0.999985635, -0.00162807142, -0.00510653527, -0.00513647031, 0.0189459249, 0.999807417, -0.00153100933, 0.999819279, -0.0189540163)
  3850. Part281.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3851. Part281.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  3852. Part281.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3853. Part281.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3854. Part281.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  3855. Part281.Size = Vector3.new(0.275000006, 0.698124886, 0.732374966)
  3856. Part281.Anchored = true
  3857. Part281.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3858. Part281.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3859. Part281.BrickColor = BrickColor.new("Really black")
  3860. Part281.CanCollide = false
  3861. Part281.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3862. Part281.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3863. Part281.Material = Enum.Material.Metal
  3864. Part281.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3865. Part281.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3866. Part281.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3867. Part281.brickColor = BrickColor.new("Really black")
  3868. SpecialMesh282.Parent = Part281
  3869. SpecialMesh282.Scale = Vector3.new(0.425000012, 1, 1)
  3870. SpecialMesh282.MeshType = Enum.MeshType.Cylinder
  3871. Part283.Parent = Model0
  3872. Part283.CFrame = CFrame.new(-0.614591718, 3.4972918, -13.3320847, -0.999985635, 0.00245974353, -0.0047620195, -0.00513649127, -0.693573475, 0.72036773, -0.00153088977, 0.720381856, 0.693576157)
  3873. Part283.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  3874. Part283.Position = Vector3.new(-0.614591718, 3.4972918, -13.3320847)
  3875. Part283.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  3876. Part283.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3877. Part283.Velocity = Vector3.new(1.77633499e-08, 0.00246826862, 2.33429148e-07)
  3878. Part283.Size = Vector3.new(0.275000006, 0.413124949, 0.622375011)
  3879. Part283.Anchored = true
  3880. Part283.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3881. Part283.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3882. Part283.BrickColor = BrickColor.new("Really black")
  3883. Part283.CanCollide = false
  3884. Part283.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3885. Part283.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3886. Part283.Material = Enum.Material.Metal
  3887. Part283.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3888. Part283.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3889. Part283.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3890. Part283.brickColor = BrickColor.new("Really black")
  3891. SpecialMesh284.Parent = Part283
  3892. SpecialMesh284.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3893. SpecialMesh284.MeshType = Enum.MeshType.Brick
  3894. Part285.Parent = Model0
  3895. Part285.CFrame = CFrame.new(-0.615438342, 3.25487208, -11.9645395, -0.999985635, 0.00162786292, 0.00510683237, -0.00513676414, -0.0189459566, -0.999807417, -0.00153079513, -0.999819279, 0.0189540461)
  3896. Part285.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3897. Part285.Position = Vector3.new(-0.615438342, 3.25487208, -11.9645395)
  3898. Part285.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3899. Part285.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3900. Part285.Velocity = Vector3.new(5.62028113e-08, 0.002471118, 7.38564609e-07)
  3901. Part285.Size = Vector3.new(0.275000006, 0.206125051, 0.280375004)
  3902. Part285.Anchored = true
  3903. Part285.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3904. Part285.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3905. Part285.BrickColor = BrickColor.new("Really black")
  3906. Part285.CanCollide = false
  3907. Part285.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3908. Part285.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3909. Part285.Material = Enum.Material.Metal
  3910. Part285.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3911. Part285.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3912. Part285.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3913. Part285.brickColor = BrickColor.new("Really black")
  3914. SpecialMesh286.Parent = Part285
  3915. SpecialMesh286.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  3916. SpecialMesh286.MeshType = Enum.MeshType.Wedge
  3917. Part287.Parent = Model0
  3918. Part287.CFrame = CFrame.new(-0.613306701, 3.18584442, -13.1265478, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  3919. Part287.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3920. Part287.Position = Vector3.new(-0.613306701, 3.18584442, -13.1265478)
  3921. Part287.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3922. Part287.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3923. Part287.Velocity = Vector3.new(6.71482141e-08, 0.00246869703, 8.82399092e-07)
  3924. Part287.Size = Vector3.new(0.275000006, 0.567124963, 0.311374992)
  3925. Part287.Anchored = true
  3926. Part287.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3927. Part287.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3928. Part287.BrickColor = BrickColor.new("Really black")
  3929. Part287.CanCollide = false
  3930. Part287.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3931. Part287.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3932. Part287.Material = Enum.Material.Metal
  3933. Part287.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3934. Part287.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3935. Part287.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3936. Part287.brickColor = BrickColor.new("Really black")
  3937. SpecialMesh288.Parent = Part287
  3938. SpecialMesh288.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3939. SpecialMesh288.MeshType = Enum.MeshType.Brick
  3940. Part289.Parent = Model0
  3941. Part289.CFrame = CFrame.new(-0.646988273, 3.68078995, -13.1990242, 0.00245985761, -0.999985635, 0.00476197852, -0.693573356, -0.00513654156, -0.720367849, 0.720381916, -0.00153077836, -0.693576097)
  3942. Part289.Orientation = Vector3.new(46.079998, 179.610001, -90.4199982)
  3943. Part289.Position = Vector3.new(-0.646988273, 3.68078995, -13.1990242)
  3944. Part289.Rotation = Vector3.new(133.910004, 0.269999981, 89.8600006)
  3945. Part289.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3946. Part289.Velocity = Vector3.new(-1.13331566e-08, 0.00246854057, -1.48930098e-07)
  3947. Part289.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3948. Part289.Anchored = true
  3949. Part289.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3950. Part289.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3951. Part289.BrickColor = BrickColor.new("Royal purple")
  3952. Part289.CanCollide = false
  3953. Part289.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3954. Part289.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3955. Part289.Material = Enum.Material.Neon
  3956. Part289.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3957. Part289.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3958. Part289.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3959. Part289.brickColor = BrickColor.new("Royal purple")
  3960. SpecialMesh290.Parent = Part289
  3961. SpecialMesh290.Scale = Vector3.new(1, 0.300000012, 0.5)
  3962. SpecialMesh290.MeshType = Enum.MeshType.Wedge
  3963. Part291.Parent = Model0
  3964. Part291.CFrame = CFrame.new(-0.611590862, 3.29178786, -14.6020966, 0.999985635, -0.00510681886, -0.00162807701, 0.00513675623, 0.999807417, 0.0189470276, 0.00153100397, -0.018955119, 0.999819279)
  3965. Part291.Orientation = Vector3.new(-1.09000003, -0.0899999961, 0.289999992)
  3966. Part291.Position = Vector3.new(-0.611590862, 3.29178786, -14.6020966)
  3967. Part291.Rotation = Vector3.new(-1.09000003, -0.0899999961, 0.289999992)
  3968. Part291.Color = Color3.new(0.972549, 0.972549, 0.972549)
  3969. Part291.Velocity = Vector3.new(5.03492039e-08, 0.00246562273, 6.61642332e-07)
  3970. Part291.Size = Vector3.new(0.275000006, 0.200124964, 0.287375033)
  3971. Part291.Anchored = true
  3972. Part291.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3973. Part291.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3974. Part291.BrickColor = BrickColor.new("Institutional white")
  3975. Part291.CanCollide = false
  3976. Part291.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3977. Part291.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3978. Part291.Material = Enum.Material.Metal
  3979. Part291.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3980. Part291.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3981. Part291.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3982. Part291.brickColor = BrickColor.new("Institutional white")
  3983. SpecialMesh292.Parent = Part291
  3984. SpecialMesh292.Scale = Vector3.new(0.560000002, 1, 0.899999976)
  3985. SpecialMesh292.MeshType = Enum.MeshType.Wedge
  3986. Part293.Parent = Model0
  3987. Part293.CFrame = CFrame.new(-0.636496425, 3.01698065, -17.8252964, 0.00108537939, -0.999985635, -0.00524905883, 0.0856661052, -0.00513678649, 0.99631083, -0.996323466, -0.00153104111, 0.0856593102)
  3988. Part293.Orientation = Vector3.new(-85.0800018, -3.50999999, 93.4300003)
  3989. Part293.Position = Vector3.new(-0.636496425, 3.01698065, -17.8252964)
  3990. Part293.Rotation = Vector3.new(-85.0899963, -0.299999982, 89.9399948)
  3991. Part293.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3992. Part293.Velocity = Vector3.new(9.39241573e-08, 0.00245890254, 1.23426435e-06)
  3993. Part293.Size = Vector3.new(1.78499997, 0.200000003, 0.301375002)
  3994. Part293.Anchored = true
  3995. Part293.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3996. Part293.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3997. Part293.BrickColor = BrickColor.new("Royal purple")
  3998. Part293.CanCollide = false
  3999. Part293.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4000. Part293.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4001. Part293.Material = Enum.Material.Neon
  4002. Part293.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4003. Part293.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4004. Part293.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4005. Part293.brickColor = BrickColor.new("Royal purple")
  4006. SpecialMesh294.Parent = Part293
  4007. SpecialMesh294.Scale = Vector3.new(1, 0.300000012, 0.5)
  4008. SpecialMesh294.MeshType = Enum.MeshType.Wedge
  4009. Part295.Parent = Model0
  4010. Part295.CFrame = CFrame.new(-0.611132324, 3.1960454, -14.5803022, 0.999985635, 0.00162786234, -0.00510698371, 0.00513691502, -0.0189458374, 0.999807417, 0.00153079221, -0.999819279, -0.0189539269)
  4011. Part295.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4012. Part295.Position = Vector3.new(-0.611132324, 3.1960454, -14.5803022)
  4013. Part295.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4014. Part295.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4015. Part295.Velocity = Vector3.new(6.55306707e-08, 0.00246566813, 8.61143121e-07)
  4016. Part295.Size = Vector3.new(0.275000006, 0.277124941, 0.702375054)
  4017. Part295.Anchored = true
  4018. Part295.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4019. Part295.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4020. Part295.BrickColor = BrickColor.new("Really black")
  4021. Part295.CanCollide = false
  4022. Part295.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4023. Part295.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4024. Part295.Material = Enum.Material.Glass
  4025. Part295.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4026. Part295.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4027. Part295.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4028. Part295.brickColor = BrickColor.new("Really black")
  4029. SpecialMesh296.Parent = Part295
  4030. SpecialMesh296.Scale = Vector3.new(0.550000012, 0.5, 0.800000012)
  4031. SpecialMesh296.MeshType = Enum.MeshType.Brick
  4032. Part297.Parent = Model0
  4033. Part297.CFrame = CFrame.new(-0.610346913, 2.907269, -14.1244287, 0.999985635, 0.00162795268, -0.00510686403, 0.0051367972, -0.0189460143, 0.999807417, 0.00153088395, -0.999819279, -0.0189541057)
  4034. Part297.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4035. Part297.Position = Vector3.new(-0.610346913, 2.907269, -14.1244287)
  4036. Part297.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4037. Part297.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4038. Part297.Velocity = Vector3.new(1.11320702e-07, 0.00246661808, 1.462873e-06)
  4039. Part297.Size = Vector3.new(0.275000006, 0.207000002, 0.213375002)
  4040. Part297.Anchored = true
  4041. Part297.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4042. Part297.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4043. Part297.BrickColor = BrickColor.new("Bright blue")
  4044. Part297.CanCollide = false
  4045. Part297.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4046. Part297.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4047. Part297.Material = Enum.Material.Neon
  4048. Part297.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4049. Part297.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4050. Part297.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4051. Part297.brickColor = BrickColor.new("Bright blue")
  4052. SpecialMesh298.Parent = Part297
  4053. SpecialMesh298.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  4054. SpecialMesh298.MeshType = Enum.MeshType.Wedge
  4055. Part299.Parent = Model0
  4056. Part299.CFrame = CFrame.new(-0.617512941, 3.42300797, -11.1735916, 0.999985635, -0.00206693518, 0.00494515104, 0.00513641397, 0.106012821, -0.994351625, 0.00153101049, 0.994362772, 0.106021926)
  4057. Part299.Orientation = Vector3.new(83.909996, 2.66999984, 2.76999998)
  4058. Part299.Position = Vector3.new(-0.617512941, 3.42300797, -11.1735916)
  4059. Part299.Rotation = Vector3.new(83.909996, 0.280000001, 0.119999997)
  4060. Part299.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4061. Part299.Velocity = Vector3.new(2.95422424e-08, 0.00247276574, 3.88216051e-07)
  4062. Part299.Size = Vector3.new(0.275000006, 0.223124996, 0.234375)
  4063. Part299.Anchored = true
  4064. Part299.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4065. Part299.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4066. Part299.BrickColor = BrickColor.new("Really black")
  4067. Part299.CanCollide = false
  4068. Part299.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4069. Part299.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4070. Part299.Material = Enum.Material.Metal
  4071. Part299.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4072. Part299.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4073. Part299.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4074. Part299.brickColor = BrickColor.new("Really black")
  4075. SpecialMesh300.Parent = Part299
  4076. SpecialMesh300.Scale = Vector3.new(0.5, 1, 0.400000006)
  4077. SpecialMesh300.MeshType = Enum.MeshType.Brick
  4078. Part301.Parent = Model0
  4079. Part301.CFrame = CFrame.new(-0.60622716, 3.20835805, -17.8265324, -0.999985635, 0.00525827007, -0.00103986717, -0.00513669662, -0.995525479, -0.0943559632, -0.00153136277, -0.0943492651, 0.995538116)
  4080. Part301.Orientation = Vector3.new(5.40999985, -0.0599999987, -179.699997)
  4081. Part301.Position = Vector3.new(-0.60622716, 3.20835805, -17.8265324)
  4082. Part301.Rotation = Vector3.new(5.40999985, -0.0599999987, -179.699997)
  4083. Part301.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4084. Part301.Velocity = Vector3.new(6.35782698e-08, 0.00245890464, 8.35486958e-07)
  4085. Part301.Size = Vector3.new(0.275000006, 0.235124931, 1.6693753)
  4086. Part301.Anchored = true
  4087. Part301.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4088. Part301.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4089. Part301.BrickColor = BrickColor.new("Really black")
  4090. Part301.CanCollide = false
  4091. Part301.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4092. Part301.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4093. Part301.Material = Enum.Material.Metal
  4094. Part301.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4095. Part301.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4096. Part301.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4097. Part301.brickColor = BrickColor.new("Really black")
  4098. SpecialMesh302.Parent = Part301
  4099. SpecialMesh302.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  4100. SpecialMesh302.MeshType = Enum.MeshType.Brick
  4101. Part303.Parent = Model0
  4102. Part303.CFrame = CFrame.new(-0.610610962, 2.80771255, -13.6187115, -0.999985635, -0.00162816129, -0.00510662561, -0.00513656298, 0.0189460143, 0.999807417, -0.00153109711, 0.999819279, -0.0189541057)
  4103. Part303.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4104. Part303.Position = Vector3.new(-0.610610962, 2.80771255, -13.6187115)
  4105. Part303.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4106. Part303.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4107. Part303.Velocity = Vector3.new(1.27106944e-07, 0.00246767187, 1.67032101e-06)
  4108. Part303.Size = Vector3.new(0.275000006, 0.368124902, 0.378374994)
  4109. Part303.Anchored = true
  4110. Part303.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4111. Part303.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4112. Part303.BrickColor = BrickColor.new("Really black")
  4113. Part303.CanCollide = false
  4114. Part303.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4115. Part303.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4116. Part303.Material = Enum.Material.Glass
  4117. Part303.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4118. Part303.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4119. Part303.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4120. Part303.brickColor = BrickColor.new("Really black")
  4121. SpecialMesh304.Parent = Part303
  4122. SpecialMesh304.Scale = Vector3.new(0.400000006, 1, 1)
  4123. SpecialMesh304.MeshType = Enum.MeshType.Wedge
  4124. Part305.Parent = Model0
  4125. Part305.CFrame = CFrame.new(-0.608244181, 3.38925195, -17.114748, 0.999985635, 0.00432614516, 0.00316458894, 0.00513666775, -0.942128837, -0.335212082, 0.00153127394, 0.335223496, -0.942137599)
  4126. Part305.Orientation = Vector3.new(19.5900002, 179.809998, 179.690002)
  4127. Part305.Position = Vector3.new(-0.608244181, 3.38925195, -17.114748)
  4128. Part305.Rotation = Vector3.new(160.410004, 0.179999992, -0.25)
  4129. Part305.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4130. Part305.Velocity = Vector3.new(3.48947182e-08, 0.00246038754, 4.5855424e-07)
  4131. Part305.Size = Vector3.new(0.275000006, 0.35212487, 0.214375019)
  4132. Part305.Anchored = true
  4133. Part305.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4134. Part305.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4135. Part305.BrickColor = BrickColor.new("Bright blue")
  4136. Part305.CanCollide = false
  4137. Part305.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4138. Part305.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4139. Part305.Material = Enum.Material.Neon
  4140. Part305.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4141. Part305.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4142. Part305.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4143. Part305.brickColor = BrickColor.new("Bright blue")
  4144. SpecialMesh306.Parent = Part305
  4145. SpecialMesh306.Scale = Vector3.new(0.449999988, 0.5, 0.100000001)
  4146. SpecialMesh306.MeshType = Enum.MeshType.Brick
  4147. Part307.Parent = Model0
  4148. Part307.CFrame = CFrame.new(-0.610837221, 3.46367049, -15.6710596, 0.999985635, 0.00347598689, -0.00408008695, 0.00513679162, -0.404108554, 0.914696753, 0.00153067545, -0.914704561, -0.404120624)
  4149. Part307.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  4150. Part307.Position = Vector3.new(-0.610837221, 3.46367049, -15.6710596)
  4151. Part307.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  4152. Part307.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4153. Part307.Velocity = Vector3.new(2.30945076e-08, 0.00246339524, 3.03486615e-07)
  4154. Part307.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  4155. Part307.Anchored = true
  4156. Part307.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4157. Part307.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4158. Part307.BrickColor = BrickColor.new("Royal purple")
  4159. Part307.CanCollide = false
  4160. Part307.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4161. Part307.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4162. Part307.Material = Enum.Material.Neon
  4163. Part307.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4164. Part307.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4165. Part307.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4166. Part307.brickColor = BrickColor.new("Royal purple")
  4167. SpecialMesh308.Parent = Part307
  4168. SpecialMesh308.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  4169. SpecialMesh308.MeshType = Enum.MeshType.Brick
  4170. Part309.Parent = Model0
  4171. Part309.CFrame = CFrame.new(-0.609296381, 2.72693467, -14.2067709, 0.999985635, -0.00162807154, 0.00510647474, 0.00513641024, 0.0189459547, -0.999807417, 0.00153101049, 0.999819279, 0.0189540461)
  4172. Part309.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4173. Part309.Position = Vector3.new(-0.609296381, 2.72693467, -14.2067709)
  4174. Part309.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4175. Part309.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4176. Part309.Velocity = Vector3.new(1.39915542e-07, 0.00246644672, 1.83863972e-06)
  4177. Part309.Size = Vector3.new(0.275000006, 0.315999985, 0.310375005)
  4178. Part309.Anchored = true
  4179. Part309.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4180. Part309.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4181. Part309.BrickColor = BrickColor.new("Really black")
  4182. Part309.CanCollide = false
  4183. Part309.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4184. Part309.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4185. Part309.Material = Enum.Material.Glass
  4186. Part309.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4187. Part309.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4188. Part309.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4189. Part309.brickColor = BrickColor.new("Really black")
  4190. SpecialMesh310.Parent = Part309
  4191. SpecialMesh310.Scale = Vector3.new(0.5, 1, 0.5)
  4192. SpecialMesh310.MeshType = Enum.MeshType.Wedge
  4193. Part311.Parent = Model0
  4194. Part311.CFrame = CFrame.new(-0.610869706, 2.96894002, -13.990572, -0.999985635, -0.00162807154, -0.00510650687, -0.00513644237, 0.0189459547, 0.999807417, -0.00153100991, 0.999819279, -0.0189540461)
  4195. Part311.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4196. Part311.Position = Vector3.new(-0.610869706, 2.96894002, -13.990572)
  4197. Part311.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4198. Part311.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4199. Part311.Velocity = Vector3.new(1.01541801e-07, 0.00246689701, 1.33436765e-06)
  4200. Part311.Size = Vector3.new(0.275000006, 0.214124978, 0.205375016)
  4201. Part311.Anchored = true
  4202. Part311.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4203. Part311.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4204. Part311.BrickColor = BrickColor.new("Really black")
  4205. Part311.CanCollide = false
  4206. Part311.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4207. Part311.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4208. Part311.Material = Enum.Material.Metal
  4209. Part311.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4210. Part311.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4211. Part311.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4212. Part311.brickColor = BrickColor.new("Really black")
  4213. SpecialMesh312.Parent = Part311
  4214. SpecialMesh312.Scale = Vector3.new(0.569999993, 0.75, 0.75)
  4215. SpecialMesh312.MeshType = Enum.MeshType.Brick
  4216. Part313.Parent = Model0
  4217. Part313.CFrame = CFrame.new(-0.610455632, 3.45922971, -15.9053869, 0.999985635, 0.00347598689, -0.00408008695, 0.00513679162, -0.404108554, 0.914696753, 0.00153067545, -0.914704561, -0.404120624)
  4218. Part313.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  4219. Part313.Position = Vector3.new(-0.610455632, 3.45922971, -15.9053869)
  4220. Part313.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  4221. Part313.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4222. Part313.Velocity = Vector3.new(2.37986608e-08, 0.00246290723, 3.12739985e-07)
  4223. Part313.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  4224. Part313.Anchored = true
  4225. Part313.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4226. Part313.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4227. Part313.BrickColor = BrickColor.new("Royal purple")
  4228. Part313.CanCollide = false
  4229. Part313.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4230. Part313.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4231. Part313.Material = Enum.Material.Neon
  4232. Part313.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4233. Part313.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4234. Part313.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4235. Part313.brickColor = BrickColor.new("Royal purple")
  4236. SpecialMesh314.Parent = Part313
  4237. SpecialMesh314.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  4238. SpecialMesh314.MeshType = Enum.MeshType.Brick
  4239. Part315.Parent = Model0
  4240. Part315.CFrame = CFrame.new(-0.61787647, 3.39316416, -10.8383427, 0.999985635, -0.00162795314, 0.00510659395, 0.00513652712, 0.0189461038, -0.999807417, 0.00153088907, 0.999819279, 0.0189541951)
  4241. Part315.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4242. Part315.Position = Vector3.new(-0.61787647, 3.39316416, -10.8383427)
  4243. Part315.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4244. Part315.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4245. Part315.Velocity = Vector3.new(3.42744499e-08, 0.00247346424, 4.50402268e-07)
  4246. Part315.Size = Vector3.new(0.275000006, 0.578125, 0.234375)
  4247. Part315.Anchored = true
  4248. Part315.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4249. Part315.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4250. Part315.BrickColor = BrickColor.new("Really black")
  4251. Part315.CanCollide = false
  4252. Part315.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4253. Part315.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4254. Part315.Material = Enum.Material.Metal
  4255. Part315.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4256. Part315.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4257. Part315.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4258. Part315.brickColor = BrickColor.new("Really black")
  4259. SpecialMesh316.Parent = Part315
  4260. SpecialMesh316.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  4261. SpecialMesh316.MeshType = Enum.MeshType.Brick
  4262. Part317.Parent = Model0
  4263. Part317.CFrame = CFrame.new(-0.613369107, 3.18659282, -13.087059, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  4264. Part317.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4265. Part317.Position = Vector3.new(-0.613369107, 3.18659282, -13.087059)
  4266. Part317.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4267. Part317.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4268. Part317.Velocity = Vector3.new(6.70295464e-08, 0.00246877922, 8.8083965e-07)
  4269. Part317.Size = Vector3.new(0.275000006, 0.248124972, 0.311374992)
  4270. Part317.Anchored = true
  4271. Part317.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4272. Part317.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4273. Part317.BrickColor = BrickColor.new("Really black")
  4274. Part317.CanCollide = false
  4275. Part317.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4276. Part317.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4277. Part317.Material = Enum.Material.Metal
  4278. Part317.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4279. Part317.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4280. Part317.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4281. Part317.brickColor = BrickColor.new("Really black")
  4282. SpecialMesh318.Parent = Part317
  4283. SpecialMesh318.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  4284. SpecialMesh318.MeshType = Enum.MeshType.Brick
  4285. Part319.Parent = Model0
  4286. Part319.CFrame = CFrame.new(-0.610582829, 3.460711, -15.82728, 0.999985635, 0.00347598689, -0.00408008695, 0.00513679162, -0.404108554, 0.914696753, 0.00153067545, -0.914704561, -0.404120624)
  4287. Part319.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  4288. Part319.Position = Vector3.new(-0.610582829, 3.460711, -15.82728)
  4289. Part319.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  4290. Part319.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4291. Part319.Velocity = Vector3.new(2.35637785e-08, 0.00246306974, 3.09653387e-07)
  4292. Part319.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  4293. Part319.Anchored = true
  4294. Part319.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4295. Part319.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4296. Part319.BrickColor = BrickColor.new("Royal purple")
  4297. Part319.CanCollide = false
  4298. Part319.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4299. Part319.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4300. Part319.Material = Enum.Material.Neon
  4301. Part319.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4302. Part319.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4303. Part319.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4304. Part319.brickColor = BrickColor.new("Royal purple")
  4305. SpecialMesh320.Parent = Part319
  4306. SpecialMesh320.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  4307. SpecialMesh320.MeshType = Enum.MeshType.Brick
  4308. Part321.Parent = Model0
  4309. Part321.CFrame = CFrame.new(-0.611585259, 3.11314392, -14.0068893, 0.999985635, 0.00162774313, -0.00510693667, 0.00513686566, -0.0189458374, 0.999807417, 0.00153067405, -0.999819279, -0.0189539269)
  4310. Part321.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4311. Part321.Position = Vector3.new(-0.611585259, 3.11314392, -14.0068893)
  4312. Part321.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4313. Part321.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4314. Part321.Velocity = Vector3.new(7.86760097e-08, 0.00246686279, 1.03388675e-06)
  4315. Part321.Size = Vector3.new(0.275000006, 0.709124923, 0.47437498)
  4316. Part321.Anchored = true
  4317. Part321.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4318. Part321.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4319. Part321.BrickColor = BrickColor.new("Really black")
  4320. Part321.CanCollide = false
  4321. Part321.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4322. Part321.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4323. Part321.Material = Enum.Material.Metal
  4324. Part321.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4325. Part321.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4326. Part321.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4327. Part321.brickColor = BrickColor.new("Really black")
  4328. SpecialMesh322.Parent = Part321
  4329. SpecialMesh322.Scale = Vector3.new(0.5, 1.04999995, 0.800000012)
  4330. SpecialMesh322.MeshType = Enum.MeshType.Brick
  4331. Part323.Parent = Model0
  4332. Part323.CFrame = CFrame.new(-0.610941768, 3.01069665, -14.083005, -0.999985635, 0.00162795174, 0.00510683283, -0.00513676554, -0.0189458355, -0.999807417, -0.00153088453, -0.999819279, 0.0189539269)
  4333. Part323.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4334. Part323.Position = Vector3.new(-0.610941768, 3.01069665, -14.083005)
  4335. Part323.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4336. Part323.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4337. Part323.Velocity = Vector3.new(9.49206296e-08, 0.00246670446, 1.24735845e-06)
  4338. Part323.Size = Vector3.new(0.275000006, 0.252000004, 0.213375002)
  4339. Part323.Anchored = true
  4340. Part323.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4341. Part323.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4342. Part323.BrickColor = BrickColor.new("Really black")
  4343. Part323.CanCollide = false
  4344. Part323.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4345. Part323.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4346. Part323.Material = Enum.Material.Metal
  4347. Part323.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4348. Part323.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4349. Part323.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4350. Part323.brickColor = BrickColor.new("Really black")
  4351. SpecialMesh324.Parent = Part323
  4352. SpecialMesh324.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  4353. SpecialMesh324.MeshType = Enum.MeshType.Wedge
  4354. Part325.Parent = Model0
  4355. Part325.CFrame = CFrame.new(-0.61388576, 3.20741606, -12.8194075, -0.999985635, 0.00162786373, 0.00510683237, -0.00513676414, -0.0189461056, -0.999807417, -0.00153079513, -0.999819279, 0.0189541951)
  4356. Part325.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4357. Part325.Position = Vector3.new(-0.61388576, 3.20741606, -12.8194075)
  4358. Part325.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4359. Part325.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4360. Part325.Velocity = Vector3.new(6.37276969e-08, 0.00246933685, 8.37449761e-07)
  4361. Part325.Size = Vector3.new(0.275000006, 0.244125068, 0.416375011)
  4362. Part325.Anchored = true
  4363. Part325.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4364. Part325.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4365. Part325.BrickColor = BrickColor.new("Really black")
  4366. Part325.CanCollide = false
  4367. Part325.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4368. Part325.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4369. Part325.Material = Enum.Material.Metal
  4370. Part325.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4371. Part325.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4372. Part325.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4373. Part325.brickColor = BrickColor.new("Really black")
  4374. SpecialMesh326.Parent = Part325
  4375. SpecialMesh326.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  4376. SpecialMesh326.MeshType = Enum.MeshType.Wedge
  4377. Part327.Parent = Model0
  4378. Part327.CFrame = CFrame.new(-0.609650612, 3.31554532, -15.9490957, 0.999985635, 0.00326791825, 0.00424884167, 0.00513684331, -0.810688972, -0.585454702, 0.00153127068, 0.585468173, -0.810694098)
  4379. Part327.Orientation = Vector3.new(35.8400002, 179.699997, 179.639999)
  4380. Part327.Position = Vector3.new(-0.609650612, 3.31554532, -15.9490957)
  4381. Part327.Rotation = Vector3.new(144.160004, 0.239999995, -0.189999998)
  4382. Part327.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4383. Part327.Velocity = Vector3.new(4.65820733e-08, 0.00246281619, 6.12138422e-07)
  4384. Part327.Size = Vector3.new(0.275000006, 0.237124875, 0.214375019)
  4385. Part327.Anchored = true
  4386. Part327.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4387. Part327.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4388. Part327.BrickColor = BrickColor.new("Bright blue")
  4389. Part327.CanCollide = false
  4390. Part327.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4391. Part327.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4392. Part327.Material = Enum.Material.Neon
  4393. Part327.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4394. Part327.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4395. Part327.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4396. Part327.brickColor = BrickColor.new("Bright blue")
  4397. SpecialMesh328.Parent = Part327
  4398. SpecialMesh328.Scale = Vector3.new(0.449999988, 0.800000012, 0.100000001)
  4399. SpecialMesh328.MeshType = Enum.MeshType.Brick
  4400. Part329.Parent = Model0
  4401. Part329.CFrame = CFrame.new(-0.612260759, 3.04390216, -13.3335075, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  4402. Part329.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4403. Part329.Position = Vector3.new(-0.612260759, 3.04390216, -13.3335075)
  4404. Part329.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4405. Part329.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4406. Part329.Velocity = Vector3.new(8.96553871e-08, 0.00246826583, 1.17816739e-06)
  4407. Part329.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  4408. Part329.Anchored = true
  4409. Part329.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4410. Part329.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4411. Part329.BrickColor = BrickColor.new("Really black")
  4412. Part329.CanCollide = false
  4413. Part329.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4414. Part329.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4415. Part329.Material = Enum.Material.Metal
  4416. Part329.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4417. Part329.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4418. Part329.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4419. Part329.brickColor = BrickColor.new("Really black")
  4420. SpecialMesh330.Parent = Part329
  4421. SpecialMesh330.Scale = Vector3.new(0.5, 0.5, 0.5)
  4422. SpecialMesh330.MeshType = Enum.MeshType.Wedge
  4423. Part331.Parent = Model0
  4424. Part331.CFrame = CFrame.new(-0.614394248, 3.36069822, -13.0015078, -0.999985635, 0.00245974353, -0.0047620195, -0.00513649127, -0.693573475, 0.72036773, -0.00153088977, 0.720381856, 0.693576157)
  4425. Part331.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  4426. Part331.Position = Vector3.new(-0.614394248, 3.36069822, -13.0015078)
  4427. Part331.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  4428. Part331.Color = Color3.new(0.803922, 0.803922, 0.803922)
  4429. Part331.Velocity = Vector3.new(3.94224067e-08, 0.00246895733, 5.18052275e-07)
  4430. Part331.Size = Vector3.new(0.275000006, 0.216124982, 0.280375004)
  4431. Part331.Anchored = true
  4432. Part331.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4433. Part331.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4434. Part331.BrickColor = BrickColor.new("Mid gray")
  4435. Part331.CanCollide = false
  4436. Part331.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4437. Part331.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4438. Part331.Material = Enum.Material.Metal
  4439. Part331.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4440. Part331.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4441. Part331.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4442. Part331.brickColor = BrickColor.new("Mid gray")
  4443. SpecialMesh332.Parent = Part331
  4444. SpecialMesh332.Scale = Vector3.new(0.349999994, 1.04999995, 0.5)
  4445. SpecialMesh332.MeshType = Enum.MeshType.Brick
  4446. Part333.Parent = Model0
  4447. Part333.CFrame = CFrame.new(-0.610709965, 3.46219134, -15.7491703, 0.999985635, 0.00347598689, -0.00408008695, 0.00513679162, -0.404108554, 0.914696753, 0.00153067545, -0.914704561, -0.404120624)
  4448. Part333.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  4449. Part333.Position = Vector3.new(-0.610709965, 3.46219134, -15.7491703)
  4450. Part333.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  4451. Part333.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4452. Part333.Velocity = Vector3.new(2.33290489e-08, 0.00246323249, 3.06568751e-07)
  4453. Part333.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  4454. Part333.Anchored = true
  4455. Part333.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4456. Part333.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4457. Part333.BrickColor = BrickColor.new("Royal purple")
  4458. Part333.CanCollide = false
  4459. Part333.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4460. Part333.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4461. Part333.Material = Enum.Material.Neon
  4462. Part333.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4463. Part333.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4464. Part333.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4465. Part333.brickColor = BrickColor.new("Royal purple")
  4466. SpecialMesh334.Parent = Part333
  4467. SpecialMesh334.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  4468. SpecialMesh334.MeshType = Enum.MeshType.Brick
  4469. Part335.Parent = Model0
  4470. Part335.CFrame = CFrame.new(-0.608794093, 3.33530617, -16.5748692, 0.999985635, -0.0041169636, 0.00343261915, 0.005137017, 0.553175688, -0.83304894, 0.00153079035, 0.833054662, 0.55318886)
  4471. Part335.Orientation = Vector3.new(56.4099998, 0.359999985, 0.529999971)
  4472. Part335.Position = Vector3.new(-0.608794093, 3.33530617, -16.5748692)
  4473. Part335.Rotation = Vector3.new(56.4099998, 0.199999988, 0.239999995)
  4474. Part335.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4475. Part335.Velocity = Vector3.new(4.34486722e-08, 0.00246151234, 5.709623e-07)
  4476. Part335.Size = Vector3.new(0.275000006, 0.265124857, 0.214375019)
  4477. Part335.Anchored = true
  4478. Part335.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4479. Part335.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4480. Part335.BrickColor = BrickColor.new("Bright blue")
  4481. Part335.CanCollide = false
  4482. Part335.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4483. Part335.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4484. Part335.Material = Enum.Material.Neon
  4485. Part335.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4486. Part335.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4487. Part335.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4488. Part335.brickColor = BrickColor.new("Bright blue")
  4489. SpecialMesh336.Parent = Part335
  4490. SpecialMesh336.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  4491. SpecialMesh336.MeshType = Enum.MeshType.Brick
  4492. Part337.Parent = Model0
  4493. Part337.CFrame = CFrame.new(-0.61091727, 3.02827954, -14.1579723, -0.999985635, 0.00162795268, 0.00510695158, -0.00513688475, -0.0189460143, -0.999807417, -0.00153088232, -0.999819279, 0.0189541057)
  4494. Part337.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4495. Part337.Position = Vector3.new(-0.61091727, 3.02827954, -14.1579723)
  4496. Part337.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4497. Part337.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4498. Part337.Velocity = Vector3.new(9.21325807e-08, 0.00246654823, 1.2107206e-06)
  4499. Part337.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  4500. Part337.Anchored = true
  4501. Part337.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4502. Part337.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4503. Part337.BrickColor = BrickColor.new("Really black")
  4504. Part337.CanCollide = false
  4505. Part337.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4506. Part337.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4507. Part337.Material = Enum.Material.Glass
  4508. Part337.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4509. Part337.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4510. Part337.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4511. Part337.brickColor = BrickColor.new("Really black")
  4512. SpecialMesh338.Parent = Part337
  4513. SpecialMesh338.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  4514. SpecialMesh338.MeshType = Enum.MeshType.Wedge
  4515. Part339.Parent = Model0
  4516. Part339.CFrame = CFrame.new(-0.609729409, 3.2205193, -15.578517, 0.999985635, -0.00133592135, 0.00519115385, 0.00513700396, -0.0377659947, -0.999273479, 0.00153099932, 0.999285877, -0.0377585888)
  4517. Part339.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  4518. Part339.Position = Vector3.new(-0.609729409, 3.2205193, -15.578517)
  4519. Part339.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  4520. Part339.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4521. Part339.Velocity = Vector3.new(6.1649942e-08, 0.00246358826, 8.10146275e-07)
  4522. Part339.Size = Vector3.new(0.275000006, 0.621124864, 0.214375019)
  4523. Part339.Anchored = true
  4524. Part339.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4525. Part339.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4526. Part339.BrickColor = BrickColor.new("Bright blue")
  4527. Part339.CanCollide = false
  4528. Part339.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4529. Part339.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4530. Part339.Material = Enum.Material.Neon
  4531. Part339.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4532. Part339.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4533. Part339.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4534. Part339.brickColor = BrickColor.new("Bright blue")
  4535. SpecialMesh340.Parent = Part339
  4536. SpecialMesh340.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  4537. SpecialMesh340.MeshType = Enum.MeshType.Brick
  4538. Part341.Parent = Model0
  4539. Part341.CFrame = CFrame.new(-0.610086679, 3.15827918, -15.1365986, -0.999985635, 0.00409500999, -0.00345871458, -0.00513683027, -0.916451037, 0.400114089, -0.00153127091, 0.40012604, 0.916459024)
  4540. Part341.Orientation = Vector3.new(-23.5900002, -0.219999999, -179.679993)
  4541. Part341.Position = Vector3.new(-0.610086679, 3.15827918, -15.1365986)
  4542. Part341.Rotation = Vector3.new(-23.5900002, -0.199999988, -179.769989)
  4543. Part341.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4544. Part341.Velocity = Vector3.new(7.15190893e-08, 0.0024645091, 9.39837378e-07)
  4545. Part341.Size = Vector3.new(0.275000006, 0.221124932, 0.655375004)
  4546. Part341.Anchored = true
  4547. Part341.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4548. Part341.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4549. Part341.BrickColor = BrickColor.new("Really black")
  4550. Part341.CanCollide = false
  4551. Part341.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4552. Part341.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4553. Part341.Material = Enum.Material.Metal
  4554. Part341.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4555. Part341.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4556. Part341.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4557. Part341.brickColor = BrickColor.new("Really black")
  4558. SpecialMesh342.Parent = Part341
  4559. SpecialMesh342.Scale = Vector3.new(0.400000006, 1.04999995, 0.899999976)
  4560. SpecialMesh342.MeshType = Enum.MeshType.Brick
  4561. Part343.Parent = Model0
  4562. Part343.CFrame = CFrame.new(-0.576193094, 2.37180829, -14.2261257, 0.00114334025, 0.999985635, -0.00523668947, -0.483495861, 0.00513671385, 0.8753317, 0.875346005, 0.00153111527, 0.483494759)
  4563. Part343.Orientation = Vector3.new(-61.079998, -0.620000005, -89.3899994)
  4564. Part343.Position = Vector3.new(-0.576193094, 2.37180829, -14.2261257)
  4565. Part343.Rotation = Vector3.new(-61.0900002, -0.299999982, -89.9300003)
  4566. Part343.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4567. Part343.Velocity = Vector3.new(1.96226381e-07, 0.00246641156, 2.57862462e-06)
  4568. Part343.Size = Vector3.new(0.405000031, 0.200000003, 0.280375004)
  4569. Part343.Anchored = true
  4570. Part343.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4571. Part343.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4572. Part343.BrickColor = BrickColor.new("Royal purple")
  4573. Part343.CanCollide = false
  4574. Part343.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4575. Part343.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4576. Part343.Material = Enum.Material.Neon
  4577. Part343.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4578. Part343.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4579. Part343.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4580. Part343.brickColor = BrickColor.new("Royal purple")
  4581. SpecialMesh344.Parent = Part343
  4582. SpecialMesh344.Scale = Vector3.new(1, 0.300000012, 0.5)
  4583. SpecialMesh344.MeshType = Enum.MeshType.Wedge
  4584. Part345.Parent = Model0
  4585. Part345.CFrame = CFrame.new(-0.606692195, 3.59138489, -18.8080196, 0.999985635, 0.00250130473, 0.00474093435, 0.00513696205, -0.699832857, -0.714288294, 0.00153120875, 0.714302421, -0.699835718)
  4586. Part345.Orientation = Vector3.new(45.579998, 179.610001, 179.580002)
  4587. Part345.Position = Vector3.new(-0.606692195, 3.59138489, -18.8080196)
  4588. Part345.Rotation = Vector3.new(134.410004, 0.269999981, -0.140000001)
  4589. Part345.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4590. Part345.Velocity = Vector3.new(2.843354e-09, 0.00245685945, 3.73652256e-08)
  4591. Part345.Size = Vector3.new(0.275000006, 0.47012496, 0.214375019)
  4592. Part345.Anchored = true
  4593. Part345.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4594. Part345.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4595. Part345.BrickColor = BrickColor.new("Bright blue")
  4596. Part345.CanCollide = false
  4597. Part345.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4598. Part345.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4599. Part345.Material = Enum.Material.Neon
  4600. Part345.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4601. Part345.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4602. Part345.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4603. Part345.brickColor = BrickColor.new("Bright blue")
  4604. SpecialMesh346.Parent = Part345
  4605. SpecialMesh346.Scale = Vector3.new(0.449999988, 0.699999988, 0.100000001)
  4606. SpecialMesh346.MeshType = Enum.MeshType.Brick
  4607. Part347.Parent = Model0
  4608. Part347.CFrame = CFrame.new(-0.612170458, 3.17509294, -13.8325748, -0.999985635, 0.00162795268, 0.00510695158, -0.00513688475, -0.0189460143, -0.999807417, -0.00153088232, -0.999819279, 0.0189541057)
  4609. Part347.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4610. Part347.Position = Vector3.new(-0.612170458, 3.17509294, -13.8325748)
  4611. Part347.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4612. Part347.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4613. Part347.Velocity = Vector3.new(6.88530264e-08, 0.002467226, 9.04802221e-07)
  4614. Part347.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  4615. Part347.Anchored = true
  4616. Part347.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4617. Part347.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4618. Part347.BrickColor = BrickColor.new("Really black")
  4619. Part347.CanCollide = false
  4620. Part347.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4621. Part347.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4622. Part347.Material = Enum.Material.Metal
  4623. Part347.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4624. Part347.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4625. Part347.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4626. Part347.brickColor = BrickColor.new("Really black")
  4627. SpecialMesh348.Parent = Part347
  4628. SpecialMesh348.Scale = Vector3.new(0.5, 0.5, 0.5)
  4629. SpecialMesh348.MeshType = Enum.MeshType.Wedge
  4630. Part349.Parent = Model0
  4631. Part349.CFrame = CFrame.new(-0.608221889, 3.47114682, -17.4040871, 0.999985635, -0.00133592309, 0.00519115338, 0.00513700396, -0.037765637, -0.999273479, 0.00153099932, 0.999285877, -0.0377582312)
  4632. Part349.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  4633. Part349.Position = Vector3.new(-0.608221889, 3.47114682, -17.4040871)
  4634. Part349.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  4635. Part349.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4636. Part349.Velocity = Vector3.new(2.19089991e-08, 0.0024597845, 2.87908023e-07)
  4637. Part349.Size = Vector3.new(0.275000006, 0.678124905, 0.214375019)
  4638. Part349.Anchored = true
  4639. Part349.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4640. Part349.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4641. Part349.BrickColor = BrickColor.new("Bright blue")
  4642. Part349.CanCollide = false
  4643. Part349.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4644. Part349.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4645. Part349.Material = Enum.Material.Neon
  4646. Part349.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4647. Part349.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4648. Part349.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4649. Part349.brickColor = BrickColor.new("Bright blue")
  4650. SpecialMesh350.Parent = Part349
  4651. SpecialMesh350.Scale = Vector3.new(0.449999988, 0.800000012, 0.100000001)
  4652. SpecialMesh350.MeshType = Enum.MeshType.Brick
  4653. Part351.Parent = Model0
  4654. Part351.CFrame = CFrame.new(-0.617746711, 3.42490911, -11.0273066, 0.999985635, -0.000716609415, 0.00531159993, 0.00513640279, -0.15495652, -0.987908006, 0.00153101061, 0.987921119, -0.154950604)
  4655. Part351.Orientation = Vector3.new(81.0800018, 178.039993, 178.099991)
  4656. Part351.Position = Vector3.new(-0.617746711, 3.42490911, -11.0273066)
  4657. Part351.Rotation = Vector3.new(98.909996, 0.299999982, 0.0399999991)
  4658. Part351.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4659. Part351.Velocity = Vector3.new(2.92407876e-08, 0.00247307052, 3.84254577e-07)
  4660. Part351.Size = Vector3.new(0.275000006, 0.203125, 0.234375)
  4661. Part351.Anchored = true
  4662. Part351.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4663. Part351.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4664. Part351.BrickColor = BrickColor.new("Really black")
  4665. Part351.CanCollide = false
  4666. Part351.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4667. Part351.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4668. Part351.Material = Enum.Material.Metal
  4669. Part351.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4670. Part351.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4671. Part351.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4672. Part351.brickColor = BrickColor.new("Really black")
  4673. SpecialMesh352.Parent = Part351
  4674. SpecialMesh352.Scale = Vector3.new(0.5, 0.502499998, 0.400000006)
  4675. SpecialMesh352.MeshType = Enum.MeshType.Brick
  4676. Part353.Parent = Model0
  4677. Part353.CFrame = CFrame.new(-0.638692379, 2.37148738, -14.226222, -0.00114342954, -0.999985635, -0.00523668341, 0.483495861, -0.00513675157, 0.8753317, -0.875346065, -0.00153103401, 0.483494759)
  4678. Part353.Orientation = Vector3.new(-61.079998, -0.620000005, 90.6100006)
  4679. Part353.Position = Vector3.new(-0.638692379, 2.37148738, -14.226222)
  4680. Part353.Rotation = Vector3.new(-61.0900002, -0.299999982, 90.0699997)
  4681. Part353.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4682. Part353.Velocity = Vector3.new(1.9627727e-07, 0.00246640155, 2.57929332e-06)
  4683. Part353.Size = Vector3.new(0.405000031, 0.200000003, 0.280375004)
  4684. Part353.Anchored = true
  4685. Part353.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4686. Part353.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4687. Part353.BrickColor = BrickColor.new("Royal purple")
  4688. Part353.CanCollide = false
  4689. Part353.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4690. Part353.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4691. Part353.Material = Enum.Material.Neon
  4692. Part353.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4693. Part353.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4694. Part353.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4695. Part353.brickColor = BrickColor.new("Royal purple")
  4696. SpecialMesh354.Parent = Part353
  4697. SpecialMesh354.Scale = Vector3.new(1, 0.300000012, 0.5)
  4698. SpecialMesh354.MeshType = Enum.MeshType.Wedge
  4699. Part355.Parent = Model0
  4700. Part355.CFrame = CFrame.new(-0.576556623, 2.33930445, -13.8796148, -0.00289415126, 0.999985635, -0.00451143365, 0.277069539, 0.00513670407, 0.960836232, 0.96084559, 0.00153082411, -0.277080417)
  4701. Part355.Orientation = Vector3.new(-73.909996, -179.069992, 88.9399948)
  4702. Part355.Position = Vector3.new(-0.576556623, 2.33930445, -13.8796148)
  4703. Part355.Rotation = Vector3.new(-106.089996, -0.25999999, -90.1699982)
  4704. Part355.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4705. Part355.Velocity = Vector3.new(2.01380388e-07, 0.00246713357, 2.64635355e-06)
  4706. Part355.Size = Vector3.new(0.453000009, 0.200000003, 0.280375004)
  4707. Part355.Anchored = true
  4708. Part355.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4709. Part355.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4710. Part355.BrickColor = BrickColor.new("Royal purple")
  4711. Part355.CanCollide = false
  4712. Part355.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4713. Part355.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4714. Part355.Material = Enum.Material.Neon
  4715. Part355.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4716. Part355.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4717. Part355.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4718. Part355.brickColor = BrickColor.new("Royal purple")
  4719. SpecialMesh356.Parent = Part355
  4720. SpecialMesh356.Scale = Vector3.new(1, 0.300000012, 0.5)
  4721. SpecialMesh356.MeshType = Enum.MeshType.Wedge
  4722. Part357.Parent = Model0
  4723. Part357.CFrame = CFrame.new(-0.609105706, 2.8586967, -14.7735023, -0.999985635, -0.0039632949, -0.00360830128, -0.00513646565, 0.516311884, 0.856385469, -0.00153109885, 0.856391609, -0.516324818)
  4724. Part357.Orientation = Vector3.new(-58.9099998, -179.599991, -0.569999993)
  4725. Part357.Position = Vector3.new(-0.609105706, 2.8586967, -14.7735023)
  4726. Part357.Rotation = Vector3.new(-121.089996, -0.209999993, 179.769989)
  4727. Part357.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4728. Part357.Velocity = Vector3.new(1.19022602e-07, 0.0024652658, 1.56408419e-06)
  4729. Part357.Size = Vector3.new(0.275000006, 0.277124912, 0.227375031)
  4730. Part357.Anchored = true
  4731. Part357.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4732. Part357.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4733. Part357.BrickColor = BrickColor.new("Really black")
  4734. Part357.CanCollide = false
  4735. Part357.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4736. Part357.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4737. Part357.Material = Enum.Material.Metal
  4738. Part357.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4739. Part357.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4740. Part357.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4741. Part357.brickColor = BrickColor.new("Really black")
  4742. SpecialMesh358.Parent = Part357
  4743. SpecialMesh358.Scale = Vector3.new(0.349999994, 0.300000012, 1)
  4744. SpecialMesh358.MeshType = Enum.MeshType.Brick
  4745. Part359.Parent = Model0
  4746. Part359.CFrame = CFrame.new(-0.614465594, 3.24354935, -12.5620441, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  4747. Part359.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4748. Part359.Position = Vector3.new(-0.614465594, 3.24354935, -12.5620441)
  4749. Part359.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4750. Part359.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4751. Part359.Velocity = Vector3.new(5.79982e-08, 0.00246987306, 7.62158038e-07)
  4752. Part359.Size = Vector3.new(0.275000006, 0.998124957, 0.280375004)
  4753. Part359.Anchored = true
  4754. Part359.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4755. Part359.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4756. Part359.BrickColor = BrickColor.new("Really black")
  4757. Part359.CanCollide = false
  4758. Part359.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4759. Part359.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4760. Part359.Material = Enum.Material.Metal
  4761. Part359.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4762. Part359.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4763. Part359.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4764. Part359.brickColor = BrickColor.new("Really black")
  4765. SpecialMesh360.Parent = Part359
  4766. SpecialMesh360.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  4767. SpecialMesh360.MeshType = Enum.MeshType.Brick
  4768. Part361.Parent = Model0
  4769. Part361.CFrame = CFrame.new(-0.611248136, 3.25645614, -14.7074032, -0.999985635, 0.00245982548, -0.00476256292, -0.00513693923, -0.693573654, 0.720367551, -0.00153120921, 0.720381677, 0.693576276)
  4770. Part361.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  4771. Part361.Position = Vector3.new(-0.611248136, 3.25645614, -14.7074032)
  4772. Part361.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  4773. Part361.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4774. Part361.Velocity = Vector3.new(5.59516025e-08, 0.00246540317, 7.35263882e-07)
  4775. Part361.Size = Vector3.new(0.275000006, 0.221124932, 0.418375015)
  4776. Part361.Anchored = true
  4777. Part361.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4778. Part361.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4779. Part361.BrickColor = BrickColor.new("Really black")
  4780. Part361.CanCollide = false
  4781. Part361.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4782. Part361.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4783. Part361.Material = Enum.Material.Metal
  4784. Part361.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4785. Part361.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4786. Part361.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4787. Part361.brickColor = BrickColor.new("Really black")
  4788. SpecialMesh362.Parent = Part361
  4789. SpecialMesh362.Scale = Vector3.new(0.550000012, 1.04999995, 0.899999976)
  4790. SpecialMesh362.MeshType = Enum.MeshType.Brick
  4791. Part363.Parent = Model0
  4792. Part363.CFrame = CFrame.new(-0.611290276, 3.1978817, -14.4833202, 0.999985635, 0.00162786234, -0.00510698371, 0.00513691502, -0.0189458374, 0.999807417, 0.00153079221, -0.999819279, -0.0189539269)
  4793. Part363.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4794. Part363.Position = Vector3.new(-0.611290276, 3.1978817, -14.4833202)
  4795. Part363.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4796. Part363.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4797. Part363.Velocity = Vector3.new(6.52394974e-08, 0.00246587023, 8.57316763e-07)
  4798. Part363.Size = Vector3.new(0.275000006, 0.221124932, 0.448374987)
  4799. Part363.Anchored = true
  4800. Part363.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4801. Part363.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4802. Part363.BrickColor = BrickColor.new("Really black")
  4803. Part363.CanCollide = false
  4804. Part363.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4805. Part363.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4806. Part363.Material = Enum.Material.Metal
  4807. Part363.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4808. Part363.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4809. Part363.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4810. Part363.brickColor = BrickColor.new("Really black")
  4811. SpecialMesh364.Parent = Part363
  4812. SpecialMesh364.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  4813. SpecialMesh364.MeshType = Enum.MeshType.Brick
  4814. Part365.Parent = Model0
  4815. Part365.CFrame = CFrame.new(-0.610800147, 2.91253304, -13.8467321, -0.999985635, -0.00162807154, -0.00510650687, -0.00513644237, 0.0189459547, 0.999807417, -0.00153100991, 0.999819279, -0.0189540461)
  4816. Part365.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4817. Part365.Position = Vector3.new(-0.610800147, 2.91253304, -13.8467321)
  4818. Part365.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4819. Part365.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4820. Part365.Velocity = Vector3.new(1.10486013e-07, 0.00246719667, 1.45190415e-06)
  4821. Part365.Size = Vector3.new(0.275000006, 0.200000003, 0.213375002)
  4822. Part365.Anchored = true
  4823. Part365.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4824. Part365.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4825. Part365.BrickColor = BrickColor.new("Bright blue")
  4826. Part365.CanCollide = false
  4827. Part365.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4828. Part365.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4829. Part365.Material = Enum.Material.Neon
  4830. Part365.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4831. Part365.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4832. Part365.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4833. Part365.brickColor = BrickColor.new("Bright blue")
  4834. SpecialMesh366.Parent = Part365
  4835. SpecialMesh366.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  4836. SpecialMesh366.MeshType = Enum.MeshType.Wedge
  4837. Part367.Parent = Model0
  4838. Part367.CFrame = CFrame.new(-0.616349459, 3.1451273, -11.0012493, -0.999985635, -0.000250895391, -0.00535403285, -0.00513659744, -0.24046874, 0.970643461, -0.001531007, 0.970656931, 0.240463987)
  4839. Part367.Orientation = Vector3.new(-76.0800018, -1.27999997, -178.779999)
  4840. Part367.Position = Vector3.new(-0.616349459, 3.1451273, -11.0012493)
  4841. Part367.Rotation = Vector3.new(-76.0899963, -0.310000002, 179.98999)
  4842. Part367.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4843. Part367.Velocity = Vector3.new(7.3604582e-08, 0.002473125, 9.67242272e-07)
  4844. Part367.Size = Vector3.new(0.200000003, 0.449500024, 0.236624971)
  4845. Part367.Anchored = true
  4846. Part367.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4847. Part367.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4848. Part367.BrickColor = BrickColor.new("Bright blue")
  4849. Part367.CanCollide = false
  4850. Part367.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4851. Part367.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4852. Part367.Material = Enum.Material.Neon
  4853. Part367.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4854. Part367.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4855. Part367.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4856. Part367.brickColor = BrickColor.new("Bright blue")
  4857. SpecialMesh368.Parent = Part367
  4858. SpecialMesh368.Scale = Vector3.new(0.5, 1, 0.25)
  4859. SpecialMesh368.MeshType = Enum.MeshType.Brick
  4860. Part369.Parent = Model0
  4861. Part369.CFrame = CFrame.new(-0.612978816, 3.18449855, -13.3361721, 0.999985635, -0.00162807154, 0.00510664983, 0.00513658533, 0.0189459547, -0.999807417, 0.00153100723, 0.999819279, 0.0189540461)
  4862. Part369.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4863. Part369.Position = Vector3.new(-0.612978816, 3.18449855, -13.3361721)
  4864. Part369.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4865. Part369.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4866. Part369.Velocity = Vector3.new(6.73616256e-08, 0.00246826024, 8.85203519e-07)
  4867. Part369.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  4868. Part369.Anchored = true
  4869. Part369.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4870. Part369.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4871. Part369.BrickColor = BrickColor.new("Really black")
  4872. Part369.CanCollide = false
  4873. Part369.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4874. Part369.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4875. Part369.Material = Enum.Material.Metal
  4876. Part369.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4877. Part369.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4878. Part369.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4879. Part369.brickColor = BrickColor.new("Really black")
  4880. SpecialMesh370.Parent = Part369
  4881. SpecialMesh370.Scale = Vector3.new(0.5, 0.5, 0.5)
  4882. SpecialMesh370.MeshType = Enum.MeshType.Wedge
  4883. Part371.Parent = Model0
  4884. Part371.CFrame = CFrame.new(-0.611412168, 3.19930172, -14.4084625, 0.999985635, 0.00162786234, -0.00510698371, 0.00513691502, -0.0189458374, 0.999807417, 0.00153079221, -0.999819279, -0.0189539269)
  4885. Part371.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4886. Part371.Position = Vector3.new(-0.611412168, 3.19930172, -14.4084625)
  4887. Part371.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4888. Part371.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4889. Part371.Velocity = Vector3.new(6.50143335e-08, 0.00246602623, 8.54357836e-07)
  4890. Part371.Size = Vector3.new(0.275000006, 0.204124942, 0.464375019)
  4891. Part371.Anchored = true
  4892. Part371.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4893. Part371.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4894. Part371.BrickColor = BrickColor.new("Royal purple")
  4895. Part371.CanCollide = false
  4896. Part371.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4897. Part371.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4898. Part371.Material = Enum.Material.Neon
  4899. Part371.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4900. Part371.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4901. Part371.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4902. Part371.brickColor = BrickColor.new("Royal purple")
  4903. SpecialMesh372.Parent = Part371
  4904. SpecialMesh372.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  4905. SpecialMesh372.MeshType = Enum.MeshType.Brick
  4906. Part373.Parent = Model0
  4907. Part373.CFrame = CFrame.new(-0.607544899, 3.43064713, -17.7122707, 0.999985635, -0.004783432, 0.00241859211, 0.00513692852, 0.726393282, -0.68726027, 0.00153061328, 0.687262774, 0.726407468)
  4908. Part373.Orientation = Vector3.new(43.4099998, 0.189999998, 0.409999996)
  4909. Part373.Position = Vector3.new(-0.607544899, 3.43064713, -17.7122707)
  4910. Part373.Rotation = Vector3.new(43.4099998, 0.140000001, 0.269999981)
  4911. Part373.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4912. Part373.Velocity = Vector3.new(2.83308559e-08, 0.00245914259, 3.72298132e-07)
  4913. Part373.Size = Vector3.new(0.275000006, 0.24712491, 0.214375019)
  4914. Part373.Anchored = true
  4915. Part373.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4916. Part373.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4917. Part373.BrickColor = BrickColor.new("Bright blue")
  4918. Part373.CanCollide = false
  4919. Part373.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4920. Part373.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4921. Part373.Material = Enum.Material.Neon
  4922. Part373.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4923. Part373.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4924. Part373.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4925. Part373.brickColor = BrickColor.new("Bright blue")
  4926. SpecialMesh374.Parent = Part373
  4927. SpecialMesh374.Scale = Vector3.new(0.449999988, 0.600000024, 0.100000001)
  4928. SpecialMesh374.MeshType = Enum.MeshType.Brick
  4929. Part375.Parent = Model0
  4930. Part375.CFrame = CFrame.new(-0.613238811, 3.32843637, -13.6493177, -0.999985635, -0.00162807142, -0.00510653527, -0.00513647031, 0.0189459249, 0.999807417, -0.00153100933, 0.999819279, -0.0189540163)
  4931. Part375.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4932. Part375.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  4933. Part375.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4934. Part375.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4935. Part375.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  4936. Part375.Size = Vector3.new(0.275000006, 0.698124886, 0.534374952)
  4937. Part375.Anchored = true
  4938. Part375.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4939. Part375.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4940. Part375.BrickColor = BrickColor.new("Bright blue")
  4941. Part375.CanCollide = false
  4942. Part375.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4943. Part375.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4944. Part375.Material = Enum.Material.Glass
  4945. Part375.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4946. Part375.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4947. Part375.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4948. Part375.brickColor = BrickColor.new("Bright blue")
  4949. SpecialMesh376.Parent = Part375
  4950. SpecialMesh376.Scale = Vector3.new(0.452499986, 1, 1)
  4951. SpecialMesh376.MeshType = Enum.MeshType.Cylinder
  4952. Part377.Parent = Model0
  4953. Part377.CFrame = CFrame.new(-0.618502736, 3.35398197, -11.388195, -0.999985635, 0.00162807188, 0.00510671316, -0.00513664866, -0.0189460143, -0.999807417, -0.00153100595, -0.999819279, 0.0189541057)
  4954. Part377.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4955. Part377.Position = Vector3.new(-0.618502736, 3.35398197, -11.388195)
  4956. Part377.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4957. Part377.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4958. Part377.Velocity = Vector3.new(4.0487393e-08, 0.00247231848, 5.32047068e-07)
  4959. Part377.Size = Vector3.new(0.25999999, 0.225500003, 0.210125014)
  4960. Part377.Anchored = true
  4961. Part377.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4962. Part377.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4963. Part377.BrickColor = BrickColor.new("Really black")
  4964. Part377.CanCollide = false
  4965. Part377.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4966. Part377.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4967. Part377.Material = Enum.Material.Metal
  4968. Part377.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4969. Part377.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4970. Part377.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4971. Part377.brickColor = BrickColor.new("Really black")
  4972. SpecialMesh378.Parent = Part377
  4973. SpecialMesh378.Scale = Vector3.new(0.5, 1, 1)
  4974. SpecialMesh378.MeshType = Enum.MeshType.Wedge
  4975. Part379.Parent = Model0
  4976. Part379.CFrame = CFrame.new(-0.575232625, 3.71340823, -19.3540096, 0.00507748965, 0.999985635, -0.00171704218, -0.999324501, 0.00513662118, 0.0363931209, 0.0364014208, 0.00153109594, 0.999336243)
  4977. Part379.Orientation = Vector3.new(-2.08999991, -0.099999994, -89.7099991)
  4978. Part379.Position = Vector3.new(-0.575232625, 3.71340823, -19.3540096)
  4979. Part379.Rotation = Vector3.new(-2.08999991, -0.099999994, -89.7099991)
  4980. Part379.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4981. Part379.Velocity = Vector3.new(-1.65053677e-08, 0.00245572673, -2.16897547e-07)
  4982. Part379.Size = Vector3.new(0.210000038, 0.200000003, 0.285374999)
  4983. Part379.Anchored = true
  4984. Part379.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4985. Part379.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4986. Part379.BrickColor = BrickColor.new("Royal purple")
  4987. Part379.CanCollide = false
  4988. Part379.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4989. Part379.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4990. Part379.Material = Enum.Material.Neon
  4991. Part379.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4992. Part379.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4993. Part379.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4994. Part379.brickColor = BrickColor.new("Royal purple")
  4995. SpecialMesh380.Parent = Part379
  4996. SpecialMesh380.Scale = Vector3.new(0.5, 0.300000012, 0.5)
  4997. SpecialMesh380.MeshType = Enum.MeshType.Wedge
  4998. Part381.Parent = Model0
  4999. Part381.CFrame = CFrame.new(-0.609601736, 3.48017144, -16.5335026, 0.999985635, -0.00133592158, 0.00519114826, 0.0051369979, -0.0377659947, -0.999273479, 0.00153099943, 0.999285877, -0.0377585888)
  5000. Part381.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  5001. Part381.Position = Vector3.new(-0.609601736, 3.48017144, -16.5335026)
  5002. Part381.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  5003. Part381.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5004. Part381.Velocity = Vector3.new(2.0478014e-08, 0.00246159849, 2.69103225e-07)
  5005. Part381.Size = Vector3.new(0.275000006, 1.65712488, 0.359375)
  5006. Part381.Anchored = true
  5007. Part381.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5008. Part381.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5009. Part381.BrickColor = BrickColor.new("Really black")
  5010. Part381.CanCollide = false
  5011. Part381.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5012. Part381.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5013. Part381.Material = Enum.Material.Metal
  5014. Part381.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5015. Part381.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5016. Part381.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5017. Part381.brickColor = BrickColor.new("Really black")
  5018. SpecialMesh382.Parent = Part381
  5019. SpecialMesh382.Scale = Vector3.new(0.400000006, 1, 0.5)
  5020. SpecialMesh382.MeshType = Enum.MeshType.Brick
  5021. Part383.Parent = Model0
  5022. Part383.CFrame = CFrame.new(-0.608603716, 2.57794237, -14.160059, -0.999985635, 0.00114323408, -0.00523646409, -0.00513646565, -0.483495802, 0.8753317, -0.00153109885, 0.875346065, 0.483494699)
  5023. Part383.Orientation = Vector3.new(-61.079998, -0.620000005, -179.389999)
  5024. Part383.Position = Vector3.new(-0.608603716, 2.57794237, -14.160059)
  5025. Part383.Rotation = Vector3.new(-61.0900002, -0.299999982, -179.929993)
  5026. Part383.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5027. Part383.Velocity = Vector3.new(1.63540591e-07, 0.00246654428, 2.14909824e-06)
  5028. Part383.Size = Vector3.new(0.275000006, 0.309124947, 0.343375027)
  5029. Part383.Anchored = true
  5030. Part383.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5031. Part383.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5032. Part383.BrickColor = BrickColor.new("Really black")
  5033. Part383.CanCollide = false
  5034. Part383.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5035. Part383.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5036. Part383.Material = Enum.Material.Metal
  5037. Part383.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5038. Part383.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5039. Part383.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5040. Part383.brickColor = BrickColor.new("Really black")
  5041. SpecialMesh384.Parent = Part383
  5042. SpecialMesh384.Scale = Vector3.new(0.349999994, 1, 1)
  5043. SpecialMesh384.MeshType = Enum.MeshType.Brick
  5044. Part385.Parent = Model0
  5045. Part385.CFrame = CFrame.new(-0.610497713, 3.13989329, -14.8064632, 0.999985635, -0.00162807363, 0.00510707032, 0.00513700629, 0.018946372, -0.999807417, 0.0015309992, 0.999819279, 0.0189544633)
  5046. Part385.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  5047. Part385.Position = Vector3.new(-0.610497713, 3.13989329, -14.8064632)
  5048. Part385.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  5049. Part385.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5050. Part385.Velocity = Vector3.new(7.44344675e-08, 0.00246519689, 9.78148478e-07)
  5051. Part385.Size = Vector3.new(0.275000006, 0.618124902, 0.209375009)
  5052. Part385.Anchored = true
  5053. Part385.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5054. Part385.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5055. Part385.BrickColor = BrickColor.new("Really black")
  5056. Part385.CanCollide = false
  5057. Part385.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5058. Part385.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5059. Part385.Material = Enum.Material.Metal
  5060. Part385.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5061. Part385.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5062. Part385.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5063. Part385.brickColor = BrickColor.new("Really black")
  5064. SpecialMesh386.Parent = Part385
  5065. SpecialMesh386.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  5066. SpecialMesh386.MeshType = Enum.MeshType.Brick
  5067. Part387.Parent = Model0
  5068. Part387.CFrame = CFrame.new(-0.611324251, 3.01513863, -13.8486776, 0.999985635, -0.00162807154, 0.00510659395, 0.00513652945, 0.0189459547, -0.999807417, 0.00153100828, 0.999819279, 0.0189540461)
  5069. Part387.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  5070. Part387.Position = Vector3.new(-0.611324251, 3.01513863, -13.8486776)
  5071. Part387.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  5072. Part387.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  5073. Part387.Velocity = Vector3.new(9.42162828e-08, 0.00246719248, 1.23810264e-06)
  5074. Part387.Size = Vector3.new(0.275000006, 0.200000003, 0.213375002)
  5075. Part387.Anchored = true
  5076. Part387.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5077. Part387.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5078. Part387.BrickColor = BrickColor.new("Bright blue")
  5079. Part387.CanCollide = false
  5080. Part387.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5081. Part387.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5082. Part387.Material = Enum.Material.Neon
  5083. Part387.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5084. Part387.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5085. Part387.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5086. Part387.brickColor = BrickColor.new("Bright blue")
  5087. SpecialMesh388.Parent = Part387
  5088. SpecialMesh388.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  5089. SpecialMesh388.MeshType = Enum.MeshType.Wedge
  5090. Part389.Parent = Model0
  5091. Part389.CFrame = CFrame.new(-0.615387738, 3.25427985, -11.9957829, -0.999985635, -0.00162816129, -0.00510668149, -0.00513661886, 0.0189460143, 0.999807417, -0.00153109606, 0.999819279, -0.0189541057)
  5092. Part389.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5093. Part389.Position = Vector3.new(-0.615387738, 3.25427985, -11.9957829)
  5094. Part389.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5095. Part389.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5096. Part389.Velocity = Vector3.new(5.62967202e-08, 0.00247105281, 7.39798622e-07)
  5097. Part389.Size = Vector3.new(0.275000006, 0.206125051, 0.280375004)
  5098. Part389.Anchored = true
  5099. Part389.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5100. Part389.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5101. Part389.BrickColor = BrickColor.new("Really black")
  5102. Part389.CanCollide = false
  5103. Part389.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5104. Part389.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5105. Part389.Material = Enum.Material.Metal
  5106. Part389.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5107. Part389.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5108. Part389.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5109. Part389.brickColor = BrickColor.new("Really black")
  5110. SpecialMesh390.Parent = Part389
  5111. SpecialMesh390.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  5112. SpecialMesh390.MeshType = Enum.MeshType.Wedge
  5113. Part391.Parent = Model0
  5114. Part391.CFrame = CFrame.new(-0.614540219, 3.2634635, -12.5800533, -0.999985635, -0.00162816129, -0.00510668149, -0.00513661886, 0.0189460143, 0.999807417, -0.00153109606, 0.999819279, -0.0189541057)
  5115. Part391.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5116. Part391.Position = Vector3.new(-0.614540219, 3.2634635, -12.5800533)
  5117. Part391.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5118. Part391.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5119. Part391.Velocity = Vector3.new(5.48404984e-08, 0.00246983557, 7.20662456e-07)
  5120. Part391.Size = Vector3.new(0.275000006, 0.405125052, 0.211375013)
  5121. Part391.Anchored = true
  5122. Part391.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5123. Part391.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5124. Part391.BrickColor = BrickColor.new("Really black")
  5125. Part391.CanCollide = false
  5126. Part391.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5127. Part391.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5128. Part391.Material = Enum.Material.Metal
  5129. Part391.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5130. Part391.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5131. Part391.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5132. Part391.brickColor = BrickColor.new("Really black")
  5133. SpecialMesh392.Parent = Part391
  5134. SpecialMesh392.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  5135. SpecialMesh392.MeshType = Enum.MeshType.Wedge
  5136. Part393.Parent = Model0
  5137. Part393.CFrame = CFrame.new(-0.608892262, 2.75060058, -14.5502081, -0.999985635, 0.00114323408, -0.00523646409, -0.00513646565, -0.483495802, 0.8753317, -0.00153109885, 0.875346065, 0.483494699)
  5138. Part393.Orientation = Vector3.new(-61.079998, -0.620000005, -179.389999)
  5139. Part393.Position = Vector3.new(-0.608892262, 2.75060058, -14.5502081)
  5140. Part393.Rotation = Vector3.new(-61.0900002, -0.299999982, -179.929993)
  5141. Part393.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5142. Part393.Velocity = Vector3.new(1.36162924e-07, 0.00246573123, 1.78932657e-06)
  5143. Part393.Size = Vector3.new(0.275000006, 0.409124911, 0.268375039)
  5144. Part393.Anchored = true
  5145. Part393.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5146. Part393.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5147. Part393.BrickColor = BrickColor.new("Really black")
  5148. Part393.CanCollide = false
  5149. Part393.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5150. Part393.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5151. Part393.Material = Enum.Material.Metal
  5152. Part393.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5153. Part393.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5154. Part393.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5155. Part393.brickColor = BrickColor.new("Really black")
  5156. SpecialMesh394.Parent = Part393
  5157. SpecialMesh394.Scale = Vector3.new(0.349999994, 1, 1)
  5158. SpecialMesh394.MeshType = Enum.MeshType.Brick
  5159. Part395.Parent = Model0
  5160. Part395.CFrame = CFrame.new(-0.606766462, 3.43472743, -18.2343674, 0.999985635, -0.00103941432, 0.00525853038, 0.0051369979, -0.0943565816, -0.99552542, 0.00153093971, 0.995537996, -0.0943498909)
  5161. Part395.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  5162. Part395.Position = Vector3.new(-0.606766462, 3.43472743, -18.2343674)
  5163. Part395.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  5164. Part395.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  5165. Part395.Velocity = Vector3.new(2.76838534e-08, 0.00245805481, 3.63795948e-07)
  5166. Part395.Size = Vector3.new(0.275000006, 1.04612494, 0.214375019)
  5167. Part395.Anchored = true
  5168. Part395.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5169. Part395.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5170. Part395.BrickColor = BrickColor.new("Bright blue")
  5171. Part395.CanCollide = false
  5172. Part395.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5173. Part395.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5174. Part395.Material = Enum.Material.Neon
  5175. Part395.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5176. Part395.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5177. Part395.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5178. Part395.brickColor = BrickColor.new("Bright blue")
  5179. SpecialMesh396.Parent = Part395
  5180. SpecialMesh396.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  5181. SpecialMesh396.MeshType = Enum.MeshType.Brick
  5182. Part397.Parent = Model0
  5183. Part397.CFrame = CFrame.new(-0.638540506, 2.9091177, -16.128315, 0.00135860231, -0.999985635, -0.00518506905, 0.0334058255, -0.00513679488, 0.999428749, -0.999441087, -0.00153103739, 0.0333983675)
  5184. Part397.Orientation = Vector3.new(-88.0599976, -8.81999969, 98.7399979)
  5185. Part397.Position = Vector3.new(-0.638540506, 2.9091177, -16.128315)
  5186. Part397.Rotation = Vector3.new(-88.0899963, -0.299999982, 89.9199982)
  5187. Part397.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5188. Part397.Velocity = Vector3.new(1.11027532e-07, 0.00246243807, 1.45902084e-06)
  5189. Part397.Size = Vector3.new(1.625, 0.200000003, 0.296375006)
  5190. Part397.Anchored = true
  5191. Part397.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5192. Part397.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5193. Part397.BrickColor = BrickColor.new("Royal purple")
  5194. Part397.CanCollide = false
  5195. Part397.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5196. Part397.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5197. Part397.Material = Enum.Material.Neon
  5198. Part397.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5199. Part397.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5200. Part397.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5201. Part397.brickColor = BrickColor.new("Royal purple")
  5202. SpecialMesh398.Parent = Part397
  5203. SpecialMesh398.Scale = Vector3.new(1, 0.300000012, 0.5)
  5204. SpecialMesh398.MeshType = Enum.MeshType.Wedge
  5205. Part399.Parent = Model0
  5206. Part399.CFrame = CFrame.new(-0.614644945, 3.60375571, -13.6545372, -0.999985635, -0.00162807142, -0.00510653527, -0.00513647031, 0.0189459249, 0.999807417, -0.00153100933, 0.999819279, -0.0189540163)
  5207. Part399.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5208. Part399.Position = Vector3.new(-0.614644945, 3.60375571, -13.6545372)
  5209. Part399.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5210. Part399.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5211. Part399.Velocity = Vector3.new(8.81826168e-10, 0.00246759667, 1.1587872e-08)
  5212. Part399.Size = Vector3.new(0.275000006, 0.51412493, 0.622375011)
  5213. Part399.Anchored = true
  5214. Part399.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5215. Part399.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5216. Part399.BrickColor = BrickColor.new("Really black")
  5217. Part399.CanCollide = false
  5218. Part399.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5219. Part399.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5220. Part399.Material = Enum.Material.Metal
  5221. Part399.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5222. Part399.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5223. Part399.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5224. Part399.brickColor = BrickColor.new("Really black")
  5225. SpecialMesh400.Parent = Part399
  5226. SpecialMesh400.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  5227. SpecialMesh400.MeshType = Enum.MeshType.Brick
  5228. Part401.Parent = Model0
  5229. Part401.CFrame = CFrame.new(-0.577553451, 2.93009853, -15.210207, -0.00336827105, 0.999985635, -0.0041695768, 0.380026042, 0.00513680326, 0.924961627, 0.924969733, 0.00153097301, -0.380037904)
  5230. Part401.Orientation = Vector3.new(-67.659996, -179.369995, 89.2299957)
  5231. Part401.Position = Vector3.new(-0.577553451, 2.93009853, -15.210207)
  5232. Part401.Rotation = Vector3.new(-112.339996, -0.239999995, -90.1899948)
  5233. Part401.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5234. Part401.Velocity = Vector3.new(1.07700714e-07, 0.00246436079, 1.41530256e-06)
  5235. Part401.Size = Vector3.new(0.288000047, 0.200000003, 0.27837503)
  5236. Part401.Anchored = true
  5237. Part401.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5238. Part401.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5239. Part401.BrickColor = BrickColor.new("Royal purple")
  5240. Part401.CanCollide = false
  5241. Part401.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5242. Part401.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5243. Part401.Material = Enum.Material.Neon
  5244. Part401.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5245. Part401.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5246. Part401.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5247. Part401.brickColor = BrickColor.new("Royal purple")
  5248. SpecialMesh402.Parent = Part401
  5249. SpecialMesh402.Scale = Vector3.new(1, 0.300000012, 0.5)
  5250. SpecialMesh402.MeshType = Enum.MeshType.Wedge
  5251. Part403.Parent = Model0
  5252. Part403.CFrame = CFrame.new(-0.610871017, 3.00987482, -14.1263742, -0.999985635, 0.00162795268, 0.00510695158, -0.00513688475, -0.0189460143, -0.999807417, -0.00153088232, -0.999819279, 0.0189541057)
  5253. Part403.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  5254. Part403.Position = Vector3.new(-0.610871017, 3.00987482, -14.1263742)
  5255. Part403.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  5256. Part403.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  5257. Part403.Velocity = Vector3.new(9.5050936e-08, 0.00246661413, 1.24907092e-06)
  5258. Part403.Size = Vector3.new(0.275000006, 0.207000002, 0.213375002)
  5259. Part403.Anchored = true
  5260. Part403.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5261. Part403.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5262. Part403.BrickColor = BrickColor.new("Bright blue")
  5263. Part403.CanCollide = false
  5264. Part403.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5265. Part403.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5266. Part403.Material = Enum.Material.Neon
  5267. Part403.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5268. Part403.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5269. Part403.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5270. Part403.brickColor = BrickColor.new("Bright blue")
  5271. SpecialMesh404.Parent = Part403
  5272. SpecialMesh404.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  5273. SpecialMesh404.MeshType = Enum.MeshType.Wedge
  5274. Part405.Parent = Model0
  5275. Part405.CFrame = CFrame.new(-0.576041341, 2.90943861, -16.1282196, -0.00135869172, 0.999985635, -0.00518506905, -0.0334058292, 0.00513679255, 0.999428749, 0.999441028, 0.00153112656, 0.0333983749)
  5276. Part405.Orientation = Vector3.new(-88.0599976, -8.81999969, -81.2599945)
  5277. Part405.Position = Vector3.new(-0.576041341, 2.90943861, -16.1282196)
  5278. Part405.Rotation = Vector3.new(-88.0899963, -0.299999982, -90.0799942)
  5279. Part405.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5280. Part405.Velocity = Vector3.new(1.10976643e-07, 0.00246244832, 1.45835213e-06)
  5281. Part405.Size = Vector3.new(1.625, 0.200000003, 0.296375006)
  5282. Part405.Anchored = true
  5283. Part405.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5284. Part405.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5285. Part405.BrickColor = BrickColor.new("Royal purple")
  5286. Part405.CanCollide = false
  5287. Part405.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5288. Part405.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5289. Part405.Material = Enum.Material.Neon
  5290. Part405.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5291. Part405.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5292. Part405.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5293. Part405.brickColor = BrickColor.new("Royal purple")
  5294. SpecialMesh406.Parent = Part405
  5295. SpecialMesh406.Scale = Vector3.new(1, 0.300000012, 0.5)
  5296. SpecialMesh406.MeshType = Enum.MeshType.Wedge
  5297. Part407.Parent = Model0
  5298. Part407.CFrame = CFrame.new(-0.61728102, 3.21630335, -10.6318092, -0.999985635, -0.00414685067, -0.00339615461, -0.00513672922, 0.560423911, 0.828190207, -0.00153109396, 0.828195751, -0.560437143)
  5299. Part407.Orientation = Vector3.new(-55.9099998, -179.649994, -0.529999971)
  5300. Part407.Position = Vector3.new(-0.61728102, 3.21630335, -10.6318092)
  5301. Part407.Rotation = Vector3.new(-124.089996, -0.189999998, 179.759995)
  5302. Part407.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  5303. Part407.Velocity = Vector3.new(6.23185059e-08, 0.00247389474, 8.18931142e-07)
  5304. Part407.Size = Vector3.new(0.200000003, 0.46875, 0.220999971)
  5305. Part407.Anchored = true
  5306. Part407.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5307. Part407.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5308. Part407.BrickColor = BrickColor.new("Bright blue")
  5309. Part407.CanCollide = false
  5310. Part407.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5311. Part407.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5312. Part407.Material = Enum.Material.Neon
  5313. Part407.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5314. Part407.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5315. Part407.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5316. Part407.brickColor = BrickColor.new("Bright blue")
  5317. SpecialMesh408.Parent = Part407
  5318. SpecialMesh408.Scale = Vector3.new(0.5, 1, 0.25)
  5319. SpecialMesh408.MeshType = Enum.MeshType.Brick
  5320. Part409.Parent = Model0
  5321. Part409.CFrame = CFrame.new(-0.612716079, 3.04616904, -13.0423889, -0.999985635, -0.00162816129, -0.00510668149, -0.00513661886, 0.0189460143, 0.999807417, -0.00153109606, 0.999819279, -0.0189541057)
  5322. Part409.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5323. Part409.Position = Vector3.new(-0.612716079, 3.04616904, -13.0423889)
  5324. Part409.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5325. Part409.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5326. Part409.Velocity = Vector3.new(8.92959378e-08, 0.00246887235, 1.17344382e-06)
  5327. Part409.Size = Vector3.new(0.275000006, 0.35512504, 0.283374995)
  5328. Part409.Anchored = true
  5329. Part409.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5330. Part409.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5331. Part409.BrickColor = BrickColor.new("Really black")
  5332. Part409.CanCollide = false
  5333. Part409.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5334. Part409.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5335. Part409.Material = Enum.Material.Metal
  5336. Part409.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5337. Part409.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5338. Part409.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5339. Part409.brickColor = BrickColor.new("Really black")
  5340. SpecialMesh410.Parent = Part409
  5341. SpecialMesh410.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  5342. SpecialMesh410.MeshType = Enum.MeshType.Wedge
  5343. Part411.Parent = Model0
  5344. Part411.CFrame = CFrame.new(-0.614045858, 3.38228369, -13.3029222, 0.999985635, 0.00162801193, -0.00510688825, 0.00513682282, -0.0189459547, 0.999807417, 0.00153094309, -0.999819279, -0.0189540461)
  5345. Part411.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  5346. Part411.Position = Vector3.new(-0.614045858, 3.38228369, -13.3029222)
  5347. Part411.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  5348. Part411.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5349. Part411.Velocity = Vector3.new(3.59996903e-08, 0.00246832939, 4.73074152e-07)
  5350. Part411.Size = Vector3.new(0.275000006, 0.204125047, 0.287375003)
  5351. Part411.Anchored = true
  5352. Part411.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5353. Part411.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5354. Part411.BrickColor = BrickColor.new("Really black")
  5355. Part411.CanCollide = false
  5356. Part411.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5357. Part411.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5358. Part411.Material = Enum.Material.Metal
  5359. Part411.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5360. Part411.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5361. Part411.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5362. Part411.brickColor = BrickColor.new("Really black")
  5363. SpecialMesh412.Parent = Part411
  5364. SpecialMesh412.Scale = Vector3.new(0.5, 0.5, 0.5)
  5365. SpecialMesh412.MeshType = Enum.MeshType.Wedge
  5366. Part413.Parent = Model0
  5367. Part413.CFrame = CFrame.new(-0.609584808, 2.93011069, -14.6988583, -0.999985635, -0.00476218108, -0.00245960802, -0.00513651408, 0.720367968, 0.693573236, -0.00153109804, 0.693575919, -0.720382035)
  5368. Part413.Orientation = Vector3.new(-43.9099998, -179.800003, -0.409999996)
  5369. Part413.Position = Vector3.new(-0.609584808, 2.93011069, -14.6988583)
  5370. Part413.Rotation = Vector3.new(-136.089996, -0.140000001, 179.729996)
  5371. Part413.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5372. Part413.Velocity = Vector3.new(1.07698781e-07, 0.00246542133, 1.41527721e-06)
  5373. Part413.Size = Vector3.new(0.275000006, 0.484124899, 0.227375031)
  5374. Part413.Anchored = true
  5375. Part413.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5376. Part413.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5377. Part413.BrickColor = BrickColor.new("Really black")
  5378. Part413.CanCollide = false
  5379. Part413.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5380. Part413.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5381. Part413.Material = Enum.Material.Metal
  5382. Part413.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5383. Part413.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5384. Part413.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5385. Part413.brickColor = BrickColor.new("Really black")
  5386. SpecialMesh414.Parent = Part413
  5387. SpecialMesh414.Scale = Vector3.new(0.349999994, 0.300000012, 1)
  5388. SpecialMesh414.MeshType = Enum.MeshType.Brick
  5389. Part415.Parent = Model0
  5390. Part415.CFrame = CFrame.new(-0.606956184, 3.40465999, -18.0096188, 0.999985635, -0.0010395617, 0.00525854016, 0.00513699278, -0.0943568796, -0.99552542, 0.00153108896, 0.995537996, -0.094350189)
  5391. Part415.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  5392. Part415.Position = Vector3.new(-0.606956184, 3.40465999, -18.0096188)
  5393. Part415.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  5394. Part415.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5395. Part415.Velocity = Vector3.new(3.24515206e-08, 0.00245852303, 4.26448139e-07)
  5396. Part415.Size = Vector3.new(0.275000006, 1.46012485, 0.422374964)
  5397. Part415.Anchored = true
  5398. Part415.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5399. Part415.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5400. Part415.BrickColor = BrickColor.new("Really black")
  5401. Part415.CanCollide = false
  5402. Part415.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5403. Part415.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5404. Part415.Material = Enum.Material.Metal
  5405. Part415.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5406. Part415.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5407. Part415.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5408. Part415.brickColor = BrickColor.new("Really black")
  5409. SpecialMesh416.Parent = Part415
  5410. SpecialMesh416.Scale = Vector3.new(0.400000006, 1, 0.5)
  5411. SpecialMesh416.MeshType = Enum.MeshType.Brick
  5412. Part417.Parent = Model0
  5413. Part417.CFrame = CFrame.new(-0.613238811, 3.32843637, -13.6493177, -0.999985635, -0.00162807142, -0.00510653527, -0.00513647031, 0.0189459249, 0.999807417, -0.00153100933, 0.999819279, -0.0189540163)
  5414. Part417.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5415. Part417.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  5416. Part417.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5417. Part417.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5418. Part417.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  5419. Part417.Size = Vector3.new(0.275000006, 0.320124894, 0.316374987)
  5420. Part417.Anchored = true
  5421. Part417.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5422. Part417.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5423. Part417.BrickColor = BrickColor.new("Royal purple")
  5424. Part417.CanCollide = false
  5425. Part417.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5426. Part417.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5427. Part417.Material = Enum.Material.Neon
  5428. Part417.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5429. Part417.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5430. Part417.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5431. Part417.brickColor = BrickColor.new("Royal purple")
  5432. SpecialMesh418.Parent = Part417
  5433. SpecialMesh418.Scale = Vector3.new(0.457500011, 1, 1)
  5434. SpecialMesh418.MeshType = Enum.MeshType.Cylinder
  5435. Part419.Parent = Model0
  5436. Part419.CFrame = CFrame.new(-0.616606832, 3.19626212, -11.004673, -0.999985635, -0.000250895391, -0.00535403285, -0.00513659744, -0.24046874, 0.970643461, -0.001531007, 0.970656931, 0.240463987)
  5437. Part419.Orientation = Vector3.new(-76.0800018, -1.27999997, -178.779999)
  5438. Part419.Position = Vector3.new(-0.616606832, 3.19626212, -11.004673)
  5439. Part419.Rotation = Vector3.new(-76.0899963, -0.310000002, 179.98999)
  5440. Part419.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5441. Part419.Velocity = Vector3.new(6.54963515e-08, 0.00247311778, 8.606915e-07)
  5442. Part419.Size = Vector3.new(0.275000006, 0.418250024, 0.25)
  5443. Part419.Anchored = true
  5444. Part419.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5445. Part419.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5446. Part419.BrickColor = BrickColor.new("Really black")
  5447. Part419.CanCollide = false
  5448. Part419.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5449. Part419.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5450. Part419.Material = Enum.Material.Metal
  5451. Part419.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5452. Part419.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5453. Part419.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5454. Part419.brickColor = BrickColor.new("Really black")
  5455. SpecialMesh420.Parent = Part419
  5456. SpecialMesh420.Scale = Vector3.new(0.5, 1, 0.25)
  5457. SpecialMesh420.MeshType = Enum.MeshType.Brick
  5458. Part421.Parent = Model0
  5459. Part421.CFrame = CFrame.new(-0.610599458, 3.09770298, -14.5984182, -0.999985635, 0.00510674436, -0.0016279578, -0.00513667939, -0.999807417, 0.0189470276, -0.00153088616, 0.018955119, 0.999819279)
  5460. Part421.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  5461. Part421.Position = Vector3.new(-0.610599458, 3.09770298, -14.5984182)
  5462. Part421.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  5463. Part421.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5464. Part421.Velocity = Vector3.new(8.1124405e-08, 0.00246563042, 1.06606149e-06)
  5465. Part421.Size = Vector3.new(0.275000006, 0.200124964, 0.287375033)
  5466. Part421.Anchored = true
  5467. Part421.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5468. Part421.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5469. Part421.BrickColor = BrickColor.new("Institutional white")
  5470. Part421.CanCollide = false
  5471. Part421.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5472. Part421.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5473. Part421.Material = Enum.Material.Metal
  5474. Part421.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5475. Part421.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5476. Part421.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5477. Part421.brickColor = BrickColor.new("Institutional white")
  5478. SpecialMesh422.Parent = Part421
  5479. SpecialMesh422.Scale = Vector3.new(0.560000002, 1, 0.899999976)
  5480. SpecialMesh422.MeshType = Enum.MeshType.Wedge
  5481. Part423.Parent = Model0
  5482. Part423.CFrame = CFrame.new(-0.608857095, 2.56135106, -13.9388657, -0.999985635, -0.00289438874, -0.00451127253, -0.00513661513, 0.277069688, 0.960836291, -0.00153109606, 0.96084559, -0.277080595)
  5483. Part423.Orientation = Vector3.new(-73.909996, -179.069992, -1.05999994)
  5484. Part423.Position = Vector3.new(-0.608857095, 2.56135106, -13.9388657)
  5485. Part423.Rotation = Vector3.new(-106.089996, -0.25999999, 179.830002)
  5486. Part423.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5487. Part423.Velocity = Vector3.new(1.66171404e-07, 0.00246700505, 2.18366995e-06)
  5488. Part423.Size = Vector3.new(0.275000006, 0.409124941, 0.360375017)
  5489. Part423.Anchored = true
  5490. Part423.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5491. Part423.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5492. Part423.BrickColor = BrickColor.new("Really black")
  5493. Part423.CanCollide = false
  5494. Part423.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5495. Part423.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5496. Part423.Material = Enum.Material.Metal
  5497. Part423.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5498. Part423.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5499. Part423.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5500. Part423.brickColor = BrickColor.new("Really black")
  5501. SpecialMesh424.Parent = Part423
  5502. SpecialMesh424.Scale = Vector3.new(0.349999994, 1, 1)
  5503. SpecialMesh424.MeshType = Enum.MeshType.Brick
  5504. Part425.Parent = Model0
  5505. Part425.CFrame = CFrame.new(-0.610883415, 2.94288707, -13.8941879, -0.999985635, -0.00162807154, -0.00510650687, -0.00513644237, 0.0189459547, 0.999807417, -0.00153100991, 0.999819279, -0.0189540461)
  5506. Part425.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5507. Part425.Position = Vector3.new(-0.610883415, 2.94288707, -13.8941879)
  5508. Part425.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5509. Part425.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5510. Part425.Velocity = Vector3.new(1.05672896e-07, 0.00246709795, 1.38865482e-06)
  5511. Part425.Size = Vector3.new(0.275000006, 0.228, 0.213375002)
  5512. Part425.Anchored = true
  5513. Part425.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5514. Part425.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5515. Part425.BrickColor = BrickColor.new("Really black")
  5516. Part425.CanCollide = false
  5517. Part425.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5518. Part425.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5519. Part425.Material = Enum.Material.Metal
  5520. Part425.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5521. Part425.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5522. Part425.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5523. Part425.brickColor = BrickColor.new("Really black")
  5524. SpecialMesh426.Parent = Part425
  5525. SpecialMesh426.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  5526. SpecialMesh426.MeshType = Enum.MeshType.Wedge
  5527. Part427.Parent = Model0
  5528. Part427.CFrame = CFrame.new(-0.612252593, 3.11727381, -13.584939, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  5529. Part427.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5530. Part427.Position = Vector3.new(-0.612252593, 3.11727381, -13.584939)
  5531. Part427.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5532. Part427.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5533. Part427.Velocity = Vector3.new(7.80211593e-08, 0.00246774196, 1.02528122e-06)
  5534. Part427.Size = Vector3.new(0.275000006, 0.398124993, 0.303375006)
  5535. Part427.Anchored = true
  5536. Part427.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5537. Part427.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5538. Part427.BrickColor = BrickColor.new("Really black")
  5539. Part427.CanCollide = false
  5540. Part427.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5541. Part427.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5542. Part427.Material = Enum.Material.Metal
  5543. Part427.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5544. Part427.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5545. Part427.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5546. Part427.brickColor = BrickColor.new("Really black")
  5547. SpecialMesh428.Parent = Part427
  5548. SpecialMesh428.Scale = Vector3.new(0.5, 1, 1)
  5549. SpecialMesh428.MeshType = Enum.MeshType.Brick
  5550. Part429.Parent = Model0
  5551. Part429.CFrame = CFrame.new(-0.612551332, 3.35195827, -14.1766062, 0.999985635, 0.0047621401, -0.00246015727, 0.00513686566, -0.720367908, 0.693573296, 0.00153067405, -0.693575978, -0.720381975)
  5552. Part429.Orientation = Vector3.new(-43.9099998, -179.800003, 179.589996)
  5553. Part429.Position = Vector3.new(-0.612551332, 3.35195827, -14.1766062)
  5554. Part429.Rotation = Vector3.new(-136.089996, -0.140000001, -0.269999981)
  5555. Part429.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5556. Part429.Velocity = Vector3.new(4.08082492e-08, 0.00246650912, 5.36263883e-07)
  5557. Part429.Size = Vector3.new(0.275000006, 0.331124961, 0.412375003)
  5558. Part429.Anchored = true
  5559. Part429.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5560. Part429.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5561. Part429.BrickColor = BrickColor.new("Really black")
  5562. Part429.CanCollide = false
  5563. Part429.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5564. Part429.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5565. Part429.Material = Enum.Material.Metal
  5566. Part429.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5567. Part429.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5568. Part429.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5569. Part429.brickColor = BrickColor.new("Really black")
  5570. SpecialMesh430.Parent = Part429
  5571. SpecialMesh430.Scale = Vector3.new(0.5, 1.04999995, 0.5)
  5572. SpecialMesh430.MeshType = Enum.MeshType.Brick
  5573. Part431.Parent = Model0
  5574. Part431.CFrame = CFrame.new(-0.578086436, 2.53643656, -13.5418949, -0.00476215873, 0.999985635, -0.00245991186, 0.72036773, 0.00513670826, 0.693573475, 0.693576157, 0.00153086532, -0.720381796)
  5575. Part431.Orientation = Vector3.new(-43.9099998, -179.800003, 89.5899963)
  5576. Part431.Position = Vector3.new(-0.578086436, 2.53643656, -13.5418949)
  5577. Part431.Rotation = Vector3.new(-136.089996, -0.140000001, -90.2699966)
  5578. Part431.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5579. Part431.Velocity = Vector3.new(1.70122007e-07, 0.00246783718, 2.23558482e-06)
  5580. Part431.Size = Vector3.new(0.421999991, 0.200000003, 0.280375004)
  5581. Part431.Anchored = true
  5582. Part431.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5583. Part431.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5584. Part431.BrickColor = BrickColor.new("Royal purple")
  5585. Part431.CanCollide = false
  5586. Part431.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5587. Part431.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5588. Part431.Material = Enum.Material.Neon
  5589. Part431.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5590. Part431.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5591. Part431.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5592. Part431.brickColor = BrickColor.new("Royal purple")
  5593. SpecialMesh432.Parent = Part431
  5594. SpecialMesh432.Scale = Vector3.new(1, 0.300000012, 0.5)
  5595. SpecialMesh432.MeshType = Enum.MeshType.Wedge
  5596. Part433.Parent = Model0
  5597. Part433.CFrame = CFrame.new(-0.647041559, 3.82817221, -13.658843, -0.00162801228, -0.999985635, 0.00510653481, 0.0189460143, -0.00513646938, -0.999807417, 0.999819279, -0.00153094972, 0.0189541057)
  5598. Part433.Orientation = Vector3.new(88.8799973, 15.0799999, 105.169998)
  5599. Part433.Position = Vector3.new(-0.647041559, 3.82817221, -13.658843)
  5600. Part433.Rotation = Vector3.new(88.909996, 0.289999992, 90.0899963)
  5601. Part433.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5602. Part433.Velocity = Vector3.new(-3.47029321e-08, 0.00246758247, -4.56033831e-07)
  5603. Part433.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  5604. Part433.Anchored = true
  5605. Part433.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5606. Part433.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5607. Part433.BrickColor = BrickColor.new("Royal purple")
  5608. Part433.CanCollide = false
  5609. Part433.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5610. Part433.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5611. Part433.Material = Enum.Material.Neon
  5612. Part433.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5613. Part433.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5614. Part433.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5615. Part433.brickColor = BrickColor.new("Royal purple")
  5616. SpecialMesh434.Parent = Part433
  5617. SpecialMesh434.Scale = Vector3.new(1, 0.300000012, 0.5)
  5618. SpecialMesh434.MeshType = Enum.MeshType.Wedge
  5619. Part435.Parent = Model0
  5620. Part435.CFrame = CFrame.new(-0.610847712, 3.10699439, -14.4674244, 0.999985635, 0.00345827825, -0.00409521349, 0.00513684051, -0.400113374, 0.916451454, 0.00153079373, -0.916459262, -0.400125414)
  5621. Part435.Orientation = Vector3.new(-66.409996, -179.409988, 179.259995)
  5622. Part435.Position = Vector3.new(-0.610847712, 3.10699439, -14.4674244)
  5623. Part435.Rotation = Vector3.new(-113.589996, -0.229999989, -0.199999988)
  5624. Part435.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5625. Part435.Velocity = Vector3.new(7.96511017e-08, 0.00246590329, 1.04670062e-06)
  5626. Part435.Size = Vector3.new(0.275000006, 0.23712492, 0.375375003)
  5627. Part435.Anchored = true
  5628. Part435.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5629. Part435.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5630. Part435.BrickColor = BrickColor.new("Royal purple")
  5631. Part435.CanCollide = false
  5632. Part435.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5633. Part435.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5634. Part435.Material = Enum.Material.Neon
  5635. Part435.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5636. Part435.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5637. Part435.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5638. Part435.brickColor = BrickColor.new("Royal purple")
  5639. SpecialMesh436.Parent = Part435
  5640. SpecialMesh436.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  5641. SpecialMesh436.MeshType = Enum.MeshType.Brick
  5642. Part437.Parent = Model0
  5643. Part437.CFrame = CFrame.new(-0.583012402, 3.6639781, -14.1030874, 0.00476215919, 0.999985635, 0.00246015075, -0.720367849, 0.0051368745, -0.693573356, -0.693576038, 0.00153069268, 0.720381975)
  5644. Part437.Orientation = Vector3.new(43.9099998, 0.199999988, -89.5899963)
  5645. Part437.Position = Vector3.new(-0.583012402, 3.6639781, -14.1030874)
  5646. Part437.Rotation = Vector3.new(43.9099998, 0.140000001, -89.7299957)
  5647. Part437.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5648. Part437.Velocity = Vector3.new(-8.66738503e-09, 0.00246666698, -1.13898864e-07)
  5649. Part437.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  5650. Part437.Anchored = true
  5651. Part437.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5652. Part437.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5653. Part437.BrickColor = BrickColor.new("Royal purple")
  5654. Part437.CanCollide = false
  5655. Part437.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5656. Part437.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5657. Part437.Material = Enum.Material.Neon
  5658. Part437.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5659. Part437.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5660. Part437.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5661. Part437.brickColor = BrickColor.new("Royal purple")
  5662. SpecialMesh438.Parent = Part437
  5663. SpecialMesh438.Scale = Vector3.new(1, 0.300000012, 0.5)
  5664. SpecialMesh438.MeshType = Enum.MeshType.Wedge
  5665. Part439.Parent = Model0
  5666. Part439.CFrame = CFrame.new(-0.609243929, 2.84955072, -14.6524963, -0.999985635, -0.00162816211, -0.00510652829, -0.00513646565, 0.0189461932, 0.999807417, -0.00153109885, 0.999819279, -0.0189542845)
  5667. Part439.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5668. Part439.Position = Vector3.new(-0.609243929, 2.84955072, -14.6524963)
  5669. Part439.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5670. Part439.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5671. Part439.Velocity = Vector3.new(1.20472833e-07, 0.00246551796, 1.58314185e-06)
  5672. Part439.Size = Vector3.new(0.275000006, 0.287124902, 0.227375031)
  5673. Part439.Anchored = true
  5674. Part439.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5675. Part439.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5676. Part439.BrickColor = BrickColor.new("Really black")
  5677. Part439.CanCollide = false
  5678. Part439.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5679. Part439.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5680. Part439.Material = Enum.Material.Metal
  5681. Part439.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5682. Part439.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5683. Part439.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5684. Part439.brickColor = BrickColor.new("Really black")
  5685. SpecialMesh440.Parent = Part439
  5686. SpecialMesh440.Scale = Vector3.new(0.349999994, 1, 1)
  5687. SpecialMesh440.MeshType = Enum.MeshType.Brick
  5688. Part441.Parent = Model0
  5689. Part441.CFrame = CFrame.new(-0.610548377, 2.83942795, -13.765955, -0.999985635, -0.00162816129, -0.00510662561, -0.00513656298, 0.0189460143, 0.999807417, -0.00153109711, 0.999819279, -0.0189541057)
  5690. Part441.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5691. Part441.Position = Vector3.new(-0.610548377, 2.83942795, -13.765955)
  5692. Part441.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5693. Part441.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5694. Part441.Velocity = Vector3.new(1.22077964e-07, 0.002467365, 1.60423497e-06)
  5695. Part441.Size = Vector3.new(0.275000006, 0.304124922, 0.267374992)
  5696. Part441.Anchored = true
  5697. Part441.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5698. Part441.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5699. Part441.BrickColor = BrickColor.new("Really black")
  5700. Part441.CanCollide = false
  5701. Part441.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5702. Part441.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5703. Part441.Material = Enum.Material.Metal
  5704. Part441.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5705. Part441.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5706. Part441.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5707. Part441.brickColor = BrickColor.new("Really black")
  5708. SpecialMesh442.Parent = Part441
  5709. SpecialMesh442.Scale = Vector3.new(0.495000005, 1, 1)
  5710. SpecialMesh442.MeshType = Enum.MeshType.Wedge
  5711. Part443.Parent = Model0
  5712. Part443.CFrame = CFrame.new(-0.584542513, 3.82849336, -13.6587467, 0.00162807188, 0.999985635, 0.00510653481, -0.0189460143, 0.00513647031, -0.999807417, -0.999819279, 0.00153100933, 0.0189541057)
  5713. Part443.Orientation = Vector3.new(88.8799973, 15.0799999, -74.8300018)
  5714. Part443.Position = Vector3.new(-0.584542513, 3.82849336, -13.6587467)
  5715. Part443.Rotation = Vector3.new(88.909996, 0.289999992, -89.909996)
  5716. Part443.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5717. Part443.Velocity = Vector3.new(-3.47538496e-08, 0.00246759271, -4.56702992e-07)
  5718. Part443.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  5719. Part443.Anchored = true
  5720. Part443.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5721. Part443.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5722. Part443.BrickColor = BrickColor.new("Royal purple")
  5723. Part443.CanCollide = false
  5724. Part443.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5725. Part443.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5726. Part443.Material = Enum.Material.Neon
  5727. Part443.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5728. Part443.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5729. Part443.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5730. Part443.brickColor = BrickColor.new("Royal purple")
  5731. SpecialMesh444.Parent = Part443
  5732. SpecialMesh444.Scale = Vector3.new(1, 0.300000012, 0.5)
  5733. SpecialMesh444.MeshType = Enum.MeshType.Wedge
  5734. Part445.Parent = Model0
  5735. Part445.CFrame = CFrame.new(-0.618139863, 3.39627433, -10.6743059, 0.999985635, -0.0024899696, 0.00474630948, 0.00513651408, 0.192273051, -0.981328189, 0.00153088931, 0.981338441, 0.192283079)
  5736. Part445.Orientation = Vector3.new(78.909996, 1.40999997, 1.52999997)
  5737. Part445.Position = Vector3.new(-0.618139863, 3.39627433, -10.6743059)
  5738. Part445.Rotation = Vector3.new(78.909996, 0.269999981, 0.140000001)
  5739. Part445.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5740. Part445.Velocity = Vector3.new(3.37812835e-08, 0.00247380603, 4.43921522e-07)
  5741. Part445.Size = Vector3.new(0.275000006, 0.28125, 0.234375)
  5742. Part445.Anchored = true
  5743. Part445.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5744. Part445.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5745. Part445.BrickColor = BrickColor.new("Really black")
  5746. Part445.CanCollide = false
  5747. Part445.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5748. Part445.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5749. Part445.Material = Enum.Material.Metal
  5750. Part445.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5751. Part445.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5752. Part445.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5753. Part445.brickColor = BrickColor.new("Really black")
  5754. SpecialMesh446.Parent = Part445
  5755. SpecialMesh446.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  5756. SpecialMesh446.MeshType = Enum.MeshType.Brick
  5757. Part447.Parent = Model0
  5758. Part447.CFrame = CFrame.new(-0.612165928, 3.04279852, -13.3917465, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  5759. Part447.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5760. Part447.Position = Vector3.new(-0.612165928, 3.04279852, -13.3917465)
  5761. Part447.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5762. Part447.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5763. Part447.Velocity = Vector3.new(8.98303796e-08, 0.00246814452, 1.18046705e-06)
  5764. Part447.Size = Vector3.new(0.275000006, 0.577124953, 0.303375006)
  5765. Part447.Anchored = true
  5766. Part447.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5767. Part447.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5768. Part447.BrickColor = BrickColor.new("Really black")
  5769. Part447.CanCollide = false
  5770. Part447.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5771. Part447.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5772. Part447.Material = Enum.Material.Metal
  5773. Part447.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5774. Part447.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5775. Part447.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5776. Part447.brickColor = BrickColor.new("Really black")
  5777. SpecialMesh448.Parent = Part447
  5778. SpecialMesh448.Scale = Vector3.new(0.400000006, 0.870000005, 0.5)
  5779. SpecialMesh448.MeshType = Enum.MeshType.Brick
  5780. Part449.Parent = Model0
  5781. Part449.CFrame = CFrame.new(-0.576728344, 2.5984447, -14.6364422, 0.00114334025, 0.999985635, -0.00523668947, -0.483495861, 0.00513671385, 0.8753317, 0.875346005, 0.00153111527, 0.483494759)
  5782. Part449.Orientation = Vector3.new(-61.079998, -0.620000005, -89.3899994)
  5783. Part449.Position = Vector3.new(-0.576728344, 2.5984447, -14.6364422)
  5784. Part449.Rotation = Vector3.new(-61.0900002, -0.299999982, -89.9300003)
  5785. Part449.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5786. Part449.Velocity = Vector3.new(1.6028963e-07, 0.00246555661, 2.10637722e-06)
  5787. Part449.Size = Vector3.new(0.423000038, 0.200000003, 0.280375004)
  5788. Part449.Anchored = true
  5789. Part449.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5790. Part449.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5791. Part449.BrickColor = BrickColor.new("Royal purple")
  5792. Part449.CanCollide = false
  5793. Part449.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5794. Part449.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5795. Part449.Material = Enum.Material.Neon
  5796. Part449.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5797. Part449.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5798. Part449.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5799. Part449.brickColor = BrickColor.new("Royal purple")
  5800. SpecialMesh450.Parent = Part449
  5801. SpecialMesh450.Scale = Vector3.new(1, 0.300000012, 0.5)
  5802. SpecialMesh450.MeshType = Enum.MeshType.Wedge
  5803. Part451.Parent = Model0
  5804. Part451.CFrame = CFrame.new(-0.611472607, 3.24456573, -14.520874, -0.999985635, 0.000250921701, 0.00535428664, -0.00513683865, 0.240468413, -0.970643461, -0.00153109187, -0.970656991, -0.240463659)
  5805. Part451.Orientation = Vector3.new(76.0800018, 178.720001, -1.22000003)
  5806. Part451.Position = Vector3.new(-0.611472607, 3.24456573, -14.520874)
  5807. Part451.Rotation = Vector3.new(103.909996, 0.310000002, -179.98999)
  5808. Part451.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5809. Part451.Velocity = Vector3.new(5.78370134e-08, 0.002465792, 7.60040166e-07)
  5810. Part451.Size = Vector3.new(0.275000006, 0.221124932, 0.408374965)
  5811. Part451.Anchored = true
  5812. Part451.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5813. Part451.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5814. Part451.BrickColor = BrickColor.new("Really black")
  5815. Part451.CanCollide = false
  5816. Part451.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5817. Part451.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5818. Part451.Material = Enum.Material.Metal
  5819. Part451.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5820. Part451.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5821. Part451.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5822. Part451.brickColor = BrickColor.new("Really black")
  5823. SpecialMesh452.Parent = Part451
  5824. SpecialMesh452.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  5825. SpecialMesh452.MeshType = Enum.MeshType.Brick
  5826. Part453.Parent = Model0
  5827. Part453.CFrame = CFrame.new(-0.610993803, 3.15083313, -14.5190973, 0.999985635, 0.00289416499, -0.00451159757, 0.00513686473, -0.2770693, 0.960836351, 0.00153079326, -0.960845709, -0.277080178)
  5828. Part453.Orientation = Vector3.new(-73.909996, -179.069992, 178.940002)
  5829. Part453.Position = Vector3.new(-0.610993803, 3.15083313, -14.5190973)
  5830. Part453.Rotation = Vector3.new(-106.089996, -0.25999999, -0.170000002)
  5831. Part453.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5832. Part453.Velocity = Vector3.new(7.26997911e-08, 0.00246579573, 9.55352903e-07)
  5833. Part453.Size = Vector3.new(0.275000006, 0.221124932, 0.408374965)
  5834. Part453.Anchored = true
  5835. Part453.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5836. Part453.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5837. Part453.BrickColor = BrickColor.new("Really black")
  5838. Part453.CanCollide = false
  5839. Part453.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5840. Part453.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5841. Part453.Material = Enum.Material.Metal
  5842. Part453.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5843. Part453.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5844. Part453.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5845. Part453.brickColor = BrickColor.new("Really black")
  5846. SpecialMesh454.Parent = Part453
  5847. SpecialMesh454.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  5848. SpecialMesh454.MeshType = Enum.MeshType.Brick
  5849. Part455.Parent = Model0
  5850. Part455.CFrame = CFrame.new(-0.609657764, 2.72515392, -13.9643335, -0.999985635, -0.00162816129, -0.00510662561, -0.00513656298, 0.0189460143, 0.999807417, -0.00153109711, 0.999819279, -0.0189541057)
  5851. Part455.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5852. Part455.Position = Vector3.new(-0.609657764, 2.72515392, -13.9643335)
  5853. Part455.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5854. Part455.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5855. Part455.Velocity = Vector3.new(1.40197898e-07, 0.00246695196, 1.84235034e-06)
  5856. Part455.Size = Vector3.new(0.275000006, 0.330124915, 0.226374999)
  5857. Part455.Anchored = true
  5858. Part455.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5859. Part455.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5860. Part455.BrickColor = BrickColor.new("Really black")
  5861. Part455.CanCollide = false
  5862. Part455.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5863. Part455.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5864. Part455.Material = Enum.Material.Glass
  5865. Part455.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5866. Part455.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5867. Part455.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5868. Part455.brickColor = BrickColor.new("Really black")
  5869. SpecialMesh456.Parent = Part455
  5870. SpecialMesh456.Scale = Vector3.new(0.400000006, 1, 1)
  5871. SpecialMesh456.MeshType = Enum.MeshType.Brick
  5872. Part457.Parent = Model0
  5873. Part457.CFrame = CFrame.new(-0.577368915, 2.78939152, -14.8586674, 0.00361127499, 0.999985635, -0.00396134611, -0.85638535, 0.00513800606, 0.516312063, 0.516324997, 0.00152789324, 0.856391609)
  5874. Part457.Orientation = Vector3.new(-31.0900002, -0.269999981, -89.659996)
  5875. Part457.Position = Vector3.new(-0.577368915, 2.78939152, -14.8586674)
  5876. Part457.Rotation = Vector3.new(-31.0900002, -0.229999989, -89.7900009)
  5877. Part457.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5878. Part457.Velocity = Vector3.new(1.30012012e-07, 0.00246509351, 1.70849694e-06)
  5879. Part457.Size = Vector3.new(0.293000042, 0.200000003, 0.280375004)
  5880. Part457.Anchored = true
  5881. Part457.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5882. Part457.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5883. Part457.BrickColor = BrickColor.new("Royal purple")
  5884. Part457.CanCollide = false
  5885. Part457.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5886. Part457.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5887. Part457.Material = Enum.Material.Neon
  5888. Part457.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5889. Part457.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5890. Part457.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5891. Part457.brickColor = BrickColor.new("Royal purple")
  5892. SpecialMesh458.Parent = Part457
  5893. SpecialMesh458.Scale = Vector3.new(1, 0.300000012, 0.5)
  5894. SpecialMesh458.MeshType = Enum.MeshType.Wedge
  5895. Part459.Parent = Model0
  5896. Part459.CFrame = CFrame.new(-0.611768007, 3.29040194, -14.4816895, -0.999985635, -0.00045009004, 0.00534120994, -0.00513681443, 0.36510545, -0.930952132, -0.00153109233, -0.930966198, -0.3651025)
  5897. Part459.Orientation = Vector3.new(68.5800018, 179.159988, -0.810000002)
  5898. Part459.Position = Vector3.new(-0.611768007, 3.29040194, -14.4816895)
  5899. Part459.Rotation = Vector3.new(111.409996, 0.310000002, 179.970001)
  5900. Part459.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5901. Part459.Velocity = Vector3.new(5.05689677e-08, 0.00246587349, 6.64530262e-07)
  5902. Part459.Size = Vector3.new(0.275000006, 0.238124937, 0.381375015)
  5903. Part459.Anchored = true
  5904. Part459.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5905. Part459.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5906. Part459.BrickColor = BrickColor.new("Royal purple")
  5907. Part459.CanCollide = false
  5908. Part459.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5909. Part459.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5910. Part459.Material = Enum.Material.Neon
  5911. Part459.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5912. Part459.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5913. Part459.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5914. Part459.brickColor = BrickColor.new("Royal purple")
  5915. SpecialMesh460.Parent = Part459
  5916. SpecialMesh460.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  5917. SpecialMesh460.MeshType = Enum.MeshType.Brick
  5918. Part461.Parent = Model0
  5919. Part461.CFrame = CFrame.new(-0.605971158, 3.45052385, -18.8064079, -0.999985635, 0.00474059395, 0.00250087585, -0.00513641909, -0.714288056, -0.699833155, -0.00153127871, -0.699835896, 0.714302182)
  5920. Part461.Orientation = Vector3.new(44.4099998, 0.199999988, -179.589996)
  5921. Part461.Position = Vector3.new(-0.605971158, 3.45052385, -18.8064079)
  5922. Part461.Rotation = Vector3.new(44.4099998, 0.140000001, -179.729996)
  5923. Part461.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5924. Part461.Velocity = Vector3.new(2.51790748e-08, 0.00245686295, 3.30880596e-07)
  5925. Part461.Size = Vector3.new(0.275000006, 0.235124931, 0.586375237)
  5926. Part461.Anchored = true
  5927. Part461.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5928. Part461.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5929. Part461.BrickColor = BrickColor.new("Really black")
  5930. Part461.CanCollide = false
  5931. Part461.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5932. Part461.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5933. Part461.Material = Enum.Material.Metal
  5934. Part461.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5935. Part461.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5936. Part461.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5937. Part461.brickColor = BrickColor.new("Really black")
  5938. SpecialMesh462.Parent = Part461
  5939. SpecialMesh462.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  5940. SpecialMesh462.MeshType = Enum.MeshType.Brick
  5941. Part463.Parent = Model0
  5942. Part463.CFrame = CFrame.new(-0.610880256, 2.96906447, -13.9840736, -0.999985635, -0.00162807154, -0.00510650687, -0.00513644237, 0.0189459547, 0.999807417, -0.00153100991, 0.999819279, -0.0189540461)
  5943. Part463.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5944. Part463.Position = Vector3.new(-0.610880256, 2.96906447, -13.9840736)
  5945. Part463.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5946. Part463.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5947. Part463.Velocity = Vector3.new(1.01522062e-07, 0.00246691052, 1.33410845e-06)
  5948. Part463.Size = Vector3.new(0.275000006, 0.239124984, 0.303375006)
  5949. Part463.Anchored = true
  5950. Part463.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5951. Part463.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5952. Part463.BrickColor = BrickColor.new("Really black")
  5953. Part463.CanCollide = false
  5954. Part463.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5955. Part463.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5956. Part463.Material = Enum.Material.Glass
  5957. Part463.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5958. Part463.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5959. Part463.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5960. Part463.brickColor = BrickColor.new("Really black")
  5961. SpecialMesh464.Parent = Part463
  5962. SpecialMesh464.Scale = Vector3.new(0.524999976, 1, 1)
  5963. SpecialMesh464.MeshType = Enum.MeshType.Brick
  5964. Part465.Parent = Model0
  5965. Part465.CFrame = CFrame.new(-0.63922745, 2.59812379, -14.6365376, -0.00114342954, -0.999985635, -0.00523668341, 0.483495861, -0.00513675157, 0.8753317, -0.875346065, -0.00153103401, 0.483494759)
  5966. Part465.Orientation = Vector3.new(-61.079998, -0.620000005, 90.6100006)
  5967. Part465.Position = Vector3.new(-0.63922745, 2.59812379, -14.6365376)
  5968. Part465.Rotation = Vector3.new(-61.0900002, -0.299999982, 90.0699997)
  5969. Part465.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5970. Part465.Velocity = Vector3.new(1.6034052e-07, 0.0024655466, 2.10704593e-06)
  5971. Part465.Size = Vector3.new(0.423000038, 0.200000003, 0.280375004)
  5972. Part465.Anchored = true
  5973. Part465.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5974. Part465.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5975. Part465.BrickColor = BrickColor.new("Royal purple")
  5976. Part465.CanCollide = false
  5977. Part465.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5978. Part465.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5979. Part465.Material = Enum.Material.Neon
  5980. Part465.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5981. Part465.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5982. Part465.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5983. Part465.brickColor = BrickColor.new("Royal purple")
  5984. SpecialMesh466.Parent = Part465
  5985. SpecialMesh466.Scale = Vector3.new(1, 0.300000012, 0.5)
  5986. SpecialMesh466.MeshType = Enum.MeshType.Wedge
  5987. Part467.Parent = Model0
  5988. Part467.CFrame = CFrame.new(-0.63986814, 2.78907037, -14.8587627, -0.0036113495, -0.999985635, -0.00396139733, 0.85638535, -0.00513809687, 0.516312063, -0.516324997, -0.0015278986, 0.856391549)
  5989. Part467.Orientation = Vector3.new(-31.0900002, -0.269999981, 90.3399963)
  5990. Part467.Position = Vector3.new(-0.63986814, 2.78907037, -14.8587627)
  5991. Part467.Rotation = Vector3.new(-31.0900002, -0.229999989, 90.2099991)
  5992. Part467.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5993. Part467.Velocity = Vector3.new(1.30062929e-07, 0.00246508326, 1.70916621e-06)
  5994. Part467.Size = Vector3.new(0.293000042, 0.200000003, 0.280375004)
  5995. Part467.Anchored = true
  5996. Part467.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5997. Part467.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5998. Part467.BrickColor = BrickColor.new("Royal purple")
  5999. Part467.CanCollide = false
  6000. Part467.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6001. Part467.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6002. Part467.Material = Enum.Material.Neon
  6003. Part467.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6004. Part467.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6005. Part467.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6006. Part467.brickColor = BrickColor.new("Royal purple")
  6007. SpecialMesh468.Parent = Part467
  6008. SpecialMesh468.Scale = Vector3.new(1, 0.300000012, 0.5)
  6009. SpecialMesh468.MeshType = Enum.MeshType.Wedge
  6010. Part469.Parent = Model0
  6011. Part469.CFrame = CFrame.new(-0.610184669, 2.95239902, -14.3818283, 0.999985635, 0.00162795268, -0.00510686403, 0.0051367972, -0.0189460143, 0.999807417, 0.00153088395, -0.999819279, -0.0189541057)
  6012. Part469.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  6013. Part469.Position = Vector3.new(-0.610184669, 2.95239902, -14.3818283)
  6014. Part469.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  6015. Part469.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6016. Part469.Velocity = Vector3.new(1.04164627e-07, 0.00246608187, 1.36883455e-06)
  6017. Part469.Size = Vector3.new(0.275000006, 0.410999984, 0.469375014)
  6018. Part469.Anchored = true
  6019. Part469.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6020. Part469.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6021. Part469.BrickColor = BrickColor.new("Really black")
  6022. Part469.CanCollide = false
  6023. Part469.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6024. Part469.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6025. Part469.Material = Enum.Material.Glass
  6026. Part469.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6027. Part469.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6028. Part469.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6029. Part469.brickColor = BrickColor.new("Really black")
  6030. SpecialMesh470.Parent = Part469
  6031. SpecialMesh470.Scale = Vector3.new(0.5, 0.850000024, 0.699999988)
  6032. SpecialMesh470.MeshType = Enum.MeshType.Brick
  6033. Part471.Parent = Model0
  6034. Part471.CFrame = CFrame.new(-0.613238811, 3.32843637, -13.6493177, -0.999985635, -0.00162807142, -0.00510653527, -0.00513647031, 0.0189459249, 0.999807417, -0.00153100933, 0.999819279, -0.0189540163)
  6035. Part471.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  6036. Part471.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  6037. Part471.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  6038. Part471.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6039. Part471.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  6040. Part471.Size = Vector3.new(0.275000006, 0.698124886, 0.638374984)
  6041. Part471.Anchored = true
  6042. Part471.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6043. Part471.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6044. Part471.BrickColor = BrickColor.new("Really black")
  6045. Part471.CanCollide = false
  6046. Part471.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6047. Part471.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6048. Part471.Material = Enum.Material.Glass
  6049. Part471.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6050. Part471.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6051. Part471.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6052. Part471.brickColor = BrickColor.new("Really black")
  6053.  
  6054. game:GetService("Players").LocalPlayer.Character["SamuraiHat"].Handle.att1_Handle.Parent = Part471
  6055. Part471.att1_Handle.Rotation = Vector3.new(-270,-90,-990)
  6056. Part471.att1_Handle.Position = Vector3.new(0,-4,0)
  6057.  
  6058. SpecialMesh472.Parent = Part471
  6059. SpecialMesh472.Scale = Vector3.new(0.449999988, 1, 1)
  6060. SpecialMesh472.MeshType = Enum.MeshType.Cylinder
  6061. Part473.Parent = Model0
  6062. Part473.CFrame = CFrame.new(-0.618369102, 3.23987865, -11.0925436, 0.999985635, 0.00162807235, -0.00510680024, 0.0051367362, -0.0189461038, 0.999807417, 0.00153100432, -0.999819279, -0.0189541951)
  6063. Part473.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  6064. Part473.Position = Vector3.new(-0.618369102, 3.23987865, -11.0925436)
  6065. Part473.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  6066. Part473.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6067. Part473.Velocity = Vector3.new(5.85802624e-08, 0.00247293455, 7.69806775e-07)
  6068. Part473.Size = Vector3.new(0.25999999, 0.578125, 0.21875)
  6069. Part473.Anchored = true
  6070. Part473.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6071. Part473.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6072. Part473.BrickColor = BrickColor.new("Really black")
  6073. Part473.CanCollide = false
  6074. Part473.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6075. Part473.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6076. Part473.Material = Enum.Material.Metal
  6077. Part473.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6078. Part473.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6079. Part473.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6080. Part473.brickColor = BrickColor.new("Really black")
  6081.  
  6082. game:GetService("Players").LocalPlayer.Character["PogoStick"].Handle.att1_Handle.Parent = Part473
  6083. Part473.att1_Handle.Rotation = Vector3.new(-90,90,-50)
  6084. Part473.att1_Handle.Position = Vector3.new(0,2,0.3)
  6085.  
  6086. SpecialMesh474.Parent = Part473
  6087. SpecialMesh474.Scale = Vector3.new(0.300000012, 1, 1)
  6088. SpecialMesh474.MeshType = Enum.MeshType.Wedge
  6089. Part475.Name = "TrueHandle"
  6090. Part475.Parent = Model0
  6091. Part475.CFrame = CFrame.new(-0.615642607, 3.34541011, -12.1349049, -0.999985635, -0.00162807154, -0.00510656228, -0.00513649778, 0.0189459547, 0.999807417, -0.00153100886, 0.999819279, -0.0189540461)
  6092. Part475.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  6093. Part475.Position = Vector3.new(-0.615642607, 3.34541011, -12.1349049)
  6094. Part475.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  6095. Part475.Color = Color3.new(0.803922, 0.803922, 0.803922)
  6096. Part475.Velocity = Vector3.new(4.18465866e-08, 0.00247076293, 5.49908464e-07)
  6097. Part475.Size = Vector3.new(0.275000006, 1.73512506, 0.280375004)
  6098. Part475.Anchored = true
  6099. Part475.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6100. Part475.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6101. Part475.BrickColor = BrickColor.new("Mid gray")
  6102. Part475.CanCollide = false
  6103. Part475.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6104. Part475.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6105. Part475.Material = Enum.Material.Metal
  6106. Part475.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6107. Part475.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6108. Part475.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6109. Part475.brickColor = BrickColor.new("Mid gray")
  6110.  
  6111. game:GetService("Players").LocalPlayer.Character["Surfboard"].Handle.att1_Handle.Parent = Part475
  6112. Part475.att1_Handle.Rotation = Vector3.new(-90,0,90)
  6113. Part475.att1_Handle.Position = Vector3.new(0,-4,0)
  6114.  
  6115. SpecialMesh476.Parent = Part475
  6116. SpecialMesh476.Scale = Vector3.new(0.349999994, 1.04999995, 0.5)
  6117. SpecialMesh476.MeshType = Enum.MeshType.Brick
  6118.  
  6119.  
  6120. for i,v in pairs(mas:GetChildren()) do
  6121. v.Parent = game:GetService("Players").LocalPlayer.Character
  6122. pcall(function() v:MakeJoints() end)
  6123. end
  6124. mas:Destroy()
  6125. for i,v in pairs(cors) do
  6126. spawn(function()
  6127. pcall(v)
  6128. end)
  6129. end
  6130. for i,v in pairs(Model0:GetChildren()) do
  6131. if v:IsA("Part") then
  6132. v.Locked = true
  6133. v.Anchored = false
  6134. v.CanCollide = false
  6135. end
  6136. end
  6137.  
  6138.  
  6139. plr = game:GetService("Players").LocalPlayer
  6140. char = plr.Character
  6141. hum = char.Humanoid
  6142. local cam = game.Workspace.CurrentCamera
  6143. t = char.Torso
  6144. h = char.Head
  6145. ra = char["Right Arm"]
  6146. la = char["Left Arm"]
  6147. rl = char["Right Leg"]
  6148. ll = char["Left Leg"]
  6149. tors = char.Torso
  6150. lleg = char["Left Leg"]
  6151. root = char.HumanoidRootPart
  6152. hed = char.Head
  6153. rleg = char["Right Leg"]
  6154. rarm = char["Right Arm"]
  6155. larm = char["Left Arm"]
  6156. it = Instance.new
  6157. vt = Vector3.new
  6158. bc = BrickColor.new
  6159. br = BrickColor.random
  6160. it = Instance.new
  6161. cf = CFrame.new
  6162. ceuler = CFrame.fromEulerAnglesXYZ
  6163.  
  6164. local muter = false
  6165. local ORGID = 1873219898
  6166. local ORVOL = 1.15
  6167. local ORPIT = 1.01
  6168. local kan = Instance.new("Sound",plr.PlayerGui)
  6169. kan.Volume = 1.15
  6170. kan.TimePosition = 0
  6171. kan.PlaybackSpeed = 1.01
  6172. kan.Pitch = 1.01
  6173. kan.SoundId = "rbxassetid://1873219898" --525289865,1873219898,381991270
  6174. kan.Name = "nepnepnep"
  6175. kan.Looped = true
  6176. kan:Play()
  6177.  
  6178. --------------------------- GUI STUFF
  6179. local basgui = it("GuiMain")
  6180. basgui.Parent = plr.PlayerGui
  6181. basgui.Name = "VISgui"
  6182. local fullscreenz = it("Frame")
  6183. fullscreenz.Parent = basgui
  6184. fullscreenz.BackgroundColor3 = Color3.new(255, 255, 255)
  6185. fullscreenz.BackgroundTransparency = 1
  6186. fullscreenz.BorderColor3 = Color3.new(17, 17, 17)
  6187. fullscreenz.Size = UDim2.new(1, 0, 1, 0)
  6188. fullscreenz.Position = UDim2.new(0, 0, 0, 0)
  6189. local imgl2 = Instance.new("ImageLabel",fullscreenz)
  6190. imgl2.BackgroundTransparency = 1
  6191. imgl2.BorderSizePixel = 0
  6192. imgl2.ImageTransparency = 0.5
  6193. imgl2.ImageColor3 = Color3.new(1,0,0)
  6194. imgl2.Position = UDim2.new(0.75,0,0.55,0)
  6195. imgl2.Size = UDim2.new(0,600,0,600)
  6196. imgl2.Image = "rbxassetid://320731120"
  6197. local techc = imgl2:Clone()
  6198. techc.Parent = fullscreenz
  6199. techc.ImageTransparency = 0.5
  6200. techc.Size = UDim2.new(0,700,0,700)
  6201. techc.Position = UDim2.new(0.75,-50,0.55,-50)
  6202. techc.ImageColor3 = Color3.new(0.5,0,1)
  6203. techc.Image = "rbxassetid://521073910"
  6204. local circl = imgl2:Clone()
  6205. circl.Parent = fullscreenz
  6206. circl.ImageTransparency = 0
  6207. circl.Size = UDim2.new(0,500,0,500)
  6208. circl.Position = UDim2.new(0.75,50,0.55,50)
  6209. circl.ImageColor3 = Color3.new(0,0.5,1)
  6210. circl.Image = "rbxassetid://997291547"
  6211. local circl2 = imgl2:Clone()
  6212. circl2.Parent = fullscreenz
  6213. circl2.ImageTransparency = 0
  6214. circl2.ImageColor3 = Color3.new(0.5,0,1)
  6215. circl2.Image = "rbxassetid://997291547"
  6216. local imgl2b = imgl2:Clone()
  6217. imgl2b.Parent = fullscreenz
  6218. imgl2b.ImageTransparency = 0
  6219. imgl2b.Size = UDim2.new(0,500,0,500)
  6220. imgl2b.Position = UDim2.new(0.75,50,0.55,50)
  6221. local ned = Instance.new("TextLabel",fullscreenz)
  6222. ned.ZIndex = 2
  6223. ned.Font = "SciFi"
  6224. ned.BackgroundTransparency = 1
  6225. ned.BorderSizePixel = 0.65
  6226. ned.Size = UDim2.new(0.4,0,0.2,0)
  6227. ned.Position = UDim2.new(0.6,0,0.8,0)
  6228. ned.TextColor3 = BrickColor.new("Royal purple").Color
  6229. ned.TextStrokeColor3 = BrickColor.new("Cyan").Color
  6230. ned.TextScaled = true
  6231. ned.TextStrokeTransparency = 0
  6232. ned.Text = "NEPTUNIAN V"
  6233. ned.TextSize = 24
  6234. ned.Rotation = 1
  6235. --ned.TextXAlignment = "Right"
  6236. ned.TextYAlignment = "Bottom"
  6237.  
  6238. function CameraShake(Times, Power)
  6239. coroutine.resume(coroutine.create(function()
  6240. FV = Instance.new("BoolValue", Character)
  6241. FV.Name = "CameraShake"
  6242. for ShakeNum=1,Times do
  6243. swait()
  6244. local ef=Power
  6245. if ef>=1 then
  6246. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  6247. else
  6248. ef=Power*10
  6249. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  6250. end
  6251. end
  6252. Humanoid.CameraOffset = Vector3.new(0,0,0)
  6253. FV:Destroy()
  6254. end))
  6255. end
  6256.  
  6257. CamShake=function(Part,Distan,Power,Times)
  6258. local de=Part.Position
  6259. for i,v in pairs(workspace:children()) do
  6260. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  6261. for _,c in pairs(v:children()) do
  6262. if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
  6263. local Noob=v.Humanoid
  6264. if Noob~=nil then
  6265. if Noob:FindFirstChild("CamShake")==nil then-- and Noob == Character then
  6266. --[[local ss=script.CamShake:clone()
  6267. ss.Parent=Noob
  6268. ss.Power.Value=Power
  6269. ss.Times.Value=Times
  6270. ss.Disabled=false]]
  6271. CameraShake(Times, Power)
  6272. end
  6273. end
  6274. end
  6275. end
  6276. end
  6277. end
  6278. end
  6279.  
  6280. function chatfunc(text,color,typet,font,timeex)
  6281. local chat = coroutine.wrap(function()
  6282. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  6283. Character:FindFirstChild("TalkingBillBoard"):destroy()
  6284. end
  6285. local naeeym2 = Instance.new("BillboardGui",Character)
  6286. naeeym2.Size = UDim2.new(0,100,0,40)
  6287. naeeym2.StudsOffset = Vector3.new(0,3,0)
  6288. naeeym2.Adornee = Character.Head
  6289. naeeym2.Name = "TalkingBillBoard"
  6290. local tecks2 = Instance.new("TextLabel",naeeym2)
  6291. tecks2.BackgroundTransparency = 1
  6292. tecks2.BorderSizePixel = 0
  6293. tecks2.Text = ""
  6294. tecks2.Font = font
  6295. tecks2.TextSize = 30
  6296. tecks2.TextStrokeTransparency = 0
  6297. tecks2.TextColor3 = color
  6298. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  6299. tecks2.Size = UDim2.new(1,0,0.5,0)
  6300. local tecks3 = Instance.new("TextLabel",naeeym2)
  6301. tecks3.BackgroundTransparency = 1
  6302. tecks3.BorderSizePixel = 0
  6303. tecks3.Text = ""
  6304. tecks3.Font = font
  6305. tecks3.TextSize = 30
  6306. tecks3.TextStrokeTransparency = 0
  6307. if typet == "Inverted" then
  6308. tecks3.TextColor3 = Color3.new(0,0,0)
  6309. tecks3.TextStrokeColor3 = color
  6310. elseif typet == "Normal" then
  6311. tecks3.TextColor3 = color
  6312. tecks3.TextStrokeColor3 = Color3.new(0,0,0)
  6313. end
  6314. tecks3.Size = UDim2.new(1,0,0.5,0)
  6315. coroutine.resume(coroutine.create(function()
  6316. while true do
  6317. swait(1)
  6318. if chaosmode == true then
  6319. tecks2.TextColor3 = BrickColor.random().Color
  6320. tecks3.TextStrokeColor3 = BrickColor.random().Color
  6321. end
  6322. end
  6323. end))
  6324. for i = 0, 74*timeex do
  6325. swait()
  6326. tecks2.Text = text
  6327. tecks3.Text = text
  6328. end
  6329. local randomrot = math.random(1,2)
  6330. if randomrot == 1 then
  6331. for i = 1, 50 do
  6332. swait()
  6333. tecks2.Text = text
  6334. tecks3.Text = text
  6335. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  6336. tecks2.TextTransparency = tecks2.TextTransparency + .04
  6337. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  6338. tecks3.TextTransparency = tecks2.TextTransparency + .04
  6339. end
  6340. elseif randomrot == 2 then
  6341. for i = 1, 50 do
  6342. swait()
  6343. tecks2.Text = text
  6344. tecks3.Text = text
  6345. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  6346. tecks2.TextTransparency = tecks2.TextTransparency + .04
  6347. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  6348. tecks3.TextTransparency = tecks2.TextTransparency + .04
  6349. end
  6350. end
  6351. naeeym2:Destroy()
  6352. end)
  6353. chat()
  6354. end
  6355.  
  6356.  
  6357.  
  6358.  
  6359. CFuncs = {
  6360. ["Part"] = {
  6361. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  6362. local Part = Create("Part"){
  6363. Parent = Parent,
  6364. Reflectance = Reflectance,
  6365. Transparency = Transparency,
  6366. CanCollide = false,
  6367. Locked = true,
  6368. BrickColor = BrickColor.new(tostring(BColor)),
  6369. Name = Name,
  6370. Size = Size,
  6371. Material = Material,
  6372. }
  6373. RemoveOutlines(Part)
  6374. return Part
  6375. end;
  6376. };
  6377.  
  6378. ["Mesh"] = {
  6379. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  6380. local Msh = Create(Mesh){
  6381. Parent = Part,
  6382. Offset = OffSet,
  6383. Scale = Scale,
  6384. }
  6385. if Mesh == "SpecialMesh" then
  6386. Msh.MeshType = MeshType
  6387. Msh.MeshId = MeshId
  6388. end
  6389. return Msh
  6390. end;
  6391. };
  6392.  
  6393. ["Mesh"] = {
  6394. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  6395. local Msh = Create(Mesh){
  6396. Parent = Part,
  6397. Offset = OffSet,
  6398. Scale = Scale,
  6399. }
  6400. if Mesh == "SpecialMesh" then
  6401. Msh.MeshType = MeshType
  6402. Msh.MeshId = MeshId
  6403. end
  6404. return Msh
  6405. end;
  6406. };
  6407.  
  6408. ["Weld"] = {
  6409. Create = function(Parent, Part0, Part1, C0, C1)
  6410. local Weld = Create("Weld"){
  6411. Parent = Parent,
  6412. Part0 = Part0,
  6413. Part1 = Part1,
  6414. C0 = C0,
  6415. C1 = C1,
  6416. }
  6417. return Weld
  6418. end;
  6419. };
  6420.  
  6421. ["Sound"] = {
  6422. Create = function(id, par, vol, pit)
  6423. coroutine.resume(coroutine.create(function()
  6424. local S = Create("Sound"){
  6425. Volume = vol,
  6426. Pitch = pit or 1,
  6427. SoundId = id,
  6428. Parent = par or workspace,
  6429. }
  6430. wait()
  6431. S:play()
  6432. game:GetService("Debris"):AddItem(S, 10)
  6433. end))
  6434. end;
  6435. };
  6436.  
  6437. ["LongSound"] = {
  6438. Create = function(id, par, vol, pit)
  6439. coroutine.resume(coroutine.create(function()
  6440. local S = Create("Sound"){
  6441. Volume = vol,
  6442. Pitch = pit or 1,
  6443. SoundId = id,
  6444. Parent = par or workspace,
  6445. }
  6446. wait()
  6447. S:play()
  6448. game:GetService("Debris"):AddItem(S, 30)
  6449. end))
  6450. end;
  6451. };
  6452.  
  6453. ["ParticleEmitter"] = {
  6454. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  6455. local fp = Create("ParticleEmitter"){
  6456. Parent = Parent,
  6457. Color = ColorSequence.new(Color1, Color2),
  6458. LightEmission = LightEmission,
  6459. Size = Size,
  6460. Texture = Texture,
  6461. Transparency = Transparency,
  6462. ZOffset = ZOffset,
  6463. Acceleration = Accel,
  6464. Drag = Drag,
  6465. LockedToPart = LockedToPart,
  6466. VelocityInheritance = VelocityInheritance,
  6467. EmissionDirection = EmissionDirection,
  6468. Enabled = Enabled,
  6469. Lifetime = LifeTime,
  6470. Rate = Rate,
  6471. Rotation = Rotation,
  6472. RotSpeed = RotSpeed,
  6473. Speed = Speed,
  6474. VelocitySpread = VelocitySpread,
  6475. }
  6476. return fp
  6477. end;
  6478. };
  6479.  
  6480. CreateTemplate = {
  6481.  
  6482. };
  6483. }
  6484.  
  6485.  
  6486.  
  6487. New = function(Object, Parent, Name, Data)
  6488. local Object = Instance.new(Object)
  6489. for Index, Value in pairs(Data or {}) do
  6490. Object[Index] = Value
  6491. end
  6492. Object.Parent = Parent
  6493. Object.Name = Name
  6494. return Object
  6495. end
  6496. local m = Instance.new("Model",char)
  6497.  
  6498. function CreateParta(parent,transparency,reflectance,material,brickcolor)
  6499. local p = Instance.new("Part")
  6500. p.TopSurface = 0
  6501. p.BottomSurface = 0
  6502. p.Parent = parent
  6503. p.Size = Vector3.new(0.05,0.05,0.05)
  6504. p.Transparency = transparency
  6505. p.Reflectance = reflectance
  6506. p.CanCollide = false
  6507. p.Locked = true
  6508. p.BrickColor = brickcolor
  6509. p.Material = material
  6510. return p
  6511. end
  6512.  
  6513. function CreateMesh(parent,meshtype,x1,y1,z1)
  6514. local mesh = Instance.new("SpecialMesh",parent)
  6515. mesh.MeshType = meshtype
  6516. mesh.Scale = Vector3.new(x1*20,y1*20,z1*20)
  6517. return mesh
  6518. end
  6519.  
  6520. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  6521. local mesh = Instance.new("SpecialMesh",parent)
  6522. mesh.MeshType = "FileMesh"
  6523. mesh.MeshId = meshid
  6524. mesh.Scale = Vector3.new(x1,y1,z1)
  6525. return mesh
  6526. end
  6527.  
  6528.  
  6529. function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
  6530. local mesh = Instance.new("SpecialMesh",parent)
  6531. mesh.MeshType = "FileMesh"
  6532. mesh.MeshId = meshid
  6533. mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
  6534. mesh.Scale = Vector3.new(x1,y1,z1)
  6535. mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
  6536. return mesh
  6537. end
  6538.  
  6539. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  6540. local weld = Instance.new("Weld")
  6541. weld.Parent = parent
  6542. weld.Part0 = part0
  6543. weld.Part1 = part1
  6544. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  6545. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  6546. return weld
  6547. end
  6548.  
  6549.  
  6550.  
  6551.  
  6552. ---- WEAPON OR STUFF
  6553. local rarmor = CreateParta(m,1,0,"SmoothPlastic",BrickColor.Random())
  6554. local weaponweld = CreateWeld(rarmor,tors,rarmor,-3,0,-0.5,math.rad(0),math.rad(0),math.rad(-40),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  6555. local MainWeldS = CreateWeld(Part475,rarmor,Part475,0,0,0,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  6556. local A0 = Instance.new("Attachment",rarmor)
  6557. A0.Position = Vector3.new(-2.5,0.25,0)
  6558. local A1 = Instance.new("Attachment",rarmor)
  6559. A1.Position = Vector3.new(-7.5,0.4,0)
  6560. tl1 = Instance.new('Trail',rarmor)
  6561. tl1.Attachment0 = A0
  6562. tl1.Attachment1 = A1
  6563. tl1.Texture = "http://www.roblox.com/asset/?id=1978704853"
  6564. tl1.LightEmission = 1
  6565. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  6566. tl1.Color = ColorSequence.new(BrickColor.new('Royal purple').Color)
  6567. tl1.Lifetime = 0.6
  6568. tl1.Enabled = false
  6569.  
  6570.  
  6571.  
  6572.  
  6573. --------------- WINGS
  6574. local mainpart = CreateParta(m,1,0,"SmoothPlastic",BrickColor.Random())
  6575. local mwingweld = CreateWeld(mainpart,tors,mainpart,0,-0.5,-0.75,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  6576.  
  6577. local wng1a = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  6578. CreateMesh(wng1a,"Wedge",0.1,4,4)
  6579. CreateWeld(wng1a,mainpart,wng1a,0,-2,-2.5,math.rad(0),math.rad(70),math.rad(5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  6580. local wng2a = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  6581. CreateMesh(wng2a,"Wedge",0.1,4,4)
  6582. CreateWeld(wng2a,mainpart,wng2a,0,-2,-2.5,math.rad(0),math.rad(-70),math.rad(-5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  6583. local wng1b = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  6584. CreateMesh(wng1b,"Wedge",0.1,1.5,3)
  6585. CreateWeld(wng1b,mainpart,wng1b,0,-1,-2.25,math.rad(180),math.rad(-110),math.rad(-5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  6586. local wng2b = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  6587. CreateMesh(wng2b,"Wedge",0.1,1.5,3)
  6588. CreateWeld(wng2b,mainpart,wng2b,0,-1,-2.25,math.rad(180),math.rad(110),math.rad(5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  6589. ------
  6590.  
  6591.  
  6592. function lerp(object, newCFrame, alpha)
  6593. return object:lerp(newCFrame, alpha)
  6594. end
  6595.  
  6596. function RemoveOutlines(part)
  6597. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  6598. end
  6599. function CreatePart(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  6600. local Part = Create("Part")({
  6601. Parent = Parent,
  6602. Reflectance = Reflectance,
  6603. Transparency = Transparency,
  6604. CanCollide = false,
  6605. Locked = true,
  6606. BrickColor = BrickColor.new(tostring(BColor)),
  6607. Name = Name,
  6608. Size = Size,
  6609. Material = Material
  6610. })
  6611. Part.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  6612. RemoveOutlines(Part)
  6613. return Part
  6614. end
  6615. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  6616. local Msh = Create(Mesh)({
  6617. Parent = Part,
  6618. Offset = OffSet,
  6619. Scale = Scale
  6620. })
  6621. if Mesh == "SpecialMesh" then
  6622. Msh.MeshType = MeshType
  6623. Msh.MeshId = MeshId
  6624. end
  6625. return Msh
  6626. end
  6627. function CreateWeld(Parent, Part0, Part1, C0, C1)
  6628. local Weld = Create("Weld")({
  6629. Parent = Parent,
  6630. Part0 = Part0,
  6631. Part1 = Part1,
  6632. C0 = C0,
  6633. C1 = C1
  6634. })
  6635. return Weld
  6636. end
  6637.  
  6638. Player=game:GetService("Players").LocalPlayer
  6639. Character=Player.Character
  6640. PlayerGui=Player.PlayerGui
  6641. Backpack=Player.Backpack
  6642. Torso=Character.Torso
  6643. Head=Character.Head
  6644. Humanoid=Character.Humanoid
  6645. m=Instance.new('Model',Character)
  6646. LeftArm=Character["Left Arm"]
  6647. LeftLeg=Character["Left Leg"]
  6648. RightArm=Character["Right Arm"]
  6649. RightLeg=Character["Right Leg"]
  6650. LS=Torso["Left Shoulder"]
  6651. LH=Torso["Left Hip"]
  6652. RS=Torso["Right Shoulder"]
  6653. RH=Torso["Right Hip"]
  6654. Face = Head.face
  6655. Neck=Torso.Neck
  6656. it=Instance.new
  6657. attacktype=1
  6658. vt=Vector3.new
  6659. cf=CFrame.new
  6660. euler=CFrame.fromEulerAnglesXYZ
  6661. angles=CFrame.Angles
  6662. cloaked=false
  6663. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  6664. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  6665. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  6666. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  6667. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  6668. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  6669. RootPart=Character.HumanoidRootPart
  6670. RootJoint=RootPart.RootJoint
  6671. RootCF=euler(-1.57,0,3.14)
  6672. attack = false
  6673. attackdebounce = false
  6674. deb=false
  6675. equipped=true
  6676. hand=false
  6677. MMouse=nil
  6678. combo=0
  6679. mana=0
  6680. trispeed=.2
  6681. attackmode='none'
  6682. local idle=0
  6683. local Anim="Idle"
  6684. local Effects={}
  6685. local gun=false
  6686. local shoot=false
  6687. local sine = 0
  6688. local change = 1
  6689. player=nil
  6690.  
  6691. mouse=Player:GetMouse()
  6692. --save shoulders
  6693. RSH, LSH=nil, nil
  6694. --welds
  6695. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  6696. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  6697. LH=Torso["Left Hip"]
  6698. RH=Torso["Right Hip"]
  6699. TorsoColor=Torso.BrickColor
  6700. function NoOutline(Part)
  6701. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  6702. end
  6703. player=Player
  6704. ch=Character
  6705. RSH=ch.Torso["Right Shoulder"]
  6706. LSH=ch.Torso["Left Shoulder"]
  6707. --
  6708. RSH.Parent=nil
  6709. LSH.Parent=nil
  6710. --
  6711. RW.Name="Right Shoulder"
  6712. RW.Part0=ch.Torso
  6713. RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  6714. RW.C1=cf(0, 0.5, 0)
  6715. RW.Part1=ch["Right Arm"]
  6716. RW.Parent=ch.Torso
  6717. --
  6718. LW.Name="Left Shoulder"
  6719. LW.Part0=ch.Torso
  6720. LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  6721. LW.C1=cf(0, 0.5, 0)
  6722. LW.Part1=ch["Left Arm"]
  6723. LW.Parent=ch.Torso
  6724.  
  6725. local Stats=Instance.new("BoolValue")
  6726. Stats.Name="Stats"
  6727. Stats.Parent=Character
  6728. local Atk=Instance.new("NumberValue")
  6729. Atk.Name="Damage"
  6730. Atk.Parent=Stats
  6731. Atk.Value=1
  6732. local Def=Instance.new("NumberValue")
  6733. Def.Name="Defense"
  6734. Def.Parent=Stats
  6735. Def.Value=1
  6736. local Speed=Instance.new("NumberValue")
  6737. Speed.Name="Speed"
  6738. Speed.Parent=Stats
  6739. Speed.Value=1
  6740. local Mvmt=Instance.new("NumberValue")
  6741. Mvmt.Name="Movement"
  6742. Mvmt.Parent=Stats
  6743. Mvmt.Value=1
  6744.  
  6745. local donum=0
  6746.  
  6747.  
  6748. function part(formfactor,parent,reflectance,transparency,brickcolor,name,size)
  6749. local fp=it("Part")
  6750. fp.formFactor=formfactor
  6751. fp.Parent=parent
  6752. fp.Reflectance=reflectance
  6753. fp.Transparency=transparency
  6754. fp.CanCollide=false
  6755. fp.Locked=true
  6756. fp.BrickColor=brickcolor
  6757. fp.Name=name
  6758. fp.Size=size
  6759. fp.Position=Torso.Position
  6760. NoOutline(fp)
  6761. fp.Material="SmoothPlastic"
  6762. fp:BreakJoints()
  6763. return fp
  6764. end
  6765.  
  6766. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  6767. local mesh=it(Mesh)
  6768. mesh.Parent=part
  6769. if Mesh=="SpecialMesh" then
  6770. mesh.MeshType=meshtype
  6771. if meshid~="nil" then
  6772. mesh.MeshId="http://www.roblox.com/asset/?id="..meshid
  6773. end
  6774. end
  6775. mesh.Offset=offset
  6776. mesh.Scale=scale
  6777. return mesh
  6778. end
  6779.  
  6780. function weld(parent,part0,part1,c0)
  6781. local weld=it("Weld")
  6782. weld.Parent=parent
  6783. weld.Part0=part0
  6784. weld.Part1=part1
  6785. weld.C0=c0
  6786. return weld
  6787. end
  6788.  
  6789. local Color1=Torso.BrickColor
  6790.  
  6791. local bodvel=Instance.new("BodyVelocity")
  6792. local bg=Instance.new("BodyGyro")
  6793.  
  6794. function swait(num)
  6795. if num==0 or num==nil then
  6796. game:service'RunService'.Stepped:wait(0)
  6797. else
  6798. for i=0,num do
  6799. game:service'RunService'.Stepped:wait(0)
  6800. end
  6801. end
  6802. end
  6803.  
  6804.  
  6805. so = function(id,par,vol,pit)
  6806. coroutine.resume(coroutine.create(function()
  6807. local sou = Instance.new("Sound",par or workspace)
  6808. sou.Volume=vol
  6809. sou.Pitch=pit or 1
  6810. sou.SoundId=id
  6811. swait()
  6812. sou:play()
  6813. game:GetService("Debris"):AddItem(sou,6)
  6814. end))
  6815. end
  6816.  
  6817. function clerp(a,b,t)
  6818. local qa = {QuaternionFromCFrame(a)}
  6819. local qb = {QuaternionFromCFrame(b)}
  6820. local ax, ay, az = a.x, a.y, a.z
  6821. local bx, by, bz = b.x, b.y, b.z
  6822. local _t = 1-t
  6823. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  6824. end
  6825.  
  6826. function QuaternionFromCFrame(cf)
  6827. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  6828. local trace = m00 + m11 + m22
  6829. if trace > 0 then
  6830. local s = math.sqrt(1 + trace)
  6831. local recip = 0.5/s
  6832. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  6833. else
  6834. local i = 0
  6835. if m11 > m00 then
  6836. i = 1
  6837. end
  6838. if m22 > (i == 0 and m00 or m11) then
  6839. i = 2
  6840. end
  6841. if i == 0 then
  6842. local s = math.sqrt(m00-m11-m22+1)
  6843. local recip = 0.5/s
  6844. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  6845. elseif i == 1 then
  6846. local s = math.sqrt(m11-m22-m00+1)
  6847. local recip = 0.5/s
  6848. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  6849. elseif i == 2 then
  6850. local s = math.sqrt(m22-m00-m11+1)
  6851. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  6852. end
  6853. end
  6854. end
  6855.  
  6856. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  6857. local xs, ys, zs = x + x, y + y, z + z
  6858. local wx, wy, wz = w*xs, w*ys, w*zs
  6859. local xx = x*xs
  6860. local xy = x*ys
  6861. local xz = x*zs
  6862. local yy = y*ys
  6863. local yz = y*zs
  6864. local zz = z*zs
  6865. 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))
  6866. end
  6867.  
  6868. function QuaternionSlerp(a, b, t)
  6869. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  6870. local startInterp, finishInterp;
  6871. if cosTheta >= 0.0001 then
  6872. if (1 - cosTheta) > 0.0001 then
  6873. local theta = math.acos(cosTheta)
  6874. local invSinTheta = 1/math.sin(theta)
  6875. startInterp = math.sin((1-t)*theta)*invSinTheta
  6876. finishInterp = math.sin(t*theta)*invSinTheta
  6877. else
  6878. startInterp = 1-t
  6879. finishInterp = t
  6880. end
  6881. else
  6882. if (1+cosTheta) > 0.0001 then
  6883. local theta = math.acos(-cosTheta)
  6884. local invSinTheta = 1/math.sin(theta)
  6885. startInterp = math.sin((t-1)*theta)*invSinTheta
  6886. finishInterp = math.sin(t*theta)*invSinTheta
  6887. else
  6888. startInterp = t-1
  6889. finishInterp = t
  6890. end
  6891. end
  6892. 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
  6893. end
  6894.  
  6895. local function CFrameFromTopBack(at, top, back)
  6896. local right = top:Cross(back)
  6897. return CFrame.new(at.x, at.y, at.z,
  6898. right.x, top.x, back.x,
  6899. right.y, top.y, back.y,
  6900. right.z, top.z, back.z)
  6901. end
  6902.  
  6903. function Triangle(a, b, c)
  6904. local edg1 = (c-a):Dot((b-a).unit)
  6905. local edg2 = (a-b):Dot((c-b).unit)
  6906. local edg3 = (b-c):Dot((a-c).unit)
  6907. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  6908. a, b, c = a, b, c
  6909. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  6910. a, b, c = b, c, a
  6911. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  6912. a, b, c = c, a, b
  6913. else
  6914. assert(false, "unreachable")
  6915. end
  6916.  
  6917. local len1 = (c-a):Dot((b-a).unit)
  6918. local len2 = (b-a).magnitude - len1
  6919. local width = (a + (b-a).unit*len1 - c).magnitude
  6920.  
  6921. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  6922.  
  6923. local list = {}
  6924.  
  6925. if len1 > 0.01 then
  6926. local w1 = Instance.new('WedgePart', m)
  6927. game:GetService("Debris"):AddItem(w1,5)
  6928. w1.Material = "SmoothPlastic"
  6929. w1.FormFactor = 'Custom'
  6930. w1.BrickColor = BrickColor.new("Really red")
  6931. w1.Transparency = 0
  6932. w1.Reflectance = 0
  6933. w1.Material = "SmoothPlastic"
  6934. w1.CanCollide = false
  6935. local l1 = Instance.new("PointLight",w1)
  6936. l1.Color = Color3.new(170,0,0)
  6937. NoOutline(w1)
  6938. local sz = Vector3.new(0.2, width, len1)
  6939. w1.Size = sz
  6940. local sp = Instance.new("SpecialMesh",w1)
  6941. sp.MeshType = "Wedge"
  6942. sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
  6943. w1:BreakJoints()
  6944. w1.Anchored = true
  6945. w1.Parent = workspace
  6946. w1.Transparency = 0.7
  6947. table.insert(Effects,{w1,"Disappear",.01})
  6948. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  6949. table.insert(list,w1)
  6950. end
  6951.  
  6952. if len2 > 0.01 then
  6953. local w2 = Instance.new('WedgePart', m)
  6954. game:GetService("Debris"):AddItem(w2,5)
  6955. w2.Material = "SmoothPlastic"
  6956. w2.FormFactor = 'Custom'
  6957. w2.BrickColor = BrickColor.new("Really red")
  6958. w2.Transparency = 0
  6959. w2.Reflectance = 0
  6960. w2.Material = "SmoothPlastic"
  6961. w2.CanCollide = false
  6962. local l2 = Instance.new("PointLight",w2)
  6963. l2.Color = Color3.new(170,0,0)
  6964. NoOutline(w2)
  6965. local sz = Vector3.new(0.2, width, len2)
  6966. w2.Size = sz
  6967. local sp = Instance.new("SpecialMesh",w2)
  6968. sp.MeshType = "Wedge"
  6969. sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
  6970. w2:BreakJoints()
  6971. w2.Anchored = true
  6972. w2.Parent = workspace
  6973. w2.Transparency = 0.7
  6974. table.insert(Effects,{w2,"Disappear",.01})
  6975. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  6976. table.insert(list,w2)
  6977. end
  6978. return unpack(list)
  6979. end
  6980.  
  6981.  
  6982.  
  6983. function ShowDamage(Pos, Text, Time, Color)
  6984. local Rate = 0.1
  6985. local Pos = Pos or Vector3.new(0, 0, 0)
  6986. local Text = Text or ""
  6987. local Time = Time or 2
  6988. local Color = Color or Color3.new(1, 0, 1)
  6989. local EffectPart = CreatePart(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  6990. EffectPart.Anchored = true
  6991. local BillboardGui = Create("BillboardGui")({
  6992. Size = UDim2.new(3, 0, 3, 0),
  6993. Adornee = EffectPart,
  6994. Parent = EffectPart
  6995. })
  6996. local TextLabel = Create("TextLabel")({
  6997. BackgroundTransparency = 1,
  6998. Size = UDim2.new(1, 0, 1, 0),
  6999. Text = Text,
  7000. TextColor3 = Color3.new(1,1,1),
  7001. TextStrokeColor3 = Color3.new(0,0,0),
  7002. TextStrokeTransparency = 0.25,
  7003. TextScaled = true,
  7004. Font = Enum.Font.Fantasy,
  7005. TextSize = 24,
  7006. Parent = BillboardGui
  7007. })
  7008. game.Debris:AddItem(EffectPart, Time + 0.1)
  7009. EffectPart.Parent = game:GetService("Workspace")
  7010. delay(0, function()
  7011. local Frames = Time / Rate
  7012. for Frame = 1, Frames do
  7013. swait(Rate)
  7014. local Percent = Frame / Frames
  7015. TextLabel.Text = Text
  7016. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent*2, 0)
  7017. end
  7018. for Frame = 1, Frames do
  7019. swait(Rate)
  7020. local Percent = Frame / Frames
  7021. TextLabel.Text = Text
  7022. end
  7023. for Frame = 1, Frames do
  7024. swait(Rate)
  7025. local Percent = Frame / Frames
  7026. TextLabel.TextTransparency = Percent
  7027. TextLabel.Text = Text
  7028. TextLabel.TextStrokeTransparency = Percent
  7029. end
  7030. if EffectPart and EffectPart.Parent then
  7031. EffectPart:Destroy()
  7032. end
  7033. end)
  7034. end
  7035. function MagniDamage(Part, magni, mindam, maxdam, knock, Type,Sound)
  7036. for _, c in pairs(workspace:children()) do
  7037. local hum = c:findFirstChildOfClass("Humanoid")
  7038. if hum ~= nil then
  7039. local head = c:findFirstChild("Torso")
  7040. if head ~= nil then
  7041. local targ = head.Position - Part.Position
  7042. local mag = targ.magnitude
  7043. if magni >= mag and c.Name ~= Player.Name then
  7044. --Damagefunc(head, head, mindam, maxdam, knock, Type, RootPart, 0.1, "rbxassetid://" ..Sound, 1)
  7045. end
  7046. end
  7047. local head = c:findFirstChild("UpperTorso")
  7048. if head ~= nil then
  7049. local targ = head.Position - Part.Position
  7050. local mag = targ.magnitude
  7051. if magni >= mag and c.Name ~= Player.Name then
  7052. Damagefunc(head, head, mindam, maxdam, knock, Type, RootPart, 0.1, "rbxassetid://" ..Sound, 1)
  7053. end
  7054. end
  7055. end
  7056. end
  7057. end
  7058.  
  7059.  
  7060. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  7061. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  7062. end
  7063. ----
  7064.  
  7065. function dmg(dude)
  7066. if dude.Name ~= Character then
  7067. local bgf = Instance.new("BodyGyro",dude.Head)
  7068. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(-90),0,0)
  7069. --[[local val = Instance.new("BoolValue",dude)
  7070. val.Name = "IsHit"]]--
  7071. local ds = coroutine.wrap(function()
  7072. dude:WaitForChild("Head"):BreakJoints()
  7073. for i, v in pairs(dude:GetChildren()) do
  7074. if v:IsA("Part") or v:IsA("MeshPart") then
  7075. v.Name = "DEMINISHED"
  7076. CFuncs["Sound"].Create("rbxassetid://763718160", v, 0.75, 1.1)
  7077. CFuncs["Sound"].Create("rbxassetid://782353443", v, 1, 1)
  7078. for i = 0, 1 do
  7079. sphere2(1,"Add",v.CFrame*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(1,1,1),-0.01,10,-0.01,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7080. end
  7081. end
  7082. end
  7083. wait(0.5)
  7084. targetted = nil
  7085. CFuncs["Sound"].Create("rbxassetid://62339698", char, 0.25, 0.285)
  7086. coroutine.resume(coroutine.create(function()
  7087. for i, v in pairs(dude:GetChildren()) do
  7088. if v:IsA("Accessory") then
  7089. v:Destroy()
  7090. end
  7091. if v:IsA("Humanoid") then
  7092. v:Destroy()
  7093. end
  7094. if v:IsA("CharacterMesh") then
  7095. v:Destroy()
  7096. end
  7097. if v:IsA("Model") then
  7098. v:Destroy()
  7099. end
  7100. if v:IsA("Part") or v:IsA("MeshPart") then
  7101. for x, o in pairs(v:GetChildren()) do
  7102. if o:IsA("Decal") then
  7103. o:Destroy()
  7104. end
  7105. end
  7106. coroutine.resume(coroutine.create(function()
  7107. v.Material = "Neon"
  7108. v.CanCollide = false
  7109. v.Anchored = false
  7110. local bld = Instance.new("ParticleEmitter",v)
  7111. bld.LightEmission = 1
  7112. bld.Texture = "rbxassetid://363275192" ---284205403
  7113. bld.Color = ColorSequence.new(BrickColor.new("Royal purple").Color)
  7114. bld.Rate = 500
  7115. bld.Lifetime = NumberRange.new(1)
  7116. bld.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,2,0),NumberSequenceKeypoint.new(0.8,2.25,0),NumberSequenceKeypoint.new(1,0,0)})
  7117. bld.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5,0),NumberSequenceKeypoint.new(0.8,0.75,0),NumberSequenceKeypoint.new(1,1,0)})
  7118. bld.Speed = NumberRange.new(2,5)
  7119. bld.VelocitySpread = 50000
  7120. bld.Rotation = NumberRange.new(-500,500)
  7121. bld.RotSpeed = NumberRange.new(-500,500)
  7122. local sbs = Instance.new("BodyPosition", v)
  7123. sbs.P = 3000
  7124. sbs.D = 1000
  7125. sbs.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  7126. sbs.position = v.Position + Vector3.new(math.random(-2,2),10 + math.random(-2,2),math.random(-2,2))
  7127. v.Color = BrickColor.new("Royal purple").Color
  7128. coroutine.resume(coroutine.create(function()
  7129. for i = 0, 49 do
  7130. swait(1)
  7131. v:BreakJoints()
  7132. v.Transparency = v.Transparency + 0.02
  7133. end
  7134. v:BreakJoints()
  7135. for i = 0, 4 do
  7136. slash(math.random(10,50)/10,3,true,"Round","Add","Out",v.CFrame*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.01,0.0025,0.01),math.random(10,100)/2500,BrickColor.new("White"))
  7137. end
  7138. block(1,"Add",v.CFrame,vt(0,0,0),0.1,0.1,0.1,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7139. CFuncs["Sound"].Create("rbxassetid://782353117", v, 0.25, 1.2)
  7140. CFuncs["Sound"].Create("rbxassetid://1192402877", v, 0.5, 0.75)
  7141. bld.Speed = NumberRange.new(10,25)
  7142. bld.Drag = 5
  7143. bld.Acceleration = vt(0,2,0)
  7144. wait(0.5)
  7145. bld.Enabled = false
  7146. wait(4)
  7147. coroutine.resume(coroutine.create(function()
  7148. for i = 0, 99 do
  7149. swait()
  7150. v:Destroy()
  7151. dude:Destroy()
  7152. end
  7153. end))
  7154. end))
  7155. end))
  7156. end
  7157. end
  7158. end))
  7159. end)
  7160. ds()
  7161. end
  7162. end
  7163.  
  7164. function sphere(bonuspeed,type,pos,scale,value,color)
  7165. local type = type
  7166. local rng = Instance.new("Part", char)
  7167. rng.Anchored = true
  7168. rng.BrickColor = color
  7169. rng.CanCollide = false
  7170. rng.FormFactor = 3
  7171. rng.Name = "Ring"
  7172. rng.Material = "Neon"
  7173. rng.Size = Vector3.new(1, 1, 1)
  7174. rng.Transparency = 0
  7175. rng.TopSurface = 0
  7176. rng.BottomSurface = 0
  7177. rng.CFrame = pos
  7178. local rngm = Instance.new("SpecialMesh", rng)
  7179. rngm.MeshType = "Sphere"
  7180. rngm.Scale = scale
  7181. if rainbowmode == true then
  7182. rng.Color = Color3.new(r/255,g/255,b/255)
  7183. end
  7184. local scaler2 = 1
  7185. if type == "Add" then
  7186. scaler2 = 1*value
  7187. elseif type == "Divide" then
  7188. scaler2 = 1/value
  7189. end
  7190. coroutine.resume(coroutine.create(function()
  7191. for i = 0,10/bonuspeed,0.1 do
  7192. swait()
  7193. if rainbowmode == true then
  7194. rng.Color = Color3.new(r/255,g/255,b/255)
  7195. end
  7196. if type == "Add" then
  7197. scaler2 = scaler2 - 0.01*value/bonuspeed
  7198. elseif type == "Divide" then
  7199. scaler2 = scaler2 - 0.01/value*bonuspeed
  7200. end
  7201. if chaosmode == true then
  7202. rng.BrickColor = BrickColor.random()
  7203. end
  7204. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7205. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2*bonuspeed, scaler2*bonuspeed)
  7206. end
  7207. rng:Destroy()
  7208. end))
  7209. end
  7210.  
  7211. function sphere2(bonuspeed,type,pos,scale,value,value2,value3,color,color3)
  7212. local type = type
  7213. local rng = Instance.new("Part", char)
  7214. rng.Anchored = true
  7215. rng.BrickColor = color
  7216. rng.Color = color3
  7217. rng.CanCollide = false
  7218. rng.FormFactor = 3
  7219. rng.Name = "Ring"
  7220. rng.Material = "Neon"
  7221. rng.Size = Vector3.new(1, 1, 1)
  7222. rng.Transparency = 0
  7223. rng.TopSurface = 0
  7224. rng.BottomSurface = 0
  7225. rng.CFrame = pos
  7226. local rngm = Instance.new("SpecialMesh", rng)
  7227. rngm.MeshType = "Sphere"
  7228. rngm.Scale = scale
  7229. local scaler2 = 1
  7230. local scaler2b = 1
  7231. local scaler2c = 1
  7232. if type == "Add" then
  7233. scaler2 = 1*value
  7234. scaler2b = 1*value2
  7235. scaler2c = 1*value3
  7236. elseif type == "Divide" then
  7237. scaler2 = 1/value
  7238. scaler2b = 1/value2
  7239. scaler2c = 1/value3
  7240. end
  7241. coroutine.resume(coroutine.create(function()
  7242. for i = 0,10/bonuspeed,0.1 do
  7243. swait()
  7244. if type == "Add" then
  7245. scaler2 = scaler2 - 0.01*value/bonuspeed
  7246. scaler2b = scaler2b - 0.01*value/bonuspeed
  7247. scaler2c = scaler2c - 0.01*value/bonuspeed
  7248. elseif type == "Divide" then
  7249. scaler2 = scaler2 - 0.01/value*bonuspeed
  7250. scaler2b = scaler2b - 0.01/value*bonuspeed
  7251. scaler2c = scaler2c - 0.01/value*bonuspeed
  7252. end
  7253. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7254. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2c*bonuspeed)
  7255. end
  7256. rng:Destroy()
  7257. end))
  7258. end
  7259.  
  7260. function block(bonuspeed,type,pos,scale,value,value2,value3,color,color3)
  7261. local type = type
  7262. local rng = Instance.new("Part", char)
  7263. rng.Anchored = true
  7264. rng.BrickColor = color
  7265. rng.Color = color3
  7266. rng.CanCollide = false
  7267. rng.FormFactor = 3
  7268. rng.Name = "Ring"
  7269. rng.Material = "Neon"
  7270. rng.Size = Vector3.new(1, 1, 1)
  7271. rng.Transparency = 0
  7272. rng.TopSurface = 0
  7273. rng.BottomSurface = 0
  7274. rng.CFrame = pos
  7275. local rngm = Instance.new("SpecialMesh", rng)
  7276. rngm.MeshType = "Brick"
  7277. rngm.Scale = scale
  7278. local scaler2 = 1
  7279. local scaler2b = 1
  7280. local scaler2c = 1
  7281. if type == "Add" then
  7282. scaler2 = 1*value
  7283. scaler2b = 1*value2
  7284. scaler2c = 1*value3
  7285. elseif type == "Divide" then
  7286. scaler2 = 1/value
  7287. scaler2b = 1/value2
  7288. scaler2c = 1/value3
  7289. end
  7290. coroutine.resume(coroutine.create(function()
  7291. for i = 0,10/bonuspeed,0.1 do
  7292. swait()
  7293. if type == "Add" then
  7294. scaler2 = scaler2 - 0.01*value/bonuspeed
  7295. scaler2b = scaler2b - 0.01*value/bonuspeed
  7296. scaler2c = scaler2c - 0.01*value/bonuspeed
  7297. elseif type == "Divide" then
  7298. scaler2 = scaler2 - 0.01/value*bonuspeed
  7299. scaler2b = scaler2b - 0.01/value*bonuspeed
  7300. scaler2c = scaler2c - 0.01/value*bonuspeed
  7301. end
  7302. rng.CFrame = rng.CFrame*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360)))
  7303. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7304. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2c*bonuspeed)
  7305. end
  7306. rng:Destroy()
  7307. end))
  7308. end
  7309.  
  7310. function sphereMK(bonuspeed,FastSpeed,type,pos,x1,y1,z1,value,color,color3,outerpos)
  7311. local type = type
  7312. local rng = Instance.new("Part", char)
  7313. rng.Anchored = true
  7314. rng.BrickColor = color
  7315. rng.Color = color3
  7316. rng.CanCollide = false
  7317. rng.FormFactor = 3
  7318. rng.Name = "Ring"
  7319. rng.Material = "Neon"
  7320. rng.Size = Vector3.new(1, 1, 1)
  7321. rng.Transparency = 0
  7322. rng.TopSurface = 0
  7323. rng.BottomSurface = 0
  7324. rng.CFrame = pos
  7325. rng.CFrame = rng.CFrame + rng.CFrame.lookVector*outerpos
  7326. local rngm = Instance.new("SpecialMesh", rng)
  7327. rngm.MeshType = "Sphere"
  7328. rngm.Scale = vt(x1,y1,z1)
  7329. if rainbowmode == true then
  7330. rng.Color = Color3.new(r/255,g/255,b/255)
  7331. end
  7332. local scaler2 = 1
  7333. local speeder = FastSpeed
  7334. if type == "Add" then
  7335. scaler2 = 1*value
  7336. elseif type == "Divide" then
  7337. scaler2 = 1/value
  7338. end
  7339. coroutine.resume(coroutine.create(function()
  7340. for i = 0,10/bonuspeed,0.1 do
  7341. swait()
  7342. if rainbowmode == true then
  7343. rng.Color = Color3.new(r/255,g/255,b/255)
  7344. end
  7345. if type == "Add" then
  7346. scaler2 = scaler2 - 0.01*value/bonuspeed
  7347. elseif type == "Divide" then
  7348. scaler2 = scaler2 - 0.01/value*bonuspeed
  7349. end
  7350. if chaosmode == true then
  7351. rng.BrickColor = BrickColor.random()
  7352. end
  7353. speeder = speeder - 0.01*FastSpeed*bonuspeed
  7354. rng.CFrame = rng.CFrame + rng.CFrame.lookVector*speeder*bonuspeed
  7355. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7356. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2*bonuspeed, 0)
  7357. end
  7358. rng:Destroy()
  7359. end))
  7360. end
  7361.  
  7362. function waveEff(bonuspeed,type,typeoftrans,pos,scale,value,value2,color)
  7363. local type = type
  7364. local rng = Instance.new("Part", char)
  7365. rng.Anchored = true
  7366. rng.BrickColor = color
  7367. rng.CanCollide = false
  7368. rng.FormFactor = 3
  7369. rng.Name = "Ring"
  7370. rng.Material = "Neon"
  7371. rng.Size = Vector3.new(1, 1, 1)
  7372. rng.Transparency = 0
  7373. if typeoftrans == "In" then
  7374. rng.Transparency = 1
  7375. end
  7376. rng.TopSurface = 0
  7377. rng.BottomSurface = 0
  7378. rng.CFrame = pos
  7379. local rngm = Instance.new("SpecialMesh", rng)
  7380. rngm.MeshType = "FileMesh"
  7381. rngm.MeshId = "rbxassetid://20329976"
  7382. rngm.Scale = scale
  7383. local scaler2 = 1
  7384. local scaler2b = 1
  7385. if type == "Add" then
  7386. scaler2 = 1*value
  7387. scaler2b = 1*value2
  7388. elseif type == "Divide" then
  7389. scaler2 = 1/value
  7390. scaler2b = 1/value2
  7391. end
  7392. local randomrot = math.random(1,2)
  7393. coroutine.resume(coroutine.create(function()
  7394. for i = 0,10/bonuspeed,0.1 do
  7395. swait()
  7396. if type == "Add" then
  7397. scaler2 = scaler2 - 0.01*value/bonuspeed
  7398. scaler2b = scaler2b - 0.01*value/bonuspeed
  7399. elseif type == "Divide" then
  7400. scaler2 = scaler2 - 0.01/value*bonuspeed
  7401. scaler2b = scaler2b - 0.01/value*bonuspeed
  7402. end
  7403. if randomrot == 1 then
  7404. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(5*bonuspeed/2),0)
  7405. elseif randomrot == 2 then
  7406. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(-5*bonuspeed/2),0)
  7407. end
  7408. if typeoftrans == "Out" then
  7409. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7410. elseif typeoftrans == "In" then
  7411. rng.Transparency = rng.Transparency - 0.01*bonuspeed
  7412. end
  7413. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2*bonuspeed)
  7414. end
  7415. rng:Destroy()
  7416. end))
  7417. end
  7418.  
  7419. function slash(bonuspeed,rotspeed,rotatingop,typeofshape,type,typeoftrans,pos,scale,value,color)
  7420. local type = type
  7421. local rotenable = rotatingop
  7422. local rng = Instance.new("Part", char)
  7423. rng.Anchored = true
  7424. rng.BrickColor = color
  7425. rng.CanCollide = false
  7426. rng.FormFactor = 3
  7427. rng.Name = "Ring"
  7428. rng.Material = "Neon"
  7429. rng.Size = Vector3.new(1, 1, 1)
  7430. rng.Transparency = 0
  7431. if typeoftrans == "In" then
  7432. rng.Transparency = 1
  7433. end
  7434. rng.TopSurface = 0
  7435. rng.BottomSurface = 0
  7436. rng.CFrame = pos
  7437. local rngm = Instance.new("SpecialMesh", rng)
  7438. rngm.MeshType = "FileMesh"
  7439. if typeofshape == "Normal" then
  7440. rngm.MeshId = "rbxassetid://662586858"
  7441. elseif typeofshape == "Round" then
  7442. rngm.MeshId = "rbxassetid://662585058"
  7443. end
  7444. rngm.Scale = scale
  7445. local scaler2 = 1/10
  7446. if type == "Add" then
  7447. scaler2 = 1*value/10
  7448. elseif type == "Divide" then
  7449. scaler2 = 1/value/10
  7450. end
  7451. local randomrot = math.random(1,2)
  7452. coroutine.resume(coroutine.create(function()
  7453. for i = 0,10/bonuspeed,0.1 do
  7454. swait()
  7455. if type == "Add" then
  7456. scaler2 = scaler2 - 0.01*value/bonuspeed/10
  7457. elseif type == "Divide" then
  7458. scaler2 = scaler2 - 0.01/value*bonuspeed/10
  7459. end
  7460. if rotenable == true then
  7461. if randomrot == 1 then
  7462. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(rotspeed*bonuspeed/2),0)
  7463. elseif randomrot == 2 then
  7464. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(-rotspeed*bonuspeed/2),0)
  7465. end
  7466. end
  7467. if typeoftrans == "Out" then
  7468. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7469. elseif typeoftrans == "In" then
  7470. rng.Transparency = rng.Transparency - 0.01*bonuspeed
  7471. end
  7472. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed/10, 0, scaler2*bonuspeed/10)
  7473. end
  7474. rng:Destroy()
  7475. end))
  7476. end
  7477.  
  7478. function FindNearestTorso(Position, Distance, SinglePlayer)
  7479. if SinglePlayer then
  7480. return (SinglePlayer.Torso.CFrame.p - Position).magnitude < Distance
  7481. end
  7482. local List = {}
  7483. for i, v in pairs(workspace:GetChildren()) do
  7484. if v:IsA("Model") then
  7485. if v:findFirstChild("Torso") or v:findFirstChild("UpperTorso") then
  7486. if v ~= Character then
  7487. if (v.Head.Position - Position).magnitude <= Distance then
  7488. table.insert(List, v)
  7489. end
  7490. end
  7491. end
  7492. end
  7493. end
  7494. return List
  7495. end
  7496.  
  7497.  
  7498. local dashing = false
  7499. local floatmode = false
  7500. local OWS = hum.WalkSpeed
  7501. local equipped = false
  7502. Humanoid.Name = "NEPTUNIA"
  7503. Humanoid.MaxHealth = math.huge
  7504. Humanoid.Health = math.huge
  7505. Instance.new("ForceField",char).Visible = false
  7506. Humanoid.Animator.Parent = nil
  7507. ------------------
  7508. function equip()
  7509. attack = true
  7510. equipped = true
  7511. hum.WalkSpeed = 0
  7512. tl1.Enabled = true
  7513. for i = 0, 9 do
  7514. slash(math.random(10,50)/10,3,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-10,10)),math.rad(math.random(-360,360)),math.rad(math.random(-10,10))),vt(0.05,0.01,0.05),math.random(25,50)/250,BrickColor.new("White"))
  7515. end
  7516. CFuncs["Sound"].Create("rbxassetid://1368637781", rarmor, 2.5, 1.25)
  7517. CFuncs["Sound"].Create("rbxassetid://200633077", rarmor, 1, 1)
  7518. CFuncs["Sound"].Create("rbxassetid://169380495", rarmor, 0.5, 1.1)
  7519. sphere2(5,"Add",root.CFrame,vt(5,5,5),0.25,0.25,0.25,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7520. sphere2(6,"Add",root.CFrame,vt(5,5,5),0.25,0.25,0.25,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7521. for i = 0, 2, 0.1 do
  7522. swait()
  7523. hum.CameraOffset = vt(math.random(-5,5)/50,math.random(-5,5)/50,math.random(-5,5)/50)
  7524. sphere2(5,"Add",rarmor.CFrame*CFrame.new(math.random(-8,-2),0,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.1,0.1),0,0.1,0,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7525. waveEff(5,"Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(0,math.rad(math.random(-360,360)),0),vt(5,0.25,5),0.05,0.015,BrickColor.new("Cyan"))
  7526. waveEff(5,"Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(0,math.rad(math.random(-360,360)),0),vt(10,0.25,10),0.05,0.015,BrickColor.new("Royal purple"))
  7527. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7528. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(10),math.rad(0)),.2)
  7529. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-10)),.3)
  7530. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-20)),.3)
  7531. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-20),math.rad(-30),math.rad(130)),.3)
  7532. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(-13),math.rad(10),math.rad(-10)),.3)
  7533. end
  7534. hum.CameraOffset = vt(0,0,0)
  7535. weaponweld.Part0 = rarm
  7536. for i = 0, 2, 0.1 do
  7537. swait()
  7538. sphere2(5,"Add",rarmor.CFrame*CFrame.new(math.random(-8,-2),0,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.1,0.1),0,0.1,0,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7539. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(-40),math.rad(0)),.2)
  7540. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(1),math.rad(5)),.2)
  7541. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(40)),.3)
  7542. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-40)),.3)
  7543. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7544. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7545. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7546. end
  7547. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7548. hitb.Anchored = true
  7549. --hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7550. --MagniDamage(hitb, 4, 40,73, 0, "Normal",153092213)
  7551. slash(5,5,true,"Round","Add","Out",hitb.CFrame*CFrame.Angles(0,math.rad(math.random(-360,360)),0),vt(0.05,0.01,0.05),0.01,BrickColor.new("White"))
  7552. CFuncs["Sound"].Create("rbxassetid://200633196", rarmor, 1, 1.05)
  7553. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1.5, 1.025)
  7554. CFuncs["Sound"].Create("rbxassetid://234365549", rarmor, 1, 1)
  7555. for i = 0, 2, 0.1 do
  7556. swait()
  7557. --sphere2(5,"Add",rarmor.CFrame*CFrame.new(math.random(-8,-2),0,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.1,0.1),0,0.1,0,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7558. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-20)),.2)
  7559. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(50),math.rad(0)),.2)
  7560. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
  7561. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(50)),.3)
  7562. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(70)),.3)
  7563. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7564. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7565. end
  7566. hitb:Destroy()
  7567. hum.WalkSpeed = 24
  7568. OWS = hum.WalkSpeed
  7569. attack = false
  7570. end
  7571.  
  7572. function unequip()
  7573. attack = true
  7574. equipped = false
  7575. hum.WalkSpeed = 0
  7576. hum.WalkSpeed = 16
  7577. OWS = hum.WalkSpeed
  7578. tl1.Enabled = false
  7579. CFuncs["Sound"].Create("rbxassetid://200633029", rarmor, 1, 1)
  7580. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.5)
  7581. weaponweld.Part0 = tors
  7582. attack = false
  7583. end
  7584.  
  7585. ------------------
  7586. function attackone()
  7587. attack = true
  7588. hum.WalkSpeed = 4
  7589. for i = 0, 2, 0.1 do
  7590. swait()
  7591. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(-40),math.rad(0)),.2)
  7592. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(1),math.rad(5)),.2)
  7593. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(40)),.3)
  7594. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-40)),.3)
  7595. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7596. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7597. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7598. end
  7599. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7600. hitb.Anchored = true
  7601. --hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7602. --MagniDamage(hitb, 4, 24,30, 0, "Normal",153092213)
  7603. CFuncs["Sound"].Create("rbxassetid://200633196", rarmor, 1, 1.05)
  7604. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1.5, 1.025)
  7605. CFuncs["Sound"].Create("rbxassetid://234365549", rarmor, 1, 1)
  7606. for i = 0, 1, 0.1 do
  7607. swait()
  7608. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-20)),.2)
  7609. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(50),math.rad(0)),.2)
  7610. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
  7611. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(50)),.3)
  7612. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(70)),.3)
  7613. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7614. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7615. end
  7616. hitb:Destroy()
  7617. attack = false
  7618. hum.WalkSpeed = 24
  7619. end
  7620. function attacktwo()
  7621. attack = true
  7622. hum.WalkSpeed = 4
  7623. for i = 0, 1, 0.1 do
  7624. swait()
  7625. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7626. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(20),math.rad(5)),.2)
  7627. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7628. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(40)),.3)
  7629. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7630. LW.C0=clerp(LW.C0,cf(-0.5,0.5,-0.25)*angles(math.rad(90),math.rad(0),math.rad(40)),.3)
  7631. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(0)),.3)
  7632. end
  7633. --local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7634. --hitb.Anchored = true
  7635. --hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7636. --MagniDamage(hitb, 4, 24,30, 0, "Normal",153092213)
  7637. CFuncs["Sound"].Create("rbxassetid://200633281", rarmor, 1, 1.05)
  7638. CFuncs["Sound"].Create("rbxassetid://161006195", rarmor, 1.5, 1.025)
  7639. for i = 0, 1, 0.1 do
  7640. swait()
  7641. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(-30),math.rad(0)),.2)
  7642. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(20)),.2)
  7643. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(90)),.3)
  7644. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-90)),.3)
  7645. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(20)),.3)
  7646. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7647. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(70)),.3)
  7648. end
  7649. attack = false
  7650. hum.WalkSpeed = 24
  7651. end
  7652. function attackthree()
  7653. attack = true
  7654. hum.WalkSpeed = 4
  7655. for i = 0, 1, 0.1 do
  7656. swait()
  7657. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(-30),math.rad(0)),.2)
  7658. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(5)),.2)
  7659. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  7660. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(60)),.3)
  7661. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-30),math.rad(0),math.rad(53)),.3)
  7662. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(10),math.rad(0),math.rad(-10)),.3)
  7663. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.3)
  7664. end
  7665. for x = 0, 2 do
  7666. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1, 1.05)
  7667. CFuncs["Sound"].Create("rbxassetid://234365573", rarmor, 1.5, 1.025)
  7668. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7669. --hitb.Anchored = true
  7670. --hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7671. --MagniDamage(hitb, 4, 12,15, 0, "Normal",153092213)
  7672. for i = 0, 1, 0.6 do
  7673. swait()
  7674. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-10)),.2)
  7675. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(40),math.rad(20)),.2)
  7676. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7677. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7678. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7679. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7680. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(30),math.rad(90)),.3)
  7681. end
  7682. for i = 0, 1, 0.6 do
  7683. swait()
  7684. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-10)),.2)
  7685. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(40),math.rad(20)),.2)
  7686. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7687. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7688. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7689. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7690. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(180)),.3)
  7691. end
  7692. for i = 0, 1, 0.6 do
  7693. swait()
  7694. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-10)),.2)
  7695. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(40),math.rad(20)),.2)
  7696. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7697. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7698. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7699. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7700. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(-30),math.rad(270)),.3)
  7701. end
  7702. for i = 0, 1, 0.6 do
  7703. swait()
  7704. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-10)),.2)
  7705. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(40),math.rad(20)),.2)
  7706. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7707. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7708. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7709. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7710. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7711. end
  7712. end
  7713. attack = false
  7714. hum.WalkSpeed = 24
  7715. end
  7716. ------------------
  7717. function spinnyblade()
  7718. attack = true
  7719. hum.WalkSpeed = 1
  7720. hum.JumpPower = 0
  7721. CFuncs["Sound"].Create("rbxassetid://1368583274", root, 4.5, 1)
  7722. local bgui = Instance.new("BillboardGui",root)
  7723. bgui.Size = UDim2.new(25, 0, 25, 0)
  7724. local imgc = Instance.new("ImageLabel",bgui)
  7725. imgc.BackgroundTransparency = 1
  7726. imgc.ImageTransparency = 1
  7727. imgc.Size = UDim2.new(1,0,1,0)
  7728. imgc.Image = "rbxassetid://997291547"
  7729. imgc.ImageColor3 = Color3.new(0,0.5,1)
  7730. local imgc2 = imgc:Clone()
  7731. imgc2.Parent = bgui
  7732. imgc2.Position = UDim2.new(-0.5,0,-0.5,0)
  7733. imgc2.Size = UDim2.new(2,0,2,0)
  7734. imgc2.ImageColor3 = Color3.new(0.5,0,1)
  7735. for i = 0, 10, 0.1 do
  7736. swait()
  7737. imgc.ImageTransparency = imgc.ImageTransparency - 0.01
  7738. imgc.Rotation = imgc.Rotation + 1
  7739. imgc2.ImageTransparency = imgc2.ImageTransparency - 0.01
  7740. imgc2.Rotation = imgc2.Rotation - 1
  7741. bgui.Size = bgui.Size - UDim2.new(0.25, 0, 0.25, 0)
  7742. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-10,10)),math.rad(math.random(-360,360)),math.rad(math.random(-10,10))),vt(0.1,0.01,0.1),math.random(25,50)/250,BrickColor.new("White"))
  7743. sphere2(5,"Add",rarmor.CFrame*CFrame.new(math.random(-8,-2),0,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.1,0.1),0,0.1,0,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7744. hum.CameraOffset = vt(math.random(-10,10)/50,math.random(-10,10)/50,math.random(-10,10)/50)
  7745. sphereMK(5,math.random(4,25)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-10,10)),math.rad(math.random(-10,10)),math.rad(math.random(-10,10))),0.75,0.75,20,-0.0075,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color,0)
  7746. sphereMK(5,math.random(1,15)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-25,25)),math.rad(math.random(-25,25)),math.rad(math.random(-25,25))),0.75,0.75,20,-0.0075,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color,0)
  7747. waveEff(5,"Add","In",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(0,math.rad(math.random(-360,360)),0),vt(15,0.25,15),-0.075,0.05,BrickColor.new("White"))
  7748. RH.C0=clerp(RH.C0,cf(1,-0.5,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(-40),math.rad(10)),.2)
  7749. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(1),math.rad(20)),.2)
  7750. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.2,-0.3)*angles(math.rad(10),math.rad(0),math.rad(50)),.3)
  7751. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(-50)),.3)
  7752. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7753. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7754. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7755. end
  7756. imgc.ImageTransparency = 1
  7757. hum.CameraOffset = vt(0,0,0)
  7758. waveEff(2,"Add","Out",root.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(6,10,6),0.5,0.8,BrickColor.new("White"))
  7759. waveEff(3,"Add","Out",root.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(6,10,6),0.5,0.4,BrickColor.new("White"))
  7760. waveEff(4,"Add","Out",root.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(6,10,6),0.5,0.2,BrickColor.new("White"))
  7761. waveEff(5,"Add","Out",root.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(6,10,6),0.5,0.1,BrickColor.new("White"))
  7762. waveEff(6,"Add","Out",root.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(6,10,6),0.5,0.05,BrickColor.new("White"))
  7763. for i = 0, 9 do
  7764. slash(math.random(10,25)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,0,math.random(-30,15))*CFrame.Angles(math.rad(90 + math.random(-10,10)),math.rad(math.random(-360,360)),math.rad(math.random(-10,10))),vt(0.1,0.01,0.1),math.random(75,250)/250,BrickColor.new("White"))
  7765. end
  7766. CFuncs["Sound"].Create("rbxassetid://430315987", root, 1.5, 1)
  7767. CFuncs["Sound"].Create("rbxassetid://1295446488", root, 3, 1)
  7768. for x = 0, 14 do
  7769. CFuncs["Sound"].Create("rbxassetid://200633281", rarmor, 1, 1.05)
  7770. CFuncs["Sound"].Create("rbxassetid://161006195", rarmor, 1.5, 1.025)
  7771. --MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7772. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7773. slash(5,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,3,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.05,0.01,0.05),math.random(1,10)/100,BrickColor.new("White"))
  7774. for i = 0, 1, 0.6 do
  7775. swait()
  7776. sphereMK(2,-1,"Add",root.CFrame*CFrame.new(math.random(-8,8),math.random(-8,8),math.random(-3,8))*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)),0.5,0.5,math.random(5,25),-0.0075,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color,0)
  7777. root.CFrame = root.CFrame + root.CFrame.lookVector*2
  7778. root.Velocity = vt(0,0,0)
  7779. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7780. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7781. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  7782. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7783. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7784. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7785. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7786. end
  7787. slash(5,2.5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,3,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.05,0.01,0.05),math.random(1,10)/100,BrickColor.new("White"))
  7788. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7789. --MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7790. for i = 0, 1, 0.6 do
  7791. swait()
  7792. sphereMK(2,-1,"Add",root.CFrame*CFrame.new(math.random(-8,8),math.random(-8,8),math.random(-3,8))*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)),0.5,0.5,math.random(5,25),-0.0075,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color,0)
  7793. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7794. root.Velocity = vt(0,0,0)
  7795. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7796. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7797. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7798. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7799. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7800. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7801. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7802. end
  7803. slash(5,2.5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,3,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.05,0.01,0.05),math.random(1,10)/100,BrickColor.new("White"))
  7804. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7805. --MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7806. for i = 0, 1, 0.6 do
  7807. swait()
  7808. sphereMK(2,-1,"Add",root.CFrame*CFrame.new(math.random(-8,8),math.random(-8,8),math.random(-3,8))*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)),0.5,0.5,math.random(5,25),-0.0075,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color,0)
  7809. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7810. root.Velocity = vt(0,0,0)
  7811. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7812. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7813. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(180),math.rad(0),math.rad(90)),.3)
  7814. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7815. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7816. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7817. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7818. end
  7819. slash(5,2.5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,3,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.05,0.01,0.05),math.random(1,10)/100,BrickColor.new("White"))
  7820. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7821. MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7822. for i = 0, 1, 0.6 do
  7823. swait()
  7824. sphereMK(2,-1,"Add",root.CFrame*CFrame.new(math.random(-8,8),math.random(-8,8),math.random(-3,8))*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)),0.5,0.5,math.random(5,25),-0.0075,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color,0)
  7825. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7826. root.Velocity = vt(0,0,0)
  7827. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7828. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.2)
  7829. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(270),math.rad(0),math.rad(90)),.3)
  7830. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7831. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7832. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7833. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7834. end
  7835. end
  7836. hum.WalkSpeed = 0
  7837. for i = 0, 5, 0.1 do
  7838. swait()
  7839. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-20)),.2)
  7840. LH.C0=clerp(LH.C0,cf(-1,-0.6,-0.5)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(20),math.rad(-12)),.2)
  7841. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.2,-0.35)*angles(math.rad(10),math.rad(0),math.rad(-40)),.2)
  7842. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(40)),.2)
  7843. RW.C0=clerp(RW.C0,cf(1.45,0.5,0)*angles(math.rad(90),math.rad(0),math.rad(110)),.2)
  7844. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0)*angles(math.rad(45),math.rad(0),math.rad(-20)),.2)
  7845. weaponweld.C1=clerp(weaponweld.C1,cf(2,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.2)
  7846. end
  7847. bgui:Destroy()
  7848. attack = false
  7849. hum.WalkSpeed = 24
  7850. hum.JumpPower = 50
  7851. end
  7852.  
  7853. function eightbitmegablade()
  7854. attack = true
  7855. hum.WalkSpeed = 0
  7856. hum.JumpPower = 0
  7857. CFuncs["Sound"].Create("rbxassetid://1368583274", larm, 4.5, 1.2)
  7858. local OverCut = false
  7859. cam.CameraSubject = Humanoid
  7860. cam.CameraType = "Scriptable"
  7861. coroutine.resume(coroutine.create(function()
  7862. while true do
  7863. swait()
  7864. if OverCut == false then
  7865. cam.CFrame = lerp(cam.CFrame, root.CFrame * cf(1, 1.5, -6) * ceuler(math.rad(10), math.rad(170), math.rad(-20)), 0.1)
  7866. else
  7867. break
  7868. end
  7869. end
  7870. end))
  7871. for i = 0, 10, 0.1 do
  7872. swait()
  7873. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.05,0.01,0.05),math.random(25,50)/250,BrickColor.new("White"))
  7874. sphere2(5,"Add",larm.CFrame*CFrame.new(0,-1.5,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(1,1,1),-0.01,0.1,-0.01,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7875. slash(math.random(20,40)/10,5,true,"Round","Add","Out",larm.CFrame*CFrame.new(0,-1.5,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.025,0.001,0.025),-0.025,BrickColor.new("White"))
  7876. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-6),math.rad(0),math.rad(-6)),.3)
  7877. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(30),math.rad(3)),.3)
  7878. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
  7879. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-15),math.rad(5),math.rad(50)),.3)
  7880. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-40),math.rad(20)),.3)
  7881. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(170),math.rad(10),math.rad(0)),.3)
  7882. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7883. end
  7884. OverCut = true
  7885. local orb = Instance.new("Part", char)
  7886. orb.Anchored = true
  7887. orb.BrickColor = BrickColor.new("Toothpaste")
  7888. orb.CanCollide = false
  7889. orb.FormFactor = 3
  7890. orb.Name = "Ring"
  7891. orb.Material = "Neon"
  7892. orb.Size = Vector3.new(1, 1, 1)
  7893. orb.Transparency = 0.5
  7894. orb.TopSurface = 0
  7895. orb.BottomSurface = 0
  7896. local orbm = Instance.new("SpecialMesh", orb)
  7897. orbm.MeshType = "FileMesh"
  7898. orbm.MeshId = "rbxassetid://361629844"
  7899. orbm.Scale = vt(30,60,60)
  7900. orb.CFrame = root.CFrame*CFrame.new(0,50,0)
  7901. for i = 0, 24 do
  7902. slash(math.random(10,30)/10,5,true,"Round","Add","Out",orb.CFrame*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.001,0.1),math.random(50,400)/420,BrickColor.new("White"))
  7903. end
  7904. sphere2(2,"Add",orb.CFrame,vt(10,10,10),0.5,0.5,0.5,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7905. sphere2(3,"Add",orb.CFrame,vt(10,10,10),0.75,0.75,0.75,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7906. sphere2(4,"Add",orb.CFrame,vt(10,10,10),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7907. CFuncs["Sound"].Create("rbxassetid://1368637781", orb, 7.5, 1)
  7908. local a = Instance.new("Part",workspace)
  7909. a.Name = "Direction"
  7910. a.Anchored = true
  7911. a.Transparency = 1
  7912. a.CanCollide = false
  7913. local ray = Ray.new(
  7914. orb.CFrame.p, -- origin
  7915. (mouse.Hit.p - orb.CFrame.p).unit * 500 -- direction
  7916. )
  7917. local ignore = orb
  7918. local hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  7919. a.BottomSurface = 10
  7920. a.TopSurface = 10
  7921. local distance = (orb.CFrame.p - position).magnitude
  7922. a.Size = Vector3.new(0.1, 0.1, 0.1)
  7923. a.CFrame = CFrame.new(orb.CFrame.p, position) * CFrame.new(0, 0, 0)
  7924. orb.CFrame = a.CFrame
  7925. for i = 0, 8, 0.1 do
  7926. swait()
  7927. sphere2(5,"Add",orb.CFrame*CFrame.new(math.random(-20,20),math.random(-20,20),math.random(-20,20)),vt(1,1,1),0.01,0.01,0.01,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7928. ray = Ray.new(
  7929. orb.CFrame.p, -- origin
  7930. (mouse.Hit.p - orb.CFrame.p).unit * 500 -- direction
  7931. )
  7932. hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  7933. distance = (orb.CFrame.p - position).magnitude
  7934. a.CFrame = CFrame.new(orb.CFrame.p, position) * CFrame.new(0, 0, 0)
  7935. orb.CFrame = a.CFrame
  7936. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.05,0.01,0.05),math.random(25,50)/250,BrickColor.new("White"))
  7937. cam.CFrame = lerp(cam.CFrame, root.CFrame * cf(20, 65, 55) * ceuler(math.rad(-20), math.rad(0), math.rad(10)), 0.2)
  7938. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-6),math.rad(0),math.rad(-6)),.3)
  7939. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(40),math.rad(3)),.3)
  7940. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  7941. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  7942. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-20),math.rad(20)),.3)
  7943. LW.C0=clerp(LW.C0,cf(-1.25,0.5,-0.5)*angles(math.rad(100),math.rad(0),math.rad(60)),.3)
  7944. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7945. end
  7946. cam.CameraType = "Custom"
  7947. orb.Anchored = false
  7948. a:Destroy()
  7949. local bv = Instance.new("BodyVelocity")
  7950. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  7951. bv.velocity = orb.CFrame.lookVector*250
  7952. bv.Parent = orb
  7953. local hitted = false
  7954. CFuncs["Sound"].Create("rbxassetid://466493476", orb, 7.5, 0.7)
  7955. waveEff(2,"Add","Out",orb.CFrame*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(5,1,5),0.5,0.1,BrickColor.new("Cyan"))
  7956. waveEff(4,"Add","Out",orb.CFrame*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(5,1,5),0.5,0.05,BrickColor.new("Royal purple"))
  7957. coroutine.resume(coroutine.create(function()
  7958. while true do
  7959. swait(2)
  7960. if hitted == false and orb.Parent ~= nil then
  7961. slash(3,5,true,"Round","Add","Out",orb.CFrame*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(0.075,0.005,0.075),-0.05,BrickColor.new("White"))
  7962. elseif hitted == true and orb.Parent == nil then
  7963. break
  7964. end
  7965. end
  7966. end))
  7967. orb.Touched:connect(function(hit)
  7968. if hitted == false and hit.Parent ~= char then
  7969. hitted = true
  7970. MagniDamage(orb, 30, 72,95, 0, "Normal",153092213)
  7971. CFuncs["Sound"].Create("rbxassetid://763717897", orb, 10, 1)
  7972. CFuncs["Sound"].Create("rbxassetid://1295446488", orb, 9, 0.75)
  7973. for i = 0, 24 do
  7974. slash(math.random(15,30)/10,5,true,"Round","Add","Out",orb.CFrame*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.01,0.001,0.01),math.random(125,250)/400,BrickColor.new("White"))
  7975. end
  7976. slash(1,5,true,"Round","Add","Out",orb.CFrame*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(0.01,0.015,0.01),1.5,BrickColor.new("White"))
  7977. slash(1,5,true,"Round","Add","Out",orb.CFrame*CFrame.Angles(math.rad(90),math.rad(math.random(-360,360)),0),vt(0.01,0.01,0.01),2,BrickColor.new("White"))
  7978. sphere2(1,"Add",orb.CFrame,vt(10,10,10),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7979. sphere2(1.5,"Add",orb.CFrame,vt(10,10,10),1.1,1.1,1.1,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7980. sphere2(2,"Add",orb.CFrame,vt(10,10,10),1.2,1.2,1.2,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7981. orb.Anchored = true
  7982. orb.Transparency = 1
  7983. coroutine.resume(coroutine.create(function()
  7984. for i = 0, 4, 0.1 do
  7985. swait()
  7986. slash(math.random(10,50)/10,5,true,"Round","Add","Out",orb.CFrame*CFrame.Angles(math.rad(90 + math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.01,0.015,0.01),1.5,BrickColor.new("Royal purple"))
  7987. hum.CameraOffset = vt(math.random(-10,10)/25,math.random(-10,10)/25,math.random(-10,10)/25)
  7988. end
  7989. hum.CameraOffset = vt(0,0,0)
  7990. end))
  7991. wait(10)
  7992. orb:Destroy()
  7993. end
  7994. end)
  7995. game:GetService("Debris"):AddItem(orb, 10)
  7996. for i = 0, 2, 0.1 do
  7997. swait()
  7998. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.05,0.01,0.05),math.random(25,50)/250,BrickColor.new("White"))
  7999. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-6),math.rad(0),math.rad(-6)),.3)
  8000. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(30),math.rad(3)),.3)
  8001. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.4,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  8002. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  8003. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-40),math.rad(20)),.3)
  8004. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-80)),.3)
  8005. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  8006. end
  8007. attack = false
  8008. hum.WalkSpeed = 24
  8009. hum.JumpPower = 50
  8010. end
  8011.  
  8012. function bladespinagain()
  8013. attack = true
  8014. hum.WalkSpeed = 4
  8015. hum.JumpPower = 0
  8016. CFuncs["Sound"].Create("rbxassetid://1368598393", rarmor, 2, 1)
  8017. CFuncs["Sound"].Create("rbxassetid://1368583274", rarmor, 2.5, 1)
  8018. for x = 0, 9 do
  8019. slash(5,5,true,"Round","Add","Out",rarmor.CFrame*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),vt(0.05,0.01,0.05),0.05,BrickColor.new("White"))
  8020. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 2, 1.05)
  8021. CFuncs["Sound"].Create("rbxassetid://234365573", rarmor, 2.5, 1.025)
  8022. for i = 0, 1, 0.6 do
  8023. swait()
  8024. sphereMK(5,math.random(4,25)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-10,10)),math.rad(math.random(-10,10)),math.rad(math.random(-10,10))),0.75,0.75,20,-0.0075,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color,0)
  8025. sphereMK(5,math.random(1,15)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-25,25)),math.rad(math.random(-25,25)),math.rad(math.random(-25,25))),0.75,0.75,20,-0.0075,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color,0)
  8026. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.05,0.01,0.05),math.random(25,50)/250,BrickColor.new("White"))
  8027. sphere2(5,"Add",rarmor.CFrame*CFrame.new(math.random(-8,-2),0,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.1,0.1),0,0.1,0,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8028. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8029. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-10)),.2)
  8030. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(30),math.rad(0)),.2)
  8031. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  8032. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  8033. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  8034. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  8035. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  8036. end
  8037. slash(5,5,true,"Round","Add","Out",rarmor.CFrame*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),vt(0.05,0.01,0.05),0.05,BrickColor.new("White"))
  8038. for i = 0, 1, 0.6 do
  8039. swait()
  8040. sphereMK(5,math.random(4,25)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-10,10)),math.rad(math.random(-10,10)),math.rad(math.random(-10,10))),0.75,0.75,20,-0.0075,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color,0)
  8041. sphereMK(5,math.random(1,15)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-25,25)),math.rad(math.random(-25,25)),math.rad(math.random(-25,25))),0.75,0.75,20,-0.0075,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color,0)
  8042. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.05,0.01,0.05),math.random(25,50)/250,BrickColor.new("White"))
  8043. sphere2(5,"Add",rarmor.CFrame*CFrame.new(math.random(-8,-2),0,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.1,0.1),0,0.1,0,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8044. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8045. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-10)),.2)
  8046. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(30),math.rad(0)),.2)
  8047. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  8048. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  8049. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  8050. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  8051. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
  8052. end
  8053. slash(5,5,true,"Round","Add","Out",rarmor.CFrame*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),vt(0.05,0.01,0.05),0.05,BrickColor.new("White"))
  8054. for i = 0, 1, 0.6 do
  8055. swait()
  8056. sphereMK(5,math.random(4,25)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-10,10)),math.rad(math.random(-10,10)),math.rad(math.random(-10,10))),0.75,0.75,20,-0.0075,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color,0)
  8057. sphereMK(5,math.random(1,15)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-25,25)),math.rad(math.random(-25,25)),math.rad(math.random(-25,25))),0.75,0.75,20,-0.0075,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color,0)
  8058. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.05,0.01,0.05),math.random(25,50)/250,BrickColor.new("White"))
  8059. sphere2(5,"Add",rarmor.CFrame*CFrame.new(math.random(-8,-2),0,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.1,0.1),0,0.1,0,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8060. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8061. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-10)),.2)
  8062. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(30),math.rad(0)),.2)
  8063. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  8064. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  8065. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  8066. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  8067. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(0)),.3)
  8068. end
  8069. slash(5,5,true,"Round","Add","Out",rarmor.CFrame*CFrame.new(0,0,0)*CFrame.Angles(0,0,0),vt(0.05,0.01,0.05),0.05,BrickColor.new("White"))
  8070. for i = 0, 1, 0.6 do
  8071. swait()
  8072. sphereMK(5,math.random(4,25)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-10,10)),math.rad(math.random(-10,10)),math.rad(math.random(-10,10))),0.75,0.75,20,-0.0075,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color,0)
  8073. sphereMK(5,math.random(1,15)/45,"Add",root.CFrame*CFrame.new(math.random(-15,15),-20,math.random(-15,15))*CFrame.Angles(math.rad(90 + math.random(-25,25)),math.rad(math.random(-25,25)),math.rad(math.random(-25,25))),0.75,0.75,20,-0.0075,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color,0)
  8074. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.05,0.01,0.05),math.random(25,50)/250,BrickColor.new("White"))
  8075. sphere2(5,"Add",rarmor.CFrame*CFrame.new(math.random(-8,-2),0,0)*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360))),vt(0.1,0.1,0.1),0,0.1,0,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8076. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8077. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-10)),.2)
  8078. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(30),math.rad(0)),.2)
  8079. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  8080. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  8081. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  8082. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  8083. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(270),math.rad(0)),.3)
  8084. end
  8085. end
  8086. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  8087. hitb.Anchored = true
  8088. hitb.CFrame = root.CFrame + root.CFrame.lookVector*8
  8089. hitb.CFrame = hitb.CFrame*CFrame.new(0,1,0)
  8090. MagniDamage(hitb, 8, 92,158, 0, "Normal",153092213)
  8091. sphere2(5,"Add",hitb.CFrame,vt(2.1,2.1,2),-0.02,-0.02,5,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  8092. sphere2(5,"Add",hitb.CFrame,vt(2,2,2),-0.02,-0.02,4,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8093. for i = 0, 24 do
  8094. slash(math.random(20,100)/10,5,true,"Round","Add","Out",hitb.CFrame*CFrame.new(0,0,math.random(-60,60))*CFrame.Angles(math.rad(90),0,0),vt(0.01,0.01,0.01),math.random(10,100)/1000,BrickColor.new("White"))
  8095. end
  8096. CFuncs["Sound"].Create("rbxassetid://313205954", root, 4,1)
  8097. CFuncs["Sound"].Create("rbxassetid://1368637781", rarmor, 4,1)
  8098. CFuncs["Sound"].Create("rbxassetid://763718160", rarmor, 5, 1.1)
  8099. CFuncs["Sound"].Create("rbxassetid://782353443", rarmor, 6, 1)
  8100. --CFuncs["Sound"].Create("rbxassetid://1548538202", rarmor, 4,1)
  8101. for i = 0, 2, 0.1 do
  8102. swait()
  8103. MagniDamage(hitb, 8, 92,158, 0, "Normal",153092213)
  8104. hum.CameraOffset = vt(math.random(-10,10)/25,math.random(-10,10)/25,math.random(-10,10)/25)
  8105. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(-20),math.rad(-10)),.9)
  8106. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(0)),.9)
  8107. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.5,0)*angles(math.rad(0),math.rad(0),math.rad(80)),.9)
  8108. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.9)
  8109. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(70)),.9)
  8110. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-60)),.9)
  8111. weaponweld.C1=clerp(weaponweld.C1,cf(2,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.9)
  8112. end
  8113. hum.CameraOffset = vt(0,0,0)
  8114. hitb:Destroy()
  8115. attack = false
  8116. hum.WalkSpeed = 24
  8117. hum.JumpPower = 50
  8118. end
  8119.  
  8120. function superjump()
  8121. attack = true
  8122. hum.WalkSpeed = 0
  8123. hum.JumpPower = 0
  8124. wng1a.Transparency = wng1a.Transparency - 1
  8125. wng1b.Transparency = wng1b.Transparency - 1
  8126. wng2a.Transparency = wng2a.Transparency - 1
  8127. wng2b.Transparency = wng2b.Transparency - 1
  8128. sphere2(5,"Add",root.CFrame,vt(1,1,1),1.5,1.5,1.5,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  8129. sphere2(5,"Add",root.CFrame,vt(1,1,1),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8130. CFuncs["Sound"].Create("rbxassetid://1368637781", root, 7.5, 1)
  8131. for i = 0, 2, 0.1 do
  8132. swait()
  8133. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8134. root.Velocity = vt(0,0,0)
  8135. slash(math.random(50,100)/10,5,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-5,5)),math.rad(math.random(-360,360)),math.rad(math.random(-5,5))),vt(0.05,0.01,0.05),math.random(25,250)/250,BrickColor.new("White"))
  8136. RH.C0=clerp(RH.C0,cf(1,-0.45,-0.45)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(20)),.4)
  8137. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(40)),.4)
  8138. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.5,-1)*angles(math.rad(20),math.rad(0),math.rad(0)),.4)
  8139. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(0)),.4)
  8140. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(40)),.4)
  8141. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-40)),.4)
  8142. end
  8143. CFuncs["Sound"].Create("rbxassetid://477843807", root, 7, 1.05)
  8144. local lat1 = Instance.new("Attachment",larm)
  8145. lat1.Position = Vector3.new(1,-1,0.5)
  8146. local lat2 = Instance.new("Attachment",larm)
  8147. lat2.Position = Vector3.new(-1,-1,-0.5)
  8148. local rat1 = Instance.new("Attachment",rarm)
  8149. rat1.Position = Vector3.new(1,-1,-0.5)
  8150. local rat2 = Instance.new("Attachment",rarm)
  8151. rat2.Position = Vector3.new(-1,-1,0.5)
  8152. local tl1 = Instance.new('Trail',larm)
  8153. tl1.Attachment0 = lat1
  8154. tl1.Attachment1 = lat2
  8155. tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  8156. tl1.LightEmission = 1
  8157. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.05, 0),NumberSequenceKeypoint.new(1, 1)})
  8158. tl1.Color = ColorSequence.new(BrickColor.new('Royal purple').Color,BrickColor.new('Cyan').Color)
  8159. tl1.Lifetime = 5
  8160. local tl2 = tl1:Clone()
  8161. tl2.Attachment0 = rat1
  8162. tl2.Attachment1 = rat2
  8163. tl2.Parent = rarm
  8164. hum.JumpPower = 50
  8165. hum.Jump = true
  8166. swait()
  8167. hum.JumpPower = 0
  8168. root.Velocity = vt(0,250,0) + root.CFrame.lookVector*250
  8169. sphere2(5,"Add",root.CFrame*CFrame.Angles(math.rad(-45),0,0),vt(25,1,25),0.3,5,0.3,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  8170. sphere2(5,"Add",root.CFrame*CFrame.Angles(math.rad(-45),0,0),vt(25,1,25),0.2,4,0.2,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8171. for i = 0, 49 do
  8172. waveEff(math.random(10,100)/10,"Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(0,math.rad(math.random(-360,360)),0),vt(15,0.25,15),math.random(25,250)/250,0.25,BrickColor.new("White"))
  8173. slash(math.random(10,100)/10,3,true,"Round","Add","Out",root.CFrame*CFrame.new(0,-3,0)*CFrame.Angles(math.rad(math.random(-10,10)),math.rad(math.random(-360,360)),math.rad(math.random(-10,10))),vt(0.01,0.01,0.01),math.random(50,500)/250,BrickColor.new("White"))
  8174. end
  8175. coroutine.resume(coroutine.create(function()
  8176. for i = 0, 2, 0.1 do
  8177. swait()
  8178. hum.CameraOffset = vt(math.random(-10,10)/50,math.random(-10,10)/50,math.random(-10,10)/50)
  8179. end
  8180. hum.CameraOffset = vt(0,0,0)
  8181. wait(3)
  8182. tl1.Enabled = false
  8183. tl2.Enabled = false
  8184. game:GetService("Debris"):AddItem(tl1, 5)
  8185. game:GetService("Debris"):AddItem(tl2, 5)
  8186. game:GetService("Debris"):AddItem(rat1, 5)
  8187. game:GetService("Debris"):AddItem(rat2, 5)
  8188. game:GetService("Debris"):AddItem(lat1, 5)
  8189. game:GetService("Debris"):AddItem(lat2, 5)
  8190. end))
  8191. CFuncs["Sound"].Create("rbxassetid://1295446488", root, 10, 1)
  8192. for i = 0, 3, 0.1 do
  8193. swait()
  8194. RH.C0=clerp(RH.C0,cf(1,-0.45,-0.45)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(-20)),.4)
  8195. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3),math.rad(0),math.rad(30)),.4)
  8196. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.75,0)*angles(math.rad(40),math.rad(0),math.rad(0)),.4)
  8197. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-20),math.rad(0),math.rad(0)),.4)
  8198. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-30),math.rad(0),math.rad(20)),.4)
  8199. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(-30),math.rad(0),math.rad(-20)),.4)
  8200. end
  8201. coroutine.resume(coroutine.create(function()
  8202. for i = 0, 99 do
  8203. swait()
  8204. wng1a.Transparency = wng1a.Transparency + 0.01
  8205. wng1b.Transparency = wng1b.Transparency + 0.01
  8206. wng2a.Transparency = wng2a.Transparency + 0.01
  8207. wng2b.Transparency = wng2b.Transparency + 0.01
  8208. end
  8209. end))
  8210. attack = false
  8211. if equipped == false then
  8212. hum.WalkSpeed = 16
  8213. else
  8214. hum.WalkSpeed = 24
  8215. end
  8216. hum.JumpPower = 50
  8217. end
  8218. ------------------
  8219.  
  8220.  
  8221. local attacktype = 1
  8222. mouse.Button1Down:connect(function()
  8223. if equipped == true then
  8224. if attack == false and attacktype == 1 then
  8225. attacktype = 2
  8226. attackone()
  8227. elseif attack == false and attacktype == 2 then
  8228. attacktype = 3
  8229. attacktwo()
  8230. elseif attack == false and attacktype == 3 then
  8231. attacktype = 1
  8232. attackthree()
  8233. --[[elseif attack == false and attacktype == 4 then
  8234. attacktype = 1
  8235. --attackfour()]]--
  8236. end
  8237. end
  8238. end)
  8239. mouse.KeyDown:connect(function(k)
  8240. if k == "f" and attack == false and equipped == false then
  8241. equip()
  8242. elseif k == "f" and attack == false and equipped == true then
  8243. unequip()
  8244. end
  8245. if k == "r" and attack == false then
  8246. superjump()
  8247. end
  8248. if equipped == true then
  8249. if k == "z" and attack == false then
  8250. spinnyblade()
  8251. end
  8252. if k == "bozo" and attack == false then
  8253. eightbitmegablade()
  8254. end
  8255. if k == "c" and attack == false then
  8256. bladespinagain()
  8257. end
  8258. end
  8259. if k == "l" and muter == false then
  8260. muter = true
  8261. kan.Volume = 0
  8262. elseif k == "l" and muter == true then
  8263. muter = false
  8264. kan.Volume = 1.25
  8265. end
  8266. end)
  8267. plr.Chatted:connect(function(message)
  8268. if message:sub(1,3) == "id/" then
  8269. ORGID = message:sub(4)
  8270. kan.TimePosition = 0
  8271. kan:Play()
  8272. elseif message:sub(1,6) == "pitch/" then
  8273. ORPIT = message:sub(7)
  8274. elseif message:sub(1,4) == "vol/" then
  8275. ORVOL = message:sub(5)
  8276. elseif message:sub(1,7) == "skipto/" then
  8277. kan.TimePosition = message:sub(8)
  8278. end
  8279. end)
  8280.  
  8281. idleanim=.4
  8282. while true do
  8283. swait()
  8284. if muter == false then
  8285. kan.Volume = ORVOL
  8286. else
  8287. kan.Volume = 0
  8288. end
  8289. kan.PlaybackSpeed = ORPIT
  8290. kan.Pitch = ORPIT
  8291. kan.SoundId = "rbxassetid://" ..ORGID
  8292. kan.Looped = true
  8293. kan.Parent = plr.PlayerGui
  8294. kan:Resume()
  8295. techc.Rotation = techc.Rotation + 0.1
  8296. imgl2.Rotation = imgl2.Rotation - kan.PlaybackLoudness/50
  8297. imgl2.ImageColor3 = Color3.new(0.15 + kan.PlaybackLoudness/2500,0,0.6 + kan.PlaybackLoudness/1000)
  8298. imgl2b.Rotation = imgl2b.Rotation + kan.PlaybackLoudness/25
  8299. imgl2b.ImageColor3 = Color3.new(0,0.3 + kan.PlaybackLoudness/1500,0.6 + kan.PlaybackLoudness/1000)
  8300. ned.Rotation = 0 - 2 * math.cos(sine / 24)
  8301. ned.Position = UDim2.new(0.6,0 - 10 * math.cos(sine / 32),0.8,0 - 10 * math.cos(sine / 45))
  8302. sine = sine + change
  8303. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  8304. local velderp=RootPart.Velocity.y
  8305. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  8306. if equipped==true or equipped==false then
  8307. if attack==false then
  8308. idle=idle+1
  8309. else
  8310. idle=0
  8311. end
  8312. if idle>=500 then
  8313. if attack==false then
  8314. --Sheath()
  8315. end
  8316. end
  8317. if RootPart.Velocity.y > 1 and hitfloor==nil then
  8318. Anim="Jump"
  8319. if attack==false then
  8320. RH.C0=clerp(RH.C0,cf(1,-0.35 - 0.05 * math.cos(sine / 25),-0.75)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(-20)),.1)
  8321. LH.C0=clerp(LH.C0,cf(-1,-1 - 0.05 * math.cos(sine / 25),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(20)),.1)
  8322. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 25))*angles(math.rad(-tors.Velocity.Y/6),math.rad(0),math.rad(0)),.1)
  8323. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-2.5),math.rad(0),math.rad(0)),.1)
  8324. RW.C0=clerp(RW.C0,cf(1.45,0.5 + 0.1 * math.cos(sine / 25),0)*angles(math.rad(-5),math.rad(0),math.rad(25)),.1)
  8325. LW.C0=clerp(LW.C0,cf(-1.45,0.5 + 0.1 * math.cos(sine / 25),0)*angles(math.rad(-5),math.rad(0),math.rad(-25)),.1)
  8326. if equipped == false then
  8327. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  8328. else
  8329. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  8330. end
  8331. end
  8332. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  8333. Anim="Fall"
  8334. if attack==false then
  8335. RH.C0=clerp(RH.C0,cf(1,-0.35 - 0.05 * math.cos(sine / 25),-0.75)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(-20)),.1)
  8336. LH.C0=clerp(LH.C0,cf(-1,-1 - 0.05 * math.cos(sine / 25),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-5),math.rad(0),math.rad(20)),.1)
  8337. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0 + 0.05 * math.cos(sine / 25))*angles(math.rad(-tors.Velocity.Y/6),math.rad(0),math.rad(0)),.1)
  8338. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2.5),math.rad(0),math.rad(0)),.1)
  8339. RW.C0=clerp(RW.C0,cf(1.45,0.5 + 0.1 * math.cos(sine / 25),0)*angles(math.rad(-15),math.rad(0),math.rad(55)),.1)
  8340. LW.C0=clerp(LW.C0,cf(-1.45,0.5 + 0.1 * math.cos(sine / 25),0)*angles(math.rad(-15),math.rad(0),math.rad(-55)),.1)
  8341. if equipped == false then
  8342. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  8343. else
  8344. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  8345. end
  8346. end
  8347. elseif torvel<1 and hitfloor~=nil then
  8348. Anim="Idle"
  8349. if attack==false then
  8350. if equipped == false then
  8351. RH.C0=clerp(RH.C0,cf(1,-1 + 0.05 * math.cos(sine / 20) - 0.02 * math.cos(sine / 40),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3 + 2 * math.cos(sine / 40)),math.rad(-15),math.rad(0 + 2 * math.cos(sine / 20))),.1)
  8352. LH.C0=clerp(LH.C0,cf(-1,-1 + 0.05 * math.cos(sine / 20) - 0.02 * math.cos(sine / 40),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3 - 2 * math.cos(sine / 40)),math.rad(1),math.rad(0 - 2 * math.cos(sine / 20))),.1)
  8353. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0 + 0.02 * math.cos(sine / 40),0 - 0.02 * math.cos(sine / 40),-0.05 - 0.05 * math.cos(sine / 20))*angles(math.rad(0 + 2 * math.cos(sine / 20)),math.rad(0 + 2 * math.cos(sine / 40)),math.rad(30 + 3 * math.cos(sine / 40))),.1)
  8354. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0 - 7 * math.cos(sine / 40)),math.rad(-30 - 3 * math.cos(sine / 40))),.1)
  8355. RW.C0=clerp(RW.C0,cf(1.45,0.5 + 0.05 * math.cos(sine / 28),0.1)*angles(math.rad(-6 + 5 * math.cos(sine / 26)),math.rad(-10 - 6 * math.cos(sine / 24)),math.rad(13 - 5 * math.cos(sine / 34))),.1)
  8356. LW.C0=clerp(LW.C0,cf(-1.4,0.5 + 0.05 * math.cos(sine / 28),0.1)*angles(math.rad(-13 - 1 * math.cos(sine / 25)),math.rad(10 + 2 * math.cos(sine / 24)),math.rad(10 + 2 * math.cos(sine / 34))),.1)
  8357. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  8358. else
  8359. RH.C0=clerp(RH.C0,cf(1,-1 + 0.05 * math.cos(sine / 20) - 0.02 * math.cos(sine / 40),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(-3 + 2 * math.cos(sine / 40)),math.rad(0 - 6 * math.cos(sine / 40)),math.rad(-6 + 2 * math.cos(sine / 20) - 6 * math.cos(sine / 40))),.1)
  8360. LH.C0=clerp(LH.C0,cf(-1,-1 + 0.05 * math.cos(sine / 20) - 0.02 * math.cos(sine / 40),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(-3 - 2 * math.cos(sine / 40)),math.rad(10 - 6 * math.cos(sine / 40)),math.rad(3 - 2 * math.cos(sine / 20) - 3 * math.cos(sine / 40))),.1)
  8361. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0 + 0.02 * math.cos(sine / 40),0 - 0.06 * math.cos(sine / 40),-0.05 - 0.05 * math.cos(sine / 20))*angles(math.rad(0 + 2 * math.cos(sine / 20)),math.rad(0 + 2 * math.cos(sine / 40)),math.rad(-20 + 6 * math.cos(sine / 40))),.1)
  8362. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(6),math.rad(0 - 2 * math.cos(sine / 42)),math.rad(20 - 6 * math.cos(sine / 40))),.1)
  8363. RW.C0=clerp(RW.C0,cf(1.45,0.5 + 0.05 * math.cos(sine / 28),0.1)*angles(math.rad(-13 + 3 * math.cos(sine / 26)),math.rad(-20 - 3 * math.cos(sine / 24)),math.rad(20 - 5 * math.cos(sine / 34))),.1)
  8364. LW.C0=clerp(LW.C0,cf(-1.45,0.5 + 0.05 * math.cos(sine / 28),0.1)*angles(math.rad(-13 - 3 * math.cos(sine / 25)),math.rad(10 + 3 * math.cos(sine / 24)),math.rad(-10 + 5 * math.cos(sine / 34))),.1)
  8365. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  8366. end
  8367. end
  8368. elseif torvel>2 and torvel<42 and hitfloor~=nil then
  8369. Anim="Walk"
  8370. if attack==false then
  8371. if equipped == false then
  8372. RH.C0=clerp(RH.C0,cf(1,-1 + 0.05 * math.cos(sine / 4),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0 + 5 * math.cos(sine / 8)),math.rad(0 + 45 * math.cos(sine / 8))),.1)
  8373. LH.C0=clerp(LH.C0,cf(-1,-1 + 0.05 * math.cos(sine / 4),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0 + 5 * math.cos(sine / 8)),math.rad(0 + 45 * math.cos(sine / 8))),.1)
  8374. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.05,-0.05 + 0.05 * math.cos(sine / 4))*angles(math.rad(5 + 3 * math.cos(sine / 4)),math.rad(0 + root.RotVelocity.Y/1.5),math.rad(0 - root.RotVelocity.Y - 10 * math.cos(sine / 8))),.1)
  8375. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-5 - 5 * math.cos(sine / 4)),math.rad(0 + root.RotVelocity.Y/1.5),math.rad(0 - hed.RotVelocity.Y*1.5 + 10 * math.cos(sine / 8))),.1)
  8376. RW.C0=clerp(RW.C0,cf(1.5,0.5,0 + 0.25 * math.cos(sine / 8))*angles(math.rad(0 - 50 * math.cos(sine / 8)),math.rad(0),math.rad(5 - 10 * math.cos(sine / 4))),.1)
  8377. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0 - 0.25 * math.cos(sine / 8))*angles(math.rad(0 + 50 * math.cos(sine / 8)),math.rad(0),math.rad(-5 + 10 * math.cos(sine / 4))),.1)
  8378. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  8379. else
  8380. RH.C0=clerp(RH.C0,cf(1,-1 + 0.05 * math.cos(sine / 4),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0 + 5 * math.cos(sine / 8)),math.rad(0 + 60 * math.cos(sine / 8))),.1)
  8381. LH.C0=clerp(LH.C0,cf(-1,-1 + 0.05 * math.cos(sine / 4),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0 + 5 * math.cos(sine / 8)),math.rad(0 + 60 * math.cos(sine / 8))),.1)
  8382. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.05,0 + 0.15 * math.cos(sine / 4))*angles(math.rad(10 - 3 * math.cos(sine / 4)),math.rad(0 + root.RotVelocity.Y/1.5),math.rad(-10 - root.RotVelocity.Y - 5 * math.cos(sine / 8))),.1)
  8383. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5 + 3 * math.cos(sine / 4)),math.rad(0 + root.RotVelocity.Y/1.5 + 3 * math.cos(sine / 57)),math.rad(10 - hed.RotVelocity.Y*1.5 + 5 * math.cos(sine / 8))),.1)
  8384. RW.C0=clerp(RW.C0,cf(1.5,0.5,0 + 0.25 * math.cos(sine / 8))*angles(math.rad(-10),math.rad(0),math.rad(15 - 2 * math.cos(sine / 34))),.1)
  8385. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0 - 0.25 * math.cos(sine / 8))*angles(math.rad(0 + 50 * math.cos(sine / 8)),math.rad(0),math.rad(-5 + 10 * math.cos(sine / 4))),.1)
  8386. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(120 + 5 * math.cos(sine / 35)),math.rad(0)),.3)
  8387. end
  8388. end
  8389. elseif torvel>=42 and hitfloor~=nil then
  8390. Anim="Run"
  8391. if attack==false then
  8392. RH.C0=clerp(RH.C0,cf(1,-1 - 0.15 * math.cos(sine / 3),0)*angles(math.rad(0),math.rad(90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 85 * math.cos(sine / 6))),.1)
  8393. LH.C0=clerp(LH.C0,cf(-1,-1 - 0.15 * math.cos(sine / 3),0)*angles(math.rad(0),math.rad(-90),math.rad(0))*angles(math.rad(0),math.rad(0),math.rad(0 + 85 * math.cos(sine / 6))),.1)
  8394. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.3,-0.05 + 0.15 * math.cos(sine / 3))*angles(math.rad(15 - 4 * math.cos(sine / 3)),math.rad(0 + root.RotVelocity.Y*1.5),math.rad(0 - root.RotVelocity.Y - 10 * math.cos(sine / 6))),.1)
  8395. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-2.5 + 4 * math.cos(sine / 3)),math.rad(0 + root.RotVelocity.Y*1.5),math.rad(0 - hed.RotVelocity.Y*1.5 + 10 * math.cos(sine / 6))),.1)
  8396. RW.C0=clerp(RW.C0,cf(1.5,0.5,0 + 0.5 * math.cos(sine / 6))*angles(math.rad(0 - 140 * math.cos(sine / 6)),math.rad(0),math.rad(5 - 20 * math.cos(sine / 3))),.1)
  8397. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0 - 0.5 * math.cos(sine / 6))*angles(math.rad(0 + 140 * math.cos(sine / 6)),math.rad(0),math.rad(-5 + 20 * math.cos(sine / 3))),.1)
  8398. end
  8399. end
  8400. end
  8401. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement