Advertisement
Guest User

FakeMouseMainConvert

a guest
Oct 14th, 2019
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 401.48 KB | None | 0 0
  1. wait'0.5'
  2. local RealPlayer = script.Parent.Parent
  3. local FakeMouse = script.FakeMouse:Clone();
  4. FakeMouse.Parent = RealPlayer.Character;
  5. script.FakeMouse:Destroy()
  6. do
  7. local GUID = {}
  8. do
  9. GUID.IDs = {};
  10. function GUID:new(len)
  11. local id;
  12. if(not len)then
  13. id = (tostring(function() end))
  14. id = id:gsub("function: ","")
  15. else
  16. local function genID(len)
  17. local newID = ""
  18. for i = 1,len do
  19. newID = newID..string.char(math.random(48,90))
  20. end
  21. return newID
  22. end
  23. repeat id = genID(len) until not GUID.IDs[id]
  24. local oid = id;
  25. id = {Trash=function() GUID.IDs[oid]=nil; end;Get=function() return oid; end}
  26. GUID.IDs[oid]=true;
  27. end
  28. return id
  29. end
  30. end
  31.  
  32. local AHB = Instance.new("BindableEvent")
  33.  
  34. local FPS = 30
  35.  
  36. local TimeFrame = 0
  37.  
  38. local LastFrame = tick()
  39. local Frame = 1/FPS
  40.  
  41. game:service'RunService'.Heartbeat:connect(function(s,p)
  42. TimeFrame = TimeFrame + s
  43. if(TimeFrame >= Frame)then
  44. for i = 1,math.floor(TimeFrame/Frame) do
  45. AHB:Fire()
  46. end
  47. LastFrame=tick()
  48. TimeFrame=TimeFrame-Frame*math.floor(TimeFrame/Frame)
  49. end
  50. end)
  51.  
  52.  
  53. function swait(dur)
  54. if(dur == 0 or typeof(dur) ~= 'number')then
  55. AHB.Event:wait()
  56. else
  57. for i = 1, dur*FPS do
  58. AHB.Event:wait()
  59. end
  60. end
  61. end
  62.  
  63. local oPlayer = RealPlayer
  64. local Player = oPlayer
  65.  
  66. local loudnesses={}
  67. script.Parent = Player.Character
  68. local CoAS = {Actions={}}
  69. local Event = Instance.new("RemoteEvent")
  70. Event.Name = "UserInputEvent"
  71. Event.Parent = Player.Character
  72. local Func = Instance.new("RemoteFunction")
  73. Func.Name = "GetClientProperty"
  74. Func.Parent = Player.Character
  75. local fakeEvent = function()
  76. local t = {_fakeEvent=true,Waited={},Connected={}}
  77. t.Connect = function(self,f)
  78. local ft={}
  79. ft={Disconnected=false;disconnect=function(s) if(self.Function==ft)then self.Function=nil end s.Disconnected=true end}
  80. ft.Disconnect=ft.disconnect
  81.  
  82. ft.Func=function(...)
  83. for id,_ in next, t.Waited do
  84. t.Waited[id] = true
  85. end
  86. return f(...)
  87. end;
  88.  
  89. table.insert(self.Connected,ft)
  90. return ft;
  91. end
  92. t.connect = t.Connect
  93. t.Wait = function()
  94. local guid = GUID:new(25)
  95. local waitingId = guid:Get()
  96. t.Waited[waitingId]=false
  97. repeat swait() until t.Waited[waitingId]==true
  98. t.Waited[waitingId]=nil;
  99. guid:Trash()
  100. end
  101. t.wait = t.Wait
  102. return t
  103. end
  104. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  105. local UsIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  106. local Run = {RenderStepped=fakeEvent()}
  107.  
  108. function CoAS:BindAction(name,fun,touch,...)
  109. CoAS.Actions[name] = {Name=name,Function=fun,Keys={...}}
  110. end
  111. function CoAS:UnbindAction(name)
  112. CoAS.Actions[name] = nil
  113. end
  114. local function te(self,ev,...)
  115. local t = self[ev]
  116. if t and t._fakeEvent and t.Connected then
  117. for i,v in next, t.Connected do
  118. if(v.Func and not v.Disconnected)then
  119. v.Func(...)
  120. else
  121. t.Connected[i]=nil
  122. end
  123. end
  124. end
  125. end
  126. m.TrigEvent = te
  127. UsIS.TrigEvent = te
  128. Run.TrigEvent = te
  129. Event.OnServerEvent:Connect(function(plr,io)
  130. if plr~=Player then return end
  131. --[[table.foreach(io,print)
  132. print'---']]
  133. if io.Mouse then
  134. m.Target = io.Target
  135. m.Hit = io.Hit
  136. elseif io.KeyEvent then
  137. m:TrigEvent('Key'..io.KeyEvent,io.Key)
  138. elseif io.UserInputType == Enum.UserInputType.MouseButton1 then
  139. if io.UserInputState == Enum.UserInputState.Begin then
  140. m:TrigEvent("Button1Down")
  141. else
  142. m:TrigEvent("Button1Up")
  143. end
  144. end
  145. if(not io.KeyEvent and not io.Mouse)then
  146.  
  147. for n,t in pairs(CoAS.Actions) do
  148. for _,k in pairs(t.Keys) do
  149. if k==io.KeyCode then
  150. t.Function(t.Name,io.UserInputState,io)
  151. end
  152. end
  153. end
  154. if io.UserInputState == Enum.UserInputState.Begin then
  155. UsIS:TrigEvent("InputBegan",io,false)
  156. else
  157. UsIS:TrigEvent("InputEnded",io,false)
  158. end
  159. end
  160. end)
  161.  
  162. Func.OnServerInvoke = function(plr,inst,play)
  163. if plr~=Player then return end
  164. if(inst and typeof(inst) == 'Instance' and inst:IsA'Sound')then
  165. loudnesses[inst]=play
  166. end
  167. end
  168.  
  169. function GetClientProperty(inst,prop)
  170. if(prop == 'PlaybackLoudness' and loudnesses[inst])then
  171. return loudnesses[inst]
  172. elseif(prop == 'PlaybackLoudness')then
  173. return Func:InvokeClient(Player,'RegSound',inst)
  174. end
  175. return Func:InvokeClient(Player,inst,prop)
  176. end
  177. local oldGame = game;
  178. local oldPlayer = Player;
  179. local fakePlayer = newproxy(true)
  180. getmetatable(fakePlayer).__index = function(s,i)
  181. if(i == 'GetMouse')then
  182. return function() return m; end
  183. end
  184. return Player[i]
  185. end
  186. getmetatable(fakePlayer).__newindex = function(s,i,v)
  187. Player[i]=v
  188. end
  189. getmetatable(fakePlayer).__call=function(self,...)
  190. if(self == fakePlayer)then self = Player end
  191. local wh = {...}
  192. local name = table.remove(wh,1)
  193. for i,v in next, wh do
  194. wh[i]=v
  195. end
  196. if(name == 'GetMouse')then
  197. return m;
  198. end
  199. return self(name,unpack(wh))
  200. end
  201. getmetatable(fakePlayer).__namecall=function(self,...)
  202. if(self == fakePlayer)then self = Player end
  203. local tuple={...}
  204. local name = table.remove(tuple,#tuple)
  205.  
  206. if(name == 'GetMouse')then
  207. return m;
  208. else
  209. return self[name](self,unpack(tuple))
  210. end
  211. end
  212. local oll = LoadLibrary;
  213. function LoadLibrary(libtard)
  214. local libtarddestroyed=oll(libtard)
  215. if(libtard=='RbxUtility')then
  216. local library={Create=function(obj)
  217. local inst = Instance.new(obj)
  218. return function(props)
  219. for prop,valu in next, props do
  220. inst[prop]=valu
  221. end
  222. return inst
  223. end
  224. end}
  225. setmetatable(library,{__index=libtarddestroyed,__newindex=function(s,i,v) libtarddestroyed[i]=v end})
  226.  
  227. return library
  228. else
  229. return libtarddestroyed
  230. end
  231. end
  232. local function GetService(s,i)
  233. local service = s:GetService(i)
  234. if(i == 'Players')then
  235. local oldService = service;
  236. local fakeService = newproxy(true)
  237. getmetatable(fakeService).__index = function(s,i)
  238. if(s == fakeService)then s=oldService end
  239. if(i == 'LocalPlayer' or i == 'localPlayer')then
  240. return fakePlayer
  241. elseif(i == 'oPlayer')then
  242. return oPlayer
  243. else
  244. return s[i]
  245. end
  246. end
  247. getmetatable(fakeService).__newindex = function(s,i,v)
  248. if(s == fakeService)then s=oldService end
  249. s[i]=v
  250. end
  251. getmetatable(fakeService).__call=function(self,...)
  252. if(self == fakeService)then self = oldService end
  253. local wh = {...}
  254. local name = table.remove(wh,1)
  255. for i,v in next, wh do
  256. wh[i]=v
  257. end
  258. return self(name,unpack(wh))
  259. end
  260. getmetatable(fakeService).__namecall=function(self,...)
  261. if(self == fakeService)then self = oldService end
  262. local tuple={...}
  263. local name = table.remove(tuple,#tuple)
  264.  
  265. return self[name](self,unpack(tuple))
  266. end
  267. getmetatable(fakeService).__metatable = 'gay'
  268. return fakeService
  269. elseif(i == 'RunService')then
  270. local oldService = service;
  271. local fakeService = newproxy(true)
  272. getmetatable(fakeService).__index = function(s,i)
  273. if(s == fakeService)then s=oldService end
  274. return Run[i] or s[i]
  275. end
  276. getmetatable(fakeService).__newindex = function(s,i,v)
  277. if(s == fakeService)then s=oldService end
  278. s[i]=v
  279. end
  280. getmetatable(fakeService).__call=function(self,...)
  281. if(self == fakeService)then self = oldService end
  282. local wh = {...}
  283. local name = table.remove(wh,1)
  284. for i,v in next, wh do
  285. wh[i]=v
  286. end
  287. return self(name,unpack(wh))
  288. end
  289. getmetatable(fakeService).__namecall=function(self,...)
  290. if(self == fakeService)then self = oldService end
  291. local tuple={...}
  292. local name = table.remove(tuple,#tuple)
  293.  
  294. return self[name](self,unpack(tuple))
  295. end
  296. getmetatable(fakeService).__metatable = 'gay'
  297. return fakeService
  298. elseif(i == 'UserInputService')then
  299. return UsIS
  300. elseif(i == 'ContextActionService')then
  301. return CoAS;
  302. else
  303. return service
  304. end
  305. end
  306.  
  307. local new = Instance.new;
  308. Instance = {}
  309. Instance.new = function(inst,obje)
  310. local lp = GetService(oldGame,'Players').localPlayer
  311. local instance = new(inst)
  312. if(inst=='ObjectValue')then
  313. local fake = newproxy(true)
  314. getmetatable(fake).__index=function(self,index)
  315. if(self==fake)then self=instance end
  316. return self[index]
  317. end
  318. getmetatable(fake).__newindex=function(self,index,value)
  319. if(self==fake)then self=instance end
  320. if(index=='Value' and typeof(value)~='Instance' and value==fakePlayer)then
  321. self[index]=oPlayer
  322. else
  323. self[index]=value
  324. end
  325. end
  326. getmetatable(fake).__call=function(self,...)
  327. if(self == fake)then self = instance end
  328. local wh = {...}
  329. local name = table.remove(wh,1)
  330. for i,v in next, wh do
  331. if(v == fake)then v = instance end
  332. wh[i]=v
  333. end
  334. return self(name,unpack(wh))
  335. end
  336. getmetatable(fake). __namecall=function(self,...)
  337. if(self == fake)then self = instance end
  338. local tuple={...}
  339. local name = table.remove(tuple,#tuple)
  340. return self[name](self,unpack(tuple))
  341. end
  342. return fake
  343. else
  344. instance.Parent = obje
  345. return instance;
  346. end
  347.  
  348. end
  349. local serviceFunctions={
  350. service=true,
  351. GetService=true,
  352. }
  353. local fakeGame = newproxy(true)
  354. getmetatable(fakeGame).__index = function(s,i)
  355. if(s == fakeGame)then s=oldGame end
  356. local serv = GetService(oldGame,i)
  357. if serviceFunctions[i] then
  358. return GetService
  359. elseif(serv)then
  360. return serv
  361. else
  362. return s[i]
  363. end
  364. end
  365. getmetatable(fakeGame).__newindex = function(s,i,v)
  366. if(s == fakeGame)then s=oldGame end
  367. s[i]=v
  368. end
  369. getmetatable(fakeGame).__call=function(self,...)
  370. if(self == fakeGame)then self = oldGame end
  371. local wh = {...}
  372. local name = table.remove(wh,1)
  373. for i,v in next, wh do
  374. if(v == fakeGame)then v = oldGame end
  375. wh[i]=v
  376. end
  377. if serviceFunctions[name] then
  378. return GetService(self,unpack(wh))
  379. else
  380. return self(name,unpack(wh))
  381. end
  382. end
  383. getmetatable(fakeGame). __namecall=function(self,...)
  384. if(self == fakeGame)then self = oldGame end
  385. local tuple={...}
  386. local name = table.remove(tuple,#tuple)
  387.  
  388. local funcToCall=self[name]
  389.  
  390. if serviceFunctions[name] then
  391. return GetService(self,unpack(tuple))
  392. else
  393. return self[name](self,unpack(tuple))
  394. end
  395. end
  396. getmetatable(fakeGame).__metatable = 'gay'
  397.  
  398. coroutine.wrap(function()
  399. while true do
  400. Run:TrigEvent('RenderStepped')
  401. swait()
  402. end
  403. end)()
  404. game=fakeGame
  405. UserInputService,ContextActionService = UsIS,CoAS
  406. end
  407. -- PUT SCRIPT UNDER THIS LINE OF CODE AND UPLOAD IT TO ROBLOX TO CONVERT IT DONT MESS WITH THE CODE PLEASE
  408. --- Did actually rework heavily away from original neptunian, and the non-rework neptunian. --NoobyGames12
  409. --- Was supposed to be for the770zone, or VengefulProgram.
  410.  
  411. warn'Neptune/Neptunian V'
  412. warn[[Absolutely.
  413.  
  414. Created by NoobyGames12
  415. ----------------------------]]
  416.  
  417. print[[Set your theme by:
  418. id/
  419. vol/
  420. pitch/
  421. You can skip through the position of theme by:
  422. skipto/]]
  423.  
  424. warn("Have fun using this!")
  425. ---- DO NOT CHANGE ANYTHING BELOW IF YOU'RE NOT AN EDITOR
  426.  
  427.  
  428. --Converted with ttyyuu12345's model to script plugin v4
  429. function sandbox(var,func)
  430. local env = getfenv(func)
  431. local newenv = setmetatable({},{
  432. __index = function(self,k)
  433. if k=="script" then
  434. return var
  435. else
  436. return env[k]
  437. end
  438. end,
  439. })
  440. setfenv(func,newenv)
  441. return func
  442. end
  443. cors = {}
  444. mas = Instance.new("Model",game:GetService("Lighting"))
  445. Model0 = Instance.new("Model")
  446. Part1 = Instance.new("Part")
  447. SpecialMesh2 = Instance.new("SpecialMesh")
  448. Part3 = Instance.new("Part")
  449. SpecialMesh4 = Instance.new("SpecialMesh")
  450. Weld5 = Instance.new("Weld")
  451. Weld6 = Instance.new("Weld")
  452. Weld7 = Instance.new("Weld")
  453. Weld8 = Instance.new("Weld")
  454. Weld9 = Instance.new("Weld")
  455. Weld10 = Instance.new("Weld")
  456. Weld11 = Instance.new("Weld")
  457. Weld12 = Instance.new("Weld")
  458. Weld13 = Instance.new("Weld")
  459. Weld14 = Instance.new("Weld")
  460. Weld15 = Instance.new("Weld")
  461. Weld16 = Instance.new("Weld")
  462. Weld17 = Instance.new("Weld")
  463. Weld18 = Instance.new("Weld")
  464. Weld19 = Instance.new("Weld")
  465. Weld20 = Instance.new("Weld")
  466. Weld21 = Instance.new("Weld")
  467. Weld22 = Instance.new("Weld")
  468. Weld23 = Instance.new("Weld")
  469. Weld24 = Instance.new("Weld")
  470. Weld25 = Instance.new("Weld")
  471. Weld26 = Instance.new("Weld")
  472. Weld27 = Instance.new("Weld")
  473. Weld28 = Instance.new("Weld")
  474. Weld29 = Instance.new("Weld")
  475. Weld30 = Instance.new("Weld")
  476. Weld31 = Instance.new("Weld")
  477. Weld32 = Instance.new("Weld")
  478. Weld33 = Instance.new("Weld")
  479. Weld34 = Instance.new("Weld")
  480. Weld35 = Instance.new("Weld")
  481. Weld36 = Instance.new("Weld")
  482. Weld37 = Instance.new("Weld")
  483. Weld38 = Instance.new("Weld")
  484. Weld39 = Instance.new("Weld")
  485. Weld40 = Instance.new("Weld")
  486. Weld41 = Instance.new("Weld")
  487. Weld42 = Instance.new("Weld")
  488. Weld43 = Instance.new("Weld")
  489. Weld44 = Instance.new("Weld")
  490. Weld45 = Instance.new("Weld")
  491. Weld46 = Instance.new("Weld")
  492. Weld47 = Instance.new("Weld")
  493. Weld48 = Instance.new("Weld")
  494. Weld49 = Instance.new("Weld")
  495. Weld50 = Instance.new("Weld")
  496. Weld51 = Instance.new("Weld")
  497. Weld52 = Instance.new("Weld")
  498. Weld53 = Instance.new("Weld")
  499. Weld54 = Instance.new("Weld")
  500. Weld55 = Instance.new("Weld")
  501. Weld56 = Instance.new("Weld")
  502. Weld57 = Instance.new("Weld")
  503. Weld58 = Instance.new("Weld")
  504. Weld59 = Instance.new("Weld")
  505. Weld60 = Instance.new("Weld")
  506. Weld61 = Instance.new("Weld")
  507. Weld62 = Instance.new("Weld")
  508. Weld63 = Instance.new("Weld")
  509. Weld64 = Instance.new("Weld")
  510. Weld65 = Instance.new("Weld")
  511. Weld66 = Instance.new("Weld")
  512. Weld67 = Instance.new("Weld")
  513. Weld68 = Instance.new("Weld")
  514. Weld69 = Instance.new("Weld")
  515. Weld70 = Instance.new("Weld")
  516. Weld71 = Instance.new("Weld")
  517. Weld72 = Instance.new("Weld")
  518. Weld73 = Instance.new("Weld")
  519. Weld74 = Instance.new("Weld")
  520. Weld75 = Instance.new("Weld")
  521. Weld76 = Instance.new("Weld")
  522. Weld77 = Instance.new("Weld")
  523. Weld78 = Instance.new("Weld")
  524. Weld79 = Instance.new("Weld")
  525. Weld80 = Instance.new("Weld")
  526. Weld81 = Instance.new("Weld")
  527. Weld82 = Instance.new("Weld")
  528. Weld83 = Instance.new("Weld")
  529. Weld84 = Instance.new("Weld")
  530. Weld85 = Instance.new("Weld")
  531. Weld86 = Instance.new("Weld")
  532. Weld87 = Instance.new("Weld")
  533. Weld88 = Instance.new("Weld")
  534. Weld89 = Instance.new("Weld")
  535. Weld90 = Instance.new("Weld")
  536. Weld91 = Instance.new("Weld")
  537. Weld92 = Instance.new("Weld")
  538. Weld93 = Instance.new("Weld")
  539. Weld94 = Instance.new("Weld")
  540. Weld95 = Instance.new("Weld")
  541. Weld96 = Instance.new("Weld")
  542. Weld97 = Instance.new("Weld")
  543. Weld98 = Instance.new("Weld")
  544. Weld99 = Instance.new("Weld")
  545. Weld100 = Instance.new("Weld")
  546. Weld101 = Instance.new("Weld")
  547. Weld102 = Instance.new("Weld")
  548. Weld103 = Instance.new("Weld")
  549. Weld104 = Instance.new("Weld")
  550. Weld105 = Instance.new("Weld")
  551. Weld106 = Instance.new("Weld")
  552. Weld107 = Instance.new("Weld")
  553. Weld108 = Instance.new("Weld")
  554. Weld109 = Instance.new("Weld")
  555. Weld110 = Instance.new("Weld")
  556. Weld111 = Instance.new("Weld")
  557. Weld112 = Instance.new("Weld")
  558. Weld113 = Instance.new("Weld")
  559. Weld114 = Instance.new("Weld")
  560. Weld115 = Instance.new("Weld")
  561. Weld116 = Instance.new("Weld")
  562. Weld117 = Instance.new("Weld")
  563. Weld118 = Instance.new("Weld")
  564. Weld119 = Instance.new("Weld")
  565. Weld120 = Instance.new("Weld")
  566. Weld121 = Instance.new("Weld")
  567. Weld122 = Instance.new("Weld")
  568. Weld123 = Instance.new("Weld")
  569. Weld124 = Instance.new("Weld")
  570. Weld125 = Instance.new("Weld")
  571. Weld126 = Instance.new("Weld")
  572. Weld127 = Instance.new("Weld")
  573. Weld128 = Instance.new("Weld")
  574. Weld129 = Instance.new("Weld")
  575. Weld130 = Instance.new("Weld")
  576. Weld131 = Instance.new("Weld")
  577. Weld132 = Instance.new("Weld")
  578. Weld133 = Instance.new("Weld")
  579. Weld134 = Instance.new("Weld")
  580. Weld135 = Instance.new("Weld")
  581. Weld136 = Instance.new("Weld")
  582. Weld137 = Instance.new("Weld")
  583. Weld138 = Instance.new("Weld")
  584. Weld139 = Instance.new("Weld")
  585. Weld140 = Instance.new("Weld")
  586. Weld141 = Instance.new("Weld")
  587. Weld142 = Instance.new("Weld")
  588. Weld143 = Instance.new("Weld")
  589. Weld144 = Instance.new("Weld")
  590. Weld145 = Instance.new("Weld")
  591. Weld146 = Instance.new("Weld")
  592. Weld147 = Instance.new("Weld")
  593. Weld148 = Instance.new("Weld")
  594. Weld149 = Instance.new("Weld")
  595. Weld150 = Instance.new("Weld")
  596. Weld151 = Instance.new("Weld")
  597. Weld152 = Instance.new("Weld")
  598. Weld153 = Instance.new("Weld")
  599. Weld154 = Instance.new("Weld")
  600. Weld155 = Instance.new("Weld")
  601. Weld156 = Instance.new("Weld")
  602. Weld157 = Instance.new("Weld")
  603. Weld158 = Instance.new("Weld")
  604. Weld159 = Instance.new("Weld")
  605. Weld160 = Instance.new("Weld")
  606. Weld161 = Instance.new("Weld")
  607. Weld162 = Instance.new("Weld")
  608. Part163 = Instance.new("Part")
  609. SpecialMesh164 = Instance.new("SpecialMesh")
  610. Part165 = Instance.new("Part")
  611. SpecialMesh166 = Instance.new("SpecialMesh")
  612. Part167 = Instance.new("Part")
  613. SpecialMesh168 = Instance.new("SpecialMesh")
  614. Part169 = Instance.new("Part")
  615. SpecialMesh170 = Instance.new("SpecialMesh")
  616. Part171 = Instance.new("Part")
  617. SpecialMesh172 = Instance.new("SpecialMesh")
  618. Part173 = Instance.new("Part")
  619. SpecialMesh174 = Instance.new("SpecialMesh")
  620. Part175 = Instance.new("Part")
  621. SpecialMesh176 = Instance.new("SpecialMesh")
  622. Part177 = Instance.new("Part")
  623. SpecialMesh178 = Instance.new("SpecialMesh")
  624. Part179 = Instance.new("Part")
  625. SpecialMesh180 = Instance.new("SpecialMesh")
  626. Part181 = Instance.new("Part")
  627. SpecialMesh182 = Instance.new("SpecialMesh")
  628. Part183 = Instance.new("Part")
  629. SpecialMesh184 = Instance.new("SpecialMesh")
  630. Part185 = Instance.new("Part")
  631. SpecialMesh186 = Instance.new("SpecialMesh")
  632. Part187 = Instance.new("Part")
  633. SpecialMesh188 = Instance.new("SpecialMesh")
  634. Part189 = Instance.new("Part")
  635. SpecialMesh190 = Instance.new("SpecialMesh")
  636. Part191 = Instance.new("Part")
  637. SpecialMesh192 = Instance.new("SpecialMesh")
  638. Part193 = Instance.new("Part")
  639. SpecialMesh194 = Instance.new("SpecialMesh")
  640. Part195 = Instance.new("Part")
  641. SpecialMesh196 = Instance.new("SpecialMesh")
  642. Part197 = Instance.new("Part")
  643. SpecialMesh198 = Instance.new("SpecialMesh")
  644. Part199 = Instance.new("Part")
  645. SpecialMesh200 = Instance.new("SpecialMesh")
  646. Part201 = Instance.new("Part")
  647. SpecialMesh202 = Instance.new("SpecialMesh")
  648. Part203 = Instance.new("Part")
  649. SpecialMesh204 = Instance.new("SpecialMesh")
  650. Part205 = Instance.new("Part")
  651. SpecialMesh206 = Instance.new("SpecialMesh")
  652. Part207 = Instance.new("Part")
  653. SpecialMesh208 = Instance.new("SpecialMesh")
  654. Part209 = Instance.new("Part")
  655. SpecialMesh210 = Instance.new("SpecialMesh")
  656. Part211 = Instance.new("Part")
  657. SpecialMesh212 = Instance.new("SpecialMesh")
  658. Part213 = Instance.new("Part")
  659. SpecialMesh214 = Instance.new("SpecialMesh")
  660. Part215 = Instance.new("Part")
  661. SpecialMesh216 = Instance.new("SpecialMesh")
  662. Part217 = Instance.new("Part")
  663. SpecialMesh218 = Instance.new("SpecialMesh")
  664. Part219 = Instance.new("Part")
  665. SpecialMesh220 = Instance.new("SpecialMesh")
  666. Part221 = Instance.new("Part")
  667. SpecialMesh222 = Instance.new("SpecialMesh")
  668. Part223 = Instance.new("Part")
  669. SpecialMesh224 = Instance.new("SpecialMesh")
  670. Part225 = Instance.new("Part")
  671. SpecialMesh226 = Instance.new("SpecialMesh")
  672. Part227 = Instance.new("Part")
  673. SpecialMesh228 = Instance.new("SpecialMesh")
  674. Part229 = Instance.new("Part")
  675. SpecialMesh230 = Instance.new("SpecialMesh")
  676. Part231 = Instance.new("Part")
  677. SpecialMesh232 = Instance.new("SpecialMesh")
  678. Part233 = Instance.new("Part")
  679. SpecialMesh234 = Instance.new("SpecialMesh")
  680. Part235 = Instance.new("Part")
  681. SpecialMesh236 = Instance.new("SpecialMesh")
  682. Part237 = Instance.new("Part")
  683. SpecialMesh238 = Instance.new("SpecialMesh")
  684. Part239 = Instance.new("Part")
  685. SpecialMesh240 = Instance.new("SpecialMesh")
  686. Part241 = Instance.new("Part")
  687. SpecialMesh242 = Instance.new("SpecialMesh")
  688. Part243 = Instance.new("Part")
  689. SpecialMesh244 = Instance.new("SpecialMesh")
  690. Part245 = Instance.new("Part")
  691. SpecialMesh246 = Instance.new("SpecialMesh")
  692. Part247 = Instance.new("Part")
  693. SpecialMesh248 = Instance.new("SpecialMesh")
  694. Part249 = Instance.new("Part")
  695. SpecialMesh250 = Instance.new("SpecialMesh")
  696. Part251 = Instance.new("Part")
  697. SpecialMesh252 = Instance.new("SpecialMesh")
  698. Part253 = Instance.new("Part")
  699. SpecialMesh254 = Instance.new("SpecialMesh")
  700. Part255 = Instance.new("Part")
  701. SpecialMesh256 = Instance.new("SpecialMesh")
  702. Part257 = Instance.new("Part")
  703. SpecialMesh258 = Instance.new("SpecialMesh")
  704. Part259 = Instance.new("Part")
  705. SpecialMesh260 = Instance.new("SpecialMesh")
  706. Part261 = Instance.new("Part")
  707. SpecialMesh262 = Instance.new("SpecialMesh")
  708. Part263 = Instance.new("Part")
  709. SpecialMesh264 = Instance.new("SpecialMesh")
  710. Part265 = Instance.new("Part")
  711. SpecialMesh266 = Instance.new("SpecialMesh")
  712. Part267 = Instance.new("Part")
  713. SpecialMesh268 = Instance.new("SpecialMesh")
  714. Part269 = Instance.new("Part")
  715. SpecialMesh270 = Instance.new("SpecialMesh")
  716. Part271 = Instance.new("Part")
  717. SpecialMesh272 = Instance.new("SpecialMesh")
  718. Part273 = Instance.new("Part")
  719. SpecialMesh274 = Instance.new("SpecialMesh")
  720. Part275 = Instance.new("Part")
  721. SpecialMesh276 = Instance.new("SpecialMesh")
  722. Part277 = Instance.new("Part")
  723. SpecialMesh278 = Instance.new("SpecialMesh")
  724. Part279 = Instance.new("Part")
  725. SpecialMesh280 = Instance.new("SpecialMesh")
  726. Part281 = Instance.new("Part")
  727. SpecialMesh282 = Instance.new("SpecialMesh")
  728. Part283 = Instance.new("Part")
  729. SpecialMesh284 = Instance.new("SpecialMesh")
  730. Part285 = Instance.new("Part")
  731. SpecialMesh286 = Instance.new("SpecialMesh")
  732. Part287 = Instance.new("Part")
  733. SpecialMesh288 = Instance.new("SpecialMesh")
  734. Part289 = Instance.new("Part")
  735. SpecialMesh290 = Instance.new("SpecialMesh")
  736. Part291 = Instance.new("Part")
  737. SpecialMesh292 = Instance.new("SpecialMesh")
  738. Part293 = Instance.new("Part")
  739. SpecialMesh294 = Instance.new("SpecialMesh")
  740. Part295 = Instance.new("Part")
  741. SpecialMesh296 = Instance.new("SpecialMesh")
  742. Part297 = Instance.new("Part")
  743. SpecialMesh298 = Instance.new("SpecialMesh")
  744. Part299 = Instance.new("Part")
  745. SpecialMesh300 = Instance.new("SpecialMesh")
  746. Part301 = Instance.new("Part")
  747. SpecialMesh302 = Instance.new("SpecialMesh")
  748. Part303 = Instance.new("Part")
  749. SpecialMesh304 = Instance.new("SpecialMesh")
  750. Part305 = Instance.new("Part")
  751. SpecialMesh306 = Instance.new("SpecialMesh")
  752. Part307 = Instance.new("Part")
  753. SpecialMesh308 = Instance.new("SpecialMesh")
  754. Part309 = Instance.new("Part")
  755. SpecialMesh310 = Instance.new("SpecialMesh")
  756. Part311 = Instance.new("Part")
  757. SpecialMesh312 = Instance.new("SpecialMesh")
  758. Part313 = Instance.new("Part")
  759. SpecialMesh314 = Instance.new("SpecialMesh")
  760. Part315 = Instance.new("Part")
  761. SpecialMesh316 = Instance.new("SpecialMesh")
  762. Part317 = Instance.new("Part")
  763. SpecialMesh318 = Instance.new("SpecialMesh")
  764. Part319 = Instance.new("Part")
  765. SpecialMesh320 = Instance.new("SpecialMesh")
  766. Part321 = Instance.new("Part")
  767. SpecialMesh322 = Instance.new("SpecialMesh")
  768. Part323 = Instance.new("Part")
  769. SpecialMesh324 = Instance.new("SpecialMesh")
  770. Part325 = Instance.new("Part")
  771. SpecialMesh326 = Instance.new("SpecialMesh")
  772. Part327 = Instance.new("Part")
  773. SpecialMesh328 = Instance.new("SpecialMesh")
  774. Part329 = Instance.new("Part")
  775. SpecialMesh330 = Instance.new("SpecialMesh")
  776. Part331 = Instance.new("Part")
  777. SpecialMesh332 = Instance.new("SpecialMesh")
  778. Part333 = Instance.new("Part")
  779. SpecialMesh334 = Instance.new("SpecialMesh")
  780. Part335 = Instance.new("Part")
  781. SpecialMesh336 = Instance.new("SpecialMesh")
  782. Part337 = Instance.new("Part")
  783. SpecialMesh338 = Instance.new("SpecialMesh")
  784. Part339 = Instance.new("Part")
  785. SpecialMesh340 = Instance.new("SpecialMesh")
  786. Part341 = Instance.new("Part")
  787. SpecialMesh342 = Instance.new("SpecialMesh")
  788. Part343 = Instance.new("Part")
  789. SpecialMesh344 = Instance.new("SpecialMesh")
  790. Part345 = Instance.new("Part")
  791. SpecialMesh346 = Instance.new("SpecialMesh")
  792. Part347 = Instance.new("Part")
  793. SpecialMesh348 = Instance.new("SpecialMesh")
  794. Part349 = Instance.new("Part")
  795. SpecialMesh350 = Instance.new("SpecialMesh")
  796. Part351 = Instance.new("Part")
  797. SpecialMesh352 = Instance.new("SpecialMesh")
  798. Part353 = Instance.new("Part")
  799. SpecialMesh354 = Instance.new("SpecialMesh")
  800. Part355 = Instance.new("Part")
  801. SpecialMesh356 = Instance.new("SpecialMesh")
  802. Part357 = Instance.new("Part")
  803. SpecialMesh358 = Instance.new("SpecialMesh")
  804. Part359 = Instance.new("Part")
  805. SpecialMesh360 = Instance.new("SpecialMesh")
  806. Part361 = Instance.new("Part")
  807. SpecialMesh362 = Instance.new("SpecialMesh")
  808. Part363 = Instance.new("Part")
  809. SpecialMesh364 = Instance.new("SpecialMesh")
  810. Part365 = Instance.new("Part")
  811. SpecialMesh366 = Instance.new("SpecialMesh")
  812. Part367 = Instance.new("Part")
  813. SpecialMesh368 = Instance.new("SpecialMesh")
  814. Part369 = Instance.new("Part")
  815. SpecialMesh370 = Instance.new("SpecialMesh")
  816. Part371 = Instance.new("Part")
  817. SpecialMesh372 = Instance.new("SpecialMesh")
  818. Part373 = Instance.new("Part")
  819. SpecialMesh374 = Instance.new("SpecialMesh")
  820. Part375 = Instance.new("Part")
  821. SpecialMesh376 = Instance.new("SpecialMesh")
  822. Part377 = Instance.new("Part")
  823. SpecialMesh378 = Instance.new("SpecialMesh")
  824. Part379 = Instance.new("Part")
  825. SpecialMesh380 = Instance.new("SpecialMesh")
  826. Part381 = Instance.new("Part")
  827. SpecialMesh382 = Instance.new("SpecialMesh")
  828. Part383 = Instance.new("Part")
  829. SpecialMesh384 = Instance.new("SpecialMesh")
  830. Part385 = Instance.new("Part")
  831. SpecialMesh386 = Instance.new("SpecialMesh")
  832. Part387 = Instance.new("Part")
  833. SpecialMesh388 = Instance.new("SpecialMesh")
  834. Part389 = Instance.new("Part")
  835. SpecialMesh390 = Instance.new("SpecialMesh")
  836. Part391 = Instance.new("Part")
  837. SpecialMesh392 = Instance.new("SpecialMesh")
  838. Part393 = Instance.new("Part")
  839. SpecialMesh394 = Instance.new("SpecialMesh")
  840. Part395 = Instance.new("Part")
  841. SpecialMesh396 = Instance.new("SpecialMesh")
  842. Part397 = Instance.new("Part")
  843. SpecialMesh398 = Instance.new("SpecialMesh")
  844. Part399 = Instance.new("Part")
  845. SpecialMesh400 = Instance.new("SpecialMesh")
  846. Part401 = Instance.new("Part")
  847. SpecialMesh402 = Instance.new("SpecialMesh")
  848. Part403 = Instance.new("Part")
  849. SpecialMesh404 = Instance.new("SpecialMesh")
  850. Part405 = Instance.new("Part")
  851. SpecialMesh406 = Instance.new("SpecialMesh")
  852. Part407 = Instance.new("Part")
  853. SpecialMesh408 = Instance.new("SpecialMesh")
  854. Part409 = Instance.new("Part")
  855. SpecialMesh410 = Instance.new("SpecialMesh")
  856. Part411 = Instance.new("Part")
  857. SpecialMesh412 = Instance.new("SpecialMesh")
  858. Part413 = Instance.new("Part")
  859. SpecialMesh414 = Instance.new("SpecialMesh")
  860. Part415 = Instance.new("Part")
  861. SpecialMesh416 = Instance.new("SpecialMesh")
  862. Part417 = Instance.new("Part")
  863. SpecialMesh418 = Instance.new("SpecialMesh")
  864. Part419 = Instance.new("Part")
  865. SpecialMesh420 = Instance.new("SpecialMesh")
  866. Part421 = Instance.new("Part")
  867. SpecialMesh422 = Instance.new("SpecialMesh")
  868. Part423 = Instance.new("Part")
  869. SpecialMesh424 = Instance.new("SpecialMesh")
  870. Part425 = Instance.new("Part")
  871. SpecialMesh426 = Instance.new("SpecialMesh")
  872. Part427 = Instance.new("Part")
  873. SpecialMesh428 = Instance.new("SpecialMesh")
  874. Part429 = Instance.new("Part")
  875. SpecialMesh430 = Instance.new("SpecialMesh")
  876. Part431 = Instance.new("Part")
  877. SpecialMesh432 = Instance.new("SpecialMesh")
  878. Part433 = Instance.new("Part")
  879. SpecialMesh434 = Instance.new("SpecialMesh")
  880. Part435 = Instance.new("Part")
  881. SpecialMesh436 = Instance.new("SpecialMesh")
  882. Part437 = Instance.new("Part")
  883. SpecialMesh438 = Instance.new("SpecialMesh")
  884. Part439 = Instance.new("Part")
  885. SpecialMesh440 = Instance.new("SpecialMesh")
  886. Part441 = Instance.new("Part")
  887. SpecialMesh442 = Instance.new("SpecialMesh")
  888. Part443 = Instance.new("Part")
  889. SpecialMesh444 = Instance.new("SpecialMesh")
  890. Part445 = Instance.new("Part")
  891. SpecialMesh446 = Instance.new("SpecialMesh")
  892. Part447 = Instance.new("Part")
  893. SpecialMesh448 = Instance.new("SpecialMesh")
  894. Part449 = Instance.new("Part")
  895. SpecialMesh450 = Instance.new("SpecialMesh")
  896. Part451 = Instance.new("Part")
  897. SpecialMesh452 = Instance.new("SpecialMesh")
  898. Part453 = Instance.new("Part")
  899. SpecialMesh454 = Instance.new("SpecialMesh")
  900. Part455 = Instance.new("Part")
  901. SpecialMesh456 = Instance.new("SpecialMesh")
  902. Part457 = Instance.new("Part")
  903. SpecialMesh458 = Instance.new("SpecialMesh")
  904. Part459 = Instance.new("Part")
  905. SpecialMesh460 = Instance.new("SpecialMesh")
  906. Part461 = Instance.new("Part")
  907. SpecialMesh462 = Instance.new("SpecialMesh")
  908. Part463 = Instance.new("Part")
  909. SpecialMesh464 = Instance.new("SpecialMesh")
  910. Part465 = Instance.new("Part")
  911. SpecialMesh466 = Instance.new("SpecialMesh")
  912. Part467 = Instance.new("Part")
  913. SpecialMesh468 = Instance.new("SpecialMesh")
  914. Part469 = Instance.new("Part")
  915. SpecialMesh470 = Instance.new("SpecialMesh")
  916. Part471 = Instance.new("Part")
  917. SpecialMesh472 = Instance.new("SpecialMesh")
  918. Part473 = Instance.new("Part")
  919. SpecialMesh474 = Instance.new("SpecialMesh")
  920. Part475 = Instance.new("Part")
  921. SpecialMesh476 = Instance.new("SpecialMesh")
  922. Model0.Parent = mas
  923. Part1.Parent = Model0
  924. 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)
  925. Part1.Orientation = Vector3.new(72.659996, 0.859999955, 0.98999995)
  926. Part1.Position = Vector3.new(-0.612978518, 3.52787709, -14.4877329)
  927. Part1.Rotation = Vector3.new(72.659996, 0.25, 0.170000002)
  928. Part1.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  929. Part1.Velocity = Vector3.new(1.29135582e-08, 0.00246586069, 1.6969787e-07)
  930. Part1.Size = Vector3.new(0.275000006, 0.22512494, 0.42337501)
  931. Part1.Anchored = true
  932. Part1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  933. Part1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  934. Part1.BrickColor = BrickColor.new("Really black")
  935. Part1.CanCollide = false
  936. Part1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  937. Part1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  938. Part1.Material = Enum.Material.Metal
  939. Part1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  940. Part1.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  941. Part1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  942. Part1.brickColor = BrickColor.new("Really black")
  943. SpecialMesh2.Parent = Part1
  944. SpecialMesh2.Scale = Vector3.new(0.400000006, 1, 0.5)
  945. SpecialMesh2.MeshType = Enum.MeshType.Brick
  946. Part3.Parent = Model0
  947. 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)
  948. Part3.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  949. Part3.Position = Vector3.new(-0.608517408, 2.57421446, -14.2038746)
  950. Part3.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  951. Part3.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  952. Part3.Velocity = Vector3.new(1.6413172e-07, 0.00246645301, 2.15686623e-06)
  953. Part3.Size = Vector3.new(0.275000006, 0.315999985, 0.303375006)
  954. Part3.Anchored = true
  955. Part3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  956. Part3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  957. Part3.BrickColor = BrickColor.new("Really black")
  958. Part3.CanCollide = false
  959. Part3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  960. Part3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  961. Part3.Material = Enum.Material.Glass
  962. Part3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  963. Part3.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  964. Part3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  965. Part3.brickColor = BrickColor.new("Really black")
  966. SpecialMesh4.Parent = Part3
  967. SpecialMesh4.Scale = Vector3.new(0.5, 1, 0.5)
  968. SpecialMesh4.MeshType = Enum.MeshType.Wedge
  969. Weld5.Name = "BTWeld"
  970. Weld5.Parent = Part3
  971. 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)
  972. Weld5.Part0 = Part3
  973. Weld5.Part1 = Part441
  974. Weld5.part1 = Part441
  975. Weld6.Name = "BTWeld"
  976. Weld6.Parent = Part3
  977. 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)
  978. Weld6.Part0 = Part3
  979. Weld6.Part1 = Part323
  980. Weld6.part1 = Part323
  981. Weld7.Name = "BTWeld"
  982. Weld7.Parent = Part3
  983. 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)
  984. Weld7.Part0 = Part3
  985. Weld7.Part1 = Part371
  986. Weld7.part1 = Part371
  987. Weld8.Name = "BTWeld"
  988. Weld8.Parent = Part3
  989. 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)
  990. Weld8.Part0 = Part3
  991. Weld8.Part1 = Part167
  992. Weld8.part1 = Part167
  993. Weld9.Name = "BTWeld"
  994. Weld9.Parent = Part3
  995. 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)
  996. Weld9.Part0 = Part3
  997. Weld9.Part1 = Part177
  998. Weld9.part1 = Part177
  999. Weld10.Name = "BTWeld"
  1000. Weld10.Parent = Part3
  1001. 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)
  1002. Weld10.Part0 = Part3
  1003. Weld10.Part1 = Part277
  1004. Weld10.part1 = Part277
  1005. Weld11.Name = "BTWeld"
  1006. Weld11.Parent = Part3
  1007. 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)
  1008. Weld11.Part0 = Part3
  1009. Weld11.Part1 = Part427
  1010. Weld11.part1 = Part427
  1011. Weld12.Name = "BTWeld"
  1012. Weld12.Parent = Part3
  1013. 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)
  1014. Weld12.Part0 = Part3
  1015. Weld12.Part1 = Part209
  1016. Weld12.part1 = Part209
  1017. Weld13.Name = "BTWeld"
  1018. Weld13.Parent = Part3
  1019. 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)
  1020. Weld13.Part0 = Part3
  1021. Weld13.Part1 = Part265
  1022. Weld13.part1 = Part265
  1023. Weld14.Name = "BTWeld"
  1024. Weld14.Parent = Part3
  1025. 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)
  1026. Weld14.Part0 = Part3
  1027. Weld14.Part1 = Part445
  1028. Weld14.part1 = Part445
  1029. Weld15.Name = "BTWeld"
  1030. Weld15.Parent = Part3
  1031. 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)
  1032. Weld15.Part0 = Part3
  1033. Weld15.Part1 = Part175
  1034. Weld15.part1 = Part175
  1035. Weld16.Name = "BTWeld"
  1036. Weld16.Parent = Part3
  1037. 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)
  1038. Weld16.Part0 = Part3
  1039. Weld16.Part1 = Part433
  1040. Weld16.part1 = Part433
  1041. Weld17.Name = "BTWeld"
  1042. Weld17.Parent = Part3
  1043. 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)
  1044. Weld17.Part0 = Part3
  1045. Weld17.Part1 = Part417
  1046. Weld17.part1 = Part417
  1047. Weld18.Name = "BTWeld"
  1048. Weld18.Parent = Part3
  1049. 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)
  1050. Weld18.Part0 = Part3
  1051. Weld18.Part1 = Part295
  1052. Weld18.part1 = Part295
  1053. Weld19.Name = "BTWeld"
  1054. Weld19.Parent = Part3
  1055. 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)
  1056. Weld19.Part0 = Part3
  1057. Weld19.Part1 = Part165
  1058. Weld19.part1 = Part165
  1059. Weld20.Name = "BTWeld"
  1060. Weld20.Parent = Part3
  1061. 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)
  1062. Weld20.Part0 = Part3
  1063. Weld20.Part1 = Part315
  1064. Weld20.part1 = Part315
  1065. Weld21.Name = "BTWeld"
  1066. Weld21.Parent = Part3
  1067. 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)
  1068. Weld21.Part0 = Part3
  1069. Weld21.Part1 = Part457
  1070. Weld21.part1 = Part457
  1071. Weld22.Name = "BTWeld"
  1072. Weld22.Parent = Part3
  1073. 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)
  1074. Weld22.Part0 = Part3
  1075. Weld22.Part1 = Part363
  1076. Weld22.part1 = Part363
  1077. Weld23.Name = "BTWeld"
  1078. Weld23.Parent = Part3
  1079. 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)
  1080. Weld23.Part0 = Part3
  1081. Weld23.Part1 = Part429
  1082. Weld23.part1 = Part429
  1083. Weld24.Name = "BTWeld"
  1084. Weld24.Parent = Part3
  1085. 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)
  1086. Weld24.Part0 = Part3
  1087. Weld24.Part1 = Part253
  1088. Weld24.part1 = Part253
  1089. Weld25.Name = "BTWeld"
  1090. Weld25.Parent = Part3
  1091. 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)
  1092. Weld25.Part0 = Part3
  1093. Weld25.Part1 = Part383
  1094. Weld25.part1 = Part383
  1095. Weld26.Name = "BTWeld"
  1096. Weld26.Parent = Part3
  1097. 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)
  1098. Weld26.Part0 = Part3
  1099. Weld26.Part1 = Part289
  1100. Weld26.part1 = Part289
  1101. Weld27.Name = "BTWeld"
  1102. Weld27.Parent = Part3
  1103. 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)
  1104. Weld27.Part0 = Part3
  1105. Weld27.Part1 = Part465
  1106. Weld27.part1 = Part465
  1107. Weld28.Name = "BTWeld"
  1108. Weld28.Parent = Part3
  1109. 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)
  1110. Weld28.Part0 = Part3
  1111. Weld28.Part1 = Part325
  1112. Weld28.part1 = Part325
  1113. Weld29.Name = "BTWeld"
  1114. Weld29.Parent = Part3
  1115. 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)
  1116. Weld29.Part0 = Part3
  1117. Weld29.Part1 = Part435
  1118. Weld29.part1 = Part435
  1119. Weld30.Name = "BTWeld"
  1120. Weld30.Parent = Part3
  1121. 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)
  1122. Weld30.Part0 = Part3
  1123. Weld30.Part1 = Part297
  1124. Weld30.part1 = Part297
  1125. Weld31.Name = "BTWeld"
  1126. Weld31.Parent = Part3
  1127. 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)
  1128. Weld31.Part0 = Part3
  1129. Weld31.Part1 = Part403
  1130. Weld31.part1 = Part403
  1131. Weld32.Name = "BTWeld"
  1132. Weld32.Parent = Part3
  1133. 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)
  1134. Weld32.Part0 = Part3
  1135. Weld32.Part1 = Part317
  1136. Weld32.part1 = Part317
  1137. Weld33.Name = "BTWeld"
  1138. Weld33.Parent = Part3
  1139. 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)
  1140. Weld33.Part0 = Part3
  1141. Weld33.Part1 = Part171
  1142. Weld33.part1 = Part171
  1143. Weld34.Name = "BTWeld"
  1144. Weld34.Parent = Part3
  1145. 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)
  1146. Weld34.Part0 = Part3
  1147. Weld34.Part1 = Part251
  1148. Weld34.part1 = Part251
  1149. Weld35.Name = "BTWeld"
  1150. Weld35.Parent = Part3
  1151. 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)
  1152. Weld35.Part0 = Part3
  1153. Weld35.Part1 = Part443
  1154. Weld35.part1 = Part443
  1155. Weld36.Name = "BTWeld"
  1156. Weld36.Parent = Part3
  1157. 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)
  1158. Weld36.Part0 = Part3
  1159. Weld36.Part1 = Part243
  1160. Weld36.part1 = Part243
  1161. Weld37.Name = "BTWeld"
  1162. Weld37.Parent = Part3
  1163. 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)
  1164. Weld37.Part0 = Part3
  1165. Weld37.Part1 = Part191
  1166. Weld37.part1 = Part191
  1167. Weld38.Name = "BTWeld"
  1168. Weld38.Parent = Part3
  1169. 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)
  1170. Weld38.Part0 = Part3
  1171. Weld38.Part1 = Part459
  1172. Weld38.part1 = Part459
  1173. Weld39.Name = "BTWeld"
  1174. Weld39.Parent = Part3
  1175. 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)
  1176. Weld39.Part0 = Part3
  1177. Weld39.Part1 = Part327
  1178. Weld39.part1 = Part327
  1179. Weld40.Name = "BTWeld"
  1180. Weld40.Parent = Part3
  1181. 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)
  1182. Weld40.Part0 = Part3
  1183. Weld40.Part1 = Part229
  1184. Weld40.part1 = Part229
  1185. Weld41.Name = "BTWeld"
  1186. Weld41.Parent = Part3
  1187. 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)
  1188. Weld41.Part0 = Part3
  1189. Weld41.Part1 = Part469
  1190. Weld41.part1 = Part469
  1191. Weld42.Name = "BTWeld"
  1192. Weld42.Parent = Part3
  1193. 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)
  1194. Weld42.Part0 = Part3
  1195. Weld42.Part1 = Part169
  1196. Weld42.part1 = Part169
  1197. Weld43.Name = "BTWeld"
  1198. Weld43.Parent = Part3
  1199. 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)
  1200. Weld43.Part0 = Part3
  1201. Weld43.Part1 = Part463
  1202. Weld43.part1 = Part463
  1203. Weld44.Name = "BTWeld"
  1204. Weld44.Parent = Part3
  1205. 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)
  1206. Weld44.Part0 = Part3
  1207. Weld44.Part1 = Part411
  1208. Weld44.part1 = Part411
  1209. Weld45.Name = "BTWeld"
  1210. Weld45.Parent = Part3
  1211. 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)
  1212. Weld45.Part0 = Part3
  1213. Weld45.Part1 = Part475
  1214. Weld45.part1 = Part475
  1215. Weld46.Name = "BTWeld"
  1216. Weld46.Parent = Part3
  1217. 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)
  1218. Weld46.Part0 = Part3
  1219. Weld46.Part1 = Part473
  1220. Weld46.part1 = Part473
  1221. Weld47.Name = "BTWeld"
  1222. Weld47.Parent = Part3
  1223. 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)
  1224. Weld47.Part0 = Part3
  1225. Weld47.Part1 = Part355
  1226. Weld47.part1 = Part355
  1227. Weld48.Name = "BTWeld"
  1228. Weld48.Parent = Part3
  1229. 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)
  1230. Weld48.Part0 = Part3
  1231. Weld48.Part1 = Part341
  1232. Weld48.part1 = Part341
  1233. Weld49.Name = "BTWeld"
  1234. Weld49.Parent = Part3
  1235. 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)
  1236. Weld49.Part0 = Part3
  1237. Weld49.Part1 = Part269
  1238. Weld49.part1 = Part269
  1239. Weld50.Name = "BTWeld"
  1240. Weld50.Parent = Part3
  1241. 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)
  1242. Weld50.Part0 = Part3
  1243. Weld50.Part1 = Part379
  1244. Weld50.part1 = Part379
  1245. Weld51.Name = "BTWeld"
  1246. Weld51.Parent = Part3
  1247. 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)
  1248. Weld51.Part0 = Part3
  1249. Weld51.Part1 = Part455
  1250. Weld51.part1 = Part455
  1251. Weld52.Name = "BTWeld"
  1252. Weld52.Parent = Part3
  1253. 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)
  1254. Weld52.Part0 = Part3
  1255. Weld52.Part1 = Part453
  1256. Weld52.part1 = Part453
  1257. Weld53.Name = "BTWeld"
  1258. Weld53.Parent = Part3
  1259. 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)
  1260. Weld53.Part0 = Part3
  1261. Weld53.Part1 = Part425
  1262. Weld53.part1 = Part425
  1263. Weld54.Name = "BTWeld"
  1264. Weld54.Parent = Part3
  1265. 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)
  1266. Weld54.Part0 = Part3
  1267. Weld54.Part1 = Part241
  1268. Weld54.part1 = Part241
  1269. Weld55.Name = "BTWeld"
  1270. Weld55.Parent = Part3
  1271. 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)
  1272. Weld55.Part0 = Part3
  1273. Weld55.Part1 = Part321
  1274. Weld55.part1 = Part321
  1275. Weld56.Name = "BTWeld"
  1276. Weld56.Parent = Part3
  1277. 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)
  1278. Weld56.Part0 = Part3
  1279. Weld56.Part1 = Part449
  1280. Weld56.part1 = Part449
  1281. Weld57.Name = "BTWeld"
  1282. Weld57.Parent = Part3
  1283. 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)
  1284. Weld57.Part0 = Part3
  1285. Weld57.Part1 = Part261
  1286. Weld57.part1 = Part261
  1287. Weld58.Name = "BTWeld"
  1288. Weld58.Parent = Part3
  1289. 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)
  1290. Weld58.Part0 = Part3
  1291. Weld58.Part1 = Part367
  1292. Weld58.part1 = Part367
  1293. Weld59.Name = "BTWeld"
  1294. Weld59.Parent = Part3
  1295. 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)
  1296. Weld59.Part0 = Part3
  1297. Weld59.Part1 = Part179
  1298. Weld59.part1 = Part179
  1299. Weld60.Name = "BTWeld"
  1300. Weld60.Parent = Part3
  1301. 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)
  1302. Weld60.Part0 = Part3
  1303. Weld60.Part1 = Part437
  1304. Weld60.part1 = Part437
  1305. Weld61.Name = "BTWeld"
  1306. Weld61.Parent = Part3
  1307. 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)
  1308. Weld61.Part0 = Part3
  1309. Weld61.Part1 = Part365
  1310. Weld61.part1 = Part365
  1311. Weld62.Name = "BTWeld"
  1312. Weld62.Parent = Part3
  1313. 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)
  1314. Weld62.Part0 = Part3
  1315. Weld62.Part1 = Part423
  1316. Weld62.part1 = Part423
  1317. Weld63.Name = "BTWeld"
  1318. Weld63.Parent = Part3
  1319. 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)
  1320. Weld63.Part0 = Part3
  1321. Weld63.Part1 = Part421
  1322. Weld63.part1 = Part421
  1323. Weld64.Name = "BTWeld"
  1324. Weld64.Parent = Part3
  1325. 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)
  1326. Weld64.Part0 = Part3
  1327. Weld64.Part1 = Part391
  1328. Weld64.part1 = Part391
  1329. Weld65.Name = "BTWeld"
  1330. Weld65.Parent = Part3
  1331. 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)
  1332. Weld65.Part0 = Part3
  1333. Weld65.Part1 = Part419
  1334. Weld65.part1 = Part419
  1335. Weld66.Name = "BTWeld"
  1336. Weld66.Parent = Part3
  1337. 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)
  1338. Weld66.Part0 = Part3
  1339. Weld66.Part1 = Part415
  1340. Weld66.part1 = Part415
  1341. Weld67.Name = "BTWeld"
  1342. Weld67.Parent = Part3
  1343. 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)
  1344. Weld67.Part0 = Part3
  1345. Weld67.Part1 = Part193
  1346. Weld67.part1 = Part193
  1347. Weld68.Name = "BTWeld"
  1348. Weld68.Parent = Part3
  1349. 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)
  1350. Weld68.Part0 = Part3
  1351. Weld68.Part1 = Part447
  1352. Weld68.part1 = Part447
  1353. Weld69.Name = "BTWeld"
  1354. Weld69.Parent = Part3
  1355. 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)
  1356. Weld69.Part0 = Part3
  1357. Weld69.Part1 = Part329
  1358. Weld69.part1 = Part329
  1359. Weld70.Name = "BTWeld"
  1360. Weld70.Parent = Part3
  1361. 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)
  1362. Weld70.Part0 = Part3
  1363. Weld70.Part1 = Part213
  1364. Weld70.part1 = Part213
  1365. Weld71.Name = "BTWeld"
  1366. Weld71.Parent = Part3
  1367. 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)
  1368. Weld71.Part0 = Part3
  1369. Weld71.Part1 = Part257
  1370. Weld71.part1 = Part257
  1371. Weld72.Name = "BTWeld"
  1372. Weld72.Parent = Part3
  1373. 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)
  1374. Weld72.Part0 = Part3
  1375. Weld72.Part1 = Part173
  1376. Weld72.part1 = Part173
  1377. Weld73.Name = "BTWeld"
  1378. Weld73.Parent = Part3
  1379. 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)
  1380. Weld73.Part0 = Part3
  1381. Weld73.Part1 = Part361
  1382. Weld73.part1 = Part361
  1383. Weld74.Name = "BTWeld"
  1384. Weld74.Parent = Part3
  1385. 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)
  1386. Weld74.Part0 = Part3
  1387. Weld74.Part1 = Part377
  1388. Weld74.part1 = Part377
  1389. Weld75.Name = "BTWeld"
  1390. Weld75.Parent = Part3
  1391. 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)
  1392. Weld75.Part0 = Part3
  1393. Weld75.Part1 = Part283
  1394. Weld75.part1 = Part283
  1395. Weld76.Name = "BTWeld"
  1396. Weld76.Parent = Part3
  1397. 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)
  1398. Weld76.Part0 = Part3
  1399. Weld76.Part1 = Part291
  1400. Weld76.part1 = Part291
  1401. Weld77.Name = "BTWeld"
  1402. Weld77.Parent = Part3
  1403. 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)
  1404. Weld77.Part0 = Part3
  1405. Weld77.Part1 = Part395
  1406. Weld77.part1 = Part395
  1407. Weld78.Name = "BTWeld"
  1408. Weld78.Parent = Part3
  1409. 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)
  1410. Weld78.Part0 = Part3
  1411. Weld78.Part1 = Part451
  1412. Weld78.part1 = Part451
  1413. Weld79.Name = "BTWeld"
  1414. Weld79.Parent = Part3
  1415. 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)
  1416. Weld79.Part0 = Part3
  1417. Weld79.Part1 = Part203
  1418. Weld79.part1 = Part203
  1419. Weld80.Name = "BTWeld"
  1420. Weld80.Parent = Part3
  1421. 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)
  1422. Weld80.Part0 = Part3
  1423. Weld80.Part1 = Part397
  1424. Weld80.part1 = Part397
  1425. Weld81.Name = "BTWeld"
  1426. Weld81.Parent = Part3
  1427. 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)
  1428. Weld81.Part0 = Part3
  1429. Weld81.Part1 = Part237
  1430. Weld81.part1 = Part237
  1431. Weld82.Name = "BTWeld"
  1432. Weld82.Parent = Part3
  1433. 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)
  1434. Weld82.Part0 = Part3
  1435. Weld82.Part1 = Part373
  1436. Weld82.part1 = Part373
  1437. Weld83.Name = "BTWeld"
  1438. Weld83.Parent = Part3
  1439. 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)
  1440. Weld83.Part0 = Part3
  1441. Weld83.Part1 = Part163
  1442. Weld83.part1 = Part163
  1443. Weld84.Name = "BTWeld"
  1444. Weld84.Parent = Part3
  1445. 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)
  1446. Weld84.Part0 = Part3
  1447. Weld84.Part1 = Part281
  1448. Weld84.part1 = Part281
  1449. Weld85.Name = "BTWeld"
  1450. Weld85.Parent = Part3
  1451. 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)
  1452. Weld85.Part0 = Part3
  1453. Weld85.Part1 = Part345
  1454. Weld85.part1 = Part345
  1455. Weld86.Name = "BTWeld"
  1456. Weld86.Parent = Part3
  1457. 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)
  1458. Weld86.Part0 = Part3
  1459. Weld86.Part1 = Part399
  1460. Weld86.part1 = Part399
  1461. Weld87.Name = "BTWeld"
  1462. Weld87.Parent = Part3
  1463. 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)
  1464. Weld87.Part0 = Part3
  1465. Weld87.Part1 = Part199
  1466. Weld87.part1 = Part199
  1467. Weld88.Name = "BTWeld"
  1468. Weld88.Parent = Part3
  1469. 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)
  1470. Weld88.Part0 = Part3
  1471. Weld88.Part1 = Part219
  1472. Weld88.part1 = Part219
  1473. Weld89.Name = "BTWeld"
  1474. Weld89.Parent = Part3
  1475. 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)
  1476. Weld89.Part0 = Part3
  1477. Weld89.Part1 = Part1
  1478. Weld89.part1 = Part1
  1479. Weld90.Name = "BTWeld"
  1480. Weld90.Parent = Part3
  1481. 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)
  1482. Weld90.Part0 = Part3
  1483. Weld90.Part1 = Part275
  1484. Weld90.part1 = Part275
  1485. Weld91.Name = "BTWeld"
  1486. Weld91.Parent = Part3
  1487. 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)
  1488. Weld91.Part0 = Part3
  1489. Weld91.Part1 = Part233
  1490. Weld91.part1 = Part233
  1491. Weld92.Name = "BTWeld"
  1492. Weld92.Parent = Part3
  1493. 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)
  1494. Weld92.Part0 = Part3
  1495. Weld92.Part1 = Part221
  1496. Weld92.part1 = Part221
  1497. Weld93.Name = "BTWeld"
  1498. Weld93.Parent = Part3
  1499. 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)
  1500. Weld93.Part0 = Part3
  1501. Weld93.Part1 = Part467
  1502. Weld93.part1 = Part467
  1503. Weld94.Name = "BTWeld"
  1504. Weld94.Parent = Part3
  1505. 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)
  1506. Weld94.Part0 = Part3
  1507. Weld94.Part1 = Part339
  1508. Weld94.part1 = Part339
  1509. Weld95.Name = "BTWeld"
  1510. Weld95.Parent = Part3
  1511. 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)
  1512. Weld95.Part0 = Part3
  1513. Weld95.Part1 = Part401
  1514. Weld95.part1 = Part401
  1515. Weld96.Name = "BTWeld"
  1516. Weld96.Parent = Part3
  1517. 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)
  1518. Weld96.Part0 = Part3
  1519. Weld96.Part1 = Part409
  1520. Weld96.part1 = Part409
  1521. Weld97.Name = "BTWeld"
  1522. Weld97.Parent = Part3
  1523. 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)
  1524. Weld97.Part0 = Part3
  1525. Weld97.Part1 = Part381
  1526. Weld97.part1 = Part381
  1527. Weld98.Name = "BTWeld"
  1528. Weld98.Parent = Part3
  1529. 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)
  1530. Weld98.Part0 = Part3
  1531. Weld98.Part1 = Part431
  1532. Weld98.part1 = Part431
  1533. Weld99.Name = "BTWeld"
  1534. Weld99.Parent = Part3
  1535. 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)
  1536. Weld99.Part0 = Part3
  1537. Weld99.Part1 = Part215
  1538. Weld99.part1 = Part215
  1539. Weld100.Name = "BTWeld"
  1540. Weld100.Parent = Part3
  1541. 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)
  1542. Weld100.Part0 = Part3
  1543. Weld100.Part1 = Part231
  1544. Weld100.part1 = Part231
  1545. Weld101.Name = "BTWeld"
  1546. Weld101.Parent = Part3
  1547. 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)
  1548. Weld101.Part0 = Part3
  1549. Weld101.Part1 = Part195
  1550. Weld101.part1 = Part195
  1551. Weld102.Name = "BTWeld"
  1552. Weld102.Parent = Part3
  1553. 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)
  1554. Weld102.Part0 = Part3
  1555. Weld102.Part1 = Part247
  1556. Weld102.part1 = Part247
  1557. Weld103.Name = "BTWeld"
  1558. Weld103.Parent = Part3
  1559. 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)
  1560. Weld103.Part0 = Part3
  1561. Weld103.Part1 = Part307
  1562. Weld103.part1 = Part307
  1563. Weld104.Name = "BTWeld"
  1564. Weld104.Parent = Part3
  1565. 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)
  1566. Weld104.Part0 = Part3
  1567. Weld104.Part1 = Part259
  1568. Weld104.part1 = Part259
  1569. Weld105.Name = "BTWeld"
  1570. Weld105.Parent = Part3
  1571. 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)
  1572. Weld105.Part0 = Part3
  1573. Weld105.Part1 = Part407
  1574. Weld105.part1 = Part407
  1575. Weld106.Name = "BTWeld"
  1576. Weld106.Parent = Part3
  1577. 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)
  1578. Weld106.Part0 = Part3
  1579. Weld106.Part1 = Part263
  1580. Weld106.part1 = Part263
  1581. Weld107.Name = "BTWeld"
  1582. Weld107.Parent = Part3
  1583. 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)
  1584. Weld107.Part0 = Part3
  1585. Weld107.Part1 = Part351
  1586. Weld107.part1 = Part351
  1587. Weld108.Name = "BTWeld"
  1588. Weld108.Parent = Part3
  1589. 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)
  1590. Weld108.Part0 = Part3
  1591. Weld108.Part1 = Part331
  1592. Weld108.part1 = Part331
  1593. Weld109.Name = "BTWeld"
  1594. Weld109.Parent = Part3
  1595. 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)
  1596. Weld109.Part0 = Part3
  1597. Weld109.Part1 = Part187
  1598. Weld109.part1 = Part187
  1599. Weld110.Name = "BTWeld"
  1600. Weld110.Parent = Part3
  1601. 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)
  1602. Weld110.Part0 = Part3
  1603. Weld110.Part1 = Part239
  1604. Weld110.part1 = Part239
  1605. Weld111.Name = "BTWeld"
  1606. Weld111.Parent = Part3
  1607. 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)
  1608. Weld111.Part0 = Part3
  1609. Weld111.Part1 = Part293
  1610. Weld111.part1 = Part293
  1611. Weld112.Name = "BTWeld"
  1612. Weld112.Parent = Part3
  1613. 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)
  1614. Weld112.Part0 = Part3
  1615. Weld112.Part1 = Part387
  1616. Weld112.part1 = Part387
  1617. Weld113.Name = "BTWeld"
  1618. Weld113.Parent = Part3
  1619. 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)
  1620. Weld113.Part0 = Part3
  1621. Weld113.Part1 = Part471
  1622. Weld113.part1 = Part471
  1623. Weld114.Name = "BTWeld"
  1624. Weld114.Parent = Part3
  1625. 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)
  1626. Weld114.Part0 = Part3
  1627. Weld114.Part1 = Part301
  1628. Weld114.part1 = Part301
  1629. Weld115.Name = "BTWeld"
  1630. Weld115.Parent = Part3
  1631. 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)
  1632. Weld115.Part0 = Part3
  1633. Weld115.Part1 = Part389
  1634. Weld115.part1 = Part389
  1635. Weld116.Name = "BTWeld"
  1636. Weld116.Parent = Part3
  1637. 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)
  1638. Weld116.Part0 = Part3
  1639. Weld116.Part1 = Part255
  1640. Weld116.part1 = Part255
  1641. Weld117.Name = "BTWeld"
  1642. Weld117.Parent = Part3
  1643. 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)
  1644. Weld117.Part0 = Part3
  1645. Weld117.Part1 = Part299
  1646. Weld117.part1 = Part299
  1647. Weld118.Name = "BTWeld"
  1648. Weld118.Parent = Part3
  1649. 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)
  1650. Weld118.Part0 = Part3
  1651. Weld118.Part1 = Part461
  1652. Weld118.part1 = Part461
  1653. Weld119.Name = "BTWeld"
  1654. Weld119.Parent = Part3
  1655. 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)
  1656. Weld119.Part0 = Part3
  1657. Weld119.Part1 = Part349
  1658. Weld119.part1 = Part349
  1659. Weld120.Name = "BTWeld"
  1660. Weld120.Parent = Part3
  1661. 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)
  1662. Weld120.Part0 = Part3
  1663. Weld120.Part1 = Part217
  1664. Weld120.part1 = Part217
  1665. Weld121.Name = "BTWeld"
  1666. Weld121.Parent = Part3
  1667. 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)
  1668. Weld121.Part0 = Part3
  1669. Weld121.Part1 = Part393
  1670. Weld121.part1 = Part393
  1671. Weld122.Name = "BTWeld"
  1672. Weld122.Parent = Part3
  1673. 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)
  1674. Weld122.Part0 = Part3
  1675. Weld122.Part1 = Part287
  1676. Weld122.part1 = Part287
  1677. Weld123.Name = "BTWeld"
  1678. Weld123.Parent = Part3
  1679. 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)
  1680. Weld123.Part0 = Part3
  1681. Weld123.Part1 = Part235
  1682. Weld123.part1 = Part235
  1683. Weld124.Name = "BTWeld"
  1684. Weld124.Parent = Part3
  1685. 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)
  1686. Weld124.Part0 = Part3
  1687. Weld124.Part1 = Part227
  1688. Weld124.part1 = Part227
  1689. Weld125.Name = "BTWeld"
  1690. Weld125.Parent = Part3
  1691. 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)
  1692. Weld125.Part0 = Part3
  1693. Weld125.Part1 = Part375
  1694. Weld125.part1 = Part375
  1695. Weld126.Name = "BTWeld"
  1696. Weld126.Parent = Part3
  1697. 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)
  1698. Weld126.Part0 = Part3
  1699. Weld126.Part1 = Part223
  1700. Weld126.part1 = Part223
  1701. Weld127.Name = "BTWeld"
  1702. Weld127.Parent = Part3
  1703. 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)
  1704. Weld127.Part0 = Part3
  1705. Weld127.Part1 = Part347
  1706. Weld127.part1 = Part347
  1707. Weld128.Name = "BTWeld"
  1708. Weld128.Parent = Part3
  1709. 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)
  1710. Weld128.Part0 = Part3
  1711. Weld128.Part1 = Part207
  1712. Weld128.part1 = Part207
  1713. Weld129.Name = "BTWeld"
  1714. Weld129.Parent = Part3
  1715. 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)
  1716. Weld129.Part0 = Part3
  1717. Weld129.Part1 = Part273
  1718. Weld129.part1 = Part273
  1719. Weld130.Name = "BTWeld"
  1720. Weld130.Parent = Part3
  1721. 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)
  1722. Weld130.Part0 = Part3
  1723. Weld130.Part1 = Part369
  1724. Weld130.part1 = Part369
  1725. Weld131.Name = "BTWeld"
  1726. Weld131.Parent = Part3
  1727. 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)
  1728. Weld131.Part0 = Part3
  1729. Weld131.Part1 = Part285
  1730. Weld131.part1 = Part285
  1731. Weld132.Name = "BTWeld"
  1732. Weld132.Parent = Part3
  1733. 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)
  1734. Weld132.Part0 = Part3
  1735. Weld132.Part1 = Part405
  1736. Weld132.part1 = Part405
  1737. Weld133.Name = "BTWeld"
  1738. Weld133.Parent = Part3
  1739. 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)
  1740. Weld133.Part0 = Part3
  1741. Weld133.Part1 = Part359
  1742. Weld133.part1 = Part359
  1743. Weld134.Name = "BTWeld"
  1744. Weld134.Parent = Part3
  1745. 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)
  1746. Weld134.Part0 = Part3
  1747. Weld134.Part1 = Part183
  1748. Weld134.part1 = Part183
  1749. Weld135.Name = "BTWeld"
  1750. Weld135.Parent = Part3
  1751. 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)
  1752. Weld135.Part0 = Part3
  1753. Weld135.Part1 = Part225
  1754. Weld135.part1 = Part225
  1755. Weld136.Name = "BTWeld"
  1756. Weld136.Parent = Part3
  1757. 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)
  1758. Weld136.Part0 = Part3
  1759. Weld136.Part1 = Part337
  1760. Weld136.part1 = Part337
  1761. Weld137.Name = "BTWeld"
  1762. Weld137.Parent = Part3
  1763. 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)
  1764. Weld137.Part0 = Part3
  1765. Weld137.Part1 = Part245
  1766. Weld137.part1 = Part245
  1767. Weld138.Name = "BTWeld"
  1768. Weld138.Parent = Part3
  1769. 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)
  1770. Weld138.Part0 = Part3
  1771. Weld138.Part1 = Part309
  1772. Weld138.part1 = Part309
  1773. Weld139.Name = "BTWeld"
  1774. Weld139.Parent = Part3
  1775. 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)
  1776. Weld139.Part0 = Part3
  1777. Weld139.Part1 = Part181
  1778. Weld139.part1 = Part181
  1779. Weld140.Name = "BTWeld"
  1780. Weld140.Parent = Part3
  1781. 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)
  1782. Weld140.Part0 = Part3
  1783. Weld140.Part1 = Part333
  1784. Weld140.part1 = Part333
  1785. Weld141.Name = "BTWeld"
  1786. Weld141.Parent = Part3
  1787. 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)
  1788. Weld141.Part0 = Part3
  1789. Weld141.Part1 = Part249
  1790. Weld141.part1 = Part249
  1791. Weld142.Name = "BTWeld"
  1792. Weld142.Parent = Part3
  1793. 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)
  1794. Weld142.Part0 = Part3
  1795. Weld142.Part1 = Part205
  1796. Weld142.part1 = Part205
  1797. Weld143.Name = "BTWeld"
  1798. Weld143.Parent = Part3
  1799. 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)
  1800. Weld143.Part0 = Part3
  1801. Weld143.Part1 = Part385
  1802. Weld143.part1 = Part385
  1803. Weld144.Name = "BTWeld"
  1804. Weld144.Parent = Part3
  1805. 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)
  1806. Weld144.Part0 = Part3
  1807. Weld144.Part1 = Part197
  1808. Weld144.part1 = Part197
  1809. Weld145.Name = "BTWeld"
  1810. Weld145.Parent = Part3
  1811. 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)
  1812. Weld145.Part0 = Part3
  1813. Weld145.Part1 = Part357
  1814. Weld145.part1 = Part357
  1815. Weld146.Name = "BTWeld"
  1816. Weld146.Parent = Part3
  1817. 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)
  1818. Weld146.Part0 = Part3
  1819. Weld146.Part1 = Part343
  1820. Weld146.part1 = Part343
  1821. Weld147.Name = "BTWeld"
  1822. Weld147.Parent = Part3
  1823. 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)
  1824. Weld147.Part0 = Part3
  1825. Weld147.Part1 = Part353
  1826. Weld147.part1 = Part353
  1827. Weld148.Name = "BTWeld"
  1828. Weld148.Parent = Part3
  1829. 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)
  1830. Weld148.Part0 = Part3
  1831. Weld148.Part1 = Part313
  1832. Weld148.part1 = Part313
  1833. Weld149.Name = "BTWeld"
  1834. Weld149.Parent = Part3
  1835. 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)
  1836. Weld149.Part0 = Part3
  1837. Weld149.Part1 = Part211
  1838. Weld149.part1 = Part211
  1839. Weld150.Name = "BTWeld"
  1840. Weld150.Parent = Part3
  1841. 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)
  1842. Weld150.Part0 = Part3
  1843. Weld150.Part1 = Part311
  1844. Weld150.part1 = Part311
  1845. Weld151.Name = "BTWeld"
  1846. Weld151.Parent = Part3
  1847. 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)
  1848. Weld151.Part0 = Part3
  1849. Weld151.Part1 = Part319
  1850. Weld151.part1 = Part319
  1851. Weld152.Name = "BTWeld"
  1852. Weld152.Parent = Part3
  1853. 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)
  1854. Weld152.Part0 = Part3
  1855. Weld152.Part1 = Part189
  1856. Weld152.part1 = Part189
  1857. Weld153.Name = "BTWeld"
  1858. Weld153.Parent = Part3
  1859. 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)
  1860. Weld153.Part0 = Part3
  1861. Weld153.Part1 = Part271
  1862. Weld153.part1 = Part271
  1863. Weld154.Name = "BTWeld"
  1864. Weld154.Parent = Part3
  1865. 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)
  1866. Weld154.Part0 = Part3
  1867. Weld154.Part1 = Part303
  1868. Weld154.part1 = Part303
  1869. Weld155.Name = "BTWeld"
  1870. Weld155.Parent = Part3
  1871. 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)
  1872. Weld155.Part0 = Part3
  1873. Weld155.Part1 = Part305
  1874. Weld155.part1 = Part305
  1875. Weld156.Name = "BTWeld"
  1876. Weld156.Parent = Part3
  1877. 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)
  1878. Weld156.Part0 = Part3
  1879. Weld156.Part1 = Part413
  1880. Weld156.part1 = Part413
  1881. Weld157.Name = "BTWeld"
  1882. Weld157.Parent = Part3
  1883. 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)
  1884. Weld157.Part0 = Part3
  1885. Weld157.Part1 = Part267
  1886. Weld157.part1 = Part267
  1887. Weld158.Name = "BTWeld"
  1888. Weld158.Parent = Part3
  1889. 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)
  1890. Weld158.Part0 = Part3
  1891. Weld158.Part1 = Part439
  1892. Weld158.part1 = Part439
  1893. Weld159.Name = "BTWeld"
  1894. Weld159.Parent = Part3
  1895. 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)
  1896. Weld159.Part0 = Part3
  1897. Weld159.Part1 = Part201
  1898. Weld159.part1 = Part201
  1899. Weld160.Name = "BTWeld"
  1900. Weld160.Parent = Part3
  1901. 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)
  1902. Weld160.Part0 = Part3
  1903. Weld160.Part1 = Part279
  1904. Weld160.part1 = Part279
  1905. Weld161.Name = "BTWeld"
  1906. Weld161.Parent = Part3
  1907. 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)
  1908. Weld161.Part0 = Part3
  1909. Weld161.Part1 = Part335
  1910. Weld161.part1 = Part335
  1911. Weld162.Name = "BTWeld"
  1912. Weld162.Parent = Part3
  1913. 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)
  1914. Weld162.Part0 = Part3
  1915. Weld162.Part1 = Part185
  1916. Weld162.part1 = Part185
  1917. Part163.Parent = Model0
  1918. 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)
  1919. Part163.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  1920. Part163.Position = Vector3.new(-0.611257851, 3.46313882, -15.394145)
  1921. Part163.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  1922. Part163.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1923. Part163.Velocity = Vector3.new(2.31788153e-08, 0.0024639722, 3.04594494e-07)
  1924. Part163.Size = Vector3.new(0.275000006, 0.84512496, 0.359375)
  1925. Part163.Anchored = true
  1926. Part163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1927. Part163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1928. Part163.BrickColor = BrickColor.new("Really black")
  1929. Part163.CanCollide = false
  1930. Part163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1931. Part163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1932. Part163.Material = Enum.Material.Metal
  1933. Part163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1934. Part163.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  1935. Part163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1936. Part163.brickColor = BrickColor.new("Really black")
  1937. SpecialMesh164.Parent = Part163
  1938. SpecialMesh164.Scale = Vector3.new(0.349999994, 1, 0.5)
  1939. SpecialMesh164.MeshType = Enum.MeshType.Brick
  1940. Part165.Parent = Model0
  1941. 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)
  1942. Part165.Orientation = Vector3.new(-55.9099998, -179.649994, -0.529999971)
  1943. Part165.Position = Vector3.new(-0.617485046, 3.2590127, -10.6418428)
  1944. Part165.Rotation = Vector3.new(-124.089996, -0.189999998, 179.759995)
  1945. Part165.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1946. Part165.Velocity = Vector3.new(5.55462663e-08, 0.00247387378, 7.29936687e-07)
  1947. Part165.Size = Vector3.new(0.275000006, 0.4375, 0.25)
  1948. Part165.Anchored = true
  1949. Part165.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1950. Part165.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1951. Part165.BrickColor = BrickColor.new("Really black")
  1952. Part165.CanCollide = false
  1953. Part165.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1954. Part165.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1955. Part165.Material = Enum.Material.Metal
  1956. Part165.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1957. Part165.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  1958. Part165.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1959. Part165.brickColor = BrickColor.new("Really black")
  1960. SpecialMesh166.Parent = Part165
  1961. SpecialMesh166.Scale = Vector3.new(0.5, 1, 0.25)
  1962. SpecialMesh166.MeshType = Enum.MeshType.Brick
  1963. Part167.Parent = Model0
  1964. 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)
  1965. Part167.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  1966. Part167.Position = Vector3.new(-0.610199153, 2.88768315, -14.1553068)
  1967. Part167.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  1968. Part167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1969. Part167.Velocity = Vector3.new(1.14426342e-07, 0.00246655382, 1.50368453e-06)
  1970. Part167.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  1971. Part167.Anchored = true
  1972. Part167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1973. Part167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1974. Part167.BrickColor = BrickColor.new("Really black")
  1975. Part167.CanCollide = false
  1976. Part167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1977. Part167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1978. Part167.Material = Enum.Material.Glass
  1979. Part167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1980. Part167.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  1981. Part167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1982. Part167.brickColor = BrickColor.new("Really black")
  1983. SpecialMesh168.Parent = Part167
  1984. SpecialMesh168.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  1985. SpecialMesh168.MeshType = Enum.MeshType.Wedge
  1986. Part169.Parent = Model0
  1987. 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)
  1988. Part169.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  1989. Part169.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  1990. Part169.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  1991. Part169.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1992. Part169.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  1993. Part169.Size = Vector3.new(0.275000006, 0.698124886, 0.534374952)
  1994. Part169.Anchored = true
  1995. Part169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1996. Part169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1997. Part169.BrickColor = BrickColor.new("Bright blue")
  1998. Part169.CanCollide = false
  1999. Part169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2000. Part169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2001. Part169.Material = Enum.Material.Neon
  2002. Part169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2003. Part169.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2004. Part169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2005. Part169.brickColor = BrickColor.new("Bright blue")
  2006. SpecialMesh170.Parent = Part169
  2007. SpecialMesh170.Scale = Vector3.new(0.452499986, 1, 1)
  2008. SpecialMesh170.MeshType = Enum.MeshType.Cylinder
  2009. Part171.Parent = Model0
  2010. 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)
  2011. Part171.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2012. Part171.Position = Vector3.new(-0.610366702, 3.28867483, -15.3908367)
  2013. Part171.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2014. Part171.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2015. Part171.Velocity = Vector3.new(5.08428144e-08, 0.00246397941, 6.68129019e-07)
  2016. Part171.Size = Vector3.new(0.275000006, 0.84512496, 0.422374964)
  2017. Part171.Anchored = true
  2018. Part171.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2019. Part171.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2020. Part171.BrickColor = BrickColor.new("Really black")
  2021. Part171.CanCollide = false
  2022. Part171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2023. Part171.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2024. Part171.Material = Enum.Material.Metal
  2025. Part171.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2026. Part171.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2027. Part171.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2028. Part171.brickColor = BrickColor.new("Really black")
  2029. SpecialMesh172.Parent = Part171
  2030. SpecialMesh172.Scale = Vector3.new(0.400000006, 1, 0.5)
  2031. SpecialMesh172.MeshType = Enum.MeshType.Brick
  2032. Part173.Parent = Model0
  2033. 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)
  2034. Part173.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2035. Part173.Position = Vector3.new(-0.610880256, 2.96906447, -13.9840736)
  2036. Part173.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2037. Part173.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2038. Part173.Velocity = Vector3.new(1.01522062e-07, 0.00246691052, 1.33410845e-06)
  2039. Part173.Size = Vector3.new(0.275000006, 0.239124984, 0.205375016)
  2040. Part173.Anchored = true
  2041. Part173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2042. Part173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2043. Part173.BrickColor = BrickColor.new("Bright blue")
  2044. Part173.CanCollide = false
  2045. Part173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2046. Part173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2047. Part173.Material = Enum.Material.Neon
  2048. Part173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2049. Part173.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2050. Part173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2051. Part173.brickColor = BrickColor.new("Bright blue")
  2052. SpecialMesh174.Parent = Part173
  2053. SpecialMesh174.Scale = Vector3.new(0.550000012, 1, 1)
  2054. SpecialMesh174.MeshType = Enum.MeshType.Brick
  2055. Part175.Parent = Model0
  2056. 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)
  2057. Part175.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2058. Part175.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  2059. Part175.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2060. Part175.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2061. Part175.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  2062. Part175.Size = Vector3.new(0.275000006, 0.698124886, 0.372374952)
  2063. Part175.Anchored = true
  2064. Part175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2065. Part175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2066. Part175.BrickColor = BrickColor.new("Really black")
  2067. Part175.CanCollide = false
  2068. Part175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2069. Part175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2070. Part175.Material = Enum.Material.Metal
  2071. Part175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. Part175.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2073. Part175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2074. Part175.brickColor = BrickColor.new("Really black")
  2075. SpecialMesh176.Parent = Part175
  2076. SpecialMesh176.Scale = Vector3.new(0.455000013, 1, 1)
  2077. SpecialMesh176.MeshType = Enum.MeshType.Cylinder
  2078. Part177.Parent = Model0
  2079. 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)
  2080. Part177.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2081. Part177.Position = Vector3.new(-0.616063476, 3.26214504, -11.5807333)
  2082. Part177.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2083. Part177.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2084. Part177.Velocity = Vector3.new(5.50495756e-08, 0.00247191754, 7.23409755e-07)
  2085. Part177.Size = Vector3.new(0.275000006, 0.630125046, 0.280375004)
  2086. Part177.Anchored = true
  2087. Part177.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. Part177.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. Part177.BrickColor = BrickColor.new("Really black")
  2090. Part177.CanCollide = false
  2091. Part177.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2092. Part177.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2093. Part177.Material = Enum.Material.Metal
  2094. Part177.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2095. Part177.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2096. Part177.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2097. Part177.brickColor = BrickColor.new("Really black")
  2098. SpecialMesh178.Parent = Part177
  2099. SpecialMesh178.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  2100. SpecialMesh178.MeshType = Enum.MeshType.Brick
  2101. Part179.Parent = Model0
  2102. 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)
  2103. Part179.Orientation = Vector3.new(43.9099998, 0.199999988, 0.409999996)
  2104. Part179.Position = Vector3.new(-0.610621691, 3.13382888, -14.7050791)
  2105. Part179.Rotation = Vector3.new(43.9099998, 0.140000001, 0.269999981)
  2106. Part179.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2107. Part179.Velocity = Vector3.new(7.53960734e-08, 0.0024654083, 9.90785111e-07)
  2108. Part179.Size = Vector3.new(0.275000006, 0.221124932, 0.418375015)
  2109. Part179.Anchored = true
  2110. Part179.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2111. Part179.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2112. Part179.BrickColor = BrickColor.new("Really black")
  2113. Part179.CanCollide = false
  2114. Part179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2115. Part179.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2116. Part179.Material = Enum.Material.Metal
  2117. Part179.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2118. Part179.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2119. Part179.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2120. Part179.brickColor = BrickColor.new("Really black")
  2121. SpecialMesh180.Parent = Part179
  2122. SpecialMesh180.Scale = Vector3.new(0.550000012, 1.04999995, 0.899999976)
  2123. SpecialMesh180.MeshType = Enum.MeshType.Brick
  2124. Part181.Parent = Model0
  2125. 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)
  2126. Part181.Orientation = Vector3.new(-43.9099998, -179.800003, 179.589996)
  2127. Part181.Position = Vector3.new(-0.61356318, 3.48533392, -13.9631662)
  2128. Part181.Rotation = Vector3.new(-136.089996, -0.140000001, -0.269999981)
  2129. Part181.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2130. Part181.Velocity = Vector3.new(1.96594527e-08, 0.00246695359, 2.58346063e-07)
  2131. Part181.Size = Vector3.new(0.275000006, 0.413124949, 0.622375011)
  2132. Part181.Anchored = true
  2133. Part181.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2134. Part181.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2135. Part181.BrickColor = BrickColor.new("Really black")
  2136. Part181.CanCollide = false
  2137. Part181.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2138. Part181.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2139. Part181.Material = Enum.Material.Metal
  2140. Part181.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2141. Part181.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2142. Part181.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2143. Part181.brickColor = BrickColor.new("Really black")
  2144. SpecialMesh182.Parent = Part181
  2145. SpecialMesh182.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  2146. SpecialMesh182.MeshType = Enum.MeshType.Brick
  2147. Part183.Parent = Model0
  2148. 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)
  2149. Part183.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  2150. Part183.Position = Vector3.new(-0.610578179, 2.93933439, -14.0816517)
  2151. Part183.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  2152. Part183.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2153. Part183.Velocity = Vector3.new(1.06236229e-07, 0.00246670726, 1.39605754e-06)
  2154. Part183.Size = Vector3.new(0.275000006, 0.252000004, 0.213375002)
  2155. Part183.Anchored = true
  2156. Part183.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2157. Part183.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2158. Part183.BrickColor = BrickColor.new("Really black")
  2159. Part183.CanCollide = false
  2160. Part183.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2161. Part183.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2162. Part183.Material = Enum.Material.Metal
  2163. Part183.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2164. Part183.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2165. Part183.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2166. Part183.brickColor = BrickColor.new("Really black")
  2167. SpecialMesh184.Parent = Part183
  2168. SpecialMesh184.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  2169. SpecialMesh184.MeshType = Enum.MeshType.Wedge
  2170. Part185.Parent = Model0
  2171. 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)
  2172. Part185.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2173. Part185.Position = Vector3.new(-0.61852932, 3.41544771, -10.4871407)
  2174. Part185.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2175. Part185.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2176. Part185.Velocity = Vector3.new(3.07410488e-08, 0.00247419602, 4.03969523e-07)
  2177. Part185.Size = Vector3.new(0.270000011, 0.21875, 0.234375)
  2178. Part185.Anchored = true
  2179. Part185.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2180. Part185.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2181. Part185.BrickColor = BrickColor.new("Really black")
  2182. Part185.CanCollide = false
  2183. Part185.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2184. Part185.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2185. Part185.Material = Enum.Material.Metal
  2186. Part185.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2187. Part185.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2188. Part185.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2189. Part185.brickColor = BrickColor.new("Really black")
  2190. SpecialMesh186.Parent = Part185
  2191. SpecialMesh186.Scale = Vector3.new(0.5, 0.5, 0.5)
  2192. SpecialMesh186.MeshType = Enum.MeshType.Wedge
  2193. Part187.Parent = Model0
  2194. 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)
  2195. Part187.Orientation = Vector3.new(2.15999985, -0.0799999982, -179.709991)
  2196. Part187.Position = Vector3.new(-0.608188927, 3.09825993, -16.1759663)
  2197. Part187.Rotation = Vector3.new(2.15999985, -0.0799999982, -179.699997)
  2198. Part187.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2199. Part187.Velocity = Vector3.new(8.10360774e-08, 0.00246234378, 1.06490097e-06)
  2200. Part187.Size = Vector3.new(0.275000006, 0.235124931, 1.6693753)
  2201. Part187.Anchored = true
  2202. Part187.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2203. Part187.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2204. Part187.BrickColor = BrickColor.new("Really black")
  2205. Part187.CanCollide = false
  2206. Part187.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2207. Part187.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2208. Part187.Material = Enum.Material.Metal
  2209. Part187.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2210. Part187.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2211. Part187.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2212. Part187.brickColor = BrickColor.new("Really black")
  2213. SpecialMesh188.Parent = Part187
  2214. SpecialMesh188.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  2215. SpecialMesh188.MeshType = Enum.MeshType.Brick
  2216. Part189.Parent = Model0
  2217. 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)
  2218. Part189.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2219. Part189.Position = Vector3.new(-0.611664593, 3.3476572, -14.7413998)
  2220. Part189.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2221. Part189.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2222. Part189.Velocity = Vector3.new(4.14902424e-08, 0.00246533239, 5.45226158e-07)
  2223. Part189.Size = Vector3.new(0.275000006, 0.480124891, 0.214375019)
  2224. Part189.Anchored = true
  2225. Part189.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2226. Part189.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2227. Part189.BrickColor = BrickColor.new("Bright blue")
  2228. Part189.CanCollide = false
  2229. Part189.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2230. Part189.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2231. Part189.Material = Enum.Material.Neon
  2232. Part189.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. Part189.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2234. Part189.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. Part189.brickColor = BrickColor.new("Bright blue")
  2236. SpecialMesh190.Parent = Part189
  2237. SpecialMesh190.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  2238. SpecialMesh190.MeshType = Enum.MeshType.Brick
  2239. Part191.Parent = Model0
  2240. 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)
  2241. Part191.Orientation = Vector3.new(-2.08999991, -0.099999994, 90.2900009)
  2242. Part191.Position = Vector3.new(-0.637731671, 3.71308732, -19.354105)
  2243. Part191.Rotation = Vector3.new(-2.08999991, -0.099999994, 90.2900009)
  2244. Part191.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2245. Part191.Velocity = Vector3.new(-1.64544822e-08, 0.00245571672, -2.16228841e-07)
  2246. Part191.Size = Vector3.new(0.210000038, 0.200000003, 0.285374999)
  2247. Part191.Anchored = true
  2248. Part191.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2249. Part191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2250. Part191.BrickColor = BrickColor.new("Royal purple")
  2251. Part191.CanCollide = false
  2252. Part191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2253. Part191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2254. Part191.Material = Enum.Material.Neon
  2255. Part191.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2256. Part191.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2257. Part191.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2258. Part191.brickColor = BrickColor.new("Royal purple")
  2259. SpecialMesh192.Parent = Part191
  2260. SpecialMesh192.Scale = Vector3.new(0.5, 0.300000012, 0.5)
  2261. SpecialMesh192.MeshType = Enum.MeshType.Wedge
  2262. Part193.Parent = Model0
  2263. 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)
  2264. Part193.Orientation = Vector3.new(-76.0800018, -1.27999997, 1.22000003)
  2265. Part193.Position = Vector3.new(-0.613232374, 3.39655375, -13.8819904)
  2266. Part193.Rotation = Vector3.new(-76.0899963, -0.310000002, -0.00999999978)
  2267. Part193.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2268. Part193.Velocity = Vector3.new(3.37369386e-08, 0.00246712286, 4.43339275e-07)
  2269. Part193.Size = Vector3.new(0.275000006, 0.422124922, 0.412375003)
  2270. Part193.Anchored = true
  2271. Part193.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2272. Part193.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2273. Part193.BrickColor = BrickColor.new("Really black")
  2274. Part193.CanCollide = false
  2275. Part193.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2276. Part193.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2277. Part193.Material = Enum.Material.Metal
  2278. Part193.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2279. Part193.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2280. Part193.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2281. Part193.brickColor = BrickColor.new("Really black")
  2282. SpecialMesh194.Parent = Part193
  2283. SpecialMesh194.Scale = Vector3.new(0.5, 1.04999995, 0.5)
  2284. SpecialMesh194.MeshType = Enum.MeshType.Brick
  2285. Part195.Parent = Model0
  2286. 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)
  2287. Part195.Orientation = Vector3.new(-43.9099998, -179.800003, -90.409996)
  2288. Part195.Position = Vector3.new(-0.640585661, 2.53611565, -13.5419912)
  2289. Part195.Rotation = Vector3.new(-136.089996, -0.140000001, 89.7299957)
  2290. Part195.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2291. Part195.Velocity = Vector3.new(1.70172896e-07, 0.00246782694, 2.23625375e-06)
  2292. Part195.Size = Vector3.new(0.421999991, 0.200000003, 0.280375004)
  2293. Part195.Anchored = true
  2294. Part195.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2295. Part195.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2296. Part195.BrickColor = BrickColor.new("Royal purple")
  2297. Part195.CanCollide = false
  2298. Part195.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2299. Part195.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2300. Part195.Material = Enum.Material.Neon
  2301. Part195.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2302. Part195.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2303. Part195.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2304. Part195.brickColor = BrickColor.new("Royal purple")
  2305. SpecialMesh196.Parent = Part195
  2306. SpecialMesh196.Scale = Vector3.new(1, 0.300000012, 0.5)
  2307. SpecialMesh196.MeshType = Enum.MeshType.Wedge
  2308. Part197.Parent = Model0
  2309. 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)
  2310. Part197.Orientation = Vector3.new(88.8799973, 15.0799999, 105.169998)
  2311. Part197.Position = Vector3.new(-0.647041559, 3.82817221, -13.658843)
  2312. Part197.Rotation = Vector3.new(88.909996, 0.289999992, 90.0899963)
  2313. Part197.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2314. Part197.Velocity = Vector3.new(-3.47029321e-08, 0.00246758247, -4.56033831e-07)
  2315. Part197.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  2316. Part197.Anchored = true
  2317. Part197.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2318. Part197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2319. Part197.BrickColor = BrickColor.new("Royal purple")
  2320. Part197.CanCollide = false
  2321. Part197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2322. Part197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. Part197.Material = Enum.Material.Neon
  2324. Part197.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2325. Part197.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2326. Part197.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2327. Part197.brickColor = BrickColor.new("Royal purple")
  2328. SpecialMesh198.Parent = Part197
  2329. SpecialMesh198.Scale = Vector3.new(1, 0.300000012, 0.5)
  2330. SpecialMesh198.MeshType = Enum.MeshType.Wedge
  2331. Part199.Parent = Model0
  2332. 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)
  2333. Part199.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2334. Part199.Position = Vector3.new(-0.615469754, 3.2510047, -11.9310894)
  2335. Part199.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2336. Part199.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2337. Part199.Velocity = Vector3.new(5.68160452e-08, 0.00247118762, 7.46623186e-07)
  2338. Part199.Size = Vector3.new(0.275000006, 0.261124998, 0.245374992)
  2339. Part199.Anchored = true
  2340. Part199.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2341. Part199.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2342. Part199.BrickColor = BrickColor.new("Bright blue")
  2343. Part199.CanCollide = false
  2344. Part199.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2345. Part199.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2346. Part199.Material = Enum.Material.Neon
  2347. Part199.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2348. Part199.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2349. Part199.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2350. Part199.brickColor = BrickColor.new("Bright blue")
  2351. SpecialMesh200.Parent = Part199
  2352. SpecialMesh200.Scale = Vector3.new(0.375, 1.04999995, 0.5)
  2353. SpecialMesh200.MeshType = Enum.MeshType.Brick
  2354. Part201.Parent = Model0
  2355. 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)
  2356. Part201.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  2357. Part201.Position = Vector3.new(-0.615578175, 3.21754885, -11.7504148)
  2358. Part201.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  2359. Part201.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2360. Part201.Velocity = Vector3.new(6.21209963e-08, 0.0024715641, 8.16335842e-07)
  2361. Part201.Size = Vector3.new(0.275000006, 0.214125022, 0.234375)
  2362. Part201.Anchored = true
  2363. Part201.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2364. Part201.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2365. Part201.BrickColor = BrickColor.new("Really black")
  2366. Part201.CanCollide = false
  2367. Part201.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2368. Part201.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2369. Part201.Material = Enum.Material.Metal
  2370. Part201.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2371. Part201.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2372. Part201.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2373. Part201.brickColor = BrickColor.new("Really black")
  2374. SpecialMesh202.Parent = Part201
  2375. SpecialMesh202.Scale = Vector3.new(0.5, 0.560000002, 0.400000006)
  2376. SpecialMesh202.MeshType = Enum.MeshType.Wedge
  2377. Part203.Parent = Model0
  2378. 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)
  2379. Part203.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  2380. Part203.Position = Vector3.new(-0.613475382, 3.25657153, -13.2536583)
  2381. Part203.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  2382. Part203.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2383. Part203.Velocity = Vector3.new(5.59333202e-08, 0.00246843207, 7.35023434e-07)
  2384. Part203.Size = Vector3.new(0.275000006, 0.204125047, 0.210375011)
  2385. Part203.Anchored = true
  2386. Part203.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2387. Part203.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2388. Part203.BrickColor = BrickColor.new("Really black")
  2389. Part203.CanCollide = false
  2390. Part203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2391. Part203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2392. Part203.Material = Enum.Material.Metal
  2393. Part203.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2394. Part203.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2395. Part203.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2396. Part203.brickColor = BrickColor.new("Really black")
  2397. SpecialMesh204.Parent = Part203
  2398. SpecialMesh204.Scale = Vector3.new(0.5, 0.5, 0.5)
  2399. SpecialMesh204.MeshType = Enum.MeshType.Wedge
  2400. Part205.Parent = Model0
  2401. 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)
  2402. Part205.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2403. Part205.Position = Vector3.new(-0.605959892, 3.52715993, -19.0706863)
  2404. Part205.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2405. Part205.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2406. Part205.Velocity = Vector3.new(1.30272237e-08, 0.0024563123, 1.71192255e-07)
  2407. Part205.Size = Vector3.new(0.275000006, 0.446125001, 0.496375084)
  2408. Part205.Anchored = true
  2409. Part205.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2410. Part205.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2411. Part205.BrickColor = BrickColor.new("Really black")
  2412. Part205.CanCollide = false
  2413. Part205.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2414. Part205.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2415. Part205.Material = Enum.Material.Metal
  2416. Part205.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2417. Part205.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2418. Part205.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2419. Part205.brickColor = BrickColor.new("Really black")
  2420. SpecialMesh206.Parent = Part205
  2421. SpecialMesh206.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  2422. SpecialMesh206.MeshType = Enum.MeshType.Wedge
  2423. Part207.Parent = Model0
  2424. 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)
  2425. Part207.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2426. Part207.Position = Vector3.new(-0.617458701, 3.24875402, -10.62463)
  2427. Part207.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2428. Part207.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2429. Part207.Velocity = Vector3.new(5.71729402e-08, 0.00247390964, 7.51312939e-07)
  2430. Part207.Size = Vector3.new(0.25999999, 0.375, 0.21875)
  2431. Part207.Anchored = true
  2432. Part207.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2433. Part207.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2434. Part207.BrickColor = BrickColor.new("Really black")
  2435. Part207.CanCollide = false
  2436. Part207.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2437. Part207.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2438. Part207.Material = Enum.Material.Metal
  2439. Part207.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2440. Part207.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2441. Part207.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2442. Part207.brickColor = BrickColor.new("Really black")
  2443. SpecialMesh208.Parent = Part207
  2444. SpecialMesh208.Scale = Vector3.new(0.300000012, 1, 1)
  2445. SpecialMesh208.MeshType = Enum.MeshType.Wedge
  2446. Part209.Parent = Model0
  2447. 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)
  2448. Part209.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2449. Part209.Position = Vector3.new(-0.614153862, 3.21053505, -12.6548157)
  2450. Part209.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2451. Part209.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2452. Part209.Velocity = Vector3.new(6.32331378e-08, 0.00246967981, 8.30950682e-07)
  2453. Part209.Size = Vector3.new(0.275000006, 0.35512504, 0.416375011)
  2454. Part209.Anchored = true
  2455. Part209.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2456. Part209.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2457. Part209.BrickColor = BrickColor.new("Really black")
  2458. Part209.CanCollide = false
  2459. Part209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2460. Part209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2461. Part209.Material = Enum.Material.Metal
  2462. Part209.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2463. Part209.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2464. Part209.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2465. Part209.brickColor = BrickColor.new("Really black")
  2466. SpecialMesh210.Parent = Part209
  2467. SpecialMesh210.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  2468. SpecialMesh210.MeshType = Enum.MeshType.Wedge
  2469. Part211.Parent = Model0
  2470. 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)
  2471. Part211.Orientation = Vector3.new(-89.5599976, -138.839996, -131.25)
  2472. Part211.Position = Vector3.new(-0.640777826, 2.97037435, -14.8715458)
  2473. Part211.Rotation = Vector3.new(-90.3399963, -0.289999992, 89.909996)
  2474. Part211.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2475. Part211.Velocity = Vector3.new(1.01314356e-07, 0.00246505649, 1.33137894e-06)
  2476. Part211.Size = Vector3.new(0.49000001, 0.200000003, 0.290374994)
  2477. Part211.Anchored = true
  2478. Part211.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2479. Part211.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2480. Part211.BrickColor = BrickColor.new("Royal purple")
  2481. Part211.CanCollide = false
  2482. Part211.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2483. Part211.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2484. Part211.Material = Enum.Material.Neon
  2485. Part211.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2486. Part211.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2487. Part211.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2488. Part211.brickColor = BrickColor.new("Royal purple")
  2489. SpecialMesh212.Parent = Part211
  2490. SpecialMesh212.Scale = Vector3.new(1, 0.300000012, 0.5)
  2491. SpecialMesh212.MeshType = Enum.MeshType.Wedge
  2492. Part213.Parent = Model0
  2493. 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)
  2494. Part213.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  2495. Part213.Position = Vector3.new(-0.609622896, 3.39657903, -16.2390652)
  2496. Part213.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  2497. Part213.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2498. Part213.Velocity = Vector3.new(3.37329027e-08, 0.002462212, 4.43286638e-07)
  2499. Part213.Size = Vector3.new(0.275000006, 0.533124864, 0.214375019)
  2500. Part213.Anchored = true
  2501. Part213.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2502. Part213.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2503. Part213.BrickColor = BrickColor.new("Bright blue")
  2504. Part213.CanCollide = false
  2505. Part213.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2506. Part213.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2507. Part213.Material = Enum.Material.Neon
  2508. Part213.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2509. Part213.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2510. Part213.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2511. Part213.brickColor = BrickColor.new("Bright blue")
  2512. SpecialMesh214.Parent = Part213
  2513. SpecialMesh214.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  2514. SpecialMesh214.MeshType = Enum.MeshType.Brick
  2515. Part215.Parent = Model0
  2516. 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)
  2517. Part215.Orientation = Vector3.new(82.409996, 2.11999989, 2.23000002)
  2518. Part215.Position = Vector3.new(-0.612417579, 3.49721146, -14.7513313)
  2519. Part215.Rotation = Vector3.new(82.409996, 0.280000001, 0.129999995)
  2520. Part215.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2521. Part215.Velocity = Vector3.new(1.77760739e-08, 0.00246531144, 2.33596552e-07)
  2522. Part215.Size = Vector3.new(0.275000006, 0.488124937, 0.359375)
  2523. Part215.Anchored = true
  2524. Part215.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2525. Part215.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2526. Part215.BrickColor = BrickColor.new("Really black")
  2527. Part215.CanCollide = false
  2528. Part215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2529. Part215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2530. Part215.Material = Enum.Material.Metal
  2531. Part215.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2532. Part215.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2533. Part215.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2534. Part215.brickColor = BrickColor.new("Really black")
  2535. SpecialMesh216.Parent = Part215
  2536. SpecialMesh216.Scale = Vector3.new(0.400000006, 1, 0.5)
  2537. SpecialMesh216.MeshType = Enum.MeshType.Brick
  2538. Part217.Parent = Model0
  2539. 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)
  2540. Part217.Orientation = Vector3.new(43.9099998, 0.199999988, 90.409996)
  2541. Part217.Position = Vector3.new(-0.645515323, 3.66365719, -14.1031828)
  2542. Part217.Rotation = Vector3.new(43.9099998, 0.140000001, 90.2699966)
  2543. Part217.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2544. Part217.Velocity = Vector3.new(-8.61649951e-09, 0.00246665697, -1.13230158e-07)
  2545. Part217.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  2546. Part217.Anchored = true
  2547. Part217.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. Part217.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2549. Part217.BrickColor = BrickColor.new("Royal purple")
  2550. Part217.CanCollide = false
  2551. Part217.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2552. Part217.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2553. Part217.Material = Enum.Material.Neon
  2554. Part217.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2555. Part217.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2556. Part217.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2557. Part217.brickColor = BrickColor.new("Royal purple")
  2558. SpecialMesh218.Parent = Part217
  2559. SpecialMesh218.Scale = Vector3.new(1, 0.300000012, 0.5)
  2560. SpecialMesh218.MeshType = Enum.MeshType.Wedge
  2561. Part219.Parent = Model0
  2562. 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)
  2563. Part219.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2564. Part219.Position = Vector3.new(-0.611597419, 2.92886329, -13.380847)
  2565. Part219.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2566. Part219.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2567. Part219.Velocity = Vector3.new(1.07896597e-07, 0.00246816734, 1.41787655e-06)
  2568. Part219.Size = Vector3.new(0.275000006, 0.630125046, 0.280375004)
  2569. Part219.Anchored = true
  2570. Part219.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2571. Part219.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2572. Part219.BrickColor = BrickColor.new("Really black")
  2573. Part219.CanCollide = false
  2574. Part219.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2575. Part219.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2576. Part219.Material = Enum.Material.Metal
  2577. Part219.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2578. Part219.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2579. Part219.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2580. Part219.brickColor = BrickColor.new("Really black")
  2581. SpecialMesh220.Parent = Part219
  2582. SpecialMesh220.Scale = Vector3.new(0.395000011, 0.75, 0.25)
  2583. SpecialMesh220.MeshType = Enum.MeshType.Wedge
  2584. Part221.Parent = Model0
  2585. 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)
  2586. Part221.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2587. Part221.Position = Vector3.new(-0.609442294, 2.87052941, -14.5920582)
  2588. Part221.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2589. Part221.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2590. Part221.Velocity = Vector3.new(1.17146328e-07, 0.00246564392, 1.53942813e-06)
  2591. Part221.Size = Vector3.new(0.275000006, 0.216999978, 0.295375019)
  2592. Part221.Anchored = true
  2593. Part221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2594. Part221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2595. Part221.BrickColor = BrickColor.new("Really black")
  2596. Part221.CanCollide = false
  2597. Part221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2598. Part221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2599. Part221.Material = Enum.Material.Glass
  2600. Part221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2601. Part221.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2602. Part221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2603. Part221.brickColor = BrickColor.new("Really black")
  2604. SpecialMesh222.Parent = Part221
  2605. SpecialMesh222.Scale = Vector3.new(0.5, 0.75, 0.25)
  2606. SpecialMesh222.MeshType = Enum.MeshType.Wedge
  2607. Part223.Parent = Model0
  2608. 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)
  2609. Part223.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2610. Part223.Position = Vector3.new(-0.609190822, 2.76472902, -14.4025202)
  2611. Part223.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  2612. Part223.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2613. Part223.Velocity = Vector3.new(1.3392264e-07, 0.0024660388, 1.7598868e-06)
  2614. Part223.Size = Vector3.new(0.275000006, 0.23299998, 0.295375019)
  2615. Part223.Anchored = true
  2616. Part223.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2617. Part223.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2618. Part223.BrickColor = BrickColor.new("Really black")
  2619. Part223.CanCollide = false
  2620. Part223.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2621. Part223.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2622. Part223.Material = Enum.Material.Glass
  2623. Part223.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. Part223.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2625. Part223.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. Part223.brickColor = BrickColor.new("Really black")
  2627. SpecialMesh224.Parent = Part223
  2628. SpecialMesh224.Scale = Vector3.new(0.5, 1, 0.25)
  2629. SpecialMesh224.MeshType = Enum.MeshType.Wedge
  2630. Part225.Parent = Model0
  2631. 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)
  2632. Part225.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  2633. Part225.Position = Vector3.new(-0.610054374, 2.83367729, -14.0694036)
  2634. Part225.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  2635. Part225.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2636. Part225.Velocity = Vector3.new(1.22989817e-07, 0.00246673287, 1.61621767e-06)
  2637. Part225.Size = Vector3.new(0.275000006, 0.311124951, 0.267374992)
  2638. Part225.Anchored = true
  2639. Part225.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2640. Part225.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2641. Part225.BrickColor = BrickColor.new("Really black")
  2642. Part225.CanCollide = false
  2643. Part225.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. Part225.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. Part225.Material = Enum.Material.Metal
  2646. Part225.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2647. Part225.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2648. Part225.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2649. Part225.brickColor = BrickColor.new("Really black")
  2650. SpecialMesh226.Parent = Part225
  2651. SpecialMesh226.Scale = Vector3.new(0.495000005, 1, 1)
  2652. SpecialMesh226.MeshType = Enum.MeshType.Brick
  2653. Part227.Parent = Model0
  2654. 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)
  2655. Part227.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2656. Part227.Position = Vector3.new(-0.611247957, 3.01424932, -13.8955402)
  2657. Part227.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2658. Part227.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2659. Part227.Velocity = Vector3.new(9.43572971e-08, 0.00246709492, 1.23995574e-06)
  2660. Part227.Size = Vector3.new(0.275000006, 0.228, 0.213375002)
  2661. Part227.Anchored = true
  2662. Part227.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. Part227.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2664. Part227.BrickColor = BrickColor.new("Really black")
  2665. Part227.CanCollide = false
  2666. Part227.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2667. Part227.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2668. Part227.Material = Enum.Material.Metal
  2669. Part227.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2670. Part227.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2671. Part227.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2672. Part227.brickColor = BrickColor.new("Really black")
  2673. SpecialMesh228.Parent = Part227
  2674. SpecialMesh228.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  2675. SpecialMesh228.MeshType = Enum.MeshType.Wedge
  2676. Part229.Parent = Model0
  2677. 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)
  2678. Part229.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2679. Part229.Position = Vector3.new(-0.614671409, 3.24594569, -12.4355726)
  2680. Part229.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2681. Part229.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2682. Part229.Velocity = Vector3.new(5.76182231e-08, 0.00247013662, 7.57164685e-07)
  2683. Part229.Size = Vector3.new(0.275000006, 0.745124936, 0.280375004)
  2684. Part229.Anchored = true
  2685. Part229.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. Part229.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2687. Part229.BrickColor = BrickColor.new("Really black")
  2688. Part229.CanCollide = false
  2689. Part229.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2690. Part229.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2691. Part229.Material = Enum.Material.Metal
  2692. Part229.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2693. Part229.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2694. Part229.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2695. Part229.brickColor = BrickColor.new("Really black")
  2696. SpecialMesh230.Parent = Part229
  2697. SpecialMesh230.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  2698. SpecialMesh230.MeshType = Enum.MeshType.Brick
  2699. Part231.Parent = Model0
  2700. 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)
  2701. Part231.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2702. Part231.Position = Vector3.new(-0.610754132, 2.89412951, -13.8151274)
  2703. Part231.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2704. Part231.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2705. Part231.Velocity = Vector3.new(1.1340417e-07, 0.00246726256, 1.49025209e-06)
  2706. Part231.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  2707. Part231.Anchored = true
  2708. Part231.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2709. Part231.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2710. Part231.BrickColor = BrickColor.new("Really black")
  2711. Part231.CanCollide = false
  2712. Part231.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2713. Part231.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2714. Part231.Material = Enum.Material.Glass
  2715. Part231.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. Part231.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2717. Part231.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. Part231.brickColor = BrickColor.new("Really black")
  2719. SpecialMesh232.Parent = Part231
  2720. SpecialMesh232.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  2721. SpecialMesh232.MeshType = Enum.MeshType.Wedge
  2722. Part233.Parent = Model0
  2723. 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)
  2724. Part233.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2725. Part233.Position = Vector3.new(-0.614374042, 3.38457584, -13.09618)
  2726. Part233.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2727. Part233.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2728. Part233.Velocity = Vector3.new(3.56362335e-08, 0.00246876013, 4.68297941e-07)
  2729. Part233.Size = Vector3.new(0.275000006, 0.322125077, 0.363375008)
  2730. Part233.Anchored = true
  2731. Part233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2732. Part233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2733. Part233.BrickColor = BrickColor.new("Really black")
  2734. Part233.CanCollide = false
  2735. Part233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2736. Part233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2737. Part233.Material = Enum.Material.Metal
  2738. Part233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2739. Part233.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2740. Part233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2741. Part233.brickColor = BrickColor.new("Really black")
  2742. SpecialMesh234.Parent = Part233
  2743. SpecialMesh234.Scale = Vector3.new(0.5, 1, 1)
  2744. SpecialMesh234.MeshType = Enum.MeshType.Wedge
  2745. Part235.Parent = Model0
  2746. 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)
  2747. Part235.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  2748. Part235.Position = Vector3.new(-0.612951875, 3.3556869, -13.9274721)
  2749. Part235.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  2750. Part235.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2751. Part235.Velocity = Vector3.new(4.02170173e-08, 0.0024670281, 5.28494468e-07)
  2752. Part235.Size = Vector3.new(0.275000006, 0.54112494, 0.367374986)
  2753. Part235.Anchored = true
  2754. Part235.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2755. Part235.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2756. Part235.BrickColor = BrickColor.new("Really black")
  2757. Part235.CanCollide = false
  2758. Part235.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. Part235.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2760. Part235.Material = Enum.Material.Metal
  2761. Part235.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. Part235.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2763. Part235.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2764. Part235.brickColor = BrickColor.new("Really black")
  2765. SpecialMesh236.Parent = Part235
  2766. SpecialMesh236.Scale = Vector3.new(0.5, 1.04999995, 0.600000024)
  2767. SpecialMesh236.MeshType = Enum.MeshType.Brick
  2768. Part237.Parent = Model0
  2769. 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)
  2770. Part237.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  2771. Part237.Position = Vector3.new(-0.611452341, 3.03449631, -13.8299093)
  2772. Part237.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  2773. Part237.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2774. Part237.Velocity = Vector3.new(9.11468163e-08, 0.00246723159, 1.19776655e-06)
  2775. Part237.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  2776. Part237.Anchored = true
  2777. Part237.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. Part237.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2779. Part237.BrickColor = BrickColor.new("Really black")
  2780. Part237.CanCollide = false
  2781. Part237.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2782. Part237.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2783. Part237.Material = Enum.Material.Metal
  2784. Part237.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2785. Part237.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2786. Part237.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2787. Part237.brickColor = BrickColor.new("Really black")
  2788. SpecialMesh238.Parent = Part237
  2789. SpecialMesh238.Scale = Vector3.new(0.5, 0.5, 0.5)
  2790. SpecialMesh238.MeshType = Enum.MeshType.Wedge
  2791. Part239.Parent = Model0
  2792. 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)
  2793. Part239.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  2794. Part239.Position = Vector3.new(-0.608695984, 3.30580091, -16.5400867)
  2795. Part239.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  2796. Part239.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2797. Part239.Velocity = Vector3.new(4.81271911e-08, 0.00246158475, 6.32443061e-07)
  2798. Part239.Size = Vector3.new(0.275000006, 1.65712488, 0.422374964)
  2799. Part239.Anchored = true
  2800. Part239.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2801. Part239.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2802. Part239.BrickColor = BrickColor.new("Really black")
  2803. Part239.CanCollide = false
  2804. Part239.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2805. Part239.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2806. Part239.Material = Enum.Material.Metal
  2807. Part239.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2808. Part239.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2809. Part239.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2810. Part239.brickColor = BrickColor.new("Really black")
  2811. SpecialMesh240.Parent = Part239
  2812. SpecialMesh240.Scale = Vector3.new(0.400000006, 1, 0.5)
  2813. SpecialMesh240.MeshType = Enum.MeshType.Brick
  2814. Part241.Parent = Model0
  2815. 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)
  2816. Part241.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  2817. Part241.Position = Vector3.new(-0.607766628, 3.58790874, -18.0936966)
  2818. Part241.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  2819. Part241.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2820. Part241.Velocity = Vector3.new(3.39455752e-09, 0.00245834771, 4.46085551e-08)
  2821. Part241.Size = Vector3.new(0.275000006, 1.66212487, 0.359375)
  2822. Part241.Anchored = true
  2823. Part241.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2824. Part241.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2825. Part241.BrickColor = BrickColor.new("Really black")
  2826. Part241.CanCollide = false
  2827. Part241.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2828. Part241.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2829. Part241.Material = Enum.Material.Metal
  2830. Part241.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2831. Part241.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2832. Part241.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2833. Part241.brickColor = BrickColor.new("Really black")
  2834. SpecialMesh242.Parent = Part241
  2835. SpecialMesh242.Scale = Vector3.new(0.400000006, 1, 0.5)
  2836. SpecialMesh242.MeshType = Enum.MeshType.Brick
  2837. Part243.Parent = Model0
  2838. 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)
  2839. Part243.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2840. Part243.Position = Vector3.new(-0.618630528, 3.29811025, -11.1170893)
  2841. Part243.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2842. Part243.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2843. Part243.Velocity = Vector3.new(4.93467311e-08, 0.00247288332, 6.48468244e-07)
  2844. Part243.Size = Vector3.new(0.25999999, 0.3125, 0.320125014)
  2845. Part243.Anchored = true
  2846. Part243.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2847. Part243.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2848. Part243.BrickColor = BrickColor.new("Really black")
  2849. Part243.CanCollide = false
  2850. Part243.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2851. Part243.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2852. Part243.Material = Enum.Material.Metal
  2853. Part243.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2854. Part243.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2855. Part243.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2856. Part243.brickColor = BrickColor.new("Really black")
  2857. SpecialMesh244.Parent = Part243
  2858. SpecialMesh244.Scale = Vector3.new(0.5, 1, 1)
  2859. SpecialMesh244.MeshType = Enum.MeshType.Wedge
  2860. Part245.Parent = Model0
  2861. 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)
  2862. Part245.Orientation = Vector3.new(-73.909996, -179.069992, -91.0599976)
  2863. Part245.Position = Vector3.new(-0.639055848, 2.33898354, -13.8797112)
  2864. Part245.Rotation = Vector3.new(-106.089996, -0.25999999, 89.8299942)
  2865. Part245.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2866. Part245.Velocity = Vector3.new(2.01431277e-07, 0.00246712356, 2.64702226e-06)
  2867. Part245.Size = Vector3.new(0.453000009, 0.200000003, 0.280375004)
  2868. Part245.Anchored = true
  2869. Part245.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2870. Part245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2871. Part245.BrickColor = BrickColor.new("Royal purple")
  2872. Part245.CanCollide = false
  2873. Part245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2874. Part245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2875. Part245.Material = Enum.Material.Neon
  2876. Part245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2877. Part245.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2878. Part245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2879. Part245.brickColor = BrickColor.new("Royal purple")
  2880. SpecialMesh246.Parent = Part245
  2881. SpecialMesh246.Scale = Vector3.new(1, 0.300000012, 0.5)
  2882. SpecialMesh246.MeshType = Enum.MeshType.Wedge
  2883. Part247.Parent = Model0
  2884. 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)
  2885. Part247.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  2886. Part247.Position = Vector3.new(-0.611137211, 3.24560308, -14.7434616)
  2887. Part247.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  2888. Part247.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2889. Part247.Velocity = Vector3.new(5.76725228e-08, 0.0024653282, 7.57878638e-07)
  2890. Part247.Size = Vector3.new(0.275000006, 0.488124937, 0.418375015)
  2891. Part247.Anchored = true
  2892. Part247.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2893. Part247.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2894. Part247.BrickColor = BrickColor.new("Really black")
  2895. Part247.CanCollide = false
  2896. Part247.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2897. Part247.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2898. Part247.Material = Enum.Material.Metal
  2899. Part247.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2900. Part247.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2901. Part247.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2902. Part247.brickColor = BrickColor.new("Really black")
  2903. SpecialMesh248.Parent = Part247
  2904. SpecialMesh248.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  2905. SpecialMesh248.MeshType = Enum.MeshType.Brick
  2906. Part249.Parent = Model0
  2907. 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)
  2908. Part249.Orientation = Vector3.new(46.079998, 179.610001, -90.4199982)
  2909. Part249.Position = Vector3.new(-0.646988273, 3.68078995, -13.1990242)
  2910. Part249.Rotation = Vector3.new(133.910004, 0.269999981, 89.8600006)
  2911. Part249.Color = Color3.new(0.384314, 0.145098, 0.819608)
  2912. Part249.Velocity = Vector3.new(-1.13331566e-08, 0.00246854057, -1.48930098e-07)
  2913. Part249.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  2914. Part249.Anchored = true
  2915. Part249.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2916. Part249.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2917. Part249.BrickColor = BrickColor.new("Royal purple")
  2918. Part249.CanCollide = false
  2919. Part249.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2920. Part249.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2921. Part249.Material = Enum.Material.Neon
  2922. Part249.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2923. Part249.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2924. Part249.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2925. Part249.brickColor = BrickColor.new("Royal purple")
  2926. SpecialMesh250.Parent = Part249
  2927. SpecialMesh250.Scale = Vector3.new(1, 0.300000012, 0.5)
  2928. SpecialMesh250.MeshType = Enum.MeshType.Wedge
  2929. Part251.Parent = Model0
  2930. 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)
  2931. Part251.Orientation = Vector3.new(-81.0800018, -1.95999992, -178.099991)
  2932. Part251.Position = Vector3.new(-0.616084397, 3.20240736, -11.3666525)
  2933. Part251.Rotation = Vector3.new(-81.0899963, -0.299999982, 179.959991)
  2934. Part251.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2935. Part251.Velocity = Vector3.new(6.45219203e-08, 0.00247236365, 8.47886554e-07)
  2936. Part251.Size = Vector3.new(0.275000006, 0.203125, 0.234375)
  2937. Part251.Anchored = true
  2938. Part251.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2939. Part251.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2940. Part251.BrickColor = BrickColor.new("Really black")
  2941. Part251.CanCollide = false
  2942. Part251.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2943. Part251.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2944. Part251.Material = Enum.Material.Metal
  2945. Part251.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2946. Part251.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2947. Part251.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2948. Part251.brickColor = BrickColor.new("Really black")
  2949. SpecialMesh252.Parent = Part251
  2950. SpecialMesh252.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  2951. SpecialMesh252.MeshType = Enum.MeshType.Brick
  2952. Part253.Parent = Model0
  2953. 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)
  2954. Part253.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  2955. Part253.Position = Vector3.new(-0.616027236, 3.22281599, -11.4724684)
  2956. Part253.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  2957. Part253.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2958. Part253.Velocity = Vector3.new(6.12858102e-08, 0.00247214315, 8.05360628e-07)
  2959. Part253.Size = Vector3.new(0.275000006, 0.415125012, 0.234375)
  2960. Part253.Anchored = true
  2961. Part253.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2962. Part253.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2963. Part253.BrickColor = BrickColor.new("Really black")
  2964. Part253.CanCollide = false
  2965. Part253.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2966. Part253.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2967. Part253.Material = Enum.Material.Metal
  2968. Part253.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2969. Part253.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2970. Part253.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2971. Part253.brickColor = BrickColor.new("Really black")
  2972. SpecialMesh254.Parent = Part253
  2973. SpecialMesh254.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  2974. SpecialMesh254.MeshType = Enum.MeshType.Brick
  2975. Part255.Parent = Model0
  2976. 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)
  2977. Part255.Orientation = Vector3.new(66.159996, 0.579999983, 0.729999959)
  2978. Part255.Position = Vector3.new(-0.610752404, 3.28331137, -15.1213608)
  2979. Part255.Rotation = Vector3.new(66.159996, 0.229999989, 0.199999988)
  2980. Part255.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2981. Part255.Velocity = Vector3.new(5.16932808e-08, 0.00246454077, 6.79305003e-07)
  2982. Part255.Size = Vector3.new(0.275000006, 0.330124885, 0.214375019)
  2983. Part255.Anchored = true
  2984. Part255.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2985. Part255.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2986. Part255.BrickColor = BrickColor.new("Bright blue")
  2987. Part255.CanCollide = false
  2988. Part255.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2989. Part255.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2990. Part255.Material = Enum.Material.Neon
  2991. Part255.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2992. Part255.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  2993. Part255.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2994. Part255.brickColor = BrickColor.new("Bright blue")
  2995. SpecialMesh256.Parent = Part255
  2996. SpecialMesh256.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  2997. SpecialMesh256.MeshType = Enum.MeshType.Brick
  2998. Part257.Parent = Model0
  2999. 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)
  3000. Part257.Orientation = Vector3.new(-47.079998, -0.399999976, 90.4300003)
  3001. Part257.Position = Vector3.new(-0.63657546, 3.38894939, -19.0216789)
  3002. Part257.Rotation = Vector3.new(-47.0900002, -0.280000001, 90.1399994)
  3003. Part257.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3004. Part257.Velocity = Vector3.new(3.49426692e-08, 0.00245640939, 4.59184662e-07)
  3005. Part257.Size = Vector3.new(0.940000057, 0.200000003, 0.285374999)
  3006. Part257.Anchored = true
  3007. Part257.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3008. Part257.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3009. Part257.BrickColor = BrickColor.new("Royal purple")
  3010. Part257.CanCollide = false
  3011. Part257.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3012. Part257.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3013. Part257.Material = Enum.Material.Neon
  3014. Part257.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3015. Part257.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3016. Part257.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3017. Part257.brickColor = BrickColor.new("Royal purple")
  3018. SpecialMesh258.Parent = Part257
  3019. SpecialMesh258.Scale = Vector3.new(1, 0.300000012, 0.5)
  3020. SpecialMesh258.MeshType = Enum.MeshType.Wedge
  3021. Part259.Parent = Model0
  3022. 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)
  3023. Part259.Orientation = Vector3.new(46.079998, 179.610001, 89.5799942)
  3024. Part259.Position = Vector3.new(-0.584489346, 3.6811111, -13.1989288)
  3025. Part259.Rotation = Vector3.new(133.910004, 0.269999981, -90.1399994)
  3026. Part259.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3027. Part259.Velocity = Vector3.new(-1.13840777e-08, 0.00246855081, -1.49599259e-07)
  3028. Part259.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3029. Part259.Anchored = true
  3030. Part259.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3031. Part259.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3032. Part259.BrickColor = BrickColor.new("Royal purple")
  3033. Part259.CanCollide = false
  3034. Part259.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3035. Part259.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3036. Part259.Material = Enum.Material.Neon
  3037. Part259.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3038. Part259.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3039. Part259.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3040. Part259.brickColor = BrickColor.new("Royal purple")
  3041. SpecialMesh260.Parent = Part259
  3042. SpecialMesh260.Scale = Vector3.new(1, 0.300000012, 0.5)
  3043. SpecialMesh260.MeshType = Enum.MeshType.Wedge
  3044. Part261.Parent = Model0
  3045. 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)
  3046. Part261.Orientation = Vector3.new(-47.079998, -0.399999976, -89.5699997)
  3047. Part261.Position = Vector3.new(-0.574076533, 3.38927007, -19.0215836)
  3048. Part261.Rotation = Vector3.new(-47.0900002, -0.280000001, -89.8600006)
  3049. Part261.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3050. Part261.Velocity = Vector3.new(3.48918228e-08, 0.00245641964, 4.58516467e-07)
  3051. Part261.Size = Vector3.new(0.940000057, 0.200000003, 0.285374999)
  3052. Part261.Anchored = true
  3053. Part261.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3054. Part261.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3055. Part261.BrickColor = BrickColor.new("Royal purple")
  3056. Part261.CanCollide = false
  3057. Part261.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3058. Part261.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3059. Part261.Material = Enum.Material.Neon
  3060. Part261.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3061. Part261.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3062. Part261.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3063. Part261.brickColor = BrickColor.new("Royal purple")
  3064. SpecialMesh262.Parent = Part261
  3065. SpecialMesh262.Scale = Vector3.new(1, 0.300000012, 0.5)
  3066. SpecialMesh262.MeshType = Enum.MeshType.Wedge
  3067. Part263.Parent = Model0
  3068. 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)
  3069. Part263.Orientation = Vector3.new(-67.659996, -179.369995, -90.7699966)
  3070. Part263.Position = Vector3.new(-0.640052557, 2.92977762, -15.2103024)
  3071. Part263.Rotation = Vector3.new(-112.339996, -0.239999995, 89.8099976)
  3072. Part263.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3073. Part263.Velocity = Vector3.new(1.07751589e-07, 0.00246435078, 1.41597127e-06)
  3074. Part263.Size = Vector3.new(0.288000047, 0.200000003, 0.27837503)
  3075. Part263.Anchored = true
  3076. Part263.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3077. Part263.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3078. Part263.BrickColor = BrickColor.new("Royal purple")
  3079. Part263.CanCollide = false
  3080. Part263.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3081. Part263.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3082. Part263.Material = Enum.Material.Neon
  3083. Part263.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3084. Part263.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3085. Part263.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3086. Part263.brickColor = BrickColor.new("Royal purple")
  3087. SpecialMesh264.Parent = Part263
  3088. SpecialMesh264.Scale = Vector3.new(1, 0.300000012, 0.5)
  3089. SpecialMesh264.MeshType = Enum.MeshType.Wedge
  3090. Part265.Parent = Model0
  3091. 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)
  3092. Part265.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3093. Part265.Position = Vector3.new(-0.611472309, 3.03472614, -13.8177929)
  3094. Part265.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3095. Part265.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3096. Part265.Velocity = Vector3.new(9.11103797e-08, 0.00246725697, 1.1972877e-06)
  3097. Part265.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  3098. Part265.Anchored = true
  3099. Part265.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3100. Part265.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3101. Part265.BrickColor = BrickColor.new("Really black")
  3102. Part265.CanCollide = false
  3103. Part265.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3104. Part265.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3105. Part265.Material = Enum.Material.Glass
  3106. Part265.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3107. Part265.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3108. Part265.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3109. Part265.brickColor = BrickColor.new("Really black")
  3110. SpecialMesh266.Parent = Part265
  3111. SpecialMesh266.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  3112. SpecialMesh266.MeshType = Enum.MeshType.Wedge
  3113. Part267.Parent = Model0
  3114. 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)
  3115. Part267.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  3116. Part267.Position = Vector3.new(-0.608101904, 3.29321218, -16.8867702)
  3117. Part267.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  3118. Part267.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3119. Part267.Velocity = Vector3.new(5.0123333e-08, 0.00246086251, 6.5867448e-07)
  3120. Part267.Size = Vector3.new(0.275000006, 0.454124868, 0.214375019)
  3121. Part267.Anchored = true
  3122. Part267.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3123. Part267.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3124. Part267.BrickColor = BrickColor.new("Bright blue")
  3125. Part267.CanCollide = false
  3126. Part267.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3127. Part267.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3128. Part267.Material = Enum.Material.Neon
  3129. Part267.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. Part267.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3131. Part267.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3132. Part267.brickColor = BrickColor.new("Bright blue")
  3133. SpecialMesh268.Parent = Part267
  3134. SpecialMesh268.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  3135. SpecialMesh268.MeshType = Enum.MeshType.Brick
  3136. Part269.Parent = Model0
  3137. 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)
  3138. Part269.Orientation = Vector3.new(-43.9099998, -179.800003, -0.409999996)
  3139. Part269.Position = Vector3.new(-0.609975338, 2.71316695, -13.7165575)
  3140. Part269.Rotation = Vector3.new(-136.089996, -0.140000001, 179.729996)
  3141. Part269.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3142. Part269.Velocity = Vector3.new(1.42098628e-07, 0.00246746815, 1.8673278e-06)
  3143. Part269.Size = Vector3.new(0.275000006, 0.403124899, 0.352375001)
  3144. Part269.Anchored = true
  3145. Part269.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. Part269.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3147. Part269.BrickColor = BrickColor.new("Really black")
  3148. Part269.CanCollide = false
  3149. Part269.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3150. Part269.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3151. Part269.Material = Enum.Material.Metal
  3152. Part269.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3153. Part269.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3154. Part269.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3155. Part269.brickColor = BrickColor.new("Really black")
  3156. SpecialMesh270.Parent = Part269
  3157. SpecialMesh270.Scale = Vector3.new(0.349999994, 1, 1)
  3158. SpecialMesh270.MeshType = Enum.MeshType.Brick
  3159. Part271.Parent = Model0
  3160. 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)
  3161. Part271.Orientation = Vector3.new(43.9099998, 0.199999988, -89.5899963)
  3162. Part271.Position = Vector3.new(-0.583012402, 3.6639781, -14.1030874)
  3163. Part271.Rotation = Vector3.new(43.9099998, 0.140000001, -89.7299957)
  3164. Part271.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3165. Part271.Velocity = Vector3.new(-8.66738503e-09, 0.00246666698, -1.13898864e-07)
  3166. Part271.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3167. Part271.Anchored = true
  3168. Part271.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3169. Part271.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3170. Part271.BrickColor = BrickColor.new("Royal purple")
  3171. Part271.CanCollide = false
  3172. Part271.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3173. Part271.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3174. Part271.Material = Enum.Material.Neon
  3175. Part271.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3176. Part271.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3177. Part271.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3178. Part271.brickColor = BrickColor.new("Royal purple")
  3179. SpecialMesh272.Parent = Part271
  3180. SpecialMesh272.Scale = Vector3.new(1, 0.300000012, 0.5)
  3181. SpecialMesh272.MeshType = Enum.MeshType.Wedge
  3182. Part273.Parent = Model0
  3183. 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)
  3184. Part273.Orientation = Vector3.new(-85.0800018, -3.50999999, -86.5699997)
  3185. Part273.Position = Vector3.new(-0.573997319, 3.0173018, -17.825201)
  3186. Part273.Rotation = Vector3.new(-85.0899963, -0.299999982, -90.0599976)
  3187. Part273.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3188. Part273.Velocity = Vector3.new(9.38732327e-08, 0.00245891255, 1.23359519e-06)
  3189. Part273.Size = Vector3.new(1.78499997, 0.200000003, 0.301375002)
  3190. Part273.Anchored = true
  3191. Part273.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3192. Part273.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3193. Part273.BrickColor = BrickColor.new("Royal purple")
  3194. Part273.CanCollide = false
  3195. Part273.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3196. Part273.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3197. Part273.Material = Enum.Material.Neon
  3198. Part273.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3199. Part273.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3200. Part273.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3201. Part273.brickColor = BrickColor.new("Royal purple")
  3202. SpecialMesh274.Parent = Part273
  3203. SpecialMesh274.Scale = Vector3.new(1, 0.300000012, 0.5)
  3204. SpecialMesh274.MeshType = Enum.MeshType.Wedge
  3205. Part275.Parent = Model0
  3206. 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)
  3207. Part275.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3208. Part275.Position = Vector3.new(-0.614639282, 3.4985106, -13.3051252)
  3209. Part275.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3210. Part275.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3211. Part275.Velocity = Vector3.new(1.75700912e-08, 0.00246832473, 2.30889498e-07)
  3212. Part275.Size = Vector3.new(0.275000006, 0.204125047, 0.207375005)
  3213. Part275.Anchored = true
  3214. Part275.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3215. Part275.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3216. Part275.BrickColor = BrickColor.new("Really black")
  3217. Part275.CanCollide = false
  3218. Part275.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3219. Part275.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3220. Part275.Material = Enum.Material.Metal
  3221. Part275.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. Part275.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3223. Part275.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3224. Part275.brickColor = BrickColor.new("Really black")
  3225. SpecialMesh276.Parent = Part275
  3226. SpecialMesh276.Scale = Vector3.new(0.5, 0.5, 0.5)
  3227. SpecialMesh276.MeshType = Enum.MeshType.Wedge
  3228. Part277.Parent = Model0
  3229. 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)
  3230. Part277.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3231. Part277.Position = Vector3.new(-0.609530032, 2.79620743, -14.2853489)
  3232. Part277.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3233. Part277.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3234. Part277.Velocity = Vector3.new(1.28931248e-07, 0.00246628304, 1.6942945e-06)
  3235. Part277.Size = Vector3.new(0.275000006, 0.223999977, 0.375375003)
  3236. Part277.Anchored = true
  3237. Part277.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3238. Part277.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3239. Part277.BrickColor = BrickColor.new("Really black")
  3240. Part277.CanCollide = false
  3241. Part277.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3242. Part277.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3243. Part277.Material = Enum.Material.Glass
  3244. Part277.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3245. Part277.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3246. Part277.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3247. Part277.brickColor = BrickColor.new("Really black")
  3248. SpecialMesh278.Parent = Part277
  3249. SpecialMesh278.Scale = Vector3.new(0.5, 0.699999988, 0.5)
  3250. SpecialMesh278.MeshType = Enum.MeshType.Brick
  3251. Part279.Parent = Model0
  3252. 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)
  3253. Part279.Orientation = Vector3.new(-89.5599976, -138.839996, 48.75)
  3254. Part279.Position = Vector3.new(-0.578278601, 2.9706955, -14.8714504)
  3255. Part279.Rotation = Vector3.new(-90.3399963, -0.289999992, -90.0899963)
  3256. Part279.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3257. Part279.Velocity = Vector3.new(1.01263424e-07, 0.00246506673, 1.33070978e-06)
  3258. Part279.Size = Vector3.new(0.49000001, 0.200000003, 0.290374994)
  3259. Part279.Anchored = true
  3260. Part279.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3261. Part279.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3262. Part279.BrickColor = BrickColor.new("Royal purple")
  3263. Part279.CanCollide = false
  3264. Part279.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3265. Part279.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3266. Part279.Material = Enum.Material.Neon
  3267. Part279.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3268. Part279.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3269. Part279.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3270. Part279.brickColor = BrickColor.new("Royal purple")
  3271. SpecialMesh280.Parent = Part279
  3272. SpecialMesh280.Scale = Vector3.new(1, 0.300000012, 0.5)
  3273. SpecialMesh280.MeshType = Enum.MeshType.Wedge
  3274. Part281.Parent = Model0
  3275. 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)
  3276. Part281.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3277. Part281.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  3278. Part281.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3279. Part281.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3280. Part281.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  3281. Part281.Size = Vector3.new(0.275000006, 0.698124886, 0.732374966)
  3282. Part281.Anchored = true
  3283. Part281.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3284. Part281.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3285. Part281.BrickColor = BrickColor.new("Really black")
  3286. Part281.CanCollide = false
  3287. Part281.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3288. Part281.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3289. Part281.Material = Enum.Material.Metal
  3290. Part281.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. Part281.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3292. Part281.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. Part281.brickColor = BrickColor.new("Really black")
  3294. SpecialMesh282.Parent = Part281
  3295. SpecialMesh282.Scale = Vector3.new(0.425000012, 1, 1)
  3296. SpecialMesh282.MeshType = Enum.MeshType.Cylinder
  3297. Part283.Parent = Model0
  3298. 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)
  3299. Part283.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  3300. Part283.Position = Vector3.new(-0.614591718, 3.4972918, -13.3320847)
  3301. Part283.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  3302. Part283.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3303. Part283.Velocity = Vector3.new(1.77633499e-08, 0.00246826862, 2.33429148e-07)
  3304. Part283.Size = Vector3.new(0.275000006, 0.413124949, 0.622375011)
  3305. Part283.Anchored = true
  3306. Part283.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. Part283.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3308. Part283.BrickColor = BrickColor.new("Really black")
  3309. Part283.CanCollide = false
  3310. Part283.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3311. Part283.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3312. Part283.Material = Enum.Material.Metal
  3313. Part283.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3314. Part283.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3315. Part283.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3316. Part283.brickColor = BrickColor.new("Really black")
  3317. SpecialMesh284.Parent = Part283
  3318. SpecialMesh284.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3319. SpecialMesh284.MeshType = Enum.MeshType.Brick
  3320. Part285.Parent = Model0
  3321. 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)
  3322. Part285.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3323. Part285.Position = Vector3.new(-0.615438342, 3.25487208, -11.9645395)
  3324. Part285.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3325. Part285.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3326. Part285.Velocity = Vector3.new(5.62028113e-08, 0.002471118, 7.38564609e-07)
  3327. Part285.Size = Vector3.new(0.275000006, 0.206125051, 0.280375004)
  3328. Part285.Anchored = true
  3329. Part285.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3330. Part285.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3331. Part285.BrickColor = BrickColor.new("Really black")
  3332. Part285.CanCollide = false
  3333. Part285.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3334. Part285.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3335. Part285.Material = Enum.Material.Metal
  3336. Part285.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3337. Part285.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3338. Part285.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3339. Part285.brickColor = BrickColor.new("Really black")
  3340. SpecialMesh286.Parent = Part285
  3341. SpecialMesh286.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  3342. SpecialMesh286.MeshType = Enum.MeshType.Wedge
  3343. Part287.Parent = Model0
  3344. 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)
  3345. Part287.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3346. Part287.Position = Vector3.new(-0.613306701, 3.18584442, -13.1265478)
  3347. Part287.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3348. Part287.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3349. Part287.Velocity = Vector3.new(6.71482141e-08, 0.00246869703, 8.82399092e-07)
  3350. Part287.Size = Vector3.new(0.275000006, 0.567124963, 0.311374992)
  3351. Part287.Anchored = true
  3352. Part287.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3353. Part287.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3354. Part287.BrickColor = BrickColor.new("Really black")
  3355. Part287.CanCollide = false
  3356. Part287.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3357. Part287.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3358. Part287.Material = Enum.Material.Metal
  3359. Part287.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3360. Part287.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3361. Part287.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3362. Part287.brickColor = BrickColor.new("Really black")
  3363. SpecialMesh288.Parent = Part287
  3364. SpecialMesh288.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3365. SpecialMesh288.MeshType = Enum.MeshType.Brick
  3366. Part289.Parent = Model0
  3367. 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)
  3368. Part289.Orientation = Vector3.new(46.079998, 179.610001, -90.4199982)
  3369. Part289.Position = Vector3.new(-0.646988273, 3.68078995, -13.1990242)
  3370. Part289.Rotation = Vector3.new(133.910004, 0.269999981, 89.8600006)
  3371. Part289.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3372. Part289.Velocity = Vector3.new(-1.13331566e-08, 0.00246854057, -1.48930098e-07)
  3373. Part289.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  3374. Part289.Anchored = true
  3375. Part289.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3376. Part289.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3377. Part289.BrickColor = BrickColor.new("Royal purple")
  3378. Part289.CanCollide = false
  3379. Part289.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3380. Part289.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3381. Part289.Material = Enum.Material.Neon
  3382. Part289.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3383. Part289.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3384. Part289.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3385. Part289.brickColor = BrickColor.new("Royal purple")
  3386. SpecialMesh290.Parent = Part289
  3387. SpecialMesh290.Scale = Vector3.new(1, 0.300000012, 0.5)
  3388. SpecialMesh290.MeshType = Enum.MeshType.Wedge
  3389. Part291.Parent = Model0
  3390. 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)
  3391. Part291.Orientation = Vector3.new(-1.09000003, -0.0899999961, 0.289999992)
  3392. Part291.Position = Vector3.new(-0.611590862, 3.29178786, -14.6020966)
  3393. Part291.Rotation = Vector3.new(-1.09000003, -0.0899999961, 0.289999992)
  3394. Part291.Color = Color3.new(0.972549, 0.972549, 0.972549)
  3395. Part291.Velocity = Vector3.new(5.03492039e-08, 0.00246562273, 6.61642332e-07)
  3396. Part291.Size = Vector3.new(0.275000006, 0.200124964, 0.287375033)
  3397. Part291.Anchored = true
  3398. Part291.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3399. Part291.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3400. Part291.BrickColor = BrickColor.new("Institutional white")
  3401. Part291.CanCollide = false
  3402. Part291.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3403. Part291.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3404. Part291.Material = Enum.Material.Metal
  3405. Part291.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3406. Part291.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3407. Part291.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3408. Part291.brickColor = BrickColor.new("Institutional white")
  3409. SpecialMesh292.Parent = Part291
  3410. SpecialMesh292.Scale = Vector3.new(0.560000002, 1, 0.899999976)
  3411. SpecialMesh292.MeshType = Enum.MeshType.Wedge
  3412. Part293.Parent = Model0
  3413. 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)
  3414. Part293.Orientation = Vector3.new(-85.0800018, -3.50999999, 93.4300003)
  3415. Part293.Position = Vector3.new(-0.636496425, 3.01698065, -17.8252964)
  3416. Part293.Rotation = Vector3.new(-85.0899963, -0.299999982, 89.9399948)
  3417. Part293.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3418. Part293.Velocity = Vector3.new(9.39241573e-08, 0.00245890254, 1.23426435e-06)
  3419. Part293.Size = Vector3.new(1.78499997, 0.200000003, 0.301375002)
  3420. Part293.Anchored = true
  3421. Part293.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3422. Part293.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3423. Part293.BrickColor = BrickColor.new("Royal purple")
  3424. Part293.CanCollide = false
  3425. Part293.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3426. Part293.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3427. Part293.Material = Enum.Material.Neon
  3428. Part293.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3429. Part293.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3430. Part293.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3431. Part293.brickColor = BrickColor.new("Royal purple")
  3432. SpecialMesh294.Parent = Part293
  3433. SpecialMesh294.Scale = Vector3.new(1, 0.300000012, 0.5)
  3434. SpecialMesh294.MeshType = Enum.MeshType.Wedge
  3435. Part295.Parent = Model0
  3436. 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)
  3437. Part295.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3438. Part295.Position = Vector3.new(-0.611132324, 3.1960454, -14.5803022)
  3439. Part295.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3440. Part295.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3441. Part295.Velocity = Vector3.new(6.55306707e-08, 0.00246566813, 8.61143121e-07)
  3442. Part295.Size = Vector3.new(0.275000006, 0.277124941, 0.702375054)
  3443. Part295.Anchored = true
  3444. Part295.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3445. Part295.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3446. Part295.BrickColor = BrickColor.new("Really black")
  3447. Part295.CanCollide = false
  3448. Part295.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3449. Part295.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3450. Part295.Material = Enum.Material.Glass
  3451. Part295.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3452. Part295.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3453. Part295.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3454. Part295.brickColor = BrickColor.new("Really black")
  3455. SpecialMesh296.Parent = Part295
  3456. SpecialMesh296.Scale = Vector3.new(0.550000012, 0.5, 0.800000012)
  3457. SpecialMesh296.MeshType = Enum.MeshType.Brick
  3458. Part297.Parent = Model0
  3459. 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)
  3460. Part297.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3461. Part297.Position = Vector3.new(-0.610346913, 2.907269, -14.1244287)
  3462. Part297.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3463. Part297.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3464. Part297.Velocity = Vector3.new(1.11320702e-07, 0.00246661808, 1.462873e-06)
  3465. Part297.Size = Vector3.new(0.275000006, 0.207000002, 0.213375002)
  3466. Part297.Anchored = true
  3467. Part297.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3468. Part297.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3469. Part297.BrickColor = BrickColor.new("Bright blue")
  3470. Part297.CanCollide = false
  3471. Part297.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3472. Part297.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3473. Part297.Material = Enum.Material.Neon
  3474. Part297.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3475. Part297.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3476. Part297.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3477. Part297.brickColor = BrickColor.new("Bright blue")
  3478. SpecialMesh298.Parent = Part297
  3479. SpecialMesh298.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  3480. SpecialMesh298.MeshType = Enum.MeshType.Wedge
  3481. Part299.Parent = Model0
  3482. 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)
  3483. Part299.Orientation = Vector3.new(83.909996, 2.66999984, 2.76999998)
  3484. Part299.Position = Vector3.new(-0.617512941, 3.42300797, -11.1735916)
  3485. Part299.Rotation = Vector3.new(83.909996, 0.280000001, 0.119999997)
  3486. Part299.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3487. Part299.Velocity = Vector3.new(2.95422424e-08, 0.00247276574, 3.88216051e-07)
  3488. Part299.Size = Vector3.new(0.275000006, 0.223124996, 0.234375)
  3489. Part299.Anchored = true
  3490. Part299.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3491. Part299.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3492. Part299.BrickColor = BrickColor.new("Really black")
  3493. Part299.CanCollide = false
  3494. Part299.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3495. Part299.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3496. Part299.Material = Enum.Material.Metal
  3497. Part299.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3498. Part299.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3499. Part299.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3500. Part299.brickColor = BrickColor.new("Really black")
  3501. SpecialMesh300.Parent = Part299
  3502. SpecialMesh300.Scale = Vector3.new(0.5, 1, 0.400000006)
  3503. SpecialMesh300.MeshType = Enum.MeshType.Brick
  3504. Part301.Parent = Model0
  3505. 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)
  3506. Part301.Orientation = Vector3.new(5.40999985, -0.0599999987, -179.699997)
  3507. Part301.Position = Vector3.new(-0.60622716, 3.20835805, -17.8265324)
  3508. Part301.Rotation = Vector3.new(5.40999985, -0.0599999987, -179.699997)
  3509. Part301.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3510. Part301.Velocity = Vector3.new(6.35782698e-08, 0.00245890464, 8.35486958e-07)
  3511. Part301.Size = Vector3.new(0.275000006, 0.235124931, 1.6693753)
  3512. Part301.Anchored = true
  3513. Part301.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3514. Part301.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3515. Part301.BrickColor = BrickColor.new("Really black")
  3516. Part301.CanCollide = false
  3517. Part301.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3518. Part301.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3519. Part301.Material = Enum.Material.Metal
  3520. Part301.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3521. Part301.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3522. Part301.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3523. Part301.brickColor = BrickColor.new("Really black")
  3524. SpecialMesh302.Parent = Part301
  3525. SpecialMesh302.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  3526. SpecialMesh302.MeshType = Enum.MeshType.Brick
  3527. Part303.Parent = Model0
  3528. 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)
  3529. Part303.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3530. Part303.Position = Vector3.new(-0.610610962, 2.80771255, -13.6187115)
  3531. Part303.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3532. Part303.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3533. Part303.Velocity = Vector3.new(1.27106944e-07, 0.00246767187, 1.67032101e-06)
  3534. Part303.Size = Vector3.new(0.275000006, 0.368124902, 0.378374994)
  3535. Part303.Anchored = true
  3536. Part303.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3537. Part303.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3538. Part303.BrickColor = BrickColor.new("Really black")
  3539. Part303.CanCollide = false
  3540. Part303.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3541. Part303.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3542. Part303.Material = Enum.Material.Glass
  3543. Part303.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3544. Part303.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3545. Part303.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3546. Part303.brickColor = BrickColor.new("Really black")
  3547. SpecialMesh304.Parent = Part303
  3548. SpecialMesh304.Scale = Vector3.new(0.400000006, 1, 1)
  3549. SpecialMesh304.MeshType = Enum.MeshType.Wedge
  3550. Part305.Parent = Model0
  3551. 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)
  3552. Part305.Orientation = Vector3.new(19.5900002, 179.809998, 179.690002)
  3553. Part305.Position = Vector3.new(-0.608244181, 3.38925195, -17.114748)
  3554. Part305.Rotation = Vector3.new(160.410004, 0.179999992, -0.25)
  3555. Part305.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3556. Part305.Velocity = Vector3.new(3.48947182e-08, 0.00246038754, 4.5855424e-07)
  3557. Part305.Size = Vector3.new(0.275000006, 0.35212487, 0.214375019)
  3558. Part305.Anchored = true
  3559. Part305.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3560. Part305.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3561. Part305.BrickColor = BrickColor.new("Bright blue")
  3562. Part305.CanCollide = false
  3563. Part305.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3564. Part305.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3565. Part305.Material = Enum.Material.Neon
  3566. Part305.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3567. Part305.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3568. Part305.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3569. Part305.brickColor = BrickColor.new("Bright blue")
  3570. SpecialMesh306.Parent = Part305
  3571. SpecialMesh306.Scale = Vector3.new(0.449999988, 0.5, 0.100000001)
  3572. SpecialMesh306.MeshType = Enum.MeshType.Brick
  3573. Part307.Parent = Model0
  3574. 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)
  3575. Part307.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  3576. Part307.Position = Vector3.new(-0.610837221, 3.46367049, -15.6710596)
  3577. Part307.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  3578. Part307.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3579. Part307.Velocity = Vector3.new(2.30945076e-08, 0.00246339524, 3.03486615e-07)
  3580. Part307.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  3581. Part307.Anchored = true
  3582. Part307.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3583. Part307.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3584. Part307.BrickColor = BrickColor.new("Royal purple")
  3585. Part307.CanCollide = false
  3586. Part307.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3587. Part307.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3588. Part307.Material = Enum.Material.Neon
  3589. Part307.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3590. Part307.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3591. Part307.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3592. Part307.brickColor = BrickColor.new("Royal purple")
  3593. SpecialMesh308.Parent = Part307
  3594. SpecialMesh308.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  3595. SpecialMesh308.MeshType = Enum.MeshType.Brick
  3596. Part309.Parent = Model0
  3597. 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)
  3598. Part309.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3599. Part309.Position = Vector3.new(-0.609296381, 2.72693467, -14.2067709)
  3600. Part309.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3601. Part309.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3602. Part309.Velocity = Vector3.new(1.39915542e-07, 0.00246644672, 1.83863972e-06)
  3603. Part309.Size = Vector3.new(0.275000006, 0.315999985, 0.310375005)
  3604. Part309.Anchored = true
  3605. Part309.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3606. Part309.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3607. Part309.BrickColor = BrickColor.new("Really black")
  3608. Part309.CanCollide = false
  3609. Part309.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3610. Part309.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3611. Part309.Material = Enum.Material.Glass
  3612. Part309.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3613. Part309.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3614. Part309.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3615. Part309.brickColor = BrickColor.new("Really black")
  3616. SpecialMesh310.Parent = Part309
  3617. SpecialMesh310.Scale = Vector3.new(0.5, 1, 0.5)
  3618. SpecialMesh310.MeshType = Enum.MeshType.Wedge
  3619. Part311.Parent = Model0
  3620. 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)
  3621. Part311.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3622. Part311.Position = Vector3.new(-0.610869706, 2.96894002, -13.990572)
  3623. Part311.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3624. Part311.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3625. Part311.Velocity = Vector3.new(1.01541801e-07, 0.00246689701, 1.33436765e-06)
  3626. Part311.Size = Vector3.new(0.275000006, 0.214124978, 0.205375016)
  3627. Part311.Anchored = true
  3628. Part311.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3629. Part311.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3630. Part311.BrickColor = BrickColor.new("Really black")
  3631. Part311.CanCollide = false
  3632. Part311.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3633. Part311.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3634. Part311.Material = Enum.Material.Metal
  3635. Part311.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3636. Part311.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3637. Part311.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3638. Part311.brickColor = BrickColor.new("Really black")
  3639. SpecialMesh312.Parent = Part311
  3640. SpecialMesh312.Scale = Vector3.new(0.569999993, 0.75, 0.75)
  3641. SpecialMesh312.MeshType = Enum.MeshType.Brick
  3642. Part313.Parent = Model0
  3643. 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)
  3644. Part313.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  3645. Part313.Position = Vector3.new(-0.610455632, 3.45922971, -15.9053869)
  3646. Part313.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  3647. Part313.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3648. Part313.Velocity = Vector3.new(2.37986608e-08, 0.00246290723, 3.12739985e-07)
  3649. Part313.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  3650. Part313.Anchored = true
  3651. Part313.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3652. Part313.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3653. Part313.BrickColor = BrickColor.new("Royal purple")
  3654. Part313.CanCollide = false
  3655. Part313.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3656. Part313.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3657. Part313.Material = Enum.Material.Neon
  3658. Part313.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3659. Part313.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3660. Part313.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3661. Part313.brickColor = BrickColor.new("Royal purple")
  3662. SpecialMesh314.Parent = Part313
  3663. SpecialMesh314.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  3664. SpecialMesh314.MeshType = Enum.MeshType.Brick
  3665. Part315.Parent = Model0
  3666. 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)
  3667. Part315.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  3668. Part315.Position = Vector3.new(-0.61787647, 3.39316416, -10.8383427)
  3669. Part315.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  3670. Part315.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3671. Part315.Velocity = Vector3.new(3.42744499e-08, 0.00247346424, 4.50402268e-07)
  3672. Part315.Size = Vector3.new(0.275000006, 0.578125, 0.234375)
  3673. Part315.Anchored = true
  3674. Part315.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3675. Part315.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3676. Part315.BrickColor = BrickColor.new("Really black")
  3677. Part315.CanCollide = false
  3678. Part315.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3679. Part315.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3680. Part315.Material = Enum.Material.Metal
  3681. Part315.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3682. Part315.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3683. Part315.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3684. Part315.brickColor = BrickColor.new("Really black")
  3685. SpecialMesh316.Parent = Part315
  3686. SpecialMesh316.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  3687. SpecialMesh316.MeshType = Enum.MeshType.Brick
  3688. Part317.Parent = Model0
  3689. 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)
  3690. Part317.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3691. Part317.Position = Vector3.new(-0.613369107, 3.18659282, -13.087059)
  3692. Part317.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3693. Part317.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3694. Part317.Velocity = Vector3.new(6.70295464e-08, 0.00246877922, 8.8083965e-07)
  3695. Part317.Size = Vector3.new(0.275000006, 0.248124972, 0.311374992)
  3696. Part317.Anchored = true
  3697. Part317.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3698. Part317.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3699. Part317.BrickColor = BrickColor.new("Really black")
  3700. Part317.CanCollide = false
  3701. Part317.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3702. Part317.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3703. Part317.Material = Enum.Material.Metal
  3704. Part317.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3705. Part317.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3706. Part317.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3707. Part317.brickColor = BrickColor.new("Really black")
  3708. SpecialMesh318.Parent = Part317
  3709. SpecialMesh318.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  3710. SpecialMesh318.MeshType = Enum.MeshType.Brick
  3711. Part319.Parent = Model0
  3712. 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)
  3713. Part319.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  3714. Part319.Position = Vector3.new(-0.610582829, 3.460711, -15.82728)
  3715. Part319.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  3716. Part319.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3717. Part319.Velocity = Vector3.new(2.35637785e-08, 0.00246306974, 3.09653387e-07)
  3718. Part319.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  3719. Part319.Anchored = true
  3720. Part319.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3721. Part319.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3722. Part319.BrickColor = BrickColor.new("Royal purple")
  3723. Part319.CanCollide = false
  3724. Part319.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3725. Part319.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3726. Part319.Material = Enum.Material.Neon
  3727. Part319.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3728. Part319.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3729. Part319.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3730. Part319.brickColor = BrickColor.new("Royal purple")
  3731. SpecialMesh320.Parent = Part319
  3732. SpecialMesh320.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  3733. SpecialMesh320.MeshType = Enum.MeshType.Brick
  3734. Part321.Parent = Model0
  3735. 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)
  3736. Part321.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  3737. Part321.Position = Vector3.new(-0.611585259, 3.11314392, -14.0068893)
  3738. Part321.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  3739. Part321.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3740. Part321.Velocity = Vector3.new(7.86760097e-08, 0.00246686279, 1.03388675e-06)
  3741. Part321.Size = Vector3.new(0.275000006, 0.709124923, 0.47437498)
  3742. Part321.Anchored = true
  3743. Part321.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3744. Part321.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3745. Part321.BrickColor = BrickColor.new("Really black")
  3746. Part321.CanCollide = false
  3747. Part321.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3748. Part321.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3749. Part321.Material = Enum.Material.Metal
  3750. Part321.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3751. Part321.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3752. Part321.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3753. Part321.brickColor = BrickColor.new("Really black")
  3754. SpecialMesh322.Parent = Part321
  3755. SpecialMesh322.Scale = Vector3.new(0.5, 1.04999995, 0.800000012)
  3756. SpecialMesh322.MeshType = Enum.MeshType.Brick
  3757. Part323.Parent = Model0
  3758. 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)
  3759. Part323.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3760. Part323.Position = Vector3.new(-0.610941768, 3.01069665, -14.083005)
  3761. Part323.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3762. Part323.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3763. Part323.Velocity = Vector3.new(9.49206296e-08, 0.00246670446, 1.24735845e-06)
  3764. Part323.Size = Vector3.new(0.275000006, 0.252000004, 0.213375002)
  3765. Part323.Anchored = true
  3766. Part323.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3767. Part323.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3768. Part323.BrickColor = BrickColor.new("Really black")
  3769. Part323.CanCollide = false
  3770. Part323.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3771. Part323.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3772. Part323.Material = Enum.Material.Metal
  3773. Part323.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3774. Part323.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3775. Part323.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3776. Part323.brickColor = BrickColor.new("Really black")
  3777. SpecialMesh324.Parent = Part323
  3778. SpecialMesh324.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  3779. SpecialMesh324.MeshType = Enum.MeshType.Wedge
  3780. Part325.Parent = Model0
  3781. 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)
  3782. Part325.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3783. Part325.Position = Vector3.new(-0.61388576, 3.20741606, -12.8194075)
  3784. Part325.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3785. Part325.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3786. Part325.Velocity = Vector3.new(6.37276969e-08, 0.00246933685, 8.37449761e-07)
  3787. Part325.Size = Vector3.new(0.275000006, 0.244125068, 0.416375011)
  3788. Part325.Anchored = true
  3789. Part325.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3790. Part325.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3791. Part325.BrickColor = BrickColor.new("Really black")
  3792. Part325.CanCollide = false
  3793. Part325.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3794. Part325.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3795. Part325.Material = Enum.Material.Metal
  3796. Part325.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3797. Part325.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3798. Part325.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3799. Part325.brickColor = BrickColor.new("Really black")
  3800. SpecialMesh326.Parent = Part325
  3801. SpecialMesh326.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  3802. SpecialMesh326.MeshType = Enum.MeshType.Wedge
  3803. Part327.Parent = Model0
  3804. 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)
  3805. Part327.Orientation = Vector3.new(35.8400002, 179.699997, 179.639999)
  3806. Part327.Position = Vector3.new(-0.609650612, 3.31554532, -15.9490957)
  3807. Part327.Rotation = Vector3.new(144.160004, 0.239999995, -0.189999998)
  3808. Part327.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3809. Part327.Velocity = Vector3.new(4.65820733e-08, 0.00246281619, 6.12138422e-07)
  3810. Part327.Size = Vector3.new(0.275000006, 0.237124875, 0.214375019)
  3811. Part327.Anchored = true
  3812. Part327.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. Part327.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3814. Part327.BrickColor = BrickColor.new("Bright blue")
  3815. Part327.CanCollide = false
  3816. Part327.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3817. Part327.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3818. Part327.Material = Enum.Material.Neon
  3819. Part327.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3820. Part327.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3821. Part327.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3822. Part327.brickColor = BrickColor.new("Bright blue")
  3823. SpecialMesh328.Parent = Part327
  3824. SpecialMesh328.Scale = Vector3.new(0.449999988, 0.800000012, 0.100000001)
  3825. SpecialMesh328.MeshType = Enum.MeshType.Brick
  3826. Part329.Parent = Model0
  3827. 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)
  3828. Part329.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  3829. Part329.Position = Vector3.new(-0.612260759, 3.04390216, -13.3335075)
  3830. Part329.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  3831. Part329.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3832. Part329.Velocity = Vector3.new(8.96553871e-08, 0.00246826583, 1.17816739e-06)
  3833. Part329.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  3834. Part329.Anchored = true
  3835. Part329.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3836. Part329.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3837. Part329.BrickColor = BrickColor.new("Really black")
  3838. Part329.CanCollide = false
  3839. Part329.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3840. Part329.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3841. Part329.Material = Enum.Material.Metal
  3842. Part329.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3843. Part329.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3844. Part329.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3845. Part329.brickColor = BrickColor.new("Really black")
  3846. SpecialMesh330.Parent = Part329
  3847. SpecialMesh330.Scale = Vector3.new(0.5, 0.5, 0.5)
  3848. SpecialMesh330.MeshType = Enum.MeshType.Wedge
  3849. Part331.Parent = Model0
  3850. 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)
  3851. Part331.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  3852. Part331.Position = Vector3.new(-0.614394248, 3.36069822, -13.0015078)
  3853. Part331.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  3854. Part331.Color = Color3.new(0.803922, 0.803922, 0.803922)
  3855. Part331.Velocity = Vector3.new(3.94224067e-08, 0.00246895733, 5.18052275e-07)
  3856. Part331.Size = Vector3.new(0.275000006, 0.216124982, 0.280375004)
  3857. Part331.Anchored = true
  3858. Part331.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3859. Part331.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3860. Part331.BrickColor = BrickColor.new("Mid gray")
  3861. Part331.CanCollide = false
  3862. Part331.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3863. Part331.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3864. Part331.Material = Enum.Material.Metal
  3865. Part331.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3866. Part331.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3867. Part331.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3868. Part331.brickColor = BrickColor.new("Mid gray")
  3869. SpecialMesh332.Parent = Part331
  3870. SpecialMesh332.Scale = Vector3.new(0.349999994, 1.04999995, 0.5)
  3871. SpecialMesh332.MeshType = Enum.MeshType.Brick
  3872. Part333.Parent = Model0
  3873. 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)
  3874. Part333.Orientation = Vector3.new(-66.159996, -179.419998, 179.269989)
  3875. Part333.Position = Vector3.new(-0.610709965, 3.46219134, -15.7491703)
  3876. Part333.Rotation = Vector3.new(-113.839996, -0.229999989, -0.199999988)
  3877. Part333.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3878. Part333.Velocity = Vector3.new(2.33290489e-08, 0.00246323249, 3.06568751e-07)
  3879. Part333.Size = Vector3.new(0.200000003, 0.217000008, 0.200375021)
  3880. Part333.Anchored = true
  3881. Part333.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3882. Part333.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3883. Part333.BrickColor = BrickColor.new("Royal purple")
  3884. Part333.CanCollide = false
  3885. Part333.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3886. Part333.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3887. Part333.Material = Enum.Material.Neon
  3888. Part333.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3889. Part333.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3890. Part333.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3891. Part333.brickColor = BrickColor.new("Royal purple")
  3892. SpecialMesh334.Parent = Part333
  3893. SpecialMesh334.Scale = Vector3.new(0.560000002, 0.200000003, 0.600000024)
  3894. SpecialMesh334.MeshType = Enum.MeshType.Brick
  3895. Part335.Parent = Model0
  3896. 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)
  3897. Part335.Orientation = Vector3.new(56.4099998, 0.359999985, 0.529999971)
  3898. Part335.Position = Vector3.new(-0.608794093, 3.33530617, -16.5748692)
  3899. Part335.Rotation = Vector3.new(56.4099998, 0.199999988, 0.239999995)
  3900. Part335.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3901. Part335.Velocity = Vector3.new(4.34486722e-08, 0.00246151234, 5.709623e-07)
  3902. Part335.Size = Vector3.new(0.275000006, 0.265124857, 0.214375019)
  3903. Part335.Anchored = true
  3904. Part335.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3905. Part335.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3906. Part335.BrickColor = BrickColor.new("Bright blue")
  3907. Part335.CanCollide = false
  3908. Part335.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3909. Part335.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3910. Part335.Material = Enum.Material.Neon
  3911. Part335.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3912. Part335.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3913. Part335.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3914. Part335.brickColor = BrickColor.new("Bright blue")
  3915. SpecialMesh336.Parent = Part335
  3916. SpecialMesh336.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  3917. SpecialMesh336.MeshType = Enum.MeshType.Brick
  3918. Part337.Parent = Model0
  3919. 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)
  3920. Part337.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  3921. Part337.Position = Vector3.new(-0.61091727, 3.02827954, -14.1579723)
  3922. Part337.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  3923. Part337.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3924. Part337.Velocity = Vector3.new(9.21325807e-08, 0.00246654823, 1.2107206e-06)
  3925. Part337.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  3926. Part337.Anchored = true
  3927. Part337.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3928. Part337.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3929. Part337.BrickColor = BrickColor.new("Really black")
  3930. Part337.CanCollide = false
  3931. Part337.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3932. Part337.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3933. Part337.Material = Enum.Material.Glass
  3934. Part337.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3935. Part337.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3936. Part337.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3937. Part337.brickColor = BrickColor.new("Really black")
  3938. SpecialMesh338.Parent = Part337
  3939. SpecialMesh338.Scale = Vector3.new(0.524999976, 0.5, 0.5)
  3940. SpecialMesh338.MeshType = Enum.MeshType.Wedge
  3941. Part339.Parent = Model0
  3942. 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)
  3943. Part339.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  3944. Part339.Position = Vector3.new(-0.609729409, 3.2205193, -15.578517)
  3945. Part339.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  3946. Part339.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  3947. Part339.Velocity = Vector3.new(6.1649942e-08, 0.00246358826, 8.10146275e-07)
  3948. Part339.Size = Vector3.new(0.275000006, 0.621124864, 0.214375019)
  3949. Part339.Anchored = true
  3950. Part339.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3951. Part339.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3952. Part339.BrickColor = BrickColor.new("Bright blue")
  3953. Part339.CanCollide = false
  3954. Part339.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3955. Part339.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3956. Part339.Material = Enum.Material.Neon
  3957. Part339.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3958. Part339.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3959. Part339.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3960. Part339.brickColor = BrickColor.new("Bright blue")
  3961. SpecialMesh340.Parent = Part339
  3962. SpecialMesh340.Scale = Vector3.new(0.449999988, 1, 0.100000001)
  3963. SpecialMesh340.MeshType = Enum.MeshType.Brick
  3964. Part341.Parent = Model0
  3965. 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)
  3966. Part341.Orientation = Vector3.new(-23.5900002, -0.219999999, -179.679993)
  3967. Part341.Position = Vector3.new(-0.610086679, 3.15827918, -15.1365986)
  3968. Part341.Rotation = Vector3.new(-23.5900002, -0.199999988, -179.769989)
  3969. Part341.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  3970. Part341.Velocity = Vector3.new(7.15190893e-08, 0.0024645091, 9.39837378e-07)
  3971. Part341.Size = Vector3.new(0.275000006, 0.221124932, 0.655375004)
  3972. Part341.Anchored = true
  3973. Part341.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3974. Part341.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3975. Part341.BrickColor = BrickColor.new("Really black")
  3976. Part341.CanCollide = false
  3977. Part341.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3978. Part341.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3979. Part341.Material = Enum.Material.Metal
  3980. Part341.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3981. Part341.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  3982. Part341.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3983. Part341.brickColor = BrickColor.new("Really black")
  3984. SpecialMesh342.Parent = Part341
  3985. SpecialMesh342.Scale = Vector3.new(0.400000006, 1.04999995, 0.899999976)
  3986. SpecialMesh342.MeshType = Enum.MeshType.Brick
  3987. Part343.Parent = Model0
  3988. 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)
  3989. Part343.Orientation = Vector3.new(-61.079998, -0.620000005, -89.3899994)
  3990. Part343.Position = Vector3.new(-0.576193094, 2.37180829, -14.2261257)
  3991. Part343.Rotation = Vector3.new(-61.0900002, -0.299999982, -89.9300003)
  3992. Part343.Color = Color3.new(0.384314, 0.145098, 0.819608)
  3993. Part343.Velocity = Vector3.new(1.96226381e-07, 0.00246641156, 2.57862462e-06)
  3994. Part343.Size = Vector3.new(0.405000031, 0.200000003, 0.280375004)
  3995. Part343.Anchored = true
  3996. Part343.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3997. Part343.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3998. Part343.BrickColor = BrickColor.new("Royal purple")
  3999. Part343.CanCollide = false
  4000. Part343.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4001. Part343.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4002. Part343.Material = Enum.Material.Neon
  4003. Part343.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4004. Part343.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4005. Part343.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4006. Part343.brickColor = BrickColor.new("Royal purple")
  4007. SpecialMesh344.Parent = Part343
  4008. SpecialMesh344.Scale = Vector3.new(1, 0.300000012, 0.5)
  4009. SpecialMesh344.MeshType = Enum.MeshType.Wedge
  4010. Part345.Parent = Model0
  4011. 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)
  4012. Part345.Orientation = Vector3.new(45.579998, 179.610001, 179.580002)
  4013. Part345.Position = Vector3.new(-0.606692195, 3.59138489, -18.8080196)
  4014. Part345.Rotation = Vector3.new(134.410004, 0.269999981, -0.140000001)
  4015. Part345.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4016. Part345.Velocity = Vector3.new(2.843354e-09, 0.00245685945, 3.73652256e-08)
  4017. Part345.Size = Vector3.new(0.275000006, 0.47012496, 0.214375019)
  4018. Part345.Anchored = true
  4019. Part345.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4020. Part345.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4021. Part345.BrickColor = BrickColor.new("Bright blue")
  4022. Part345.CanCollide = false
  4023. Part345.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4024. Part345.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4025. Part345.Material = Enum.Material.Neon
  4026. Part345.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4027. Part345.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4028. Part345.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4029. Part345.brickColor = BrickColor.new("Bright blue")
  4030. SpecialMesh346.Parent = Part345
  4031. SpecialMesh346.Scale = Vector3.new(0.449999988, 0.699999988, 0.100000001)
  4032. SpecialMesh346.MeshType = Enum.MeshType.Brick
  4033. Part347.Parent = Model0
  4034. 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)
  4035. Part347.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4036. Part347.Position = Vector3.new(-0.612170458, 3.17509294, -13.8325748)
  4037. Part347.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4038. Part347.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4039. Part347.Velocity = Vector3.new(6.88530264e-08, 0.002467226, 9.04802221e-07)
  4040. Part347.Size = Vector3.new(0.275000006, 0.207000002, 0.303375006)
  4041. Part347.Anchored = true
  4042. Part347.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4043. Part347.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4044. Part347.BrickColor = BrickColor.new("Really black")
  4045. Part347.CanCollide = false
  4046. Part347.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4047. Part347.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4048. Part347.Material = Enum.Material.Metal
  4049. Part347.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4050. Part347.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4051. Part347.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4052. Part347.brickColor = BrickColor.new("Really black")
  4053. SpecialMesh348.Parent = Part347
  4054. SpecialMesh348.Scale = Vector3.new(0.5, 0.5, 0.5)
  4055. SpecialMesh348.MeshType = Enum.MeshType.Wedge
  4056. Part349.Parent = Model0
  4057. 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)
  4058. Part349.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  4059. Part349.Position = Vector3.new(-0.608221889, 3.47114682, -17.4040871)
  4060. Part349.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  4061. Part349.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4062. Part349.Velocity = Vector3.new(2.19089991e-08, 0.0024597845, 2.87908023e-07)
  4063. Part349.Size = Vector3.new(0.275000006, 0.678124905, 0.214375019)
  4064. Part349.Anchored = true
  4065. Part349.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4066. Part349.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4067. Part349.BrickColor = BrickColor.new("Bright blue")
  4068. Part349.CanCollide = false
  4069. Part349.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4070. Part349.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4071. Part349.Material = Enum.Material.Neon
  4072. Part349.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4073. Part349.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4074. Part349.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4075. Part349.brickColor = BrickColor.new("Bright blue")
  4076. SpecialMesh350.Parent = Part349
  4077. SpecialMesh350.Scale = Vector3.new(0.449999988, 0.800000012, 0.100000001)
  4078. SpecialMesh350.MeshType = Enum.MeshType.Brick
  4079. Part351.Parent = Model0
  4080. 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)
  4081. Part351.Orientation = Vector3.new(81.0800018, 178.039993, 178.099991)
  4082. Part351.Position = Vector3.new(-0.617746711, 3.42490911, -11.0273066)
  4083. Part351.Rotation = Vector3.new(98.909996, 0.299999982, 0.0399999991)
  4084. Part351.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4085. Part351.Velocity = Vector3.new(2.92407876e-08, 0.00247307052, 3.84254577e-07)
  4086. Part351.Size = Vector3.new(0.275000006, 0.203125, 0.234375)
  4087. Part351.Anchored = true
  4088. Part351.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4089. Part351.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4090. Part351.BrickColor = BrickColor.new("Really black")
  4091. Part351.CanCollide = false
  4092. Part351.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4093. Part351.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4094. Part351.Material = Enum.Material.Metal
  4095. Part351.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4096. Part351.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4097. Part351.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4098. Part351.brickColor = BrickColor.new("Really black")
  4099. SpecialMesh352.Parent = Part351
  4100. SpecialMesh352.Scale = Vector3.new(0.5, 0.502499998, 0.400000006)
  4101. SpecialMesh352.MeshType = Enum.MeshType.Brick
  4102. Part353.Parent = Model0
  4103. 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)
  4104. Part353.Orientation = Vector3.new(-61.079998, -0.620000005, 90.6100006)
  4105. Part353.Position = Vector3.new(-0.638692379, 2.37148738, -14.226222)
  4106. Part353.Rotation = Vector3.new(-61.0900002, -0.299999982, 90.0699997)
  4107. Part353.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4108. Part353.Velocity = Vector3.new(1.9627727e-07, 0.00246640155, 2.57929332e-06)
  4109. Part353.Size = Vector3.new(0.405000031, 0.200000003, 0.280375004)
  4110. Part353.Anchored = true
  4111. Part353.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4112. Part353.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4113. Part353.BrickColor = BrickColor.new("Royal purple")
  4114. Part353.CanCollide = false
  4115. Part353.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4116. Part353.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4117. Part353.Material = Enum.Material.Neon
  4118. Part353.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4119. Part353.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4120. Part353.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4121. Part353.brickColor = BrickColor.new("Royal purple")
  4122. SpecialMesh354.Parent = Part353
  4123. SpecialMesh354.Scale = Vector3.new(1, 0.300000012, 0.5)
  4124. SpecialMesh354.MeshType = Enum.MeshType.Wedge
  4125. Part355.Parent = Model0
  4126. 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)
  4127. Part355.Orientation = Vector3.new(-73.909996, -179.069992, 88.9399948)
  4128. Part355.Position = Vector3.new(-0.576556623, 2.33930445, -13.8796148)
  4129. Part355.Rotation = Vector3.new(-106.089996, -0.25999999, -90.1699982)
  4130. Part355.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4131. Part355.Velocity = Vector3.new(2.01380388e-07, 0.00246713357, 2.64635355e-06)
  4132. Part355.Size = Vector3.new(0.453000009, 0.200000003, 0.280375004)
  4133. Part355.Anchored = true
  4134. Part355.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4135. Part355.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4136. Part355.BrickColor = BrickColor.new("Royal purple")
  4137. Part355.CanCollide = false
  4138. Part355.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4139. Part355.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4140. Part355.Material = Enum.Material.Neon
  4141. Part355.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4142. Part355.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4143. Part355.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4144. Part355.brickColor = BrickColor.new("Royal purple")
  4145. SpecialMesh356.Parent = Part355
  4146. SpecialMesh356.Scale = Vector3.new(1, 0.300000012, 0.5)
  4147. SpecialMesh356.MeshType = Enum.MeshType.Wedge
  4148. Part357.Parent = Model0
  4149. 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)
  4150. Part357.Orientation = Vector3.new(-58.9099998, -179.599991, -0.569999993)
  4151. Part357.Position = Vector3.new(-0.609105706, 2.8586967, -14.7735023)
  4152. Part357.Rotation = Vector3.new(-121.089996, -0.209999993, 179.769989)
  4153. Part357.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4154. Part357.Velocity = Vector3.new(1.19022602e-07, 0.0024652658, 1.56408419e-06)
  4155. Part357.Size = Vector3.new(0.275000006, 0.277124912, 0.227375031)
  4156. Part357.Anchored = true
  4157. Part357.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4158. Part357.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4159. Part357.BrickColor = BrickColor.new("Really black")
  4160. Part357.CanCollide = false
  4161. Part357.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4162. Part357.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4163. Part357.Material = Enum.Material.Metal
  4164. Part357.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4165. Part357.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4166. Part357.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4167. Part357.brickColor = BrickColor.new("Really black")
  4168. SpecialMesh358.Parent = Part357
  4169. SpecialMesh358.Scale = Vector3.new(0.349999994, 0.300000012, 1)
  4170. SpecialMesh358.MeshType = Enum.MeshType.Brick
  4171. Part359.Parent = Model0
  4172. 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)
  4173. Part359.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4174. Part359.Position = Vector3.new(-0.614465594, 3.24354935, -12.5620441)
  4175. Part359.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4176. Part359.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4177. Part359.Velocity = Vector3.new(5.79982e-08, 0.00246987306, 7.62158038e-07)
  4178. Part359.Size = Vector3.new(0.275000006, 0.998124957, 0.280375004)
  4179. Part359.Anchored = true
  4180. Part359.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4181. Part359.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4182. Part359.BrickColor = BrickColor.new("Really black")
  4183. Part359.CanCollide = false
  4184. Part359.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4185. Part359.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4186. Part359.Material = Enum.Material.Metal
  4187. Part359.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4188. Part359.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4189. Part359.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4190. Part359.brickColor = BrickColor.new("Really black")
  4191. SpecialMesh360.Parent = Part359
  4192. SpecialMesh360.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  4193. SpecialMesh360.MeshType = Enum.MeshType.Brick
  4194. Part361.Parent = Model0
  4195. 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)
  4196. Part361.Orientation = Vector3.new(-46.079998, -0.389999986, -179.580002)
  4197. Part361.Position = Vector3.new(-0.611248136, 3.25645614, -14.7074032)
  4198. Part361.Rotation = Vector3.new(-46.0900002, -0.269999981, -179.860001)
  4199. Part361.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4200. Part361.Velocity = Vector3.new(5.59516025e-08, 0.00246540317, 7.35263882e-07)
  4201. Part361.Size = Vector3.new(0.275000006, 0.221124932, 0.418375015)
  4202. Part361.Anchored = true
  4203. Part361.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4204. Part361.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4205. Part361.BrickColor = BrickColor.new("Really black")
  4206. Part361.CanCollide = false
  4207. Part361.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4208. Part361.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4209. Part361.Material = Enum.Material.Metal
  4210. Part361.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4211. Part361.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4212. Part361.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4213. Part361.brickColor = BrickColor.new("Really black")
  4214. SpecialMesh362.Parent = Part361
  4215. SpecialMesh362.Scale = Vector3.new(0.550000012, 1.04999995, 0.899999976)
  4216. SpecialMesh362.MeshType = Enum.MeshType.Brick
  4217. Part363.Parent = Model0
  4218. 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)
  4219. Part363.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4220. Part363.Position = Vector3.new(-0.611290276, 3.1978817, -14.4833202)
  4221. Part363.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4222. Part363.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4223. Part363.Velocity = Vector3.new(6.52394974e-08, 0.00246587023, 8.57316763e-07)
  4224. Part363.Size = Vector3.new(0.275000006, 0.221124932, 0.448374987)
  4225. Part363.Anchored = true
  4226. Part363.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4227. Part363.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4228. Part363.BrickColor = BrickColor.new("Really black")
  4229. Part363.CanCollide = false
  4230. Part363.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4231. Part363.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4232. Part363.Material = Enum.Material.Metal
  4233. Part363.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4234. Part363.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4235. Part363.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4236. Part363.brickColor = BrickColor.new("Really black")
  4237. SpecialMesh364.Parent = Part363
  4238. SpecialMesh364.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  4239. SpecialMesh364.MeshType = Enum.MeshType.Brick
  4240. Part365.Parent = Model0
  4241. 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)
  4242. Part365.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4243. Part365.Position = Vector3.new(-0.610800147, 2.91253304, -13.8467321)
  4244. Part365.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4245. Part365.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4246. Part365.Velocity = Vector3.new(1.10486013e-07, 0.00246719667, 1.45190415e-06)
  4247. Part365.Size = Vector3.new(0.275000006, 0.200000003, 0.213375002)
  4248. Part365.Anchored = true
  4249. Part365.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4250. Part365.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4251. Part365.BrickColor = BrickColor.new("Bright blue")
  4252. Part365.CanCollide = false
  4253. Part365.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4254. Part365.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4255. Part365.Material = Enum.Material.Neon
  4256. Part365.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4257. Part365.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4258. Part365.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4259. Part365.brickColor = BrickColor.new("Bright blue")
  4260. SpecialMesh366.Parent = Part365
  4261. SpecialMesh366.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  4262. SpecialMesh366.MeshType = Enum.MeshType.Wedge
  4263. Part367.Parent = Model0
  4264. 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)
  4265. Part367.Orientation = Vector3.new(-76.0800018, -1.27999997, -178.779999)
  4266. Part367.Position = Vector3.new(-0.616349459, 3.1451273, -11.0012493)
  4267. Part367.Rotation = Vector3.new(-76.0899963, -0.310000002, 179.98999)
  4268. Part367.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4269. Part367.Velocity = Vector3.new(7.3604582e-08, 0.002473125, 9.67242272e-07)
  4270. Part367.Size = Vector3.new(0.200000003, 0.449500024, 0.236624971)
  4271. Part367.Anchored = true
  4272. Part367.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4273. Part367.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4274. Part367.BrickColor = BrickColor.new("Bright blue")
  4275. Part367.CanCollide = false
  4276. Part367.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4277. Part367.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4278. Part367.Material = Enum.Material.Neon
  4279. Part367.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4280. Part367.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4281. Part367.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4282. Part367.brickColor = BrickColor.new("Bright blue")
  4283. SpecialMesh368.Parent = Part367
  4284. SpecialMesh368.Scale = Vector3.new(0.5, 1, 0.25)
  4285. SpecialMesh368.MeshType = Enum.MeshType.Brick
  4286. Part369.Parent = Model0
  4287. 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)
  4288. Part369.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4289. Part369.Position = Vector3.new(-0.612978816, 3.18449855, -13.3361721)
  4290. Part369.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4291. Part369.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4292. Part369.Velocity = Vector3.new(6.73616256e-08, 0.00246826024, 8.85203519e-07)
  4293. Part369.Size = Vector3.new(0.275000006, 0.200000003, 0.303375006)
  4294. Part369.Anchored = true
  4295. Part369.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4296. Part369.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4297. Part369.BrickColor = BrickColor.new("Really black")
  4298. Part369.CanCollide = false
  4299. Part369.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4300. Part369.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4301. Part369.Material = Enum.Material.Metal
  4302. Part369.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4303. Part369.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4304. Part369.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4305. Part369.brickColor = BrickColor.new("Really black")
  4306. SpecialMesh370.Parent = Part369
  4307. SpecialMesh370.Scale = Vector3.new(0.5, 0.5, 0.5)
  4308. SpecialMesh370.MeshType = Enum.MeshType.Wedge
  4309. Part371.Parent = Model0
  4310. 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)
  4311. Part371.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4312. Part371.Position = Vector3.new(-0.611412168, 3.19930172, -14.4084625)
  4313. Part371.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4314. Part371.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4315. Part371.Velocity = Vector3.new(6.50143335e-08, 0.00246602623, 8.54357836e-07)
  4316. Part371.Size = Vector3.new(0.275000006, 0.204124942, 0.464375019)
  4317. Part371.Anchored = true
  4318. Part371.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4319. Part371.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4320. Part371.BrickColor = BrickColor.new("Royal purple")
  4321. Part371.CanCollide = false
  4322. Part371.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4323. Part371.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4324. Part371.Material = Enum.Material.Neon
  4325. Part371.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4326. Part371.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4327. Part371.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4328. Part371.brickColor = BrickColor.new("Royal purple")
  4329. SpecialMesh372.Parent = Part371
  4330. SpecialMesh372.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  4331. SpecialMesh372.MeshType = Enum.MeshType.Brick
  4332. Part373.Parent = Model0
  4333. 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)
  4334. Part373.Orientation = Vector3.new(43.4099998, 0.189999998, 0.409999996)
  4335. Part373.Position = Vector3.new(-0.607544899, 3.43064713, -17.7122707)
  4336. Part373.Rotation = Vector3.new(43.4099998, 0.140000001, 0.269999981)
  4337. Part373.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4338. Part373.Velocity = Vector3.new(2.83308559e-08, 0.00245914259, 3.72298132e-07)
  4339. Part373.Size = Vector3.new(0.275000006, 0.24712491, 0.214375019)
  4340. Part373.Anchored = true
  4341. Part373.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4342. Part373.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4343. Part373.BrickColor = BrickColor.new("Bright blue")
  4344. Part373.CanCollide = false
  4345. Part373.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4346. Part373.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4347. Part373.Material = Enum.Material.Neon
  4348. Part373.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4349. Part373.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4350. Part373.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4351. Part373.brickColor = BrickColor.new("Bright blue")
  4352. SpecialMesh374.Parent = Part373
  4353. SpecialMesh374.Scale = Vector3.new(0.449999988, 0.600000024, 0.100000001)
  4354. SpecialMesh374.MeshType = Enum.MeshType.Brick
  4355. Part375.Parent = Model0
  4356. 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)
  4357. Part375.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4358. Part375.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  4359. Part375.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4360. Part375.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4361. Part375.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  4362. Part375.Size = Vector3.new(0.275000006, 0.698124886, 0.534374952)
  4363. Part375.Anchored = true
  4364. Part375.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4365. Part375.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4366. Part375.BrickColor = BrickColor.new("Bright blue")
  4367. Part375.CanCollide = false
  4368. Part375.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4369. Part375.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4370. Part375.Material = Enum.Material.Glass
  4371. Part375.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4372. Part375.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4373. Part375.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4374. Part375.brickColor = BrickColor.new("Bright blue")
  4375. SpecialMesh376.Parent = Part375
  4376. SpecialMesh376.Scale = Vector3.new(0.452499986, 1, 1)
  4377. SpecialMesh376.MeshType = Enum.MeshType.Cylinder
  4378. Part377.Parent = Model0
  4379. 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)
  4380. Part377.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4381. Part377.Position = Vector3.new(-0.618502736, 3.35398197, -11.388195)
  4382. Part377.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4383. Part377.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4384. Part377.Velocity = Vector3.new(4.0487393e-08, 0.00247231848, 5.32047068e-07)
  4385. Part377.Size = Vector3.new(0.25999999, 0.225500003, 0.210125014)
  4386. Part377.Anchored = true
  4387. Part377.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4388. Part377.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4389. Part377.BrickColor = BrickColor.new("Really black")
  4390. Part377.CanCollide = false
  4391. Part377.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4392. Part377.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4393. Part377.Material = Enum.Material.Metal
  4394. Part377.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4395. Part377.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4396. Part377.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4397. Part377.brickColor = BrickColor.new("Really black")
  4398. SpecialMesh378.Parent = Part377
  4399. SpecialMesh378.Scale = Vector3.new(0.5, 1, 1)
  4400. SpecialMesh378.MeshType = Enum.MeshType.Wedge
  4401. Part379.Parent = Model0
  4402. 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)
  4403. Part379.Orientation = Vector3.new(-2.08999991, -0.099999994, -89.7099991)
  4404. Part379.Position = Vector3.new(-0.575232625, 3.71340823, -19.3540096)
  4405. Part379.Rotation = Vector3.new(-2.08999991, -0.099999994, -89.7099991)
  4406. Part379.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4407. Part379.Velocity = Vector3.new(-1.65053677e-08, 0.00245572673, -2.16897547e-07)
  4408. Part379.Size = Vector3.new(0.210000038, 0.200000003, 0.285374999)
  4409. Part379.Anchored = true
  4410. Part379.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4411. Part379.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4412. Part379.BrickColor = BrickColor.new("Royal purple")
  4413. Part379.CanCollide = false
  4414. Part379.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4415. Part379.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4416. Part379.Material = Enum.Material.Neon
  4417. Part379.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4418. Part379.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4419. Part379.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4420. Part379.brickColor = BrickColor.new("Royal purple")
  4421. SpecialMesh380.Parent = Part379
  4422. SpecialMesh380.Scale = Vector3.new(0.5, 0.300000012, 0.5)
  4423. SpecialMesh380.MeshType = Enum.MeshType.Wedge
  4424. Part381.Parent = Model0
  4425. 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)
  4426. Part381.Orientation = Vector3.new(87.8199997, 172.169998, 172.25)
  4427. Part381.Position = Vector3.new(-0.609601736, 3.48017144, -16.5335026)
  4428. Part381.Rotation = Vector3.new(92.159996, 0.299999982, 0.0799999982)
  4429. Part381.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4430. Part381.Velocity = Vector3.new(2.0478014e-08, 0.00246159849, 2.69103225e-07)
  4431. Part381.Size = Vector3.new(0.275000006, 1.65712488, 0.359375)
  4432. Part381.Anchored = true
  4433. Part381.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4434. Part381.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4435. Part381.BrickColor = BrickColor.new("Really black")
  4436. Part381.CanCollide = false
  4437. Part381.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4438. Part381.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4439. Part381.Material = Enum.Material.Metal
  4440. Part381.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4441. Part381.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4442. Part381.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4443. Part381.brickColor = BrickColor.new("Really black")
  4444. SpecialMesh382.Parent = Part381
  4445. SpecialMesh382.Scale = Vector3.new(0.400000006, 1, 0.5)
  4446. SpecialMesh382.MeshType = Enum.MeshType.Brick
  4447. Part383.Parent = Model0
  4448. 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)
  4449. Part383.Orientation = Vector3.new(-61.079998, -0.620000005, -179.389999)
  4450. Part383.Position = Vector3.new(-0.608603716, 2.57794237, -14.160059)
  4451. Part383.Rotation = Vector3.new(-61.0900002, -0.299999982, -179.929993)
  4452. Part383.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4453. Part383.Velocity = Vector3.new(1.63540591e-07, 0.00246654428, 2.14909824e-06)
  4454. Part383.Size = Vector3.new(0.275000006, 0.309124947, 0.343375027)
  4455. Part383.Anchored = true
  4456. Part383.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4457. Part383.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4458. Part383.BrickColor = BrickColor.new("Really black")
  4459. Part383.CanCollide = false
  4460. Part383.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4461. Part383.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4462. Part383.Material = Enum.Material.Metal
  4463. Part383.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4464. Part383.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4465. Part383.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4466. Part383.brickColor = BrickColor.new("Really black")
  4467. SpecialMesh384.Parent = Part383
  4468. SpecialMesh384.Scale = Vector3.new(0.349999994, 1, 1)
  4469. SpecialMesh384.MeshType = Enum.MeshType.Brick
  4470. Part385.Parent = Model0
  4471. 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)
  4472. Part385.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4473. Part385.Position = Vector3.new(-0.610497713, 3.13989329, -14.8064632)
  4474. Part385.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4475. Part385.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4476. Part385.Velocity = Vector3.new(7.44344675e-08, 0.00246519689, 9.78148478e-07)
  4477. Part385.Size = Vector3.new(0.275000006, 0.618124902, 0.209375009)
  4478. Part385.Anchored = true
  4479. Part385.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4480. Part385.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4481. Part385.BrickColor = BrickColor.new("Really black")
  4482. Part385.CanCollide = false
  4483. Part385.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4484. Part385.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4485. Part385.Material = Enum.Material.Metal
  4486. Part385.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4487. Part385.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4488. Part385.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4489. Part385.brickColor = BrickColor.new("Really black")
  4490. SpecialMesh386.Parent = Part385
  4491. SpecialMesh386.Scale = Vector3.new(0.400000006, 1, 0.899999976)
  4492. SpecialMesh386.MeshType = Enum.MeshType.Brick
  4493. Part387.Parent = Model0
  4494. 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)
  4495. Part387.Orientation = Vector3.new(88.8799973, 15.0799999, 15.1700001)
  4496. Part387.Position = Vector3.new(-0.611324251, 3.01513863, -13.8486776)
  4497. Part387.Rotation = Vector3.new(88.909996, 0.289999992, 0.0899999961)
  4498. Part387.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4499. Part387.Velocity = Vector3.new(9.42162828e-08, 0.00246719248, 1.23810264e-06)
  4500. Part387.Size = Vector3.new(0.275000006, 0.200000003, 0.213375002)
  4501. Part387.Anchored = true
  4502. Part387.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4503. Part387.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4504. Part387.BrickColor = BrickColor.new("Bright blue")
  4505. Part387.CanCollide = false
  4506. Part387.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4507. Part387.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4508. Part387.Material = Enum.Material.Neon
  4509. Part387.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4510. Part387.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4511. Part387.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4512. Part387.brickColor = BrickColor.new("Bright blue")
  4513. SpecialMesh388.Parent = Part387
  4514. SpecialMesh388.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  4515. SpecialMesh388.MeshType = Enum.MeshType.Wedge
  4516. Part389.Parent = Model0
  4517. 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)
  4518. Part389.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4519. Part389.Position = Vector3.new(-0.615387738, 3.25427985, -11.9957829)
  4520. Part389.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4521. Part389.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4522. Part389.Velocity = Vector3.new(5.62967202e-08, 0.00247105281, 7.39798622e-07)
  4523. Part389.Size = Vector3.new(0.275000006, 0.206125051, 0.280375004)
  4524. Part389.Anchored = true
  4525. Part389.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4526. Part389.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4527. Part389.BrickColor = BrickColor.new("Really black")
  4528. Part389.CanCollide = false
  4529. Part389.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4530. Part389.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4531. Part389.Material = Enum.Material.Metal
  4532. Part389.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4533. Part389.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4534. Part389.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4535. Part389.brickColor = BrickColor.new("Really black")
  4536. SpecialMesh390.Parent = Part389
  4537. SpecialMesh390.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  4538. SpecialMesh390.MeshType = Enum.MeshType.Wedge
  4539. Part391.Parent = Model0
  4540. 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)
  4541. Part391.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4542. Part391.Position = Vector3.new(-0.614540219, 3.2634635, -12.5800533)
  4543. Part391.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4544. Part391.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4545. Part391.Velocity = Vector3.new(5.48404984e-08, 0.00246983557, 7.20662456e-07)
  4546. Part391.Size = Vector3.new(0.275000006, 0.405125052, 0.211375013)
  4547. Part391.Anchored = true
  4548. Part391.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4549. Part391.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4550. Part391.BrickColor = BrickColor.new("Really black")
  4551. Part391.CanCollide = false
  4552. Part391.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4553. Part391.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4554. Part391.Material = Enum.Material.Metal
  4555. Part391.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4556. Part391.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4557. Part391.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4558. Part391.brickColor = BrickColor.new("Really black")
  4559. SpecialMesh392.Parent = Part391
  4560. SpecialMesh392.Scale = Vector3.new(0.5, 0.560000002, 0.5)
  4561. SpecialMesh392.MeshType = Enum.MeshType.Wedge
  4562. Part393.Parent = Model0
  4563. 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)
  4564. Part393.Orientation = Vector3.new(-61.079998, -0.620000005, -179.389999)
  4565. Part393.Position = Vector3.new(-0.608892262, 2.75060058, -14.5502081)
  4566. Part393.Rotation = Vector3.new(-61.0900002, -0.299999982, -179.929993)
  4567. Part393.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4568. Part393.Velocity = Vector3.new(1.36162924e-07, 0.00246573123, 1.78932657e-06)
  4569. Part393.Size = Vector3.new(0.275000006, 0.409124911, 0.268375039)
  4570. Part393.Anchored = true
  4571. Part393.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4572. Part393.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4573. Part393.BrickColor = BrickColor.new("Really black")
  4574. Part393.CanCollide = false
  4575. Part393.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4576. Part393.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4577. Part393.Material = Enum.Material.Metal
  4578. Part393.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4579. Part393.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4580. Part393.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4581. Part393.brickColor = BrickColor.new("Really black")
  4582. SpecialMesh394.Parent = Part393
  4583. SpecialMesh394.Scale = Vector3.new(0.349999994, 1, 1)
  4584. SpecialMesh394.MeshType = Enum.MeshType.Brick
  4585. Part395.Parent = Model0
  4586. 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)
  4587. Part395.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  4588. Part395.Position = Vector3.new(-0.606766462, 3.43472743, -18.2343674)
  4589. Part395.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  4590. Part395.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4591. Part395.Velocity = Vector3.new(2.76838534e-08, 0.00245805481, 3.63795948e-07)
  4592. Part395.Size = Vector3.new(0.275000006, 1.04612494, 0.214375019)
  4593. Part395.Anchored = true
  4594. Part395.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4595. Part395.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4596. Part395.BrickColor = BrickColor.new("Bright blue")
  4597. Part395.CanCollide = false
  4598. Part395.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4599. Part395.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4600. Part395.Material = Enum.Material.Neon
  4601. Part395.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4602. Part395.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4603. Part395.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4604. Part395.brickColor = BrickColor.new("Bright blue")
  4605. SpecialMesh396.Parent = Part395
  4606. SpecialMesh396.Scale = Vector3.new(0.449999988, 0.899999976, 0.100000001)
  4607. SpecialMesh396.MeshType = Enum.MeshType.Brick
  4608. Part397.Parent = Model0
  4609. 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)
  4610. Part397.Orientation = Vector3.new(-88.0599976, -8.81999969, 98.7399979)
  4611. Part397.Position = Vector3.new(-0.638540506, 2.9091177, -16.128315)
  4612. Part397.Rotation = Vector3.new(-88.0899963, -0.299999982, 89.9199982)
  4613. Part397.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4614. Part397.Velocity = Vector3.new(1.11027532e-07, 0.00246243807, 1.45902084e-06)
  4615. Part397.Size = Vector3.new(1.625, 0.200000003, 0.296375006)
  4616. Part397.Anchored = true
  4617. Part397.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4618. Part397.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4619. Part397.BrickColor = BrickColor.new("Royal purple")
  4620. Part397.CanCollide = false
  4621. Part397.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4622. Part397.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4623. Part397.Material = Enum.Material.Neon
  4624. Part397.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4625. Part397.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4626. Part397.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4627. Part397.brickColor = BrickColor.new("Royal purple")
  4628. SpecialMesh398.Parent = Part397
  4629. SpecialMesh398.Scale = Vector3.new(1, 0.300000012, 0.5)
  4630. SpecialMesh398.MeshType = Enum.MeshType.Wedge
  4631. Part399.Parent = Model0
  4632. 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)
  4633. Part399.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4634. Part399.Position = Vector3.new(-0.614644945, 3.60375571, -13.6545372)
  4635. Part399.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4636. Part399.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4637. Part399.Velocity = Vector3.new(8.81826168e-10, 0.00246759667, 1.1587872e-08)
  4638. Part399.Size = Vector3.new(0.275000006, 0.51412493, 0.622375011)
  4639. Part399.Anchored = true
  4640. Part399.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4641. Part399.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4642. Part399.BrickColor = BrickColor.new("Really black")
  4643. Part399.CanCollide = false
  4644. Part399.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4645. Part399.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4646. Part399.Material = Enum.Material.Metal
  4647. Part399.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4648. Part399.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4649. Part399.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4650. Part399.brickColor = BrickColor.new("Really black")
  4651. SpecialMesh400.Parent = Part399
  4652. SpecialMesh400.Scale = Vector3.new(0.400000006, 1.04999995, 0.5)
  4653. SpecialMesh400.MeshType = Enum.MeshType.Brick
  4654. Part401.Parent = Model0
  4655. 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)
  4656. Part401.Orientation = Vector3.new(-67.659996, -179.369995, 89.2299957)
  4657. Part401.Position = Vector3.new(-0.577553451, 2.93009853, -15.210207)
  4658. Part401.Rotation = Vector3.new(-112.339996, -0.239999995, -90.1899948)
  4659. Part401.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4660. Part401.Velocity = Vector3.new(1.07700714e-07, 0.00246436079, 1.41530256e-06)
  4661. Part401.Size = Vector3.new(0.288000047, 0.200000003, 0.27837503)
  4662. Part401.Anchored = true
  4663. Part401.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4664. Part401.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4665. Part401.BrickColor = BrickColor.new("Royal purple")
  4666. Part401.CanCollide = false
  4667. Part401.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4668. Part401.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4669. Part401.Material = Enum.Material.Neon
  4670. Part401.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4671. Part401.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4672. Part401.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4673. Part401.brickColor = BrickColor.new("Royal purple")
  4674. SpecialMesh402.Parent = Part401
  4675. SpecialMesh402.Scale = Vector3.new(1, 0.300000012, 0.5)
  4676. SpecialMesh402.MeshType = Enum.MeshType.Wedge
  4677. Part403.Parent = Model0
  4678. 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)
  4679. Part403.Orientation = Vector3.new(88.8799973, 15.0799999, -164.830002)
  4680. Part403.Position = Vector3.new(-0.610871017, 3.00987482, -14.1263742)
  4681. Part403.Rotation = Vector3.new(88.909996, 0.289999992, -179.909988)
  4682. Part403.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4683. Part403.Velocity = Vector3.new(9.5050936e-08, 0.00246661413, 1.24907092e-06)
  4684. Part403.Size = Vector3.new(0.275000006, 0.207000002, 0.213375002)
  4685. Part403.Anchored = true
  4686. Part403.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4687. Part403.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4688. Part403.BrickColor = BrickColor.new("Bright blue")
  4689. Part403.CanCollide = false
  4690. Part403.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4691. Part403.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4692. Part403.Material = Enum.Material.Neon
  4693. Part403.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4694. Part403.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4695. Part403.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4696. Part403.brickColor = BrickColor.new("Bright blue")
  4697. SpecialMesh404.Parent = Part403
  4698. SpecialMesh404.Scale = Vector3.new(0.550000012, 0.25, 0.5)
  4699. SpecialMesh404.MeshType = Enum.MeshType.Wedge
  4700. Part405.Parent = Model0
  4701. 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)
  4702. Part405.Orientation = Vector3.new(-88.0599976, -8.81999969, -81.2599945)
  4703. Part405.Position = Vector3.new(-0.576041341, 2.90943861, -16.1282196)
  4704. Part405.Rotation = Vector3.new(-88.0899963, -0.299999982, -90.0799942)
  4705. Part405.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4706. Part405.Velocity = Vector3.new(1.10976643e-07, 0.00246244832, 1.45835213e-06)
  4707. Part405.Size = Vector3.new(1.625, 0.200000003, 0.296375006)
  4708. Part405.Anchored = true
  4709. Part405.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4710. Part405.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4711. Part405.BrickColor = BrickColor.new("Royal purple")
  4712. Part405.CanCollide = false
  4713. Part405.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4714. Part405.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4715. Part405.Material = Enum.Material.Neon
  4716. Part405.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4717. Part405.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4718. Part405.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4719. Part405.brickColor = BrickColor.new("Royal purple")
  4720. SpecialMesh406.Parent = Part405
  4721. SpecialMesh406.Scale = Vector3.new(1, 0.300000012, 0.5)
  4722. SpecialMesh406.MeshType = Enum.MeshType.Wedge
  4723. Part407.Parent = Model0
  4724. 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)
  4725. Part407.Orientation = Vector3.new(-55.9099998, -179.649994, -0.529999971)
  4726. Part407.Position = Vector3.new(-0.61728102, 3.21630335, -10.6318092)
  4727. Part407.Rotation = Vector3.new(-124.089996, -0.189999998, 179.759995)
  4728. Part407.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  4729. Part407.Velocity = Vector3.new(6.23185059e-08, 0.00247389474, 8.18931142e-07)
  4730. Part407.Size = Vector3.new(0.200000003, 0.46875, 0.220999971)
  4731. Part407.Anchored = true
  4732. Part407.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4733. Part407.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4734. Part407.BrickColor = BrickColor.new("Bright blue")
  4735. Part407.CanCollide = false
  4736. Part407.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4737. Part407.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4738. Part407.Material = Enum.Material.Neon
  4739. Part407.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4740. Part407.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4741. Part407.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4742. Part407.brickColor = BrickColor.new("Bright blue")
  4743. SpecialMesh408.Parent = Part407
  4744. SpecialMesh408.Scale = Vector3.new(0.5, 1, 0.25)
  4745. SpecialMesh408.MeshType = Enum.MeshType.Brick
  4746. Part409.Parent = Model0
  4747. 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)
  4748. Part409.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4749. Part409.Position = Vector3.new(-0.612716079, 3.04616904, -13.0423889)
  4750. Part409.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4751. Part409.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4752. Part409.Velocity = Vector3.new(8.92959378e-08, 0.00246887235, 1.17344382e-06)
  4753. Part409.Size = Vector3.new(0.275000006, 0.35512504, 0.283374995)
  4754. Part409.Anchored = true
  4755. Part409.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4756. Part409.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4757. Part409.BrickColor = BrickColor.new("Really black")
  4758. Part409.CanCollide = false
  4759. Part409.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4760. Part409.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4761. Part409.Material = Enum.Material.Metal
  4762. Part409.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4763. Part409.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4764. Part409.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4765. Part409.brickColor = BrickColor.new("Really black")
  4766. SpecialMesh410.Parent = Part409
  4767. SpecialMesh410.Scale = Vector3.new(0.400000006, 0.560000002, 0.5)
  4768. SpecialMesh410.MeshType = Enum.MeshType.Wedge
  4769. Part411.Parent = Model0
  4770. 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)
  4771. Part411.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  4772. Part411.Position = Vector3.new(-0.614045858, 3.38228369, -13.3029222)
  4773. Part411.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  4774. Part411.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4775. Part411.Velocity = Vector3.new(3.59996903e-08, 0.00246832939, 4.73074152e-07)
  4776. Part411.Size = Vector3.new(0.275000006, 0.204125047, 0.287375003)
  4777. Part411.Anchored = true
  4778. Part411.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4779. Part411.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4780. Part411.BrickColor = BrickColor.new("Really black")
  4781. Part411.CanCollide = false
  4782. Part411.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4783. Part411.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4784. Part411.Material = Enum.Material.Metal
  4785. Part411.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4786. Part411.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4787. Part411.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4788. Part411.brickColor = BrickColor.new("Really black")
  4789. SpecialMesh412.Parent = Part411
  4790. SpecialMesh412.Scale = Vector3.new(0.5, 0.5, 0.5)
  4791. SpecialMesh412.MeshType = Enum.MeshType.Wedge
  4792. Part413.Parent = Model0
  4793. 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)
  4794. Part413.Orientation = Vector3.new(-43.9099998, -179.800003, -0.409999996)
  4795. Part413.Position = Vector3.new(-0.609584808, 2.93011069, -14.6988583)
  4796. Part413.Rotation = Vector3.new(-136.089996, -0.140000001, 179.729996)
  4797. Part413.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4798. Part413.Velocity = Vector3.new(1.07698781e-07, 0.00246542133, 1.41527721e-06)
  4799. Part413.Size = Vector3.new(0.275000006, 0.484124899, 0.227375031)
  4800. Part413.Anchored = true
  4801. Part413.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4802. Part413.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4803. Part413.BrickColor = BrickColor.new("Really black")
  4804. Part413.CanCollide = false
  4805. Part413.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4806. Part413.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4807. Part413.Material = Enum.Material.Metal
  4808. Part413.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4809. Part413.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4810. Part413.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4811. Part413.brickColor = BrickColor.new("Really black")
  4812. SpecialMesh414.Parent = Part413
  4813. SpecialMesh414.Scale = Vector3.new(0.349999994, 0.300000012, 1)
  4814. SpecialMesh414.MeshType = Enum.MeshType.Brick
  4815. Part415.Parent = Model0
  4816. 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)
  4817. Part415.Orientation = Vector3.new(84.5800018, 176.809998, 176.87999)
  4818. Part415.Position = Vector3.new(-0.606956184, 3.40465999, -18.0096188)
  4819. Part415.Rotation = Vector3.new(95.409996, 0.299999982, 0.0599999987)
  4820. Part415.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4821. Part415.Velocity = Vector3.new(3.24515206e-08, 0.00245852303, 4.26448139e-07)
  4822. Part415.Size = Vector3.new(0.275000006, 1.46012485, 0.422374964)
  4823. Part415.Anchored = true
  4824. Part415.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4825. Part415.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4826. Part415.BrickColor = BrickColor.new("Really black")
  4827. Part415.CanCollide = false
  4828. Part415.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4829. Part415.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4830. Part415.Material = Enum.Material.Metal
  4831. Part415.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4832. Part415.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4833. Part415.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4834. Part415.brickColor = BrickColor.new("Really black")
  4835. SpecialMesh416.Parent = Part415
  4836. SpecialMesh416.Scale = Vector3.new(0.400000006, 1, 0.5)
  4837. SpecialMesh416.MeshType = Enum.MeshType.Brick
  4838. Part417.Parent = Model0
  4839. 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)
  4840. Part417.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4841. Part417.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  4842. Part417.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4843. Part417.Color = Color3.new(0.384314, 0.145098, 0.819608)
  4844. Part417.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  4845. Part417.Size = Vector3.new(0.275000006, 0.320124894, 0.316374987)
  4846. Part417.Anchored = true
  4847. Part417.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4848. Part417.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4849. Part417.BrickColor = BrickColor.new("Royal purple")
  4850. Part417.CanCollide = false
  4851. Part417.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4852. Part417.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4853. Part417.Material = Enum.Material.Neon
  4854. Part417.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4855. Part417.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4856. Part417.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4857. Part417.brickColor = BrickColor.new("Royal purple")
  4858. SpecialMesh418.Parent = Part417
  4859. SpecialMesh418.Scale = Vector3.new(0.457500011, 1, 1)
  4860. SpecialMesh418.MeshType = Enum.MeshType.Cylinder
  4861. Part419.Parent = Model0
  4862. 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)
  4863. Part419.Orientation = Vector3.new(-76.0800018, -1.27999997, -178.779999)
  4864. Part419.Position = Vector3.new(-0.616606832, 3.19626212, -11.004673)
  4865. Part419.Rotation = Vector3.new(-76.0899963, -0.310000002, 179.98999)
  4866. Part419.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4867. Part419.Velocity = Vector3.new(6.54963515e-08, 0.00247311778, 8.606915e-07)
  4868. Part419.Size = Vector3.new(0.275000006, 0.418250024, 0.25)
  4869. Part419.Anchored = true
  4870. Part419.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4871. Part419.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4872. Part419.BrickColor = BrickColor.new("Really black")
  4873. Part419.CanCollide = false
  4874. Part419.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4875. Part419.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4876. Part419.Material = Enum.Material.Metal
  4877. Part419.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4878. Part419.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4879. Part419.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4880. Part419.brickColor = BrickColor.new("Really black")
  4881. SpecialMesh420.Parent = Part419
  4882. SpecialMesh420.Scale = Vector3.new(0.5, 1, 0.25)
  4883. SpecialMesh420.MeshType = Enum.MeshType.Brick
  4884. Part421.Parent = Model0
  4885. 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)
  4886. Part421.Orientation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  4887. Part421.Position = Vector3.new(-0.610599458, 3.09770298, -14.5984182)
  4888. Part421.Rotation = Vector3.new(-1.09000003, -0.0899999961, -179.709991)
  4889. Part421.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4890. Part421.Velocity = Vector3.new(8.1124405e-08, 0.00246563042, 1.06606149e-06)
  4891. Part421.Size = Vector3.new(0.275000006, 0.200124964, 0.287375033)
  4892. Part421.Anchored = true
  4893. Part421.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4894. Part421.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4895. Part421.BrickColor = BrickColor.new("Institutional white")
  4896. Part421.CanCollide = false
  4897. Part421.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4898. Part421.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4899. Part421.Material = Enum.Material.Metal
  4900. Part421.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4901. Part421.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4902. Part421.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4903. Part421.brickColor = BrickColor.new("Institutional white")
  4904. SpecialMesh422.Parent = Part421
  4905. SpecialMesh422.Scale = Vector3.new(0.560000002, 1, 0.899999976)
  4906. SpecialMesh422.MeshType = Enum.MeshType.Wedge
  4907. Part423.Parent = Model0
  4908. 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)
  4909. Part423.Orientation = Vector3.new(-73.909996, -179.069992, -1.05999994)
  4910. Part423.Position = Vector3.new(-0.608857095, 2.56135106, -13.9388657)
  4911. Part423.Rotation = Vector3.new(-106.089996, -0.25999999, 179.830002)
  4912. Part423.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4913. Part423.Velocity = Vector3.new(1.66171404e-07, 0.00246700505, 2.18366995e-06)
  4914. Part423.Size = Vector3.new(0.275000006, 0.409124941, 0.360375017)
  4915. Part423.Anchored = true
  4916. Part423.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4917. Part423.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4918. Part423.BrickColor = BrickColor.new("Really black")
  4919. Part423.CanCollide = false
  4920. Part423.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4921. Part423.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4922. Part423.Material = Enum.Material.Metal
  4923. Part423.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4924. Part423.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4925. Part423.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4926. Part423.brickColor = BrickColor.new("Really black")
  4927. SpecialMesh424.Parent = Part423
  4928. SpecialMesh424.Scale = Vector3.new(0.349999994, 1, 1)
  4929. SpecialMesh424.MeshType = Enum.MeshType.Brick
  4930. Part425.Parent = Model0
  4931. 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)
  4932. Part425.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4933. Part425.Position = Vector3.new(-0.610883415, 2.94288707, -13.8941879)
  4934. Part425.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4935. Part425.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4936. Part425.Velocity = Vector3.new(1.05672896e-07, 0.00246709795, 1.38865482e-06)
  4937. Part425.Size = Vector3.new(0.275000006, 0.228, 0.213375002)
  4938. Part425.Anchored = true
  4939. Part425.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4940. Part425.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4941. Part425.BrickColor = BrickColor.new("Really black")
  4942. Part425.CanCollide = false
  4943. Part425.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4944. Part425.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4945. Part425.Material = Enum.Material.Metal
  4946. Part425.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4947. Part425.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4948. Part425.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4949. Part425.brickColor = BrickColor.new("Really black")
  4950. SpecialMesh426.Parent = Part425
  4951. SpecialMesh426.Scale = Vector3.new(0.569999993, 0.125, 0.375)
  4952. SpecialMesh426.MeshType = Enum.MeshType.Wedge
  4953. Part427.Parent = Model0
  4954. 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)
  4955. Part427.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  4956. Part427.Position = Vector3.new(-0.612252593, 3.11727381, -13.584939)
  4957. Part427.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  4958. Part427.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4959. Part427.Velocity = Vector3.new(7.80211593e-08, 0.00246774196, 1.02528122e-06)
  4960. Part427.Size = Vector3.new(0.275000006, 0.398124993, 0.303375006)
  4961. Part427.Anchored = true
  4962. Part427.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4963. Part427.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4964. Part427.BrickColor = BrickColor.new("Really black")
  4965. Part427.CanCollide = false
  4966. Part427.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4967. Part427.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4968. Part427.Material = Enum.Material.Metal
  4969. Part427.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4970. Part427.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4971. Part427.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4972. Part427.brickColor = BrickColor.new("Really black")
  4973. SpecialMesh428.Parent = Part427
  4974. SpecialMesh428.Scale = Vector3.new(0.5, 1, 1)
  4975. SpecialMesh428.MeshType = Enum.MeshType.Brick
  4976. Part429.Parent = Model0
  4977. 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)
  4978. Part429.Orientation = Vector3.new(-43.9099998, -179.800003, 179.589996)
  4979. Part429.Position = Vector3.new(-0.612551332, 3.35195827, -14.1766062)
  4980. Part429.Rotation = Vector3.new(-136.089996, -0.140000001, -0.269999981)
  4981. Part429.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4982. Part429.Velocity = Vector3.new(4.08082492e-08, 0.00246650912, 5.36263883e-07)
  4983. Part429.Size = Vector3.new(0.275000006, 0.331124961, 0.412375003)
  4984. Part429.Anchored = true
  4985. Part429.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4986. Part429.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4987. Part429.BrickColor = BrickColor.new("Really black")
  4988. Part429.CanCollide = false
  4989. Part429.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4990. Part429.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4991. Part429.Material = Enum.Material.Metal
  4992. Part429.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4993. Part429.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  4994. Part429.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4995. Part429.brickColor = BrickColor.new("Really black")
  4996. SpecialMesh430.Parent = Part429
  4997. SpecialMesh430.Scale = Vector3.new(0.5, 1.04999995, 0.5)
  4998. SpecialMesh430.MeshType = Enum.MeshType.Brick
  4999. Part431.Parent = Model0
  5000. 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)
  5001. Part431.Orientation = Vector3.new(-43.9099998, -179.800003, 89.5899963)
  5002. Part431.Position = Vector3.new(-0.578086436, 2.53643656, -13.5418949)
  5003. Part431.Rotation = Vector3.new(-136.089996, -0.140000001, -90.2699966)
  5004. Part431.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5005. Part431.Velocity = Vector3.new(1.70122007e-07, 0.00246783718, 2.23558482e-06)
  5006. Part431.Size = Vector3.new(0.421999991, 0.200000003, 0.280375004)
  5007. Part431.Anchored = true
  5008. Part431.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5009. Part431.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5010. Part431.BrickColor = BrickColor.new("Royal purple")
  5011. Part431.CanCollide = false
  5012. Part431.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5013. Part431.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5014. Part431.Material = Enum.Material.Neon
  5015. Part431.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5016. Part431.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5017. Part431.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5018. Part431.brickColor = BrickColor.new("Royal purple")
  5019. SpecialMesh432.Parent = Part431
  5020. SpecialMesh432.Scale = Vector3.new(1, 0.300000012, 0.5)
  5021. SpecialMesh432.MeshType = Enum.MeshType.Wedge
  5022. Part433.Parent = Model0
  5023. 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)
  5024. Part433.Orientation = Vector3.new(88.8799973, 15.0799999, 105.169998)
  5025. Part433.Position = Vector3.new(-0.647041559, 3.82817221, -13.658843)
  5026. Part433.Rotation = Vector3.new(88.909996, 0.289999992, 90.0899963)
  5027. Part433.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5028. Part433.Velocity = Vector3.new(-3.47029321e-08, 0.00246758247, -4.56033831e-07)
  5029. Part433.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  5030. Part433.Anchored = true
  5031. Part433.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5032. Part433.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5033. Part433.BrickColor = BrickColor.new("Royal purple")
  5034. Part433.CanCollide = false
  5035. Part433.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5036. Part433.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5037. Part433.Material = Enum.Material.Neon
  5038. Part433.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5039. Part433.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5040. Part433.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5041. Part433.brickColor = BrickColor.new("Royal purple")
  5042. SpecialMesh434.Parent = Part433
  5043. SpecialMesh434.Scale = Vector3.new(1, 0.300000012, 0.5)
  5044. SpecialMesh434.MeshType = Enum.MeshType.Wedge
  5045. Part435.Parent = Model0
  5046. 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)
  5047. Part435.Orientation = Vector3.new(-66.409996, -179.409988, 179.259995)
  5048. Part435.Position = Vector3.new(-0.610847712, 3.10699439, -14.4674244)
  5049. Part435.Rotation = Vector3.new(-113.589996, -0.229999989, -0.199999988)
  5050. Part435.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5051. Part435.Velocity = Vector3.new(7.96511017e-08, 0.00246590329, 1.04670062e-06)
  5052. Part435.Size = Vector3.new(0.275000006, 0.23712492, 0.375375003)
  5053. Part435.Anchored = true
  5054. Part435.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5055. Part435.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5056. Part435.BrickColor = BrickColor.new("Royal purple")
  5057. Part435.CanCollide = false
  5058. Part435.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5059. Part435.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5060. Part435.Material = Enum.Material.Neon
  5061. Part435.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5062. Part435.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5063. Part435.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5064. Part435.brickColor = BrickColor.new("Royal purple")
  5065. SpecialMesh436.Parent = Part435
  5066. SpecialMesh436.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  5067. SpecialMesh436.MeshType = Enum.MeshType.Brick
  5068. Part437.Parent = Model0
  5069. 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)
  5070. Part437.Orientation = Vector3.new(43.9099998, 0.199999988, -89.5899963)
  5071. Part437.Position = Vector3.new(-0.583012402, 3.6639781, -14.1030874)
  5072. Part437.Rotation = Vector3.new(43.9099998, 0.140000001, -89.7299957)
  5073. Part437.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5074. Part437.Velocity = Vector3.new(-8.66738503e-09, 0.00246666698, -1.13898864e-07)
  5075. Part437.Size = Vector3.new(0.496000022, 0.200000003, 0.280375004)
  5076. Part437.Anchored = true
  5077. Part437.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5078. Part437.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5079. Part437.BrickColor = BrickColor.new("Royal purple")
  5080. Part437.CanCollide = false
  5081. Part437.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5082. Part437.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5083. Part437.Material = Enum.Material.Neon
  5084. Part437.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5085. Part437.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5086. Part437.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5087. Part437.brickColor = BrickColor.new("Royal purple")
  5088. SpecialMesh438.Parent = Part437
  5089. SpecialMesh438.Scale = Vector3.new(1, 0.300000012, 0.5)
  5090. SpecialMesh438.MeshType = Enum.MeshType.Wedge
  5091. Part439.Parent = Model0
  5092. 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)
  5093. Part439.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5094. Part439.Position = Vector3.new(-0.609243929, 2.84955072, -14.6524963)
  5095. Part439.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5096. Part439.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5097. Part439.Velocity = Vector3.new(1.20472833e-07, 0.00246551796, 1.58314185e-06)
  5098. Part439.Size = Vector3.new(0.275000006, 0.287124902, 0.227375031)
  5099. Part439.Anchored = true
  5100. Part439.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5101. Part439.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5102. Part439.BrickColor = BrickColor.new("Really black")
  5103. Part439.CanCollide = false
  5104. Part439.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5105. Part439.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5106. Part439.Material = Enum.Material.Metal
  5107. Part439.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5108. Part439.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5109. Part439.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5110. Part439.brickColor = BrickColor.new("Really black")
  5111. SpecialMesh440.Parent = Part439
  5112. SpecialMesh440.Scale = Vector3.new(0.349999994, 1, 1)
  5113. SpecialMesh440.MeshType = Enum.MeshType.Brick
  5114. Part441.Parent = Model0
  5115. 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)
  5116. Part441.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5117. Part441.Position = Vector3.new(-0.610548377, 2.83942795, -13.765955)
  5118. Part441.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5119. Part441.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5120. Part441.Velocity = Vector3.new(1.22077964e-07, 0.002467365, 1.60423497e-06)
  5121. Part441.Size = Vector3.new(0.275000006, 0.304124922, 0.267374992)
  5122. Part441.Anchored = true
  5123. Part441.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5124. Part441.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5125. Part441.BrickColor = BrickColor.new("Really black")
  5126. Part441.CanCollide = false
  5127. Part441.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5128. Part441.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5129. Part441.Material = Enum.Material.Metal
  5130. Part441.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5131. Part441.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5132. Part441.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5133. Part441.brickColor = BrickColor.new("Really black")
  5134. SpecialMesh442.Parent = Part441
  5135. SpecialMesh442.Scale = Vector3.new(0.495000005, 1, 1)
  5136. SpecialMesh442.MeshType = Enum.MeshType.Wedge
  5137. Part443.Parent = Model0
  5138. 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)
  5139. Part443.Orientation = Vector3.new(88.8799973, 15.0799999, -74.8300018)
  5140. Part443.Position = Vector3.new(-0.584542513, 3.82849336, -13.6587467)
  5141. Part443.Rotation = Vector3.new(88.909996, 0.289999992, -89.909996)
  5142. Part443.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5143. Part443.Velocity = Vector3.new(-3.47538496e-08, 0.00246759271, -4.56702992e-07)
  5144. Part443.Size = Vector3.new(0.643000007, 0.200000003, 0.280375004)
  5145. Part443.Anchored = true
  5146. Part443.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5147. Part443.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5148. Part443.BrickColor = BrickColor.new("Royal purple")
  5149. Part443.CanCollide = false
  5150. Part443.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5151. Part443.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5152. Part443.Material = Enum.Material.Neon
  5153. Part443.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5154. Part443.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5155. Part443.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5156. Part443.brickColor = BrickColor.new("Royal purple")
  5157. SpecialMesh444.Parent = Part443
  5158. SpecialMesh444.Scale = Vector3.new(1, 0.300000012, 0.5)
  5159. SpecialMesh444.MeshType = Enum.MeshType.Wedge
  5160. Part445.Parent = Model0
  5161. 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)
  5162. Part445.Orientation = Vector3.new(78.909996, 1.40999997, 1.52999997)
  5163. Part445.Position = Vector3.new(-0.618139863, 3.39627433, -10.6743059)
  5164. Part445.Rotation = Vector3.new(78.909996, 0.269999981, 0.140000001)
  5165. Part445.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5166. Part445.Velocity = Vector3.new(3.37812835e-08, 0.00247380603, 4.43921522e-07)
  5167. Part445.Size = Vector3.new(0.275000006, 0.28125, 0.234375)
  5168. Part445.Anchored = true
  5169. Part445.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5170. Part445.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5171. Part445.BrickColor = BrickColor.new("Really black")
  5172. Part445.CanCollide = false
  5173. Part445.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5174. Part445.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5175. Part445.Material = Enum.Material.Metal
  5176. Part445.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5177. Part445.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5178. Part445.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5179. Part445.brickColor = BrickColor.new("Really black")
  5180. SpecialMesh446.Parent = Part445
  5181. SpecialMesh446.Scale = Vector3.new(0.5, 1.04999995, 0.400000006)
  5182. SpecialMesh446.MeshType = Enum.MeshType.Brick
  5183. Part447.Parent = Model0
  5184. 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)
  5185. Part447.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5186. Part447.Position = Vector3.new(-0.612165928, 3.04279852, -13.3917465)
  5187. Part447.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5188. Part447.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5189. Part447.Velocity = Vector3.new(8.98303796e-08, 0.00246814452, 1.18046705e-06)
  5190. Part447.Size = Vector3.new(0.275000006, 0.577124953, 0.303375006)
  5191. Part447.Anchored = true
  5192. Part447.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5193. Part447.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5194. Part447.BrickColor = BrickColor.new("Really black")
  5195. Part447.CanCollide = false
  5196. Part447.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5197. Part447.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5198. Part447.Material = Enum.Material.Metal
  5199. Part447.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5200. Part447.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5201. Part447.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5202. Part447.brickColor = BrickColor.new("Really black")
  5203. SpecialMesh448.Parent = Part447
  5204. SpecialMesh448.Scale = Vector3.new(0.400000006, 0.870000005, 0.5)
  5205. SpecialMesh448.MeshType = Enum.MeshType.Brick
  5206. Part449.Parent = Model0
  5207. 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)
  5208. Part449.Orientation = Vector3.new(-61.079998, -0.620000005, -89.3899994)
  5209. Part449.Position = Vector3.new(-0.576728344, 2.5984447, -14.6364422)
  5210. Part449.Rotation = Vector3.new(-61.0900002, -0.299999982, -89.9300003)
  5211. Part449.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5212. Part449.Velocity = Vector3.new(1.6028963e-07, 0.00246555661, 2.10637722e-06)
  5213. Part449.Size = Vector3.new(0.423000038, 0.200000003, 0.280375004)
  5214. Part449.Anchored = true
  5215. Part449.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5216. Part449.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5217. Part449.BrickColor = BrickColor.new("Royal purple")
  5218. Part449.CanCollide = false
  5219. Part449.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5220. Part449.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5221. Part449.Material = Enum.Material.Neon
  5222. Part449.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5223. Part449.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5224. Part449.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5225. Part449.brickColor = BrickColor.new("Royal purple")
  5226. SpecialMesh450.Parent = Part449
  5227. SpecialMesh450.Scale = Vector3.new(1, 0.300000012, 0.5)
  5228. SpecialMesh450.MeshType = Enum.MeshType.Wedge
  5229. Part451.Parent = Model0
  5230. 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)
  5231. Part451.Orientation = Vector3.new(76.0800018, 178.720001, -1.22000003)
  5232. Part451.Position = Vector3.new(-0.611472607, 3.24456573, -14.520874)
  5233. Part451.Rotation = Vector3.new(103.909996, 0.310000002, -179.98999)
  5234. Part451.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5235. Part451.Velocity = Vector3.new(5.78370134e-08, 0.002465792, 7.60040166e-07)
  5236. Part451.Size = Vector3.new(0.275000006, 0.221124932, 0.408374965)
  5237. Part451.Anchored = true
  5238. Part451.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5239. Part451.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5240. Part451.BrickColor = BrickColor.new("Really black")
  5241. Part451.CanCollide = false
  5242. Part451.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5243. Part451.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5244. Part451.Material = Enum.Material.Metal
  5245. Part451.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5246. Part451.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5247. Part451.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5248. Part451.brickColor = BrickColor.new("Really black")
  5249. SpecialMesh452.Parent = Part451
  5250. SpecialMesh452.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  5251. SpecialMesh452.MeshType = Enum.MeshType.Brick
  5252. Part453.Parent = Model0
  5253. 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)
  5254. Part453.Orientation = Vector3.new(-73.909996, -179.069992, 178.940002)
  5255. Part453.Position = Vector3.new(-0.610993803, 3.15083313, -14.5190973)
  5256. Part453.Rotation = Vector3.new(-106.089996, -0.25999999, -0.170000002)
  5257. Part453.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5258. Part453.Velocity = Vector3.new(7.26997911e-08, 0.00246579573, 9.55352903e-07)
  5259. Part453.Size = Vector3.new(0.275000006, 0.221124932, 0.408374965)
  5260. Part453.Anchored = true
  5261. Part453.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5262. Part453.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5263. Part453.BrickColor = BrickColor.new("Really black")
  5264. Part453.CanCollide = false
  5265. Part453.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5266. Part453.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5267. Part453.Material = Enum.Material.Metal
  5268. Part453.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5269. Part453.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5270. Part453.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5271. Part453.brickColor = BrickColor.new("Really black")
  5272. SpecialMesh454.Parent = Part453
  5273. SpecialMesh454.Scale = Vector3.new(0.550000012, 1.04999995, 0.800000012)
  5274. SpecialMesh454.MeshType = Enum.MeshType.Brick
  5275. Part455.Parent = Model0
  5276. 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)
  5277. Part455.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5278. Part455.Position = Vector3.new(-0.609657764, 2.72515392, -13.9643335)
  5279. Part455.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5280. Part455.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5281. Part455.Velocity = Vector3.new(1.40197898e-07, 0.00246695196, 1.84235034e-06)
  5282. Part455.Size = Vector3.new(0.275000006, 0.330124915, 0.226374999)
  5283. Part455.Anchored = true
  5284. Part455.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5285. Part455.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5286. Part455.BrickColor = BrickColor.new("Really black")
  5287. Part455.CanCollide = false
  5288. Part455.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5289. Part455.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5290. Part455.Material = Enum.Material.Glass
  5291. Part455.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5292. Part455.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5293. Part455.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5294. Part455.brickColor = BrickColor.new("Really black")
  5295. SpecialMesh456.Parent = Part455
  5296. SpecialMesh456.Scale = Vector3.new(0.400000006, 1, 1)
  5297. SpecialMesh456.MeshType = Enum.MeshType.Brick
  5298. Part457.Parent = Model0
  5299. 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)
  5300. Part457.Orientation = Vector3.new(-31.0900002, -0.269999981, -89.659996)
  5301. Part457.Position = Vector3.new(-0.577368915, 2.78939152, -14.8586674)
  5302. Part457.Rotation = Vector3.new(-31.0900002, -0.229999989, -89.7900009)
  5303. Part457.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5304. Part457.Velocity = Vector3.new(1.30012012e-07, 0.00246509351, 1.70849694e-06)
  5305. Part457.Size = Vector3.new(0.293000042, 0.200000003, 0.280375004)
  5306. Part457.Anchored = true
  5307. Part457.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5308. Part457.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5309. Part457.BrickColor = BrickColor.new("Royal purple")
  5310. Part457.CanCollide = false
  5311. Part457.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5312. Part457.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5313. Part457.Material = Enum.Material.Neon
  5314. Part457.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5315. Part457.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5316. Part457.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5317. Part457.brickColor = BrickColor.new("Royal purple")
  5318. SpecialMesh458.Parent = Part457
  5319. SpecialMesh458.Scale = Vector3.new(1, 0.300000012, 0.5)
  5320. SpecialMesh458.MeshType = Enum.MeshType.Wedge
  5321. Part459.Parent = Model0
  5322. 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)
  5323. Part459.Orientation = Vector3.new(68.5800018, 179.159988, -0.810000002)
  5324. Part459.Position = Vector3.new(-0.611768007, 3.29040194, -14.4816895)
  5325. Part459.Rotation = Vector3.new(111.409996, 0.310000002, 179.970001)
  5326. Part459.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5327. Part459.Velocity = Vector3.new(5.05689677e-08, 0.00246587349, 6.64530262e-07)
  5328. Part459.Size = Vector3.new(0.275000006, 0.238124937, 0.381375015)
  5329. Part459.Anchored = true
  5330. Part459.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5331. Part459.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5332. Part459.BrickColor = BrickColor.new("Royal purple")
  5333. Part459.CanCollide = false
  5334. Part459.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5335. Part459.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5336. Part459.Material = Enum.Material.Neon
  5337. Part459.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5338. Part459.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5339. Part459.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5340. Part459.brickColor = BrickColor.new("Royal purple")
  5341. SpecialMesh460.Parent = Part459
  5342. SpecialMesh460.Scale = Vector3.new(0.524999976, 1.04999995, 0.800000012)
  5343. SpecialMesh460.MeshType = Enum.MeshType.Brick
  5344. Part461.Parent = Model0
  5345. 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)
  5346. Part461.Orientation = Vector3.new(44.4099998, 0.199999988, -179.589996)
  5347. Part461.Position = Vector3.new(-0.605971158, 3.45052385, -18.8064079)
  5348. Part461.Rotation = Vector3.new(44.4099998, 0.140000001, -179.729996)
  5349. Part461.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5350. Part461.Velocity = Vector3.new(2.51790748e-08, 0.00245686295, 3.30880596e-07)
  5351. Part461.Size = Vector3.new(0.275000006, 0.235124931, 0.586375237)
  5352. Part461.Anchored = true
  5353. Part461.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5354. Part461.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5355. Part461.BrickColor = BrickColor.new("Really black")
  5356. Part461.CanCollide = false
  5357. Part461.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5358. Part461.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5359. Part461.Material = Enum.Material.Metal
  5360. Part461.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5361. Part461.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5362. Part461.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5363. Part461.brickColor = BrickColor.new("Really black")
  5364. SpecialMesh462.Parent = Part461
  5365. SpecialMesh462.Scale = Vector3.new(0.400000006, 1.04999995, 1)
  5366. SpecialMesh462.MeshType = Enum.MeshType.Brick
  5367. Part463.Parent = Model0
  5368. 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)
  5369. Part463.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5370. Part463.Position = Vector3.new(-0.610880256, 2.96906447, -13.9840736)
  5371. Part463.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5372. Part463.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5373. Part463.Velocity = Vector3.new(1.01522062e-07, 0.00246691052, 1.33410845e-06)
  5374. Part463.Size = Vector3.new(0.275000006, 0.239124984, 0.303375006)
  5375. Part463.Anchored = true
  5376. Part463.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5377. Part463.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5378. Part463.BrickColor = BrickColor.new("Really black")
  5379. Part463.CanCollide = false
  5380. Part463.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5381. Part463.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5382. Part463.Material = Enum.Material.Glass
  5383. Part463.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5384. Part463.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5385. Part463.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5386. Part463.brickColor = BrickColor.new("Really black")
  5387. SpecialMesh464.Parent = Part463
  5388. SpecialMesh464.Scale = Vector3.new(0.524999976, 1, 1)
  5389. SpecialMesh464.MeshType = Enum.MeshType.Brick
  5390. Part465.Parent = Model0
  5391. 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)
  5392. Part465.Orientation = Vector3.new(-61.079998, -0.620000005, 90.6100006)
  5393. Part465.Position = Vector3.new(-0.63922745, 2.59812379, -14.6365376)
  5394. Part465.Rotation = Vector3.new(-61.0900002, -0.299999982, 90.0699997)
  5395. Part465.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5396. Part465.Velocity = Vector3.new(1.6034052e-07, 0.0024655466, 2.10704593e-06)
  5397. Part465.Size = Vector3.new(0.423000038, 0.200000003, 0.280375004)
  5398. Part465.Anchored = true
  5399. Part465.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5400. Part465.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5401. Part465.BrickColor = BrickColor.new("Royal purple")
  5402. Part465.CanCollide = false
  5403. Part465.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5404. Part465.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5405. Part465.Material = Enum.Material.Neon
  5406. Part465.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5407. Part465.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5408. Part465.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5409. Part465.brickColor = BrickColor.new("Royal purple")
  5410. SpecialMesh466.Parent = Part465
  5411. SpecialMesh466.Scale = Vector3.new(1, 0.300000012, 0.5)
  5412. SpecialMesh466.MeshType = Enum.MeshType.Wedge
  5413. Part467.Parent = Model0
  5414. 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)
  5415. Part467.Orientation = Vector3.new(-31.0900002, -0.269999981, 90.3399963)
  5416. Part467.Position = Vector3.new(-0.63986814, 2.78907037, -14.8587627)
  5417. Part467.Rotation = Vector3.new(-31.0900002, -0.229999989, 90.2099991)
  5418. Part467.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5419. Part467.Velocity = Vector3.new(1.30062929e-07, 0.00246508326, 1.70916621e-06)
  5420. Part467.Size = Vector3.new(0.293000042, 0.200000003, 0.280375004)
  5421. Part467.Anchored = true
  5422. Part467.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5423. Part467.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5424. Part467.BrickColor = BrickColor.new("Royal purple")
  5425. Part467.CanCollide = false
  5426. Part467.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5427. Part467.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5428. Part467.Material = Enum.Material.Neon
  5429. Part467.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5430. Part467.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5431. Part467.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5432. Part467.brickColor = BrickColor.new("Royal purple")
  5433. SpecialMesh468.Parent = Part467
  5434. SpecialMesh468.Scale = Vector3.new(1, 0.300000012, 0.5)
  5435. SpecialMesh468.MeshType = Enum.MeshType.Wedge
  5436. Part469.Parent = Model0
  5437. 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)
  5438. Part469.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  5439. Part469.Position = Vector3.new(-0.610184669, 2.95239902, -14.3818283)
  5440. Part469.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  5441. Part469.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5442. Part469.Velocity = Vector3.new(1.04164627e-07, 0.00246608187, 1.36883455e-06)
  5443. Part469.Size = Vector3.new(0.275000006, 0.410999984, 0.469375014)
  5444. Part469.Anchored = true
  5445. Part469.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5446. Part469.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5447. Part469.BrickColor = BrickColor.new("Really black")
  5448. Part469.CanCollide = false
  5449. Part469.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5450. Part469.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5451. Part469.Material = Enum.Material.Glass
  5452. Part469.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5453. Part469.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5454. Part469.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5455. Part469.brickColor = BrickColor.new("Really black")
  5456. SpecialMesh470.Parent = Part469
  5457. SpecialMesh470.Scale = Vector3.new(0.5, 0.850000024, 0.699999988)
  5458. SpecialMesh470.MeshType = Enum.MeshType.Brick
  5459. Part471.Parent = Model0
  5460. 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)
  5461. Part471.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5462. Part471.Position = Vector3.new(-0.613238811, 3.32843637, -13.6493177)
  5463. Part471.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5464. Part471.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5465. Part471.Velocity = Vector3.new(4.45380195e-08, 0.00246760761, 5.85277007e-07)
  5466. Part471.Size = Vector3.new(0.275000006, 0.698124886, 0.638374984)
  5467. Part471.Anchored = true
  5468. Part471.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5469. Part471.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5470. Part471.BrickColor = BrickColor.new("Really black")
  5471. Part471.CanCollide = false
  5472. Part471.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5473. Part471.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5474. Part471.Material = Enum.Material.Glass
  5475. Part471.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5476. Part471.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5477. Part471.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5478. Part471.brickColor = BrickColor.new("Really black")
  5479. SpecialMesh472.Parent = Part471
  5480. SpecialMesh472.Scale = Vector3.new(0.449999988, 1, 1)
  5481. SpecialMesh472.MeshType = Enum.MeshType.Cylinder
  5482. Part473.Parent = Model0
  5483. 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)
  5484. Part473.Orientation = Vector3.new(-88.8799973, -164.919998, 164.830002)
  5485. Part473.Position = Vector3.new(-0.618369102, 3.23987865, -11.0925436)
  5486. Part473.Rotation = Vector3.new(-91.0899963, -0.289999992, -0.0899999961)
  5487. Part473.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5488. Part473.Velocity = Vector3.new(5.85802624e-08, 0.00247293455, 7.69806775e-07)
  5489. Part473.Size = Vector3.new(0.25999999, 0.578125, 0.21875)
  5490. Part473.Anchored = true
  5491. Part473.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5492. Part473.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5493. Part473.BrickColor = BrickColor.new("Really black")
  5494. Part473.CanCollide = false
  5495. Part473.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5496. Part473.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5497. Part473.Material = Enum.Material.Metal
  5498. Part473.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5499. Part473.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5500. Part473.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5501. Part473.brickColor = BrickColor.new("Really black")
  5502. SpecialMesh474.Parent = Part473
  5503. SpecialMesh474.Scale = Vector3.new(0.300000012, 1, 1)
  5504. SpecialMesh474.MeshType = Enum.MeshType.Wedge
  5505. Part475.Name = "TrueHandle"
  5506. Part475.Parent = Model0
  5507. 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)
  5508. Part475.Orientation = Vector3.new(-88.8799973, -164.919998, -15.1700001)
  5509. Part475.Position = Vector3.new(-0.615642607, 3.34541011, -12.1349049)
  5510. Part475.Rotation = Vector3.new(-91.0899963, -0.289999992, 179.909988)
  5511. Part475.Color = Color3.new(0.803922, 0.803922, 0.803922)
  5512. Part475.Velocity = Vector3.new(4.18465866e-08, 0.00247076293, 5.49908464e-07)
  5513. Part475.Size = Vector3.new(0.275000006, 1.73512506, 0.280375004)
  5514. Part475.Anchored = true
  5515. Part475.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5516. Part475.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5517. Part475.BrickColor = BrickColor.new("Mid gray")
  5518. Part475.CanCollide = false
  5519. Part475.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5520. Part475.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5521. Part475.Material = Enum.Material.Metal
  5522. Part475.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5523. Part475.RotVelocity = Vector3.new(-2.08372262e-06, 1.18487212e-14, 1.58565669e-07)
  5524. Part475.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5525. Part475.brickColor = BrickColor.new("Mid gray")
  5526. SpecialMesh476.Parent = Part475
  5527. SpecialMesh476.Scale = Vector3.new(0.349999994, 1.04999995, 0.5)
  5528. SpecialMesh476.MeshType = Enum.MeshType.Brick
  5529. for i,v in pairs(mas:GetChildren()) do
  5530. v.Parent = game:GetService("Players").LocalPlayer.Character
  5531. pcall(function() v:MakeJoints() end)
  5532. end
  5533. mas:Destroy()
  5534. for i,v in pairs(cors) do
  5535. spawn(function()
  5536. pcall(v)
  5537. end)
  5538. end
  5539. for i,v in pairs(Model0:GetChildren()) do
  5540. if v:IsA("Part") then
  5541. v.Locked = true
  5542. v.Anchored = false
  5543. v.CanCollide = false
  5544. end
  5545. end
  5546.  
  5547.  
  5548. plr = game:GetService("Players").LocalPlayer
  5549. char = plr.Character
  5550. hum = char.Humanoid
  5551. local cam = game.Workspace.CurrentCamera
  5552. t = char.Torso
  5553. h = char.Head
  5554. ra = char["Right Arm"]
  5555. la = char["Left Arm"]
  5556. rl = char["Right Leg"]
  5557. ll = char["Left Leg"]
  5558. tors = char.Torso
  5559. lleg = char["Left Leg"]
  5560. root = char.HumanoidRootPart
  5561. hed = char.Head
  5562. rleg = char["Right Leg"]
  5563. rarm = char["Right Arm"]
  5564. larm = char["Left Arm"]
  5565. it = Instance.new
  5566. vt = Vector3.new
  5567. bc = BrickColor.new
  5568. br = BrickColor.random
  5569. it = Instance.new
  5570. cf = CFrame.new
  5571. ceuler = CFrame.fromEulerAnglesXYZ
  5572.  
  5573. local muter = false
  5574. local ORGID = 1873219898
  5575. local ORVOL = 1.15
  5576. local ORPIT = 1.01
  5577. local kan = Instance.new("Sound",plr.PlayerGui)
  5578. kan.Volume = 1.15
  5579. kan.TimePosition = 0
  5580. kan.PlaybackSpeed = 1.01
  5581. kan.Pitch = 1.01
  5582. kan.SoundId = "rbxassetid://1873219898" --525289865,1873219898,381991270
  5583. kan.Name = "nepnepnep"
  5584. kan.Looped = true
  5585. kan:Play()
  5586.  
  5587. --------------------------- GUI STUFF
  5588. local basgui = it("GuiMain")
  5589. basgui.Parent = plr.PlayerGui
  5590. basgui.Name = "VISgui"
  5591. local fullscreenz = it("Frame")
  5592. fullscreenz.Parent = basgui
  5593. fullscreenz.BackgroundColor3 = Color3.new(255, 255, 255)
  5594. fullscreenz.BackgroundTransparency = 1
  5595. fullscreenz.BorderColor3 = Color3.new(17, 17, 17)
  5596. fullscreenz.Size = UDim2.new(1, 0, 1, 0)
  5597. fullscreenz.Position = UDim2.new(0, 0, 0, 0)
  5598. local imgl2 = Instance.new("ImageLabel",fullscreenz)
  5599. imgl2.BackgroundTransparency = 1
  5600. imgl2.BorderSizePixel = 0
  5601. imgl2.ImageTransparency = 0.5
  5602. imgl2.ImageColor3 = Color3.new(1,0,0)
  5603. imgl2.Position = UDim2.new(0.75,0,0.55,0)
  5604. imgl2.Size = UDim2.new(0,600,0,600)
  5605. imgl2.Image = "rbxassetid://320731120"
  5606. local techc = imgl2:Clone()
  5607. techc.Parent = fullscreenz
  5608. techc.ImageTransparency = 0.5
  5609. techc.Size = UDim2.new(0,700,0,700)
  5610. techc.Position = UDim2.new(0.75,-50,0.55,-50)
  5611. techc.ImageColor3 = Color3.new(0.5,0,1)
  5612. techc.Image = "rbxassetid://521073910"
  5613. local circl = imgl2:Clone()
  5614. circl.Parent = fullscreenz
  5615. circl.ImageTransparency = 0
  5616. circl.Size = UDim2.new(0,500,0,500)
  5617. circl.Position = UDim2.new(0.75,50,0.55,50)
  5618. circl.ImageColor3 = Color3.new(0,0.5,1)
  5619. circl.Image = "rbxassetid://997291547"
  5620. local circl2 = imgl2:Clone()
  5621. circl2.Parent = fullscreenz
  5622. circl2.ImageTransparency = 0
  5623. circl2.ImageColor3 = Color3.new(0.5,0,1)
  5624. circl2.Image = "rbxassetid://997291547"
  5625. local imgl2b = imgl2:Clone()
  5626. imgl2b.Parent = fullscreenz
  5627. imgl2b.ImageTransparency = 0
  5628. imgl2b.Size = UDim2.new(0,500,0,500)
  5629. imgl2b.Position = UDim2.new(0.75,50,0.55,50)
  5630. local ned = Instance.new("TextLabel",fullscreenz)
  5631. ned.ZIndex = 2
  5632. ned.Font = "SciFi"
  5633. ned.BackgroundTransparency = 1
  5634. ned.BorderSizePixel = 0.65
  5635. ned.Size = UDim2.new(0.4,0,0.2,0)
  5636. ned.Position = UDim2.new(0.6,0,0.8,0)
  5637. ned.TextColor3 = BrickColor.new("Royal purple").Color
  5638. ned.TextStrokeColor3 = BrickColor.new("Cyan").Color
  5639. ned.TextScaled = true
  5640. ned.TextStrokeTransparency = 0
  5641. ned.Text = "NEPTUNIAN V"
  5642. ned.TextSize = 24
  5643. ned.Rotation = 1
  5644. --ned.TextXAlignment = "Right"
  5645. ned.TextYAlignment = "Bottom"
  5646.  
  5647. function CameraShake(Times, Power)
  5648. coroutine.resume(coroutine.create(function()
  5649. FV = Instance.new("BoolValue", Character)
  5650. FV.Name = "CameraShake"
  5651. for ShakeNum=1,Times do
  5652. swait()
  5653. local ef=Power
  5654. if ef>=1 then
  5655. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  5656. else
  5657. ef=Power*10
  5658. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  5659. end
  5660. end
  5661. Humanoid.CameraOffset = Vector3.new(0,0,0)
  5662. FV:Destroy()
  5663. end))
  5664. end
  5665.  
  5666. CamShake=function(Part,Distan,Power,Times)
  5667. local de=Part.Position
  5668. for i,v in pairs(workspace:children()) do
  5669. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  5670. for _,c in pairs(v:children()) do
  5671. if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
  5672. local Noob=v.Humanoid
  5673. if Noob~=nil then
  5674. if Noob:FindFirstChild("CamShake")==nil then-- and Noob == Character then
  5675. --[[local ss=script.CamShake:clone()
  5676. ss.Parent=Noob
  5677. ss.Power.Value=Power
  5678. ss.Times.Value=Times
  5679. ss.Disabled=false]]
  5680. CameraShake(Times, Power)
  5681. end
  5682. end
  5683. end
  5684. end
  5685. end
  5686. end
  5687. end
  5688.  
  5689. function chatfunc(text,color,typet,font,timeex)
  5690. local chat = coroutine.wrap(function()
  5691. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  5692. Character:FindFirstChild("TalkingBillBoard"):destroy()
  5693. end
  5694. local naeeym2 = Instance.new("BillboardGui",Character)
  5695. naeeym2.Size = UDim2.new(0,100,0,40)
  5696. naeeym2.StudsOffset = Vector3.new(0,3,0)
  5697. naeeym2.Adornee = Character.Head
  5698. naeeym2.Name = "TalkingBillBoard"
  5699. local tecks2 = Instance.new("TextLabel",naeeym2)
  5700. tecks2.BackgroundTransparency = 1
  5701. tecks2.BorderSizePixel = 0
  5702. tecks2.Text = ""
  5703. tecks2.Font = font
  5704. tecks2.TextSize = 30
  5705. tecks2.TextStrokeTransparency = 0
  5706. tecks2.TextColor3 = color
  5707. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  5708. tecks2.Size = UDim2.new(1,0,0.5,0)
  5709. local tecks3 = Instance.new("TextLabel",naeeym2)
  5710. tecks3.BackgroundTransparency = 1
  5711. tecks3.BorderSizePixel = 0
  5712. tecks3.Text = ""
  5713. tecks3.Font = font
  5714. tecks3.TextSize = 30
  5715. tecks3.TextStrokeTransparency = 0
  5716. if typet == "Inverted" then
  5717. tecks3.TextColor3 = Color3.new(0,0,0)
  5718. tecks3.TextStrokeColor3 = color
  5719. elseif typet == "Normal" then
  5720. tecks3.TextColor3 = color
  5721. tecks3.TextStrokeColor3 = Color3.new(0,0,0)
  5722. end
  5723. tecks3.Size = UDim2.new(1,0,0.5,0)
  5724. coroutine.resume(coroutine.create(function()
  5725. while true do
  5726. swait(1)
  5727. if chaosmode == true then
  5728. tecks2.TextColor3 = BrickColor.random().Color
  5729. tecks3.TextStrokeColor3 = BrickColor.random().Color
  5730. end
  5731. end
  5732. end))
  5733. for i = 0, 74*timeex do
  5734. swait()
  5735. tecks2.Text = text
  5736. tecks3.Text = text
  5737. end
  5738. local randomrot = math.random(1,2)
  5739. if randomrot == 1 then
  5740. for i = 1, 50 do
  5741. swait()
  5742. tecks2.Text = text
  5743. tecks3.Text = text
  5744. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  5745. tecks2.TextTransparency = tecks2.TextTransparency + .04
  5746. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  5747. tecks3.TextTransparency = tecks2.TextTransparency + .04
  5748. end
  5749. elseif randomrot == 2 then
  5750. for i = 1, 50 do
  5751. swait()
  5752. tecks2.Text = text
  5753. tecks3.Text = text
  5754. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  5755. tecks2.TextTransparency = tecks2.TextTransparency + .04
  5756. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  5757. tecks3.TextTransparency = tecks2.TextTransparency + .04
  5758. end
  5759. end
  5760. naeeym2:Destroy()
  5761. end)
  5762. chat()
  5763. end
  5764.  
  5765.  
  5766. local Create = LoadLibrary("RbxUtility").Create
  5767.  
  5768. CFuncs = {
  5769. ["Part"] = {
  5770. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  5771. local Part = Create("Part"){
  5772. Parent = Parent,
  5773. Reflectance = Reflectance,
  5774. Transparency = Transparency,
  5775. CanCollide = false,
  5776. Locked = true,
  5777. BrickColor = BrickColor.new(tostring(BColor)),
  5778. Name = Name,
  5779. Size = Size,
  5780. Material = Material,
  5781. }
  5782. RemoveOutlines(Part)
  5783. return Part
  5784. end;
  5785. };
  5786.  
  5787. ["Mesh"] = {
  5788. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  5789. local Msh = Create(Mesh){
  5790. Parent = Part,
  5791. Offset = OffSet,
  5792. Scale = Scale,
  5793. }
  5794. if Mesh == "SpecialMesh" then
  5795. Msh.MeshType = MeshType
  5796. Msh.MeshId = MeshId
  5797. end
  5798. return Msh
  5799. end;
  5800. };
  5801.  
  5802. ["Mesh"] = {
  5803. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  5804. local Msh = Create(Mesh){
  5805. Parent = Part,
  5806. Offset = OffSet,
  5807. Scale = Scale,
  5808. }
  5809. if Mesh == "SpecialMesh" then
  5810. Msh.MeshType = MeshType
  5811. Msh.MeshId = MeshId
  5812. end
  5813. return Msh
  5814. end;
  5815. };
  5816.  
  5817. ["Weld"] = {
  5818. Create = function(Parent, Part0, Part1, C0, C1)
  5819. local Weld = Create("Weld"){
  5820. Parent = Parent,
  5821. Part0 = Part0,
  5822. Part1 = Part1,
  5823. C0 = C0,
  5824. C1 = C1,
  5825. }
  5826. return Weld
  5827. end;
  5828. };
  5829.  
  5830. ["Sound"] = {
  5831. Create = function(id, par, vol, pit)
  5832. coroutine.resume(coroutine.create(function()
  5833. local S = Create("Sound"){
  5834. Volume = vol,
  5835. Pitch = pit or 1,
  5836. SoundId = id,
  5837. Parent = par or workspace,
  5838. }
  5839. wait()
  5840. S:play()
  5841. game:GetService("Debris"):AddItem(S, 10)
  5842. end))
  5843. end;
  5844. };
  5845.  
  5846. ["LongSound"] = {
  5847. Create = function(id, par, vol, pit)
  5848. coroutine.resume(coroutine.create(function()
  5849. local S = Create("Sound"){
  5850. Volume = vol,
  5851. Pitch = pit or 1,
  5852. SoundId = id,
  5853. Parent = par or workspace,
  5854. }
  5855. wait()
  5856. S:play()
  5857. game:GetService("Debris"):AddItem(S, 30)
  5858. end))
  5859. end;
  5860. };
  5861.  
  5862. ["ParticleEmitter"] = {
  5863. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  5864. local fp = Create("ParticleEmitter"){
  5865. Parent = Parent,
  5866. Color = ColorSequence.new(Color1, Color2),
  5867. LightEmission = LightEmission,
  5868. Size = Size,
  5869. Texture = Texture,
  5870. Transparency = Transparency,
  5871. ZOffset = ZOffset,
  5872. Acceleration = Accel,
  5873. Drag = Drag,
  5874. LockedToPart = LockedToPart,
  5875. VelocityInheritance = VelocityInheritance,
  5876. EmissionDirection = EmissionDirection,
  5877. Enabled = Enabled,
  5878. Lifetime = LifeTime,
  5879. Rate = Rate,
  5880. Rotation = Rotation,
  5881. RotSpeed = RotSpeed,
  5882. Speed = Speed,
  5883. VelocitySpread = VelocitySpread,
  5884. }
  5885. return fp
  5886. end;
  5887. };
  5888.  
  5889. CreateTemplate = {
  5890.  
  5891. };
  5892. }
  5893.  
  5894.  
  5895.  
  5896. New = function(Object, Parent, Name, Data)
  5897. local Object = Instance.new(Object)
  5898. for Index, Value in pairs(Data or {}) do
  5899. Object[Index] = Value
  5900. end
  5901. Object.Parent = Parent
  5902. Object.Name = Name
  5903. return Object
  5904. end
  5905. local m = Instance.new("Model",char)
  5906.  
  5907. function CreateParta(parent,transparency,reflectance,material,brickcolor)
  5908. local p = Instance.new("Part")
  5909. p.TopSurface = 0
  5910. p.BottomSurface = 0
  5911. p.Parent = parent
  5912. p.Size = Vector3.new(0.05,0.05,0.05)
  5913. p.Transparency = transparency
  5914. p.Reflectance = reflectance
  5915. p.CanCollide = false
  5916. p.Locked = true
  5917. p.BrickColor = brickcolor
  5918. p.Material = material
  5919. return p
  5920. end
  5921.  
  5922. function CreateMesh(parent,meshtype,x1,y1,z1)
  5923. local mesh = Instance.new("SpecialMesh",parent)
  5924. mesh.MeshType = meshtype
  5925. mesh.Scale = Vector3.new(x1*20,y1*20,z1*20)
  5926. return mesh
  5927. end
  5928.  
  5929. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  5930. local mesh = Instance.new("SpecialMesh",parent)
  5931. mesh.MeshType = "FileMesh"
  5932. mesh.MeshId = meshid
  5933. mesh.Scale = Vector3.new(x1,y1,z1)
  5934. return mesh
  5935. end
  5936.  
  5937.  
  5938. function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
  5939. local mesh = Instance.new("SpecialMesh",parent)
  5940. mesh.MeshType = "FileMesh"
  5941. mesh.MeshId = meshid
  5942. mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
  5943. mesh.Scale = Vector3.new(x1,y1,z1)
  5944. mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
  5945. return mesh
  5946. end
  5947.  
  5948. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  5949. local weld = Instance.new("Weld")
  5950. weld.Parent = parent
  5951. weld.Part0 = part0
  5952. weld.Part1 = part1
  5953. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  5954. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  5955. return weld
  5956. end
  5957.  
  5958.  
  5959.  
  5960.  
  5961. ---- WEAPON OR STUFF
  5962. local rarmor = CreateParta(m,1,0,"SmoothPlastic",BrickColor.Random())
  5963. 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))
  5964. 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))
  5965. local A0 = Instance.new("Attachment",rarmor)
  5966. A0.Position = Vector3.new(-2.5,0.25,0)
  5967. local A1 = Instance.new("Attachment",rarmor)
  5968. A1.Position = Vector3.new(-7.5,0.4,0)
  5969. tl1 = Instance.new('Trail',rarmor)
  5970. tl1.Attachment0 = A0
  5971. tl1.Attachment1 = A1
  5972. tl1.Texture = "http://www.roblox.com/asset/?id=1978704853"
  5973. tl1.LightEmission = 1
  5974. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  5975. tl1.Color = ColorSequence.new(BrickColor.new('Royal purple').Color)
  5976. tl1.Lifetime = 0.6
  5977. tl1.Enabled = false
  5978.  
  5979.  
  5980.  
  5981.  
  5982. --------------- WINGS
  5983. local mainpart = CreateParta(m,1,0,"SmoothPlastic",BrickColor.Random())
  5984. 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))
  5985.  
  5986. local wng1a = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  5987. CreateMesh(wng1a,"Wedge",0.1,4,4)
  5988. 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))
  5989. local wng2a = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  5990. CreateMesh(wng2a,"Wedge",0.1,4,4)
  5991. 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))
  5992. local wng1b = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  5993. CreateMesh(wng1b,"Wedge",0.1,1.5,3)
  5994. 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))
  5995. local wng2b = CreateParta(m,1,0,"Neon",BrickColor.new("Alder"))
  5996. CreateMesh(wng2b,"Wedge",0.1,1.5,3)
  5997. 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))
  5998. ------
  5999.  
  6000.  
  6001. function lerp(object, newCFrame, alpha)
  6002. return object:lerp(newCFrame, alpha)
  6003. end
  6004.  
  6005. function RemoveOutlines(part)
  6006. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  6007. end
  6008. function CreatePart(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  6009. local Part = Create("Part")({
  6010. Parent = Parent,
  6011. Reflectance = Reflectance,
  6012. Transparency = Transparency,
  6013. CanCollide = false,
  6014. Locked = true,
  6015. BrickColor = BrickColor.new(tostring(BColor)),
  6016. Name = Name,
  6017. Size = Size,
  6018. Material = Material
  6019. })
  6020. Part.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  6021. RemoveOutlines(Part)
  6022. return Part
  6023. end
  6024. function CreateMesh(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  6025. local Msh = Create(Mesh)({
  6026. Parent = Part,
  6027. Offset = OffSet,
  6028. Scale = Scale
  6029. })
  6030. if Mesh == "SpecialMesh" then
  6031. Msh.MeshType = MeshType
  6032. Msh.MeshId = MeshId
  6033. end
  6034. return Msh
  6035. end
  6036. function CreateWeld(Parent, Part0, Part1, C0, C1)
  6037. local Weld = Create("Weld")({
  6038. Parent = Parent,
  6039. Part0 = Part0,
  6040. Part1 = Part1,
  6041. C0 = C0,
  6042. C1 = C1
  6043. })
  6044. return Weld
  6045. end
  6046.  
  6047. Player=game:GetService("Players").LocalPlayer
  6048. Character=Player.Character
  6049. PlayerGui=Player.PlayerGui
  6050. Backpack=Player.Backpack
  6051. Torso=Character.Torso
  6052. Head=Character.Head
  6053. Humanoid=Character.Humanoid
  6054. m=Instance.new('Model',Character)
  6055. LeftArm=Character["Left Arm"]
  6056. LeftLeg=Character["Left Leg"]
  6057. RightArm=Character["Right Arm"]
  6058. RightLeg=Character["Right Leg"]
  6059. LS=Torso["Left Shoulder"]
  6060. LH=Torso["Left Hip"]
  6061. RS=Torso["Right Shoulder"]
  6062. RH=Torso["Right Hip"]
  6063. Face = Head.face
  6064. Neck=Torso.Neck
  6065. it=Instance.new
  6066. attacktype=1
  6067. vt=Vector3.new
  6068. cf=CFrame.new
  6069. euler=CFrame.fromEulerAnglesXYZ
  6070. angles=CFrame.Angles
  6071. cloaked=false
  6072. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  6073. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  6074. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  6075. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  6076. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  6077. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  6078. RootPart=Character.HumanoidRootPart
  6079. RootJoint=RootPart.RootJoint
  6080. RootCF=euler(-1.57,0,3.14)
  6081. attack = false
  6082. attackdebounce = false
  6083. deb=false
  6084. equipped=true
  6085. hand=false
  6086. MMouse=nil
  6087. combo=0
  6088. mana=0
  6089. trispeed=.2
  6090. attackmode='none'
  6091. local idle=0
  6092. local Anim="Idle"
  6093. local Effects={}
  6094. local gun=false
  6095. local shoot=false
  6096. local sine = 0
  6097. local change = 1
  6098. player=nil
  6099.  
  6100. mouse=Player:GetMouse()
  6101. --save shoulders
  6102. RSH, LSH=nil, nil
  6103. --welds
  6104. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  6105. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  6106. LH=Torso["Left Hip"]
  6107. RH=Torso["Right Hip"]
  6108. TorsoColor=Torso.BrickColor
  6109. function NoOutline(Part)
  6110. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  6111. end
  6112. player=Player
  6113. ch=Character
  6114. RSH=ch.Torso["Right Shoulder"]
  6115. LSH=ch.Torso["Left Shoulder"]
  6116. --
  6117. RSH.Parent=nil
  6118. LSH.Parent=nil
  6119. --
  6120. RW.Name="Right Shoulder"
  6121. RW.Part0=ch.Torso
  6122. RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  6123. RW.C1=cf(0, 0.5, 0)
  6124. RW.Part1=ch["Right Arm"]
  6125. RW.Parent=ch.Torso
  6126. --
  6127. LW.Name="Left Shoulder"
  6128. LW.Part0=ch.Torso
  6129. LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  6130. LW.C1=cf(0, 0.5, 0)
  6131. LW.Part1=ch["Left Arm"]
  6132. LW.Parent=ch.Torso
  6133.  
  6134. local Stats=Instance.new("BoolValue")
  6135. Stats.Name="Stats"
  6136. Stats.Parent=Character
  6137. local Atk=Instance.new("NumberValue")
  6138. Atk.Name="Damage"
  6139. Atk.Parent=Stats
  6140. Atk.Value=1
  6141. local Def=Instance.new("NumberValue")
  6142. Def.Name="Defense"
  6143. Def.Parent=Stats
  6144. Def.Value=1
  6145. local Speed=Instance.new("NumberValue")
  6146. Speed.Name="Speed"
  6147. Speed.Parent=Stats
  6148. Speed.Value=1
  6149. local Mvmt=Instance.new("NumberValue")
  6150. Mvmt.Name="Movement"
  6151. Mvmt.Parent=Stats
  6152. Mvmt.Value=1
  6153.  
  6154. local donum=0
  6155.  
  6156.  
  6157. function part(formfactor,parent,reflectance,transparency,brickcolor,name,size)
  6158. local fp=it("Part")
  6159. fp.formFactor=formfactor
  6160. fp.Parent=parent
  6161. fp.Reflectance=reflectance
  6162. fp.Transparency=transparency
  6163. fp.CanCollide=false
  6164. fp.Locked=true
  6165. fp.BrickColor=brickcolor
  6166. fp.Name=name
  6167. fp.Size=size
  6168. fp.Position=Torso.Position
  6169. NoOutline(fp)
  6170. fp.Material="SmoothPlastic"
  6171. fp:BreakJoints()
  6172. return fp
  6173. end
  6174.  
  6175. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  6176. local mesh=it(Mesh)
  6177. mesh.Parent=part
  6178. if Mesh=="SpecialMesh" then
  6179. mesh.MeshType=meshtype
  6180. if meshid~="nil" then
  6181. mesh.MeshId="http://www.roblox.com/asset/?id="..meshid
  6182. end
  6183. end
  6184. mesh.Offset=offset
  6185. mesh.Scale=scale
  6186. return mesh
  6187. end
  6188.  
  6189. function weld(parent,part0,part1,c0)
  6190. local weld=it("Weld")
  6191. weld.Parent=parent
  6192. weld.Part0=part0
  6193. weld.Part1=part1
  6194. weld.C0=c0
  6195. return weld
  6196. end
  6197.  
  6198. local Color1=Torso.BrickColor
  6199.  
  6200. local bodvel=Instance.new("BodyVelocity")
  6201. local bg=Instance.new("BodyGyro")
  6202.  
  6203. function swait(num)
  6204. if num==0 or num==nil then
  6205. game:service'RunService'.Stepped:wait(0)
  6206. else
  6207. for i=0,num do
  6208. game:service'RunService'.Stepped:wait(0)
  6209. end
  6210. end
  6211. end
  6212.  
  6213.  
  6214. so = function(id,par,vol,pit)
  6215. coroutine.resume(coroutine.create(function()
  6216. local sou = Instance.new("Sound",par or workspace)
  6217. sou.Volume=vol
  6218. sou.Pitch=pit or 1
  6219. sou.SoundId=id
  6220. swait()
  6221. sou:play()
  6222. game:GetService("Debris"):AddItem(sou,6)
  6223. end))
  6224. end
  6225.  
  6226. function clerp(a,b,t)
  6227. local qa = {QuaternionFromCFrame(a)}
  6228. local qb = {QuaternionFromCFrame(b)}
  6229. local ax, ay, az = a.x, a.y, a.z
  6230. local bx, by, bz = b.x, b.y, b.z
  6231. local _t = 1-t
  6232. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  6233. end
  6234.  
  6235. function QuaternionFromCFrame(cf)
  6236. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  6237. local trace = m00 + m11 + m22
  6238. if trace > 0 then
  6239. local s = math.sqrt(1 + trace)
  6240. local recip = 0.5/s
  6241. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  6242. else
  6243. local i = 0
  6244. if m11 > m00 then
  6245. i = 1
  6246. end
  6247. if m22 > (i == 0 and m00 or m11) then
  6248. i = 2
  6249. end
  6250. if i == 0 then
  6251. local s = math.sqrt(m00-m11-m22+1)
  6252. local recip = 0.5/s
  6253. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  6254. elseif i == 1 then
  6255. local s = math.sqrt(m11-m22-m00+1)
  6256. local recip = 0.5/s
  6257. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  6258. elseif i == 2 then
  6259. local s = math.sqrt(m22-m00-m11+1)
  6260. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  6261. end
  6262. end
  6263. end
  6264.  
  6265. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  6266. local xs, ys, zs = x + x, y + y, z + z
  6267. local wx, wy, wz = w*xs, w*ys, w*zs
  6268. local xx = x*xs
  6269. local xy = x*ys
  6270. local xz = x*zs
  6271. local yy = y*ys
  6272. local yz = y*zs
  6273. local zz = z*zs
  6274. 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))
  6275. end
  6276.  
  6277. function QuaternionSlerp(a, b, t)
  6278. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  6279. local startInterp, finishInterp;
  6280. if cosTheta >= 0.0001 then
  6281. if (1 - cosTheta) > 0.0001 then
  6282. local theta = math.acos(cosTheta)
  6283. local invSinTheta = 1/math.sin(theta)
  6284. startInterp = math.sin((1-t)*theta)*invSinTheta
  6285. finishInterp = math.sin(t*theta)*invSinTheta
  6286. else
  6287. startInterp = 1-t
  6288. finishInterp = t
  6289. end
  6290. else
  6291. if (1+cosTheta) > 0.0001 then
  6292. local theta = math.acos(-cosTheta)
  6293. local invSinTheta = 1/math.sin(theta)
  6294. startInterp = math.sin((t-1)*theta)*invSinTheta
  6295. finishInterp = math.sin(t*theta)*invSinTheta
  6296. else
  6297. startInterp = t-1
  6298. finishInterp = t
  6299. end
  6300. end
  6301. 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
  6302. end
  6303.  
  6304. local function CFrameFromTopBack(at, top, back)
  6305. local right = top:Cross(back)
  6306. return CFrame.new(at.x, at.y, at.z,
  6307. right.x, top.x, back.x,
  6308. right.y, top.y, back.y,
  6309. right.z, top.z, back.z)
  6310. end
  6311.  
  6312. function Triangle(a, b, c)
  6313. local edg1 = (c-a):Dot((b-a).unit)
  6314. local edg2 = (a-b):Dot((c-b).unit)
  6315. local edg3 = (b-c):Dot((a-c).unit)
  6316. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  6317. a, b, c = a, b, c
  6318. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  6319. a, b, c = b, c, a
  6320. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  6321. a, b, c = c, a, b
  6322. else
  6323. assert(false, "unreachable")
  6324. end
  6325.  
  6326. local len1 = (c-a):Dot((b-a).unit)
  6327. local len2 = (b-a).magnitude - len1
  6328. local width = (a + (b-a).unit*len1 - c).magnitude
  6329.  
  6330. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  6331.  
  6332. local list = {}
  6333.  
  6334. if len1 > 0.01 then
  6335. local w1 = Instance.new('WedgePart', m)
  6336. game:GetService("Debris"):AddItem(w1,5)
  6337. w1.Material = "SmoothPlastic"
  6338. w1.FormFactor = 'Custom'
  6339. w1.BrickColor = BrickColor.new("Really red")
  6340. w1.Transparency = 0
  6341. w1.Reflectance = 0
  6342. w1.Material = "SmoothPlastic"
  6343. w1.CanCollide = false
  6344. local l1 = Instance.new("PointLight",w1)
  6345. l1.Color = Color3.new(170,0,0)
  6346. NoOutline(w1)
  6347. local sz = Vector3.new(0.2, width, len1)
  6348. w1.Size = sz
  6349. local sp = Instance.new("SpecialMesh",w1)
  6350. sp.MeshType = "Wedge"
  6351. sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
  6352. w1:BreakJoints()
  6353. w1.Anchored = true
  6354. w1.Parent = workspace
  6355. w1.Transparency = 0.7
  6356. table.insert(Effects,{w1,"Disappear",.01})
  6357. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  6358. table.insert(list,w1)
  6359. end
  6360.  
  6361. if len2 > 0.01 then
  6362. local w2 = Instance.new('WedgePart', m)
  6363. game:GetService("Debris"):AddItem(w2,5)
  6364. w2.Material = "SmoothPlastic"
  6365. w2.FormFactor = 'Custom'
  6366. w2.BrickColor = BrickColor.new("Really red")
  6367. w2.Transparency = 0
  6368. w2.Reflectance = 0
  6369. w2.Material = "SmoothPlastic"
  6370. w2.CanCollide = false
  6371. local l2 = Instance.new("PointLight",w2)
  6372. l2.Color = Color3.new(170,0,0)
  6373. NoOutline(w2)
  6374. local sz = Vector3.new(0.2, width, len2)
  6375. w2.Size = sz
  6376. local sp = Instance.new("SpecialMesh",w2)
  6377. sp.MeshType = "Wedge"
  6378. sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
  6379. w2:BreakJoints()
  6380. w2.Anchored = true
  6381. w2.Parent = workspace
  6382. w2.Transparency = 0.7
  6383. table.insert(Effects,{w2,"Disappear",.01})
  6384. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  6385. table.insert(list,w2)
  6386. end
  6387. return unpack(list)
  6388. end
  6389.  
  6390.  
  6391. function Damagefunc(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  6392. if hit.Parent == nil then
  6393. return
  6394. end
  6395. local h = hit.Parent:FindFirstChildOfClass("Humanoid")
  6396. for _, v in pairs(hit.Parent:children()) do
  6397. if v:IsA("Humanoid") then
  6398. h = v
  6399. h.MaxHealth = 100
  6400. end
  6401. end
  6402. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil or h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("UpperTorso") ~= nil then
  6403. if hit.Parent:findFirstChild("DebounceHit") ~= nil and hit.Parent.DebounceHit.Value == true then
  6404. return
  6405. end
  6406. local c = Create("ObjectValue")({
  6407. Name = "creator",
  6408. Value = game:service("Players").LocalPlayer,
  6409. Parent = h
  6410. })
  6411. game:GetService("Debris"):AddItem(c, 0.5)
  6412. if HitSound ~= nil and HitPitch ~= nil then
  6413. CFuncs.Sound.Create(HitSound, hit, 1, HitPitch)
  6414. end
  6415. local Damage = math.random(minim, maxim)
  6416. local blocked = false
  6417. local block = hit.Parent:findFirstChild("Block")
  6418. if block ~= nil and block.className == "IntValue" and block.Value > 0 then
  6419. blocked = true
  6420. block.Value = block.Value - 1
  6421. print(block.Value)
  6422. end
  6423. if blocked == false then
  6424. HitHealth = h.Health
  6425. h.MaxHealth = 100
  6426. h.Health = h.Health - Damage
  6427. if HitHealth ~= h.Health and HitHealth ~= 0 and 0 >= h.Health and h.Parent.Name ~= "Hologram" then
  6428. print("gained kill")
  6429. dmg(h.Parent)
  6430. end
  6431. ShowDamage(Part.CFrame * CFrame.new(0, 0, Part.Size.Z / 2).p + Vector3.new(0, 1.5, 0), -Damage, 1.5, Part.BrickColor.Color)
  6432. else
  6433. h.Health = h.Health - Damage / 2
  6434. ShowDamage(Part.CFrame * CFrame.new(0, 0, Part.Size.Z / 2).p + Vector3.new(0, 1.5, 0), -Damage, 1.5, Part.BrickColor.Color)
  6435. end
  6436. if Type == "Knockdown" then
  6437. local hum = hit.Parent.Humanoid
  6438. hum.PlatformStand = true
  6439. coroutine.resume(coroutine.create(function(HHumanoid)
  6440. swait(1)
  6441. HHumanoid.PlatformStand = false
  6442. end), hum)
  6443. local angle = hit.Position - (Property.Position + Vector3.new(0, 0, 0)).unit
  6444. local bodvol = Create("BodyVelocity")({
  6445. velocity = angle * knockback,
  6446. P = 5000,
  6447. maxForce = Vector3.new(8000, 8000, 8000),
  6448. Parent = hit
  6449. })
  6450. local rl = Create("BodyAngularVelocity")({
  6451. P = 3000,
  6452. maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000,
  6453. angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)),
  6454. Parent = hit
  6455. })
  6456. game:GetService("Debris"):AddItem(bodvol, 0.5)
  6457. game:GetService("Debris"):AddItem(rl, 0.5)
  6458. elseif Type == "Normal" then
  6459. local vp = Create("BodyVelocity")({
  6460. P = 500,
  6461. maxForce = Vector3.new(math.huge, 0, math.huge),
  6462. velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05
  6463. })
  6464. if knockback > 0 then
  6465. vp.Parent = hit.Parent.Torso
  6466. end
  6467. game:GetService("Debris"):AddItem(vp, 0.5)
  6468. elseif Type == "Up" then
  6469. local bodyVelocity = Create("BodyVelocity")({
  6470. velocity = Vector3.new(0, 20, 0),
  6471. P = 5000,
  6472. maxForce = Vector3.new(8000, 8000, 8000),
  6473. Parent = hit
  6474. })
  6475. game:GetService("Debris"):AddItem(bodyVelocity, 0.5)
  6476. local bodyVelocity = Create("BodyVelocity")({
  6477. velocity = Vector3.new(0, 20, 0),
  6478. P = 5000,
  6479. maxForce = Vector3.new(8000, 8000, 8000),
  6480. Parent = hit
  6481. })
  6482. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  6483. elseif Type == "Leech" then
  6484. local hum = hit.Parent.Humanoid
  6485. if hum ~= nil then
  6486. for i = 0, 2 do
  6487. Effects.Sphere.Create(BrickColor.new("Bright red"), hit.Parent.Torso.CFrame * cn(0, 0, 0) * angles(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 15, 1, 0, 5, 0, 0.02)
  6488. end
  6489. Humanoid.Health = Humanoid.Health + 10
  6490. end
  6491. elseif Type == "UpKnock" then
  6492. local hum = hit.Parent.Humanoid
  6493. hum.PlatformStand = true
  6494. if hum ~= nil then
  6495. hitr = true
  6496. end
  6497. coroutine.resume(coroutine.create(function(HHumanoid)
  6498. swait(5)
  6499. HHumanoid.PlatformStand = false
  6500. hitr = false
  6501. end), hum)
  6502. local bodyVelocity = Create("BodyVelocity")({
  6503. velocity = Vector3.new(0, 20, 0),
  6504. P = 5000,
  6505. maxForce = Vector3.new(8000, 8000, 8000),
  6506. Parent = hit
  6507. })
  6508. game:GetService("Debris"):AddItem(bodyVelocity, 0.5)
  6509. local bodyVelocity = Create("BodyVelocity")({
  6510. velocity = Vector3.new(0, 20, 0),
  6511. P = 5000,
  6512. maxForce = Vector3.new(8000, 8000, 8000),
  6513. Parent = hit
  6514. })
  6515. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  6516. elseif Type == "Snare" then
  6517. local bp = Create("BodyPosition")({
  6518. P = 2000,
  6519. D = 100,
  6520. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  6521. position = hit.Parent.Torso.Position,
  6522. Parent = hit.Parent.Torso
  6523. })
  6524. game:GetService("Debris"):AddItem(bp, 1)
  6525. elseif Type == "Slashnare" then
  6526. Effects.Block.Create(BrickColor.new("Pastel Blue"), hit.Parent.Torso.CFrame * cn(0, 0, 0), 15*4, 15*4, 15*4, 3*4, 3*4, 3*4, 0.07)
  6527. for i = 1, math.random(4, 5) do
  6528. Effects.Sphere.Create(BrickColor.new("Teal"), hit.Parent.Torso.CFrame * cn(math.random(-5, 5), math.random(-5, 5), math.random(-5, 5)) * angles(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)), 1, 15, 1, 0, 5, 0, 0.02)
  6529. end
  6530. local bp = Create("BodyPosition")({
  6531. P = 2000,
  6532. D = 100,
  6533. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  6534. position = hit.Parent.Torso.Position,
  6535. Parent = hit.Parent.Torso
  6536. })
  6537. game:GetService("Debris"):AddItem(bp, 1)
  6538. elseif Type == "Spike" then
  6539. CreateBigIceSword(hit.Parent.Torso.CFrame)
  6540. local bp = Create("BodyPosition")({
  6541. P = 2000,
  6542. D = 100,
  6543. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  6544. position = hit.Parent.Torso.Position,
  6545. Parent = hit.Parent.Torso
  6546. })
  6547. game:GetService("Debris"):AddItem(bp, 1)
  6548. elseif Type == "Freeze" then
  6549. local BodPos = Create("BodyPosition")({
  6550. P = 50000,
  6551. D = 1000,
  6552. maxForce = Vector3.new(math.huge, math.huge, math.huge),
  6553. position = hit.Parent.Torso.Position,
  6554. Parent = hit.Parent.Torso
  6555. })
  6556. local BodGy = Create("BodyGyro")({
  6557. maxTorque = Vector3.new(400000, 400000, 400000) * math.huge,
  6558. P = 20000,
  6559. Parent = hit.Parent.Torso,
  6560. cframe = hit.Parent.Torso.CFrame
  6561. })
  6562. hit.Parent.Torso.Anchored = true
  6563. coroutine.resume(coroutine.create(function(Part)
  6564. swait(1.5)
  6565. Part.Anchored = false
  6566. end), hit.Parent.Torso)
  6567. game:GetService("Debris"):AddItem(BodPos, 3)
  6568. game:GetService("Debris"):AddItem(BodGy, 3)
  6569. end
  6570. local debounce = Create("BoolValue")({
  6571. Name = "DebounceHit",
  6572. Parent = hit.Parent,
  6573. Value = true
  6574. })
  6575. game:GetService("Debris"):AddItem(debounce, Delay)
  6576. c = Instance.new("ObjectValue")
  6577. c.Name = "creator"
  6578. c.Value = Player
  6579. c.Parent = h
  6580. game:GetService("Debris"):AddItem(c, 0.5)
  6581. end
  6582. end
  6583. function ShowDamage(Pos, Text, Time, Color)
  6584. local Rate = 0.1
  6585. local Pos = Pos or Vector3.new(0, 0, 0)
  6586. local Text = Text or ""
  6587. local Time = Time or 2
  6588. local Color = Color or Color3.new(1, 0, 1)
  6589. local EffectPart = CreatePart(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  6590. EffectPart.Anchored = true
  6591. local BillboardGui = Create("BillboardGui")({
  6592. Size = UDim2.new(3, 0, 3, 0),
  6593. Adornee = EffectPart,
  6594. Parent = EffectPart
  6595. })
  6596. local TextLabel = Create("TextLabel")({
  6597. BackgroundTransparency = 1,
  6598. Size = UDim2.new(1, 0, 1, 0),
  6599. Text = Text,
  6600. TextColor3 = Color3.new(1,1,1),
  6601. TextStrokeColor3 = Color3.new(0,0,0),
  6602. TextStrokeTransparency = 0.25,
  6603. TextScaled = true,
  6604. Font = Enum.Font.Fantasy,
  6605. TextSize = 24,
  6606. Parent = BillboardGui
  6607. })
  6608. game.Debris:AddItem(EffectPart, Time + 0.1)
  6609. EffectPart.Parent = game:GetService("Workspace")
  6610. delay(0, function()
  6611. local Frames = Time / Rate
  6612. for Frame = 1, Frames do
  6613. swait(Rate)
  6614. local Percent = Frame / Frames
  6615. TextLabel.Text = Text
  6616. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent*2, 0)
  6617. end
  6618. for Frame = 1, Frames do
  6619. swait(Rate)
  6620. local Percent = Frame / Frames
  6621. TextLabel.Text = Text
  6622. end
  6623. for Frame = 1, Frames do
  6624. swait(Rate)
  6625. local Percent = Frame / Frames
  6626. TextLabel.TextTransparency = Percent
  6627. TextLabel.Text = Text
  6628. TextLabel.TextStrokeTransparency = Percent
  6629. end
  6630. if EffectPart and EffectPart.Parent then
  6631. EffectPart:Destroy()
  6632. end
  6633. end)
  6634. end
  6635. function MagniDamage(Part, magni, mindam, maxdam, knock, Type,Sound)
  6636. for _, c in pairs(workspace:children()) do
  6637. local hum = c:findFirstChildOfClass("Humanoid")
  6638. if hum ~= nil then
  6639. local head = c:findFirstChild("Torso")
  6640. if head ~= nil then
  6641. local targ = head.Position - Part.Position
  6642. local mag = targ.magnitude
  6643. if magni >= mag and c.Name ~= Player.Name then
  6644. Damagefunc(head, head, mindam, maxdam, knock, Type, RootPart, 0.1, "rbxassetid://" ..Sound, 1)
  6645. end
  6646. end
  6647. local head = c:findFirstChild("UpperTorso")
  6648. if head ~= nil then
  6649. local targ = head.Position - Part.Position
  6650. local mag = targ.magnitude
  6651. if magni >= mag and c.Name ~= Player.Name then
  6652. Damagefunc(head, head, mindam, maxdam, knock, Type, RootPart, 0.1, "rbxassetid://" ..Sound, 1)
  6653. end
  6654. end
  6655. end
  6656. end
  6657. end
  6658.  
  6659.  
  6660. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  6661. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  6662. end
  6663. ----
  6664.  
  6665. function dmg(dude)
  6666. if dude.Name ~= Character then
  6667. local bgf = Instance.new("BodyGyro",dude.Head)
  6668. bgf.CFrame = bgf.CFrame * CFrame.fromEulerAnglesXYZ(math.rad(-90),0,0)
  6669. --[[local val = Instance.new("BoolValue",dude)
  6670. val.Name = "IsHit"]]--
  6671. local ds = coroutine.wrap(function()
  6672. dude:WaitForChild("Head"):BreakJoints()
  6673. for i, v in pairs(dude:GetChildren()) do
  6674. if v:IsA("Part") or v:IsA("MeshPart") then
  6675. v.Name = "DEMINISHED"
  6676. CFuncs["Sound"].Create("rbxassetid://763718160", v, 0.75, 1.1)
  6677. CFuncs["Sound"].Create("rbxassetid://782353443", v, 1, 1)
  6678. for i = 0, 1 do
  6679. 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)
  6680. end
  6681. end
  6682. end
  6683. wait(0.5)
  6684. targetted = nil
  6685. CFuncs["Sound"].Create("rbxassetid://62339698", char, 0.25, 0.285)
  6686. coroutine.resume(coroutine.create(function()
  6687. for i, v in pairs(dude:GetChildren()) do
  6688. if v:IsA("Accessory") then
  6689. v:Destroy()
  6690. end
  6691. if v:IsA("Humanoid") then
  6692. v:Destroy()
  6693. end
  6694. if v:IsA("CharacterMesh") then
  6695. v:Destroy()
  6696. end
  6697. if v:IsA("Model") then
  6698. v:Destroy()
  6699. end
  6700. if v:IsA("Part") or v:IsA("MeshPart") then
  6701. for x, o in pairs(v:GetChildren()) do
  6702. if o:IsA("Decal") then
  6703. o:Destroy()
  6704. end
  6705. end
  6706. coroutine.resume(coroutine.create(function()
  6707. v.Material = "Neon"
  6708. v.CanCollide = false
  6709. v.Anchored = false
  6710. local bld = Instance.new("ParticleEmitter",v)
  6711. bld.LightEmission = 1
  6712. bld.Texture = "rbxassetid://363275192" ---284205403
  6713. bld.Color = ColorSequence.new(BrickColor.new("Royal purple").Color)
  6714. bld.Rate = 500
  6715. bld.Lifetime = NumberRange.new(1)
  6716. bld.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,2,0),NumberSequenceKeypoint.new(0.8,2.25,0),NumberSequenceKeypoint.new(1,0,0)})
  6717. bld.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0.5,0),NumberSequenceKeypoint.new(0.8,0.75,0),NumberSequenceKeypoint.new(1,1,0)})
  6718. bld.Speed = NumberRange.new(2,5)
  6719. bld.VelocitySpread = 50000
  6720. bld.Rotation = NumberRange.new(-500,500)
  6721. bld.RotSpeed = NumberRange.new(-500,500)
  6722. local sbs = Instance.new("BodyPosition", v)
  6723. sbs.P = 3000
  6724. sbs.D = 1000
  6725. sbs.maxForce = Vector3.new(50000000000, 50000000000, 50000000000)
  6726. sbs.position = v.Position + Vector3.new(math.random(-2,2),10 + math.random(-2,2),math.random(-2,2))
  6727. v.Color = BrickColor.new("Royal purple").Color
  6728. coroutine.resume(coroutine.create(function()
  6729. for i = 0, 49 do
  6730. swait(1)
  6731. v:BreakJoints()
  6732. v.Transparency = v.Transparency + 0.02
  6733. end
  6734. v:BreakJoints()
  6735. for i = 0, 4 do
  6736. 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"))
  6737. end
  6738. block(1,"Add",v.CFrame,vt(0,0,0),0.1,0.1,0.1,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  6739. CFuncs["Sound"].Create("rbxassetid://782353117", v, 0.25, 1.2)
  6740. CFuncs["Sound"].Create("rbxassetid://1192402877", v, 0.5, 0.75)
  6741. bld.Speed = NumberRange.new(10,25)
  6742. bld.Drag = 5
  6743. bld.Acceleration = vt(0,2,0)
  6744. wait(0.5)
  6745. bld.Enabled = false
  6746. wait(4)
  6747. coroutine.resume(coroutine.create(function()
  6748. for i = 0, 99 do
  6749. swait()
  6750. v:Destroy()
  6751. dude:Destroy()
  6752. end
  6753. end))
  6754. end))
  6755. end))
  6756. end
  6757. end
  6758. end))
  6759. end)
  6760. ds()
  6761. end
  6762. end
  6763.  
  6764. function sphere(bonuspeed,type,pos,scale,value,color)
  6765. local type = type
  6766. local rng = Instance.new("Part", char)
  6767. rng.Anchored = true
  6768. rng.BrickColor = color
  6769. rng.CanCollide = false
  6770. rng.FormFactor = 3
  6771. rng.Name = "Ring"
  6772. rng.Material = "Neon"
  6773. rng.Size = Vector3.new(1, 1, 1)
  6774. rng.Transparency = 0
  6775. rng.TopSurface = 0
  6776. rng.BottomSurface = 0
  6777. rng.CFrame = pos
  6778. local rngm = Instance.new("SpecialMesh", rng)
  6779. rngm.MeshType = "Sphere"
  6780. rngm.Scale = scale
  6781. if rainbowmode == true then
  6782. rng.Color = Color3.new(r/255,g/255,b/255)
  6783. end
  6784. local scaler2 = 1
  6785. if type == "Add" then
  6786. scaler2 = 1*value
  6787. elseif type == "Divide" then
  6788. scaler2 = 1/value
  6789. end
  6790. coroutine.resume(coroutine.create(function()
  6791. for i = 0,10/bonuspeed,0.1 do
  6792. swait()
  6793. if rainbowmode == true then
  6794. rng.Color = Color3.new(r/255,g/255,b/255)
  6795. end
  6796. if type == "Add" then
  6797. scaler2 = scaler2 - 0.01*value/bonuspeed
  6798. elseif type == "Divide" then
  6799. scaler2 = scaler2 - 0.01/value*bonuspeed
  6800. end
  6801. if chaosmode == true then
  6802. rng.BrickColor = BrickColor.random()
  6803. end
  6804. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  6805. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2*bonuspeed, scaler2*bonuspeed)
  6806. end
  6807. rng:Destroy()
  6808. end))
  6809. end
  6810.  
  6811. function sphere2(bonuspeed,type,pos,scale,value,value2,value3,color,color3)
  6812. local type = type
  6813. local rng = Instance.new("Part", char)
  6814. rng.Anchored = true
  6815. rng.BrickColor = color
  6816. rng.Color = color3
  6817. rng.CanCollide = false
  6818. rng.FormFactor = 3
  6819. rng.Name = "Ring"
  6820. rng.Material = "Neon"
  6821. rng.Size = Vector3.new(1, 1, 1)
  6822. rng.Transparency = 0
  6823. rng.TopSurface = 0
  6824. rng.BottomSurface = 0
  6825. rng.CFrame = pos
  6826. local rngm = Instance.new("SpecialMesh", rng)
  6827. rngm.MeshType = "Sphere"
  6828. rngm.Scale = scale
  6829. local scaler2 = 1
  6830. local scaler2b = 1
  6831. local scaler2c = 1
  6832. if type == "Add" then
  6833. scaler2 = 1*value
  6834. scaler2b = 1*value2
  6835. scaler2c = 1*value3
  6836. elseif type == "Divide" then
  6837. scaler2 = 1/value
  6838. scaler2b = 1/value2
  6839. scaler2c = 1/value3
  6840. end
  6841. coroutine.resume(coroutine.create(function()
  6842. for i = 0,10/bonuspeed,0.1 do
  6843. swait()
  6844. if type == "Add" then
  6845. scaler2 = scaler2 - 0.01*value/bonuspeed
  6846. scaler2b = scaler2b - 0.01*value/bonuspeed
  6847. scaler2c = scaler2c - 0.01*value/bonuspeed
  6848. elseif type == "Divide" then
  6849. scaler2 = scaler2 - 0.01/value*bonuspeed
  6850. scaler2b = scaler2b - 0.01/value*bonuspeed
  6851. scaler2c = scaler2c - 0.01/value*bonuspeed
  6852. end
  6853. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  6854. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2c*bonuspeed)
  6855. end
  6856. rng:Destroy()
  6857. end))
  6858. end
  6859.  
  6860. function block(bonuspeed,type,pos,scale,value,value2,value3,color,color3)
  6861. local type = type
  6862. local rng = Instance.new("Part", char)
  6863. rng.Anchored = true
  6864. rng.BrickColor = color
  6865. rng.Color = color3
  6866. rng.CanCollide = false
  6867. rng.FormFactor = 3
  6868. rng.Name = "Ring"
  6869. rng.Material = "Neon"
  6870. rng.Size = Vector3.new(1, 1, 1)
  6871. rng.Transparency = 0
  6872. rng.TopSurface = 0
  6873. rng.BottomSurface = 0
  6874. rng.CFrame = pos
  6875. local rngm = Instance.new("SpecialMesh", rng)
  6876. rngm.MeshType = "Brick"
  6877. rngm.Scale = scale
  6878. local scaler2 = 1
  6879. local scaler2b = 1
  6880. local scaler2c = 1
  6881. if type == "Add" then
  6882. scaler2 = 1*value
  6883. scaler2b = 1*value2
  6884. scaler2c = 1*value3
  6885. elseif type == "Divide" then
  6886. scaler2 = 1/value
  6887. scaler2b = 1/value2
  6888. scaler2c = 1/value3
  6889. end
  6890. coroutine.resume(coroutine.create(function()
  6891. for i = 0,10/bonuspeed,0.1 do
  6892. swait()
  6893. if type == "Add" then
  6894. scaler2 = scaler2 - 0.01*value/bonuspeed
  6895. scaler2b = scaler2b - 0.01*value/bonuspeed
  6896. scaler2c = scaler2c - 0.01*value/bonuspeed
  6897. elseif type == "Divide" then
  6898. scaler2 = scaler2 - 0.01/value*bonuspeed
  6899. scaler2b = scaler2b - 0.01/value*bonuspeed
  6900. scaler2c = scaler2c - 0.01/value*bonuspeed
  6901. end
  6902. rng.CFrame = rng.CFrame*CFrame.Angles(math.rad(math.random(-360,360)),math.rad(math.random(-360,360)),math.rad(math.random(-360,360)))
  6903. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  6904. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2c*bonuspeed)
  6905. end
  6906. rng:Destroy()
  6907. end))
  6908. end
  6909.  
  6910. function sphereMK(bonuspeed,FastSpeed,type,pos,x1,y1,z1,value,color,color3,outerpos)
  6911. local type = type
  6912. local rng = Instance.new("Part", char)
  6913. rng.Anchored = true
  6914. rng.BrickColor = color
  6915. rng.Color = color3
  6916. rng.CanCollide = false
  6917. rng.FormFactor = 3
  6918. rng.Name = "Ring"
  6919. rng.Material = "Neon"
  6920. rng.Size = Vector3.new(1, 1, 1)
  6921. rng.Transparency = 0
  6922. rng.TopSurface = 0
  6923. rng.BottomSurface = 0
  6924. rng.CFrame = pos
  6925. rng.CFrame = rng.CFrame + rng.CFrame.lookVector*outerpos
  6926. local rngm = Instance.new("SpecialMesh", rng)
  6927. rngm.MeshType = "Sphere"
  6928. rngm.Scale = vt(x1,y1,z1)
  6929. if rainbowmode == true then
  6930. rng.Color = Color3.new(r/255,g/255,b/255)
  6931. end
  6932. local scaler2 = 1
  6933. local speeder = FastSpeed
  6934. if type == "Add" then
  6935. scaler2 = 1*value
  6936. elseif type == "Divide" then
  6937. scaler2 = 1/value
  6938. end
  6939. coroutine.resume(coroutine.create(function()
  6940. for i = 0,10/bonuspeed,0.1 do
  6941. swait()
  6942. if rainbowmode == true then
  6943. rng.Color = Color3.new(r/255,g/255,b/255)
  6944. end
  6945. if type == "Add" then
  6946. scaler2 = scaler2 - 0.01*value/bonuspeed
  6947. elseif type == "Divide" then
  6948. scaler2 = scaler2 - 0.01/value*bonuspeed
  6949. end
  6950. if chaosmode == true then
  6951. rng.BrickColor = BrickColor.random()
  6952. end
  6953. speeder = speeder - 0.01*FastSpeed*bonuspeed
  6954. rng.CFrame = rng.CFrame + rng.CFrame.lookVector*speeder*bonuspeed
  6955. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  6956. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2*bonuspeed, 0)
  6957. end
  6958. rng:Destroy()
  6959. end))
  6960. end
  6961.  
  6962. function waveEff(bonuspeed,type,typeoftrans,pos,scale,value,value2,color)
  6963. local type = type
  6964. local rng = Instance.new("Part", char)
  6965. rng.Anchored = true
  6966. rng.BrickColor = color
  6967. rng.CanCollide = false
  6968. rng.FormFactor = 3
  6969. rng.Name = "Ring"
  6970. rng.Material = "Neon"
  6971. rng.Size = Vector3.new(1, 1, 1)
  6972. rng.Transparency = 0
  6973. if typeoftrans == "In" then
  6974. rng.Transparency = 1
  6975. end
  6976. rng.TopSurface = 0
  6977. rng.BottomSurface = 0
  6978. rng.CFrame = pos
  6979. local rngm = Instance.new("SpecialMesh", rng)
  6980. rngm.MeshType = "FileMesh"
  6981. rngm.MeshId = "rbxassetid://20329976"
  6982. rngm.Scale = scale
  6983. local scaler2 = 1
  6984. local scaler2b = 1
  6985. if type == "Add" then
  6986. scaler2 = 1*value
  6987. scaler2b = 1*value2
  6988. elseif type == "Divide" then
  6989. scaler2 = 1/value
  6990. scaler2b = 1/value2
  6991. end
  6992. local randomrot = math.random(1,2)
  6993. coroutine.resume(coroutine.create(function()
  6994. for i = 0,10/bonuspeed,0.1 do
  6995. swait()
  6996. if type == "Add" then
  6997. scaler2 = scaler2 - 0.01*value/bonuspeed
  6998. scaler2b = scaler2b - 0.01*value/bonuspeed
  6999. elseif type == "Divide" then
  7000. scaler2 = scaler2 - 0.01/value*bonuspeed
  7001. scaler2b = scaler2b - 0.01/value*bonuspeed
  7002. end
  7003. if randomrot == 1 then
  7004. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(5*bonuspeed/2),0)
  7005. elseif randomrot == 2 then
  7006. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(-5*bonuspeed/2),0)
  7007. end
  7008. if typeoftrans == "Out" then
  7009. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7010. elseif typeoftrans == "In" then
  7011. rng.Transparency = rng.Transparency - 0.01*bonuspeed
  7012. end
  7013. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed, scaler2b*bonuspeed, scaler2*bonuspeed)
  7014. end
  7015. rng:Destroy()
  7016. end))
  7017. end
  7018.  
  7019. function slash(bonuspeed,rotspeed,rotatingop,typeofshape,type,typeoftrans,pos,scale,value,color)
  7020. local type = type
  7021. local rotenable = rotatingop
  7022. local rng = Instance.new("Part", char)
  7023. rng.Anchored = true
  7024. rng.BrickColor = color
  7025. rng.CanCollide = false
  7026. rng.FormFactor = 3
  7027. rng.Name = "Ring"
  7028. rng.Material = "Neon"
  7029. rng.Size = Vector3.new(1, 1, 1)
  7030. rng.Transparency = 0
  7031. if typeoftrans == "In" then
  7032. rng.Transparency = 1
  7033. end
  7034. rng.TopSurface = 0
  7035. rng.BottomSurface = 0
  7036. rng.CFrame = pos
  7037. local rngm = Instance.new("SpecialMesh", rng)
  7038. rngm.MeshType = "FileMesh"
  7039. if typeofshape == "Normal" then
  7040. rngm.MeshId = "rbxassetid://662586858"
  7041. elseif typeofshape == "Round" then
  7042. rngm.MeshId = "rbxassetid://662585058"
  7043. end
  7044. rngm.Scale = scale
  7045. local scaler2 = 1/10
  7046. if type == "Add" then
  7047. scaler2 = 1*value/10
  7048. elseif type == "Divide" then
  7049. scaler2 = 1/value/10
  7050. end
  7051. local randomrot = math.random(1,2)
  7052. coroutine.resume(coroutine.create(function()
  7053. for i = 0,10/bonuspeed,0.1 do
  7054. swait()
  7055. if type == "Add" then
  7056. scaler2 = scaler2 - 0.01*value/bonuspeed/10
  7057. elseif type == "Divide" then
  7058. scaler2 = scaler2 - 0.01/value*bonuspeed/10
  7059. end
  7060. if rotenable == true then
  7061. if randomrot == 1 then
  7062. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(rotspeed*bonuspeed/2),0)
  7063. elseif randomrot == 2 then
  7064. rng.CFrame = rng.CFrame*CFrame.Angles(0,math.rad(-rotspeed*bonuspeed/2),0)
  7065. end
  7066. end
  7067. if typeoftrans == "Out" then
  7068. rng.Transparency = rng.Transparency + 0.01*bonuspeed
  7069. elseif typeoftrans == "In" then
  7070. rng.Transparency = rng.Transparency - 0.01*bonuspeed
  7071. end
  7072. rngm.Scale = rngm.Scale + Vector3.new(scaler2*bonuspeed/10, 0, scaler2*bonuspeed/10)
  7073. end
  7074. rng:Destroy()
  7075. end))
  7076. end
  7077.  
  7078. function FindNearestTorso(Position, Distance, SinglePlayer)
  7079. if SinglePlayer then
  7080. return (SinglePlayer.Torso.CFrame.p - Position).magnitude < Distance
  7081. end
  7082. local List = {}
  7083. for i, v in pairs(workspace:GetChildren()) do
  7084. if v:IsA("Model") then
  7085. if v:findFirstChild("Torso") or v:findFirstChild("UpperTorso") then
  7086. if v ~= Character then
  7087. if (v.Head.Position - Position).magnitude <= Distance then
  7088. table.insert(List, v)
  7089. end
  7090. end
  7091. end
  7092. end
  7093. end
  7094. return List
  7095. end
  7096.  
  7097.  
  7098. local dashing = false
  7099. local floatmode = false
  7100. local OWS = hum.WalkSpeed
  7101. local equipped = false
  7102. Humanoid.Name = "NEPTUNIA"
  7103. Humanoid.MaxHealth = math.huge
  7104. Humanoid.Health = math.huge
  7105. Instance.new("ForceField",char).Visible = false
  7106. Humanoid.Animator.Parent = nil
  7107. ------------------
  7108. function equip()
  7109. attack = true
  7110. equipped = true
  7111. hum.WalkSpeed = 0
  7112. tl1.Enabled = true
  7113. for i = 0, 9 do
  7114. 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"))
  7115. end
  7116. CFuncs["Sound"].Create("rbxassetid://1368637781", rarmor, 2.5, 1.25)
  7117. CFuncs["Sound"].Create("rbxassetid://200633077", rarmor, 1, 1)
  7118. CFuncs["Sound"].Create("rbxassetid://169380495", rarmor, 0.5, 1.1)
  7119. sphere2(5,"Add",root.CFrame,vt(5,5,5),0.25,0.25,0.25,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7120. sphere2(6,"Add",root.CFrame,vt(5,5,5),0.25,0.25,0.25,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7121. for i = 0, 2, 0.1 do
  7122. swait()
  7123. hum.CameraOffset = vt(math.random(-5,5)/50,math.random(-5,5)/50,math.random(-5,5)/50)
  7124. 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)
  7125. 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"))
  7126. 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"))
  7127. 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)
  7128. 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)
  7129. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-10)),.3)
  7130. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-20)),.3)
  7131. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-20),math.rad(-30),math.rad(130)),.3)
  7132. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(-13),math.rad(10),math.rad(-10)),.3)
  7133. end
  7134. hum.CameraOffset = vt(0,0,0)
  7135. weaponweld.Part0 = rarm
  7136. for i = 0, 2, 0.1 do
  7137. swait()
  7138. 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)
  7139. 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)
  7140. 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)
  7141. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(40)),.3)
  7142. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-40)),.3)
  7143. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7144. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7145. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7146. end
  7147. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7148. hitb.Anchored = true
  7149. hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7150. MagniDamage(hitb, 4, 40,73, 0, "Normal",153092213)
  7151. 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"))
  7152. CFuncs["Sound"].Create("rbxassetid://200633196", rarmor, 1, 1.05)
  7153. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1.5, 1.025)
  7154. CFuncs["Sound"].Create("rbxassetid://234365549", rarmor, 1, 1)
  7155. for i = 0, 2, 0.1 do
  7156. swait()
  7157. 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)
  7158. 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)
  7159. 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)
  7160. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
  7161. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(50)),.3)
  7162. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(70)),.3)
  7163. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7164. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7165. end
  7166. hitb:Destroy()
  7167. hum.WalkSpeed = 24
  7168. OWS = hum.WalkSpeed
  7169. attack = false
  7170. end
  7171.  
  7172. function unequip()
  7173. attack = true
  7174. equipped = false
  7175. hum.WalkSpeed = 0
  7176. hum.WalkSpeed = 16
  7177. OWS = hum.WalkSpeed
  7178. tl1.Enabled = false
  7179. CFuncs["Sound"].Create("rbxassetid://200633029", rarmor, 1, 1)
  7180. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.5)
  7181. weaponweld.Part0 = tors
  7182. attack = false
  7183. end
  7184.  
  7185. ------------------
  7186. function attackone()
  7187. attack = true
  7188. hum.WalkSpeed = 4
  7189. for i = 0, 2, 0.1 do
  7190. swait()
  7191. 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)
  7192. 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)
  7193. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(40)),.3)
  7194. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-40)),.3)
  7195. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7196. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7197. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7198. end
  7199. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7200. hitb.Anchored = true
  7201. hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7202. MagniDamage(hitb, 4, 24,30, 0, "Normal",153092213)
  7203. CFuncs["Sound"].Create("rbxassetid://200633196", rarmor, 1, 1.05)
  7204. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1.5, 1.025)
  7205. CFuncs["Sound"].Create("rbxassetid://234365549", rarmor, 1, 1)
  7206. for i = 0, 1, 0.1 do
  7207. swait()
  7208. 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)
  7209. 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)
  7210. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(-50)),.3)
  7211. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(50)),.3)
  7212. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(70)),.3)
  7213. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7214. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7215. end
  7216. hitb:Destroy()
  7217. attack = false
  7218. hum.WalkSpeed = 24
  7219. end
  7220. function attacktwo()
  7221. attack = true
  7222. hum.WalkSpeed = 4
  7223. for i = 0, 1, 0.1 do
  7224. swait()
  7225. 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)
  7226. 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)
  7227. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7228. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(40)),.3)
  7229. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7230. LW.C0=clerp(LW.C0,cf(-0.5,0.5,-0.25)*angles(math.rad(90),math.rad(0),math.rad(40)),.3)
  7231. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(0)),.3)
  7232. end
  7233. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7234. hitb.Anchored = true
  7235. hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7236. MagniDamage(hitb, 4, 24,30, 0, "Normal",153092213)
  7237. CFuncs["Sound"].Create("rbxassetid://200633281", rarmor, 1, 1.05)
  7238. CFuncs["Sound"].Create("rbxassetid://161006195", rarmor, 1.5, 1.025)
  7239. for i = 0, 1, 0.1 do
  7240. swait()
  7241. 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)
  7242. 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)
  7243. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(10),math.rad(0),math.rad(90)),.3)
  7244. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(-90)),.3)
  7245. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(80),math.rad(0),math.rad(20)),.3)
  7246. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(100),math.rad(0),math.rad(-50)),.3)
  7247. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(70)),.3)
  7248. end
  7249. attack = false
  7250. hum.WalkSpeed = 24
  7251. end
  7252. function attackthree()
  7253. attack = true
  7254. hum.WalkSpeed = 4
  7255. for i = 0, 1, 0.1 do
  7256. swait()
  7257. 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)
  7258. 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)
  7259. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(-0.1,0.1,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  7260. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2),math.rad(0),math.rad(60)),.3)
  7261. RW.C0=clerp(RW.C0,cf(1.5,0.5,0)*angles(math.rad(-30),math.rad(0),math.rad(53)),.3)
  7262. LW.C0=clerp(LW.C0,cf(-1.5,0.5,0)*angles(math.rad(10),math.rad(0),math.rad(-10)),.3)
  7263. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.3)
  7264. end
  7265. for x = 0, 2 do
  7266. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 1, 1.05)
  7267. CFuncs["Sound"].Create("rbxassetid://234365573", rarmor, 1.5, 1.025)
  7268. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7269. hitb.Anchored = true
  7270. hitb.CFrame = root.CFrame + root.CFrame.lookVector*4
  7271. MagniDamage(hitb, 4, 12,15, 0, "Normal",153092213)
  7272. for i = 0, 1, 0.6 do
  7273. swait()
  7274. 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)
  7275. 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)
  7276. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7277. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7278. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7279. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7280. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(30),math.rad(90)),.3)
  7281. end
  7282. for i = 0, 1, 0.6 do
  7283. swait()
  7284. 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)
  7285. 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)
  7286. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7287. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7288. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7289. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7290. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(180)),.3)
  7291. end
  7292. for i = 0, 1, 0.6 do
  7293. swait()
  7294. 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)
  7295. 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)
  7296. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7297. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7298. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7299. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7300. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(-30),math.rad(270)),.3)
  7301. end
  7302. for i = 0, 1, 0.6 do
  7303. swait()
  7304. 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)
  7305. 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)
  7306. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.2,-0.25,0)*angles(math.rad(-2),math.rad(0),math.rad(80)),.3)
  7307. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.3)
  7308. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7309. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-20)),.3)
  7310. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7311. end
  7312. end
  7313. attack = false
  7314. hum.WalkSpeed = 24
  7315. end
  7316. ------------------
  7317. function spinnyblade()
  7318. attack = true
  7319. hum.WalkSpeed = 1
  7320. hum.JumpPower = 0
  7321. CFuncs["Sound"].Create("rbxassetid://1368583274", root, 4.5, 1)
  7322. local bgui = Instance.new("BillboardGui",root)
  7323. bgui.Size = UDim2.new(25, 0, 25, 0)
  7324. local imgc = Instance.new("ImageLabel",bgui)
  7325. imgc.BackgroundTransparency = 1
  7326. imgc.ImageTransparency = 1
  7327. imgc.Size = UDim2.new(1,0,1,0)
  7328. imgc.Image = "rbxassetid://997291547"
  7329. imgc.ImageColor3 = Color3.new(0,0.5,1)
  7330. local imgc2 = imgc:Clone()
  7331. imgc2.Parent = bgui
  7332. imgc2.Position = UDim2.new(-0.5,0,-0.5,0)
  7333. imgc2.Size = UDim2.new(2,0,2,0)
  7334. imgc2.ImageColor3 = Color3.new(0.5,0,1)
  7335. for i = 0, 10, 0.1 do
  7336. swait()
  7337. imgc.ImageTransparency = imgc.ImageTransparency - 0.01
  7338. imgc.Rotation = imgc.Rotation + 1
  7339. imgc2.ImageTransparency = imgc2.ImageTransparency - 0.01
  7340. imgc2.Rotation = imgc2.Rotation - 1
  7341. bgui.Size = bgui.Size - UDim2.new(0.25, 0, 0.25, 0)
  7342. 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"))
  7343. 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)
  7344. hum.CameraOffset = vt(math.random(-10,10)/50,math.random(-10,10)/50,math.random(-10,10)/50)
  7345. 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)
  7346. 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)
  7347. 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"))
  7348. 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)
  7349. 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)
  7350. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.2,-0.3)*angles(math.rad(10),math.rad(0),math.rad(50)),.3)
  7351. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(-50)),.3)
  7352. RW.C0=clerp(RW.C0,cf(1.25,0.5,-0.65)*angles(math.rad(100),math.rad(0),math.rad(-23)),.3)
  7353. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(110),math.rad(0),math.rad(-85)),.3)
  7354. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7355. end
  7356. imgc.ImageTransparency = 1
  7357. hum.CameraOffset = vt(0,0,0)
  7358. 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"))
  7359. 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"))
  7360. 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"))
  7361. 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"))
  7362. 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"))
  7363. for i = 0, 9 do
  7364. 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"))
  7365. end
  7366. CFuncs["Sound"].Create("rbxassetid://430315987", root, 1.5, 1)
  7367. CFuncs["Sound"].Create("rbxassetid://1295446488", root, 3, 1)
  7368. for x = 0, 14 do
  7369. CFuncs["Sound"].Create("rbxassetid://200633281", rarmor, 1, 1.05)
  7370. CFuncs["Sound"].Create("rbxassetid://161006195", rarmor, 1.5, 1.025)
  7371. MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7372. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7373. 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"))
  7374. for i = 0, 1, 0.6 do
  7375. swait()
  7376. 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)
  7377. root.CFrame = root.CFrame + root.CFrame.lookVector*2
  7378. root.Velocity = vt(0,0,0)
  7379. 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)
  7380. 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)
  7381. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  7382. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7383. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7384. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7385. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7386. end
  7387. 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"))
  7388. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7389. MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7390. for i = 0, 1, 0.6 do
  7391. swait()
  7392. 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)
  7393. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7394. root.Velocity = vt(0,0,0)
  7395. 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)
  7396. 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)
  7397. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7398. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7399. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7400. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7401. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7402. end
  7403. 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"))
  7404. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7405. MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7406. for i = 0, 1, 0.6 do
  7407. swait()
  7408. 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)
  7409. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7410. root.Velocity = vt(0,0,0)
  7411. 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)
  7412. 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)
  7413. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(180),math.rad(0),math.rad(90)),.3)
  7414. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7415. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7416. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7417. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7418. end
  7419. 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"))
  7420. CFuncs["Sound"].Create("rbxassetid://200632992", rarmor, 1.25, 1)
  7421. MagniDamage(tors, 10, 60,85, 0, "Normal",153092213)
  7422. for i = 0, 1, 0.6 do
  7423. swait()
  7424. 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)
  7425. root.CFrame = root.CFrame + root.CFrame.lookVector*3
  7426. root.Velocity = vt(0,0,0)
  7427. 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)
  7428. 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)
  7429. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,3)*angles(math.rad(270),math.rad(0),math.rad(90)),.3)
  7430. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-60)),.3)
  7431. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(90)),.3)
  7432. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7433. weaponweld.C1=clerp(weaponweld.C1,cf(0,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.3)
  7434. end
  7435. end
  7436. hum.WalkSpeed = 0
  7437. for i = 0, 5, 0.1 do
  7438. swait()
  7439. 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)
  7440. 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)
  7441. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0.1,0.2,-0.35)*angles(math.rad(10),math.rad(0),math.rad(-40)),.2)
  7442. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(40)),.2)
  7443. RW.C0=clerp(RW.C0,cf(1.45,0.5,0)*angles(math.rad(90),math.rad(0),math.rad(110)),.2)
  7444. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0)*angles(math.rad(45),math.rad(0),math.rad(-20)),.2)
  7445. weaponweld.C1=clerp(weaponweld.C1,cf(2,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.2)
  7446. end
  7447. bgui:Destroy()
  7448. attack = false
  7449. hum.WalkSpeed = 24
  7450. hum.JumpPower = 50
  7451. end
  7452.  
  7453. function eightbitmegablade()
  7454. attack = true
  7455. hum.WalkSpeed = 0
  7456. hum.JumpPower = 0
  7457. CFuncs["Sound"].Create("rbxassetid://1368583274", larm, 4.5, 1.2)
  7458. local OverCut = false
  7459. cam.CameraSubject = Humanoid
  7460. cam.CameraType = "Scriptable"
  7461. coroutine.resume(coroutine.create(function()
  7462. while true do
  7463. swait()
  7464. if OverCut == false then
  7465. cam.CFrame = lerp(cam.CFrame, root.CFrame * cf(1, 1.5, -6) * ceuler(math.rad(10), math.rad(170), math.rad(-20)), 0.1)
  7466. else
  7467. break
  7468. end
  7469. end
  7470. end))
  7471. for i = 0, 10, 0.1 do
  7472. swait()
  7473. 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"))
  7474. 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)
  7475. 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"))
  7476. 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)
  7477. 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)
  7478. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
  7479. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-15),math.rad(5),math.rad(50)),.3)
  7480. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-40),math.rad(20)),.3)
  7481. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(170),math.rad(10),math.rad(0)),.3)
  7482. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7483. end
  7484. OverCut = true
  7485. local orb = Instance.new("Part", char)
  7486. orb.Anchored = true
  7487. orb.BrickColor = BrickColor.new("Toothpaste")
  7488. orb.CanCollide = false
  7489. orb.FormFactor = 3
  7490. orb.Name = "Ring"
  7491. orb.Material = "Neon"
  7492. orb.Size = Vector3.new(1, 1, 1)
  7493. orb.Transparency = 0.5
  7494. orb.TopSurface = 0
  7495. orb.BottomSurface = 0
  7496. local orbm = Instance.new("SpecialMesh", orb)
  7497. orbm.MeshType = "FileMesh"
  7498. orbm.MeshId = "rbxassetid://361629844"
  7499. orbm.Scale = vt(30,60,60)
  7500. orb.CFrame = root.CFrame*CFrame.new(0,50,0)
  7501. for i = 0, 24 do
  7502. 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"))
  7503. end
  7504. sphere2(2,"Add",orb.CFrame,vt(10,10,10),0.5,0.5,0.5,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7505. sphere2(3,"Add",orb.CFrame,vt(10,10,10),0.75,0.75,0.75,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7506. sphere2(4,"Add",orb.CFrame,vt(10,10,10),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7507. CFuncs["Sound"].Create("rbxassetid://1368637781", orb, 7.5, 1)
  7508. local a = Instance.new("Part",workspace)
  7509. a.Name = "Direction"
  7510. a.Anchored = true
  7511. a.Transparency = 1
  7512. a.CanCollide = false
  7513. local ray = Ray.new(
  7514. orb.CFrame.p, -- origin
  7515. (mouse.Hit.p - orb.CFrame.p).unit * 500 -- direction
  7516. )
  7517. local ignore = orb
  7518. local hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  7519. a.BottomSurface = 10
  7520. a.TopSurface = 10
  7521. local distance = (orb.CFrame.p - position).magnitude
  7522. a.Size = Vector3.new(0.1, 0.1, 0.1)
  7523. a.CFrame = CFrame.new(orb.CFrame.p, position) * CFrame.new(0, 0, 0)
  7524. orb.CFrame = a.CFrame
  7525. for i = 0, 8, 0.1 do
  7526. swait()
  7527. 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)
  7528. ray = Ray.new(
  7529. orb.CFrame.p, -- origin
  7530. (mouse.Hit.p - orb.CFrame.p).unit * 500 -- direction
  7531. )
  7532. hit, position, normal = workspace:FindPartOnRay(ray, ignore)
  7533. distance = (orb.CFrame.p - position).magnitude
  7534. a.CFrame = CFrame.new(orb.CFrame.p, position) * CFrame.new(0, 0, 0)
  7535. orb.CFrame = a.CFrame
  7536. 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"))
  7537. cam.CFrame = lerp(cam.CFrame, root.CFrame * cf(20, 65, 55) * ceuler(math.rad(-20), math.rad(0), math.rad(10)), 0.2)
  7538. 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)
  7539. 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)
  7540. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,0)*angles(math.rad(0),math.rad(0),math.rad(-90)),.3)
  7541. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(90)),.3)
  7542. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-20),math.rad(20)),.3)
  7543. LW.C0=clerp(LW.C0,cf(-1.25,0.5,-0.5)*angles(math.rad(100),math.rad(0),math.rad(60)),.3)
  7544. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7545. end
  7546. cam.CameraType = "Custom"
  7547. orb.Anchored = false
  7548. a:Destroy()
  7549. local bv = Instance.new("BodyVelocity")
  7550. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  7551. bv.velocity = orb.CFrame.lookVector*250
  7552. bv.Parent = orb
  7553. local hitted = false
  7554. CFuncs["Sound"].Create("rbxassetid://466493476", orb, 7.5, 0.7)
  7555. 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"))
  7556. 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"))
  7557. coroutine.resume(coroutine.create(function()
  7558. while true do
  7559. swait(2)
  7560. if hitted == false and orb.Parent ~= nil then
  7561. 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"))
  7562. elseif hitted == true and orb.Parent == nil then
  7563. break
  7564. end
  7565. end
  7566. end))
  7567. orb.Touched:connect(function(hit)
  7568. if hitted == false and hit.Parent ~= char then
  7569. hitted = true
  7570. MagniDamage(orb, 30, 72,95, 0, "Normal",153092213)
  7571. CFuncs["Sound"].Create("rbxassetid://763717897", orb, 10, 1)
  7572. CFuncs["Sound"].Create("rbxassetid://1295446488", orb, 9, 0.75)
  7573. for i = 0, 24 do
  7574. 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"))
  7575. end
  7576. 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"))
  7577. 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"))
  7578. sphere2(1,"Add",orb.CFrame,vt(10,10,10),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7579. 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)
  7580. sphere2(2,"Add",orb.CFrame,vt(10,10,10),1.2,1.2,1.2,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7581. orb.Anchored = true
  7582. orb.Transparency = 1
  7583. coroutine.resume(coroutine.create(function()
  7584. for i = 0, 4, 0.1 do
  7585. swait()
  7586. 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"))
  7587. hum.CameraOffset = vt(math.random(-10,10)/25,math.random(-10,10)/25,math.random(-10,10)/25)
  7588. end
  7589. hum.CameraOffset = vt(0,0,0)
  7590. end))
  7591. wait(10)
  7592. orb:Destroy()
  7593. end
  7594. end)
  7595. game:GetService("Debris"):AddItem(orb, 10)
  7596. for i = 0, 2, 0.1 do
  7597. swait()
  7598. 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"))
  7599. 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)
  7600. 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)
  7601. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.4,0)*angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  7602. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  7603. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-13),math.rad(-40),math.rad(20)),.3)
  7604. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-80)),.3)
  7605. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7606. end
  7607. attack = false
  7608. hum.WalkSpeed = 24
  7609. hum.JumpPower = 50
  7610. end
  7611.  
  7612. function bladespinagain()
  7613. attack = true
  7614. hum.WalkSpeed = 4
  7615. hum.JumpPower = 0
  7616. CFuncs["Sound"].Create("rbxassetid://1368598393", rarmor, 2, 1)
  7617. CFuncs["Sound"].Create("rbxassetid://1368583274", rarmor, 2.5, 1)
  7618. for x = 0, 9 do
  7619. 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"))
  7620. CFuncs["Sound"].Create("rbxassetid://200633108", rarmor, 2, 1.05)
  7621. CFuncs["Sound"].Create("rbxassetid://234365573", rarmor, 2.5, 1.025)
  7622. for i = 0, 1, 0.6 do
  7623. swait()
  7624. 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)
  7625. 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)
  7626. 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"))
  7627. 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)
  7628. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  7629. 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)
  7630. 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)
  7631. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  7632. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  7633. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7634. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  7635. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  7636. end
  7637. 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"))
  7638. for i = 0, 1, 0.6 do
  7639. swait()
  7640. 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)
  7641. 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)
  7642. 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"))
  7643. 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)
  7644. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  7645. 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)
  7646. 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)
  7647. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  7648. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  7649. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7650. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  7651. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(90),math.rad(0)),.3)
  7652. end
  7653. 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"))
  7654. for i = 0, 1, 0.6 do
  7655. swait()
  7656. 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)
  7657. 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)
  7658. 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"))
  7659. 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)
  7660. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  7661. 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)
  7662. 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)
  7663. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  7664. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  7665. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7666. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  7667. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(180),math.rad(0)),.3)
  7668. end
  7669. 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"))
  7670. for i = 0, 1, 0.6 do
  7671. swait()
  7672. 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)
  7673. 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)
  7674. 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"))
  7675. 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)
  7676. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  7677. 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)
  7678. 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)
  7679. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0.25,0)*angles(math.rad(0),math.rad(0),math.rad(-60)),.3)
  7680. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(60)),.3)
  7681. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(80)),.3)
  7682. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(-60)),.3)
  7683. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(270),math.rad(0)),.3)
  7684. end
  7685. end
  7686. local hitb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.Random())
  7687. hitb.Anchored = true
  7688. hitb.CFrame = root.CFrame + root.CFrame.lookVector*8
  7689. hitb.CFrame = hitb.CFrame*CFrame.new(0,1,0)
  7690. MagniDamage(hitb, 8, 92,158, 0, "Normal",153092213)
  7691. 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)
  7692. sphere2(5,"Add",hitb.CFrame,vt(2,2,2),-0.02,-0.02,4,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7693. for i = 0, 24 do
  7694. 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"))
  7695. end
  7696. CFuncs["Sound"].Create("rbxassetid://313205954", root, 4,1)
  7697. CFuncs["Sound"].Create("rbxassetid://1368637781", rarmor, 4,1)
  7698. CFuncs["Sound"].Create("rbxassetid://763718160", rarmor, 5, 1.1)
  7699. CFuncs["Sound"].Create("rbxassetid://782353443", rarmor, 6, 1)
  7700. --CFuncs["Sound"].Create("rbxassetid://1548538202", rarmor, 4,1)
  7701. for i = 0, 2, 0.1 do
  7702. swait()
  7703. MagniDamage(hitb, 8, 92,158, 0, "Normal",153092213)
  7704. hum.CameraOffset = vt(math.random(-10,10)/25,math.random(-10,10)/25,math.random(-10,10)/25)
  7705. 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)
  7706. 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)
  7707. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.5,0)*angles(math.rad(0),math.rad(0),math.rad(80)),.9)
  7708. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(-80)),.9)
  7709. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(90),math.rad(0),math.rad(70)),.9)
  7710. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-60)),.9)
  7711. weaponweld.C1=clerp(weaponweld.C1,cf(2,0,0)*angles(math.rad(90),math.rad(0),math.rad(-90)),.9)
  7712. end
  7713. hum.CameraOffset = vt(0,0,0)
  7714. hitb:Destroy()
  7715. attack = false
  7716. hum.WalkSpeed = 24
  7717. hum.JumpPower = 50
  7718. end
  7719.  
  7720. function superjump()
  7721. attack = true
  7722. hum.WalkSpeed = 0
  7723. hum.JumpPower = 0
  7724. wng1a.Transparency = wng1a.Transparency - 1
  7725. wng1b.Transparency = wng1b.Transparency - 1
  7726. wng2a.Transparency = wng2a.Transparency - 1
  7727. wng2b.Transparency = wng2b.Transparency - 1
  7728. sphere2(5,"Add",root.CFrame,vt(1,1,1),1.5,1.5,1.5,BrickColor.new("Royal purple"),BrickColor.new("Royal purple").Color)
  7729. sphere2(5,"Add",root.CFrame,vt(1,1,1),1,1,1,BrickColor.new("Cyan"),BrickColor.new("Cyan").Color)
  7730. CFuncs["Sound"].Create("rbxassetid://1368637781", root, 7.5, 1)
  7731. for i = 0, 2, 0.1 do
  7732. swait()
  7733. hum.CameraOffset = vt(math.random(-10,10)/100,math.random(-10,10)/100,math.random(-10,10)/100)
  7734. root.Velocity = vt(0,0,0)
  7735. 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"))
  7736. 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)
  7737. 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)
  7738. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.5,-1)*angles(math.rad(20),math.rad(0),math.rad(0)),.4)
  7739. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(4),math.rad(0),math.rad(0)),.4)
  7740. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(40)),.4)
  7741. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(10),math.rad(0),math.rad(-40)),.4)
  7742. end
  7743. CFuncs["Sound"].Create("rbxassetid://477843807", root, 7, 1.05)
  7744. local lat1 = Instance.new("Attachment",larm)
  7745. lat1.Position = Vector3.new(1,-1,0.5)
  7746. local lat2 = Instance.new("Attachment",larm)
  7747. lat2.Position = Vector3.new(-1,-1,-0.5)
  7748. local rat1 = Instance.new("Attachment",rarm)
  7749. rat1.Position = Vector3.new(1,-1,-0.5)
  7750. local rat2 = Instance.new("Attachment",rarm)
  7751. rat2.Position = Vector3.new(-1,-1,0.5)
  7752. local tl1 = Instance.new('Trail',larm)
  7753. tl1.Attachment0 = lat1
  7754. tl1.Attachment1 = lat2
  7755. tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  7756. tl1.LightEmission = 1
  7757. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 1),NumberSequenceKeypoint.new(0.05, 0),NumberSequenceKeypoint.new(1, 1)})
  7758. tl1.Color = ColorSequence.new(BrickColor.new('Royal purple').Color,BrickColor.new('Cyan').Color)
  7759. tl1.Lifetime = 5
  7760. local tl2 = tl1:Clone()
  7761. tl2.Attachment0 = rat1
  7762. tl2.Attachment1 = rat2
  7763. tl2.Parent = rarm
  7764. hum.JumpPower = 50
  7765. hum.Jump = true
  7766. swait()
  7767. hum.JumpPower = 0
  7768. root.Velocity = vt(0,250,0) + root.CFrame.lookVector*250
  7769. 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)
  7770. 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)
  7771. for i = 0, 49 do
  7772. 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"))
  7773. 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"))
  7774. end
  7775. coroutine.resume(coroutine.create(function()
  7776. for i = 0, 2, 0.1 do
  7777. swait()
  7778. hum.CameraOffset = vt(math.random(-10,10)/50,math.random(-10,10)/50,math.random(-10,10)/50)
  7779. end
  7780. hum.CameraOffset = vt(0,0,0)
  7781. wait(3)
  7782. tl1.Enabled = false
  7783. tl2.Enabled = false
  7784. game:GetService("Debris"):AddItem(tl1, 5)
  7785. game:GetService("Debris"):AddItem(tl2, 5)
  7786. game:GetService("Debris"):AddItem(rat1, 5)
  7787. game:GetService("Debris"):AddItem(rat2, 5)
  7788. game:GetService("Debris"):AddItem(lat1, 5)
  7789. game:GetService("Debris"):AddItem(lat2, 5)
  7790. end))
  7791. CFuncs["Sound"].Create("rbxassetid://1295446488", root, 10, 1)
  7792. for i = 0, 3, 0.1 do
  7793. swait()
  7794. 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)
  7795. 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)
  7796. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,-0.75,0)*angles(math.rad(40),math.rad(0),math.rad(0)),.4)
  7797. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-20),math.rad(0),math.rad(0)),.4)
  7798. RW.C0=clerp(RW.C0,cf(1.45,0.5,0.1)*angles(math.rad(-30),math.rad(0),math.rad(20)),.4)
  7799. LW.C0=clerp(LW.C0,cf(-1.45,0.5,0.1)*angles(math.rad(-30),math.rad(0),math.rad(-20)),.4)
  7800. end
  7801. coroutine.resume(coroutine.create(function()
  7802. for i = 0, 99 do
  7803. swait()
  7804. wng1a.Transparency = wng1a.Transparency + 0.01
  7805. wng1b.Transparency = wng1b.Transparency + 0.01
  7806. wng2a.Transparency = wng2a.Transparency + 0.01
  7807. wng2b.Transparency = wng2b.Transparency + 0.01
  7808. end
  7809. end))
  7810. attack = false
  7811. if equipped == false then
  7812. hum.WalkSpeed = 16
  7813. else
  7814. hum.WalkSpeed = 24
  7815. end
  7816. hum.JumpPower = 50
  7817. end
  7818. ------------------
  7819.  
  7820.  
  7821. local attacktype = 1
  7822. mouse.Button1Down:connect(function()
  7823. if equipped == true then
  7824. if attack == false and attacktype == 1 then
  7825. attacktype = 2
  7826. attackone()
  7827. elseif attack == false and attacktype == 2 then
  7828. attacktype = 3
  7829. attacktwo()
  7830. elseif attack == false and attacktype == 3 then
  7831. attacktype = 1
  7832. attackthree()
  7833. --[[elseif attack == false and attacktype == 4 then
  7834. attacktype = 1
  7835. --attackfour()]]--
  7836. end
  7837. end
  7838. end)
  7839. mouse.KeyDown:connect(function(k)
  7840. if k == "f" and attack == false and equipped == false then
  7841. equip()
  7842. elseif k == "f" and attack == false and equipped == true then
  7843. unequip()
  7844. end
  7845. if k == "r" and attack == false then
  7846. superjump()
  7847. end
  7848. if equipped == true then
  7849. if k == "z" and attack == false then
  7850. spinnyblade()
  7851. end
  7852. if k == "x" and attack == false then
  7853. eightbitmegablade()
  7854. end
  7855. if k == "c" and attack == false then
  7856. bladespinagain()
  7857. end
  7858. end
  7859. if k == "l" and muter == false then
  7860. muter = true
  7861. kan.Volume = 0
  7862. elseif k == "l" and muter == true then
  7863. muter = false
  7864. kan.Volume = 1.25
  7865. end
  7866. end)
  7867. plr.Chatted:connect(function(message)
  7868. if message:sub(1,3) == "id/" then
  7869. ORGID = message:sub(4)
  7870. kan.TimePosition = 0
  7871. kan:Play()
  7872. elseif message:sub(1,6) == "pitch/" then
  7873. ORPIT = message:sub(7)
  7874. elseif message:sub(1,4) == "vol/" then
  7875. ORVOL = message:sub(5)
  7876. elseif message:sub(1,7) == "skipto/" then
  7877. kan.TimePosition = message:sub(8)
  7878. end
  7879. end)
  7880.  
  7881. idleanim=.4
  7882. while true do
  7883. swait()
  7884. if muter == false then
  7885. kan.Volume = ORVOL
  7886. else
  7887. kan.Volume = 0
  7888. end
  7889. kan.PlaybackSpeed = ORPIT
  7890. kan.Pitch = ORPIT
  7891. kan.SoundId = "rbxassetid://" ..ORGID
  7892. kan.Looped = true
  7893. kan.Parent = plr.PlayerGui
  7894. kan:Resume()
  7895. techc.Rotation = techc.Rotation + 0.1
  7896. imgl2.Rotation = imgl2.Rotation - kan.PlaybackLoudness/50
  7897. imgl2.ImageColor3 = Color3.new(0.15 + kan.PlaybackLoudness/2500,0,0.6 + kan.PlaybackLoudness/1000)
  7898. imgl2b.Rotation = imgl2b.Rotation + kan.PlaybackLoudness/25
  7899. imgl2b.ImageColor3 = Color3.new(0,0.3 + kan.PlaybackLoudness/1500,0.6 + kan.PlaybackLoudness/1000)
  7900. ned.Rotation = 0 - 2 * math.cos(sine / 24)
  7901. ned.Position = UDim2.new(0.6,0 - 10 * math.cos(sine / 32),0.8,0 - 10 * math.cos(sine / 45))
  7902. sine = sine + change
  7903. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  7904. local velderp=RootPart.Velocity.y
  7905. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  7906. if equipped==true or equipped==false then
  7907. if attack==false then
  7908. idle=idle+1
  7909. else
  7910. idle=0
  7911. end
  7912. if idle>=500 then
  7913. if attack==false then
  7914. --Sheath()
  7915. end
  7916. end
  7917. if RootPart.Velocity.y > 1 and hitfloor==nil then
  7918. Anim="Jump"
  7919. if attack==false then
  7920. 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)
  7921. 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)
  7922. 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)
  7923. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(-2.5),math.rad(0),math.rad(0)),.1)
  7924. 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)
  7925. 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)
  7926. if equipped == false then
  7927. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7928. else
  7929. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7930. end
  7931. end
  7932. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  7933. Anim="Fall"
  7934. if attack==false then
  7935. 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)
  7936. 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)
  7937. 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)
  7938. Torso.Neck.C0=clerp(Torso.Neck.C0,necko*angles(math.rad(2.5),math.rad(0),math.rad(0)),.1)
  7939. 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)
  7940. 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)
  7941. if equipped == false then
  7942. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7943. else
  7944. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7945. end
  7946. end
  7947. elseif torvel<1 and hitfloor~=nil then
  7948. Anim="Idle"
  7949. if attack==false then
  7950. if equipped == false then
  7951. 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)
  7952. 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)
  7953. 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)
  7954. 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)
  7955. 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)
  7956. 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)
  7957. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7958. else
  7959. 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)
  7960. 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)
  7961. 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)
  7962. 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)
  7963. 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)
  7964. 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)
  7965. weaponweld.C1=clerp(weaponweld.C1,cf(0,1,0)*angles(math.rad(0),math.rad(130),math.rad(0)),.3)
  7966. end
  7967. end
  7968. elseif torvel>2 and torvel<42 and hitfloor~=nil then
  7969. Anim="Walk"
  7970. if attack==false then
  7971. if equipped == false then
  7972. 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)
  7973. 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)
  7974. 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)
  7975. 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)
  7976. 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)
  7977. 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)
  7978. weaponweld.C1=clerp(weaponweld.C1,cf(-3,0,-0.5)*angles(math.rad(0),math.rad(0),math.rad(-40)),.3)
  7979. else
  7980. 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)
  7981. 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)
  7982. 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)
  7983. 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)
  7984. 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)
  7985. 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)
  7986. 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)
  7987. end
  7988. end
  7989. elseif torvel>=42 and hitfloor~=nil then
  7990. Anim="Run"
  7991. if attack==false then
  7992. 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)
  7993. 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)
  7994. 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)
  7995. 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)
  7996. 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)
  7997. 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)
  7998. end
  7999. end
  8000. end
  8001. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement