Advertisement
Deyer

Nep V

Mar 13th, 2023
893
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 409.08 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. game.Players.LocalPlayer.Character["TooCoolFireFox"].Handle.SpecialMesh:Destroy()
  9.  
  10. local c = game.Players.LocalPlayer.Character
  11. for i, v in pairs({"Right Arm", "Left Arm"}) do
  12. local arm = c[v]
  13. arm.Parent = nil
  14. arm.Transparency = 1
  15. arm.Parent = c
  16. end
  17.  
  18. local c = game.Players.LocalPlayer.Character
  19. for i, v in pairs({"Right Leg", "Left Leg"}) do
  20. local Leg = c[v]
  21. Leg.Parent = nil
  22. Leg.Transparency = 1
  23. Leg.Parent = c
  24. end
  25.  
  26. local v3_net, v3_808 = Vector3.new(20000, 25.1, 20000), Vector3.new(8, 0, 8)
  27. local function getNetlessVelocity(realPartVelocity)
  28. local mag = realPartVelocity.Magnitude
  29. if mag > 1 then
  30. local unit = realPartVelocity.Unit
  31. if (unit.Y > 0.25) or (unit.Y < -0.75) then
  32. return unit * (25.1 / unit.Y)
  33. end
  34. end
  35. return v3_net + realPartVelocity * v3_808
  36. end
  37. local simradius = "shp" --simulation radius (net bypass) method
  38. --simulation radius (net bypass) method
  39. --"shp" - sethiddenproperty
  40. --"ssr" - setsimulationradius
  41. --false - disable
  42. local antiragdoll = true --removes hingeConstraints and ballSocketConstraints from your character
  43. local newanimate = false --disables the animate script and enables after reanimation
  44. local discharscripts = true --disables all localScripts parented to your character before reanimation
  45. local R15toR6 = true --tries to convert your character to r6 if its r15
  46. local hatcollide = true --makes hats cancollide (only method 0)
  47. local humState16 = true --enables collisions for limbs before the humanoid dies (using hum:ChangeState)
  48. local addtools = false --puts all tools from backpack to character and lets you hold them after reanimation
  49. local hedafterneck = false --disable aligns for head and enable after neck is removed
  50. local loadtime = game:GetService("Players").RespawnTime + 0.5 --anti respawn delay
  51. local method = 0 --reanimation method
  52. --methods:
  53. --0 - breakJoints (takes [loadtime] seconds to laod)
  54. --1 - limbs
  55. --2 - limbs + anti respawn
  56. --3 - limbs + breakJoints after [loadtime] seconds
  57. --4 - remove humanoid + breakJoints
  58. --5 - remove humanoid + limbs
  59. local alignmode = 3 --AlignPosition mode
  60. --modes:
  61. --1 - AlignPosition rigidity enabled true
  62. --2 - 2 AlignPositions rigidity enabled both true and false
  63. --3 - AlignPosition rigidity enabled false
  64.  
  65. healthHide = healthHide and ((method == 0) or (method == 2) or (method == 000)) and gp(c, "Head", "BasePart")
  66.  
  67. local lp = game:GetService("Players").LocalPlayer
  68. local rs = game:GetService("RunService")
  69. local stepped = rs.Stepped
  70. local heartbeat = rs.Heartbeat
  71. local renderstepped = rs.RenderStepped
  72. local sg = game:GetService("StarterGui")
  73. local ws = game:GetService("Workspace")
  74. local cf = CFrame.new
  75. local v3 = Vector3.new
  76. local v3_0 = v3(0, 0, 0)
  77. local inf = math.huge
  78.  
  79. local c = lp.Character
  80.  
  81. if not (c and c.Parent) then
  82. return
  83. end
  84.  
  85. c.Destroying:Connect(function()
  86. c = nil
  87. end)
  88.  
  89. local function gp(parent, name, className)
  90. if typeof(parent) == "Instance" then
  91. for i, v in pairs(parent:GetChildren()) do
  92. if (v.Name == name) and v:IsA(className) then
  93. return v
  94. end
  95. end
  96. end
  97. return nil
  98. end
  99.  
  100. local function align(Part0, Part1)
  101. Part0.CustomPhysicalProperties = PhysicalProperties.new(0.0001, 0.0001, 0.0001, 0.0001, 0.0001)
  102.  
  103. local att0 = Instance.new("Attachment", Part0)
  104. att0.Orientation = v3_0
  105. att0.Position = v3_0
  106. att0.Name = "att0_" .. Part0.Name
  107. local att1 = Instance.new("Attachment", Part1)
  108. att1.Orientation = v3_0
  109. att1.Position = v3_0
  110. att1.Name = "att1_" .. Part1.Name
  111.  
  112. if (alignmode == 1) or (alignmode == 2) then
  113. local ape = Instance.new("AlignPosition", att0)
  114. ape.ApplyAtCenterOfMass = false
  115. ape.MaxForce = inf
  116. ape.MaxVelocity = inf
  117. ape.ReactionForceEnabled = false
  118. ape.Responsiveness = 200
  119. ape.Attachment1 = att1
  120. ape.Attachment0 = att0
  121. ape.Name = "AlignPositionRtrue"
  122. ape.RigidityEnabled = true
  123. end
  124.  
  125. if (alignmode == 2) or (alignmode == 3) then
  126. local apd = Instance.new("AlignPosition", att0)
  127. apd.ApplyAtCenterOfMass = false
  128. apd.MaxForce = inf
  129. apd.MaxVelocity = inf
  130. apd.ReactionForceEnabled = false
  131. apd.Responsiveness = 200
  132. apd.Attachment1 = att1
  133. apd.Attachment0 = att0
  134. apd.Name = "AlignPositionRfalse"
  135. apd.RigidityEnabled = false
  136. end
  137.  
  138. local ao = Instance.new("AlignOrientation", att0)
  139. ao.MaxAngularVelocity = inf
  140. ao.MaxTorque = inf
  141. ao.PrimaryAxisOnly = false
  142. ao.ReactionTorqueEnabled = false
  143. ao.Responsiveness = 200
  144. ao.Attachment1 = att1
  145. ao.Attachment0 = att0
  146. ao.RigidityEnabled = false
  147.  
  148. if type(getNetlessVelocity) == "function" then
  149. local realVelocity = v3_0
  150. local steppedcon = stepped:Connect(function()
  151. Part0.Velocity = realVelocity
  152. end)
  153. local heartbeatcon = heartbeat:Connect(function()
  154. realVelocity = Part0.Velocity
  155. Part0.Velocity = getNetlessVelocity(realVelocity)
  156. end)
  157. Part0.Destroying:Connect(function()
  158. Part0 = nil
  159. steppedcon:Disconnect()
  160. heartbeatcon:Disconnect()
  161. end)
  162. end
  163. end
  164.  
  165. local function respawnrequest()
  166. local ccfr = ws.CurrentCamera.CFrame
  167. local c = lp.Character
  168. lp.Character = nil
  169. lp.Character = c
  170. local con = nil
  171. con = ws.CurrentCamera.Changed:Connect(function(prop)
  172. if (prop ~= "Parent") and (prop ~= "CFrame") then
  173. return
  174. end
  175. ws.CurrentCamera.CFrame = ccfr
  176. con:Disconnect()
  177. end)
  178. end
  179.  
  180. local destroyhum = (method == 4) or (method == 5)
  181. local breakjoints = (method == 0) or (method == 4)
  182. local antirespawn = (method == 0) or (method == 2) or (method == 3)
  183.  
  184. hatcollide = hatcollide and (method == 0)
  185.  
  186. addtools = addtools and gp(lp, "Backpack", "Backpack")
  187.  
  188. local fenv = getfenv()
  189. local shp = fenv.sethiddenproperty or fenv.set_hidden_property or fenv.set_hidden_prop or fenv.sethiddenprop
  190. 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
  191.  
  192. if shp and (simradius == "shp") then
  193. spawn(function()
  194. while c and heartbeat:Wait() do
  195. shp(lp, "SimulationRadius", inf)
  196. end
  197. end)
  198. elseif ssr and (simradius == "ssr") then
  199. spawn(function()
  200. while c and heartbeat:Wait() do
  201. ssr(inf)
  202. end
  203. end)
  204. end
  205.  
  206. antiragdoll = antiragdoll and function(v)
  207. if v:IsA("HingeConstraint") or v:IsA("BallSocketConstraint") then
  208. v.Parent = nil
  209. end
  210. end
  211.  
  212. if antiragdoll then
  213. for i, v in pairs(c:GetDescendants()) do
  214. antiragdoll(v)
  215. end
  216. c.DescendantAdded:Connect(antiragdoll)
  217. end
  218.  
  219. if antirespawn then
  220. respawnrequest()
  221. end
  222.  
  223. if method == 0 then
  224. wait(loadtime)
  225. if not c then
  226. return
  227. end
  228. end
  229.  
  230. if discharscripts then
  231. for i, v in pairs(c:GetChildren()) do
  232. if v:IsA("LocalScript") then
  233. v.Disabled = true
  234. end
  235. end
  236. elseif newanimate then
  237. local animate = gp(c, "Animate", "LocalScript")
  238. if animate and (not animate.Disabled) then
  239. animate.Disabled = true
  240. else
  241. newanimate = false
  242. end
  243. end
  244.  
  245. if addtools then
  246. for i, v in pairs(addtools:GetChildren()) do
  247. if v:IsA("Tool") then
  248. v.Parent = c
  249. end
  250. end
  251. end
  252.  
  253. pcall(function()
  254. settings().Physics.AllowSleep = false
  255. settings().Physics.PhysicsEnvironmentalThrottle = Enum.EnviromentalPhysicsThrottle.Disabled
  256. end)
  257.  
  258. local OLDscripts = {}
  259.  
  260. for i, v in pairs(c:GetDescendants()) do
  261. if v.ClassName == "Script" then
  262. table.insert(OLDscripts, v)
  263. end
  264. end
  265.  
  266. local scriptNames = {}
  267.  
  268. for i, v in pairs(c:GetDescendants()) do
  269. if v:IsA("BasePart") then
  270. local newName = tostring(i)
  271. local exists = true
  272. while exists do
  273. exists = false
  274. for i, v in pairs(OLDscripts) do
  275. if v.Name == newName then
  276. exists = true
  277. end
  278. end
  279. if exists then
  280. newName = newName .. "_"
  281. end
  282. end
  283. table.insert(scriptNames, newName)
  284. Instance.new("Script", v).Name = newName
  285. end
  286. end
  287.  
  288. c.Archivable = true
  289. local hum = c:FindFirstChildOfClass("Humanoid")
  290. if hum then
  291. for i, v in pairs(hum:GetPlayingAnimationTracks()) do
  292. v:Stop()
  293. end
  294. end
  295. local cl = c:Clone()
  296. if hum and humState16 then
  297. hum:ChangeState(Enum.HumanoidStateType.Physics)
  298. if destroyhum then
  299. wait(1.6)
  300. end
  301. end
  302. if hum and hum.Parent and destroyhum then
  303. hum:Destroy()
  304. end
  305.  
  306. if not c then
  307. return
  308. end
  309.  
  310. local head = gp(c, "Head", "BasePart")
  311. local torso = gp(c, "Torso", "BasePart") or gp(c, "UpperTorso", "BasePart")
  312. local root = gp(c, "HumanoidRootPart", "BasePart")
  313. if hatcollide and c:FindFirstChildOfClass("Accessory") then
  314. local anything = c:FindFirstChildOfClass("BodyColors") or gp(c, "Health", "Script")
  315. if not (torso and root and anything) then
  316. return
  317. end
  318. torso:Destroy()
  319. root:Destroy()
  320. if shp then
  321. for i,v in pairs(c:GetChildren()) do
  322. if v:IsA("Accessory") then
  323. shp(v, "BackendAccoutrementState", 0)
  324. end
  325. end
  326. end
  327. anything:Destroy()
  328. if head then
  329. head:Destroy()
  330. end
  331. end
  332.  
  333. for i, v in pairs(cl:GetDescendants()) do
  334. if v:IsA("BasePart") then
  335. v.Transparency = 1
  336. v.Anchored = false
  337. end
  338. end
  339.  
  340. local model = Instance.new("Model", c)
  341. model.Name = model.ClassName
  342.  
  343. model.Destroying:Connect(function()
  344. model = nil
  345. end)
  346.  
  347. for i, v in pairs(c:GetChildren()) do
  348. if v ~= model then
  349. if addtools and v:IsA("Tool") then
  350. for i1, v1 in pairs(v:GetDescendants()) do
  351. if v1 and v1.Parent and v1:IsA("BasePart") then
  352. local bv = Instance.new("BodyVelocity", v1)
  353. bv.Velocity = v3_0
  354. bv.MaxForce = v3(1000, 1000, 1000)
  355. bv.P = 1250
  356. bv.Name = "bv_" .. v.Name
  357. end
  358. end
  359. end
  360. v.Parent = model
  361. end
  362. end
  363.  
  364. if breakjoints then
  365. model:BreakJoints()
  366. else
  367. if head and torso then
  368. for i, v in pairs(model:GetDescendants()) do
  369. if v:IsA("Weld") or v:IsA("Snap") or v:IsA("Glue") or v:IsA("Motor") or v:IsA("Motor6D") then
  370. local save = false
  371. if (v.Part0 == torso) and (v.Part1 == head) then
  372. save = true
  373. end
  374. if (v.Part0 == head) and (v.Part1 == torso) then
  375. save = true
  376. end
  377. if save then
  378. if hedafterneck then
  379. hedafterneck = v
  380. end
  381. else
  382. v:Destroy()
  383. end
  384. end
  385. end
  386. end
  387. if method == 3 then
  388. spawn(function()
  389. wait(loadtime)
  390. if model then
  391. model:BreakJoints()
  392. end
  393. end)
  394. end
  395. end
  396.  
  397. cl.Parent = c
  398. for i, v in pairs(cl:GetChildren()) do
  399. v.Parent = c
  400. end
  401. cl:Destroy()
  402.  
  403. local modelDes = {}
  404. for i, v in pairs(model:GetDescendants()) do
  405. if v:IsA("BasePart") then
  406. i = tostring(i)
  407. v.Destroying:Connect(function()
  408. modelDes[i] = nil
  409. end)
  410. modelDes[i] = v
  411. end
  412. end
  413. local modelcolcon = nil
  414. local function modelcolf()
  415. if model then
  416. for i, v in pairs(modelDes) do
  417. v.CanCollide = false
  418. end
  419. else
  420. modelcolcon:Disconnect()
  421. end
  422. end
  423. modelcolcon = stepped:Connect(modelcolf)
  424. modelcolf()
  425.  
  426. for i, scr in pairs(model:GetDescendants()) do
  427. if (scr.ClassName == "Script") and table.find(scriptNames, scr.Name) then
  428. local Part0 = scr.Parent
  429. if Part0:IsA("BasePart") then
  430. for i1, scr1 in pairs(c:GetDescendants()) do
  431. if (scr1.ClassName == "Script") and (scr1.Name == scr.Name) and (not scr1:IsDescendantOf(model)) then
  432. local Part1 = scr1.Parent
  433. if (Part1.ClassName == Part0.ClassName) and (Part1.Name == Part0.Name) then
  434. align(Part0, Part1)
  435. break
  436. end
  437. end
  438. end
  439. end
  440. end
  441. end
  442.  
  443. if (typeof(hedafterneck) == "Instance") and head then
  444. local aligns = {}
  445. local con = nil
  446. con = hedafterneck.Changed:Connect(function(prop)
  447. if (prop == "Parent") and not hedafterneck.Parent then
  448. con:Disconnect()
  449. for i, v in pairs(aligns) do
  450. v.Enabled = true
  451. end
  452. end
  453. end)
  454. for i, v in pairs(head:GetDescendants()) do
  455. if v:IsA("AlignPosition") or v:IsA("AlignOrientation") then
  456. i = tostring(i)
  457. aligns[i] = v
  458. v.Destroying:Connect(function()
  459. aligns[i] = nil
  460. end)
  461. v.Enabled = false
  462. end
  463. end
  464. end
  465.  
  466. for i, v in pairs(c:GetDescendants()) do
  467. if v and v.Parent then
  468. if v.ClassName == "Script" then
  469. if table.find(scriptNames, v.Name) then
  470. v:Destroy()
  471. end
  472. elseif not v:IsDescendantOf(model) then
  473. if v:IsA("Decal") then
  474. v.Transparency = 1
  475. elseif v:IsA("ForceField") then
  476. v.Visible = false
  477. elseif v:IsA("Sound") then
  478. v.Playing = false
  479. 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
  480. v.Enabled = false
  481. end
  482. end
  483. end
  484. end
  485.  
  486. if newanimate then
  487. local animate = gp(c, "Animate", "LocalScript")
  488. if animate then
  489. animate.Disabled = false
  490. end
  491. end
  492.  
  493. if addtools then
  494. for i, v in pairs(c:GetChildren()) do
  495. if v:IsA("Tool") then
  496. v.Parent = addtools
  497. end
  498. end
  499. end
  500.  
  501. local hum0 = model:FindFirstChildOfClass("Humanoid")
  502. if hum0 then
  503. hum0.Destroying:Connect(function()
  504. hum0 = nil
  505. end)
  506. end
  507.  
  508. local hum1 = c:FindFirstChildOfClass("Humanoid")
  509. if hum1 then
  510. hum1.Destroying:Connect(function()
  511. hum1 = nil
  512. end)
  513. end
  514.  
  515. if hum1 then
  516. ws.CurrentCamera.CameraSubject = hum1
  517. local camSubCon = nil
  518. local function camSubFunc()
  519. camSubCon:Disconnect()
  520. if c and hum1 then
  521. ws.CurrentCamera.CameraSubject = hum1
  522. end
  523. end
  524. camSubCon = renderstepped:Connect(camSubFunc)
  525. if hum0 then
  526. hum0.Changed:Connect(function(prop)
  527. if hum1 and (prop == "Jump") then
  528. hum1.Jump = hum0.Jump
  529. end
  530. end)
  531. else
  532. respawnrequest()
  533. end
  534. end
  535.  
  536. local rb = Instance.new("BindableEvent", c)
  537. rb.Event:Connect(function()
  538. rb:Destroy()
  539. sg:SetCore("ResetButtonCallback", true)
  540. if destroyhum then
  541. c:BreakJoints()
  542. return
  543. end
  544. if hum0 and (hum0.Health > 0) then
  545. model:BreakJoints()
  546. hum0.Health = 0
  547. end
  548. if antirespawn then
  549. respawnrequest()
  550. end
  551. end)
  552. sg:SetCore("ResetButtonCallback", rb)
  553.  
  554. spawn(function()
  555. while c do
  556. if hum0 and hum1 then
  557. hum1.Jump = hum0.Jump
  558. end
  559. wait()
  560. end
  561. sg:SetCore("ResetButtonCallback", true)
  562. end)
  563.  
  564. R15toR6 = R15toR6 and hum1 and (hum1.RigType == Enum.HumanoidRigType.R15)
  565. if R15toR6 then
  566. 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")
  567. if part then
  568. local cfr = part.CFrame
  569. local R6parts = {
  570. head = {
  571. Name = "Head",
  572. Size = v3(2, 1, 1),
  573. R15 = {
  574. Head = 0
  575. }
  576. },
  577. torso = {
  578. Name = "Torso",
  579. Size = v3(2, 2, 1),
  580. R15 = {
  581. UpperTorso = 0.2,
  582. LowerTorso = -100
  583. }
  584. },
  585. root = {
  586. Name = "HumanoidRootPart",
  587. Size = v3(2, 2, 1),
  588. R15 = {
  589. HumanoidRootPart = 0
  590. }
  591. },
  592. leftArm = {
  593. Name = "Left Arm",
  594. Size = v3(1, 2, 1),
  595. R15 = {
  596. LeftHand = -0.73,
  597. LeftLowerArm = -0.2,
  598. LeftUpperArm = 0.4
  599. }
  600. },
  601. rightArm = {
  602. Name = "Right Arm",
  603. Size = v3(1, 2, 1),
  604. R15 = {
  605. RightHand = -0.73,
  606. RightLowerArm = -0.2,
  607. RightUpperArm = 0.4
  608. }
  609. },
  610. leftLeg = {
  611. Name = "Left Leg",
  612. Size = v3(1, 2, 1),
  613. R15 = {
  614. LeftFoot = -0.73,
  615. LeftLowerLeg = -0.15,
  616. LeftUpperLeg = 0.6
  617. }
  618. },
  619. rightLeg = {
  620. Name = "Right Leg",
  621. Size = v3(1, 2, 1),
  622. R15 = {
  623. RightFoot = -0.73,
  624. RightLowerLeg = -0.15,
  625. RightUpperLeg = 0.6
  626. }
  627. }
  628. }
  629. for i, v in pairs(c:GetChildren()) do
  630. if v:IsA("BasePart") then
  631. for i1, v1 in pairs(v:GetChildren()) do
  632. if v1:IsA("Motor6D") then
  633. v1.Part0 = nil
  634. end
  635. end
  636. end
  637. end
  638. part.Archivable = true
  639. for i, v in pairs(R6parts) do
  640. local part = part:Clone()
  641. part:ClearAllChildren()
  642. part.Name = v.Name
  643. part.Size = v.Size
  644. part.CFrame = cfr
  645. part.Anchored = false
  646. part.Transparency = 1
  647. part.CanCollide = false
  648. for i1, v1 in pairs(v.R15) do
  649. local R15part = gp(c, i1, "BasePart")
  650. local att = gp(R15part, "att1_" .. i1, "Attachment")
  651. if R15part then
  652. local weld = Instance.new("Weld", R15part)
  653. weld.Name = "Weld_" .. i1
  654. weld.Part0 = part
  655. weld.Part1 = R15part
  656. weld.C0 = cf(0, v1, 0)
  657. weld.C1 = cf(0, 0, 0)
  658. R15part.Massless = true
  659. R15part.Name = "R15_" .. i1
  660. R15part.Parent = part
  661. if att then
  662. att.Parent = part
  663. att.Position = v3(0, v1, 0)
  664. end
  665. end
  666. end
  667. part.Parent = c
  668. R6parts[i] = part
  669. end
  670. local R6joints = {
  671. neck = {
  672. Parent = R6parts.torso,
  673. Name = "Neck",
  674. Part0 = R6parts.torso,
  675. Part1 = R6parts.head,
  676. C0 = cf(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0),
  677. C1 = cf(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  678. },
  679. rootJoint = {
  680. Parent = R6parts.root,
  681. Name = "RootJoint" ,
  682. Part0 = R6parts.root,
  683. Part1 = R6parts.torso,
  684. C0 = cf(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0),
  685. C1 = cf(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  686. },
  687. rightShoulder = {
  688. Parent = R6parts.torso,
  689. Name = "Right Shoulder",
  690. Part0 = R6parts.torso,
  691. Part1 = R6parts.rightArm,
  692. C0 = cf(1, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),
  693. C1 = cf(-0.5, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  694. },
  695. leftShoulder = {
  696. Parent = R6parts.torso,
  697. Name = "Left Shoulder",
  698. Part0 = R6parts.torso,
  699. Part1 = R6parts.leftArm,
  700. C0 = cf(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  701. C1 = cf(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  702. },
  703. rightHip = {
  704. Parent = R6parts.torso,
  705. Name = "Right Hip",
  706. Part0 = R6parts.torso,
  707. Part1 = R6parts.rightLeg,
  708. C0 = cf(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0),
  709. C1 = cf(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  710. },
  711. leftHip = {
  712. Parent = R6parts.torso,
  713. Name = "Left Hip" ,
  714. Part0 = R6parts.torso,
  715. Part1 = R6parts.leftLeg,
  716. C0 = cf(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  717. C1 = cf(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  718. }
  719. }
  720. for i, v in pairs(R6joints) do
  721. local joint = Instance.new("Motor6D")
  722. for prop, val in pairs(v) do
  723. joint[prop] = val
  724. end
  725. R6joints[i] = joint
  726. end
  727. hum1.RigType = Enum.HumanoidRigType.R6
  728. hum1.HipHeight = 0
  729. end
  730. end
  731.  
  732.  
  733.  
  734. --find rig joints
  735.  
  736. local function fakemotor()
  737. return {C0=cf(), C1=cf()}
  738. end
  739.  
  740. local torso = gp(c, "Torso", "BasePart")
  741. local root = gp(c, "HumanoidRootPart", "BasePart")
  742.  
  743. local neck = gp(torso, "Neck", "Motor6D")
  744. neck = neck or fakemotor()
  745.  
  746. local rootJoint = gp(root, "RootJoint", "Motor6D")
  747. rootJoint = rootJoint or fakemotor()
  748.  
  749. local leftShoulder = gp(torso, "Left Shoulder", "Motor6D")
  750. leftShoulder = leftShoulder or fakemotor()
  751.  
  752. local rightShoulder = gp(torso, "Right Shoulder", "Motor6D")
  753. rightShoulder = rightShoulder or fakemotor()
  754.  
  755. local leftHip = gp(torso, "Left Hip", "Motor6D")
  756. leftHip = leftHip or fakemotor()
  757.  
  758. local rightHip = gp(torso, "Right Hip", "Motor6D")
  759. rightHip = rightHip or fakemotor()
  760.  
  761. --120 fps
  762.  
  763. local fps = 0
  764. local event = Instance.new("BindableEvent", c)
  765. event.Name = "120 fps"
  766. local floor = math.floor
  767. fps = 1 / fps
  768. local tf = 0
  769. local con = nil
  770. con = game:GetService("RunService").RenderStepped:Connect(function(s)
  771. if not c then
  772. con:Disconnect()
  773. return
  774. end
  775. --tf += s
  776. if tf >= fps then
  777. for i=1, floor(tf / fps) do
  778. event:Fire(c)
  779. end
  780. tf = 0
  781. end
  782. end)
  783. local event = event.Event
  784.  
  785. local hedrot = v3(0, 5, 0)
  786.  
  787. local uis = game:GetService("UserInputService")
  788. local function isPressed(key)
  789. return (not uis:GetFocusedTextBox()) and uis:IsKeyDown(Enum.KeyCode[key])
  790. end
  791.  
  792. local biggesthandle = nil
  793. for i, v in pairs(c:GetChildren()) do
  794. if v:IsA("Accessory") then
  795. local handle = gp(v, "Handle", "BasePart")
  796. if biggesthandle then
  797. if biggesthandle.Size.Magnitude < handle.Size.Magnitude then
  798. biggesthandle = handle
  799. end
  800. else
  801. biggesthandle = gp(v, "Handle", "BasePart")
  802. end
  803. end
  804. end
  805.  
  806. if not biggesthandle then
  807. return
  808. end
  809.  
  810. local handle1 = gp(gp(model, biggesthandle.Parent.Name, "Accessory"), "Handle", "BasePart")
  811. if not handle1 then
  812. return
  813. end
  814.  
  815. handle1.Destroying:Connect(function()
  816. handle1 = nil
  817. end)
  818. biggesthandle.Destroying:Connect(function()
  819. biggesthandle = nil
  820. end)
  821.  
  822. --biggesthandle:BreakJoints()
  823. --biggesthandle.Anchored = true
  824.  
  825. --[[for i, v in pairs(handle1:GetDescendants()) do
  826. if v:IsA("AlignOrientation") then
  827. v.Enabled = false
  828. end
  829. end]]
  830.  
  831. --[[local mouse = lp:GetMouse()
  832. local fling = false
  833. mouse.Button1Down:Connect(function()
  834. fling = true
  835. end)
  836. mouse.Button1Up:Connect(function()
  837. fling = false
  838. end)]]
  839. local function doForSignal(signal, vel)
  840. spawn(function()
  841. while signal:Wait() and c and handle1 and biggesthandle do
  842. if fling and mouse.Target then
  843. biggesthandle.Position = mouse.Hit.Position
  844. end
  845. --handle1.RotVelocity = vel
  846. end
  847. end)
  848. end
  849. doForSignal(stepped, v3(100, 100, 100))
  850. doForSignal(renderstepped, v3(100, 100, 100))
  851. doForSignal(heartbeat, v3(20000, 20000, 20000)) --https://web.roblox.com/catalog/63690008/Pal-Hair
  852.  
  853. local lp = game:GetService("Players").LocalPlayer
  854. local rs = game:GetService("RunService")
  855. local stepped = rs.Stepped
  856. local heartbeat = rs.Heartbeat
  857. local renderstepped = rs.RenderStepped
  858. local sg = game:GetService("StarterGui")
  859. local ws = game:GetService("Workspace")
  860. local cf = CFrame.new
  861. local v3 = Vector3.new
  862. local v3_0 = Vector3.zero
  863. local inf = math.huge
  864.  
  865. local targetAccessory = "SamuraiHat"
  866. local targetHandle = nil
  867. for i, v in pairs(c:GetChildren()) do
  868. if v:IsA("Accessory") and v.Name == targetAccessory then
  869. targetHandle = gp(v, "Handle", "BasePart")
  870. break
  871. end
  872. end
  873.  
  874. if not targetHandle then
  875. return
  876. end
  877.  
  878. local handle1 = gp(gp(model, targetHandle.Parent.Name, "Accessory"), "Handle", "BasePart")
  879. if not handle1 then
  880. return
  881. end
  882.  
  883. handle1.Destroying:Connect(function()
  884. handle1 = nil
  885. end)
  886. targetHandle.Destroying:Connect(function()
  887. targetHandle = nil
  888. end)
  889.  
  890. targetHandle:BreakJoints()
  891. targetHandle.Anchored = true
  892.  
  893. for i, v in pairs(handle1:GetDescendants()) do
  894. if v:IsA("AlignOrientation") then
  895. v.Enabled = false
  896. end
  897. end
  898.  
  899. --local mouse = lp:GetMouse()
  900. --local fling = false
  901. --mouse.Button1Down:Connect(function()
  902. --fling = true
  903. --end)
  904. --mouse.Button1Up:Connect(function()
  905. --fling = false
  906. --end)
  907. local function doForSignal(signal, vel)
  908. spawn(function()
  909. while signal:Wait() and c and handle1 and targetHandle do
  910. if fling and mouse.Target then
  911. targetHandle.Position = mouse.Hit.Position
  912. end
  913. handle1.RotVelocity = vel
  914. end
  915. end)
  916. end
  917.  
  918. doForSignal(stepped, v3(100, 100, 100))
  919. doForSignal(renderstepped, v3(100, 100, 100))
  920. doForSignal(heartbeat, v3(-2000000000000000000, 2000000000000000, 200000000000000))
  921.  
  922.  
  923.  
  924. local cplayer = lp.Character
  925.  
  926. local v3 = Vector3.new
  927.  
  928. local function gp(parent, name, className)
  929. if typeof(parent) == "Instance" then
  930. for i, v in pairs(parent:GetChildren()) do
  931. if (v.Name == name) and v:IsA(className) then
  932. return v
  933. end
  934. end
  935. end
  936. return nil
  937. end
  938.  
  939. local hat2 = gp(cplayer, "TooCoolFireFox", "Accessory")
  940. local handle2 = gp(hat2, "Handle", "BasePart")
  941. local att2 = gp(handle2, "att1_Handle", "Attachment")
  942. att2.Parent = cplayer["Head"]
  943. att2.Position = Vector3.new(0,0,0)
  944. att2.Rotation = Vector3.new(0,0,0)
  945.  
  946. local hat2 = gp(cplayer, "LUAhEAD", "Accessory")
  947. local handle2 = gp(hat2, "Handle", "BasePart")
  948. local att2 = gp(handle2, "att1_Handle", "Attachment")
  949. att2.Parent = cplayer["Torso"]
  950. att2.Position = Vector3.new(-0, -0.2, 0)
  951. att2.Rotation = Vector3.new(90, 0, 0)
  952.  
  953. local hat2 = gp(cplayer, "Pink Hair", "Accessory")
  954. local handle2 = gp(hat2, "Handle", "BasePart")
  955. local att2 = gp(handle2, "att1_Handle", "Attachment")
  956. att2.Parent = cplayer["Left Arm"]
  957. att2.Position = Vector3.new(0.2, -0.3, 0)
  958. att2.Rotation = Vector3.new(90, 0, 0)
  959.  
  960. local hat2 = gp(cplayer, "Kate Hair", "Accessory")
  961. local handle2 = gp(hat2, "Handle", "BasePart")
  962. local att2 = gp(handle2, "att1_Handle", "Attachment")
  963. att2.Parent = cplayer["Right Arm"]
  964. att2.Position = Vector3.new(-0.2, -0.3, 0)
  965. att2.Rotation = Vector3.new(90, 0, 0) --LavanderHair
  966.  
  967. local hat2 = gp(cplayer, "LavanderHair", "Accessory")
  968. local handle2 = gp(hat2, "Handle", "BasePart")
  969. local att2 = gp(handle2, "att1_Handle", "Attachment")
  970. att2.Parent = cplayer["Right Leg"]
  971. att2.Position = Vector3.new(0, 0, 0) --Robloxclassicred
  972. att2.Rotation = Vector3.new(90, 0, 0)
  973.  
  974. local hat2 = gp(cplayer, "Robloxclassicred", "Accessory")
  975. local handle2 = gp(hat2, "Handle", "BasePart")
  976. local att2 = gp(handle2, "att1_Handle", "Attachment")
  977. att2.Parent = cplayer["Left Leg"]
  978. att2.Position = Vector3.new(-0, 0, 0)
  979. att2.Rotation = Vector3.new(90, 0, 0)
  980.  
  981. Chillmusic = Instance.new("Sound", workspace)
  982. Chillmusic.Parent = game.Chat
  983. Chillmusic.Volume = 8
  984. Chillmusic.SoundId = "rbxassetid://5409360995"
  985. Chillmusic.Looped = true
  986. Chillmusic:Play()
  987.  
  988.  
  989. --- Did actually rework heavily away from original neptunian, and the non-rework neptunian. --NoobyGames12
  990. --- Was supposed to be for the770zone, or VengefulProgram.
  991.  
  992. warn'Neptune/Neptunian V'
  993. warn[[Absolutely.
  994.  
  995. Created by NoobyGames12
  996. ----------------------------]]
  997.  
  998. print[[Set your theme by:
  999. id/
  1000. vol/
  1001. pitch/
  1002. You can skip through the position of theme by:
  1003. skipto/]]
  1004.  
  1005. warn("Have fun using this!")
  1006. ---- DO NOT CHANGE ANYTHING BELOW IF YOU'RE NOT AN EDITOR
  1007.  
  1008.  
  1009.  
  1010. function sandbox(var,func)
  1011. local env = getfenv(func)
  1012. local newenv = setmetatable({},{
  1013. __index = function(self,k)
  1014. if k=="script" then
  1015. return var
  1016. else
  1017. return env[k]
  1018. end
  1019. end,
  1020. })
  1021. setfenv(func,newenv)
  1022. return func
  1023. end
  1024. cors = {}
  1025. mas = Instance.new("Model",game:GetService("Lighting"))
  1026. Model0 = Instance.new("Model")
  1027. Part1 = Instance.new("Part")
  1028. SpecialMesh2 = Instance.new("SpecialMesh")
  1029. Part3 = Instance.new("Part")
  1030. SpecialMesh4 = Instance.new("SpecialMesh")
  1031. Weld5 = Instance.new("Weld")
  1032. Weld6 = Instance.new("Weld")
  1033. Weld7 = Instance.new("Weld")
  1034. Weld8 = Instance.new("Weld")
  1035. Weld9 = Instance.new("Weld")
  1036. Weld10 = Instance.new("Weld")
  1037. Weld11 = Instance.new("Weld")
  1038. Weld12 = Instance.new("Weld")
  1039. Weld13 = Instance.new("Weld")
  1040. Weld14 = Instance.new("Weld")
  1041. Weld15 = Instance.new("Weld")
  1042. Weld16 = Instance.new("Weld")
  1043. Weld17 = Instance.new("Weld")
  1044. Weld18 = Instance.new("Weld")
  1045. Weld19 = Instance.new("Weld")
  1046. Weld20 = Instance.new("Weld")
  1047. Weld21 = Instance.new("Weld")
  1048. Weld22 = Instance.new("Weld")
  1049. Weld23 = Instance.new("Weld")
  1050. Weld24 = Instance.new("Weld")
  1051. Weld25 = Instance.new("Weld")
  1052. Weld26 = Instance.new("Weld")
  1053. Weld27 = Instance.new("Weld")
  1054. Weld28 = Instance.new("Weld")
  1055. Weld29 = Instance.new("Weld")
  1056. Weld30 = Instance.new("Weld")
  1057. Weld31 = Instance.new("Weld")
  1058. Weld32 = Instance.new("Weld")
  1059. Weld33 = Instance.new("Weld")
  1060. Weld34 = Instance.new("Weld")
  1061. Weld35 = Instance.new("Weld")
  1062. Weld36 = Instance.new("Weld")
  1063. Weld37 = Instance.new("Weld")
  1064. Weld38 = Instance.new("Weld")
  1065. Weld39 = Instance.new("Weld")
  1066. Weld40 = Instance.new("Weld")
  1067. Weld41 = Instance.new("Weld")
  1068. Weld42 = Instance.new("Weld")
  1069. Weld43 = Instance.new("Weld")
  1070. Weld44 = Instance.new("Weld")
  1071. Weld45 = Instance.new("Weld")
  1072. Weld46 = Instance.new("Weld")
  1073. Weld47 = Instance.new("Weld")
  1074. Weld48 = Instance.new("Weld")
  1075. Weld49 = Instance.new("Weld")
  1076. Weld50 = Instance.new("Weld")
  1077. Weld51 = Instance.new("Weld")
  1078. Weld52 = Instance.new("Weld")
  1079. Weld53 = Instance.new("Weld")
  1080. Weld54 = Instance.new("Weld")
  1081. Weld55 = Instance.new("Weld")
  1082. Weld56 = Instance.new("Weld")
  1083. Weld57 = Instance.new("Weld")
  1084. Weld58 = Instance.new("Weld")
  1085. Weld59 = Instance.new("Weld")
  1086. Weld60 = Instance.new("Weld")
  1087. Weld61 = Instance.new("Weld")
  1088. Weld62 = Instance.new("Weld")
  1089. Weld63 = Instance.new("Weld")
  1090. Weld64 = Instance.new("Weld")
  1091. Weld65 = Instance.new("Weld")
  1092. Weld66 = Instance.new("Weld")
  1093. Weld67 = Instance.new("Weld")
  1094. Weld68 = Instance.new("Weld")
  1095. Weld69 = Instance.new("Weld")
  1096. Weld70 = Instance.new("Weld")
  1097. Weld71 = Instance.new("Weld")
  1098. Weld72 = Instance.new("Weld")
  1099. Weld73 = Instance.new("Weld")
  1100. Weld74 = Instance.new("Weld")
  1101. Weld75 = Instance.new("Weld")
  1102. Weld76 = Instance.new("Weld")
  1103. Weld77 = Instance.new("Weld")
  1104. Weld78 = Instance.new("Weld")
  1105. Weld79 = Instance.new("Weld")
  1106. Weld80 = Instance.new("Weld")
  1107. Weld81 = Instance.new("Weld")
  1108. Weld82 = Instance.new("Weld")
  1109. Weld83 = Instance.new("Weld")
  1110. Weld84 = Instance.new("Weld")
  1111. Weld85 = Instance.new("Weld")
  1112. Weld86 = Instance.new("Weld")
  1113. Weld87 = Instance.new("Weld")
  1114. Weld88 = Instance.new("Weld")
  1115. Weld89 = Instance.new("Weld")
  1116. Weld90 = Instance.new("Weld")
  1117. Weld91 = Instance.new("Weld")
  1118. Weld92 = Instance.new("Weld")
  1119. Weld93 = Instance.new("Weld")
  1120. Weld94 = Instance.new("Weld")
  1121. Weld95 = Instance.new("Weld")
  1122. Weld96 = Instance.new("Weld")
  1123. Weld97 = Instance.new("Weld")
  1124. Weld98 = Instance.new("Weld")
  1125. Weld99 = Instance.new("Weld")
  1126. Weld100 = Instance.new("Weld")
  1127. Weld101 = Instance.new("Weld")
  1128. Weld102 = Instance.new("Weld")
  1129. Weld103 = Instance.new("Weld")
  1130. Weld104 = Instance.new("Weld")
  1131. Weld105 = Instance.new("Weld")
  1132. Weld106 = Instance.new("Weld")
  1133. Weld107 = Instance.new("Weld")
  1134. Weld108 = Instance.new("Weld")
  1135. Weld109 = Instance.new("Weld")
  1136. Weld110 = Instance.new("Weld")
  1137. Weld111 = Instance.new("Weld")
  1138. Weld112 = Instance.new("Weld")
  1139. Weld113 = Instance.new("Weld")
  1140. Weld114 = Instance.new("Weld")
  1141. Weld115 = Instance.new("Weld")
  1142. Weld116 = Instance.new("Weld")
  1143. Weld117 = Instance.new("Weld")
  1144. Weld118 = Instance.new("Weld")
  1145. Weld119 = Instance.new("Weld")
  1146. Weld120 = Instance.new("Weld")
  1147. Weld121 = Instance.new("Weld")
  1148. Weld122 = Instance.new("Weld")
  1149. Weld123 = Instance.new("Weld")
  1150. Weld124 = Instance.new("Weld")
  1151. Weld125 = Instance.new("Weld")
  1152. Weld126 = Instance.new("Weld")
  1153. Weld127 = Instance.new("Weld")
  1154. Weld128 = Instance.new("Weld")
  1155. Weld129 = Instance.new("Weld")
  1156. Weld130 = Instance.new("Weld")
  1157. Weld131 = Instance.new("Weld")
  1158. Weld132 = Instance.new("Weld")
  1159. Weld133 = Instance.new("Weld")
  1160. Weld134 = Instance.new("Weld")
  1161. Weld135 = Instance.new("Weld")
  1162. Weld136 = Instance.new("Weld")
  1163. Weld137 = Instance.new("Weld")
  1164. Weld138 = Instance.new("Weld")
  1165. Weld139 = Instance.new("Weld")
  1166. Weld140 = Instance.new("Weld")
  1167. Weld141 = Instance.new("Weld")
  1168. Weld142 = Instance.new("Weld")
  1169. Weld143 = Instance.new("Weld")
  1170. Weld144 = Instance.new("Weld")
  1171. Weld145 = Instance.new("Weld")
  1172. Weld146 = Instance.new("Weld")
  1173. Weld147 = Instance.new("Weld")
  1174. Weld148 = Instance.new("Weld")
  1175. Weld149 = Instance.new("Weld")
  1176. Weld150 = Instance.new("Weld")
  1177. Weld151 = Instance.new("Weld")
  1178. Weld152 = Instance.new("Weld")
  1179. Weld153 = Instance.new("Weld")
  1180. Weld154 = Instance.new("Weld")
  1181. Weld155 = Instance.new("Weld")
  1182. Weld156 = Instance.new("Weld")
  1183. Weld157 = Instance.new("Weld")
  1184. Weld158 = Instance.new("Weld")
  1185. Weld159 = Instance.new("Weld")
  1186. Weld160 = Instance.new("Weld")
  1187. Weld161 = Instance.new("Weld")
  1188. Weld162 = Instance.new("Weld")
  1189. Part163 = Instance.new("Part")
  1190. SpecialMesh164 = Instance.new("SpecialMesh")
  1191. Part165 = Instance.new("Part")
  1192. SpecialMesh166 = Instance.new("SpecialMesh")
  1193. Part167 = Instance.new("Part")
  1194. SpecialMesh168 = Instance.new("SpecialMesh")
  1195. Part169 = Instance.new("Part")
  1196. SpecialMesh170 = Instance.new("SpecialMesh")
  1197. Part171 = Instance.new("Part")
  1198. SpecialMesh172 = Instance.new("SpecialMesh")
  1199. Part173 = Instance.new("Part")
  1200. SpecialMesh174 = Instance.new("SpecialMesh")
  1201. Part175 = Instance.new("Part")
  1202. SpecialMesh176 = Instance.new("SpecialMesh")
  1203. Part177 = Instance.new("Part")
  1204. SpecialMesh178 = Instance.new("SpecialMesh")
  1205. Part179 = Instance.new("Part")
  1206. SpecialMesh180 = Instance.new("SpecialMesh")
  1207. Part181 = Instance.new("Part")
  1208. SpecialMesh182 = Instance.new("SpecialMesh")
  1209. Part183 = Instance.new("Part")
  1210. SpecialMesh184 = Instance.new("SpecialMesh")
  1211. Part185 = Instance.new("Part")
  1212. SpecialMesh186 = Instance.new("SpecialMesh")
  1213. Part187 = Instance.new("Part")
  1214. SpecialMesh188 = Instance.new("SpecialMesh")
  1215. Part189 = Instance.new("Part")
  1216. SpecialMesh190 = Instance.new("SpecialMesh")
  1217. Part191 = Instance.new("Part")
  1218. SpecialMesh192 = Instance.new("SpecialMesh")
  1219. Part193 = Instance.new("Part")
  1220. SpecialMesh194 = Instance.new("SpecialMesh")
  1221. Part195 = Instance.new("Part")
  1222. SpecialMesh196 = Instance.new("SpecialMesh")
  1223. Part197 = Instance.new("Part")
  1224. SpecialMesh198 = Instance.new("SpecialMesh")
  1225. Part199 = Instance.new("Part")
  1226. SpecialMesh200 = Instance.new("SpecialMesh")
  1227. Part201 = Instance.new("Part")
  1228. SpecialMesh202 = Instance.new("SpecialMesh")
  1229. Part203 = Instance.new("Part")
  1230. SpecialMesh204 = Instance.new("SpecialMesh")
  1231. Part205 = Instance.new("Part")
  1232. SpecialMesh206 = Instance.new("SpecialMesh")
  1233. Part207 = Instance.new("Part")
  1234. SpecialMesh208 = Instance.new("SpecialMesh")
  1235. Part209 = Instance.new("Part")
  1236. SpecialMesh210 = Instance.new("SpecialMesh")
  1237. Part211 = Instance.new("Part")
  1238. SpecialMesh212 = Instance.new("SpecialMesh")
  1239. Part213 = Instance.new("Part")
  1240. SpecialMesh214 = Instance.new("SpecialMesh")
  1241. Part215 = Instance.new("Part")
  1242. SpecialMesh216 = Instance.new("SpecialMesh")
  1243. Part217 = Instance.new("Part")
  1244. SpecialMesh218 = Instance.new("SpecialMesh")
  1245. Part219 = Instance.new("Part")
  1246. SpecialMesh220 = Instance.new("SpecialMesh")
  1247. Part221 = Instance.new("Part")
  1248. SpecialMesh222 = Instance.new("SpecialMesh")
  1249. Part223 = Instance.new("Part")
  1250. SpecialMesh224 = Instance.new("SpecialMesh")
  1251. Part225 = Instance.new("Part")
  1252. SpecialMesh226 = Instance.new("SpecialMesh")
  1253. Part227 = Instance.new("Part")
  1254. SpecialMesh228 = Instance.new("SpecialMesh")
  1255. Part229 = Instance.new("Part")
  1256. SpecialMesh230 = Instance.new("SpecialMesh")
  1257. Part231 = Instance.new("Part")
  1258. SpecialMesh232 = Instance.new("SpecialMesh")
  1259. Part233 = Instance.new("Part")
  1260. SpecialMesh234 = Instance.new("SpecialMesh")
  1261. Part235 = Instance.new("Part")
  1262. SpecialMesh236 = Instance.new("SpecialMesh")
  1263. Part237 = Instance.new("Part")
  1264. SpecialMesh238 = Instance.new("SpecialMesh")
  1265. Part239 = Instance.new("Part")
  1266. SpecialMesh240 = Instance.new("SpecialMesh")
  1267. Part241 = Instance.new("Part")
  1268. SpecialMesh242 = Instance.new("SpecialMesh")
  1269. Part243 = Instance.new("Part")
  1270. SpecialMesh244 = Instance.new("SpecialMesh")
  1271. Part245 = Instance.new("Part")
  1272. SpecialMesh246 = Instance.new("SpecialMesh")
  1273. Part247 = Instance.new("Part")
  1274. SpecialMesh248 = Instance.new("SpecialMesh")
  1275. Part249 = Instance.new("Part")
  1276. SpecialMesh250 = Instance.new("SpecialMesh")
  1277. Part251 = Instance.new("Part")
  1278. SpecialMesh252 = Instance.new("SpecialMesh")
  1279. Part253 = Instance.new("Part")
  1280. SpecialMesh254 = Instance.new("SpecialMesh")
  1281. Part255 = Instance.new("Part")
  1282. SpecialMesh256 = Instance.new("SpecialMesh")
  1283. Part257 = Instance.new("Part")
  1284. SpecialMesh258 = Instance.new("SpecialMesh")
  1285. Part259 = Instance.new("Part")
  1286. SpecialMesh260 = Instance.new("SpecialMesh")
  1287. Part261 = Instance.new("Part")
  1288. SpecialMesh262 = Instance.new("SpecialMesh")
  1289. Part263 = Instance.new("Part")
  1290. SpecialMesh264 = Instance.new("SpecialMesh")
  1291. Part265 = Instance.new("Part")
  1292. SpecialMesh266 = Instance.new("SpecialMesh")
  1293. Part267 = Instance.new("Part")
  1294. SpecialMesh268 = Instance.new("SpecialMesh")
  1295. Part269 = Instance.new("Part")
  1296. SpecialMesh270 = Instance.new("SpecialMesh")
  1297. Part271 = Instance.new("Part")
  1298. SpecialMesh272 = Instance.new("SpecialMesh")
  1299. Part273 = Instance.new("Part")
  1300. SpecialMesh274 = Instance.new("SpecialMesh")
  1301. Part275 = Instance.new("Part")
  1302. SpecialMesh276 = Instance.new("SpecialMesh")
  1303. Part277 = Instance.new("Part")
  1304. SpecialMesh278 = Instance.new("SpecialMesh")
  1305. Part279 = Instance.new("Part")
  1306. SpecialMesh280 = Instance.new("SpecialMesh")
  1307. Part281 = Instance.new("Part")
  1308. SpecialMesh282 = Instance.new("SpecialMesh")
  1309. Part283 = Instance.new("Part")
  1310. SpecialMesh284 = Instance.new("SpecialMesh")
  1311. Part285 = Instance.new("Part")
  1312. SpecialMesh286 = Instance.new("SpecialMesh")
  1313. Part287 = Instance.new("Part")
  1314. SpecialMesh288 = Instance.new("SpecialMesh")
  1315. Part289 = Instance.new("Part")
  1316. SpecialMesh290 = Instance.new("SpecialMesh")
  1317. Part291 = Instance.new("Part")
  1318. SpecialMesh292 = Instance.new("SpecialMesh")
  1319. Part293 = Instance.new("Part")
  1320. SpecialMesh294 = Instance.new("SpecialMesh")
  1321. Part295 = Instance.new("Part")
  1322. SpecialMesh296 = Instance.new("SpecialMesh")
  1323. Part297 = Instance.new("Part")
  1324. SpecialMesh298 = Instance.new("SpecialMesh")
  1325. Part299 = Instance.new("Part")
  1326. SpecialMesh300 = Instance.new("SpecialMesh")
  1327. Part301 = Instance.new("Part")
  1328. SpecialMesh302 = Instance.new("SpecialMesh")
  1329. Part303 = Instance.new("Part")
  1330. SpecialMesh304 = Instance.new("SpecialMesh")
  1331. Part305 = Instance.new("Part")
  1332. SpecialMesh306 = Instance.new("SpecialMesh")
  1333. Part307 = Instance.new("Part")
  1334. SpecialMesh308 = Instance.new("SpecialMesh")
  1335. Part309 = Instance.new("Part")
  1336. SpecialMesh310 = Instance.new("SpecialMesh")
  1337. Part311 = Instance.new("Part")
  1338. SpecialMesh312 = Instance.new("SpecialMesh")
  1339. Part313 = Instance.new("Part")
  1340. SpecialMesh314 = Instance.new("SpecialMesh")
  1341. Part315 = Instance.new("Part")
  1342. SpecialMesh316 = Instance.new("SpecialMesh")
  1343. Part317 = Instance.new("Part")
  1344. SpecialMesh318 = Instance.new("SpecialMesh")
  1345. Part319 = Instance.new("Part")
  1346. SpecialMesh320 = Instance.new("SpecialMesh")
  1347. Part321 = Instance.new("Part")
  1348. SpecialMesh322 = Instance.new("SpecialMesh")
  1349. Part323 = Instance.new("Part")
  1350. SpecialMesh324 = Instance.new("SpecialMesh")
  1351. Part325 = Instance.new("Part")
  1352. SpecialMesh326 = Instance.new("SpecialMesh")
  1353. Part327 = Instance.new("Part")
  1354. SpecialMesh328 = Instance.new("SpecialMesh")
  1355. Part329 = Instance.new("Part")
  1356. SpecialMesh330 = Instance.new("SpecialMesh")
  1357. Part331 = Instance.new("Part")
  1358. SpecialMesh332 = Instance.new("SpecialMesh")
  1359. Part333 = Instance.new("Part")
  1360. SpecialMesh334 = Instance.new("SpecialMesh")
  1361. Part335 = Instance.new("Part")
  1362. SpecialMesh336 = Instance.new("SpecialMesh")
  1363. Part337 = Instance.new("Part")
  1364. SpecialMesh338 = Instance.new("SpecialMesh")
  1365. Part339 = Instance.new("Part")
  1366. SpecialMesh340 = Instance.new("SpecialMesh")
  1367. Part341 = Instance.new("Part")
  1368. SpecialMesh342 = Instance.new("SpecialMesh")
  1369. Part343 = Instance.new("Part")
  1370. SpecialMesh344 = Instance.new("SpecialMesh")
  1371. Part345 = Instance.new("Part")
  1372. SpecialMesh346 = Instance.new("SpecialMesh")
  1373. Part347 = Instance.new("Part")
  1374. SpecialMesh348 = Instance.new("SpecialMesh")
  1375. Part349 = Instance.new("Part")
  1376. SpecialMesh350 = Instance.new("SpecialMesh")
  1377. Part351 = Instance.new("Part")
  1378. SpecialMesh352 = Instance.new("SpecialMesh")
  1379. Part353 = Instance.new("Part")
  1380. SpecialMesh354 = Instance.new("SpecialMesh")
  1381. Part355 = Instance.new("Part")
  1382. SpecialMesh356 = Instance.new("SpecialMesh")
  1383. Part357 = Instance.new("Part")
  1384. SpecialMesh358 = Instance.new("SpecialMesh")
  1385. Part359 = Instance.new("Part")
  1386. SpecialMesh360 = Instance.new("SpecialMesh")
  1387. Part361 = Instance.new("Part")
  1388. SpecialMesh362 = Instance.new("SpecialMesh")
  1389. Part363 = Instance.new("Part")
  1390. SpecialMesh364 = Instance.new("SpecialMesh")
  1391. Part365 = Instance.new("Part")
  1392. SpecialMesh366 = Instance.new("SpecialMesh")
  1393. Part367 = Instance.new("Part")
  1394. SpecialMesh368 = Instance.new("SpecialMesh")
  1395. Part369 = Instance.new("Part")
  1396. SpecialMesh370 = Instance.new("SpecialMesh")
  1397. Part371 = Instance.new("Part")
  1398. SpecialMesh372 = Instance.new("SpecialMesh")
  1399. Part373 = Instance.new("Part")
  1400. SpecialMesh374 = Instance.new("SpecialMesh")
  1401. Part375 = Instance.new("Part")
  1402. SpecialMesh376 = Instance.new("SpecialMesh")
  1403. Part377 = Instance.new("Part")
  1404. SpecialMesh378 = Instance.new("SpecialMesh")
  1405. Part379 = Instance.new("Part")
  1406. SpecialMesh380 = Instance.new("SpecialMesh")
  1407. Part381 = Instance.new("Part")
  1408. SpecialMesh382 = Instance.new("SpecialMesh")
  1409. Part383 = Instance.new("Part")
  1410. SpecialMesh384 = Instance.new("SpecialMesh")
  1411. Part385 = Instance.new("Part")
  1412. SpecialMesh386 = Instance.new("SpecialMesh")
  1413. Part387 = Instance.new("Part")
  1414. SpecialMesh388 = Instance.new("SpecialMesh")
  1415. Part389 = Instance.new("Part")
  1416. SpecialMesh390 = Instance.new("SpecialMesh")
  1417. Part391 = Instance.new("Part")
  1418. SpecialMesh392 = Instance.new("SpecialMesh")
  1419. Part393 = Instance.new("Part")
  1420. SpecialMesh394 = Instance.new("SpecialMesh")
  1421. Part395 = Instance.new("Part")
  1422. SpecialMesh396 = Instance.new("SpecialMesh")
  1423. Part397 = Instance.new("Part")
  1424. SpecialMesh398 = Instance.new("SpecialMesh")
  1425. Part399 = Instance.new("Part")
  1426. SpecialMesh400 = Instance.new("SpecialMesh")
  1427. Part401 = Instance.new("Part")
  1428. SpecialMesh402 = Instance.new("SpecialMesh")
  1429. Part403 = Instance.new("Part")
  1430. SpecialMesh404 = Instance.new("SpecialMesh")
  1431. Part405 = Instance.new("Part")
  1432. SpecialMesh406 = Instance.new("SpecialMesh")
  1433. Part407 = Instance.new("Part")
  1434. SpecialMesh408 = Instance.new("SpecialMesh")
  1435. Part409 = Instance.new("Part")
  1436. SpecialMesh410 = Instance.new("SpecialMesh")
  1437. Part411 = Instance.new("Part")
  1438. SpecialMesh412 = Instance.new("SpecialMesh")
  1439. Part413 = Instance.new("Part")
  1440. SpecialMesh414 = Instance.new("SpecialMesh")
  1441. Part415 = Instance.new("Part")
  1442. SpecialMesh416 = Instance.new("SpecialMesh")
  1443. Part417 = Instance.new("Part")
  1444. SpecialMesh418 = Instance.new("SpecialMesh")
  1445. Part419 = Instance.new("Part")
  1446. SpecialMesh420 = Instance.new("SpecialMesh")
  1447. Part421 = Instance.new("Part")
  1448. SpecialMesh422 = Instance.new("SpecialMesh")
  1449. Part423 = Instance.new("Part")
  1450. SpecialMesh424 = Instance.new("SpecialMesh")
  1451. Part425 = Instance.new("Part")
  1452. SpecialMesh426 = Instance.new("SpecialMesh")
  1453. Part427 = Instance.new("Part")
  1454. SpecialMesh428 = Instance.new("SpecialMesh")
  1455. Part429 = Instance.new("Part")
  1456. SpecialMesh430 = Instance.new("SpecialMesh")
  1457. Part431 = Instance.new("Part")
  1458. SpecialMesh432 = Instance.new("SpecialMesh")
  1459. Part433 = Instance.new("Part")
  1460. SpecialMesh434 = Instance.new("SpecialMesh")
  1461. Part435 = Instance.new("Part")
  1462. SpecialMesh436 = Instance.new("SpecialMesh")
  1463. Part437 = Instance.new("Part")
  1464. SpecialMesh438 = Instance.new("SpecialMesh")
  1465. Part439 = Instance.new("Part")
  1466. SpecialMesh440 = Instance.new("SpecialMesh")
  1467. Part441 = Instance.new("Part")
  1468. SpecialMesh442 = Instance.new("SpecialMesh")
  1469. Part443 = Instance.new("Part")
  1470. SpecialMesh444 = Instance.new("SpecialMesh")
  1471. Part445 = Instance.new("Part")
  1472. SpecialMesh446 = Instance.new("SpecialMesh")
  1473. Part447 = Instance.new("Part")
  1474. SpecialMesh448 = Instance.new("SpecialMesh")
  1475. Part449 = Instance.new("Part")
  1476. SpecialMesh450 = Instance.new("SpecialMesh")
  1477. Part451 = Instance.new("Part")
  1478. SpecialMesh452 = Instance.new("SpecialMesh")
  1479. Part453 = Instance.new("Part")
  1480. SpecialMesh454 = Instance.new("SpecialMesh")
  1481. Part455 = Instance.new("Part")
  1482. SpecialMesh456 = Instance.new("SpecialMesh")
  1483. Part457 = Instance.new("Part")
  1484. SpecialMesh458 = Instance.new("SpecialMesh")
  1485. Part459 = Instance.new("Part")
  1486. SpecialMesh460 = Instance.new("SpecialMesh")
  1487. Part461 = Instance.new("Part")
  1488. SpecialMesh462 = Instance.new("SpecialMesh")
  1489. Part463 = Instance.new("Part")
  1490. SpecialMesh464 = Instance.new("SpecialMesh")
  1491. Part465 = Instance.new("Part")
  1492. SpecialMesh466 = Instance.new("SpecialMesh")
  1493. Part467 = Instance.new("Part")
  1494. SpecialMesh468 = Instance.new("SpecialMesh")
  1495. Part469 = Instance.new("Part")
  1496. SpecialMesh470 = Instance.new("SpecialMesh")
  1497. Part471 = Instance.new("Part")
  1498. SpecialMesh472 = Instance.new("SpecialMesh")
  1499. Part473 = Instance.new("Part")
  1500. SpecialMesh474 = Instance.new("SpecialMesh")
  1501. Part475 = Instance.new("Part")
  1502. SpecialMesh476 = Instance.new("SpecialMesh")
  1503. Model0.Parent = mas
  1504. Part1.Parent = Model0
  1505. 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)
  1506. Part1.Orientation = Vector3.new(72.659996, 0.859999955, 0.98999995)
  1507. Part1.Position = Vector3.new(-0.612978518, 3.52787709, -14.4877329)
  1508. Part1.Rotation = Vector3.new(72.659996, 0.25, 0.170000002)
  1509. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1510. Part1.Velocity = Vector3.new(1.29135582e-08, 0.00246586069, 1.6969787e-07)
  1511. Part1.Size = Vector3.new(0.275000006, 0.22512494, 0.42337501)
  1512. Part1.Anchored = true
  1513. Part1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. Part1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. Part1.BrickColor = BrickColor.new("Really black")
  1516. Part1.CanCollide = false
  1517. Part1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1518. Part1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1519. Part1.Material = Enum.Material.Metal
  1520. Part1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1521. Part1.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  1522. Part1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1523. Part1.brickColor = BrickColor.new("Really black")
  1524. SpecialMesh2.Parent = Part1
  1525. SpecialMesh2.Scale = Vector3.new(0.400000006, 1, 0.5)
  1526. SpecialMesh2.MeshType = Enum.MeshType.Brick
  1527. Part3.Parent = Model0
  1528. 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)
  1529. Part3.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  1530. Part3.Position = Vector3.new(-0.608517408, 2.57421446, -14.2038746)
  1531. Part3.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  1532. Part3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1533. Part3.Velocity = Vector3.new(1.6413172e-07, 0.00246645301, 2.15686623e-06)
  1534. Part3.Size = Vector3.new(0.275000006, 0.315999985, 0.303375006)
  1535. Part3.Anchored = true
  1536. Part3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1537. Part3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1538. Part3.BrickColor = BrickColor.new("Really black")
  1539. Part3.CanCollide = false
  1540. Part3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1541. Part3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1542. Part3.Material = Enum.Material.Glass
  1543. Part3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1544. Part3.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  1545. Part3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1546. Part3.brickColor = BrickColor.new("Really black")
  1547. SpecialMesh4.Parent = Part3
  1548. SpecialMesh4.Scale = Vector3.new(0.5, 1, 0.5)
  1549. SpecialMesh4.MeshType = Enum.MeshType.Wedge
  1550. Weld5.Name = "BTWeld"
  1551. Weld5.Parent = Part3
  1552. 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)
  1553. Weld5.Part0 = Part3
  1554. Weld5.Part1 = Part441
  1555. Weld5.part1 = Part441
  1556. Weld6.Name = "BTWeld"
  1557. Weld6.Parent = Part3
  1558. 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)
  1559. Weld6.Part0 = Part3
  1560. Weld6.Part1 = Part323
  1561. Weld6.part1 = Part323
  1562. Weld7.Name = "BTWeld"
  1563. Weld7.Parent = Part3
  1564. 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)
  1565. Weld7.Part0 = Part3
  1566. Weld7.Part1 = Part371
  1567. Weld7.part1 = Part371
  1568. Weld8.Name = "BTWeld"
  1569. Weld8.Parent = Part3
  1570. 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)
  1571. Weld8.Part0 = Part3
  1572. Weld8.Part1 = Part167
  1573. Weld8.part1 = Part167
  1574. Weld9.Name = "BTWeld"
  1575. Weld9.Parent = Part3
  1576. 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)
  1577. Weld9.Part0 = Part3
  1578. Weld9.Part1 = Part177
  1579. Weld9.part1 = Part177
  1580. Weld10.Name = "BTWeld"
  1581. Weld10.Parent = Part3
  1582. 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)
  1583. Weld10.Part0 = Part3
  1584. Weld10.Part1 = Part277
  1585. Weld10.part1 = Part277
  1586. Weld11.Name = "BTWeld"
  1587. Weld11.Parent = Part3
  1588. 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)
  1589. Weld11.Part0 = Part3
  1590. Weld11.Part1 = Part427
  1591. Weld11.part1 = Part427
  1592. Weld12.Name = "BTWeld"
  1593. Weld12.Parent = Part3
  1594. 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)
  1595. Weld12.Part0 = Part3
  1596. Weld12.Part1 = Part209
  1597. Weld12.part1 = Part209
  1598. Weld13.Name = "BTWeld"
  1599. Weld13.Parent = Part3
  1600. 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)
  1601. Weld13.Part0 = Part3
  1602. Weld13.Part1 = Part265
  1603. Weld13.part1 = Part265
  1604. Weld14.Name = "BTWeld"
  1605. Weld14.Parent = Part3
  1606. 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)
  1607. Weld14.Part0 = Part3
  1608. Weld14.Part1 = Part445
  1609. Weld14.part1 = Part445
  1610. Weld15.Name = "BTWeld"
  1611. Weld15.Parent = Part3
  1612. 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)
  1613. Weld15.Part0 = Part3
  1614. Weld15.Part1 = Part175
  1615. Weld15.part1 = Part175
  1616. Weld16.Name = "BTWeld"
  1617. Weld16.Parent = Part3
  1618. 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)
  1619. Weld16.Part0 = Part3
  1620. Weld16.Part1 = Part433
  1621. Weld16.part1 = Part433
  1622. Weld17.Name = "BTWeld"
  1623. Weld17.Parent = Part3
  1624. 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)
  1625. Weld17.Part0 = Part3
  1626. Weld17.Part1 = Part417
  1627. Weld17.part1 = Part417
  1628. Weld18.Name = "BTWeld"
  1629. Weld18.Parent = Part3
  1630. 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)
  1631. Weld18.Part0 = Part3
  1632. Weld18.Part1 = Part295
  1633. Weld18.part1 = Part295
  1634. Weld19.Name = "BTWeld"
  1635. Weld19.Parent = Part3
  1636. 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)
  1637. Weld19.Part0 = Part3
  1638. Weld19.Part1 = Part165
  1639. Weld19.part1 = Part165
  1640. Weld20.Name = "BTWeld"
  1641. Weld20.Parent = Part3
  1642. 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)
  1643. Weld20.Part0 = Part3
  1644. Weld20.Part1 = Part315
  1645. Weld20.part1 = Part315
  1646. Weld21.Name = "BTWeld"
  1647. Weld21.Parent = Part3
  1648. 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)
  1649. Weld21.Part0 = Part3
  1650. Weld21.Part1 = Part457
  1651. Weld21.part1 = Part457
  1652. Weld22.Name = "BTWeld"
  1653. Weld22.Parent = Part3
  1654. 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)
  1655. Weld22.Part0 = Part3
  1656. Weld22.Part1 = Part363
  1657. Weld22.part1 = Part363
  1658. Weld23.Name = "BTWeld"
  1659. Weld23.Parent = Part3
  1660. 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)
  1661. Weld23.Part0 = Part3
  1662. Weld23.Part1 = Part429
  1663. Weld23.part1 = Part429
  1664. Weld24.Name = "BTWeld"
  1665. Weld24.Parent = Part3
  1666. 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)
  1667. Weld24.Part0 = Part3
  1668. Weld24.Part1 = Part253
  1669. Weld24.part1 = Part253
  1670. Weld25.Name = "BTWeld"
  1671. Weld25.Parent = Part3
  1672. 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)
  1673. Weld25.Part0 = Part3
  1674. Weld25.Part1 = Part383
  1675. Weld25.part1 = Part383
  1676. Weld26.Name = "BTWeld"
  1677. Weld26.Parent = Part3
  1678. 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)
  1679. Weld26.Part0 = Part3
  1680. Weld26.Part1 = Part289
  1681. Weld26.part1 = Part289
  1682. Weld27.Name = "BTWeld"
  1683. Weld27.Parent = Part3
  1684. 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)
  1685. Weld27.Part0 = Part3
  1686. Weld27.Part1 = Part465
  1687. Weld27.part1 = Part465
  1688. Weld28.Name = "BTWeld"
  1689. Weld28.Parent = Part3
  1690. 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)
  1691. Weld28.Part0 = Part3
  1692. Weld28.Part1 = Part325
  1693. Weld28.part1 = Part325
  1694. Weld29.Name = "BTWeld"
  1695. Weld29.Parent = Part3
  1696. 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)
  1697. Weld29.Part0 = Part3
  1698. Weld29.Part1 = Part435
  1699. Weld29.part1 = Part435
  1700. Weld30.Name = "BTWeld"
  1701. Weld30.Parent = Part3
  1702. 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)
  1703. Weld30.Part0 = Part3
  1704. Weld30.Part1 = Part297
  1705. Weld30.part1 = Part297
  1706. Weld31.Name = "BTWeld"
  1707. Weld31.Parent = Part3
  1708. 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)
  1709. Weld31.Part0 = Part3
  1710. Weld31.Part1 = Part403
  1711. Weld31.part1 = Part403
  1712. Weld32.Name = "BTWeld"
  1713. Weld32.Parent = Part3
  1714. 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)
  1715. Weld32.Part0 = Part3
  1716. Weld32.Part1 = Part317
  1717. Weld32.part1 = Part317
  1718. Weld33.Name = "BTWeld"
  1719. Weld33.Parent = Part3
  1720. 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)
  1721. Weld33.Part0 = Part3
  1722. Weld33.Part1 = Part171
  1723. Weld33.part1 = Part171
  1724. Weld34.Name = "BTWeld"
  1725. Weld34.Parent = Part3
  1726. 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)
  1727. Weld34.Part0 = Part3
  1728. Weld34.Part1 = Part251
  1729. Weld34.part1 = Part251
  1730. Weld35.Name = "BTWeld"
  1731. Weld35.Parent = Part3
  1732. 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)
  1733. Weld35.Part0 = Part3
  1734. Weld35.Part1 = Part443
  1735. Weld35.part1 = Part443
  1736. Weld36.Name = "BTWeld"
  1737. Weld36.Parent = Part3
  1738. 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)
  1739. Weld36.Part0 = Part3
  1740. Weld36.Part1 = Part243
  1741. Weld36.part1 = Part243
  1742. Weld37.Name = "BTWeld"
  1743. Weld37.Parent = Part3
  1744. 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)
  1745. Weld37.Part0 = Part3
  1746. Weld37.Part1 = Part191
  1747. Weld37.part1 = Part191
  1748. Weld38.Name = "BTWeld"
  1749. Weld38.Parent = Part3
  1750. 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)
  1751. Weld38.Part0 = Part3
  1752. Weld38.Part1 = Part459
  1753. Weld38.part1 = Part459
  1754. Weld39.Name = "BTWeld"
  1755. Weld39.Parent = Part3
  1756. 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)
  1757. Weld39.Part0 = Part3
  1758. Weld39.Part1 = Part327
  1759. Weld39.part1 = Part327
  1760. Weld40.Name = "BTWeld"
  1761. Weld40.Parent = Part3
  1762. 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)
  1763. Weld40.Part0 = Part3
  1764. Weld40.Part1 = Part229
  1765. Weld40.part1 = Part229
  1766. Weld41.Name = "BTWeld"
  1767. Weld41.Parent = Part3
  1768. 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)
  1769. Weld41.Part0 = Part3
  1770. Weld41.Part1 = Part469
  1771. Weld41.part1 = Part469
  1772. Weld42.Name = "BTWeld"
  1773. Weld42.Parent = Part3
  1774. 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)
  1775. Weld42.Part0 = Part3
  1776. Weld42.Part1 = Part169
  1777. Weld42.part1 = Part169
  1778. Weld43.Name = "BTWeld"
  1779. Weld43.Parent = Part3
  1780. 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)
  1781. Weld43.Part0 = Part3
  1782. Weld43.Part1 = Part463
  1783. Weld43.part1 = Part463
  1784. Weld44.Name = "BTWeld"
  1785. Weld44.Parent = Part3
  1786. 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)
  1787. Weld44.Part0 = Part3
  1788. Weld44.Part1 = Part411
  1789. Weld44.part1 = Part411
  1790. Weld45.Name = "BTWeld"
  1791. Weld45.Parent = Part3
  1792. 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)
  1793. Weld45.Part0 = Part3
  1794. Weld45.Part1 = Part475
  1795. Weld45.part1 = Part475
  1796. Weld46.Name = "BTWeld"
  1797. Weld46.Parent = Part3
  1798. 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)
  1799. Weld46.Part0 = Part3
  1800. Weld46.Part1 = Part473
  1801. Weld46.part1 = Part473
  1802. Weld47.Name = "BTWeld"
  1803. Weld47.Parent = Part3
  1804. 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)
  1805. Weld47.Part0 = Part3
  1806. Weld47.Part1 = Part355
  1807. Weld47.part1 = Part355
  1808. Weld48.Name = "BTWeld"
  1809. Weld48.Parent = Part3
  1810. 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)
  1811. Weld48.Part0 = Part3
  1812. Weld48.Part1 = Part341
  1813. Weld48.part1 = Part341
  1814. Weld49.Name = "BTWeld"
  1815. Weld49.Parent = Part3
  1816. 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)
  1817. Weld49.Part0 = Part3
  1818. Weld49.Part1 = Part269
  1819. Weld49.part1 = Part269
  1820. Weld50.Name = "BTWeld"
  1821. Weld50.Parent = Part3
  1822. 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)
  1823. Weld50.Part0 = Part3
  1824. Weld50.Part1 = Part379
  1825. Weld50.part1 = Part379
  1826. Weld51.Name = "BTWeld"
  1827. Weld51.Parent = Part3
  1828. 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)
  1829. Weld51.Part0 = Part3
  1830. Weld51.Part1 = Part455
  1831. Weld51.part1 = Part455
  1832. Weld52.Name = "BTWeld"
  1833. Weld52.Parent = Part3
  1834. 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)
  1835. Weld52.Part0 = Part3
  1836. Weld52.Part1 = Part453
  1837. Weld52.part1 = Part453
  1838. Weld53.Name = "BTWeld"
  1839. Weld53.Parent = Part3
  1840. 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)
  1841. Weld53.Part0 = Part3
  1842. Weld53.Part1 = Part425
  1843. Weld53.part1 = Part425
  1844. Weld54.Name = "BTWeld"
  1845. Weld54.Parent = Part3
  1846. 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)
  1847. Weld54.Part0 = Part3
  1848. Weld54.Part1 = Part241
  1849. Weld54.part1 = Part241
  1850. Weld55.Name = "BTWeld"
  1851. Weld55.Parent = Part3
  1852. 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)
  1853. Weld55.Part0 = Part3
  1854. Weld55.Part1 = Part321
  1855. Weld55.part1 = Part321
  1856. Weld56.Name = "BTWeld"
  1857. Weld56.Parent = Part3
  1858. 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)
  1859. Weld56.Part0 = Part3
  1860. Weld56.Part1 = Part449
  1861. Weld56.part1 = Part449
  1862. Weld57.Name = "BTWeld"
  1863. Weld57.Parent = Part3
  1864. 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)
  1865. Weld57.Part0 = Part3
  1866. Weld57.Part1 = Part261
  1867. Weld57.part1 = Part261
  1868. Weld58.Name = "BTWeld"
  1869. Weld58.Parent = Part3
  1870. 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)
  1871. Weld58.Part0 = Part3
  1872. Weld58.Part1 = Part367
  1873. Weld58.part1 = Part367
  1874. Weld59.Name = "BTWeld"
  1875. Weld59.Parent = Part3
  1876. 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)
  1877. Weld59.Part0 = Part3
  1878. Weld59.Part1 = Part179
  1879. Weld59.part1 = Part179
  1880. Weld60.Name = "BTWeld"
  1881. Weld60.Parent = Part3
  1882. 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)
  1883. Weld60.Part0 = Part3
  1884. Weld60.Part1 = Part437
  1885. Weld60.part1 = Part437
  1886. Weld61.Name = "BTWeld"
  1887. Weld61.Parent = Part3
  1888. 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)
  1889. Weld61.Part0 = Part3
  1890. Weld61.Part1 = Part365
  1891. Weld61.part1 = Part365
  1892. Weld62.Name = "BTWeld"
  1893. Weld62.Parent = Part3
  1894. 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)
  1895. Weld62.Part0 = Part3
  1896. Weld62.Part1 = Part423
  1897. Weld62.part1 = Part423
  1898. Weld63.Name = "BTWeld"
  1899. Weld63.Parent = Part3
  1900. 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)
  1901. Weld63.Part0 = Part3
  1902. Weld63.Part1 = Part421
  1903. Weld63.part1 = Part421
  1904. Weld64.Name = "BTWeld"
  1905. Weld64.Parent = Part3
  1906. 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)
  1907. Weld64.Part0 = Part3
  1908. Weld64.Part1 = Part391
  1909. Weld64.part1 = Part391
  1910. Weld65.Name = "BTWeld"
  1911. Weld65.Parent = Part3
  1912. 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)
  1913. Weld65.Part0 = Part3
  1914. Weld65.Part1 = Part419
  1915. Weld65.part1 = Part419
  1916. Weld66.Name = "BTWeld"
  1917. Weld66.Parent = Part3
  1918. 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)
  1919. Weld66.Part0 = Part3
  1920. Weld66.Part1 = Part415
  1921. Weld66.part1 = Part415
  1922. Weld67.Name = "BTWeld"
  1923. Weld67.Parent = Part3
  1924. 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)
  1925. Weld67.Part0 = Part3
  1926. Weld67.Part1 = Part193
  1927. Weld67.part1 = Part193
  1928. Weld68.Name = "BTWeld"
  1929. Weld68.Parent = Part3
  1930. 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)
  1931. Weld68.Part0 = Part3
  1932. Weld68.Part1 = Part447
  1933. Weld68.part1 = Part447
  1934. Weld69.Name = "BTWeld"
  1935. Weld69.Parent = Part3
  1936. 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)
  1937. Weld69.Part0 = Part3
  1938. Weld69.Part1 = Part329
  1939. Weld69.part1 = Part329
  1940. Weld70.Name = "BTWeld"
  1941. Weld70.Parent = Part3
  1942. 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)
  1943. Weld70.Part0 = Part3
  1944. Weld70.Part1 = Part213
  1945. Weld70.part1 = Part213
  1946. Weld71.Name = "BTWeld"
  1947. Weld71.Parent = Part3
  1948. 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)
  1949. Weld71.Part0 = Part3
  1950. Weld71.Part1 = Part257
  1951. Weld71.part1 = Part257
  1952. Weld72.Name = "BTWeld"
  1953. Weld72.Parent = Part3
  1954. 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)
  1955. Weld72.Part0 = Part3
  1956. Weld72.Part1 = Part173
  1957. Weld72.part1 = Part173
  1958. Weld73.Name = "BTWeld"
  1959. Weld73.Parent = Part3
  1960. 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)
  1961. Weld73.Part0 = Part3
  1962. Weld73.Part1 = Part361
  1963. Weld73.part1 = Part361
  1964. Weld74.Name = "BTWeld"
  1965. Weld74.Parent = Part3
  1966. 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)
  1967. Weld74.Part0 = Part3
  1968. Weld74.Part1 = Part377
  1969. Weld74.part1 = Part377
  1970. Weld75.Name = "BTWeld"
  1971. Weld75.Parent = Part3
  1972. 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)
  1973. Weld75.Part0 = Part3
  1974. Weld75.Part1 = Part283
  1975. Weld75.part1 = Part283
  1976. Weld76.Name = "BTWeld"
  1977. Weld76.Parent = Part3
  1978. 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)
  1979. Weld76.Part0 = Part3
  1980. Weld76.Part1 = Part291
  1981. Weld76.part1 = Part291
  1982. Weld77.Name = "BTWeld"
  1983. Weld77.Parent = Part3
  1984. 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)
  1985. Weld77.Part0 = Part3
  1986. Weld77.Part1 = Part395
  1987. Weld77.part1 = Part395
  1988. Weld78.Name = "BTWeld"
  1989. Weld78.Parent = Part3
  1990. 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)
  1991. Weld78.Part0 = Part3
  1992. Weld78.Part1 = Part451
  1993. Weld78.part1 = Part451
  1994. Weld79.Name = "BTWeld"
  1995. Weld79.Parent = Part3
  1996. 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)
  1997. Weld79.Part0 = Part3
  1998. Weld79.Part1 = Part203
  1999. Weld79.part1 = Part203
  2000. Weld80.Name = "BTWeld"
  2001. Weld80.Parent = Part3
  2002. 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)
  2003. Weld80.Part0 = Part3
  2004. Weld80.Part1 = Part397
  2005. Weld80.part1 = Part397
  2006. Weld81.Name = "BTWeld"
  2007. Weld81.Parent = Part3
  2008. 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)
  2009. Weld81.Part0 = Part3
  2010. Weld81.Part1 = Part237
  2011. Weld81.part1 = Part237
  2012. Weld82.Name = "BTWeld"
  2013. Weld82.Parent = Part3
  2014. 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)
  2015. Weld82.Part0 = Part3
  2016. Weld82.Part1 = Part373
  2017. Weld82.part1 = Part373
  2018. Weld83.Name = "BTWeld"
  2019. Weld83.Parent = Part3
  2020. 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)
  2021. Weld83.Part0 = Part3
  2022. Weld83.Part1 = Part163
  2023. Weld83.part1 = Part163
  2024. Weld84.Name = "BTWeld"
  2025. Weld84.Parent = Part3
  2026. 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)
  2027. Weld84.Part0 = Part3
  2028. Weld84.Part1 = Part281
  2029. Weld84.part1 = Part281
  2030. Weld85.Name = "BTWeld"
  2031. Weld85.Parent = Part3
  2032. 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)
  2033. Weld85.Part0 = Part3
  2034. Weld85.Part1 = Part345
  2035. Weld85.part1 = Part345
  2036. Weld86.Name = "BTWeld"
  2037. Weld86.Parent = Part3
  2038. 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)
  2039. Weld86.Part0 = Part3
  2040. Weld86.Part1 = Part399
  2041. Weld86.part1 = Part399
  2042. Weld87.Name = "BTWeld"
  2043. Weld87.Parent = Part3
  2044. 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)
  2045. Weld87.Part0 = Part3
  2046. Weld87.Part1 = Part199
  2047. Weld87.part1 = Part199
  2048. Weld88.Name = "BTWeld"
  2049. Weld88.Parent = Part3
  2050. 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)
  2051. Weld88.Part0 = Part3
  2052. Weld88.Part1 = Part219
  2053. Weld88.part1 = Part219
  2054. Weld89.Name = "BTWeld"
  2055. Weld89.Parent = Part3
  2056. 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)
  2057. Weld89.Part0 = Part3
  2058. Weld89.Part1 = Part1
  2059. Weld89.part1 = Part1
  2060. Weld90.Name = "BTWeld"
  2061. Weld90.Parent = Part3
  2062. 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)
  2063. Weld90.Part0 = Part3
  2064. Weld90.Part1 = Part275
  2065. Weld90.part1 = Part275
  2066. Weld91.Name = "BTWeld"
  2067. Weld91.Parent = Part3
  2068. 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)
  2069. Weld91.Part0 = Part3
  2070. Weld91.Part1 = Part233
  2071. Weld91.part1 = Part233
  2072. Weld92.Name = "BTWeld"
  2073. Weld92.Parent = Part3
  2074. 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)
  2075. Weld92.Part0 = Part3
  2076. Weld92.Part1 = Part221
  2077. Weld92.part1 = Part221
  2078. Weld93.Name = "BTWeld"
  2079. Weld93.Parent = Part3
  2080. 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)
  2081. Weld93.Part0 = Part3
  2082. Weld93.Part1 = Part467
  2083. Weld93.part1 = Part467
  2084. Weld94.Name = "BTWeld"
  2085. Weld94.Parent = Part3
  2086. 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)
  2087. Weld94.Part0 = Part3
  2088. Weld94.Part1 = Part339
  2089. Weld94.part1 = Part339
  2090. Weld95.Name = "BTWeld"
  2091. Weld95.Parent = Part3
  2092. 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)
  2093. Weld95.Part0 = Part3
  2094. Weld95.Part1 = Part401
  2095. Weld95.part1 = Part401
  2096. Weld96.Name = "BTWeld"
  2097. Weld96.Parent = Part3
  2098. 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)
  2099. Weld96.Part0 = Part3
  2100. Weld96.Part1 = Part409
  2101. Weld96.part1 = Part409
  2102. Weld97.Name = "BTWeld"
  2103. Weld97.Parent = Part3
  2104. 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)
  2105. Weld97.Part0 = Part3
  2106. Weld97.Part1 = Part381
  2107. Weld97.part1 = Part381
  2108. Weld98.Name = "BTWeld"
  2109. Weld98.Parent = Part3
  2110. 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)
  2111. Weld98.Part0 = Part3
  2112. Weld98.Part1 = Part431
  2113. Weld98.part1 = Part431
  2114. Weld99.Name = "BTWeld"
  2115. Weld99.Parent = Part3
  2116. 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)
  2117. Weld99.Part0 = Part3
  2118. Weld99.Part1 = Part215
  2119. Weld99.part1 = Part215
  2120. Weld100.Name = "BTWeld"
  2121. Weld100.Parent = Part3
  2122. 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)
  2123. Weld100.Part0 = Part3
  2124. Weld100.Part1 = Part231
  2125. Weld100.part1 = Part231
  2126. Weld101.Name = "BTWeld"
  2127. Weld101.Parent = Part3
  2128. 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)
  2129. Weld101.Part0 = Part3
  2130. Weld101.Part1 = Part195
  2131. Weld101.part1 = Part195
  2132. Weld102.Name = "BTWeld"
  2133. Weld102.Parent = Part3
  2134. 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)
  2135. Weld102.Part0 = Part3
  2136. Weld102.Part1 = Part247
  2137. Weld102.part1 = Part247
  2138. Weld103.Name = "BTWeld"
  2139. Weld103.Parent = Part3
  2140. 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)
  2141. Weld103.Part0 = Part3
  2142. Weld103.Part1 = Part307
  2143. Weld103.part1 = Part307
  2144. Weld104.Name = "BTWeld"
  2145. Weld104.Parent = Part3
  2146. 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)
  2147. Weld104.Part0 = Part3
  2148. Weld104.Part1 = Part259
  2149. Weld104.part1 = Part259
  2150. Weld105.Name = "BTWeld"
  2151. Weld105.Parent = Part3
  2152. 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)
  2153. Weld105.Part0 = Part3
  2154. Weld105.Part1 = Part407
  2155. Weld105.part1 = Part407
  2156. Weld106.Name = "BTWeld"
  2157. Weld106.Parent = Part3
  2158. 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)
  2159. Weld106.Part0 = Part3
  2160. Weld106.Part1 = Part263
  2161. Weld106.part1 = Part263
  2162. Weld107.Name = "BTWeld"
  2163. Weld107.Parent = Part3
  2164. 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)
  2165. Weld107.Part0 = Part3
  2166. Weld107.Part1 = Part351
  2167. Weld107.part1 = Part351
  2168. Weld108.Name = "BTWeld"
  2169. Weld108.Parent = Part3
  2170. 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)
  2171. Weld108.Part0 = Part3
  2172. Weld108.Part1 = Part331
  2173. Weld108.part1 = Part331
  2174. Weld109.Name = "BTWeld"
  2175. Weld109.Parent = Part3
  2176. 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)
  2177. Weld109.Part0 = Part3
  2178. Weld109.Part1 = Part187
  2179. Weld109.part1 = Part187
  2180. Weld110.Name = "BTWeld"
  2181. Weld110.Parent = Part3
  2182. 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)
  2183. Weld110.Part0 = Part3
  2184. Weld110.Part1 = Part239
  2185. Weld110.part1 = Part239
  2186. Weld111.Name = "BTWeld"
  2187. Weld111.Parent = Part3
  2188. 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)
  2189. Weld111.Part0 = Part3
  2190. Weld111.Part1 = Part293
  2191. Weld111.part1 = Part293
  2192. Weld112.Name = "BTWeld"
  2193. Weld112.Parent = Part3
  2194. 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)
  2195. Weld112.Part0 = Part3
  2196. Weld112.Part1 = Part387
  2197. Weld112.part1 = Part387
  2198. Weld113.Name = "BTWeld"
  2199. Weld113.Parent = Part3
  2200. 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)
  2201. Weld113.Part0 = Part3
  2202. Weld113.Part1 = Part471
  2203. Weld113.part1 = Part471
  2204. Weld114.Name = "BTWeld"
  2205. Weld114.Parent = Part3
  2206. 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)
  2207. Weld114.Part0 = Part3
  2208. Weld114.Part1 = Part301
  2209. Weld114.part1 = Part301
  2210. Weld115.Name = "BTWeld"
  2211. Weld115.Parent = Part3
  2212. 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)
  2213. Weld115.Part0 = Part3
  2214. Weld115.Part1 = Part389
  2215. Weld115.part1 = Part389
  2216. Weld116.Name = "BTWeld"
  2217. Weld116.Parent = Part3
  2218. 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)
  2219. Weld116.Part0 = Part3
  2220. Weld116.Part1 = Part255
  2221. Weld116.part1 = Part255
  2222. Weld117.Name = "BTWeld"
  2223. Weld117.Parent = Part3
  2224. 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)
  2225. Weld117.Part0 = Part3
  2226. Weld117.Part1 = Part299
  2227. Weld117.part1 = Part299
  2228. Weld118.Name = "BTWeld"
  2229. Weld118.Parent = Part3
  2230. 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)
  2231. Weld118.Part0 = Part3
  2232. Weld118.Part1 = Part461
  2233. Weld118.part1 = Part461
  2234. Weld119.Name = "BTWeld"
  2235. Weld119.Parent = Part3
  2236. 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)
  2237. Weld119.Part0 = Part3
  2238. Weld119.Part1 = Part349
  2239. Weld119.part1 = Part349
  2240. Weld120.Name = "BTWeld"
  2241. Weld120.Parent = Part3
  2242. 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)
  2243. Weld120.Part0 = Part3
  2244. Weld120.Part1 = Part217
  2245. Weld120.part1 = Part217
  2246. Weld121.Name = "BTWeld"
  2247. Weld121.Parent = Part3
  2248. 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)
  2249. Weld121.Part0 = Part3
  2250. Weld121.Part1 = Part393
  2251. Weld121.part1 = Part393
  2252. Weld122.Name = "BTWeld"
  2253. Weld122.Parent = Part3
  2254. 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)
  2255. Weld122.Part0 = Part3
  2256. Weld122.Part1 = Part287
  2257. Weld122.part1 = Part287
  2258. Weld123.Name = "BTWeld"
  2259. Weld123.Parent = Part3
  2260. 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)
  2261. Weld123.Part0 = Part3
  2262. Weld123.Part1 = Part235
  2263. Weld123.part1 = Part235
  2264. Weld124.Name = "BTWeld"
  2265. Weld124.Parent = Part3
  2266. 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)
  2267. Weld124.Part0 = Part3
  2268. Weld124.Part1 = Part227
  2269. Weld124.part1 = Part227
  2270. Weld125.Name = "BTWeld"
  2271. Weld125.Parent = Part3
  2272. 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)
  2273. Weld125.Part0 = Part3
  2274. Weld125.Part1 = Part375
  2275. Weld125.part1 = Part375
  2276. Weld126.Name = "BTWeld"
  2277. Weld126.Parent = Part3
  2278. 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)
  2279. Weld126.Part0 = Part3
  2280. Weld126.Part1 = Part223
  2281. Weld126.part1 = Part223
  2282. Weld127.Name = "BTWeld"
  2283. Weld127.Parent = Part3
  2284. 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)
  2285. Weld127.Part0 = Part3
  2286. Weld127.Part1 = Part347
  2287. Weld127.part1 = Part347
  2288. Weld128.Name = "BTWeld"
  2289. Weld128.Parent = Part3
  2290. 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)
  2291. Weld128.Part0 = Part3
  2292. Weld128.Part1 = Part207
  2293. Weld128.part1 = Part207
  2294. Weld129.Name = "BTWeld"
  2295. Weld129.Parent = Part3
  2296. 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)
  2297. Weld129.Part0 = Part3
  2298. Weld129.Part1 = Part273
  2299. Weld129.part1 = Part273
  2300. Weld130.Name = "BTWeld"
  2301. Weld130.Parent = Part3
  2302. 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)
  2303. Weld130.Part0 = Part3
  2304. Weld130.Part1 = Part369
  2305. Weld130.part1 = Part369
  2306. Weld131.Name = "BTWeld"
  2307. Weld131.Parent = Part3
  2308. 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)
  2309. Weld131.Part0 = Part3
  2310. Weld131.Part1 = Part285
  2311. Weld131.part1 = Part285
  2312. Weld132.Name = "BTWeld"
  2313. Weld132.Parent = Part3
  2314. 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)
  2315. Weld132.Part0 = Part3
  2316. Weld132.Part1 = Part405
  2317. Weld132.part1 = Part405
  2318. Weld133.Name = "BTWeld"
  2319. Weld133.Parent = Part3
  2320. 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)
  2321. Weld133.Part0 = Part3
  2322. Weld133.Part1 = Part359
  2323. Weld133.part1 = Part359
  2324. Weld134.Name = "BTWeld"
  2325. Weld134.Parent = Part3
  2326. 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)
  2327. Weld134.Part0 = Part3
  2328. Weld134.Part1 = Part183
  2329. Weld134.part1 = Part183
  2330. Weld135.Name = "BTWeld"
  2331. Weld135.Parent = Part3
  2332. 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)
  2333. Weld135.Part0 = Part3
  2334. Weld135.Part1 = Part225
  2335. Weld135.part1 = Part225
  2336. Weld136.Name = "BTWeld"
  2337. Weld136.Parent = Part3
  2338. 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)
  2339. Weld136.Part0 = Part3
  2340. Weld136.Part1 = Part337
  2341. Weld136.part1 = Part337
  2342. Weld137.Name = "BTWeld"
  2343. Weld137.Parent = Part3
  2344. 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)
  2345. Weld137.Part0 = Part3
  2346. Weld137.Part1 = Part245
  2347. Weld137.part1 = Part245
  2348. Weld138.Name = "BTWeld"
  2349. Weld138.Parent = Part3
  2350. 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)
  2351. Weld138.Part0 = Part3
  2352. Weld138.Part1 = Part309
  2353. Weld138.part1 = Part309
  2354. Weld139.Name = "BTWeld"
  2355. Weld139.Parent = Part3
  2356. 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)
  2357. Weld139.Part0 = Part3
  2358. Weld139.Part1 = Part181
  2359. Weld139.part1 = Part181
  2360. Weld140.Name = "BTWeld"
  2361. Weld140.Parent = Part3
  2362. 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)
  2363. Weld140.Part0 = Part3
  2364. Weld140.Part1 = Part333
  2365. Weld140.part1 = Part333
  2366. Weld141.Name = "BTWeld"
  2367. Weld141.Parent = Part3
  2368. 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)
  2369. Weld141.Part0 = Part3
  2370. Weld141.Part1 = Part249
  2371. Weld141.part1 = Part249
  2372. Weld142.Name = "BTWeld"
  2373. Weld142.Parent = Part3
  2374. 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)
  2375. Weld142.Part0 = Part3
  2376. Weld142.Part1 = Part205
  2377. Weld142.part1 = Part205
  2378. Weld143.Name = "BTWeld"
  2379. Weld143.Parent = Part3
  2380. 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)
  2381. Weld143.Part0 = Part3
  2382. Weld143.Part1 = Part385
  2383. Weld143.part1 = Part385
  2384. Weld144.Name = "BTWeld"
  2385. Weld144.Parent = Part3
  2386. 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)
  2387. Weld144.Part0 = Part3
  2388. Weld144.Part1 = Part197
  2389. Weld144.part1 = Part197
  2390. Weld145.Name = "BTWeld"
  2391. Weld145.Parent = Part3
  2392. 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)
  2393. Weld145.Part0 = Part3
  2394. Weld145.Part1 = Part357
  2395. Weld145.part1 = Part357
  2396. Weld146.Name = "BTWeld"
  2397. Weld146.Parent = Part3
  2398. 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)
  2399. Weld146.Part0 = Part3
  2400. Weld146.Part1 = Part343
  2401. Weld146.part1 = Part343
  2402. Weld147.Name = "BTWeld"
  2403. Weld147.Parent = Part3
  2404. 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)
  2405. Weld147.Part0 = Part3
  2406. Weld147.Part1 = Part353
  2407. Weld147.part1 = Part353
  2408. Weld148.Name = "BTWeld"
  2409. Weld148.Parent = Part3
  2410. 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)
  2411. Weld148.Part0 = Part3
  2412. Weld148.Part1 = Part313
  2413. Weld148.part1 = Part313
  2414. Weld149.Name = "BTWeld"
  2415. Weld149.Parent = Part3
  2416. 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)
  2417. Weld149.Part0 = Part3
  2418. Weld149.Part1 = Part211
  2419. Weld149.part1 = Part211
  2420. Weld150.Name = "BTWeld"
  2421. Weld150.Parent = Part3
  2422. 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)
  2423. Weld150.Part0 = Part3
  2424. Weld150.Part1 = Part311
  2425. Weld150.part1 = Part311
  2426. Weld151.Name = "BTWeld"
  2427. Weld151.Parent = Part3
  2428. 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)
  2429. Weld151.Part0 = Part3
  2430. Weld151.Part1 = Part319
  2431. Weld151.part1 = Part319
  2432. Weld152.Name = "BTWeld"
  2433. Weld152.Parent = Part3
  2434. 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)
  2435. Weld152.Part0 = Part3
  2436. Weld152.Part1 = Part189
  2437. Weld152.part1 = Part189
  2438. Weld153.Name = "BTWeld"
  2439. Weld153.Parent = Part3
  2440. 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)
  2441. Weld153.Part0 = Part3
  2442. Weld153.Part1 = Part271
  2443. Weld153.part1 = Part271
  2444. Weld154.Name = "BTWeld"
  2445. Weld154.Parent = Part3
  2446. 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)
  2447. Weld154.Part0 = Part3
  2448. Weld154.Part1 = Part303
  2449. Weld154.part1 = Part303
  2450. Weld155.Name = "BTWeld"
  2451. Weld155.Parent = Part3
  2452. 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)
  2453. Weld155.Part0 = Part3
  2454. Weld155.Part1 = Part305
  2455. Weld155.part1 = Part305
  2456. Weld156.Name = "BTWeld"
  2457. Weld156.Parent = Part3
  2458. 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)
  2459. Weld156.Part0 = Part3
  2460. Weld156.Part1 = Part413
  2461. Weld156.part1 = Part413
  2462. Weld157.Name = "BTWeld"
  2463. Weld157.Parent = Part3
  2464. 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)
  2465. Weld157.Part0 = Part3
  2466. Weld157.Part1 = Part267
  2467. Weld157.part1 = Part267
  2468. Weld158.Name = "BTWeld"
  2469. Weld158.Parent = Part3
  2470. 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)
  2471. Weld158.Part0 = Part3
  2472. Weld158.Part1 = Part439
  2473. Weld158.part1 = Part439
  2474. Weld159.Name = "BTWeld"
  2475. Weld159.Parent = Part3
  2476. 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)
  2477. Weld159.Part0 = Part3
  2478. Weld159.Part1 = Part201
  2479. Weld159.part1 = Part201
  2480. Weld160.Name = "BTWeld"
  2481. Weld160.Parent = Part3
  2482. 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)
  2483. Weld160.Part0 = Part3
  2484. Weld160.Part1 = Part279
  2485. Weld160.part1 = Part279
  2486. Weld161.Name = "BTWeld"
  2487. Weld161.Parent = Part3
  2488. 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)
  2489. Weld161.Part0 = Part3
  2490. Weld161.Part1 = Part335
  2491. Weld161.part1 = Part335
  2492. Weld162.Name = "BTWeld"
  2493. Weld162.Parent = Part3
  2494. 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)
  2495. Weld162.Part0 = Part3
  2496. Weld162.Part1 = Part185
  2497. Weld162.part1 = Part185
  2498. Part163.Parent = Model0
  2499. 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)
  2500. Part163.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2501. Part163.Position = Vector3.new(-0.611257851, 3.46313882, -15.394145)
  2502. Part163.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2503. Part163.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2504. Part163.Velocity = Vector3.new(2.31788153e-08, 0.0024639722, 3.04594494e-07)
  2505. Part163.Size = Vector3.new(0.275000006, 0.84512496, 0.359375)
  2506. Part163.Anchored = true
  2507. Part163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2508. Part163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2509. Part163.BrickColor = BrickColor.new("Really black")
  2510. Part163.CanCollide = false
  2511. Part163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2512. Part163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2513. Part163.Material = Enum.Material.Metal
  2514. Part163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2515. Part163.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2516. Part163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2517. Part163.brickColor = BrickColor.new("Really black")
  2518. SpecialMesh164.Parent = Part163
  2519. SpecialMesh164.Scale = Vector3.new(0.349999994, 1, 0.5)
  2520. SpecialMesh164.MeshType = Enum.MeshType.Brick
  2521. Part165.Parent = Model0
  2522. 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)
  2523. Part165.Orientation = Vector3.new(-55.9099998, -179.649994, -0.529999971)
  2524. Part165.Position = Vector3.new(-0.617485046, 3.2590127, -10.6418428)
  2525. Part165.Rotation = Vector3.new(-124.089996, -0.189999998, 179.759995)
  2526. Part165.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2527. Part165.Velocity = Vector3.new(5.55462663e-08, 0.00247387378, 7.29936687e-07)
  2528. Part165.Size = Vector3.new(0.275000006, 0.4375, 0.25)
  2529. Part165.Anchored = true
  2530. Part165.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2531. Part165.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2532. Part165.BrickColor = BrickColor.new("Really black")
  2533. Part165.CanCollide = false
  2534. Part165.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2535. Part165.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2536. Part165.Material = Enum.Material.Metal
  2537. Part165.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2538. Part165.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2539. Part165.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2540. Part165.brickColor = BrickColor.new("Really black")
  2541. SpecialMesh166.Parent = Part165
  2542. SpecialMesh166.Scale = Vector3.new(0.5, 1, 0.25)
  2543. SpecialMesh166.MeshType = Enum.MeshType.Brick
  2544. Part167.Parent = Model0
  2545. 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)
  2546. Part167.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  2547. Part167.Position = Vector3.new(-0.610199153, 2.88768315, -14.1553068)
  2548. Part167.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  2549. Part167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2550. Part167.Velocity = Vector3.new(1.14426342e-07, 0.00246655382, 1.50368453e-06)
  2551. Part167.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  2552. Part167.Anchored = true
  2553. Part167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2554. Part167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2555. Part167.BrickColor = BrickColor.new("Really black")
  2556. Part167.CanCollide = false
  2557. Part167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2558. Part167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2559. Part167.Material = Enum.Material.Glass
  2560. Part167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2561. Part167.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2562. Part167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2563. Part167.brickColor = BrickColor.new("Really black")
  2564. SpecialMesh168.Parent = Part167
  2565. SpecialMesh168.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  2566. SpecialMesh168.MeshType = Enum.MeshType.Wedge
  2567. Part169.Parent = Model0
  2568. 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)
  2569. Part169.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2570. Part169.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  2571. Part169.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2572. Part169.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2573. Part169.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  2574. Part169.Size = Vector3.new(0.275000006, 0.698124886, 0.534374952)
  2575. Part169.Anchored = true
  2576. Part169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2577. Part169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2578. Part169.BrickColor = BrickColor.new("Bright blue")
  2579. Part169.CanCollide = false
  2580. Part169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2581. Part169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2582. Part169.Material = Enum.Material.Neon
  2583. Part169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2584. Part169.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2585. Part169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2586. Part169.brickColor = BrickColor.new("Bright blue")
  2587. SpecialMesh170.Parent = Part169
  2588. SpecialMesh170.Scale = Vector3.new(0.452499986, 1, 1)
  2589. SpecialMesh170.MeshType = Enum.MeshType.Cylinder
  2590. Part171.Parent = Model0
  2591. 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)
  2592. Part171.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2593. Part171.Position = Vector3.new(-0.610366702, 3.28867483, -15.3908367)
  2594. Part171.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2595. Part171.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2596. Part171.Velocity = Vector3.new(5.08428144e-08, 0.00246397941, 6.68129019e-07)
  2597. Part171.Size = Vector3.new(0.275000006, 0.84512496, 0.422374964)
  2598. Part171.Anchored = true
  2599. Part171.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2600. Part171.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2601. Part171.BrickColor = BrickColor.new("Really black")
  2602. Part171.CanCollide = false
  2603. Part171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2604. Part171.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. Part171.Material = Enum.Material.Metal
  2606. Part171.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2607. Part171.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2608. Part171.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2609. Part171.brickColor = BrickColor.new("Really black")
  2610. SpecialMesh172.Parent = Part171
  2611. SpecialMesh172.Scale = Vector3.new(0.400000006, 1, 0.5)
  2612. SpecialMesh172.MeshType = Enum.MeshType.Brick
  2613. Part173.Parent = Model0
  2614. 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)
  2615. Part173.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2616. Part173.Position = Vector3.new(-0.610880256, 2.96906447, -13.9840736)
  2617. Part173.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2618. Part173.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2619. Part173.Velocity = Vector3.new(1.01522062e-07, 0.00246691052, 1.33410845e-06)
  2620. Part173.Size = Vector3.new(0.275000006, 0.239124984, 0.205375016)
  2621. Part173.Anchored = true
  2622. Part173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. Part173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. Part173.BrickColor = BrickColor.new("Bright blue")
  2625. Part173.CanCollide = false
  2626. Part173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. Part173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. Part173.Material = Enum.Material.Neon
  2629. Part173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2630. Part173.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2631. Part173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2632. Part173.brickColor = BrickColor.new("Bright blue")
  2633. SpecialMesh174.Parent = Part173
  2634. SpecialMesh174.Scale = Vector3.new(0.550000012, 1, 1)
  2635. SpecialMesh174.MeshType = Enum.MeshType.Brick
  2636. Part175.Parent = Model0
  2637. 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)
  2638. Part175.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2639. Part175.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  2640. Part175.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2641. Part175.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2642. Part175.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  2643. Part175.Size = Vector3.new(0.275000006, 0.698124886, 0.372374952)
  2644. Part175.Anchored = true
  2645. Part175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. Part175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2647. Part175.BrickColor = BrickColor.new("Really black")
  2648. Part175.CanCollide = false
  2649. Part175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2650. Part175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2651. Part175.Material = Enum.Material.Metal
  2652. Part175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2653. Part175.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2654. Part175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2655. Part175.brickColor = BrickColor.new("Really black")
  2656. SpecialMesh176.Parent = Part175
  2657. SpecialMesh176.Scale = Vector3.new(0.455000013, 1, 1)
  2658. SpecialMesh176.MeshType = Enum.MeshType.Cylinder
  2659. Part177.Parent = Model0
  2660. 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)
  2661. Part177.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2662. Part177.Position = Vector3.new(-0.616063476, 3.26214504, -11.5807333)
  2663. Part177.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2664. Part177.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2665. Part177.Velocity = Vector3.new(5.50495756e-08, 0.00247191754, 7.23409755e-07)
  2666. Part177.Size = Vector3.new(0.275000006, 0.630125046, 0.280375004)
  2667. Part177.Anchored = true
  2668. Part177.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2669. Part177.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2670. Part177.BrickColor = BrickColor.new("Really black")
  2671. Part177.CanCollide = false
  2672. Part177.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2673. Part177.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2674. Part177.Material = Enum.Material.Metal
  2675. Part177.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2676. Part177.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2677. Part177.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2678. Part177.brickColor = BrickColor.new("Really black")
  2679. SpecialMesh178.Parent = Part177
  2680. SpecialMesh178.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  2681. SpecialMesh178.MeshType = Enum.MeshType.Brick
  2682. Part179.Parent = Model0
  2683. 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)
  2684. Part179.Orientation = Vector3.new(43.9099998, 0.199999988, 0.409999996)
  2685. Part179.Position = Vector3.new(-0.610621691, 3.13382888, -14.7050791)
  2686. Part179.Rotation = Vector3.new(43.9099998, 0.140000001, 0.269999981)
  2687. Part179.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2688. Part179.Velocity = Vector3.new(7.53960734e-08, 0.0024654083, 9.90785111e-07)
  2689. Part179.Size = Vector3.new(0.275000006, 0.221124932, 0.418375015)
  2690. Part179.Anchored = true
  2691. Part179.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2692. Part179.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2693. Part179.BrickColor = BrickColor.new("Really black")
  2694. Part179.CanCollide = false
  2695. Part179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2696. Part179.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2697. Part179.Material = Enum.Material.Metal
  2698. Part179.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2699. Part179.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2700. Part179.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2701. Part179.brickColor = BrickColor.new("Really black")
  2702. SpecialMesh180.Parent = Part179
  2703. SpecialMesh180.Scale = Vector3.new(0.550000012, 1.04999995, 0.899999976)
  2704. SpecialMesh180.MeshType = Enum.MeshType.Brick
  2705. Part181.Parent = Model0
  2706. 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)
  2707. Part181.Orientation = Vector3.new(-43.9099998, -179.800003, 179.589996)
  2708. Part181.Position = Vector3.new(-0.61356318, 3.48533392, -13.9631662)
  2709. Part181.Rotation = Vector3.new(-136.089996, -0.140000001, -0.269999981)
  2710. Part181.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2711. Part181.Velocity = Vector3.new(1.96594527e-08, 0.00246695359, 2.58346063e-07)
  2712. Part181.Size = Vector3.new(0.275000006, 0.413124949, 0.622375011)
  2713. Part181.Anchored = true
  2714. Part181.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. Part181.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. Part181.BrickColor = BrickColor.new("Really black")
  2717. Part181.CanCollide = false
  2718. Part181.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2719. Part181.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2720. Part181.Material = Enum.Material.Metal
  2721. Part181.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2722. Part181.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2723. Part181.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2724. Part181.brickColor = BrickColor.new("Really black")
  2725. SpecialMesh182.Parent = Part181
  2726. SpecialMesh182.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  2727. SpecialMesh182.MeshType = Enum.MeshType.Brick
  2728. Part183.Parent = Model0
  2729. 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)
  2730. Part183.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  2731. Part183.Position = Vector3.new(-0.610578179, 2.93933439, -14.0816517)
  2732. Part183.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  2733. Part183.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2734. Part183.Velocity = Vector3.new(1.06236229e-07, 0.00246670726, 1.39605754e-06)
  2735. Part183.Size = Vector3.new(0.275000006, 0.252000004, 0.213375002)
  2736. Part183.Anchored = true
  2737. Part183.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2738. Part183.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2739. Part183.BrickColor = BrickColor.new("Really black")
  2740. Part183.CanCollide = false
  2741. Part183.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2742. Part183.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2743. Part183.Material = Enum.Material.Metal
  2744. Part183.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2745. Part183.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2746. Part183.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2747. Part183.brickColor = BrickColor.new("Really black")
  2748. SpecialMesh184.Parent = Part183
  2749. SpecialMesh184.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  2750. SpecialMesh184.MeshType = Enum.MeshType.Wedge
  2751. Part185.Parent = Model0
  2752. 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)
  2753. Part185.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2754. Part185.Position = Vector3.new(-0.61852932, 3.41544771, -10.4871407)
  2755. Part185.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2756. Part185.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2757. Part185.Velocity = Vector3.new(3.07410488e-08, 0.00247419602, 4.03969523e-07)
  2758. Part185.Size = Vector3.new(0.270000011, 0.21875, 0.234375)
  2759. Part185.Anchored = true
  2760. Part185.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. Part185.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. Part185.BrickColor = BrickColor.new("Really black")
  2763. Part185.CanCollide = false
  2764. Part185.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2765. Part185.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2766. Part185.Material = Enum.Material.Metal
  2767. Part185.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2768. Part185.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2769. Part185.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2770. Part185.brickColor = BrickColor.new("Really black")
  2771. SpecialMesh186.Parent = Part185
  2772. SpecialMesh186.Scale = Vector3.new(0.5, 0.5, 0.5)
  2773. SpecialMesh186.MeshType = Enum.MeshType.Wedge
  2774. Part187.Parent = Model0
  2775. 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)
  2776. Part187.Orientation = Vector3.new(2.15999985, -0.0799999982, -179.709991)
  2777. Part187.Position = Vector3.new(-0.608188927, 3.09825993, -16.1759663)
  2778. Part187.Rotation = Vector3.new(2.15999985, -0.0799999982, -179.699997)
  2779. Part187.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2780. Part187.Velocity = Vector3.new(8.10360774e-08, 0.00246234378, 1.06490097e-06)
  2781. Part187.Size = Vector3.new(0.275000006, 0.235124931, 1.6693753)
  2782. Part187.Anchored = true
  2783. Part187.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2784. Part187.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2785. Part187.BrickColor = BrickColor.new("Really black")
  2786. Part187.CanCollide = false
  2787. Part187.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2788. Part187.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2789. Part187.Material = Enum.Material.Metal
  2790. Part187.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2791. Part187.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2792. Part187.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2793. Part187.brickColor = BrickColor.new("Really black")
  2794. SpecialMesh188.Parent = Part187
  2795. SpecialMesh188.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  2796. SpecialMesh188.MeshType = Enum.MeshType.Brick
  2797. Part189.Parent = Model0
  2798. 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)
  2799. Part189.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2800. Part189.Position = Vector3.new(-0.611664593, 3.3476572, -14.7413998)
  2801. Part189.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2802. Part189.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2803. Part189.Velocity = Vector3.new(4.14902424e-08, 0.00246533239, 5.45226158e-07)
  2804. Part189.Size = Vector3.new(0.275000006, 0.480124891, 0.214375019)
  2805. Part189.Anchored = true
  2806. Part189.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2807. Part189.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2808. Part189.BrickColor = BrickColor.new("Bright blue")
  2809. Part189.CanCollide = false
  2810. Part189.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2811. Part189.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2812. Part189.Material = Enum.Material.Neon
  2813. Part189.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2814. Part189.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2815. Part189.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2816. Part189.brickColor = BrickColor.new("Bright blue")
  2817. SpecialMesh190.Parent = Part189
  2818. SpecialMesh190.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  2819. SpecialMesh190.MeshType = Enum.MeshType.Brick
  2820. Part191.Parent = Model0
  2821. 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)
  2822. Part191.Orientation = Vector3.new(-2.08999991, -0.099999994, 90.2900009)
  2823. Part191.Position = Vector3.new(-0.637731671, 3.71308732, -19.354105)
  2824. Part191.Rotation = Vector3.new(-2.08999991, -0.099999994, 90.2900009)
  2825. Part191.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2826. Part191.Velocity = Vector3.new(-1.64544822e-08, 0.00245571672, -2.16228841e-07)
  2827. Part191.Size = Vector3.new(0.210000038, 0.200000003, 0.285374999)
  2828. Part191.Anchored = true
  2829. Part191.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2830. Part191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2831. Part191.BrickColor = BrickColor.new("Royal purple")
  2832. Part191.CanCollide = false
  2833. Part191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2834. Part191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2835. Part191.Material = Enum.Material.Neon
  2836. Part191.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2837. Part191.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2838. Part191.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2839. Part191.brickColor = BrickColor.new("Royal purple")
  2840. SpecialMesh192.Parent = Part191
  2841. SpecialMesh192.Scale = Vector3.new(0.5, 0.300000012, 0.5)
  2842. SpecialMesh192.MeshType = Enum.MeshType.Wedge
  2843. Part193.Parent = Model0
  2844. 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)
  2845. Part193.Orientation = Vector3.new(-76.0800018, -1.27999997, 1.22000003)
  2846. Part193.Position = Vector3.new(-0.613232374, 3.39655375, -13.8819904)
  2847. Part193.Rotation = Vector3.new(-76.0899963, -0.310000002, -0.00999999978)
  2848. Part193.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2849. Part193.Velocity = Vector3.new(3.37369386e-08, 0.00246712286, 4.43339275e-07)
  2850. Part193.Size = Vector3.new(0.275000006, 0.422124922, 0.412375003)
  2851. Part193.Anchored = true
  2852. Part193.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2853. Part193.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2854. Part193.BrickColor = BrickColor.new("Really black")
  2855. Part193.CanCollide = false
  2856. Part193.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2857. Part193.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2858. Part193.Material = Enum.Material.Metal
  2859. Part193.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2860. Part193.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2861. Part193.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2862. Part193.brickColor = BrickColor.new("Really black")
  2863. SpecialMesh194.Parent = Part193
  2864. SpecialMesh194.Scale = Vector3.new(0.5, 1.04999995, 0.5)
  2865. SpecialMesh194.MeshType = Enum.MeshType.Brick
  2866. Part195.Parent = Model0
  2867. 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)
  2868. Part195.Orientation = Vector3.new(-43.9099998, -179.800003, -90.409996)
  2869. Part195.Position = Vector3.new(-0.640585661, 2.53611565, -13.5419912)
  2870. Part195.Rotation = Vector3.new(-136.089996, -0.140000001, 89.7299957)
  2871. Part195.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2872. Part195.Velocity = Vector3.new(1.70172896e-07, 0.00246782694, 2.23625375e-06)
  2873. Part195.Size = Vector3.new(0.421999991, 0.200000003, 0.280375004)
  2874. Part195.Anchored = true
  2875. Part195.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2876. Part195.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2877. Part195.BrickColor = BrickColor.new("Royal purple")
  2878. Part195.CanCollide = false
  2879. Part195.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2880. Part195.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2881. Part195.Material = Enum.Material.Neon
  2882. Part195.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2883. Part195.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2884. Part195.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. Part195.brickColor = BrickColor.new("Royal purple")
  2886. SpecialMesh196.Parent = Part195
  2887. SpecialMesh196.Scale = Vector3.new(1, 0.300000012, 0.5)
  2888. SpecialMesh196.MeshType = Enum.MeshType.Wedge
  2889. Part197.Parent = Model0
  2890. 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)
  2891. Part197.Orientation = Vector3.new(88.8799973, 15.0799999, 105.169998)
  2892. Part197.Position = Vector3.new(-0.647041559, 3.82817221, -13.658843)
  2893. Part197.Rotation = Vector3.new(88.909996, 0.289999992, 90.0899963)
  2894. Part197.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2895. Part197.Velocity = Vector3.new(-3.47029321e-08, 0.00246758247, -4.56033831e-07)
  2896. Part197.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  2897. Part197.Anchored = true
  2898. Part197.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2899. Part197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2900. Part197.BrickColor = BrickColor.new("Royal purple")
  2901. Part197.CanCollide = false
  2902. Part197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2903. Part197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2904. Part197.Material = Enum.Material.Neon
  2905. Part197.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2906. Part197.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2907. Part197.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2908. Part197.brickColor = BrickColor.new("Royal purple")
  2909. SpecialMesh198.Parent = Part197
  2910. SpecialMesh198.Scale = Vector3.new(1, 0.300000012, 0.5)
  2911. SpecialMesh198.MeshType = Enum.MeshType.Wedge
  2912. Part199.Parent = Model0
  2913. 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)
  2914. Part199.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2915. Part199.Position = Vector3.new(-0.615469754, 3.2510047, -11.9310894)
  2916. Part199.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2917. Part199.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2918. Part199.Velocity = Vector3.new(5.68160452e-08, 0.00247118762, 7.46623186e-07)
  2919. Part199.Size = Vector3.new(0.275000006, 0.261124998, 0.245374992)
  2920. Part199.Anchored = true
  2921. Part199.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2922. Part199.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2923. Part199.BrickColor = BrickColor.new("Bright blue")
  2924. Part199.CanCollide = false
  2925. Part199.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2926. Part199.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2927. Part199.Material = Enum.Material.Neon
  2928. Part199.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2929. Part199.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2930. Part199.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2931. Part199.brickColor = BrickColor.new("Bright blue")
  2932. SpecialMesh200.Parent = Part199
  2933. SpecialMesh200.Scale = Vector3.new(0.375, 1.04999995, 0.5)
  2934. SpecialMesh200.MeshType = Enum.MeshType.Brick
  2935. Part201.Parent = Model0
  2936. 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)
  2937. Part201.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  2938. Part201.Position = Vector3.new(-0.615578175, 3.21754885, -11.7504148)
  2939. Part201.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  2940. Part201.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2941. Part201.Velocity = Vector3.new(6.21209963e-08, 0.0024715641, 8.16335842e-07)
  2942. Part201.Size = Vector3.new(0.275000006, 0.214125022, 0.234375)
  2943. Part201.Anchored = true
  2944. Part201.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. Part201.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2946. Part201.BrickColor = BrickColor.new("Really black")
  2947. Part201.CanCollide = false
  2948. Part201.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2949. Part201.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2950. Part201.Material = Enum.Material.Metal
  2951. Part201.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2952. Part201.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2953. Part201.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2954. Part201.brickColor = BrickColor.new("Really black")
  2955. SpecialMesh202.Parent = Part201
  2956. SpecialMesh202.Scale = Vector3.new(0.5, 0.560000002, 0.400000006)
  2957. SpecialMesh202.MeshType = Enum.MeshType.Wedge
  2958. Part203.Parent = Model0
  2959. 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)
  2960. Part203.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  2961. Part203.Position = Vector3.new(-0.613475382, 3.25657153, -13.2536583)
  2962. Part203.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  2963. Part203.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2964. Part203.Velocity = Vector3.new(5.59333202e-08, 0.00246843207, 7.35023434e-07)
  2965. Part203.Size = Vector3.new(0.275000006, 0.204125047, 0.210375011)
  2966. Part203.Anchored = true
  2967. Part203.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2968. Part203.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2969. Part203.BrickColor = BrickColor.new("Really black")
  2970. Part203.CanCollide = false
  2971. Part203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2972. Part203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2973. Part203.Material = Enum.Material.Metal
  2974. Part203.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2975. Part203.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2976. Part203.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2977. Part203.brickColor = BrickColor.new("Really black")
  2978. SpecialMesh204.Parent = Part203
  2979. SpecialMesh204.Scale = Vector3.new(0.5, 0.5, 0.5)
  2980. SpecialMesh204.MeshType = Enum.MeshType.Wedge
  2981. Part205.Parent = Model0
  2982. 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)
  2983. Part205.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2984. Part205.Position = Vector3.new(-0.605959892, 3.52715993, -19.0706863)
  2985. Part205.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2986. Part205.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2987. Part205.Velocity = Vector3.new(1.30272237e-08, 0.0024563123, 1.71192255e-07)
  2988. Part205.Size = Vector3.new(0.275000006, 0.446125001, 0.496375084)
  2989. Part205.Anchored = true
  2990. Part205.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2991. Part205.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2992. Part205.BrickColor = BrickColor.new("Really black")
  2993. Part205.CanCollide = false
  2994. Part205.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2995. Part205.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2996. Part205.Material = Enum.Material.Metal
  2997. Part205.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2998. Part205.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2999. Part205.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. Part205.brickColor = BrickColor.new("Really black")
  3001. SpecialMesh206.Parent = Part205
  3002. SpecialMesh206.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  3003. SpecialMesh206.MeshType = Enum.MeshType.Wedge
  3004. Part207.Parent = Model0
  3005. 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)
  3006. Part207.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3007. Part207.Position = Vector3.new(-0.617458701, 3.24875402, -10.62463)
  3008. Part207.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3009. Part207.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3010. Part207.Velocity = Vector3.new(5.71729402e-08, 0.00247390964, 7.51312939e-07)
  3011. Part207.Size = Vector3.new(0.25999999, 0.375, 0.21875)
  3012. Part207.Anchored = true
  3013. Part207.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3014. Part207.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3015. Part207.BrickColor = BrickColor.new("Really black")
  3016. Part207.CanCollide = false
  3017. Part207.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3018. Part207.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3019. Part207.Material = Enum.Material.Metal
  3020. Part207.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3021. Part207.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3022. Part207.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3023. Part207.brickColor = BrickColor.new("Really black")
  3024. SpecialMesh208.Parent = Part207
  3025. SpecialMesh208.Scale = Vector3.new(0.300000012, 1, 1)
  3026. SpecialMesh208.MeshType = Enum.MeshType.Wedge
  3027. Part209.Parent = Model0
  3028. 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)
  3029. Part209.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3030. Part209.Position = Vector3.new(-0.614153862, 3.21053505, -12.6548157)
  3031. Part209.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3032. Part209.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3033. Part209.Velocity = Vector3.new(6.32331378e-08, 0.00246967981, 8.30950682e-07)
  3034. Part209.Size = Vector3.new(0.275000006, 0.35512504, 0.416375011)
  3035. Part209.Anchored = true
  3036. Part209.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3037. Part209.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3038. Part209.BrickColor = BrickColor.new("Really black")
  3039. Part209.CanCollide = false
  3040. Part209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3041. Part209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3042. Part209.Material = Enum.Material.Metal
  3043. Part209.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3044. Part209.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3045. Part209.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3046. Part209.brickColor = BrickColor.new("Really black")
  3047. SpecialMesh210.Parent = Part209
  3048. SpecialMesh210.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  3049. SpecialMesh210.MeshType = Enum.MeshType.Wedge
  3050. Part211.Parent = Model0
  3051. 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)
  3052. Part211.Orientation = Vector3.new(-89.5599976, -138.839996, -131.25)
  3053. Part211.Position = Vector3.new(-0.640777826, 2.97037435, -14.8715458)
  3054. Part211.Rotation = Vector3.new(-90.3399963, -0.289999992, 89.909996)
  3055. Part211.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3056. Part211.Velocity = Vector3.new(1.01314356e-07, 0.00246505649, 1.33137894e-06)
  3057. Part211.Size = Vector3.new(0.49000001, 0.200000003, 0.290374994)
  3058. Part211.Anchored = true
  3059. Part211.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3060. Part211.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3061. Part211.BrickColor = BrickColor.new("Royal purple")
  3062. Part211.CanCollide = false
  3063. Part211.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3064. Part211.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3065. Part211.Material = Enum.Material.Neon
  3066. Part211.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3067. Part211.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3068. Part211.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3069. Part211.brickColor = BrickColor.new("Royal purple")
  3070. SpecialMesh212.Parent = Part211
  3071. SpecialMesh212.Scale = Vector3.new(1, 0.300000012, 0.5)
  3072. SpecialMesh212.MeshType = Enum.MeshType.Wedge
  3073. Part213.Parent = Model0
  3074. 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)
  3075. Part213.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  3076. Part213.Position = Vector3.new(-0.609622896, 3.39657903, -16.2390652)
  3077. Part213.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  3078. Part213.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3079. Part213.Velocity = Vector3.new(3.37329027e-08, 0.002462212, 4.43286638e-07)
  3080. Part213.Size = Vector3.new(0.275000006, 0.533124864, 0.214375019)
  3081. Part213.Anchored = true
  3082. Part213.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3083. Part213.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3084. Part213.BrickColor = BrickColor.new("Bright blue")
  3085. Part213.CanCollide = false
  3086. Part213.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3087. Part213.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3088. Part213.Material = Enum.Material.Neon
  3089. Part213.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3090. Part213.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3091. Part213.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3092. Part213.brickColor = BrickColor.new("Bright blue")
  3093. SpecialMesh214.Parent = Part213
  3094. SpecialMesh214.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  3095. SpecialMesh214.MeshType = Enum.MeshType.Brick
  3096. Part215.Parent = Model0
  3097. 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)
  3098. Part215.Orientation = Vector3.new(82.409996, 2.11999989, 2.23000002)
  3099. Part215.Position = Vector3.new(-0.612417579, 3.49721146, -14.7513313)
  3100. Part215.Rotation = Vector3.new(82.409996, 0.280000001, 0.129999995)
  3101. Part215.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3102. Part215.Velocity = Vector3.new(1.77760739e-08, 0.00246531144, 2.33596552e-07)
  3103. Part215.Size = Vector3.new(0.275000006, 0.488124937, 0.359375)
  3104. Part215.Anchored = true
  3105. Part215.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3106. Part215.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3107. Part215.BrickColor = BrickColor.new("Really black")
  3108. Part215.CanCollide = false
  3109. Part215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3110. Part215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. Part215.Material = Enum.Material.Metal
  3112. Part215.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3113. Part215.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3114. Part215.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3115. Part215.brickColor = BrickColor.new("Really black")
  3116. SpecialMesh216.Parent = Part215
  3117. SpecialMesh216.Scale = Vector3.new(0.400000006, 1, 0.5)
  3118. SpecialMesh216.MeshType = Enum.MeshType.Brick
  3119. Part217.Parent = Model0
  3120. 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)
  3121. Part217.Orientation = Vector3.new(43.9099998, 0.199999988, 90.409996)
  3122. Part217.Position = Vector3.new(-0.645515323, 3.66365719, -14.1031828)
  3123. Part217.Rotation = Vector3.new(43.9099998, 0.140000001, 90.2699966)
  3124. Part217.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3125. Part217.Velocity = Vector3.new(-8.61649951e-09, 0.00246665697, -1.13230158e-07)
  3126. Part217.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3127. Part217.Anchored = true
  3128. Part217.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. Part217.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. Part217.BrickColor = BrickColor.new("Royal purple")
  3131. Part217.CanCollide = false
  3132. Part217.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3133. Part217.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3134. Part217.Material = Enum.Material.Neon
  3135. Part217.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3136. Part217.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3137. Part217.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3138. Part217.brickColor = BrickColor.new("Royal purple")
  3139. SpecialMesh218.Parent = Part217
  3140. SpecialMesh218.Scale = Vector3.new(1, 0.300000012, 0.5)
  3141. SpecialMesh218.MeshType = Enum.MeshType.Wedge
  3142. Part219.Parent = Model0
  3143. 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)
  3144. Part219.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3145. Part219.Position = Vector3.new(-0.611597419, 2.92886329, -13.380847)
  3146. Part219.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3147. Part219.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3148. Part219.Velocity = Vector3.new(1.07896597e-07, 0.00246816734, 1.41787655e-06)
  3149. Part219.Size = Vector3.new(0.275000006, 0.630125046, 0.280375004)
  3150. Part219.Anchored = true
  3151. Part219.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3152. Part219.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3153. Part219.BrickColor = BrickColor.new("Really black")
  3154. Part219.CanCollide = false
  3155. Part219.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3156. Part219.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3157. Part219.Material = Enum.Material.Metal
  3158. Part219.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3159. Part219.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3160. Part219.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3161. Part219.brickColor = BrickColor.new("Really black")
  3162. SpecialMesh220.Parent = Part219
  3163. SpecialMesh220.Scale = Vector3.new(0.395000011, 0.75, 0.25)
  3164. SpecialMesh220.MeshType = Enum.MeshType.Wedge
  3165. Part221.Parent = Model0
  3166. 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)
  3167. Part221.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  3168. Part221.Position = Vector3.new(-0.609442294, 2.87052941, -14.5920582)
  3169. Part221.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  3170. Part221.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3171. Part221.Velocity = Vector3.new(1.17146328e-07, 0.00246564392, 1.53942813e-06)
  3172. Part221.Size = Vector3.new(0.275000006, 0.216999978, 0.295375019)
  3173. Part221.Anchored = true
  3174. Part221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3175. Part221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3176. Part221.BrickColor = BrickColor.new("Really black")
  3177. Part221.CanCollide = false
  3178. Part221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3179. Part221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3180. Part221.Material = Enum.Material.Glass
  3181. Part221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3182. Part221.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3183. Part221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3184. Part221.brickColor = BrickColor.new("Really black")
  3185. SpecialMesh222.Parent = Part221
  3186. SpecialMesh222.Scale = Vector3.new(0.5, 0.75, 0.25)
  3187. SpecialMesh222.MeshType = Enum.MeshType.Wedge
  3188. Part223.Parent = Model0
  3189. 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)
  3190. Part223.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  3191. Part223.Position = Vector3.new(-0.609190822, 2.76472902, -14.4025202)
  3192. Part223.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  3193. Part223.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3194. Part223.Velocity = Vector3.new(1.3392264e-07, 0.0024660388, 1.7598868e-06)
  3195. Part223.Size = Vector3.new(0.275000006, 0.23299998, 0.295375019)
  3196. Part223.Anchored = true
  3197. Part223.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3198. Part223.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3199. Part223.BrickColor = BrickColor.new("Really black")
  3200. Part223.CanCollide = false
  3201. Part223.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3202. Part223.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3203. Part223.Material = Enum.Material.Glass
  3204. Part223.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3205. Part223.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3206. Part223.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3207. Part223.brickColor = BrickColor.new("Really black")
  3208. SpecialMesh224.Parent = Part223
  3209. SpecialMesh224.Scale = Vector3.new(0.5, 1, 0.25)
  3210. SpecialMesh224.MeshType = Enum.MeshType.Wedge
  3211. Part225.Parent = Model0
  3212. 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)
  3213. Part225.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3214. Part225.Position = Vector3.new(-0.610054374, 2.83367729, -14.0694036)
  3215. Part225.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3216. Part225.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3217. Part225.Velocity = Vector3.new(1.22989817e-07, 0.00246673287, 1.61621767e-06)
  3218. Part225.Size = Vector3.new(0.275000006, 0.311124951, 0.267374992)
  3219. Part225.Anchored = true
  3220. Part225.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. Part225.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. Part225.BrickColor = BrickColor.new("Really black")
  3223. Part225.CanCollide = false
  3224. Part225.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3225. Part225.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3226. Part225.Material = Enum.Material.Metal
  3227. Part225.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3228. Part225.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3229. Part225.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3230. Part225.brickColor = BrickColor.new("Really black")
  3231. SpecialMesh226.Parent = Part225
  3232. SpecialMesh226.Scale = Vector3.new(0.495000005, 1, 1)
  3233. SpecialMesh226.MeshType = Enum.MeshType.Brick
  3234. Part227.Parent = Model0
  3235. 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)
  3236. Part227.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3237. Part227.Position = Vector3.new(-0.611247957, 3.01424932, -13.8955402)
  3238. Part227.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3239. Part227.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3240. Part227.Velocity = Vector3.new(9.43572971e-08, 0.00246709492, 1.23995574e-06)
  3241. Part227.Size = Vector3.new(0.275000006, 0.228, 0.213375002)
  3242. Part227.Anchored = true
  3243. Part227.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3244. Part227.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3245. Part227.BrickColor = BrickColor.new("Really black")
  3246. Part227.CanCollide = false
  3247. Part227.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3248. Part227.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3249. Part227.Material = Enum.Material.Metal
  3250. Part227.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3251. Part227.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3252. Part227.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3253. Part227.brickColor = BrickColor.new("Really black")
  3254. SpecialMesh228.Parent = Part227
  3255. SpecialMesh228.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  3256. SpecialMesh228.MeshType = Enum.MeshType.Wedge
  3257. Part229.Parent = Model0
  3258. 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)
  3259. Part229.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3260. Part229.Position = Vector3.new(-0.614671409, 3.24594569, -12.4355726)
  3261. Part229.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3262. Part229.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3263. Part229.Velocity = Vector3.new(5.76182231e-08, 0.00247013662, 7.57164685e-07)
  3264. Part229.Size = Vector3.new(0.275000006, 0.745124936, 0.280375004)
  3265. Part229.Anchored = true
  3266. Part229.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3267. Part229.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3268. Part229.BrickColor = BrickColor.new("Really black")
  3269. Part229.CanCollide = false
  3270. Part229.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3271. Part229.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3272. Part229.Material = Enum.Material.Metal
  3273. Part229.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. Part229.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3275. Part229.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3276. Part229.brickColor = BrickColor.new("Really black")
  3277. SpecialMesh230.Parent = Part229
  3278. SpecialMesh230.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3279. SpecialMesh230.MeshType = Enum.MeshType.Brick
  3280. Part231.Parent = Model0
  3281. 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)
  3282. Part231.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3283. Part231.Position = Vector3.new(-0.610754132, 2.89412951, -13.8151274)
  3284. Part231.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3285. Part231.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3286. Part231.Velocity = Vector3.new(1.1340417e-07, 0.00246726256, 1.49025209e-06)
  3287. Part231.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  3288. Part231.Anchored = true
  3289. Part231.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3290. Part231.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. Part231.BrickColor = BrickColor.new("Really black")
  3292. Part231.CanCollide = false
  3293. Part231.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. Part231.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3295. Part231.Material = Enum.Material.Glass
  3296. Part231.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3297. Part231.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3298. Part231.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3299. Part231.brickColor = BrickColor.new("Really black")
  3300. SpecialMesh232.Parent = Part231
  3301. SpecialMesh232.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  3302. SpecialMesh232.MeshType = Enum.MeshType.Wedge
  3303. Part233.Parent = Model0
  3304. 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)
  3305. Part233.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3306. Part233.Position = Vector3.new(-0.614374042, 3.38457584, -13.09618)
  3307. Part233.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3308. Part233.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3309. Part233.Velocity = Vector3.new(3.56362335e-08, 0.00246876013, 4.68297941e-07)
  3310. Part233.Size = Vector3.new(0.275000006, 0.322125077, 0.363375008)
  3311. Part233.Anchored = true
  3312. Part233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3313. Part233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3314. Part233.BrickColor = BrickColor.new("Really black")
  3315. Part233.CanCollide = false
  3316. Part233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3317. Part233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3318. Part233.Material = Enum.Material.Metal
  3319. Part233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3320. Part233.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3321. Part233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3322. Part233.brickColor = BrickColor.new("Really black")
  3323. SpecialMesh234.Parent = Part233
  3324. SpecialMesh234.Scale = Vector3.new(0.5, 1, 1)
  3325. SpecialMesh234.MeshType = Enum.MeshType.Wedge
  3326. Part235.Parent = Model0
  3327. 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)
  3328. Part235.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3329. Part235.Position = Vector3.new(-0.612951875, 3.3556869, -13.9274721)
  3330. Part235.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3331. Part235.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3332. Part235.Velocity = Vector3.new(4.02170173e-08, 0.0024670281, 5.28494468e-07)
  3333. Part235.Size = Vector3.new(0.275000006, 0.54112494, 0.367374986)
  3334. Part235.Anchored = true
  3335. Part235.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3336. Part235.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3337. Part235.BrickColor = BrickColor.new("Really black")
  3338. Part235.CanCollide = false
  3339. Part235.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3340. Part235.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3341. Part235.Material = Enum.Material.Metal
  3342. Part235.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3343. Part235.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3344. Part235.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3345. Part235.brickColor = BrickColor.new("Really black")
  3346. SpecialMesh236.Parent = Part235
  3347. SpecialMesh236.Scale = Vector3.new(0.5, 1.04999995, 0.600000024)
  3348. SpecialMesh236.MeshType = Enum.MeshType.Brick
  3349. Part237.Parent = Model0
  3350. 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)
  3351. Part237.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3352. Part237.Position = Vector3.new(-0.611452341, 3.03449631, -13.8299093)
  3353. Part237.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3354. Part237.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3355. Part237.Velocity = Vector3.new(9.11468163e-08, 0.00246723159, 1.19776655e-06)
  3356. Part237.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  3357. Part237.Anchored = true
  3358. Part237.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3359. Part237.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3360. Part237.BrickColor = BrickColor.new("Really black")
  3361. Part237.CanCollide = false
  3362. Part237.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3363. Part237.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3364. Part237.Material = Enum.Material.Metal
  3365. Part237.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3366. Part237.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3367. Part237.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3368. Part237.brickColor = BrickColor.new("Really black")
  3369. SpecialMesh238.Parent = Part237
  3370. SpecialMesh238.Scale = Vector3.new(0.5, 0.5, 0.5)
  3371. SpecialMesh238.MeshType = Enum.MeshType.Wedge
  3372. Part239.Parent = Model0
  3373. 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)
  3374. Part239.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  3375. Part239.Position = Vector3.new(-0.608695984, 3.30580091, -16.5400867)
  3376. Part239.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  3377. Part239.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3378. Part239.Velocity = Vector3.new(4.81271911e-08, 0.00246158475, 6.32443061e-07)
  3379. Part239.Size = Vector3.new(0.275000006, 1.65712488, 0.422374964)
  3380. Part239.Anchored = true
  3381. Part239.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3382. Part239.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3383. Part239.BrickColor = BrickColor.new("Really black")
  3384. Part239.CanCollide = false
  3385. Part239.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3386. Part239.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3387. Part239.Material = Enum.Material.Metal
  3388. Part239.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3389. Part239.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3390. Part239.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3391. Part239.brickColor = BrickColor.new("Really black")
  3392. SpecialMesh240.Parent = Part239
  3393. SpecialMesh240.Scale = Vector3.new(0.400000006, 1, 0.5)
  3394. SpecialMesh240.MeshType = Enum.MeshType.Brick
  3395. Part241.Parent = Model0
  3396. 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)
  3397. Part241.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  3398. Part241.Position = Vector3.new(-0.607766628, 3.58790874, -18.0936966)
  3399. Part241.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  3400. Part241.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3401. Part241.Velocity = Vector3.new(3.39455752e-09, 0.00245834771, 4.46085551e-08)
  3402. Part241.Size = Vector3.new(0.275000006, 1.66212487, 0.359375)
  3403. Part241.Anchored = true
  3404. Part241.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3405. Part241.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3406. Part241.BrickColor = BrickColor.new("Really black")
  3407. Part241.CanCollide = false
  3408. Part241.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3409. Part241.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3410. Part241.Material = Enum.Material.Metal
  3411. Part241.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3412. Part241.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3413. Part241.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3414. Part241.brickColor = BrickColor.new("Really black")
  3415. SpecialMesh242.Parent = Part241
  3416. SpecialMesh242.Scale = Vector3.new(0.400000006, 1, 0.5)
  3417. SpecialMesh242.MeshType = Enum.MeshType.Brick
  3418. Part243.Parent = Model0
  3419. 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)
  3420. Part243.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3421. Part243.Position = Vector3.new(-0.618630528, 3.29811025, -11.1170893)
  3422. Part243.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3423. Part243.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3424. Part243.Velocity = Vector3.new(4.93467311e-08, 0.00247288332, 6.48468244e-07)
  3425. Part243.Size = Vector3.new(0.25999999, 0.3125, 0.320125014)
  3426. Part243.Anchored = true
  3427. Part243.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3428. Part243.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3429. Part243.BrickColor = BrickColor.new("Really black")
  3430. Part243.CanCollide = false
  3431. Part243.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3432. Part243.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3433. Part243.Material = Enum.Material.Metal
  3434. Part243.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3435. Part243.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3436. Part243.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3437. Part243.brickColor = BrickColor.new("Really black")
  3438. SpecialMesh244.Parent = Part243
  3439. SpecialMesh244.Scale = Vector3.new(0.5, 1, 1)
  3440. SpecialMesh244.MeshType = Enum.MeshType.Wedge
  3441. Part245.Parent = Model0
  3442. 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)
  3443. Part245.Orientation = Vector3.new(-73.909996, -179.069992, -91.0599976)
  3444. Part245.Position = Vector3.new(-0.639055848, 2.33898354, -13.8797112)
  3445. Part245.Rotation = Vector3.new(-106.089996, -0.25999999, 89.8299942)
  3446. Part245.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3447. Part245.Velocity = Vector3.new(2.01431277e-07, 0.00246712356, 2.64702226e-06)
  3448. Part245.Size = Vector3.new(0.453000009, 0.200000003, 0.280375004)
  3449. Part245.Anchored = true
  3450. Part245.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3451. Part245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3452. Part245.BrickColor = BrickColor.new("Royal purple")
  3453. Part245.CanCollide = false
  3454. Part245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3455. Part245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3456. Part245.Material = Enum.Material.Neon
  3457. Part245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3458. Part245.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3459. Part245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3460. Part245.brickColor = BrickColor.new("Royal purple")
  3461. SpecialMesh246.Parent = Part245
  3462. SpecialMesh246.Scale = Vector3.new(1, 0.300000012, 0.5)
  3463. SpecialMesh246.MeshType = Enum.MeshType.Wedge
  3464. Part247.Parent = Model0
  3465. 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)
  3466. Part247.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3467. Part247.Position = Vector3.new(-0.611137211, 3.24560308, -14.7434616)
  3468. Part247.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3469. Part247.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3470. Part247.Velocity = Vector3.new(5.76725228e-08, 0.0024653282, 7.57878638e-07)
  3471. Part247.Size = Vector3.new(0.275000006, 0.488124937, 0.418375015)
  3472. Part247.Anchored = true
  3473. Part247.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3474. Part247.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3475. Part247.BrickColor = BrickColor.new("Really black")
  3476. Part247.CanCollide = false
  3477. Part247.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3478. Part247.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3479. Part247.Material = Enum.Material.Metal
  3480. Part247.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3481. Part247.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3482. Part247.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3483. Part247.brickColor = BrickColor.new("Really black")
  3484. SpecialMesh248.Parent = Part247
  3485. SpecialMesh248.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  3486. SpecialMesh248.MeshType = Enum.MeshType.Brick
  3487. Part249.Parent = Model0
  3488. 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)
  3489. Part249.Orientation = Vector3.new(46.079998, 179.610001, -90.4199982)
  3490. Part249.Position = Vector3.new(-0.646988273, 3.68078995, -13.1990242)
  3491. Part249.Rotation = Vector3.new(133.910004, 0.269999981, 89.8600006)
  3492. Part249.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3493. Part249.Velocity = Vector3.new(-1.13331566e-08, 0.00246854057, -1.48930098e-07)
  3494. Part249.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3495. Part249.Anchored = true
  3496. Part249.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3497. Part249.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3498. Part249.BrickColor = BrickColor.new("Royal purple")
  3499. Part249.CanCollide = false
  3500. Part249.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3501. Part249.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3502. Part249.Material = Enum.Material.Neon
  3503. Part249.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3504. Part249.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3505. Part249.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3506. Part249.brickColor = BrickColor.new("Royal purple")
  3507. SpecialMesh250.Parent = Part249
  3508. SpecialMesh250.Scale = Vector3.new(1, 0.300000012, 0.5)
  3509. SpecialMesh250.MeshType = Enum.MeshType.Wedge
  3510. Part251.Parent = Model0
  3511. 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)
  3512. Part251.Orientation = Vector3.new(-81.0800018, -1.95999992, -178.099991)
  3513. Part251.Position = Vector3.new(-0.616084397, 3.20240736, -11.3666525)
  3514. Part251.Rotation = Vector3.new(-81.0899963, -0.299999982, 179.959991)
  3515. Part251.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3516. Part251.Velocity = Vector3.new(6.45219203e-08, 0.00247236365, 8.47886554e-07)
  3517. Part251.Size = Vector3.new(0.275000006, 0.203125, 0.234375)
  3518. Part251.Anchored = true
  3519. Part251.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3520. Part251.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3521. Part251.BrickColor = BrickColor.new("Really black")
  3522. Part251.CanCollide = false
  3523. Part251.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3524. Part251.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3525. Part251.Material = Enum.Material.Metal
  3526. Part251.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3527. Part251.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3528. Part251.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3529. Part251.brickColor = BrickColor.new("Really black")
  3530. SpecialMesh252.Parent = Part251
  3531. SpecialMesh252.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  3532. SpecialMesh252.MeshType = Enum.MeshType.Brick
  3533. Part253.Parent = Model0
  3534. 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)
  3535. Part253.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3536. Part253.Position = Vector3.new(-0.616027236, 3.22281599, -11.4724684)
  3537. Part253.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3538. Part253.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3539. Part253.Velocity = Vector3.new(6.12858102e-08, 0.00247214315, 8.05360628e-07)
  3540. Part253.Size = Vector3.new(0.275000006, 0.415125012, 0.234375)
  3541. Part253.Anchored = true
  3542. Part253.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3543. Part253.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3544. Part253.BrickColor = BrickColor.new("Really black")
  3545. Part253.CanCollide = false
  3546. Part253.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3547. Part253.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3548. Part253.Material = Enum.Material.Metal
  3549. Part253.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3550. Part253.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3551. Part253.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3552. Part253.brickColor = BrickColor.new("Really black")
  3553. SpecialMesh254.Parent = Part253
  3554. SpecialMesh254.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  3555. SpecialMesh254.MeshType = Enum.MeshType.Brick
  3556. Part255.Parent = Model0
  3557. 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)
  3558. Part255.Orientation = Vector3.new(66.159996, 0.579999983, 0.729999959)
  3559. Part255.Position = Vector3.new(-0.610752404, 3.28331137, -15.1213608)
  3560. Part255.Rotation = Vector3.new(66.159996, 0.229999989, 0.199999988)
  3561. Part255.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3562. Part255.Velocity = Vector3.new(5.16932808e-08, 0.00246454077, 6.79305003e-07)
  3563. Part255.Size = Vector3.new(0.275000006, 0.330124885, 0.214375019)
  3564. Part255.Anchored = true
  3565. Part255.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3566. Part255.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3567. Part255.BrickColor = BrickColor.new("Bright blue")
  3568. Part255.CanCollide = false
  3569. Part255.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3570. Part255.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3571. Part255.Material = Enum.Material.Neon
  3572. Part255.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3573. Part255.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3574. Part255.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3575. Part255.brickColor = BrickColor.new("Bright blue")
  3576. SpecialMesh256.Parent = Part255
  3577. SpecialMesh256.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  3578. SpecialMesh256.MeshType = Enum.MeshType.Brick
  3579. Part257.Parent = Model0
  3580. 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)
  3581. Part257.Orientation = Vector3.new(-47.079998, -0.399999976, 90.4300003)
  3582. Part257.Position = Vector3.new(-0.63657546, 3.38894939, -19.0216789)
  3583. Part257.Rotation = Vector3.new(-47.0900002, -0.280000001, 90.1399994)
  3584. Part257.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3585. Part257.Velocity = Vector3.new(3.49426692e-08, 0.00245640939, 4.59184662e-07)
  3586. Part257.Size = Vector3.new(0.940000057, 0.200000003, 0.285374999)
  3587. Part257.Anchored = true
  3588. Part257.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3589. Part257.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3590. Part257.BrickColor = BrickColor.new("Royal purple")
  3591. Part257.CanCollide = false
  3592. Part257.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3593. Part257.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3594. Part257.Material = Enum.Material.Neon
  3595. Part257.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3596. Part257.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3597. Part257.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3598. Part257.brickColor = BrickColor.new("Royal purple")
  3599. SpecialMesh258.Parent = Part257
  3600. SpecialMesh258.Scale = Vector3.new(1, 0.300000012, 0.5)
  3601. SpecialMesh258.MeshType = Enum.MeshType.Wedge
  3602. Part259.Parent = Model0
  3603. 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)
  3604. Part259.Orientation = Vector3.new(46.079998, 179.610001, 89.5799942)
  3605. Part259.Position = Vector3.new(-0.584489346, 3.6811111, -13.1989288)
  3606. Part259.Rotation = Vector3.new(133.910004, 0.269999981, -90.1399994)
  3607. Part259.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3608. Part259.Velocity = Vector3.new(-1.13840777e-08, 0.00246855081, -1.49599259e-07)
  3609. Part259.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3610. Part259.Anchored = true
  3611. Part259.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3612. Part259.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3613. Part259.BrickColor = BrickColor.new("Royal purple")
  3614. Part259.CanCollide = false
  3615. Part259.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3616. Part259.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3617. Part259.Material = Enum.Material.Neon
  3618. Part259.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3619. Part259.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3620. Part259.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3621. Part259.brickColor = BrickColor.new("Royal purple")
  3622. SpecialMesh260.Parent = Part259
  3623. SpecialMesh260.Scale = Vector3.new(1, 0.300000012, 0.5)
  3624. SpecialMesh260.MeshType = Enum.MeshType.Wedge
  3625. Part261.Parent = Model0
  3626. 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)
  3627. Part261.Orientation = Vector3.new(-47.079998, -0.399999976, -89.5699997)
  3628. Part261.Position = Vector3.new(-0.574076533, 3.38927007, -19.0215836)
  3629. Part261.Rotation = Vector3.new(-47.0900002, -0.280000001, -89.8600006)
  3630. Part261.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3631. Part261.Velocity = Vector3.new(3.48918228e-08, 0.00245641964, 4.58516467e-07)
  3632. Part261.Size = Vector3.new(0.940000057, 0.200000003, 0.285374999)
  3633. Part261.Anchored = true
  3634. Part261.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3635. Part261.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3636. Part261.BrickColor = BrickColor.new("Royal purple")
  3637. Part261.CanCollide = false
  3638. Part261.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3639. Part261.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3640. Part261.Material = Enum.Material.Neon
  3641. Part261.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3642. Part261.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3643. Part261.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3644. Part261.brickColor = BrickColor.new("Royal purple")
  3645. SpecialMesh262.Parent = Part261
  3646. SpecialMesh262.Scale = Vector3.new(1, 0.300000012, 0.5)
  3647. SpecialMesh262.MeshType = Enum.MeshType.Wedge
  3648. Part263.Parent = Model0
  3649. 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)
  3650. Part263.Orientation = Vector3.new(-67.659996, -179.369995, -90.7699966)
  3651. Part263.Position = Vector3.new(-0.640052557, 2.92977762, -15.2103024)
  3652. Part263.Rotation = Vector3.new(-112.339996, -0.239999995, 89.8099976)
  3653. Part263.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3654. Part263.Velocity = Vector3.new(1.07751589e-07, 0.00246435078, 1.41597127e-06)
  3655. Part263.Size = Vector3.new(0.288000047, 0.200000003, 0.27837503)
  3656. Part263.Anchored = true
  3657. Part263.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3658. Part263.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3659. Part263.BrickColor = BrickColor.new("Royal purple")
  3660. Part263.CanCollide = false
  3661. Part263.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3662. Part263.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3663. Part263.Material = Enum.Material.Neon
  3664. Part263.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3665. Part263.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3666. Part263.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3667. Part263.brickColor = BrickColor.new("Royal purple")
  3668. SpecialMesh264.Parent = Part263
  3669. SpecialMesh264.Scale = Vector3.new(1, 0.300000012, 0.5)
  3670. SpecialMesh264.MeshType = Enum.MeshType.Wedge
  3671. Part265.Parent = Model0
  3672. 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)
  3673. Part265.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3674. Part265.Position = Vector3.new(-0.611472309, 3.03472614, -13.8177929)
  3675. Part265.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3676. Part265.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3677. Part265.Velocity = Vector3.new(9.11103797e-08, 0.00246725697, 1.1972877e-06)
  3678. Part265.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  3679. Part265.Anchored = true
  3680. Part265.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3681. Part265.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3682. Part265.BrickColor = BrickColor.new("Really black")
  3683. Part265.CanCollide = false
  3684. Part265.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3685. Part265.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3686. Part265.Material = Enum.Material.Glass
  3687. Part265.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3688. Part265.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3689. Part265.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3690. Part265.brickColor = BrickColor.new("Really black")
  3691. SpecialMesh266.Parent = Part265
  3692. SpecialMesh266.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  3693. SpecialMesh266.MeshType = Enum.MeshType.Wedge
  3694. Part267.Parent = Model0
  3695. 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)
  3696. Part267.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  3697. Part267.Position = Vector3.new(-0.608101904, 3.29321218, -16.8867702)
  3698. Part267.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  3699. Part267.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3700. Part267.Velocity = Vector3.new(5.0123333e-08, 0.00246086251, 6.5867448e-07)
  3701. Part267.Size = Vector3.new(0.275000006, 0.454124868, 0.214375019)
  3702. Part267.Anchored = true
  3703. Part267.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3704. Part267.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3705. Part267.BrickColor = BrickColor.new("Bright blue")
  3706. Part267.CanCollide = false
  3707. Part267.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3708. Part267.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3709. Part267.Material = Enum.Material.Neon
  3710. Part267.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3711. Part267.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3712. Part267.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3713. Part267.brickColor = BrickColor.new("Bright blue")
  3714. SpecialMesh268.Parent = Part267
  3715. SpecialMesh268.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  3716. SpecialMesh268.MeshType = Enum.MeshType.Brick
  3717. Part269.Parent = Model0
  3718. 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)
  3719. Part269.Orientation = Vector3.new(-43.9099998, -179.800003, -0.409999996)
  3720. Part269.Position = Vector3.new(-0.609975338, 2.71316695, -13.7165575)
  3721. Part269.Rotation = Vector3.new(-136.089996, -0.140000001, 179.729996)
  3722. Part269.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3723. Part269.Velocity = Vector3.new(1.42098628e-07, 0.00246746815, 1.8673278e-06)
  3724. Part269.Size = Vector3.new(0.275000006, 0.403124899, 0.352375001)
  3725. Part269.Anchored = true
  3726. Part269.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3727. Part269.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3728. Part269.BrickColor = BrickColor.new("Really black")
  3729. Part269.CanCollide = false
  3730. Part269.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3731. Part269.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3732. Part269.Material = Enum.Material.Metal
  3733. Part269.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3734. Part269.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3735. Part269.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3736. Part269.brickColor = BrickColor.new("Really black")
  3737. SpecialMesh270.Parent = Part269
  3738. SpecialMesh270.Scale = Vector3.new(0.349999994, 1, 1)
  3739. SpecialMesh270.MeshType = Enum.MeshType.Brick
  3740. Part271.Parent = Model0
  3741. 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)
  3742. Part271.Orientation = Vector3.new(43.9099998, 0.199999988, -89.5899963)
  3743. Part271.Position = Vector3.new(-0.583012402, 3.6639781, -14.1030874)
  3744. Part271.Rotation = Vector3.new(43.9099998, 0.140000001, -89.7299957)
  3745. Part271.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3746. Part271.Velocity = Vector3.new(-8.66738503e-09, 0.00246666698, -1.13898864e-07)
  3747. Part271.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3748. Part271.Anchored = true
  3749. Part271.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3750. Part271.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3751. Part271.BrickColor = BrickColor.new("Royal purple")
  3752. Part271.CanCollide = false
  3753. Part271.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3754. Part271.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3755. Part271.Material = Enum.Material.Neon
  3756. Part271.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3757. Part271.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3758. Part271.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3759. Part271.brickColor = BrickColor.new("Royal purple")
  3760. SpecialMesh272.Parent = Part271
  3761. SpecialMesh272.Scale = Vector3.new(1, 0.300000012, 0.5)
  3762. SpecialMesh272.MeshType = Enum.MeshType.Wedge
  3763. Part273.Parent = Model0
  3764. 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)
  3765. Part273.Orientation = Vector3.new(-85.0800018, -3.50999999, -86.5699997)
  3766. Part273.Position = Vector3.new(-0.573997319, 3.0173018, -17.825201)
  3767. Part273.Rotation = Vector3.new(-85.0899963, -0.299999982, -90.0599976)
  3768. Part273.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3769. Part273.Velocity = Vector3.new(9.38732327e-08, 0.00245891255, 1.23359519e-06)
  3770. Part273.Size = Vector3.new(1.78499997, 0.200000003, 0.301375002)
  3771. Part273.Anchored = true
  3772. Part273.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3773. Part273.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3774. Part273.BrickColor = BrickColor.new("Royal purple")
  3775. Part273.CanCollide = false
  3776. Part273.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3777. Part273.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3778. Part273.Material = Enum.Material.Neon
  3779. Part273.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3780. Part273.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3781. Part273.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3782. Part273.brickColor = BrickColor.new("Royal purple")
  3783. SpecialMesh274.Parent = Part273
  3784. SpecialMesh274.Scale = Vector3.new(1, 0.300000012, 0.5)
  3785. SpecialMesh274.MeshType = Enum.MeshType.Wedge
  3786. Part275.Parent = Model0
  3787. 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)
  3788. Part275.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3789. Part275.Position = Vector3.new(-0.614639282, 3.4985106, -13.3051252)
  3790. Part275.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3791. Part275.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3792. Part275.Velocity = Vector3.new(1.75700912e-08, 0.00246832473, 2.30889498e-07)
  3793. Part275.Size = Vector3.new(0.275000006, 0.204125047, 0.207375005)
  3794. Part275.Anchored = true
  3795. Part275.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3796. Part275.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3797. Part275.BrickColor = BrickColor.new("Really black")
  3798. Part275.CanCollide = false
  3799. Part275.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3800. Part275.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3801. Part275.Material = Enum.Material.Metal
  3802. Part275.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3803. Part275.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3804. Part275.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3805. Part275.brickColor = BrickColor.new("Really black")
  3806. SpecialMesh276.Parent = Part275
  3807. SpecialMesh276.Scale = Vector3.new(0.5, 0.5, 0.5)
  3808. SpecialMesh276.MeshType = Enum.MeshType.Wedge
  3809. Part277.Parent = Model0
  3810. 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)
  3811. Part277.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3812. Part277.Position = Vector3.new(-0.609530032, 2.79620743, -14.2853489)
  3813. Part277.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3814. Part277.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3815. Part277.Velocity = Vector3.new(1.28931248e-07, 0.00246628304, 1.6942945e-06)
  3816. Part277.Size = Vector3.new(0.275000006, 0.223999977, 0.375375003)
  3817. Part277.Anchored = true
  3818. Part277.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3819. Part277.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3820. Part277.BrickColor = BrickColor.new("Really black")
  3821. Part277.CanCollide = false
  3822. Part277.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3823. Part277.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3824. Part277.Material = Enum.Material.Glass
  3825. Part277.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3826. Part277.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3827. Part277.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3828. Part277.brickColor = BrickColor.new("Really black")
  3829. SpecialMesh278.Parent = Part277
  3830. SpecialMesh278.Scale = Vector3.new(0.5, 0.699999988, 0.5)
  3831. SpecialMesh278.MeshType = Enum.MeshType.Brick
  3832. Part279.Parent = Model0
  3833. 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)
  3834. Part279.Orientation = Vector3.new(-89.5599976, -138.839996, 48.75)
  3835. Part279.Position = Vector3.new(-0.578278601, 2.9706955, -14.8714504)
  3836. Part279.Rotation = Vector3.new(-90.3399963, -0.289999992, -90.0899963)
  3837. Part279.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3838. Part279.Velocity = Vector3.new(1.01263424e-07, 0.00246506673, 1.33070978e-06)
  3839. Part279.Size = Vector3.new(0.49000001, 0.200000003, 0.290374994)
  3840. Part279.Anchored = true
  3841. Part279.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3842. Part279.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3843. Part279.BrickColor = BrickColor.new("Royal purple")
  3844. Part279.CanCollide = false
  3845. Part279.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3846. Part279.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3847. Part279.Material = Enum.Material.Neon
  3848. Part279.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3849. Part279.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3850. Part279.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3851. Part279.brickColor = BrickColor.new("Royal purple")
  3852. SpecialMesh280.Parent = Part279
  3853. SpecialMesh280.Scale = Vector3.new(1, 0.300000012, 0.5)
  3854. SpecialMesh280.MeshType = Enum.MeshType.Wedge
  3855. Part281.Parent = Model0
  3856. 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)
  3857. Part281.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3858. Part281.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  3859. Part281.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3860. Part281.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3861. Part281.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  3862. Part281.Size = Vector3.new(0.275000006, 0.698124886, 0.732374966)
  3863. Part281.Anchored = true
  3864. Part281.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3865. Part281.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3866. Part281.BrickColor = BrickColor.new("Really black")
  3867. Part281.CanCollide = false
  3868. Part281.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3869. Part281.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3870. Part281.Material = Enum.Material.Metal
  3871. Part281.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3872. Part281.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3873. Part281.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3874. Part281.brickColor = BrickColor.new("Really black")
  3875. SpecialMesh282.Parent = Part281
  3876. SpecialMesh282.Scale = Vector3.new(0.425000012, 1, 1)
  3877. SpecialMesh282.MeshType = Enum.MeshType.Cylinder
  3878. Part283.Parent = Model0
  3879. 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)
  3880. Part283.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  3881. Part283.Position = Vector3.new(-0.614591718, 3.4972918, -13.3320847)
  3882. Part283.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  3883. Part283.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3884. Part283.Velocity = Vector3.new(1.77633499e-08, 0.00246826862, 2.33429148e-07)
  3885. Part283.Size = Vector3.new(0.275000006, 0.413124949, 0.622375011)
  3886. Part283.Anchored = true
  3887. Part283.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3888. Part283.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3889. Part283.BrickColor = BrickColor.new("Really black")
  3890. Part283.CanCollide = false
  3891. Part283.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3892. Part283.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3893. Part283.Material = Enum.Material.Metal
  3894. Part283.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3895. Part283.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3896. Part283.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3897. Part283.brickColor = BrickColor.new("Really black")
  3898. SpecialMesh284.Parent = Part283
  3899. SpecialMesh284.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3900. SpecialMesh284.MeshType = Enum.MeshType.Brick
  3901. Part285.Parent = Model0
  3902. 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)
  3903. Part285.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3904. Part285.Position = Vector3.new(-0.615438342, 3.25487208, -11.9645395)
  3905. Part285.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3906. Part285.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3907. Part285.Velocity = Vector3.new(5.62028113e-08, 0.002471118, 7.38564609e-07)
  3908. Part285.Size = Vector3.new(0.275000006, 0.206125051, 0.280375004)
  3909. Part285.Anchored = true
  3910. Part285.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3911. Part285.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3912. Part285.BrickColor = BrickColor.new("Really black")
  3913. Part285.CanCollide = false
  3914. Part285.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3915. Part285.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3916. Part285.Material = Enum.Material.Metal
  3917. Part285.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3918. Part285.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3919. Part285.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3920. Part285.brickColor = BrickColor.new("Really black")
  3921. SpecialMesh286.Parent = Part285
  3922. SpecialMesh286.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  3923. SpecialMesh286.MeshType = Enum.MeshType.Wedge
  3924. Part287.Parent = Model0
  3925. 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)
  3926. Part287.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3927. Part287.Position = Vector3.new(-0.613306701, 3.18584442, -13.1265478)
  3928. Part287.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3929. Part287.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3930. Part287.Velocity = Vector3.new(6.71482141e-08, 0.00246869703, 8.82399092e-07)
  3931. Part287.Size = Vector3.new(0.275000006, 0.567124963, 0.311374992)
  3932. Part287.Anchored = true
  3933. Part287.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3934. Part287.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3935. Part287.BrickColor = BrickColor.new("Really black")
  3936. Part287.CanCollide = false
  3937. Part287.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3938. Part287.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3939. Part287.Material = Enum.Material.Metal
  3940. Part287.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3941. Part287.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3942. Part287.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3943. Part287.brickColor = BrickColor.new("Really black")
  3944. SpecialMesh288.Parent = Part287
  3945. SpecialMesh288.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3946. SpecialMesh288.MeshType = Enum.MeshType.Brick
  3947. Part289.Parent = Model0
  3948. 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)
  3949. Part289.Orientation = Vector3.new(46.079998, 179.610001, -90.4199982)
  3950. Part289.Position = Vector3.new(-0.646988273, 3.68078995, -13.1990242)
  3951. Part289.Rotation = Vector3.new(133.910004, 0.269999981, 89.8600006)
  3952. Part289.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3953. Part289.Velocity = Vector3.new(-1.13331566e-08, 0.00246854057, -1.48930098e-07)
  3954. Part289.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3955. Part289.Anchored = true
  3956. Part289.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3957. Part289.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3958. Part289.BrickColor = BrickColor.new("Royal purple")
  3959. Part289.CanCollide = false
  3960. Part289.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3961. Part289.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3962. Part289.Material = Enum.Material.Neon
  3963. Part289.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3964. Part289.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3965. Part289.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3966. Part289.brickColor = BrickColor.new("Royal purple")
  3967. SpecialMesh290.Parent = Part289
  3968. SpecialMesh290.Scale = Vector3.new(1, 0.300000012, 0.5)
  3969. SpecialMesh290.MeshType = Enum.MeshType.Wedge
  3970. Part291.Parent = Model0
  3971. 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)
  3972. Part291.Orientation = Vector3.new(-1.09000003, -0.0899999961, 0.289999992)
  3973. Part291.Position = Vector3.new(-0.611590862, 3.29178786, -14.6020966)
  3974. Part291.Rotation = Vector3.new(-1.09000003, -0.0899999961, 0.289999992)
  3975. Part291.Color = Color3.new(0.972549, 0.972549, 0.972549)
  3976. Part291.Velocity = Vector3.new(5.03492039e-08, 0.00246562273, 6.61642332e-07)
  3977. Part291.Size = Vector3.new(0.275000006, 0.200124964, 0.287375033)
  3978. Part291.Anchored = true
  3979. Part291.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3980. Part291.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3981. Part291.BrickColor = BrickColor.new("Institutional white")
  3982. Part291.CanCollide = false
  3983. Part291.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3984. Part291.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3985. Part291.Material = Enum.Material.Metal
  3986. Part291.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3987. Part291.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3988. Part291.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3989. Part291.brickColor = BrickColor.new("Institutional white")
  3990. SpecialMesh292.Parent = Part291
  3991. SpecialMesh292.Scale = Vector3.new(0.560000002, 1, 0.899999976)
  3992. SpecialMesh292.MeshType = Enum.MeshType.Wedge
  3993. Part293.Parent = Model0
  3994. 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)
  3995. Part293.Orientation = Vector3.new(-85.0800018, -3.50999999, 93.4300003)
  3996. Part293.Position = Vector3.new(-0.636496425, 3.01698065, -17.8252964)
  3997. Part293.Rotation = Vector3.new(-85.0899963, -0.299999982, 89.9399948)
  3998. Part293.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3999. Part293.Velocity = Vector3.new(9.39241573e-08, 0.00245890254, 1.23426435e-06)
  4000. Part293.Size = Vector3.new(1.78499997, 0.200000003, 0.301375002)
  4001. Part293.Anchored = true
  4002. Part293.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4003. Part293.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4004. Part293.BrickColor = BrickColor.new("Royal purple")
  4005. Part293.CanCollide = false
  4006. Part293.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4007. Part293.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4008. Part293.Material = Enum.Material.Neon
  4009. Part293.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4010. Part293.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4011. Part293.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4012. Part293.brickColor = BrickColor.new("Royal purple")
  4013. SpecialMesh294.Parent = Part293
  4014. SpecialMesh294.Scale = Vector3.new(1, 0.300000012, 0.5)
  4015. SpecialMesh294.MeshType = Enum.MeshType.Wedge
  4016. Part295.Parent = Model0
  4017. 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)
  4018. Part295.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4019. Part295.Position = Vector3.new(-0.611132324, 3.1960454, -14.5803022)
  4020. Part295.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4021. Part295.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4022. Part295.Velocity = Vector3.new(6.55306707e-08, 0.00246566813, 8.61143121e-07)
  4023. Part295.Size = Vector3.new(0.275000006, 0.277124941, 0.702375054)
  4024. Part295.Anchored = true
  4025. Part295.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4026. Part295.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4027. Part295.BrickColor = BrickColor.new("Really black")
  4028. Part295.CanCollide = false
  4029. Part295.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4030. Part295.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4031. Part295.Material = Enum.Material.Glass
  4032. Part295.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4033. Part295.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4034. Part295.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4035. Part295.brickColor = BrickColor.new("Really black")
  4036. SpecialMesh296.Parent = Part295
  4037. SpecialMesh296.Scale = Vector3.new(0.550000012, 0.5, 0.800000012)
  4038. SpecialMesh296.MeshType = Enum.MeshType.Brick
  4039. Part297.Parent = Model0
  4040. 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)
  4041. Part297.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4042. Part297.Position = Vector3.new(-0.610346913, 2.907269, -14.1244287)
  4043. Part297.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4044. Part297.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4045. Part297.Velocity = Vector3.new(1.11320702e-07, 0.00246661808, 1.462873e-06)
  4046. Part297.Size = Vector3.new(0.275000006, 0.207000002, 0.213375002)
  4047. Part297.Anchored = true
  4048. Part297.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4049. Part297.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4050. Part297.BrickColor = BrickColor.new("Bright blue")
  4051. Part297.CanCollide = false
  4052. Part297.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4053. Part297.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4054. Part297.Material = Enum.Material.Neon
  4055. Part297.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4056. Part297.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4057. Part297.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4058. Part297.brickColor = BrickColor.new("Bright blue")
  4059. SpecialMesh298.Parent = Part297
  4060. SpecialMesh298.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  4061. SpecialMesh298.MeshType = Enum.MeshType.Wedge
  4062. Part299.Parent = Model0
  4063. 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)
  4064. Part299.Orientation = Vector3.new(83.909996, 2.66999984, 2.76999998)
  4065. Part299.Position = Vector3.new(-0.617512941, 3.42300797, -11.1735916)
  4066. Part299.Rotation = Vector3.new(83.909996, 0.280000001, 0.119999997)
  4067. Part299.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4068. Part299.Velocity = Vector3.new(2.95422424e-08, 0.00247276574, 3.88216051e-07)
  4069. Part299.Size = Vector3.new(0.275000006, 0.223124996, 0.234375)
  4070. Part299.Anchored = true
  4071. Part299.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4072. Part299.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4073. Part299.BrickColor = BrickColor.new("Really black")
  4074. Part299.CanCollide = false
  4075. Part299.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4076. Part299.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4077. Part299.Material = Enum.Material.Metal
  4078. Part299.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4079. Part299.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4080. Part299.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4081. Part299.brickColor = BrickColor.new("Really black")
  4082. SpecialMesh300.Parent = Part299
  4083. SpecialMesh300.Scale = Vector3.new(0.5, 1, 0.400000006)
  4084. SpecialMesh300.MeshType = Enum.MeshType.Brick
  4085. Part301.Parent = Model0
  4086. 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)
  4087. Part301.Orientation = Vector3.new(5.40999985, -0.0599999987, -179.699997)
  4088. Part301.Position = Vector3.new(-0.60622716, 3.20835805, -17.8265324)
  4089. Part301.Rotation = Vector3.new(5.40999985, -0.0599999987, -179.699997)
  4090. Part301.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4091. Part301.Velocity = Vector3.new(6.35782698e-08, 0.00245890464, 8.35486958e-07)
  4092. Part301.Size = Vector3.new(0.275000006, 0.235124931, 1.6693753)
  4093. Part301.Anchored = true
  4094. Part301.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4095. Part301.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4096. Part301.BrickColor = BrickColor.new("Really black")
  4097. Part301.CanCollide = false
  4098. Part301.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4099. Part301.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4100. Part301.Material = Enum.Material.Metal
  4101. Part301.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4102. Part301.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4103. Part301.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4104. Part301.brickColor = BrickColor.new("Really black")
  4105. SpecialMesh302.Parent = Part301
  4106. SpecialMesh302.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  4107. SpecialMesh302.MeshType = Enum.MeshType.Brick
  4108. Part303.Parent = Model0
  4109. 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)
  4110. Part303.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4111. Part303.Position = Vector3.new(-0.610610962, 2.80771255, -13.6187115)
  4112. Part303.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4113. Part303.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4114. Part303.Velocity = Vector3.new(1.27106944e-07, 0.00246767187, 1.67032101e-06)
  4115. Part303.Size = Vector3.new(0.275000006, 0.368124902, 0.378374994)
  4116. Part303.Anchored = true
  4117. Part303.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4118. Part303.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4119. Part303.BrickColor = BrickColor.new("Really black")
  4120. Part303.CanCollide = false
  4121. Part303.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4122. Part303.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4123. Part303.Material = Enum.Material.Glass
  4124. Part303.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4125. Part303.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4126. Part303.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4127. Part303.brickColor = BrickColor.new("Really black")
  4128. SpecialMesh304.Parent = Part303
  4129. SpecialMesh304.Scale = Vector3.new(0.400000006, 1, 1)
  4130. SpecialMesh304.MeshType = Enum.MeshType.Wedge
  4131. Part305.Parent = Model0
  4132. 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)
  4133. Part305.Orientation = Vector3.new(19.5900002, 179.809998, 179.690002)
  4134. Part305.Position = Vector3.new(-0.608244181, 3.38925195, -17.114748)
  4135. Part305.Rotation = Vector3.new(160.410004, 0.179999992, -0.25)
  4136. Part305.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4137. Part305.Velocity = Vector3.new(3.48947182e-08, 0.00246038754, 4.5855424e-07)
  4138. Part305.Size = Vector3.new(0.275000006, 0.35212487, 0.214375019)
  4139. Part305.Anchored = true
  4140. Part305.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4141. Part305.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4142. Part305.BrickColor = BrickColor.new("Bright blue")
  4143. Part305.CanCollide = false
  4144. Part305.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4145. Part305.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4146. Part305.Material = Enum.Material.Neon
  4147. Part305.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4148. Part305.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4149. Part305.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4150. Part305.brickColor = BrickColor.new("Bright blue")
  4151. SpecialMesh306.Parent = Part305
  4152. SpecialMesh306.Scale = Vector3.new(0.449999988, 0.5, 0.100000001)
  4153. SpecialMesh306.MeshType = Enum.MeshType.Brick
  4154. Part307.Parent = Model0
  4155. 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)
  4156. Part307.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  4157. Part307.Position = Vector3.new(-0.610837221, 3.46367049, -15.6710596)
  4158. Part307.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  4159. Part307.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4160. Part307.Velocity = Vector3.new(2.30945076e-08, 0.00246339524, 3.03486615e-07)
  4161. Part307.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  4162. Part307.Anchored = true
  4163. Part307.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4164. Part307.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4165. Part307.BrickColor = BrickColor.new("Royal purple")
  4166. Part307.CanCollide = false
  4167. Part307.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4168. Part307.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4169. Part307.Material = Enum.Material.Neon
  4170. Part307.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4171. Part307.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4172. Part307.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4173. Part307.brickColor = BrickColor.new("Royal purple")
  4174. SpecialMesh308.Parent = Part307
  4175. SpecialMesh308.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  4176. SpecialMesh308.MeshType = Enum.MeshType.Brick
  4177. Part309.Parent = Model0
  4178. 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)
  4179. Part309.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4180. Part309.Position = Vector3.new(-0.609296381, 2.72693467, -14.2067709)
  4181. Part309.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4182. Part309.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4183. Part309.Velocity = Vector3.new(1.39915542e-07, 0.00246644672, 1.83863972e-06)
  4184. Part309.Size = Vector3.new(0.275000006, 0.315999985, 0.310375005)
  4185. Part309.Anchored = true
  4186. Part309.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4187. Part309.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4188. Part309.BrickColor = BrickColor.new("Really black")
  4189. Part309.CanCollide = false
  4190. Part309.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4191. Part309.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4192. Part309.Material = Enum.Material.Glass
  4193. Part309.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4194. Part309.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4195. Part309.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4196. Part309.brickColor = BrickColor.new("Really black")
  4197. SpecialMesh310.Parent = Part309
  4198. SpecialMesh310.Scale = Vector3.new(0.5, 1, 0.5)
  4199. SpecialMesh310.MeshType = Enum.MeshType.Wedge
  4200. Part311.Parent = Model0
  4201. 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)
  4202. Part311.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4203. Part311.Position = Vector3.new(-0.610869706, 2.96894002, -13.990572)
  4204. Part311.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4205. Part311.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4206. Part311.Velocity = Vector3.new(1.01541801e-07, 0.00246689701, 1.33436765e-06)
  4207. Part311.Size = Vector3.new(0.275000006, 0.214124978, 0.205375016)
  4208. Part311.Anchored = true
  4209. Part311.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4210. Part311.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4211. Part311.BrickColor = BrickColor.new("Really black")
  4212. Part311.CanCollide = false
  4213. Part311.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4214. Part311.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4215. Part311.Material = Enum.Material.Metal
  4216. Part311.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4217. Part311.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4218. Part311.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4219. Part311.brickColor = BrickColor.new("Really black")
  4220. SpecialMesh312.Parent = Part311
  4221. SpecialMesh312.Scale = Vector3.new(0.569999993, 0.75, 0.75)
  4222. SpecialMesh312.MeshType = Enum.MeshType.Brick
  4223. Part313.Parent = Model0
  4224. 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)
  4225. Part313.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  4226. Part313.Position = Vector3.new(-0.610455632, 3.45922971, -15.9053869)
  4227. Part313.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  4228. Part313.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4229. Part313.Velocity = Vector3.new(2.37986608e-08, 0.00246290723, 3.12739985e-07)
  4230. Part313.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  4231. Part313.Anchored = true
  4232. Part313.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4233. Part313.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4234. Part313.BrickColor = BrickColor.new("Royal purple")
  4235. Part313.CanCollide = false
  4236. Part313.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4237. Part313.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4238. Part313.Material = Enum.Material.Neon
  4239. Part313.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4240. Part313.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4241. Part313.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4242. Part313.brickColor = BrickColor.new("Royal purple")
  4243. SpecialMesh314.Parent = Part313
  4244. SpecialMesh314.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  4245. SpecialMesh314.MeshType = Enum.MeshType.Brick
  4246. Part315.Parent = Model0
  4247. 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)
  4248. Part315.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4249. Part315.Position = Vector3.new(-0.61787647, 3.39316416, -10.8383427)
  4250. Part315.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4251. Part315.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4252. Part315.Velocity = Vector3.new(3.42744499e-08, 0.00247346424, 4.50402268e-07)
  4253. Part315.Size = Vector3.new(0.275000006, 0.578125, 0.234375)
  4254. Part315.Anchored = true
  4255. Part315.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4256. Part315.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4257. Part315.BrickColor = BrickColor.new("Really black")
  4258. Part315.CanCollide = false
  4259. Part315.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4260. Part315.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4261. Part315.Material = Enum.Material.Metal
  4262. Part315.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4263. Part315.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4264. Part315.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4265. Part315.brickColor = BrickColor.new("Really black")
  4266. SpecialMesh316.Parent = Part315
  4267. SpecialMesh316.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  4268. SpecialMesh316.MeshType = Enum.MeshType.Brick
  4269. Part317.Parent = Model0
  4270. 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)
  4271. Part317.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4272. Part317.Position = Vector3.new(-0.613369107, 3.18659282, -13.087059)
  4273. Part317.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4274. Part317.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4275. Part317.Velocity = Vector3.new(6.70295464e-08, 0.00246877922, 8.8083965e-07)
  4276. Part317.Size = Vector3.new(0.275000006, 0.248124972, 0.311374992)
  4277. Part317.Anchored = true
  4278. Part317.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4279. Part317.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4280. Part317.BrickColor = BrickColor.new("Really black")
  4281. Part317.CanCollide = false
  4282. Part317.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4283. Part317.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4284. Part317.Material = Enum.Material.Metal
  4285. Part317.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4286. Part317.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4287. Part317.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4288. Part317.brickColor = BrickColor.new("Really black")
  4289. SpecialMesh318.Parent = Part317
  4290. SpecialMesh318.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  4291. SpecialMesh318.MeshType = Enum.MeshType.Brick
  4292. Part319.Parent = Model0
  4293. 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)
  4294. Part319.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  4295. Part319.Position = Vector3.new(-0.610582829, 3.460711, -15.82728)
  4296. Part319.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  4297. Part319.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4298. Part319.Velocity = Vector3.new(2.35637785e-08, 0.00246306974, 3.09653387e-07)
  4299. Part319.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  4300. Part319.Anchored = true
  4301. Part319.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4302. Part319.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4303. Part319.BrickColor = BrickColor.new("Royal purple")
  4304. Part319.CanCollide = false
  4305. Part319.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4306. Part319.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4307. Part319.Material = Enum.Material.Neon
  4308. Part319.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4309. Part319.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4310. Part319.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4311. Part319.brickColor = BrickColor.new("Royal purple")
  4312. SpecialMesh320.Parent = Part319
  4313. SpecialMesh320.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  4314. SpecialMesh320.MeshType = Enum.MeshType.Brick
  4315. Part321.Parent = Model0
  4316. 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)
  4317. Part321.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4318. Part321.Position = Vector3.new(-0.611585259, 3.11314392, -14.0068893)
  4319. Part321.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4320. Part321.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4321. Part321.Velocity = Vector3.new(7.86760097e-08, 0.00246686279, 1.03388675e-06)
  4322. Part321.Size = Vector3.new(0.275000006, 0.709124923, 0.47437498)
  4323. Part321.Anchored = true
  4324. Part321.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4325. Part321.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4326. Part321.BrickColor = BrickColor.new("Really black")
  4327. Part321.CanCollide = false
  4328. Part321.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4329. Part321.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4330. Part321.Material = Enum.Material.Metal
  4331. Part321.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4332. Part321.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4333. Part321.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4334. Part321.brickColor = BrickColor.new("Really black")
  4335. SpecialMesh322.Parent = Part321
  4336. SpecialMesh322.Scale = Vector3.new(0.5, 1.04999995, 0.800000012)
  4337. SpecialMesh322.MeshType = Enum.MeshType.Brick
  4338. Part323.Parent = Model0
  4339. 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)
  4340. Part323.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4341. Part323.Position = Vector3.new(-0.610941768, 3.01069665, -14.083005)
  4342. Part323.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4343. Part323.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4344. Part323.Velocity = Vector3.new(9.49206296e-08, 0.00246670446, 1.24735845e-06)
  4345. Part323.Size = Vector3.new(0.275000006, 0.252000004, 0.213375002)
  4346. Part323.Anchored = true
  4347. Part323.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4348. Part323.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4349. Part323.BrickColor = BrickColor.new("Really black")
  4350. Part323.CanCollide = false
  4351. Part323.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4352. Part323.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4353. Part323.Material = Enum.Material.Metal
  4354. Part323.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4355. Part323.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4356. Part323.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4357. Part323.brickColor = BrickColor.new("Really black")
  4358. SpecialMesh324.Parent = Part323
  4359. SpecialMesh324.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  4360. SpecialMesh324.MeshType = Enum.MeshType.Wedge
  4361. Part325.Parent = Model0
  4362. 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)
  4363. Part325.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4364. Part325.Position = Vector3.new(-0.61388576, 3.20741606, -12.8194075)
  4365. Part325.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4366. Part325.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4367. Part325.Velocity = Vector3.new(6.37276969e-08, 0.00246933685, 8.37449761e-07)
  4368. Part325.Size = Vector3.new(0.275000006, 0.244125068, 0.416375011)
  4369. Part325.Anchored = true
  4370. Part325.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4371. Part325.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4372. Part325.BrickColor = BrickColor.new("Really black")
  4373. Part325.CanCollide = false
  4374. Part325.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4375. Part325.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4376. Part325.Material = Enum.Material.Metal
  4377. Part325.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4378. Part325.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4379. Part325.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4380. Part325.brickColor = BrickColor.new("Really black")
  4381. SpecialMesh326.Parent = Part325
  4382. SpecialMesh326.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  4383. SpecialMesh326.MeshType = Enum.MeshType.Wedge
  4384. Part327.Parent = Model0
  4385. 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)
  4386. Part327.Orientation = Vector3.new(35.8400002, 179.699997, 179.639999)
  4387. Part327.Position = Vector3.new(-0.609650612, 3.31554532, -15.9490957)
  4388. Part327.Rotation = Vector3.new(144.160004, 0.239999995, -0.189999998)
  4389. Part327.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4390. Part327.Velocity = Vector3.new(4.65820733e-08, 0.00246281619, 6.12138422e-07)
  4391. Part327.Size = Vector3.new(0.275000006, 0.237124875, 0.214375019)
  4392. Part327.Anchored = true
  4393. Part327.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4394. Part327.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4395. Part327.BrickColor = BrickColor.new("Bright blue")
  4396. Part327.CanCollide = false
  4397. Part327.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4398. Part327.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4399. Part327.Material = Enum.Material.Neon
  4400. Part327.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4401. Part327.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4402. Part327.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4403. Part327.brickColor = BrickColor.new("Bright blue")
  4404. SpecialMesh328.Parent = Part327
  4405. SpecialMesh328.Scale = Vector3.new(0.449999988, 0.800000012, 0.100000001)
  4406. SpecialMesh328.MeshType = Enum.MeshType.Brick
  4407. Part329.Parent = Model0
  4408. 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)
  4409. Part329.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4410. Part329.Position = Vector3.new(-0.612260759, 3.04390216, -13.3335075)
  4411. Part329.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4412. Part329.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4413. Part329.Velocity = Vector3.new(8.96553871e-08, 0.00246826583, 1.17816739e-06)
  4414. Part329.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  4415. Part329.Anchored = true
  4416. Part329.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4417. Part329.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4418. Part329.BrickColor = BrickColor.new("Really black")
  4419. Part329.CanCollide = false
  4420. Part329.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4421. Part329.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4422. Part329.Material = Enum.Material.Metal
  4423. Part329.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4424. Part329.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4425. Part329.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4426. Part329.brickColor = BrickColor.new("Really black")
  4427. SpecialMesh330.Parent = Part329
  4428. SpecialMesh330.Scale = Vector3.new(0.5, 0.5, 0.5)
  4429. SpecialMesh330.MeshType = Enum.MeshType.Wedge
  4430. Part331.Parent = Model0
  4431. 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)
  4432. Part331.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  4433. Part331.Position = Vector3.new(-0.614394248, 3.36069822, -13.0015078)
  4434. Part331.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  4435. Part331.Color = Color3.new(0.803922, 0.803922, 0.803922)
  4436. Part331.Velocity = Vector3.new(3.94224067e-08, 0.00246895733, 5.18052275e-07)
  4437. Part331.Size = Vector3.new(0.275000006, 0.216124982, 0.280375004)
  4438. Part331.Anchored = true
  4439. Part331.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4440. Part331.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4441. Part331.BrickColor = BrickColor.new("Mid gray")
  4442. Part331.CanCollide = false
  4443. Part331.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4444. Part331.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4445. Part331.Material = Enum.Material.Metal
  4446. Part331.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4447. Part331.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4448. Part331.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4449. Part331.brickColor = BrickColor.new("Mid gray")
  4450. SpecialMesh332.Parent = Part331
  4451. SpecialMesh332.Scale = Vector3.new(0.349999994, 1.04999995, 0.5)
  4452. SpecialMesh332.MeshType = Enum.MeshType.Brick
  4453. Part333.Parent = Model0
  4454. 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)
  4455. Part333.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  4456. Part333.Position = Vector3.new(-0.610709965, 3.46219134, -15.7491703)
  4457. Part333.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  4458. Part333.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4459. Part333.Velocity = Vector3.new(2.33290489e-08, 0.00246323249, 3.06568751e-07)
  4460. Part333.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  4461. Part333.Anchored = true
  4462. Part333.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4463. Part333.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4464. Part333.BrickColor = BrickColor.new("Royal purple")
  4465. Part333.CanCollide = false
  4466. Part333.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4467. Part333.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4468. Part333.Material = Enum.Material.Neon
  4469. Part333.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4470. Part333.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4471. Part333.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4472. Part333.brickColor = BrickColor.new("Royal purple")
  4473. SpecialMesh334.Parent = Part333
  4474. SpecialMesh334.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  4475. SpecialMesh334.MeshType = Enum.MeshType.Brick
  4476. Part335.Parent = Model0
  4477. 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)
  4478. Part335.Orientation = Vector3.new(56.4099998, 0.359999985, 0.529999971)
  4479. Part335.Position = Vector3.new(-0.608794093, 3.33530617, -16.5748692)
  4480. Part335.Rotation = Vector3.new(56.4099998, 0.199999988, 0.239999995)
  4481. Part335.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4482. Part335.Velocity = Vector3.new(4.34486722e-08, 0.00246151234, 5.709623e-07)
  4483. Part335.Size = Vector3.new(0.275000006, 0.265124857, 0.214375019)
  4484. Part335.Anchored = true
  4485. Part335.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4486. Part335.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4487. Part335.BrickColor = BrickColor.new("Bright blue")
  4488. Part335.CanCollide = false
  4489. Part335.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4490. Part335.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4491. Part335.Material = Enum.Material.Neon
  4492. Part335.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4493. Part335.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4494. Part335.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4495. Part335.brickColor = BrickColor.new("Bright blue")
  4496. SpecialMesh336.Parent = Part335
  4497. SpecialMesh336.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  4498. SpecialMesh336.MeshType = Enum.MeshType.Brick
  4499. Part337.Parent = Model0
  4500. 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)
  4501. Part337.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4502. Part337.Position = Vector3.new(-0.61091727, 3.02827954, -14.1579723)
  4503. Part337.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4504. Part337.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4505. Part337.Velocity = Vector3.new(9.21325807e-08, 0.00246654823, 1.2107206e-06)
  4506. Part337.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  4507. Part337.Anchored = true
  4508. Part337.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4509. Part337.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4510. Part337.BrickColor = BrickColor.new("Really black")
  4511. Part337.CanCollide = false
  4512. Part337.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4513. Part337.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4514. Part337.Material = Enum.Material.Glass
  4515. Part337.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4516. Part337.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4517. Part337.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4518. Part337.brickColor = BrickColor.new("Really black")
  4519. SpecialMesh338.Parent = Part337
  4520. SpecialMesh338.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  4521. SpecialMesh338.MeshType = Enum.MeshType.Wedge
  4522. Part339.Parent = Model0
  4523. 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)
  4524. Part339.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  4525. Part339.Position = Vector3.new(-0.609729409, 3.2205193, -15.578517)
  4526. Part339.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  4527. Part339.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4528. Part339.Velocity = Vector3.new(6.1649942e-08, 0.00246358826, 8.10146275e-07)
  4529. Part339.Size = Vector3.new(0.275000006, 0.621124864, 0.214375019)
  4530. Part339.Anchored = true
  4531. Part339.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4532. Part339.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4533. Part339.BrickColor = BrickColor.new("Bright blue")
  4534. Part339.CanCollide = false
  4535. Part339.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4536. Part339.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4537. Part339.Material = Enum.Material.Neon
  4538. Part339.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4539. Part339.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4540. Part339.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4541. Part339.brickColor = BrickColor.new("Bright blue")
  4542. SpecialMesh340.Parent = Part339
  4543. SpecialMesh340.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  4544. SpecialMesh340.MeshType = Enum.MeshType.Brick
  4545. Part341.Parent = Model0
  4546. 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)
  4547. Part341.Orientation = Vector3.new(-23.5900002, -0.219999999, -179.679993)
  4548. Part341.Position = Vector3.new(-0.610086679, 3.15827918, -15.1365986)
  4549. Part341.Rotation = Vector3.new(-23.5900002, -0.199999988, -179.769989)
  4550. Part341.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4551. Part341.Velocity = Vector3.new(7.15190893e-08, 0.0024645091, 9.39837378e-07)
  4552. Part341.Size = Vector3.new(0.275000006, 0.221124932, 0.655375004)
  4553. Part341.Anchored = true
  4554. Part341.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4555. Part341.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4556. Part341.BrickColor = BrickColor.new("Really black")
  4557. Part341.CanCollide = false
  4558. Part341.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4559. Part341.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4560. Part341.Material = Enum.Material.Metal
  4561. Part341.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4562. Part341.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4563. Part341.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4564. Part341.brickColor = BrickColor.new("Really black")
  4565. SpecialMesh342.Parent = Part341
  4566. SpecialMesh342.Scale = Vector3.new(0.400000006, 1.04999995, 0.899999976)
  4567. SpecialMesh342.MeshType = Enum.MeshType.Brick
  4568. Part343.Parent = Model0
  4569. 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)
  4570. Part343.Orientation = Vector3.new(-61.079998, -0.620000005, -89.3899994)
  4571. Part343.Position = Vector3.new(-0.576193094, 2.37180829, -14.2261257)
  4572. Part343.Rotation = Vector3.new(-61.0900002, -0.299999982, -89.9300003)
  4573. Part343.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4574. Part343.Velocity = Vector3.new(1.96226381e-07, 0.00246641156, 2.57862462e-06)
  4575. Part343.Size = Vector3.new(0.405000031, 0.200000003, 0.280375004)
  4576. Part343.Anchored = true
  4577. Part343.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4578. Part343.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4579. Part343.BrickColor = BrickColor.new("Royal purple")
  4580. Part343.CanCollide = false
  4581. Part343.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4582. Part343.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4583. Part343.Material = Enum.Material.Neon
  4584. Part343.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4585. Part343.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4586. Part343.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4587. Part343.brickColor = BrickColor.new("Royal purple")
  4588. SpecialMesh344.Parent = Part343
  4589. SpecialMesh344.Scale = Vector3.new(1, 0.300000012, 0.5)
  4590. SpecialMesh344.MeshType = Enum.MeshType.Wedge
  4591. Part345.Parent = Model0
  4592. 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)
  4593. Part345.Orientation = Vector3.new(45.579998, 179.610001, 179.580002)
  4594. Part345.Position = Vector3.new(-0.606692195, 3.59138489, -18.8080196)
  4595. Part345.Rotation = Vector3.new(134.410004, 0.269999981, -0.140000001)
  4596. Part345.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4597. Part345.Velocity = Vector3.new(2.843354e-09, 0.00245685945, 3.73652256e-08)
  4598. Part345.Size = Vector3.new(0.275000006, 0.47012496, 0.214375019)
  4599. Part345.Anchored = true
  4600. Part345.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4601. Part345.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4602. Part345.BrickColor = BrickColor.new("Bright blue")
  4603. Part345.CanCollide = false
  4604. Part345.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4605. Part345.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4606. Part345.Material = Enum.Material.Neon
  4607. Part345.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4608. Part345.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4609. Part345.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4610. Part345.brickColor = BrickColor.new("Bright blue")
  4611. SpecialMesh346.Parent = Part345
  4612. SpecialMesh346.Scale = Vector3.new(0.449999988, 0.699999988, 0.100000001)
  4613. SpecialMesh346.MeshType = Enum.MeshType.Brick
  4614. Part347.Parent = Model0
  4615. 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)
  4616. Part347.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4617. Part347.Position = Vector3.new(-0.612170458, 3.17509294, -13.8325748)
  4618. Part347.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4619. Part347.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4620. Part347.Velocity = Vector3.new(6.88530264e-08, 0.002467226, 9.04802221e-07)
  4621. Part347.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  4622. Part347.Anchored = true
  4623. Part347.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4624. Part347.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4625. Part347.BrickColor = BrickColor.new("Really black")
  4626. Part347.CanCollide = false
  4627. Part347.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4628. Part347.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4629. Part347.Material = Enum.Material.Metal
  4630. Part347.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4631. Part347.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4632. Part347.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4633. Part347.brickColor = BrickColor.new("Really black")
  4634. SpecialMesh348.Parent = Part347
  4635. SpecialMesh348.Scale = Vector3.new(0.5, 0.5, 0.5)
  4636. SpecialMesh348.MeshType = Enum.MeshType.Wedge
  4637. Part349.Parent = Model0
  4638. 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)
  4639. Part349.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  4640. Part349.Position = Vector3.new(-0.608221889, 3.47114682, -17.4040871)
  4641. Part349.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  4642. Part349.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4643. Part349.Velocity = Vector3.new(2.19089991e-08, 0.0024597845, 2.87908023e-07)
  4644. Part349.Size = Vector3.new(0.275000006, 0.678124905, 0.214375019)
  4645. Part349.Anchored = true
  4646. Part349.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4647. Part349.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4648. Part349.BrickColor = BrickColor.new("Bright blue")
  4649. Part349.CanCollide = false
  4650. Part349.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4651. Part349.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4652. Part349.Material = Enum.Material.Neon
  4653. Part349.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4654. Part349.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4655. Part349.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4656. Part349.brickColor = BrickColor.new("Bright blue")
  4657. SpecialMesh350.Parent = Part349
  4658. SpecialMesh350.Scale = Vector3.new(0.449999988, 0.800000012, 0.100000001)
  4659. SpecialMesh350.MeshType = Enum.MeshType.Brick
  4660. Part351.Parent = Model0
  4661. 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)
  4662. Part351.Orientation = Vector3.new(81.0800018, 178.039993, 178.099991)
  4663. Part351.Position = Vector3.new(-0.617746711, 3.42490911, -11.0273066)
  4664. Part351.Rotation = Vector3.new(98.909996, 0.299999982, 0.0399999991)
  4665. Part351.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4666. Part351.Velocity = Vector3.new(2.92407876e-08, 0.00247307052, 3.84254577e-07)
  4667. Part351.Size = Vector3.new(0.275000006, 0.203125, 0.234375)
  4668. Part351.Anchored = true
  4669. Part351.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4670. Part351.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4671. Part351.BrickColor = BrickColor.new("Really black")
  4672. Part351.CanCollide = false
  4673. Part351.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4674. Part351.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4675. Part351.Material = Enum.Material.Metal
  4676. Part351.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4677. Part351.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4678. Part351.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4679. Part351.brickColor = BrickColor.new("Really black")
  4680. SpecialMesh352.Parent = Part351
  4681. SpecialMesh352.Scale = Vector3.new(0.5, 0.502499998, 0.400000006)
  4682. SpecialMesh352.MeshType = Enum.MeshType.Brick
  4683. Part353.Parent = Model0
  4684. 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)
  4685. Part353.Orientation = Vector3.new(-61.079998, -0.620000005, 90.6100006)
  4686. Part353.Position = Vector3.new(-0.638692379, 2.37148738, -14.226222)
  4687. Part353.Rotation = Vector3.new(-61.0900002, -0.299999982, 90.0699997)
  4688. Part353.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4689. Part353.Velocity = Vector3.new(1.9627727e-07, 0.00246640155, 2.57929332e-06)
  4690. Part353.Size = Vector3.new(0.405000031, 0.200000003, 0.280375004)
  4691. Part353.Anchored = true
  4692. Part353.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4693. Part353.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4694. Part353.BrickColor = BrickColor.new("Royal purple")
  4695. Part353.CanCollide = false
  4696. Part353.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4697. Part353.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4698. Part353.Material = Enum.Material.Neon
  4699. Part353.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4700. Part353.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4701. Part353.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4702. Part353.brickColor = BrickColor.new("Royal purple")
  4703. SpecialMesh354.Parent = Part353
  4704. SpecialMesh354.Scale = Vector3.new(1, 0.300000012, 0.5)
  4705. SpecialMesh354.MeshType = Enum.MeshType.Wedge
  4706. Part355.Parent = Model0
  4707. 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)
  4708. Part355.Orientation = Vector3.new(-73.909996, -179.069992, 88.9399948)
  4709. Part355.Position = Vector3.new(-0.576556623, 2.33930445, -13.8796148)
  4710. Part355.Rotation = Vector3.new(-106.089996, -0.25999999, -90.1699982)
  4711. Part355.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4712. Part355.Velocity = Vector3.new(2.01380388e-07, 0.00246713357, 2.64635355e-06)
  4713. Part355.Size = Vector3.new(0.453000009, 0.200000003, 0.280375004)
  4714. Part355.Anchored = true
  4715. Part355.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4716. Part355.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4717. Part355.BrickColor = BrickColor.new("Royal purple")
  4718. Part355.CanCollide = false
  4719. Part355.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4720. Part355.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4721. Part355.Material = Enum.Material.Neon
  4722. Part355.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4723. Part355.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4724. Part355.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4725. Part355.brickColor = BrickColor.new("Royal purple")
  4726. SpecialMesh356.Parent = Part355
  4727. SpecialMesh356.Scale = Vector3.new(1, 0.300000012, 0.5)
  4728. SpecialMesh356.MeshType = Enum.MeshType.Wedge
  4729. Part357.Parent = Model0
  4730. 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)
  4731. Part357.Orientation = Vector3.new(-58.9099998, -179.599991, -0.569999993)
  4732. Part357.Position = Vector3.new(-0.609105706, 2.8586967, -14.7735023)
  4733. Part357.Rotation = Vector3.new(-121.089996, -0.209999993, 179.769989)
  4734. Part357.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4735. Part357.Velocity = Vector3.new(1.19022602e-07, 0.0024652658, 1.56408419e-06)
  4736. Part357.Size = Vector3.new(0.275000006, 0.277124912, 0.227375031)
  4737. Part357.Anchored = true
  4738. Part357.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4739. Part357.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4740. Part357.BrickColor = BrickColor.new("Really black")
  4741. Part357.CanCollide = false
  4742. Part357.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4743. Part357.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4744. Part357.Material = Enum.Material.Metal
  4745. Part357.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4746. Part357.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4747. Part357.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4748. Part357.brickColor = BrickColor.new("Really black")
  4749. SpecialMesh358.Parent = Part357
  4750. SpecialMesh358.Scale = Vector3.new(0.349999994, 0.300000012, 1)
  4751. SpecialMesh358.MeshType = Enum.MeshType.Brick
  4752. Part359.Parent = Model0
  4753. 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)
  4754. Part359.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4755. Part359.Position = Vector3.new(-0.614465594, 3.24354935, -12.5620441)
  4756. Part359.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4757. Part359.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4758. Part359.Velocity = Vector3.new(5.79982e-08, 0.00246987306, 7.62158038e-07)
  4759. Part359.Size = Vector3.new(0.275000006, 0.998124957, 0.280375004)
  4760. Part359.Anchored = true
  4761. Part359.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4762. Part359.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4763. Part359.BrickColor = BrickColor.new("Really black")
  4764. Part359.CanCollide = false
  4765. Part359.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4766. Part359.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4767. Part359.Material = Enum.Material.Metal
  4768. Part359.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4769. Part359.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4770. Part359.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4771. Part359.brickColor = BrickColor.new("Really black")
  4772. SpecialMesh360.Parent = Part359
  4773. SpecialMesh360.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  4774. SpecialMesh360.MeshType = Enum.MeshType.Brick
  4775. Part361.Parent = Model0
  4776. 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)
  4777. Part361.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  4778. Part361.Position = Vector3.new(-0.611248136, 3.25645614, -14.7074032)
  4779. Part361.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  4780. Part361.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4781. Part361.Velocity = Vector3.new(5.59516025e-08, 0.00246540317, 7.35263882e-07)
  4782. Part361.Size = Vector3.new(0.275000006, 0.221124932, 0.418375015)
  4783. Part361.Anchored = true
  4784. Part361.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4785. Part361.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4786. Part361.BrickColor = BrickColor.new("Really black")
  4787. Part361.CanCollide = false
  4788. Part361.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4789. Part361.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4790. Part361.Material = Enum.Material.Metal
  4791. Part361.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4792. Part361.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4793. Part361.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4794. Part361.brickColor = BrickColor.new("Really black")
  4795. SpecialMesh362.Parent = Part361
  4796. SpecialMesh362.Scale = Vector3.new(0.550000012, 1.04999995, 0.899999976)
  4797. SpecialMesh362.MeshType = Enum.MeshType.Brick
  4798. Part363.Parent = Model0
  4799. 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)
  4800. Part363.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4801. Part363.Position = Vector3.new(-0.611290276, 3.1978817, -14.4833202)
  4802. Part363.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4803. Part363.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4804. Part363.Velocity = Vector3.new(6.52394974e-08, 0.00246587023, 8.57316763e-07)
  4805. Part363.Size = Vector3.new(0.275000006, 0.221124932, 0.448374987)
  4806. Part363.Anchored = true
  4807. Part363.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4808. Part363.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4809. Part363.BrickColor = BrickColor.new("Really black")
  4810. Part363.CanCollide = false
  4811. Part363.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4812. Part363.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4813. Part363.Material = Enum.Material.Metal
  4814. Part363.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4815. Part363.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4816. Part363.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4817. Part363.brickColor = BrickColor.new("Really black")
  4818. SpecialMesh364.Parent = Part363
  4819. SpecialMesh364.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  4820. SpecialMesh364.MeshType = Enum.MeshType.Brick
  4821. Part365.Parent = Model0
  4822. 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)
  4823. Part365.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4824. Part365.Position = Vector3.new(-0.610800147, 2.91253304, -13.8467321)
  4825. Part365.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4826. Part365.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4827. Part365.Velocity = Vector3.new(1.10486013e-07, 0.00246719667, 1.45190415e-06)
  4828. Part365.Size = Vector3.new(0.275000006, 0.200000003, 0.213375002)
  4829. Part365.Anchored = true
  4830. Part365.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4831. Part365.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4832. Part365.BrickColor = BrickColor.new("Bright blue")
  4833. Part365.CanCollide = false
  4834. Part365.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4835. Part365.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4836. Part365.Material = Enum.Material.Neon
  4837. Part365.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4838. Part365.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4839. Part365.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4840. Part365.brickColor = BrickColor.new("Bright blue")
  4841. SpecialMesh366.Parent = Part365
  4842. SpecialMesh366.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  4843. SpecialMesh366.MeshType = Enum.MeshType.Wedge
  4844. Part367.Parent = Model0
  4845. 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)
  4846. Part367.Orientation = Vector3.new(-76.0800018, -1.27999997, -178.779999)
  4847. Part367.Position = Vector3.new(-0.616349459, 3.1451273, -11.0012493)
  4848. Part367.Rotation = Vector3.new(-76.0899963, -0.310000002, 179.98999)
  4849. Part367.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4850. Part367.Velocity = Vector3.new(7.3604582e-08, 0.002473125, 9.67242272e-07)
  4851. Part367.Size = Vector3.new(0.200000003, 0.449500024, 0.236624971)
  4852. Part367.Anchored = true
  4853. Part367.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4854. Part367.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4855. Part367.BrickColor = BrickColor.new("Bright blue")
  4856. Part367.CanCollide = false
  4857. Part367.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4858. Part367.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4859. Part367.Material = Enum.Material.Neon
  4860. Part367.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4861. Part367.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4862. Part367.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4863. Part367.brickColor = BrickColor.new("Bright blue")
  4864. SpecialMesh368.Parent = Part367
  4865. SpecialMesh368.Scale = Vector3.new(0.5, 1, 0.25)
  4866. SpecialMesh368.MeshType = Enum.MeshType.Brick
  4867. Part369.Parent = Model0
  4868. 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)
  4869. Part369.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4870. Part369.Position = Vector3.new(-0.612978816, 3.18449855, -13.3361721)
  4871. Part369.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4872. Part369.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4873. Part369.Velocity = Vector3.new(6.73616256e-08, 0.00246826024, 8.85203519e-07)
  4874. Part369.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  4875. Part369.Anchored = true
  4876. Part369.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4877. Part369.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4878. Part369.BrickColor = BrickColor.new("Really black")
  4879. Part369.CanCollide = false
  4880. Part369.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4881. Part369.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4882. Part369.Material = Enum.Material.Metal
  4883. Part369.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4884. Part369.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4885. Part369.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4886. Part369.brickColor = BrickColor.new("Really black")
  4887. SpecialMesh370.Parent = Part369
  4888. SpecialMesh370.Scale = Vector3.new(0.5, 0.5, 0.5)
  4889. SpecialMesh370.MeshType = Enum.MeshType.Wedge
  4890. Part371.Parent = Model0
  4891. 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)
  4892. Part371.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4893. Part371.Position = Vector3.new(-0.611412168, 3.19930172, -14.4084625)
  4894. Part371.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4895. Part371.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4896. Part371.Velocity = Vector3.new(6.50143335e-08, 0.00246602623, 8.54357836e-07)
  4897. Part371.Size = Vector3.new(0.275000006, 0.204124942, 0.464375019)
  4898. Part371.Anchored = true
  4899. Part371.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4900. Part371.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4901. Part371.BrickColor = BrickColor.new("Royal purple")
  4902. Part371.CanCollide = false
  4903. Part371.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4904. Part371.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4905. Part371.Material = Enum.Material.Neon
  4906. Part371.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4907. Part371.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4908. Part371.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4909. Part371.brickColor = BrickColor.new("Royal purple")
  4910. SpecialMesh372.Parent = Part371
  4911. SpecialMesh372.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  4912. SpecialMesh372.MeshType = Enum.MeshType.Brick
  4913. Part373.Parent = Model0
  4914. 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)
  4915. Part373.Orientation = Vector3.new(43.4099998, 0.189999998, 0.409999996)
  4916. Part373.Position = Vector3.new(-0.607544899, 3.43064713, -17.7122707)
  4917. Part373.Rotation = Vector3.new(43.4099998, 0.140000001, 0.269999981)
  4918. Part373.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4919. Part373.Velocity = Vector3.new(2.83308559e-08, 0.00245914259, 3.72298132e-07)
  4920. Part373.Size = Vector3.new(0.275000006, 0.24712491, 0.214375019)
  4921. Part373.Anchored = true
  4922. Part373.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4923. Part373.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4924. Part373.BrickColor = BrickColor.new("Bright blue")
  4925. Part373.CanCollide = false
  4926. Part373.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4927. Part373.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4928. Part373.Material = Enum.Material.Neon
  4929. Part373.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4930. Part373.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4931. Part373.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4932. Part373.brickColor = BrickColor.new("Bright blue")
  4933. SpecialMesh374.Parent = Part373
  4934. SpecialMesh374.Scale = Vector3.new(0.449999988, 0.600000024, 0.100000001)
  4935. SpecialMesh374.MeshType = Enum.MeshType.Brick
  4936. Part375.Parent = Model0
  4937. 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)
  4938. Part375.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4939. Part375.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  4940. Part375.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4941. Part375.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4942. Part375.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  4943. Part375.Size = Vector3.new(0.275000006, 0.698124886, 0.534374952)
  4944. Part375.Anchored = true
  4945. Part375.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4946. Part375.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4947. Part375.BrickColor = BrickColor.new("Bright blue")
  4948. Part375.CanCollide = false
  4949. Part375.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4950. Part375.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4951. Part375.Material = Enum.Material.Glass
  4952. Part375.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4953. Part375.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4954. Part375.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4955. Part375.brickColor = BrickColor.new("Bright blue")
  4956. SpecialMesh376.Parent = Part375
  4957. SpecialMesh376.Scale = Vector3.new(0.452499986, 1, 1)
  4958. SpecialMesh376.MeshType = Enum.MeshType.Cylinder
  4959. Part377.Parent = Model0
  4960. 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)
  4961. Part377.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4962. Part377.Position = Vector3.new(-0.618502736, 3.35398197, -11.388195)
  4963. Part377.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4964. Part377.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4965. Part377.Velocity = Vector3.new(4.0487393e-08, 0.00247231848, 5.32047068e-07)
  4966. Part377.Size = Vector3.new(0.25999999, 0.225500003, 0.210125014)
  4967. Part377.Anchored = true
  4968. Part377.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4969. Part377.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4970. Part377.BrickColor = BrickColor.new("Really black")
  4971. Part377.CanCollide = false
  4972. Part377.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4973. Part377.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4974. Part377.Material = Enum.Material.Metal
  4975. Part377.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4976. Part377.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4977. Part377.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4978. Part377.brickColor = BrickColor.new("Really black")
  4979. SpecialMesh378.Parent = Part377
  4980. SpecialMesh378.Scale = Vector3.new(0.5, 1, 1)
  4981. SpecialMesh378.MeshType = Enum.MeshType.Wedge
  4982. Part379.Parent = Model0
  4983. 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)
  4984. Part379.Orientation = Vector3.new(-2.08999991, -0.099999994, -89.7099991)
  4985. Part379.Position = Vector3.new(-0.575232625, 3.71340823, -19.3540096)
  4986. Part379.Rotation = Vector3.new(-2.08999991, -0.099999994, -89.7099991)
  4987. Part379.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4988. Part379.Velocity = Vector3.new(-1.65053677e-08, 0.00245572673, -2.16897547e-07)
  4989. Part379.Size = Vector3.new(0.210000038, 0.200000003, 0.285374999)
  4990. Part379.Anchored = true
  4991. Part379.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4992. Part379.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4993. Part379.BrickColor = BrickColor.new("Royal purple")
  4994. Part379.CanCollide = false
  4995. Part379.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4996. Part379.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4997. Part379.Material = Enum.Material.Neon
  4998. Part379.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4999. Part379.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5000. Part379.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5001. Part379.brickColor = BrickColor.new("Royal purple")
  5002. SpecialMesh380.Parent = Part379
  5003. SpecialMesh380.Scale = Vector3.new(0.5, 0.300000012, 0.5)
  5004. SpecialMesh380.MeshType = Enum.MeshType.Wedge
  5005. Part381.Parent = Model0
  5006. 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)
  5007. Part381.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  5008. Part381.Position = Vector3.new(-0.609601736, 3.48017144, -16.5335026)
  5009. Part381.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  5010. Part381.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5011. Part381.Velocity = Vector3.new(2.0478014e-08, 0.00246159849, 2.69103225e-07)
  5012. Part381.Size = Vector3.new(0.275000006, 1.65712488, 0.359375)
  5013. Part381.Anchored = true
  5014. Part381.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5015. Part381.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5016. Part381.BrickColor = BrickColor.new("Really black")
  5017. Part381.CanCollide = false
  5018. Part381.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5019. Part381.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5020. Part381.Material = Enum.Material.Metal
  5021. Part381.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5022. Part381.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5023. Part381.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5024. Part381.brickColor = BrickColor.new("Really black")
  5025. SpecialMesh382.Parent = Part381
  5026. SpecialMesh382.Scale = Vector3.new(0.400000006, 1, 0.5)
  5027. SpecialMesh382.MeshType = Enum.MeshType.Brick
  5028. Part383.Parent = Model0
  5029. 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)
  5030. Part383.Orientation = Vector3.new(-61.079998, -0.620000005, -179.389999)
  5031. Part383.Position = Vector3.new(-0.608603716, 2.57794237, -14.160059)
  5032. Part383.Rotation = Vector3.new(-61.0900002, -0.299999982, -179.929993)
  5033. Part383.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5034. Part383.Velocity = Vector3.new(1.63540591e-07, 0.00246654428, 2.14909824e-06)
  5035. Part383.Size = Vector3.new(0.275000006, 0.309124947, 0.343375027)
  5036. Part383.Anchored = true
  5037. Part383.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5038. Part383.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5039. Part383.BrickColor = BrickColor.new("Really black")
  5040. Part383.CanCollide = false
  5041. Part383.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5042. Part383.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5043. Part383.Material = Enum.Material.Metal
  5044. Part383.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5045. Part383.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5046. Part383.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5047. Part383.brickColor = BrickColor.new("Really black")
  5048. SpecialMesh384.Parent = Part383
  5049. SpecialMesh384.Scale = Vector3.new(0.349999994, 1, 1)
  5050. SpecialMesh384.MeshType = Enum.MeshType.Brick
  5051. Part385.Parent = Model0
  5052. 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)
  5053. Part385.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  5054. Part385.Position = Vector3.new(-0.610497713, 3.13989329, -14.8064632)
  5055. Part385.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  5056. Part385.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5057. Part385.Velocity = Vector3.new(7.44344675e-08, 0.00246519689, 9.78148478e-07)
  5058. Part385.Size = Vector3.new(0.275000006, 0.618124902, 0.209375009)
  5059. Part385.Anchored = true
  5060. Part385.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5061. Part385.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5062. Part385.BrickColor = BrickColor.new("Really black")
  5063. Part385.CanCollide = false
  5064. Part385.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5065. Part385.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5066. Part385.Material = Enum.Material.Metal
  5067. Part385.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5068. Part385.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5069. Part385.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5070. Part385.brickColor = BrickColor.new("Really black")
  5071. SpecialMesh386.Parent = Part385
  5072. SpecialMesh386.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  5073. SpecialMesh386.MeshType = Enum.MeshType.Brick
  5074. Part387.Parent = Model0
  5075. 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)
  5076. Part387.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  5077. Part387.Position = Vector3.new(-0.611324251, 3.01513863, -13.8486776)
  5078. Part387.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  5079. Part387.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  5080. Part387.Velocity = Vector3.new(9.42162828e-08, 0.00246719248, 1.23810264e-06)
  5081. Part387.Size = Vector3.new(0.275000006, 0.200000003, 0.213375002)
  5082. Part387.Anchored = true
  5083. Part387.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5084. Part387.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5085. Part387.BrickColor = BrickColor.new("Bright blue")
  5086. Part387.CanCollide = false
  5087. Part387.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5088. Part387.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5089. Part387.Material = Enum.Material.Neon
  5090. Part387.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5091. Part387.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5092. Part387.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5093. Part387.brickColor = BrickColor.new("Bright blue")
  5094. SpecialMesh388.Parent = Part387
  5095. SpecialMesh388.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  5096. SpecialMesh388.MeshType = Enum.MeshType.Wedge
  5097. Part389.Parent = Model0
  5098. 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)
  5099. Part389.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5100. Part389.Position = Vector3.new(-0.615387738, 3.25427985, -11.9957829)
  5101. Part389.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5102. Part389.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5103. Part389.Velocity = Vector3.new(5.62967202e-08, 0.00247105281, 7.39798622e-07)
  5104. Part389.Size = Vector3.new(0.275000006, 0.206125051, 0.280375004)
  5105. Part389.Anchored = true
  5106. Part389.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5107. Part389.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5108. Part389.BrickColor = BrickColor.new("Really black")
  5109. Part389.CanCollide = false
  5110. Part389.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5111. Part389.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5112. Part389.Material = Enum.Material.Metal
  5113. Part389.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5114. Part389.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5115. Part389.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5116. Part389.brickColor = BrickColor.new("Really black")
  5117. SpecialMesh390.Parent = Part389
  5118. SpecialMesh390.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  5119. SpecialMesh390.MeshType = Enum.MeshType.Wedge
  5120. Part391.Parent = Model0
  5121. 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)
  5122. Part391.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5123. Part391.Position = Vector3.new(-0.614540219, 3.2634635, -12.5800533)
  5124. Part391.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5125. Part391.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5126. Part391.Velocity = Vector3.new(5.48404984e-08, 0.00246983557, 7.20662456e-07)
  5127. Part391.Size = Vector3.new(0.275000006, 0.405125052, 0.211375013)
  5128. Part391.Anchored = true
  5129. Part391.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5130. Part391.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5131. Part391.BrickColor = BrickColor.new("Really black")
  5132. Part391.CanCollide = false
  5133. Part391.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5134. Part391.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5135. Part391.Material = Enum.Material.Metal
  5136. Part391.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5137. Part391.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5138. Part391.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5139. Part391.brickColor = BrickColor.new("Really black")
  5140. SpecialMesh392.Parent = Part391
  5141. SpecialMesh392.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  5142. SpecialMesh392.MeshType = Enum.MeshType.Wedge
  5143. Part393.Parent = Model0
  5144. 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)
  5145. Part393.Orientation = Vector3.new(-61.079998, -0.620000005, -179.389999)
  5146. Part393.Position = Vector3.new(-0.608892262, 2.75060058, -14.5502081)
  5147. Part393.Rotation = Vector3.new(-61.0900002, -0.299999982, -179.929993)
  5148. Part393.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5149. Part393.Velocity = Vector3.new(1.36162924e-07, 0.00246573123, 1.78932657e-06)
  5150. Part393.Size = Vector3.new(0.275000006, 0.409124911, 0.268375039)
  5151. Part393.Anchored = true
  5152. Part393.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5153. Part393.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5154. Part393.BrickColor = BrickColor.new("Really black")
  5155. Part393.CanCollide = false
  5156. Part393.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5157. Part393.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5158. Part393.Material = Enum.Material.Metal
  5159. Part393.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5160. Part393.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5161. Part393.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5162. Part393.brickColor = BrickColor.new("Really black")
  5163. SpecialMesh394.Parent = Part393
  5164. SpecialMesh394.Scale = Vector3.new(0.349999994, 1, 1)
  5165. SpecialMesh394.MeshType = Enum.MeshType.Brick
  5166. Part395.Parent = Model0
  5167. 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)
  5168. Part395.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  5169. Part395.Position = Vector3.new(-0.606766462, 3.43472743, -18.2343674)
  5170. Part395.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  5171. Part395.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  5172. Part395.Velocity = Vector3.new(2.76838534e-08, 0.00245805481, 3.63795948e-07)
  5173. Part395.Size = Vector3.new(0.275000006, 1.04612494, 0.214375019)
  5174. Part395.Anchored = true
  5175. Part395.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5176. Part395.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5177. Part395.BrickColor = BrickColor.new("Bright blue")
  5178. Part395.CanCollide = false
  5179. Part395.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5180. Part395.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5181. Part395.Material = Enum.Material.Neon
  5182. Part395.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5183. Part395.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5184. Part395.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5185. Part395.brickColor = BrickColor.new("Bright blue")
  5186. SpecialMesh396.Parent = Part395
  5187. SpecialMesh396.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  5188. SpecialMesh396.MeshType = Enum.MeshType.Brick
  5189. Part397.Parent = Model0
  5190. 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)
  5191. Part397.Orientation = Vector3.new(-88.0599976, -8.81999969, 98.7399979)
  5192. Part397.Position = Vector3.new(-0.638540506, 2.9091177, -16.128315)
  5193. Part397.Rotation = Vector3.new(-88.0899963, -0.299999982, 89.9199982)
  5194. Part397.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5195. Part397.Velocity = Vector3.new(1.11027532e-07, 0.00246243807, 1.45902084e-06)
  5196. Part397.Size = Vector3.new(1.625, 0.200000003, 0.296375006)
  5197. Part397.Anchored = true
  5198. Part397.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5199. Part397.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5200. Part397.BrickColor = BrickColor.new("Royal purple")
  5201. Part397.CanCollide = false
  5202. Part397.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5203. Part397.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5204. Part397.Material = Enum.Material.Neon
  5205. Part397.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5206. Part397.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5207. Part397.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5208. Part397.brickColor = BrickColor.new("Royal purple")
  5209. SpecialMesh398.Parent = Part397
  5210. SpecialMesh398.Scale = Vector3.new(1, 0.300000012, 0.5)
  5211. SpecialMesh398.MeshType = Enum.MeshType.Wedge
  5212. Part399.Parent = Model0
  5213. 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)
  5214. Part399.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5215. Part399.Position = Vector3.new(-0.614644945, 3.60375571, -13.6545372)
  5216. Part399.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5217. Part399.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5218. Part399.Velocity = Vector3.new(8.81826168e-10, 0.00246759667, 1.1587872e-08)
  5219. Part399.Size = Vector3.new(0.275000006, 0.51412493, 0.622375011)
  5220. Part399.Anchored = true
  5221. Part399.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5222. Part399.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5223. Part399.BrickColor = BrickColor.new("Really black")
  5224. Part399.CanCollide = false
  5225. Part399.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5226. Part399.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5227. Part399.Material = Enum.Material.Metal
  5228. Part399.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5229. Part399.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5230. Part399.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5231. Part399.brickColor = BrickColor.new("Really black")
  5232. SpecialMesh400.Parent = Part399
  5233. SpecialMesh400.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  5234. SpecialMesh400.MeshType = Enum.MeshType.Brick
  5235. Part401.Parent = Model0
  5236. 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)
  5237. Part401.Orientation = Vector3.new(-67.659996, -179.369995, 89.2299957)
  5238. Part401.Position = Vector3.new(-0.577553451, 2.93009853, -15.210207)
  5239. Part401.Rotation = Vector3.new(-112.339996, -0.239999995, -90.1899948)
  5240. Part401.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5241. Part401.Velocity = Vector3.new(1.07700714e-07, 0.00246436079, 1.41530256e-06)
  5242. Part401.Size = Vector3.new(0.288000047, 0.200000003, 0.27837503)
  5243. Part401.Anchored = true
  5244. Part401.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5245. Part401.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5246. Part401.BrickColor = BrickColor.new("Royal purple")
  5247. Part401.CanCollide = false
  5248. Part401.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5249. Part401.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5250. Part401.Material = Enum.Material.Neon
  5251. Part401.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5252. Part401.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5253. Part401.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5254. Part401.brickColor = BrickColor.new("Royal purple")
  5255. SpecialMesh402.Parent = Part401
  5256. SpecialMesh402.Scale = Vector3.new(1, 0.300000012, 0.5)
  5257. SpecialMesh402.MeshType = Enum.MeshType.Wedge
  5258. Part403.Parent = Model0
  5259. 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)
  5260. Part403.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  5261. Part403.Position = Vector3.new(-0.610871017, 3.00987482, -14.1263742)
  5262. Part403.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  5263. Part403.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  5264. Part403.Velocity = Vector3.new(9.5050936e-08, 0.00246661413, 1.24907092e-06)
  5265. Part403.Size = Vector3.new(0.275000006, 0.207000002, 0.213375002)
  5266. Part403.Anchored = true
  5267. Part403.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5268. Part403.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5269. Part403.BrickColor = BrickColor.new("Bright blue")
  5270. Part403.CanCollide = false
  5271. Part403.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5272. Part403.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5273. Part403.Material = Enum.Material.Neon
  5274. Part403.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5275. Part403.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5276. Part403.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5277. Part403.brickColor = BrickColor.new("Bright blue")
  5278. SpecialMesh404.Parent = Part403
  5279. SpecialMesh404.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  5280. SpecialMesh404.MeshType = Enum.MeshType.Wedge
  5281. Part405.Parent = Model0
  5282. 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)
  5283. Part405.Orientation = Vector3.new(-88.0599976, -8.81999969, -81.2599945)
  5284. Part405.Position = Vector3.new(-0.576041341, 2.90943861, -16.1282196)
  5285. Part405.Rotation = Vector3.new(-88.0899963, -0.299999982, -90.0799942)
  5286. Part405.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5287. Part405.Velocity = Vector3.new(1.10976643e-07, 0.00246244832, 1.45835213e-06)
  5288. Part405.Size = Vector3.new(1.625, 0.200000003, 0.296375006)
  5289. Part405.Anchored = true
  5290. Part405.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5291. Part405.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5292. Part405.BrickColor = BrickColor.new("Royal purple")
  5293. Part405.CanCollide = false
  5294. Part405.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5295. Part405.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5296. Part405.Material = Enum.Material.Neon
  5297. Part405.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5298. Part405.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5299. Part405.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5300. Part405.brickColor = BrickColor.new("Royal purple")
  5301. SpecialMesh406.Parent = Part405
  5302. SpecialMesh406.Scale = Vector3.new(1, 0.300000012, 0.5)
  5303. SpecialMesh406.MeshType = Enum.MeshType.Wedge
  5304. Part407.Parent = Model0
  5305. 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)
  5306. Part407.Orientation = Vector3.new(-55.9099998, -179.649994, -0.529999971)
  5307. Part407.Position = Vector3.new(-0.61728102, 3.21630335, -10.6318092)
  5308. Part407.Rotation = Vector3.new(-124.089996, -0.189999998, 179.759995)
  5309. Part407.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  5310. Part407.Velocity = Vector3.new(6.23185059e-08, 0.00247389474, 8.18931142e-07)
  5311. Part407.Size = Vector3.new(0.200000003, 0.46875, 0.220999971)
  5312. Part407.Anchored = true
  5313. Part407.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5314. Part407.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5315. Part407.BrickColor = BrickColor.new("Bright blue")
  5316. Part407.CanCollide = false
  5317. Part407.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5318. Part407.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5319. Part407.Material = Enum.Material.Neon
  5320. Part407.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5321. Part407.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5322. Part407.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5323. Part407.brickColor = BrickColor.new("Bright blue")
  5324. SpecialMesh408.Parent = Part407
  5325. SpecialMesh408.Scale = Vector3.new(0.5, 1, 0.25)
  5326. SpecialMesh408.MeshType = Enum.MeshType.Brick
  5327. Part409.Parent = Model0
  5328. 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)
  5329. Part409.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5330. Part409.Position = Vector3.new(-0.612716079, 3.04616904, -13.0423889)
  5331. Part409.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5332. Part409.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5333. Part409.Velocity = Vector3.new(8.92959378e-08, 0.00246887235, 1.17344382e-06)
  5334. Part409.Size = Vector3.new(0.275000006, 0.35512504, 0.283374995)
  5335. Part409.Anchored = true
  5336. Part409.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5337. Part409.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5338. Part409.BrickColor = BrickColor.new("Really black")
  5339. Part409.CanCollide = false
  5340. Part409.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5341. Part409.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5342. Part409.Material = Enum.Material.Metal
  5343. Part409.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5344. Part409.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5345. Part409.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5346. Part409.brickColor = BrickColor.new("Really black")
  5347. SpecialMesh410.Parent = Part409
  5348. SpecialMesh410.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  5349. SpecialMesh410.MeshType = Enum.MeshType.Wedge
  5350. Part411.Parent = Model0
  5351. 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)
  5352. Part411.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  5353. Part411.Position = Vector3.new(-0.614045858, 3.38228369, -13.3029222)
  5354. Part411.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  5355. Part411.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5356. Part411.Velocity = Vector3.new(3.59996903e-08, 0.00246832939, 4.73074152e-07)
  5357. Part411.Size = Vector3.new(0.275000006, 0.204125047, 0.287375003)
  5358. Part411.Anchored = true
  5359. Part411.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5360. Part411.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5361. Part411.BrickColor = BrickColor.new("Really black")
  5362. Part411.CanCollide = false
  5363. Part411.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5364. Part411.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5365. Part411.Material = Enum.Material.Metal
  5366. Part411.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5367. Part411.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5368. Part411.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5369. Part411.brickColor = BrickColor.new("Really black")
  5370. SpecialMesh412.Parent = Part411
  5371. SpecialMesh412.Scale = Vector3.new(0.5, 0.5, 0.5)
  5372. SpecialMesh412.MeshType = Enum.MeshType.Wedge
  5373. Part413.Parent = Model0
  5374. 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)
  5375. Part413.Orientation = Vector3.new(-43.9099998, -179.800003, -0.409999996)
  5376. Part413.Position = Vector3.new(-0.609584808, 2.93011069, -14.6988583)
  5377. Part413.Rotation = Vector3.new(-136.089996, -0.140000001, 179.729996)
  5378. Part413.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5379. Part413.Velocity = Vector3.new(1.07698781e-07, 0.00246542133, 1.41527721e-06)
  5380. Part413.Size = Vector3.new(0.275000006, 0.484124899, 0.227375031)
  5381. Part413.Anchored = true
  5382. Part413.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5383. Part413.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5384. Part413.BrickColor = BrickColor.new("Really black")
  5385. Part413.CanCollide = false
  5386. Part413.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5387. Part413.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5388. Part413.Material = Enum.Material.Metal
  5389. Part413.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5390. Part413.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5391. Part413.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5392. Part413.brickColor = BrickColor.new("Really black")
  5393. SpecialMesh414.Parent = Part413
  5394. SpecialMesh414.Scale = Vector3.new(0.349999994, 0.300000012, 1)
  5395. SpecialMesh414.MeshType = Enum.MeshType.Brick
  5396. Part415.Parent = Model0
  5397. 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)
  5398. Part415.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  5399. Part415.Position = Vector3.new(-0.606956184, 3.40465999, -18.0096188)
  5400. Part415.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  5401. Part415.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5402. Part415.Velocity = Vector3.new(3.24515206e-08, 0.00245852303, 4.26448139e-07)
  5403. Part415.Size = Vector3.new(0.275000006, 1.46012485, 0.422374964)
  5404. Part415.Anchored = true
  5405. Part415.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5406. Part415.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5407. Part415.BrickColor = BrickColor.new("Really black")
  5408. Part415.CanCollide = false
  5409. Part415.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5410. Part415.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5411. Part415.Material = Enum.Material.Metal
  5412. Part415.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5413. Part415.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5414. Part415.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5415. Part415.brickColor = BrickColor.new("Really black")
  5416. SpecialMesh416.Parent = Part415
  5417. SpecialMesh416.Scale = Vector3.new(0.400000006, 1, 0.5)
  5418. SpecialMesh416.MeshType = Enum.MeshType.Brick
  5419. Part417.Parent = Model0
  5420. 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)
  5421. Part417.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5422. Part417.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  5423. Part417.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5424. Part417.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5425. Part417.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  5426. Part417.Size = Vector3.new(0.275000006, 0.320124894, 0.316374987)
  5427. Part417.Anchored = true
  5428. Part417.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5429. Part417.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5430. Part417.BrickColor = BrickColor.new("Royal purple")
  5431. Part417.CanCollide = false
  5432. Part417.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5433. Part417.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5434. Part417.Material = Enum.Material.Neon
  5435. Part417.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5436. Part417.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5437. Part417.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5438. Part417.brickColor = BrickColor.new("Royal purple")
  5439. SpecialMesh418.Parent = Part417
  5440. SpecialMesh418.Scale = Vector3.new(0.457500011, 1, 1)
  5441. SpecialMesh418.MeshType = Enum.MeshType.Cylinder
  5442. Part419.Parent = Model0
  5443. 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)
  5444. Part419.Orientation = Vector3.new(-76.0800018, -1.27999997, -178.779999)
  5445. Part419.Position = Vector3.new(-0.616606832, 3.19626212, -11.004673)
  5446. Part419.Rotation = Vector3.new(-76.0899963, -0.310000002, 179.98999)
  5447. Part419.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5448. Part419.Velocity = Vector3.new(6.54963515e-08, 0.00247311778, 8.606915e-07)
  5449. Part419.Size = Vector3.new(0.275000006, 0.418250024, 0.25)
  5450. Part419.Anchored = true
  5451. Part419.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5452. Part419.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5453. Part419.BrickColor = BrickColor.new("Really black")
  5454. Part419.CanCollide = false
  5455. Part419.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5456. Part419.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5457. Part419.Material = Enum.Material.Metal
  5458. Part419.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5459. Part419.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5460. Part419.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5461. Part419.brickColor = BrickColor.new("Really black")
  5462. SpecialMesh420.Parent = Part419
  5463. SpecialMesh420.Scale = Vector3.new(0.5, 1, 0.25)
  5464. SpecialMesh420.MeshType = Enum.MeshType.Brick
  5465. Part421.Parent = Model0
  5466. 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)
  5467. Part421.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  5468. Part421.Position = Vector3.new(-0.610599458, 3.09770298, -14.5984182)
  5469. Part421.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  5470. Part421.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5471. Part421.Velocity = Vector3.new(8.1124405e-08, 0.00246563042, 1.06606149e-06)
  5472. Part421.Size = Vector3.new(0.275000006, 0.200124964, 0.287375033)
  5473. Part421.Anchored = true
  5474. Part421.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5475. Part421.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5476. Part421.BrickColor = BrickColor.new("Institutional white")
  5477. Part421.CanCollide = false
  5478. Part421.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5479. Part421.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5480. Part421.Material = Enum.Material.Metal
  5481. Part421.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5482. Part421.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5483. Part421.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5484. Part421.brickColor = BrickColor.new("Institutional white")
  5485. SpecialMesh422.Parent = Part421
  5486. SpecialMesh422.Scale = Vector3.new(0.560000002, 1, 0.899999976)
  5487. SpecialMesh422.MeshType = Enum.MeshType.Wedge
  5488. Part423.Parent = Model0
  5489. 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)
  5490. Part423.Orientation = Vector3.new(-73.909996, -179.069992, -1.05999994)
  5491. Part423.Position = Vector3.new(-0.608857095, 2.56135106, -13.9388657)
  5492. Part423.Rotation = Vector3.new(-106.089996, -0.25999999, 179.830002)
  5493. Part423.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5494. Part423.Velocity = Vector3.new(1.66171404e-07, 0.00246700505, 2.18366995e-06)
  5495. Part423.Size = Vector3.new(0.275000006, 0.409124941, 0.360375017)
  5496. Part423.Anchored = true
  5497. Part423.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5498. Part423.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5499. Part423.BrickColor = BrickColor.new("Really black")
  5500. Part423.CanCollide = false
  5501. Part423.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5502. Part423.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5503. Part423.Material = Enum.Material.Metal
  5504. Part423.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5505. Part423.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5506. Part423.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5507. Part423.brickColor = BrickColor.new("Really black")
  5508. SpecialMesh424.Parent = Part423
  5509. SpecialMesh424.Scale = Vector3.new(0.349999994, 1, 1)
  5510. SpecialMesh424.MeshType = Enum.MeshType.Brick
  5511. Part425.Parent = Model0
  5512. 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)
  5513. Part425.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5514. Part425.Position = Vector3.new(-0.610883415, 2.94288707, -13.8941879)
  5515. Part425.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5516. Part425.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5517. Part425.Velocity = Vector3.new(1.05672896e-07, 0.00246709795, 1.38865482e-06)
  5518. Part425.Size = Vector3.new(0.275000006, 0.228, 0.213375002)
  5519. Part425.Anchored = true
  5520. Part425.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5521. Part425.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5522. Part425.BrickColor = BrickColor.new("Really black")
  5523. Part425.CanCollide = false
  5524. Part425.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5525. Part425.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5526. Part425.Material = Enum.Material.Metal
  5527. Part425.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5528. Part425.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5529. Part425.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5530. Part425.brickColor = BrickColor.new("Really black")
  5531. SpecialMesh426.Parent = Part425
  5532. SpecialMesh426.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  5533. SpecialMesh426.MeshType = Enum.MeshType.Wedge
  5534. Part427.Parent = Model0
  5535. 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)
  5536. Part427.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5537. Part427.Position = Vector3.new(-0.612252593, 3.11727381, -13.584939)
  5538. Part427.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5539. Part427.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5540. Part427.Velocity = Vector3.new(7.80211593e-08, 0.00246774196, 1.02528122e-06)
  5541. Part427.Size = Vector3.new(0.275000006, 0.398124993, 0.303375006)
  5542. Part427.Anchored = true
  5543. Part427.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5544. Part427.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5545. Part427.BrickColor = BrickColor.new("Really black")
  5546. Part427.CanCollide = false
  5547. Part427.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5548. Part427.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5549. Part427.Material = Enum.Material.Metal
  5550. Part427.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5551. Part427.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5552. Part427.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5553. Part427.brickColor = BrickColor.new("Really black")
  5554. SpecialMesh428.Parent = Part427
  5555. SpecialMesh428.Scale = Vector3.new(0.5, 1, 1)
  5556. SpecialMesh428.MeshType = Enum.MeshType.Brick
  5557. Part429.Parent = Model0
  5558. 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)
  5559. Part429.Orientation = Vector3.new(-43.9099998, -179.800003, 179.589996)
  5560. Part429.Position = Vector3.new(-0.612551332, 3.35195827, -14.1766062)
  5561. Part429.Rotation = Vector3.new(-136.089996, -0.140000001, -0.269999981)
  5562. Part429.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5563. Part429.Velocity = Vector3.new(4.08082492e-08, 0.00246650912, 5.36263883e-07)
  5564. Part429.Size = Vector3.new(0.275000006, 0.331124961, 0.412375003)
  5565. Part429.Anchored = true
  5566. Part429.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5567. Part429.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5568. Part429.BrickColor = BrickColor.new("Really black")
  5569. Part429.CanCollide = false
  5570. Part429.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5571. Part429.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5572. Part429.Material = Enum.Material.Metal
  5573. Part429.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5574. Part429.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5575. Part429.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5576. Part429.brickColor = BrickColor.new("Really black")
  5577. SpecialMesh430.Parent = Part429
  5578. SpecialMesh430.Scale = Vector3.new(0.5, 1.04999995, 0.5)
  5579. SpecialMesh430.MeshType = Enum.MeshType.Brick
  5580. Part431.Parent = Model0
  5581. 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)
  5582. Part431.Orientation = Vector3.new(-43.9099998, -179.800003, 89.5899963)
  5583. Part431.Position = Vector3.new(-0.578086436, 2.53643656, -13.5418949)
  5584. Part431.Rotation = Vector3.new(-136.089996, -0.140000001, -90.2699966)
  5585. Part431.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5586. Part431.Velocity = Vector3.new(1.70122007e-07, 0.00246783718, 2.23558482e-06)
  5587. Part431.Size = Vector3.new(0.421999991, 0.200000003, 0.280375004)
  5588. Part431.Anchored = true
  5589. Part431.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5590. Part431.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5591. Part431.BrickColor = BrickColor.new("Royal purple")
  5592. Part431.CanCollide = false
  5593. Part431.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5594. Part431.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5595. Part431.Material = Enum.Material.Neon
  5596. Part431.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5597. Part431.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5598. Part431.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5599. Part431.brickColor = BrickColor.new("Royal purple")
  5600. SpecialMesh432.Parent = Part431
  5601. SpecialMesh432.Scale = Vector3.new(1, 0.300000012, 0.5)
  5602. SpecialMesh432.MeshType = Enum.MeshType.Wedge
  5603. Part433.Parent = Model0
  5604. 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)
  5605. Part433.Orientation = Vector3.new(88.8799973, 15.0799999, 105.169998)
  5606. Part433.Position = Vector3.new(-0.647041559, 3.82817221, -13.658843)
  5607. Part433.Rotation = Vector3.new(88.909996, 0.289999992, 90.0899963)
  5608. Part433.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5609. Part433.Velocity = Vector3.new(-3.47029321e-08, 0.00246758247, -4.56033831e-07)
  5610. Part433.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  5611. Part433.Anchored = true
  5612. Part433.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5613. Part433.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5614. Part433.BrickColor = BrickColor.new("Royal purple")
  5615. Part433.CanCollide = false
  5616. Part433.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5617. Part433.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5618. Part433.Material = Enum.Material.Neon
  5619. Part433.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5620. Part433.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5621. Part433.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5622. Part433.brickColor = BrickColor.new("Royal purple")
  5623. SpecialMesh434.Parent = Part433
  5624. SpecialMesh434.Scale = Vector3.new(1, 0.300000012, 0.5)
  5625. SpecialMesh434.MeshType = Enum.MeshType.Wedge
  5626. Part435.Parent = Model0
  5627. 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)
  5628. Part435.Orientation = Vector3.new(-66.409996, -179.409988, 179.259995)
  5629. Part435.Position = Vector3.new(-0.610847712, 3.10699439, -14.4674244)
  5630. Part435.Rotation = Vector3.new(-113.589996, -0.229999989, -0.199999988)
  5631. Part435.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5632. Part435.Velocity = Vector3.new(7.96511017e-08, 0.00246590329, 1.04670062e-06)
  5633. Part435.Size = Vector3.new(0.275000006, 0.23712492, 0.375375003)
  5634. Part435.Anchored = true
  5635. Part435.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5636. Part435.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5637. Part435.BrickColor = BrickColor.new("Royal purple")
  5638. Part435.CanCollide = false
  5639. Part435.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5640. Part435.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5641. Part435.Material = Enum.Material.Neon
  5642. Part435.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5643. Part435.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5644. Part435.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5645. Part435.brickColor = BrickColor.new("Royal purple")
  5646. SpecialMesh436.Parent = Part435
  5647. SpecialMesh436.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  5648. SpecialMesh436.MeshType = Enum.MeshType.Brick
  5649. Part437.Parent = Model0
  5650. 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)
  5651. Part437.Orientation = Vector3.new(43.9099998, 0.199999988, -89.5899963)
  5652. Part437.Position = Vector3.new(-0.583012402, 3.6639781, -14.1030874)
  5653. Part437.Rotation = Vector3.new(43.9099998, 0.140000001, -89.7299957)
  5654. Part437.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5655. Part437.Velocity = Vector3.new(-8.66738503e-09, 0.00246666698, -1.13898864e-07)
  5656. Part437.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  5657. Part437.Anchored = true
  5658. Part437.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5659. Part437.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5660. Part437.BrickColor = BrickColor.new("Royal purple")
  5661. Part437.CanCollide = false
  5662. Part437.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5663. Part437.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5664. Part437.Material = Enum.Material.Neon
  5665. Part437.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5666. Part437.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5667. Part437.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5668. Part437.brickColor = BrickColor.new("Royal purple")
  5669. SpecialMesh438.Parent = Part437
  5670. SpecialMesh438.Scale = Vector3.new(1, 0.300000012, 0.5)
  5671. SpecialMesh438.MeshType = Enum.MeshType.Wedge
  5672. Part439.Parent = Model0
  5673. 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)
  5674. Part439.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5675. Part439.Position = Vector3.new(-0.609243929, 2.84955072, -14.6524963)
  5676. Part439.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5677. Part439.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5678. Part439.Velocity = Vector3.new(1.20472833e-07, 0.00246551796, 1.58314185e-06)
  5679. Part439.Size = Vector3.new(0.275000006, 0.287124902, 0.227375031)
  5680. Part439.Anchored = true
  5681. Part439.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5682. Part439.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5683. Part439.BrickColor = BrickColor.new("Really black")
  5684. Part439.CanCollide = false
  5685. Part439.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5686. Part439.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5687. Part439.Material = Enum.Material.Metal
  5688. Part439.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5689. Part439.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5690. Part439.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5691. Part439.brickColor = BrickColor.new("Really black")
  5692. SpecialMesh440.Parent = Part439
  5693. SpecialMesh440.Scale = Vector3.new(0.349999994, 1, 1)
  5694. SpecialMesh440.MeshType = Enum.MeshType.Brick
  5695. Part441.Parent = Model0
  5696. 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)
  5697. Part441.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5698. Part441.Position = Vector3.new(-0.610548377, 2.83942795, -13.765955)
  5699. Part441.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5700. Part441.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5701. Part441.Velocity = Vector3.new(1.22077964e-07, 0.002467365, 1.60423497e-06)
  5702. Part441.Size = Vector3.new(0.275000006, 0.304124922, 0.267374992)
  5703. Part441.Anchored = true
  5704. Part441.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5705. Part441.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5706. Part441.BrickColor = BrickColor.new("Really black")
  5707. Part441.CanCollide = false
  5708. Part441.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5709. Part441.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5710. Part441.Material = Enum.Material.Metal
  5711. Part441.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5712. Part441.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5713. Part441.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5714. Part441.brickColor = BrickColor.new("Really black")
  5715. SpecialMesh442.Parent = Part441
  5716. SpecialMesh442.Scale = Vector3.new(0.495000005, 1, 1)
  5717. SpecialMesh442.MeshType = Enum.MeshType.Wedge
  5718. Part443.Parent = Model0
  5719. 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)
  5720. Part443.Orientation = Vector3.new(88.8799973, 15.0799999, -74.8300018)
  5721. Part443.Position = Vector3.new(-0.584542513, 3.82849336, -13.6587467)
  5722. Part443.Rotation = Vector3.new(88.909996, 0.289999992, -89.909996)
  5723. Part443.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5724. Part443.Velocity = Vector3.new(-3.47538496e-08, 0.00246759271, -4.56702992e-07)
  5725. Part443.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  5726. Part443.Anchored = true
  5727. Part443.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5728. Part443.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5729. Part443.BrickColor = BrickColor.new("Royal purple")
  5730. Part443.CanCollide = false
  5731. Part443.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5732. Part443.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5733. Part443.Material = Enum.Material.Neon
  5734. Part443.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5735. Part443.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5736. Part443.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5737. Part443.brickColor = BrickColor.new("Royal purple")
  5738. SpecialMesh444.Parent = Part443
  5739. SpecialMesh444.Scale = Vector3.new(1, 0.300000012, 0.5)
  5740. SpecialMesh444.MeshType = Enum.MeshType.Wedge
  5741. Part445.Parent = Model0
  5742. 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)
  5743. Part445.Orientation = Vector3.new(78.909996, 1.40999997, 1.52999997)
  5744. Part445.Position = Vector3.new(-0.618139863, 3.39627433, -10.6743059)
  5745. Part445.Rotation = Vector3.new(78.909996, 0.269999981, 0.140000001)
  5746. Part445.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5747. Part445.Velocity = Vector3.new(3.37812835e-08, 0.00247380603, 4.43921522e-07)
  5748. Part445.Size = Vector3.new(0.275000006, 0.28125, 0.234375)
  5749. Part445.Anchored = true
  5750. Part445.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5751. Part445.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5752. Part445.BrickColor = BrickColor.new("Really black")
  5753. Part445.CanCollide = false
  5754. Part445.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5755. Part445.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5756. Part445.Material = Enum.Material.Metal
  5757. Part445.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5758. Part445.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5759. Part445.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5760. Part445.brickColor = BrickColor.new("Really black")
  5761. SpecialMesh446.Parent = Part445
  5762. SpecialMesh446.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  5763. SpecialMesh446.MeshType = Enum.MeshType.Brick
  5764. Part447.Parent = Model0
  5765. 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)
  5766. Part447.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5767. Part447.Position = Vector3.new(-0.612165928, 3.04279852, -13.3917465)
  5768. Part447.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5769. Part447.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5770. Part447.Velocity = Vector3.new(8.98303796e-08, 0.00246814452, 1.18046705e-06)
  5771. Part447.Size = Vector3.new(0.275000006, 0.577124953, 0.303375006)
  5772. Part447.Anchored = true
  5773. Part447.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5774. Part447.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5775. Part447.BrickColor = BrickColor.new("Really black")
  5776. Part447.CanCollide = false
  5777. Part447.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5778. Part447.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5779. Part447.Material = Enum.Material.Metal
  5780. Part447.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5781. Part447.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5782. Part447.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5783. Part447.brickColor = BrickColor.new("Really black")
  5784. SpecialMesh448.Parent = Part447
  5785. SpecialMesh448.Scale = Vector3.new(0.400000006, 0.870000005, 0.5)
  5786. SpecialMesh448.MeshType = Enum.MeshType.Brick
  5787. Part449.Parent = Model0
  5788. 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)
  5789. Part449.Orientation = Vector3.new(-61.079998, -0.620000005, -89.3899994)
  5790. Part449.Position = Vector3.new(-0.576728344, 2.5984447, -14.6364422)
  5791. Part449.Rotation = Vector3.new(-61.0900002, -0.299999982, -89.9300003)
  5792. Part449.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5793. Part449.Velocity = Vector3.new(1.6028963e-07, 0.00246555661, 2.10637722e-06)
  5794. Part449.Size = Vector3.new(0.423000038, 0.200000003, 0.280375004)
  5795. Part449.Anchored = true
  5796. Part449.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5797. Part449.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5798. Part449.BrickColor = BrickColor.new("Royal purple")
  5799. Part449.CanCollide = false
  5800. Part449.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5801. Part449.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5802. Part449.Material = Enum.Material.Neon
  5803. Part449.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5804. Part449.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5805. Part449.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5806. Part449.brickColor = BrickColor.new("Royal purple")
  5807. SpecialMesh450.Parent = Part449
  5808. SpecialMesh450.Scale = Vector3.new(1, 0.300000012, 0.5)
  5809. SpecialMesh450.MeshType = Enum.MeshType.Wedge
  5810. Part451.Parent = Model0
  5811. 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)
  5812. Part451.Orientation = Vector3.new(76.0800018, 178.720001, -1.22000003)
  5813. Part451.Position = Vector3.new(-0.611472607, 3.24456573, -14.520874)
  5814. Part451.Rotation = Vector3.new(103.909996, 0.310000002, -179.98999)
  5815. Part451.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5816. Part451.Velocity = Vector3.new(5.78370134e-08, 0.002465792, 7.60040166e-07)
  5817. Part451.Size = Vector3.new(0.275000006, 0.221124932, 0.408374965)
  5818. Part451.Anchored = true
  5819. Part451.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5820. Part451.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5821. Part451.BrickColor = BrickColor.new("Really black")
  5822. Part451.CanCollide = false
  5823. Part451.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5824. Part451.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5825. Part451.Material = Enum.Material.Metal
  5826. Part451.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5827. Part451.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5828. Part451.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5829. Part451.brickColor = BrickColor.new("Really black")
  5830. SpecialMesh452.Parent = Part451
  5831. SpecialMesh452.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  5832. SpecialMesh452.MeshType = Enum.MeshType.Brick
  5833. Part453.Parent = Model0
  5834. 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)
  5835. Part453.Orientation = Vector3.new(-73.909996, -179.069992, 178.940002)
  5836. Part453.Position = Vector3.new(-0.610993803, 3.15083313, -14.5190973)
  5837. Part453.Rotation = Vector3.new(-106.089996, -0.25999999, -0.170000002)
  5838. Part453.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5839. Part453.Velocity = Vector3.new(7.26997911e-08, 0.00246579573, 9.55352903e-07)
  5840. Part453.Size = Vector3.new(0.275000006, 0.221124932, 0.408374965)
  5841. Part453.Anchored = true
  5842. Part453.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5843. Part453.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5844. Part453.BrickColor = BrickColor.new("Really black")
  5845. Part453.CanCollide = false
  5846. Part453.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5847. Part453.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5848. Part453.Material = Enum.Material.Metal
  5849. Part453.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5850. Part453.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5851. Part453.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5852. Part453.brickColor = BrickColor.new("Really black")
  5853. SpecialMesh454.Parent = Part453
  5854. SpecialMesh454.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  5855. SpecialMesh454.MeshType = Enum.MeshType.Brick
  5856. Part455.Parent = Model0
  5857. 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)
  5858. Part455.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5859. Part455.Position = Vector3.new(-0.609657764, 2.72515392, -13.9643335)
  5860. Part455.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5861. Part455.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5862. Part455.Velocity = Vector3.new(1.40197898e-07, 0.00246695196, 1.84235034e-06)
  5863. Part455.Size = Vector3.new(0.275000006, 0.330124915, 0.226374999)
  5864. Part455.Anchored = true
  5865. Part455.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5866. Part455.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5867. Part455.BrickColor = BrickColor.new("Really black")
  5868. Part455.CanCollide = false
  5869. Part455.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5870. Part455.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5871. Part455.Material = Enum.Material.Glass
  5872. Part455.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5873. Part455.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5874. Part455.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5875. Part455.brickColor = BrickColor.new("Really black")
  5876. SpecialMesh456.Parent = Part455
  5877. SpecialMesh456.Scale = Vector3.new(0.400000006, 1, 1)
  5878. SpecialMesh456.MeshType = Enum.MeshType.Brick
  5879. Part457.Parent = Model0
  5880. 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)
  5881. Part457.Orientation = Vector3.new(-31.0900002, -0.269999981, -89.659996)
  5882. Part457.Position = Vector3.new(-0.577368915, 2.78939152, -14.8586674)
  5883. Part457.Rotation = Vector3.new(-31.0900002, -0.229999989, -89.7900009)
  5884. Part457.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5885. Part457.Velocity = Vector3.new(1.30012012e-07, 0.00246509351, 1.70849694e-06)
  5886. Part457.Size = Vector3.new(0.293000042, 0.200000003, 0.280375004)
  5887. Part457.Anchored = true
  5888. Part457.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5889. Part457.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5890. Part457.BrickColor = BrickColor.new("Royal purple")
  5891. Part457.CanCollide = false
  5892. Part457.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5893. Part457.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5894. Part457.Material = Enum.Material.Neon
  5895. Part457.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5896. Part457.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5897. Part457.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5898. Part457.brickColor = BrickColor.new("Royal purple")
  5899. SpecialMesh458.Parent = Part457
  5900. SpecialMesh458.Scale = Vector3.new(1, 0.300000012, 0.5)
  5901. SpecialMesh458.MeshType = Enum.MeshType.Wedge
  5902. Part459.Parent = Model0
  5903. 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)
  5904. Part459.Orientation = Vector3.new(68.5800018, 179.159988, -0.810000002)
  5905. Part459.Position = Vector3.new(-0.611768007, 3.29040194, -14.4816895)
  5906. Part459.Rotation = Vector3.new(111.409996, 0.310000002, 179.970001)
  5907. Part459.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5908. Part459.Velocity = Vector3.new(5.05689677e-08, 0.00246587349, 6.64530262e-07)
  5909. Part459.Size = Vector3.new(0.275000006, 0.238124937, 0.381375015)
  5910. Part459.Anchored = true
  5911. Part459.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5912. Part459.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5913. Part459.BrickColor = BrickColor.new("Royal purple")
  5914. Part459.CanCollide = false
  5915. Part459.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5916. Part459.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5917. Part459.Material = Enum.Material.Neon
  5918. Part459.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5919. Part459.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5920. Part459.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5921. Part459.brickColor = BrickColor.new("Royal purple")
  5922. SpecialMesh460.Parent = Part459
  5923. SpecialMesh460.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  5924. SpecialMesh460.MeshType = Enum.MeshType.Brick
  5925. Part461.Parent = Model0
  5926. 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)
  5927. Part461.Orientation = Vector3.new(44.4099998, 0.199999988, -179.589996)
  5928. Part461.Position = Vector3.new(-0.605971158, 3.45052385, -18.8064079)
  5929. Part461.Rotation = Vector3.new(44.4099998, 0.140000001, -179.729996)
  5930. Part461.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5931. Part461.Velocity = Vector3.new(2.51790748e-08, 0.00245686295, 3.30880596e-07)
  5932. Part461.Size = Vector3.new(0.275000006, 0.235124931, 0.586375237)
  5933. Part461.Anchored = true
  5934. Part461.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5935. Part461.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5936. Part461.BrickColor = BrickColor.new("Really black")
  5937. Part461.CanCollide = false
  5938. Part461.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5939. Part461.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5940. Part461.Material = Enum.Material.Metal
  5941. Part461.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5942. Part461.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5943. Part461.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5944. Part461.brickColor = BrickColor.new("Really black")
  5945. SpecialMesh462.Parent = Part461
  5946. SpecialMesh462.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  5947. SpecialMesh462.MeshType = Enum.MeshType.Brick
  5948. Part463.Parent = Model0
  5949. 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)
  5950. Part463.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5951. Part463.Position = Vector3.new(-0.610880256, 2.96906447, -13.9840736)
  5952. Part463.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5953. Part463.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5954. Part463.Velocity = Vector3.new(1.01522062e-07, 0.00246691052, 1.33410845e-06)
  5955. Part463.Size = Vector3.new(0.275000006, 0.239124984, 0.303375006)
  5956. Part463.Anchored = true
  5957. Part463.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5958. Part463.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5959. Part463.BrickColor = BrickColor.new("Really black")
  5960. Part463.CanCollide = false
  5961. Part463.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5962. Part463.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5963. Part463.Material = Enum.Material.Glass
  5964. Part463.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5965. Part463.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5966. Part463.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5967. Part463.brickColor = BrickColor.new("Really black")
  5968. SpecialMesh464.Parent = Part463
  5969. SpecialMesh464.Scale = Vector3.new(0.524999976, 1, 1)
  5970. SpecialMesh464.MeshType = Enum.MeshType.Brick
  5971. Part465.Parent = Model0
  5972. 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)
  5973. Part465.Orientation = Vector3.new(-61.079998, -0.620000005, 90.6100006)
  5974. Part465.Position = Vector3.new(-0.63922745, 2.59812379, -14.6365376)
  5975. Part465.Rotation = Vector3.new(-61.0900002, -0.299999982, 90.0699997)
  5976. Part465.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5977. Part465.Velocity = Vector3.new(1.6034052e-07, 0.0024655466, 2.10704593e-06)
  5978. Part465.Size = Vector3.new(0.423000038, 0.200000003, 0.280375004)
  5979. Part465.Anchored = true
  5980. Part465.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5981. Part465.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5982. Part465.BrickColor = BrickColor.new("Royal purple")
  5983. Part465.CanCollide = false
  5984. Part465.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5985. Part465.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5986. Part465.Material = Enum.Material.Neon
  5987. Part465.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5988. Part465.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5989. Part465.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5990. Part465.brickColor = BrickColor.new("Royal purple")
  5991. SpecialMesh466.Parent = Part465
  5992. SpecialMesh466.Scale = Vector3.new(1, 0.300000012, 0.5)
  5993. SpecialMesh466.MeshType = Enum.MeshType.Wedge
  5994. Part467.Parent = Model0
  5995. 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)
  5996. Part467.Orientation = Vector3.new(-31.0900002, -0.269999981, 90.3399963)
  5997. Part467.Position = Vector3.new(-0.63986814, 2.78907037, -14.8587627)
  5998. Part467.Rotation = Vector3.new(-31.0900002, -0.229999989, 90.2099991)
  5999. Part467.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6000. Part467.Velocity = Vector3.new(1.30062929e-07, 0.00246508326, 1.70916621e-06)
  6001. Part467.Size = Vector3.new(0.293000042, 0.200000003, 0.280375004)
  6002. Part467.Anchored = true
  6003. Part467.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6004. Part467.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6005. Part467.BrickColor = BrickColor.new("Royal purple")
  6006. Part467.CanCollide = false
  6007. Part467.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6008. Part467.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6009. Part467.Material = Enum.Material.Neon
  6010. Part467.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6011. Part467.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6012. Part467.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6013. Part467.brickColor = BrickColor.new("Royal purple")
  6014. SpecialMesh468.Parent = Part467
  6015. SpecialMesh468.Scale = Vector3.new(1, 0.300000012, 0.5)
  6016. SpecialMesh468.MeshType = Enum.MeshType.Wedge
  6017. Part469.Parent = Model0
  6018. 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)
  6019. Part469.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  6020. Part469.Position = Vector3.new(-0.610184669, 2.95239902, -14.3818283)
  6021. Part469.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  6022. Part469.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6023. Part469.Velocity = Vector3.new(1.04164627e-07, 0.00246608187, 1.36883455e-06)
  6024. Part469.Size = Vector3.new(0.275000006, 0.410999984, 0.469375014)
  6025. Part469.Anchored = true
  6026. Part469.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6027. Part469.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6028. Part469.BrickColor = BrickColor.new("Really black")
  6029. Part469.CanCollide = false
  6030. Part469.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6031. Part469.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6032. Part469.Material = Enum.Material.Glass
  6033. Part469.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6034. Part469.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6035. Part469.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6036. Part469.brickColor = BrickColor.new("Really black")
  6037. SpecialMesh470.Parent = Part469
  6038. SpecialMesh470.Scale = Vector3.new(0.5, 0.850000024, 0.699999988)
  6039. SpecialMesh470.MeshType = Enum.MeshType.Brick
  6040. Part471.Parent = Model0
  6041. 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)
  6042. Part471.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  6043. Part471.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  6044. Part471.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  6045. Part471.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6046. Part471.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  6047. Part471.Size = Vector3.new(0.275000006, 0.698124886, 0.638374984)
  6048. Part471.Anchored = true
  6049. Part471.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6050. Part471.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6051. Part471.BrickColor = BrickColor.new("Really black")
  6052. Part471.CanCollide = false
  6053. Part471.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6054. Part471.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6055. Part471.Material = Enum.Material.Glass
  6056. Part471.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6057. Part471.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6058. Part471.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6059. Part471.brickColor = BrickColor.new("Really black")
  6060.  
  6061. game:GetService("Players").LocalPlayer.Character["SamuraiHat"].Handle.att1_Handle.Parent = Part471
  6062. Part471.att1_Handle.Rotation = Vector3.new(-270,-90,-990)
  6063. Part471.att1_Handle.Position = Vector3.new(0,-4,0)
  6064.  
  6065. SpecialMesh472.Parent = Part471
  6066. SpecialMesh472.Scale = Vector3.new(0.449999988, 1, 1)
  6067. SpecialMesh472.MeshType = Enum.MeshType.Cylinder
  6068. Part473.Parent = Model0
  6069. 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)
  6070. Part473.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  6071. Part473.Position = Vector3.new(-0.618369102, 3.23987865, -11.0925436)
  6072. Part473.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  6073. Part473.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6074. Part473.Velocity = Vector3.new(5.85802624e-08, 0.00247293455, 7.69806775e-07)
  6075. Part473.Size = Vector3.new(0.25999999, 0.578125, 0.21875)
  6076. Part473.Anchored = true
  6077. Part473.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6078. Part473.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6079. Part473.BrickColor = BrickColor.new("Really black")
  6080. Part473.CanCollide = false
  6081. Part473.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6082. Part473.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6083. Part473.Material = Enum.Material.Metal
  6084. Part473.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6085. Part473.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6086. Part473.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6087. Part473.brickColor = BrickColor.new("Really black")
  6088.  
  6089. game:GetService("Players").LocalPlayer.Character["PogoStick"].Handle.att1_Handle.Parent = Part473
  6090. Part473.att1_Handle.Rotation = Vector3.new(-90,90,-50)
  6091. Part473.att1_Handle.Position = Vector3.new(0,2,0.3)
  6092.  
  6093. SpecialMesh474.Parent = Part473
  6094. SpecialMesh474.Scale = Vector3.new(0.300000012, 1, 1)
  6095. SpecialMesh474.MeshType = Enum.MeshType.Wedge
  6096. Part475.Name = "TrueHandle"
  6097. Part475.Parent = Model0
  6098. 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)
  6099. Part475.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  6100. Part475.Position = Vector3.new(-0.615642607, 3.34541011, -12.1349049)
  6101. Part475.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  6102. Part475.Color = Color3.new(0.803922, 0.803922, 0.803922)
  6103. Part475.Velocity = Vector3.new(4.18465866e-08, 0.00247076293, 5.49908464e-07)
  6104. Part475.Size = Vector3.new(0.275000006, 1.73512506, 0.280375004)
  6105. Part475.Anchored = true
  6106. Part475.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6107. Part475.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6108. Part475.BrickColor = BrickColor.new("Mid gray")
  6109. Part475.CanCollide = false
  6110. Part475.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6111. Part475.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6112. Part475.Material = Enum.Material.Metal
  6113. Part475.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6114. Part475.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  6115. Part475.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6116. Part475.brickColor = BrickColor.new("Mid gray")
  6117.  
  6118. game:GetService("Players").LocalPlayer.Character["Surfboard"].Handle.att1_Handle.Parent = Part475
  6119. Part475.att1_Handle.Rotation = Vector3.new(-90,0,90)
  6120. Part475.att1_Handle.Position = Vector3.new(0,-4,0)
  6121.  
  6122. SpecialMesh476.Parent = Part475
  6123. SpecialMesh476.Scale = Vector3.new(0.349999994, 1.04999995, 0.5)
  6124. SpecialMesh476.MeshType = Enum.MeshType.Brick
  6125.  
  6126.  
  6127. for i,v in pairs(mas:GetChildren()) do
  6128. v.Parent = game:GetService("Players").LocalPlayer.Character
  6129. pcall(function() v:MakeJoints() end)
  6130. end
  6131. mas:Destroy()
  6132. for i,v in pairs(cors) do
  6133. spawn(function()
  6134. pcall(v)
  6135. end)
  6136. end
  6137. for i,v in pairs(Model0:GetChildren()) do
  6138. if v:IsA("Part") then
  6139. v.Locked = true
  6140. v.Anchored = false
  6141. v.CanCollide = false
  6142. end
  6143. end
  6144.  
  6145.  
  6146. plr = game:GetService("Players").LocalPlayer
  6147. char = plr.Character
  6148. hum = char.Humanoid
  6149. local cam = game.Workspace.CurrentCamera
  6150. t = char.Torso
  6151. h = char.Head
  6152. ra = char["Right Arm"]
  6153. la = char["Left Arm"]
  6154. rl = char["Right Leg"]
  6155. ll = char["Left Leg"]
  6156. tors = char.Torso
  6157. lleg = char["Left Leg"]
  6158. root = char.HumanoidRootPart
  6159. hed = char.Head
  6160. rleg = char["Right Leg"]
  6161. rarm = char["Right Arm"]
  6162. larm = char["Left Arm"]
  6163. it = Instance.new
  6164. vt = Vector3.new
  6165. bc = BrickColor.new
  6166. br = BrickColor.random
  6167. it = Instance.new
  6168. cf = CFrame.new
  6169. ceuler = CFrame.fromEulerAnglesXYZ
  6170.  
  6171. local muter = false
  6172. local ORGID = 1873219898
  6173. local ORVOL = 1.15
  6174. local ORPIT = 1.01
  6175. local kan = Instance.new("Sound",plr.PlayerGui)
  6176. kan.Volume = 1.15
  6177. kan.TimePosition = 0
  6178. kan.PlaybackSpeed = 1.01
  6179. kan.Pitch = 1.01
  6180. kan.SoundId = "rbxassetid://1873219898" --525289865,1873219898,381991270
  6181. kan.Name = "nepnepnep"
  6182. kan.Looped = true
  6183. kan:Play()
  6184.  
  6185. --------------------------- GUI STUFF
  6186. local basgui = it("GuiMain")
  6187. basgui.Parent = plr.PlayerGui
  6188. basgui.Name = "VISgui"
  6189. local fullscreenz = it("Frame")
  6190. fullscreenz.Parent = basgui
  6191. fullscreenz.BackgroundColor3 = Color3.new(255, 255, 255)
  6192. fullscreenz.BackgroundTransparency = 1
  6193. fullscreenz.BorderColor3 = Color3.new(17, 17, 17)
  6194. fullscreenz.Size = UDim2.new(1, 0, 1, 0)
  6195. fullscreenz.Position = UDim2.new(0, 0, 0, 0)
  6196. local imgl2 = Instance.new("ImageLabel",fullscreenz)
  6197. imgl2.BackgroundTransparency = 1
  6198. imgl2.BorderSizePixel = 0
  6199. imgl2.ImageTransparency = 0.5
  6200. imgl2.ImageColor3 = Color3.new(1,0,0)
  6201. imgl2.Position = UDim2.new(0.75,0,0.55,0)
  6202. imgl2.Size = UDim2.new(0,600,0,600)
  6203. imgl2.Image = "rbxassetid://320731120"
  6204. local techc = imgl2:Clone()
  6205. techc.Parent = fullscreenz
  6206. techc.ImageTransparency = 0.5
  6207. techc.Size = UDim2.new(0,700,0,700)
  6208. techc.Position = UDim2.new(0.75,-50,0.55,-50)
  6209. techc.ImageColor3 = Color3.new(0.5,0,1)
  6210. techc.Image = "rbxassetid://521073910"
  6211. local circl = imgl2:Clone()
  6212. circl.Parent = fullscreenz
  6213. circl.ImageTransparency = 0
  6214. circl.Size = UDim2.new(0,500,0,500)
  6215. circl.Position = UDim2.new(0.75,50,0.55,50)
  6216. circl.ImageColor3 = Color3.new(0,0.5,1)
  6217. circl.Image = "rbxassetid://997291547"
  6218. local circl2 = imgl2:Clone()
  6219. circl2.Parent = fullscreenz
  6220. circl2.ImageTransparency = 0
  6221. circl2.ImageColor3 = Color3.new(0.5,0,1)
  6222. circl2.Image = "rbxassetid://997291547"
  6223. local imgl2b = imgl2:Clone()
  6224. imgl2b.Parent = fullscreenz
  6225. imgl2b.ImageTransparency = 0
  6226. imgl2b.Size = UDim2.new(0,500,0,500)
  6227. imgl2b.Position = UDim2.new(0.75,50,0.55,50)
  6228. local ned = Instance.new("TextLabel",fullscreenz)
  6229. ned.ZIndex = 2
  6230. ned.Font = "SciFi"
  6231. ned.BackgroundTransparency = 1
  6232. ned.BorderSizePixel = 0.65
  6233. ned.Size = UDim2.new(0.4,0,0.2,0)
  6234. ned.Position = UDim2.new(0.6,0,0.8,0)
  6235. ned.TextColor3 = BrickColor.new("Royal purple").Color
  6236. ned.TextStrokeColor3 = BrickColor.new("Cyan").Color
  6237. ned.TextScaled = true
  6238. ned.TextStrokeTransparency = 0
  6239. ned.Text = "NEPTUNIAN V"
  6240. ned.TextSize = 24
  6241. ned.Rotation = 1
  6242. --ned.TextXAlignment = "Right"
  6243. ned.TextYAlignment = "Bottom"
  6244.  
  6245. function CameraShake(Times, Power)
  6246. coroutine.resume(coroutine.create(function()
  6247. FV = Instance.new("BoolValue", Character)
  6248. FV.Name = "CameraShake"
  6249. for ShakeNum=1,Times do
  6250. swait()
  6251. local ef=Power
  6252. if ef>=1 then
  6253. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  6254. else
  6255. ef=Power*10
  6256. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  6257. end
  6258. end
  6259. Humanoid.CameraOffset = Vector3.new(0,0,0)
  6260. FV:Destroy()
  6261. end))
  6262. end
  6263.  
  6264. CamShake=function(Part,Distan,Power,Times)
  6265. local de=Part.Position
  6266. for i,v in pairs(workspace:children()) do
  6267. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  6268. for _,c in pairs(v:children()) do
  6269. if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
  6270. local Noob=v.Humanoid
  6271. if Noob~=nil then
  6272. if Noob:FindFirstChild("CamShake")==nil then-- and Noob == Character then
  6273. --[[local ss=script.CamShake:clone()
  6274. ss.Parent=Noob
  6275. ss.Power.Value=Power
  6276. ss.Times.Value=Times
  6277. ss.Disabled=false]]
  6278. CameraShake(Times, Power)
  6279. end
  6280. end
  6281. end
  6282. end
  6283. end
  6284. end
  6285. end
  6286.  
  6287. function chatfunc(text,color,typet,font,timeex)
  6288. local chat = coroutine.wrap(function()
  6289. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  6290. Character:FindFirstChild("TalkingBillBoard"):destroy()
  6291. end
  6292. local naeeym2 = Instance.new("BillboardGui",Character)
  6293. naeeym2.Size = UDim2.new(0,100,0,40)
  6294. naeeym2.StudsOffset = Vector3.new(0,3,0)
  6295. naeeym2.Adornee = Character.Head
  6296. naeeym2.Name = "TalkingBillBoard"
  6297. local tecks2 = Instance.new("TextLabel",naeeym2)
  6298. tecks2.BackgroundTransparency = 1
  6299. tecks2.BorderSizePixel = 0
  6300. tecks2.Text = ""
  6301. tecks2.Font = font
  6302. tecks2.TextSize = 30
  6303. tecks2.TextStrokeTransparency = 0
  6304. tecks2.TextColor3 = color
  6305. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  6306. tecks2.Size = UDim2.new(1,0,0.5,0)
  6307. local tecks3 = Instance.new("TextLabel",naeeym2)
  6308. tecks3.BackgroundTransparency = 1
  6309. tecks3.BorderSizePixel = 0
  6310. tecks3.Text = ""
  6311. tecks3.Font = font
  6312. tecks3.TextSize = 30
  6313. tecks3.TextStrokeTransparency = 0
  6314. if typet == "Inverted" then
  6315. tecks3.TextColor3 = Color3.new(0,0,0)
  6316. tecks3.TextStrokeColor3 = color
  6317. elseif typet == "Normal" then
  6318. tecks3.TextColor3 = color
  6319. tecks3.TextStrokeColor3 = Color3.new(0,0,0)
  6320. end
  6321. tecks3.Size = UDim2.new(1,0,0.5,0)
  6322. coroutine.resume(coroutine.create(function()
  6323. while true do
  6324. swait(1)
  6325. if chaosmode == true then
  6326. tecks2.TextColor3 = BrickColor.random().Color
  6327. tecks3.TextStrokeColor3 = BrickColor.random().Color
  6328. end
  6329. end
  6330. end))
  6331. for i = 0, 74*timeex do
  6332. swait()
  6333. tecks2.Text = text
  6334. tecks3.Text = text
  6335. end
  6336. local randomrot = math.random(1,2)
  6337. if randomrot == 1 then
  6338. for i = 1, 50 do
  6339. swait()
  6340. tecks2.Text = text
  6341. tecks3.Text = text
  6342. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  6343. tecks2.TextTransparency = tecks2.TextTransparency + .04
  6344. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  6345. tecks3.TextTransparency = tecks2.TextTransparency + .04
  6346. end
  6347. elseif randomrot == 2 then
  6348. for i = 1, 50 do
  6349. swait()
  6350. tecks2.Text = text
  6351. tecks3.Text = text
  6352. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  6353. tecks2.TextTransparency = tecks2.TextTransparency + .04
  6354. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  6355. tecks3.TextTransparency = tecks2.TextTransparency + .04
  6356. end
  6357. end
  6358. naeeym2:Destroy()
  6359. end)
  6360. chat()
  6361. end
  6362.  
  6363.  
  6364.  
  6365.  
  6366. CFuncs = {
  6367. ["Part"] = {
  6368. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  6369. local Part = Create("Part"){
  6370. Parent = Parent,
  6371. Reflectance = Reflectance,
  6372. Transparency = Transparency,
  6373. CanCollide = false,
  6374. Locked = true,
  6375. BrickColor = BrickColor.new(tostring(BColor)),
  6376. Name = Name,
  6377. Size = Size,
  6378. Material = Material,
  6379. }
  6380. RemoveOutlines(Part)
  6381. return Part
  6382. end;
  6383. };
  6384.  
  6385. ["Mesh"] = {
  6386. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  6387. local Msh = Create(Mesh){
  6388. Parent = Part,
  6389. Offset = OffSet,
  6390. Scale = Scale,
  6391. }
  6392. if Mesh == "SpecialMesh" then
  6393. Msh.MeshType = MeshType
  6394. Msh.MeshId = MeshId
  6395. end
  6396. return Msh
  6397. end;
  6398. };
  6399.  
  6400. ["Mesh"] = {
  6401. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  6402. local Msh = Create(Mesh){
  6403. Parent = Part,
  6404. Offset = OffSet,
  6405. Scale = Scale,
  6406. }
  6407. if Mesh == "SpecialMesh" then
  6408. Msh.MeshType = MeshType
  6409. Msh.MeshId = MeshId
  6410. end
  6411. return Msh
  6412. end;
  6413. };
  6414.  
  6415. ["Weld"] = {
  6416. Create = function(Parent, Part0, Part1, C0, C1)
  6417. local Weld = Create("Weld"){
  6418. Parent = Parent,
  6419. Part0 = Part0,
  6420. Part1 = Part1,
  6421. C0 = C0,
  6422. C1 = C1,
  6423. }
  6424. return Weld
  6425. end;
  6426. };
  6427.  
  6428. ["Sound"] = {
  6429. Create = function(id, par, vol, pit)
  6430. coroutine.resume(coroutine.create(function()
  6431. local S = Create("Sound"){
  6432. Volume = vol,
  6433. Pitch = pit or 1,
  6434. SoundId = id,
  6435. Parent = par or workspace,
  6436. }
  6437. wait()
  6438. S:play()
  6439. game:GetService("Debris"):AddItem(S, 10)
  6440. end))
  6441. end;
  6442. };
  6443.  
  6444. ["LongSound"] = {
  6445. Create = function(id, par, vol, pit)
  6446. coroutine.resume(coroutine.create(function()
  6447. local S = Create("Sound"){
  6448. Volume = vol,
  6449. Pitch = pit or 1,
  6450. SoundId = id,
  6451. Parent = par or workspace,
  6452. }
  6453. wait()
  6454. S:play()
  6455. game:GetService("Debris"):AddItem(S, 30)
  6456. end))
  6457. end;
  6458. };
  6459.  
  6460. ["ParticleEmitter"] = {
  6461. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  6462. local fp = Create("ParticleEmitter"){
  6463. Parent = Parent,
  6464. Color = ColorSequence.new(Color1, Color2),
  6465. LightEmission = LightEmission,
  6466. Size = Size,
  6467. Texture = Texture,
  6468. Transparency = Transparency,
  6469. ZOffset = ZOffset,
  6470. Acceleration = Accel,
  6471. Drag = Drag,
  6472. LockedToPart = LockedToPart,
  6473. VelocityInheritance = VelocityInheritance,
  6474. EmissionDirection = EmissionDirection,
  6475. Enabled = Enabled,
  6476. Lifetime = LifeTime,
  6477. Rate = Rate,
  6478. Rotation = Rotation,
  6479. RotSpeed = RotSpeed,
  6480. Speed = Speed,
  6481. VelocitySpread = VelocitySpread,
  6482. }
  6483. return fp
  6484. end;
  6485. };
  6486.  
  6487. CreateTemplate = {
  6488.  
  6489. };
  6490. }
  6491.  
  6492.  
  6493.  
  6494. New = function(Object, Parent, Name, Data)
  6495. local Object = Instance.new(Object)
  6496. for Index, Value in pairs(Data or {}) do
  6497. Object[Index] = Value
  6498. end
  6499. Object.Parent = Parent
  6500. Object.Name = Name
  6501. return Object
  6502. end
  6503. local m = Instance.new("Model",char)
  6504.  
  6505. function CreateParta(parent,transparency,reflectance,material,brickcolor)
  6506. local p = Instance.new("Part")
  6507. p.TopSurface = 0
  6508. p.BottomSurface = 0
  6509. p.Parent = parent
  6510. p.Size = Vector3.new(0.05,0.05,0.05)
  6511. p.Transparency = transparency
  6512. p.Reflectance = reflectance
  6513. p.CanCollide = false
  6514. p.Locked = true
  6515. p.BrickColor = brickcolor
  6516. p.Material = material
  6517. return p
  6518. end
  6519.  
  6520. function CreateMesh(parent,meshtype,x1,y1,z1)
  6521. local mesh = Instance.new("SpecialMesh",parent)
  6522. mesh.MeshType = meshtype
  6523. mesh.Scale = Vector3.new(x1*20,y1*20,z1*20)
  6524. return mesh
  6525. end
  6526.  
  6527. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  6528. local mesh = Instance.new("SpecialMesh",parent)
  6529. mesh.MeshType = "FileMesh"
  6530. mesh.MeshId = meshid
  6531. mesh.Scale = Vector3.new(x1,y1,z1)
  6532. return mesh
  6533. end
  6534.  
  6535.  
  6536. function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
  6537. local mesh = Instance.new("SpecialMesh",parent)
  6538. mesh.MeshType = "FileMesh"
  6539. mesh.MeshId = meshid
  6540. mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
  6541. mesh.Scale = Vector3.new(x1,y1,z1)
  6542. mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
  6543. return mesh
  6544. end
  6545.  
  6546. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  6547. local weld = Instance.new("Weld")
  6548. weld.Parent = parent
  6549. weld.Part0 = part0
  6550. weld.Part1 = part1
  6551. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  6552. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  6553. return weld
  6554. end
  6555.  
  6556.  
  6557.  
  6558.  
  6559. ---- WEAPON OR STUFF
  6560. local rarmor = CreateParta(m,1,0,"SmoothPlastic",BrickColor.Random())
  6561. 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))
  6562. 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))
  6563. local A0 = Instance.new("Attachment",rarmor)
  6564. A0.Position = Vector3.new(-2.5,0.25,0)
  6565. local A1 = Instance.new("Attachment",rarmor)
  6566. A1.Position = Vector3.new(-7.5,0.4,0)
  6567. tl1 = Instance.new('Trail',rarmor)
  6568. tl1.Attachment0 = A0
  6569. tl1.Attachment1 = A1
  6570. tl1.Texture = "http://www.roblox.com/asset/?id=1978704853"
  6571. tl1.LightEmission = 1
  6572. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  6573. tl1.Color = ColorSequence.new(BrickColor.new('Royal purple').Color)
  6574. tl1.Lifetime = 0.6
  6575. tl1.Enabled = false
  6576.  
  6577.  
  6578.  
  6579.  
  6580. --------------- WINGS
  6581. local mainpart = CreateParta(m,1,0,"SmoothPlastic",BrickColor.Random())
  6582. 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))
  6583.  
  6584. local wng1a = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  6585. CreateMesh(wng1a,"Wedge",0.1,4,4)
  6586. 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))
  6587. local wng2a = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  6588. CreateMesh(wng2a,"Wedge",0.1,4,4)
  6589. 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))
  6590. local wng1b = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  6591. CreateMesh(wng1b,"Wedge",0.1,1.5,3)
  6592. 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))
  6593. local wng2b = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  6594. CreateMesh(wng2b,"Wedge",0.1,1.5,3)
  6595. 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))
  6596. ------
  6597.  
  6598.  
  6599. function lerp(object, newCFrame, alpha)
  6600. return object:lerp(newCFrame, alpha)
  6601. end
  6602.  
  6603. function RemoveOutlines(part)
  6604. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  6605. end
  6606. function CreatePart(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  6607. local Part = Create("Part")({
  6608. Parent = Parent,
  6609. Reflectance = Reflectance,
  6610. Transparency = Transparency,
  6611. CanCollide = false,
  6612. Locked = true,
  6613. BrickColor = BrickColor.new(tostring(BColor)),
  6614. Name = Name,
  6615. Size = Size,
  6616. Material = Material
  6617. })
  6618. Part.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  6619. RemoveOutlines(Part)
  6620. return Part
  6621. end
  6622. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  6623. local Msh = Create(Mesh)({
  6624. Parent = Part,
  6625. Offset = OffSet,
  6626. Scale = Scale
  6627. })
  6628. if Mesh == "SpecialMesh" then
  6629. Msh.MeshType = MeshType
  6630. Msh.MeshId = MeshId
  6631. end
  6632. return Msh
  6633. end
  6634. function CreateWeld(Parent, Part0, Part1, C0, C1)
  6635. local Weld = Create("Weld")({
  6636. Parent = Parent,
  6637. Part0 = Part0,
  6638. Part1 = Part1,
  6639. C0 = C0,
  6640. C1 = C1
  6641. })
  6642. return Weld
  6643. end
  6644.  
  6645. Player=game:GetService("Players").LocalPlayer
  6646. Character=Player.Character
  6647. PlayerGui=Player.PlayerGui
  6648. Backpack=Player.Backpack
  6649. Torso=Character.Torso
  6650. Head=Character.Head
  6651. Humanoid=Character.Humanoid
  6652. m=Instance.new('Model',Character)
  6653. LeftArm=Character["Left Arm"]
  6654. LeftLeg=Character["Left Leg"]
  6655. RightArm=Character["Right Arm"]
  6656. RightLeg=Character["Right Leg"]
  6657. LS=Torso["Left Shoulder"]
  6658. LH=Torso["Left Hip"]
  6659. RS=Torso["Right Shoulder"]
  6660. RH=Torso["Right Hip"]
  6661. Face = Head.face
  6662. Neck=Torso.Neck
  6663. it=Instance.new
  6664. attacktype=1
  6665. vt=Vector3.new
  6666. cf=CFrame.new
  6667. euler=CFrame.fromEulerAnglesXYZ
  6668. angles=CFrame.Angles
  6669. cloaked=false
  6670. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  6671. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  6672. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  6673. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  6674. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  6675. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  6676. RootPart=Character.HumanoidRootPart
  6677. RootJoint=RootPart.RootJoint
  6678. RootCF=euler(-1.57,0,3.14)
  6679. attack = false
  6680. attackdebounce = false
  6681. deb=false
  6682. equipped=true
  6683. hand=false
  6684. MMouse=nil
  6685. combo=0
  6686. mana=0
  6687. trispeed=.2
  6688. attackmode='none'
  6689. local idle=0
  6690. local Anim="Idle"
  6691. local Effects={}
  6692. local gun=false
  6693. local shoot=false
  6694. local sine = 0
  6695. local change = 1
  6696. player=nil
  6697.  
  6698. mouse=Player:GetMouse()
  6699. --save shoulders
  6700. RSH, LSH=nil, nil
  6701. --welds
  6702. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  6703. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  6704. LH=Torso["Left Hip"]
  6705. RH=Torso["Right Hip"]
  6706. TorsoColor=Torso.BrickColor
  6707. function NoOutline(Part)
  6708. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  6709. end
  6710. player=Player
  6711. ch=Character
  6712. RSH=ch.Torso["Right Shoulder"]
  6713. LSH=ch.Torso["Left Shoulder"]
  6714. --
  6715. RSH.Parent=nil
  6716. LSH.Parent=nil
  6717. --
  6718. RW.Name="Right Shoulder"
  6719. RW.Part0=ch.Torso
  6720. RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  6721. RW.C1=cf(0, 0.5, 0)
  6722. RW.Part1=ch["Right Arm"]
  6723. RW.Parent=ch.Torso
  6724. --
  6725. LW.Name="Left Shoulder"
  6726. LW.Part0=ch.Torso
  6727. LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  6728. LW.C1=cf(0, 0.5, 0)
  6729. LW.Part1=ch["Left Arm"]
  6730. LW.Parent=ch.Torso
  6731.  
  6732. local Stats=Instance.new("BoolValue")
  6733. Stats.Name="Stats"
  6734. Stats.Parent=Character
  6735. local Atk=Instance.new("NumberValue")
  6736. Atk.Name="Damage"
  6737. Atk.Parent=Stats
  6738. Atk.Value=1
  6739. local Def=Instance.new("NumberValue")
  6740. Def.Name="Defense"
  6741. Def.Parent=Stats
  6742. Def.Value=1
  6743. local Speed=Instance.new("NumberValue")
  6744. Speed.Name="Speed"
  6745. Speed.Parent=Stats
  6746. Speed.Value=1
  6747. local Mvmt=Instance.new("NumberValue")
  6748. Mvmt.Name="Movement"
  6749. Mvmt.Parent=Stats
  6750. Mvmt.Value=1
  6751.  
  6752. local donum=0
  6753.  
  6754.  
  6755. function part(formfactor,parent,reflectance,transparency,brickcolor,name,size)
  6756. local fp=it("Part")
  6757. fp.formFactor=formfactor
  6758. fp.Parent=parent
  6759. fp.Reflectance=reflectance
  6760. fp.Transparency=transparency
  6761. fp.CanCollide=false
  6762. fp.Locked=true
  6763. fp.BrickColor=brickcolor
  6764. fp.Name=name
  6765. fp.Size=size
  6766. fp.Position=Torso.Position
  6767. NoOutline(fp)
  6768. fp.Material="SmoothPlastic"
  6769. fp:BreakJoints()
  6770. return fp
  6771. end
  6772.  
  6773. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  6774. local mesh=it(Mesh)
  6775. mesh.Parent=part
  6776. if Mesh=="SpecialMesh" then
  6777. mesh.MeshType=meshtype
  6778. if meshid~="nil" then
  6779. mesh.MeshId="http://www.roblox.com/asset/?id="..meshid
  6780. end
  6781. end
  6782. mesh.Offset=offset
  6783. mesh.Scale=scale
  6784. return mesh
  6785. end
  6786.  
  6787. function weld(parent,part0,part1,c0)
  6788. local weld=it("Weld")
  6789. weld.Parent=parent
  6790. weld.Part0=part0
  6791. weld.Part1=part1
  6792. weld.C0=c0
  6793. return weld
  6794. end
  6795.  
  6796. local Color1=Torso.BrickColor
  6797.  
  6798. local bodvel=Instance.new("BodyVelocity")
  6799. local bg=Instance.new("BodyGyro")
  6800.  
  6801. function swait(num)
  6802. if num==0 or num==nil then
  6803. game:service'RunService'.Stepped:wait(0)
  6804. else
  6805. for i=0,num do
  6806. game:service'RunService'.Stepped:wait(0)
  6807. end
  6808. end
  6809. end
  6810.  
  6811.  
  6812. so = function(id,par,vol,pit)
  6813. coroutine.resume(coroutine.create(function()
  6814. local sou = Instance.new("Sound",par or workspace)
  6815. sou.Volume=vol
  6816. sou.Pitch=pit or 1
  6817. sou.SoundId=id
  6818. swait()
  6819. sou:play()
  6820. game:GetService("Debris"):AddItem(sou,6)
  6821. end))
  6822. end
  6823.  
  6824. function clerp(a,b,t)
  6825. local qa = {QuaternionFromCFrame(a)}
  6826. local qb = {QuaternionFromCFrame(b)}
  6827. local ax, ay, az = a.x, a.y, a.z
  6828. local bx, by, bz = b.x, b.y, b.z
  6829. local _t = 1-t
  6830. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  6831. end
  6832.  
  6833. function QuaternionFromCFrame(cf)
  6834. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  6835. local trace = m00 + m11 + m22
  6836. if trace > 0 then
  6837. local s = math.sqrt(1 + trace)
  6838. local recip = 0.5/s
  6839. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  6840. else
  6841. local i = 0
  6842. if m11 > m00 then
  6843. i = 1
  6844. end
  6845. if m22 > (i == 0 and m00 or m11) then
  6846. i = 2
  6847. end
  6848. if i == 0 then
  6849. local s = math.sqrt(m00-m11-m22+1)
  6850. local recip = 0.5/s
  6851. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  6852. elseif i == 1 then
  6853. local s = math.sqrt(m11-m22-m00+1)
  6854. local recip = 0.5/s
  6855. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  6856. elseif i == 2 then
  6857. local s = math.sqrt(m22-m00-m11+1)
  6858. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  6859. end
  6860. end
  6861. end
  6862.  
  6863. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  6864. local xs, ys, zs = x + x, y + y, z + z
  6865. local wx, wy, wz = w*xs, w*ys, w*zs
  6866. local xx = x*xs
  6867. local xy = x*ys
  6868. local xz = x*zs
  6869. local yy = y*ys
  6870. local yz = y*zs
  6871. local zz = z*zs
  6872. 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))
  6873. end
  6874.  
  6875. function QuaternionSlerp(a, b, t)
  6876. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  6877. local startInterp, finishInterp;
  6878. if cosTheta >= 0.0001 then
  6879. if (1 - cosTheta) > 0.0001 then
  6880. local theta = math.acos(cosTheta)
  6881. local invSinTheta = 1/math.sin(theta)
  6882. startInterp = math.sin((1-t)*theta)*invSinTheta
  6883. finishInterp = math.sin(t*theta)*invSinTheta
  6884. else
  6885. startInterp = 1-t
  6886. finishInterp = t
  6887. end
  6888. else
  6889. if (1+cosTheta) > 0.0001 then
  6890. local theta = math.acos(-cosTheta)
  6891. local invSinTheta = 1/math.sin(theta)
  6892. startInterp = math.sin((t-1)*theta)*invSinTheta
  6893. finishInterp = math.sin(t*theta)*invSinTheta
  6894. else
  6895. startInterp = t-1
  6896. finishInterp = t
  6897. end
  6898. end
  6899. 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
  6900. end
  6901.  
  6902. local function CFrameFromTopBack(at, top, back)
  6903. local right = top:Cross(back)
  6904. return CFrame.new(at.x, at.y, at.z,
  6905. right.x, top.x, back.x,
  6906. right.y, top.y, back.y,
  6907. right.z, top.z, back.z)
  6908. end
  6909.  
  6910. function Triangle(a, b, c)
  6911. local edg1 = (c-a):Dot((b-a).unit)
  6912. local edg2 = (a-b):Dot((c-b).unit)
  6913. local edg3 = (b-c):Dot((a-c).unit)
  6914. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  6915. a, b, c = a, b, c
  6916. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  6917. a, b, c = b, c, a
  6918. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  6919. a, b, c = c, a, b
  6920. else
  6921. assert(false, "unreachable")
  6922. end
  6923.  
  6924. local len1 = (c-a):Dot((b-a).unit)
  6925. local len2 = (b-a).magnitude - len1
  6926. local width = (a + (b-a).unit*len1 - c).magnitude
  6927.  
  6928. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  6929.  
  6930. local list = {}
  6931.  
  6932. if len1 > 0.01 then
  6933. local w1 = Instance.new('WedgePart', m)
  6934. game:GetService("Debris"):AddItem(w1,5)
  6935. w1.Material = "SmoothPlastic"
  6936. w1.FormFactor = 'Custom'
  6937. w1.BrickColor = BrickColor.new("Really red")
  6938. w1.Transparency = 0
  6939. w1.Reflectance = 0
  6940. w1.Material = "SmoothPlastic"
  6941. w1.CanCollide = false
  6942. local l1 = Instance.new("PointLight",w1)
  6943. l1.Color = Color3.new(170,0,0)
  6944. NoOutline(w1)
  6945. local sz = Vector3.new(0.2, width, len1)
  6946. w1.Size = sz
  6947. local sp = Instance.new("SpecialMesh",w1)
  6948. sp.MeshType = "Wedge"
  6949. sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
  6950. w1:BreakJoints()
  6951. w1.Anchored = true
  6952. w1.Parent = workspace
  6953. w1.Transparency = 0.7
  6954. table.insert(Effects,{w1,"Disappear",.01})
  6955. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  6956. table.insert(list,w1)
  6957. end
  6958.  
  6959. if len2 > 0.01 then
  6960. local w2 = Instance.new('WedgePart', m)
  6961. game:GetService("Debris"):AddItem(w2,5)
  6962. w2.Material = "SmoothPlastic"
  6963. w2.FormFactor = 'Custom'
  6964. w2.BrickColor = BrickColor.new("Really red")
  6965. w2.Transparency = 0
  6966. w2.Reflectance = 0
  6967. w2.Material = "SmoothPlastic"
  6968. w2.CanCollide = false
  6969. local l2 = Instance.new("PointLight",w2)
  6970. l2.Color = Color3.new(170,0,0)
  6971. NoOutline(w2)
  6972. local sz = Vector3.new(0.2, width, len2)
  6973. w2.Size = sz
  6974. local sp = Instance.new("SpecialMesh",w2)
  6975. sp.MeshType = "Wedge"
  6976. sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
  6977. w2:BreakJoints()
  6978. w2.Anchored = true
  6979. w2.Parent = workspace
  6980. w2.Transparency = 0.7
  6981. table.insert(Effects,{w2,"Disappear",.01})
  6982. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  6983. table.insert(list,w2)
  6984. end
  6985. return unpack(list)
  6986. end
  6987.  
  6988.  
  6989.  
  6990. function ShowDamage(Pos, Text, Time, Color)
  6991. local Rate = 0.1
  6992. local Pos = Pos or Vector3.new(0, 0, 0)
  6993. local Text = Text or ""
  6994. local Time = Time or 2
  6995. local Color = Color or Color3.new(1, 0, 1)
  6996. local EffectPart = CreatePart(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  6997. EffectPart.Anchored = true
  6998. local BillboardGui = Create("BillboardGui")({
  6999. Size = UDim2.new(3, 0, 3, 0),
  7000. Adornee = EffectPart,
  7001. Parent = EffectPart
  7002. })
  7003. local TextLabel = Create("TextLabel")({
  7004. BackgroundTransparency = 1,
  7005. Size = UDim2.new(1, 0, 1, 0),
  7006. Text = Text,
  7007. TextColor3 = Color3.new(1,1,1),
  7008. TextStrokeColor3 = Color3.new(0,0,0),
  7009. TextStrokeTransparency = 0.25,
  7010. TextScaled = true,
  7011. Font = Enum.Font.Fantasy,
  7012. TextSize = 24,
  7013. Parent = BillboardGui
  7014. })
  7015. game.Debris:AddItem(EffectPart, Time + 0.1)
  7016. EffectPart.Parent = game:GetService("Workspace")
  7017. delay(0, function()
  7018. local Frames = Time / Rate
  7019. for Frame = 1, Frames do
  7020. swait(Rate)
  7021. local Percent = Frame / Frames
  7022. TextLabel.Text = Text
  7023. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent*2, 0)
  7024. end
  7025. for Frame = 1, Frames do
  7026. swait(Rate)
  7027. local Percent = Frame / Frames
  7028. TextLabel.Text = Text
  7029. end
  7030. for Frame = 1, Frames do
  7031. swait(Rate)
  7032. local Percent = Frame / Frames
  7033. TextLabel.TextTransparency = Percent
  7034. TextLabel.Text = Text
  7035. TextLabel.TextStrokeTransparency = Percent
  7036. end
  7037. if EffectPart and EffectPart.Parent then
  7038. EffectPart:Destroy()
  7039. end
  7040. end)
  7041. end
  7042. function MagniDamage(Part, magni, mindam, maxdam, knock, Type,Sound)
  7043. for _, c in pairs(workspace:children()) do
  7044. local hum = c:findFirstChildOfClass("Humanoid")
  7045. if hum ~= nil then
  7046. local head = c:findFirstChild("Torso")
  7047. if head ~= nil then
  7048. local targ = head.Position - Part.Position
  7049. local mag = targ.magnitude
  7050. if magni >= mag and c.Name ~= Player.Name then
  7051. --Damagefunc(head, head, mindam, maxdam, knock, Type, RootPart, 0.1, "rbxassetid://" ..Sound, 1)
  7052. end
  7053. end
  7054. local head = c:findFirstChild("UpperTorso")
  7055. if head ~= nil then
  7056. local targ = head.Position - Part.Position
  7057. local mag = targ.magnitude
  7058. if magni >= mag and c.Name ~= Player.Name then
  7059. Damagefunc(head, head, mindam, maxdam, knock, Type, RootPart, 0.1, "rbxassetid://" ..Sound, 1)
  7060. end
  7061. end
  7062. end
  7063. end
  7064. end
  7065.  
  7066.  
  7067. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  7068. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  7069. end
  7070. ----
  7071.  
  7072. function dmg(dude)
  7073. if dude.Name ~= Character then
  7074. local bgf = Instance.new("BodyGyro",dude.Head)
  7075. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(-90),0,0)
  7076. --[[local val = Instance.new("BoolValue",dude)
  7077. val.Name = "IsHit"]]--
  7078. local ds = coroutine.wrap(function()
  7079. dude:WaitForChild("Head"):BreakJoints()
  7080. for i, v in pairs(dude:GetChildren()) do
  7081. if v:IsA("Part") or v:IsA("MeshPart") then
  7082. v.Name = "DEMINISHED"
  7083. CFuncs["Sound"].Create("rbxassetid://763718160", v, 0.75, 1.1)
  7084. CFuncs["Sound"].Create("rbxassetid://782353443", v, 1, 1)
  7085. for i = 0, 1 do
  7086. 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)
  7087. end
  7088. end
  7089. end
  7090. wait(0.5)
  7091. targetted = nil
  7092. CFuncs["Sound"].Create("rbxassetid://62339698", char, 0.25, 0.285)
  7093. coroutine.resume(coroutine.create(function()
  7094. for i, v in pairs(dude:GetChildren()) do
  7095. if v:IsA("Accessory") then
  7096. v:Destroy()
  7097. end
  7098. if v:IsA("Humanoid") then
  7099. v:Destroy()
  7100. end
  7101. if v:IsA("CharacterMesh") then
  7102. v:Destroy()
  7103. end
  7104. if v:IsA("Model") then
  7105. v:Destroy()
  7106. end
  7107. if v:IsA("Part") or v:IsA("MeshPart") then
  7108. for x, o in pairs(v:GetChildren()) do
  7109. if o:IsA("Decal") then
  7110. o:Destroy()
  7111. end
  7112. end
  7113. coroutine.resume(coroutine.create(function()
  7114. v.Material = "Neon"
  7115. v.CanCollide = false
  7116. v.Anchored = false
  7117. local bld = Instance.new("ParticleEmitter",v)
  7118. bld.LightEmission = 1
  7119. bld.Texture = "rbxassetid://363275192" ---284205403
  7120. bld.Color = ColorSequence.new(BrickColor.new("Royal purple").Color)
  7121. bld.Rate = 500
  7122. bld.Lifetime = NumberRange.new(1)
  7123. bld.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,2,0),NumberSequenceKeypoint.new(0.8,2.25,0),NumberSequenceKeypoint.new(1,0,0)})
  7124. bld.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5,0),NumberSequenceKeypoint.new(0.8,0.75,0),NumberSequenceKeypoint.new(1,1,0)})
  7125. bld.Speed = NumberRange.new(2,5)
  7126. bld.VelocitySpread = 50000
  7127. bld.Rotation = NumberRange.new(-500,500)
  7128. bld.RotSpeed = NumberRange.new(-500,500)
  7129. local sbs = Instance.new("BodyPosition", v)
  7130. sbs.P = 3000
  7131. sbs.D = 1000
  7132. sbs.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  7133. sbs.position = v.Position + Vector3.new(math.random(-2,2),10 + math.random(-2,2),math.random(-2,2))
  7134. v.Color = BrickColor.new("Royal purple").Color
  7135. coroutine.resume(coroutine.create(function()
  7136. for i = 0, 49 do
  7137. swait(1)
  7138. v:BreakJoints()
  7139. v.Transparency = v.Transparency + 0.02
  7140. end
  7141. v:BreakJoints()
  7142. for i = 0, 4 do
  7143. 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"))
  7144. end
  7145. block(1,"Add",v.CFrame,vt(0,0,0),0.1,0.1,0.1,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7146. CFuncs["Sound"].Create("rbxassetid://782353117", v, 0.25, 1.2)
  7147. CFuncs["Sound"].Create("rbxassetid://1192402877", v, 0.5, 0.75)
  7148. bld.Speed = NumberRange.new(10,25)
  7149. bld.Drag = 5
  7150. bld.Acceleration = vt(0,2,0)
  7151. wait(0.5)
  7152. bld.Enabled = false
  7153. wait(4)
  7154. coroutine.resume(coroutine.create(function()
  7155. for i = 0, 99 do
  7156. swait()
  7157. v:Destroy()
  7158. dude:Destroy()
  7159. end
  7160. end))
  7161. end))
  7162. end))
  7163. end
  7164. end
  7165. end))
  7166. end)
  7167. ds()
  7168. end
  7169. end
  7170.  
  7171. function sphere(bonuspeed,type,pos,scale,value,color)
  7172. local type = type
  7173. local rng = Instance.new("Part", char)
  7174. rng.Anchored = true
  7175. rng.BrickColor = color
  7176. rng.CanCollide = false
  7177. rng.FormFactor = 3
  7178. rng.Name = "Ring"
  7179. rng.Material = "Neon"
  7180. rng.Size = Vector3.new(1, 1, 1)
  7181. rng.Transparency = 0
  7182. rng.TopSurface = 0
  7183. rng.BottomSurface = 0
  7184. rng.CFrame = pos
  7185. local rngm = Instance.new("SpecialMesh", rng)
  7186. rngm.MeshType = "Sphere"
  7187. rngm.Scale = scale
  7188. if rainbowmode == true then
  7189. rng.Color = Color3.new(r/255,g/255,b/255)
  7190. end
  7191. local scaler2 = 1
  7192. if type == "Add" then
  7193. scaler2 = 1*value
  7194. elseif type == "Divide" then
  7195. scaler2 = 1/value
  7196. end
  7197. coroutine.resume(coroutine.create(function()
  7198. for i = 0,10/bonuspeed,0.1 do
  7199. swait()
  7200. if rainbowmode == true then
  7201. rng.Color = Color3.new(r/255,g/255,b/255)
  7202. end
  7203. if type == "Add" then
  7204. scaler2 = scaler2 - 0.01*value/bonuspeed
  7205. elseif type == "Divide" then
  7206. scaler2 = scaler2 - 0.01/value*bonuspeed
  7207. end
  7208. if chaosmode == true then
  7209. rng.BrickColor = BrickColor.random()
  7210. end
  7211. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7212. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2*bonuspeed, scaler2*bonuspeed)
  7213. end
  7214. rng:Destroy()
  7215. end))
  7216. end
  7217.  
  7218. function sphere2(bonuspeed,type,pos,scale,value,value2,value3,color,color3)
  7219. local type = type
  7220. local rng = Instance.new("Part", char)
  7221. rng.Anchored = true
  7222. rng.BrickColor = color
  7223. rng.Color = color3
  7224. rng.CanCollide = false
  7225. rng.FormFactor = 3
  7226. rng.Name = "Ring"
  7227. rng.Material = "Neon"
  7228. rng.Size = Vector3.new(1, 1, 1)
  7229. rng.Transparency = 0
  7230. rng.TopSurface = 0
  7231. rng.BottomSurface = 0
  7232. rng.CFrame = pos
  7233. local rngm = Instance.new("SpecialMesh", rng)
  7234. rngm.MeshType = "Sphere"
  7235. rngm.Scale = scale
  7236. local scaler2 = 1
  7237. local scaler2b = 1
  7238. local scaler2c = 1
  7239. if type == "Add" then
  7240. scaler2 = 1*value
  7241. scaler2b = 1*value2
  7242. scaler2c = 1*value3
  7243. elseif type == "Divide" then
  7244. scaler2 = 1/value
  7245. scaler2b = 1/value2
  7246. scaler2c = 1/value3
  7247. end
  7248. coroutine.resume(coroutine.create(function()
  7249. for i = 0,10/bonuspeed,0.1 do
  7250. swait()
  7251. if type == "Add" then
  7252. scaler2 = scaler2 - 0.01*value/bonuspeed
  7253. scaler2b = scaler2b - 0.01*value/bonuspeed
  7254. scaler2c = scaler2c - 0.01*value/bonuspeed
  7255. elseif type == "Divide" then
  7256. scaler2 = scaler2 - 0.01/value*bonuspeed
  7257. scaler2b = scaler2b - 0.01/value*bonuspeed
  7258. scaler2c = scaler2c - 0.01/value*bonuspeed
  7259. end
  7260. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7261. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2c*bonuspeed)
  7262. end
  7263. rng:Destroy()
  7264. end))
  7265. end
  7266.  
  7267. function block(bonuspeed,type,pos,scale,value,value2,value3,color,color3)
  7268. local type = type
  7269. local rng = Instance.new("Part", char)
  7270. rng.Anchored = true
  7271. rng.BrickColor = color
  7272. rng.Color = color3
  7273. rng.CanCollide = false
  7274. rng.FormFactor = 3
  7275. rng.Name = "Ring"
  7276. rng.Material = "Neon"
  7277. rng.Size = Vector3.new(1, 1, 1)
  7278. rng.Transparency = 0
  7279. rng.TopSurface = 0
  7280. rng.BottomSurface = 0
  7281. rng.CFrame = pos
  7282. local rngm = Instance.new("SpecialMesh", rng)
  7283. rngm.MeshType = "Brick"
  7284. rngm.Scale = scale
  7285. local scaler2 = 1
  7286. local scaler2b = 1
  7287. local scaler2c = 1
  7288. if type == "Add" then
  7289. scaler2 = 1*value
  7290. scaler2b = 1*value2
  7291. scaler2c = 1*value3
  7292. elseif type == "Divide" then
  7293. scaler2 = 1/value
  7294. scaler2b = 1/value2
  7295. scaler2c = 1/value3
  7296. end
  7297. coroutine.resume(coroutine.create(function()
  7298. for i = 0,10/bonuspeed,0.1 do
  7299. swait()
  7300. if type == "Add" then
  7301. scaler2 = scaler2 - 0.01*value/bonuspeed
  7302. scaler2b = scaler2b - 0.01*value/bonuspeed
  7303. scaler2c = scaler2c - 0.01*value/bonuspeed
  7304. elseif type == "Divide" then
  7305. scaler2 = scaler2 - 0.01/value*bonuspeed
  7306. scaler2b = scaler2b - 0.01/value*bonuspeed
  7307. scaler2c = scaler2c - 0.01/value*bonuspeed
  7308. end
  7309. rng.CFrame = rng.CFrame*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360)))
  7310. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7311. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2c*bonuspeed)
  7312. end
  7313. rng:Destroy()
  7314. end))
  7315. end
  7316.  
  7317. function sphereMK(bonuspeed,FastSpeed,type,pos,x1,y1,z1,value,color,color3,outerpos)
  7318. local type = type
  7319. local rng = Instance.new("Part", char)
  7320. rng.Anchored = true
  7321. rng.BrickColor = color
  7322. rng.Color = color3
  7323. rng.CanCollide = false
  7324. rng.FormFactor = 3
  7325. rng.Name = "Ring"
  7326. rng.Material = "Neon"
  7327. rng.Size = Vector3.new(1, 1, 1)
  7328. rng.Transparency = 0
  7329. rng.TopSurface = 0
  7330. rng.BottomSurface = 0
  7331. rng.CFrame = pos
  7332. rng.CFrame = rng.CFrame + rng.CFrame.lookVector*outerpos
  7333. local rngm = Instance.new("SpecialMesh", rng)
  7334. rngm.MeshType = "Sphere"
  7335. rngm.Scale = vt(x1,y1,z1)
  7336. if rainbowmode == true then
  7337. rng.Color = Color3.new(r/255,g/255,b/255)
  7338. end
  7339. local scaler2 = 1
  7340. local speeder = FastSpeed
  7341. if type == "Add" then
  7342. scaler2 = 1*value
  7343. elseif type == "Divide" then
  7344. scaler2 = 1/value
  7345. end
  7346. coroutine.resume(coroutine.create(function()
  7347. for i = 0,10/bonuspeed,0.1 do
  7348. swait()
  7349. if rainbowmode == true then
  7350. rng.Color = Color3.new(r/255,g/255,b/255)
  7351. end
  7352. if type == "Add" then
  7353. scaler2 = scaler2 - 0.01*value/bonuspeed
  7354. elseif type == "Divide" then
  7355. scaler2 = scaler2 - 0.01/value*bonuspeed
  7356. end
  7357. if chaosmode == true then
  7358. rng.BrickColor = BrickColor.random()
  7359. end
  7360. speeder = speeder - 0.01*FastSpeed*bonuspeed
  7361. rng.CFrame = rng.CFrame + rng.CFrame.lookVector*speeder*bonuspeed
  7362. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7363. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2*bonuspeed, 0)
  7364. end
  7365. rng:Destroy()
  7366. end))
  7367. end
  7368.  
  7369. function waveEff(bonuspeed,type,typeoftrans,pos,scale,value,value2,color)
  7370. local type = type
  7371. local rng = Instance.new("Part", char)
  7372. rng.Anchored = true
  7373. rng.BrickColor = color
  7374. rng.CanCollide = false
  7375. rng.FormFactor = 3
  7376. rng.Name = "Ring"
  7377. rng.Material = "Neon"
  7378. rng.Size = Vector3.new(1, 1, 1)
  7379. rng.Transparency = 0
  7380. if typeoftrans == "In" then
  7381. rng.Transparency = 1
  7382. end
  7383. rng.TopSurface = 0
  7384. rng.BottomSurface = 0
  7385. rng.CFrame = pos
  7386. local rngm = Instance.new("SpecialMesh", rng)
  7387. rngm.MeshType = "FileMesh"
  7388. rngm.MeshId = "rbxassetid://20329976"
  7389. rngm.Scale = scale
  7390. local scaler2 = 1
  7391. local scaler2b = 1
  7392. if type == "Add" then
  7393. scaler2 = 1*value
  7394. scaler2b = 1*value2
  7395. elseif type == "Divide" then
  7396. scaler2 = 1/value
  7397. scaler2b = 1/value2
  7398. end
  7399. local randomrot = math.random(1,2)
  7400. coroutine.resume(coroutine.create(function()
  7401. for i = 0,10/bonuspeed,0.1 do
  7402. swait()
  7403. if type == "Add" then
  7404. scaler2 = scaler2 - 0.01*value/bonuspeed
  7405. scaler2b = scaler2b - 0.01*value/bonuspeed
  7406. elseif type == "Divide" then
  7407. scaler2 = scaler2 - 0.01/value*bonuspeed
  7408. scaler2b = scaler2b - 0.01/value*bonuspeed
  7409. end
  7410. if randomrot == 1 then
  7411. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(5*bonuspeed/2),0)
  7412. elseif randomrot == 2 then
  7413. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(-5*bonuspeed/2),0)
  7414. end
  7415. if typeoftrans == "Out" then
  7416. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7417. elseif typeoftrans == "In" then
  7418. rng.Transparency = rng.Transparency - 0.01*bonuspeed
  7419. end
  7420. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2*bonuspeed)
  7421. end
  7422. rng:Destroy()
  7423. end))
  7424. end
  7425.  
  7426. function slash(bonuspeed,rotspeed,rotatingop,typeofshape,type,typeoftrans,pos,scale,value,color)
  7427. local type = type
  7428. local rotenable = rotatingop
  7429. local rng = Instance.new("Part", char)
  7430. rng.Anchored = true
  7431. rng.BrickColor = color
  7432. rng.CanCollide = false
  7433. rng.FormFactor = 3
  7434. rng.Name = "Ring"
  7435. rng.Material = "Neon"
  7436. rng.Size = Vector3.new(1, 1, 1)
  7437. rng.Transparency = 0
  7438. if typeoftrans == "In" then
  7439. rng.Transparency = 1
  7440. end
  7441. rng.TopSurface = 0
  7442. rng.BottomSurface = 0
  7443. rng.CFrame = pos
  7444. local rngm = Instance.new("SpecialMesh", rng)
  7445. rngm.MeshType = "FileMesh"
  7446. if typeofshape == "Normal" then
  7447. rngm.MeshId = "rbxassetid://662586858"
  7448. elseif typeofshape == "Round" then
  7449. rngm.MeshId = "rbxassetid://662585058"
  7450. end
  7451. rngm.Scale = scale
  7452. local scaler2 = 1/10
  7453. if type == "Add" then
  7454. scaler2 = 1*value/10
  7455. elseif type == "Divide" then
  7456. scaler2 = 1/value/10
  7457. end
  7458. local randomrot = math.random(1,2)
  7459. coroutine.resume(coroutine.create(function()
  7460. for i = 0,10/bonuspeed,0.1 do
  7461. swait()
  7462. if type == "Add" then
  7463. scaler2 = scaler2 - 0.01*value/bonuspeed/10
  7464. elseif type == "Divide" then
  7465. scaler2 = scaler2 - 0.01/value*bonuspeed/10
  7466. end
  7467. if rotenable == true then
  7468. if randomrot == 1 then
  7469. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(rotspeed*bonuspeed/2),0)
  7470. elseif randomrot == 2 then
  7471. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(-rotspeed*bonuspeed/2),0)
  7472. end
  7473. end
  7474. if typeoftrans == "Out" then
  7475. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7476. elseif typeoftrans == "In" then
  7477. rng.Transparency = rng.Transparency - 0.01*bonuspeed
  7478. end
  7479. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed/10, 0, scaler2*bonuspeed/10)
  7480. end
  7481. rng:Destroy()
  7482. end))
  7483. end
  7484.  
  7485. function FindNearestTorso(Position, Distance, SinglePlayer)
  7486. if SinglePlayer then
  7487. return (SinglePlayer.Torso.CFrame.p - Position).magnitude < Distance
  7488. end
  7489. local List = {}
  7490. for i, v in pairs(workspace:GetChildren()) do
  7491. if v:IsA("Model") then
  7492. if v:findFirstChild("Torso") or v:findFirstChild("UpperTorso") then
  7493. if v ~= Character then
  7494. if (v.Head.Position - Position).magnitude <= Distance then
  7495. table.insert(List, v)
  7496. end
  7497. end
  7498. end
  7499. end
  7500. end
  7501. return List
  7502. end
  7503.  
  7504.  
  7505. local dashing = false
  7506. local floatmode = false
  7507. local OWS = hum.WalkSpeed
  7508. local equipped = false
  7509. Humanoid.Name = "NEPTUNIA"
  7510. Humanoid.MaxHealth = math.huge
  7511. Humanoid.Health = math.huge
  7512. Instance.new("ForceField",char).Visible = false
  7513. Humanoid.Animator.Parent = nil
  7514. ------------------
  7515. function equip()
  7516. attack = true
  7517. equipped = true
  7518. hum.WalkSpeed = 0
  7519. tl1.Enabled = true
  7520. for i = 0, 9 do
  7521. 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"))
  7522. end
  7523. CFuncs["Sound"].Create("rbxassetid://1368637781", rarmor, 2.5, 1.25)
  7524. CFuncs["Sound"].Create("rbxassetid://200633077", rarmor, 1, 1)
  7525. CFuncs["Sound"].Create("rbxassetid://169380495", rarmor, 0.5, 1.1)
  7526. sphere2(5,"Add",root.CFrame,vt(5,5,5),0.25,0.25,0.25,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7527. sphere2(6,"Add",root.CFrame,vt(5,5,5),0.25,0.25,0.25,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7528. for i = 0, 2, 0.1 do
  7529. swait()
  7530. hum.CameraOffset = vt(math.random(-5,5)/50,math.random(-5,5)/50,math.random(-5,5)/50)
  7531. 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)
  7532. 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"))
  7533. 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"))
  7534. 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)
  7535. 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)
  7536. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-10)),.3)
  7537. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-20)),.3)
  7538. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-20),math.rad(-30),math.rad(130)),.3)
  7539. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(-13),math.rad(10),math.rad(-10)),.3)
  7540. end
  7541. hum.CameraOffset = vt(0,0,0)
  7542. weaponweld.Part0 = rarm
  7543. for i = 0, 2, 0.1 do
  7544. swait()
  7545. 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)
  7546. 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)
  7547. 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)
  7548. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(40)),.3)
  7549. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-40)),.3)
  7550. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7551. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7552. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7553. end
  7554. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7555. hitb.Anchored = true
  7556. --hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7557. --MagniDamage(hitb, 4, 40,73, 0, "Normal",153092213)
  7558. 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"))
  7559. CFuncs["Sound"].Create("rbxassetid://200633196", rarmor, 1, 1.05)
  7560. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1.5, 1.025)
  7561. CFuncs["Sound"].Create("rbxassetid://234365549", rarmor, 1, 1)
  7562. for i = 0, 2, 0.1 do
  7563. swait()
  7564. --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)
  7565. 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)
  7566. 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)
  7567. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
  7568. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(50)),.3)
  7569. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(70)),.3)
  7570. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7571. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7572. end
  7573. hitb:Destroy()
  7574. hum.WalkSpeed = 24
  7575. OWS = hum.WalkSpeed
  7576. attack = false
  7577. end
  7578.  
  7579. function unequip()
  7580. attack = true
  7581. equipped = false
  7582. hum.WalkSpeed = 0
  7583. hum.WalkSpeed = 16
  7584. OWS = hum.WalkSpeed
  7585. tl1.Enabled = false
  7586. CFuncs["Sound"].Create("rbxassetid://200633029", rarmor, 1, 1)
  7587. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.5)
  7588. weaponweld.Part0 = tors
  7589. attack = false
  7590. end
  7591.  
  7592. ------------------
  7593. function attackone()
  7594. attack = true
  7595. hum.WalkSpeed = 4
  7596. for i = 0, 2, 0.1 do
  7597. swait()
  7598. 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)
  7599. 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)
  7600. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(40)),.3)
  7601. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-40)),.3)
  7602. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7603. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7604. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7605. end
  7606. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7607. hitb.Anchored = true
  7608. --hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7609. --MagniDamage(hitb, 4, 24,30, 0, "Normal",153092213)
  7610. CFuncs["Sound"].Create("rbxassetid://200633196", rarmor, 1, 1.05)
  7611. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1.5, 1.025)
  7612. CFuncs["Sound"].Create("rbxassetid://234365549", rarmor, 1, 1)
  7613. for i = 0, 1, 0.1 do
  7614. swait()
  7615. 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)
  7616. 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)
  7617. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
  7618. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(50)),.3)
  7619. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(70)),.3)
  7620. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7621. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7622. end
  7623. hitb:Destroy()
  7624. attack = false
  7625. hum.WalkSpeed = 24
  7626. end
  7627. function attacktwo()
  7628. attack = true
  7629. hum.WalkSpeed = 4
  7630. for i = 0, 1, 0.1 do
  7631. swait()
  7632. 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)
  7633. 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)
  7634. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7635. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(40)),.3)
  7636. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7637. LW.C0=clerp(LW.C0,cf(-0.5,0.5,-0.25)*angles(math.rad(90),math.rad(0),math.rad(40)),.3)
  7638. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(0)),.3)
  7639. end
  7640. --local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7641. --hitb.Anchored = true
  7642. --hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7643. --MagniDamage(hitb, 4, 24,30, 0, "Normal",153092213)
  7644. CFuncs["Sound"].Create("rbxassetid://200633281", rarmor, 1, 1.05)
  7645. CFuncs["Sound"].Create("rbxassetid://161006195", rarmor, 1.5, 1.025)
  7646. for i = 0, 1, 0.1 do
  7647. swait()
  7648. 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)
  7649. 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)
  7650. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(90)),.3)
  7651. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-90)),.3)
  7652. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(20)),.3)
  7653. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7654. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(70)),.3)
  7655. end
  7656. attack = false
  7657. hum.WalkSpeed = 24
  7658. end
  7659. function attackthree()
  7660. attack = true
  7661. hum.WalkSpeed = 4
  7662. for i = 0, 1, 0.1 do
  7663. swait()
  7664. 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)
  7665. 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)
  7666. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  7667. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(60)),.3)
  7668. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-30),math.rad(0),math.rad(53)),.3)
  7669. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(10),math.rad(0),math.rad(-10)),.3)
  7670. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.3)
  7671. end
  7672. for x = 0, 2 do
  7673. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1, 1.05)
  7674. CFuncs["Sound"].Create("rbxassetid://234365573", rarmor, 1.5, 1.025)
  7675. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7676. --hitb.Anchored = true
  7677. --hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7678. --MagniDamage(hitb, 4, 12,15, 0, "Normal",153092213)
  7679. for i = 0, 1, 0.6 do
  7680. swait()
  7681. 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)
  7682. 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)
  7683. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7684. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7685. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7686. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7687. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(30),math.rad(90)),.3)
  7688. end
  7689. for i = 0, 1, 0.6 do
  7690. swait()
  7691. 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)
  7692. 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)
  7693. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7694. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7695. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7696. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7697. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(180)),.3)
  7698. end
  7699. for i = 0, 1, 0.6 do
  7700. swait()
  7701. 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)
  7702. 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)
  7703. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7704. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7705. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7706. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7707. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(-30),math.rad(270)),.3)
  7708. end
  7709. for i = 0, 1, 0.6 do
  7710. swait()
  7711. 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)
  7712. 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)
  7713. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7714. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7715. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7716. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7717. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7718. end
  7719. end
  7720. attack = false
  7721. hum.WalkSpeed = 24
  7722. end
  7723. ------------------
  7724. function spinnyblade()
  7725. attack = true
  7726. hum.WalkSpeed = 1
  7727. hum.JumpPower = 0
  7728. CFuncs["Sound"].Create("rbxassetid://1368583274", root, 4.5, 1)
  7729. local bgui = Instance.new("BillboardGui",root)
  7730. bgui.Size = UDim2.new(25, 0, 25, 0)
  7731. local imgc = Instance.new("ImageLabel",bgui)
  7732. imgc.BackgroundTransparency = 1
  7733. imgc.ImageTransparency = 1
  7734. imgc.Size = UDim2.new(1,0,1,0)
  7735. imgc.Image = "rbxassetid://997291547"
  7736. imgc.ImageColor3 = Color3.new(0,0.5,1)
  7737. local imgc2 = imgc:Clone()
  7738. imgc2.Parent = bgui
  7739. imgc2.Position = UDim2.new(-0.5,0,-0.5,0)
  7740. imgc2.Size = UDim2.new(2,0,2,0)
  7741. imgc2.ImageColor3 = Color3.new(0.5,0,1)
  7742. for i = 0, 10, 0.1 do
  7743. swait()
  7744. imgc.ImageTransparency = imgc.ImageTransparency - 0.01
  7745. imgc.Rotation = imgc.Rotation + 1
  7746. imgc2.ImageTransparency = imgc2.ImageTransparency - 0.01
  7747. imgc2.Rotation = imgc2.Rotation - 1
  7748. bgui.Size = bgui.Size - UDim2.new(0.25, 0, 0.25, 0)
  7749. 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"))
  7750. 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)
  7751. hum.CameraOffset = vt(math.random(-10,10)/50,math.random(-10,10)/50,math.random(-10,10)/50)
  7752. 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)
  7753. 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)
  7754. 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"))
  7755. 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)
  7756. 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)
  7757. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.2,-0.3)*angles(math.rad(10),math.rad(0),math.rad(50)),.3)
  7758. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(-50)),.3)
  7759. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7760. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7761. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7762. end
  7763. imgc.ImageTransparency = 1
  7764. hum.CameraOffset = vt(0,0,0)
  7765. 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"))
  7766. 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"))
  7767. 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"))
  7768. 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"))
  7769. 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"))
  7770. for i = 0, 9 do
  7771. 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"))
  7772. end
  7773. CFuncs["Sound"].Create("rbxassetid://430315987", root, 1.5, 1)
  7774. CFuncs["Sound"].Create("rbxassetid://1295446488", root, 3, 1)
  7775. for x = 0, 14 do
  7776. CFuncs["Sound"].Create("rbxassetid://200633281", rarmor, 1, 1.05)
  7777. CFuncs["Sound"].Create("rbxassetid://161006195", rarmor, 1.5, 1.025)
  7778. --MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7779. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7780. 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"))
  7781. for i = 0, 1, 0.6 do
  7782. swait()
  7783. 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)
  7784. root.CFrame = root.CFrame + root.CFrame.lookVector*2
  7785. root.Velocity = vt(0,0,0)
  7786. 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)
  7787. 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)
  7788. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  7789. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7790. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7791. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7792. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7793. end
  7794. 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"))
  7795. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7796. --MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7797. for i = 0, 1, 0.6 do
  7798. swait()
  7799. 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)
  7800. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7801. root.Velocity = vt(0,0,0)
  7802. 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)
  7803. 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)
  7804. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7805. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7806. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7807. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7808. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7809. end
  7810. 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"))
  7811. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7812. --MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7813. for i = 0, 1, 0.6 do
  7814. swait()
  7815. 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)
  7816. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7817. root.Velocity = vt(0,0,0)
  7818. 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)
  7819. 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)
  7820. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(180),math.rad(0),math.rad(90)),.3)
  7821. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7822. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7823. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7824. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7825. end
  7826. 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"))
  7827. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7828. MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7829. for i = 0, 1, 0.6 do
  7830. swait()
  7831. 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)
  7832. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7833. root.Velocity = vt(0,0,0)
  7834. 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)
  7835. 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)
  7836. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(270),math.rad(0),math.rad(90)),.3)
  7837. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7838. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7839. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7840. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7841. end
  7842. end
  7843. hum.WalkSpeed = 0
  7844. for i = 0, 5, 0.1 do
  7845. swait()
  7846. 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)
  7847. 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)
  7848. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.2,-0.35)*angles(math.rad(10),math.rad(0),math.rad(-40)),.2)
  7849. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(40)),.2)
  7850. RW.C0=clerp(RW.C0,cf(1.45,0.5,0)*angles(math.rad(90),math.rad(0),math.rad(110)),.2)
  7851. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0)*angles(math.rad(45),math.rad(0),math.rad(-20)),.2)
  7852. weaponweld.C1=clerp(weaponweld.C1,cf(2,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.2)
  7853. end
  7854. bgui:Destroy()
  7855. attack = false
  7856. hum.WalkSpeed = 24
  7857. hum.JumpPower = 50
  7858. end
  7859.  
  7860. function eightbitmegablade()
  7861. attack = true
  7862. hum.WalkSpeed = 0
  7863. hum.JumpPower = 0
  7864. CFuncs["Sound"].Create("rbxassetid://1368583274", larm, 4.5, 1.2)
  7865. local OverCut = false
  7866. cam.CameraSubject = Humanoid
  7867. cam.CameraType = "Scriptable"
  7868. coroutine.resume(coroutine.create(function()
  7869. while true do
  7870. swait()
  7871. if OverCut == false then
  7872. cam.CFrame = lerp(cam.CFrame, root.CFrame * cf(1, 1.5, -6) * ceuler(math.rad(10), math.rad(170), math.rad(-20)), 0.1)
  7873. else
  7874. break
  7875. end
  7876. end
  7877. end))
  7878. for i = 0, 10, 0.1 do
  7879. swait()
  7880. 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"))
  7881. 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)
  7882. 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"))
  7883. 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)
  7884. 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)
  7885. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
  7886. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-15),math.rad(5),math.rad(50)),.3)
  7887. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-40),math.rad(20)),.3)
  7888. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(170),math.rad(10),math.rad(0)),.3)
  7889. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7890. end
  7891. OverCut = true
  7892. local orb = Instance.new("Part", char)
  7893. orb.Anchored = true
  7894. orb.BrickColor = BrickColor.new("Toothpaste")
  7895. orb.CanCollide = false
  7896. orb.FormFactor = 3
  7897. orb.Name = "Ring"
  7898. orb.Material = "Neon"
  7899. orb.Size = Vector3.new(1, 1, 1)
  7900. orb.Transparency = 0.5
  7901. orb.TopSurface = 0
  7902. orb.BottomSurface = 0
  7903. local orbm = Instance.new("SpecialMesh", orb)
  7904. orbm.MeshType = "FileMesh"
  7905. orbm.MeshId = "rbxassetid://361629844"
  7906. orbm.Scale = vt(30,60,60)
  7907. orb.CFrame = root.CFrame*CFrame.new(0,50,0)
  7908. for i = 0, 24 do
  7909. 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"))
  7910. end
  7911. sphere2(2,"Add",orb.CFrame,vt(10,10,10),0.5,0.5,0.5,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7912. sphere2(3,"Add",orb.CFrame,vt(10,10,10),0.75,0.75,0.75,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7913. sphere2(4,"Add",orb.CFrame,vt(10,10,10),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7914. CFuncs["Sound"].Create("rbxassetid://1368637781", orb, 7.5, 1)
  7915. local a = Instance.new("Part",workspace)
  7916. a.Name = "Direction"
  7917. a.Anchored = true
  7918. a.Transparency = 1
  7919. a.CanCollide = false
  7920. local ray = Ray.new(
  7921. orb.CFrame.p, -- origin
  7922. (mouse.Hit.p - orb.CFrame.p).unit * 500 -- direction
  7923. )
  7924. local ignore = orb
  7925. local hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  7926. a.BottomSurface = 10
  7927. a.TopSurface = 10
  7928. local distance = (orb.CFrame.p - position).magnitude
  7929. a.Size = Vector3.new(0.1, 0.1, 0.1)
  7930. a.CFrame = CFrame.new(orb.CFrame.p, position) * CFrame.new(0, 0, 0)
  7931. orb.CFrame = a.CFrame
  7932. for i = 0, 8, 0.1 do
  7933. swait()
  7934. 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)
  7935. ray = Ray.new(
  7936. orb.CFrame.p, -- origin
  7937. (mouse.Hit.p - orb.CFrame.p).unit * 500 -- direction
  7938. )
  7939. hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  7940. distance = (orb.CFrame.p - position).magnitude
  7941. a.CFrame = CFrame.new(orb.CFrame.p, position) * CFrame.new(0, 0, 0)
  7942. orb.CFrame = a.CFrame
  7943. 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"))
  7944. cam.CFrame = lerp(cam.CFrame, root.CFrame * cf(20, 65, 55) * ceuler(math.rad(-20), math.rad(0), math.rad(10)), 0.2)
  7945. 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)
  7946. 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)
  7947. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  7948. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  7949. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-20),math.rad(20)),.3)
  7950. LW.C0=clerp(LW.C0,cf(-1.25,0.5,-0.5)*angles(math.rad(100),math.rad(0),math.rad(60)),.3)
  7951. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7952. end
  7953. cam.CameraType = "Custom"
  7954. orb.Anchored = false
  7955. a:Destroy()
  7956. local bv = Instance.new("BodyVelocity")
  7957. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  7958. bv.velocity = orb.CFrame.lookVector*250
  7959. bv.Parent = orb
  7960. local hitted = false
  7961. CFuncs["Sound"].Create("rbxassetid://466493476", orb, 7.5, 0.7)
  7962. 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"))
  7963. 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"))
  7964. coroutine.resume(coroutine.create(function()
  7965. while true do
  7966. swait(2)
  7967. if hitted == false and orb.Parent ~= nil then
  7968. 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"))
  7969. elseif hitted == true and orb.Parent == nil then
  7970. break
  7971. end
  7972. end
  7973. end))
  7974. orb.Touched:connect(function(hit)
  7975. if hitted == false and hit.Parent ~= char then
  7976. hitted = true
  7977. MagniDamage(orb, 30, 72,95, 0, "Normal",153092213)
  7978. CFuncs["Sound"].Create("rbxassetid://763717897", orb, 10, 1)
  7979. CFuncs["Sound"].Create("rbxassetid://1295446488", orb, 9, 0.75)
  7980. for i = 0, 24 do
  7981. 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"))
  7982. end
  7983. 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"))
  7984. 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"))
  7985. sphere2(1,"Add",orb.CFrame,vt(10,10,10),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7986. 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)
  7987. sphere2(2,"Add",orb.CFrame,vt(10,10,10),1.2,1.2,1.2,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7988. orb.Anchored = true
  7989. orb.Transparency = 1
  7990. coroutine.resume(coroutine.create(function()
  7991. for i = 0, 4, 0.1 do
  7992. swait()
  7993. 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"))
  7994. hum.CameraOffset = vt(math.random(-10,10)/25,math.random(-10,10)/25,math.random(-10,10)/25)
  7995. end
  7996. hum.CameraOffset = vt(0,0,0)
  7997. end))
  7998. wait(10)
  7999. orb:Destroy()
  8000. end
  8001. end)
  8002. game:GetService("Debris"):AddItem(orb, 10)
  8003. for i = 0, 2, 0.1 do
  8004. swait()
  8005. 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"))
  8006. 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)
  8007. 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)
  8008. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.4,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  8009. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  8010. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-40),math.rad(20)),.3)
  8011. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-80)),.3)
  8012. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  8013. end
  8014. attack = false
  8015. hum.WalkSpeed = 24
  8016. hum.JumpPower = 50
  8017. end
  8018.  
  8019. function bladespinagain()
  8020. attack = true
  8021. hum.WalkSpeed = 4
  8022. hum.JumpPower = 0
  8023. CFuncs["Sound"].Create("rbxassetid://1368598393", rarmor, 2, 1)
  8024. CFuncs["Sound"].Create("rbxassetid://1368583274", rarmor, 2.5, 1)
  8025. for x = 0, 9 do
  8026. 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"))
  8027. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 2, 1.05)
  8028. CFuncs["Sound"].Create("rbxassetid://234365573", rarmor, 2.5, 1.025)
  8029. for i = 0, 1, 0.6 do
  8030. swait()
  8031. 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)
  8032. 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)
  8033. 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"))
  8034. 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)
  8035. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8036. 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)
  8037. 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)
  8038. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  8039. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  8040. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  8041. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  8042. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  8043. end
  8044. 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"))
  8045. for i = 0, 1, 0.6 do
  8046. swait()
  8047. 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)
  8048. 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)
  8049. 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"))
  8050. 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)
  8051. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8052. 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)
  8053. 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)
  8054. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  8055. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  8056. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  8057. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  8058. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
  8059. end
  8060. 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"))
  8061. for i = 0, 1, 0.6 do
  8062. swait()
  8063. 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)
  8064. 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)
  8065. 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"))
  8066. 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)
  8067. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8068. 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)
  8069. 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)
  8070. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  8071. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  8072. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  8073. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  8074. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(0)),.3)
  8075. end
  8076. 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"))
  8077. for i = 0, 1, 0.6 do
  8078. swait()
  8079. 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)
  8080. 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)
  8081. 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"))
  8082. 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)
  8083. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8084. 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)
  8085. 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)
  8086. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  8087. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  8088. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  8089. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  8090. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(270),math.rad(0)),.3)
  8091. end
  8092. end
  8093. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  8094. hitb.Anchored = true
  8095. hitb.CFrame = root.CFrame + root.CFrame.lookVector*8
  8096. hitb.CFrame = hitb.CFrame*CFrame.new(0,1,0)
  8097. MagniDamage(hitb, 8, 92,158, 0, "Normal",153092213)
  8098. 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)
  8099. sphere2(5,"Add",hitb.CFrame,vt(2,2,2),-0.02,-0.02,4,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8100. for i = 0, 24 do
  8101. 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"))
  8102. end
  8103. CFuncs["Sound"].Create("rbxassetid://313205954", root, 4,1)
  8104. CFuncs["Sound"].Create("rbxassetid://1368637781", rarmor, 4,1)
  8105. CFuncs["Sound"].Create("rbxassetid://763718160", rarmor, 5, 1.1)
  8106. CFuncs["Sound"].Create("rbxassetid://782353443", rarmor, 6, 1)
  8107. --CFuncs["Sound"].Create("rbxassetid://1548538202", rarmor, 4,1)
  8108. for i = 0, 2, 0.1 do
  8109. swait()
  8110. MagniDamage(hitb, 8, 92,158, 0, "Normal",153092213)
  8111. hum.CameraOffset = vt(math.random(-10,10)/25,math.random(-10,10)/25,math.random(-10,10)/25)
  8112. 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)
  8113. 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)
  8114. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.5,0)*angles(math.rad(0),math.rad(0),math.rad(80)),.9)
  8115. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.9)
  8116. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(70)),.9)
  8117. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-60)),.9)
  8118. weaponweld.C1=clerp(weaponweld.C1,cf(2,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.9)
  8119. end
  8120. hum.CameraOffset = vt(0,0,0)
  8121. hitb:Destroy()
  8122. attack = false
  8123. hum.WalkSpeed = 24
  8124. hum.JumpPower = 50
  8125. end
  8126.  
  8127. function superjump()
  8128. attack = true
  8129. hum.WalkSpeed = 0
  8130. hum.JumpPower = 0
  8131. wng1a.Transparency = wng1a.Transparency - 1
  8132. wng1b.Transparency = wng1b.Transparency - 1
  8133. wng2a.Transparency = wng2a.Transparency - 1
  8134. wng2b.Transparency = wng2b.Transparency - 1
  8135. sphere2(5,"Add",root.CFrame,vt(1,1,1),1.5,1.5,1.5,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  8136. sphere2(5,"Add",root.CFrame,vt(1,1,1),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  8137. CFuncs["Sound"].Create("rbxassetid://1368637781", root, 7.5, 1)
  8138. for i = 0, 2, 0.1 do
  8139. swait()
  8140. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  8141. root.Velocity = vt(0,0,0)
  8142. 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"))
  8143. 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)
  8144. 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)
  8145. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.5,-1)*angles(math.rad(20),math.rad(0),math.rad(0)),.4)
  8146. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(0)),.4)
  8147. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(40)),.4)
  8148. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-40)),.4)
  8149. end
  8150. CFuncs["Sound"].Create("rbxassetid://477843807", root, 7, 1.05)
  8151. local lat1 = Instance.new("Attachment",larm)
  8152. lat1.Position = Vector3.new(1,-1,0.5)
  8153. local lat2 = Instance.new("Attachment",larm)
  8154. lat2.Position = Vector3.new(-1,-1,-0.5)
  8155. local rat1 = Instance.new("Attachment",rarm)
  8156. rat1.Position = Vector3.new(1,-1,-0.5)
  8157. local rat2 = Instance.new("Attachment",rarm)
  8158. rat2.Position = Vector3.new(-1,-1,0.5)
  8159. local tl1 = Instance.new('Trail',larm)
  8160. tl1.Attachment0 = lat1
  8161. tl1.Attachment1 = lat2
  8162. tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  8163. tl1.LightEmission = 1
  8164. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.05, 0),NumberSequenceKeypoint.new(1, 1)})
  8165. tl1.Color = ColorSequence.new(BrickColor.new('Royal purple').Color,BrickColor.new('Cyan').Color)
  8166. tl1.Lifetime = 5
  8167. local tl2 = tl1:Clone()
  8168. tl2.Attachment0 = rat1
  8169. tl2.Attachment1 = rat2
  8170. tl2.Parent = rarm
  8171. hum.JumpPower = 50
  8172. hum.Jump = true
  8173. swait()
  8174. hum.JumpPower = 0
  8175. root.Velocity = vt(0,250,0) + root.CFrame.lookVector*250
  8176. 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)
  8177. 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)
  8178. for i = 0, 49 do
  8179. 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"))
  8180. 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"))
  8181. end
  8182. coroutine.resume(coroutine.create(function()
  8183. for i = 0, 2, 0.1 do
  8184. swait()
  8185. hum.CameraOffset = vt(math.random(-10,10)/50,math.random(-10,10)/50,math.random(-10,10)/50)
  8186. end
  8187. hum.CameraOffset = vt(0,0,0)
  8188. wait(3)
  8189. tl1.Enabled = false
  8190. tl2.Enabled = false
  8191. game:GetService("Debris"):AddItem(tl1, 5)
  8192. game:GetService("Debris"):AddItem(tl2, 5)
  8193. game:GetService("Debris"):AddItem(rat1, 5)
  8194. game:GetService("Debris"):AddItem(rat2, 5)
  8195. game:GetService("Debris"):AddItem(lat1, 5)
  8196. game:GetService("Debris"):AddItem(lat2, 5)
  8197. end))
  8198. CFuncs["Sound"].Create("rbxassetid://1295446488", root, 10, 1)
  8199. for i = 0, 3, 0.1 do
  8200. swait()
  8201. 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)
  8202. 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)
  8203. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.75,0)*angles(math.rad(40),math.rad(0),math.rad(0)),.4)
  8204. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-20),math.rad(0),math.rad(0)),.4)
  8205. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-30),math.rad(0),math.rad(20)),.4)
  8206. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(-30),math.rad(0),math.rad(-20)),.4)
  8207. end
  8208. coroutine.resume(coroutine.create(function()
  8209. for i = 0, 99 do
  8210. swait()
  8211. wng1a.Transparency = wng1a.Transparency + 0.01
  8212. wng1b.Transparency = wng1b.Transparency + 0.01
  8213. wng2a.Transparency = wng2a.Transparency + 0.01
  8214. wng2b.Transparency = wng2b.Transparency + 0.01
  8215. end
  8216. end))
  8217. attack = false
  8218. if equipped == false then
  8219. hum.WalkSpeed = 16
  8220. else
  8221. hum.WalkSpeed = 24
  8222. end
  8223. hum.JumpPower = 50
  8224. end
  8225. ------------------
  8226.  
  8227.  
  8228. local attacktype = 1
  8229. mouse.Button1Down:connect(function()
  8230. if equipped == true then
  8231. if attack == false and attacktype == 1 then
  8232. attacktype = 2
  8233. attackone()
  8234. elseif attack == false and attacktype == 2 then
  8235. attacktype = 3
  8236. attacktwo()
  8237. elseif attack == false and attacktype == 3 then
  8238. attacktype = 1
  8239. attackthree()
  8240. --[[elseif attack == false and attacktype == 4 then
  8241. attacktype = 1
  8242. --attackfour()]]--
  8243. end
  8244. end
  8245. end)
  8246. mouse.KeyDown:connect(function(k)
  8247. if k == "f" and attack == false and equipped == false then
  8248. equip()
  8249. elseif k == "f" and attack == false and equipped == true then
  8250. unequip()
  8251. end
  8252. if k == "r" and attack == false then
  8253. superjump()
  8254. end
  8255. if equipped == true then
  8256. if k == "z" and attack == false then
  8257. spinnyblade()
  8258. end
  8259. if k == "bozo" and attack == false then
  8260. eightbitmegablade()
  8261. end
  8262. if k == "c" and attack == false then
  8263. bladespinagain()
  8264. end
  8265. end
  8266. if k == "l" and muter == false then
  8267. muter = true
  8268. kan.Volume = 0
  8269. elseif k == "l" and muter == true then
  8270. muter = false
  8271. kan.Volume = 1.25
  8272. end
  8273. end)
  8274. plr.Chatted:connect(function(message)
  8275. if message:sub(1,3) == "id/" then
  8276. ORGID = message:sub(4)
  8277. kan.TimePosition = 0
  8278. kan:Play()
  8279. elseif message:sub(1,6) == "pitch/" then
  8280. ORPIT = message:sub(7)
  8281. elseif message:sub(1,4) == "vol/" then
  8282. ORVOL = message:sub(5)
  8283. elseif message:sub(1,7) == "skipto/" then
  8284. kan.TimePosition = message:sub(8)
  8285. end
  8286. end)
  8287.  
  8288. idleanim=.4
  8289. while true do
  8290. swait()
  8291. if muter == false then
  8292. kan.Volume = ORVOL
  8293. else
  8294. kan.Volume = 0
  8295. end
  8296. kan.PlaybackSpeed = ORPIT
  8297. kan.Pitch = ORPIT
  8298. kan.SoundId = "rbxassetid://" ..ORGID
  8299. kan.Looped = true
  8300. kan.Parent = plr.PlayerGui
  8301. kan:Resume()
  8302. techc.Rotation = techc.Rotation + 0.1
  8303. imgl2.Rotation = imgl2.Rotation - kan.PlaybackLoudness/50
  8304. imgl2.ImageColor3 = Color3.new(0.15 + kan.PlaybackLoudness/2500,0,0.6 + kan.PlaybackLoudness/1000)
  8305. imgl2b.Rotation = imgl2b.Rotation + kan.PlaybackLoudness/25
  8306. imgl2b.ImageColor3 = Color3.new(0,0.3 + kan.PlaybackLoudness/1500,0.6 + kan.PlaybackLoudness/1000)
  8307. ned.Rotation = 0 - 2 * math.cos(sine / 24)
  8308. ned.Position = UDim2.new(0.6,0 - 10 * math.cos(sine / 32),0.8,0 - 10 * math.cos(sine / 45))
  8309. sine = sine + change
  8310. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  8311. local velderp=RootPart.Velocity.y
  8312. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  8313. if equipped==true or equipped==false then
  8314. if attack==false then
  8315. idle=idle+1
  8316. else
  8317. idle=0
  8318. end
  8319. if idle>=500 then
  8320. if attack==false then
  8321. --Sheath()
  8322. end
  8323. end
  8324. if RootPart.Velocity.y > 1 and hitfloor==nil then
  8325. Anim="Jump"
  8326. if attack==false then
  8327. 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)
  8328. 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)
  8329. 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)
  8330. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-2.5),math.rad(0),math.rad(0)),.1)
  8331. 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)
  8332. 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)
  8333. if equipped == false then
  8334. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  8335. else
  8336. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  8337. end
  8338. end
  8339. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  8340. Anim="Fall"
  8341. if attack==false then
  8342. 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)
  8343. 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)
  8344. 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)
  8345. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2.5),math.rad(0),math.rad(0)),.1)
  8346. 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)
  8347. 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)
  8348. if equipped == false then
  8349. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  8350. else
  8351. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  8352. end
  8353. end
  8354. elseif torvel<1 and hitfloor~=nil then
  8355. Anim="Idle"
  8356. if attack==false then
  8357. if equipped == false then
  8358. 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)
  8359. 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)
  8360. 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)
  8361. 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)
  8362. 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)
  8363. 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)
  8364. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  8365. else
  8366. 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)
  8367. 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)
  8368. 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)
  8369. 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)
  8370. 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)
  8371. 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)
  8372. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  8373. end
  8374. end
  8375. elseif torvel>2 and torvel<42 and hitfloor~=nil then
  8376. Anim="Walk"
  8377. if attack==false then
  8378. if equipped == false then
  8379. 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)
  8380. 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)
  8381. 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)
  8382. 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)
  8383. 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)
  8384. 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)
  8385. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  8386. else
  8387. 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)
  8388. 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)
  8389. 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)
  8390. 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)
  8391. 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)
  8392. 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)
  8393. 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)
  8394. end
  8395. end
  8396. elseif torvel>=42 and hitfloor~=nil then
  8397. Anim="Run"
  8398. if attack==false then
  8399. 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)
  8400. 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)
  8401. 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)
  8402. 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)
  8403. 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)
  8404. 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)
  8405. end
  8406. end
  8407. end
  8408. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement