Znimator

Untitled

Apr 25th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153. --Made local by:gamingsugo
  154. --Discord:Arvain#7962
  155.  
  156.  
  157. --Left--
  158. o1 = Instance.new("Model")
  159. o2 = Instance.new("Part")
  160. o3 = Instance.new("SpecialMesh")
  161. o4 = Instance.new("Weld")
  162. o5 = Instance.new("Part")
  163. o6 = Instance.new("SpecialMesh")
  164. o7 = Instance.new("Weld")
  165. o8 = Instance.new("Part")
  166. o9 = Instance.new("SpecialMesh")
  167. o10 = Instance.new("Weld")
  168. o11 = Instance.new("Part")
  169. o12 = Instance.new("SpecialMesh")
  170. o13 = Instance.new("Weld")
  171. o14 = Instance.new("Part")
  172. o15 = Instance.new("CylinderMesh")
  173. o16 = Instance.new("Part")
  174. o17 = Instance.new("SpecialMesh")
  175. o18 = Instance.new("Part")
  176. o19 = Instance.new("SpecialMesh")
  177. o20 = Instance.new("Weld")
  178. o21 = Instance.new("Part")
  179. o22 = Instance.new("SpecialMesh")
  180. o23 = Instance.new("Weld")
  181. o24 = Instance.new("Part")
  182. o25 = Instance.new("SpecialMesh")
  183. o26 = Instance.new("Weld")
  184. o27 = Instance.new("Part")
  185. o28 = Instance.new("SpecialMesh")
  186. o29 = Instance.new("Weld")
  187. o30 = Instance.new("Part")
  188. o31 = Instance.new("SpecialMesh")
  189. o32 = Instance.new("Weld")
  190. o33 = Instance.new("Part")
  191. o34 = Instance.new("Weld")
  192. o35 = Instance.new("Part")
  193. o36 = Instance.new("SpecialMesh")
  194. o37 = Instance.new("Weld")
  195. o38 = Instance.new("Part")
  196. o39 = Instance.new("SpecialMesh")
  197. o40 = Instance.new("Weld")
  198. o41 = Instance.new("Part")
  199. o42 = Instance.new("CylinderMesh")
  200. o43 = Instance.new("Weld")
  201. o44 = Instance.new("Part")
  202. o45 = Instance.new("CylinderMesh")
  203. o46 = Instance.new("Weld")
  204. o47 = Instance.new("Part")
  205. o48 = Instance.new("CylinderMesh")
  206. o49 = Instance.new("Weld")
  207. o50 = Instance.new("Part")
  208. o51 = Instance.new("SpecialMesh")
  209. o52 = Instance.new("Weld")
  210. o53 = Instance.new("Part")
  211. o54 = Instance.new("SpecialMesh")
  212. o55 = Instance.new("Weld")
  213. o56 = Instance.new("Part")
  214. o57 = Instance.new("SpecialMesh")
  215. o58 = Instance.new("Weld")
  216. o59 = Instance.new("Part")
  217. o60 = Instance.new("SpecialMesh")
  218. o61 = Instance.new("Weld")
  219. o62 = Instance.new("Part")
  220. o63 = Instance.new("SpecialMesh")
  221. o64 = Instance.new("Weld")
  222. o65 = Instance.new("Part")
  223. o66 = Instance.new("BlockMesh")
  224. o67 = Instance.new("Weld")
  225. o68 = Instance.new("Part")
  226. o69 = Instance.new("SpecialMesh")
  227. o70 = Instance.new("Weld")
  228. o71 = Instance.new("Part")
  229. o72 = Instance.new("SpecialMesh")
  230. o73 = Instance.new("Weld")
  231. o74 = Instance.new("Part")
  232. o75 = Instance.new("CylinderMesh")
  233. o76 = Instance.new("Weld")
  234. o77 = Instance.new("Part")
  235. o78 = Instance.new("SpecialMesh")
  236. o79 = Instance.new("Weld")
  237. o80 = Instance.new("Part")
  238. o81 = Instance.new("SpecialMesh")
  239. o82 = Instance.new("Weld")
  240. o83 = Instance.new("Part")
  241. o84 = Instance.new("SpecialMesh")
  242. o85 = Instance.new("Weld")
  243. o86 = Instance.new("Part")
  244. o87 = Instance.new("CylinderMesh")
  245. o88 = Instance.new("Weld")
  246. o89 = Instance.new("Part")
  247. o90 = Instance.new("SpecialMesh")
  248. o91 = Instance.new("Weld")
  249. o92 = Instance.new("Part")
  250. o93 = Instance.new("SpecialMesh")
  251. o94 = Instance.new("Weld")
  252. o95 = Instance.new("Part")
  253. o96 = Instance.new("SpecialMesh")
  254. o97 = Instance.new("Weld")
  255. o98 = Instance.new("Part")
  256. o99 = Instance.new("Weld")
  257. o100 = Instance.new("Part")
  258. o101 = Instance.new("SpecialMesh")
  259. o102 = Instance.new("Weld")
  260. o103 = Instance.new("Part")
  261. o104 = Instance.new("Weld")
  262. o105 = Instance.new("Part")
  263. o106 = Instance.new("CylinderMesh")
  264. o107 = Instance.new("Weld")
  265. o108 = Instance.new("Part")
  266. o109 = Instance.new("BlockMesh")
  267. o110 = Instance.new("Weld")
  268. o111 = Instance.new("Part")
  269. o112 = Instance.new("BlockMesh")
  270. o113 = Instance.new("Weld")
  271. o114 = Instance.new("Part")
  272. o115 = Instance.new("BlockMesh")
  273. o116 = Instance.new("Weld")
  274. o117 = Instance.new("Part")
  275. o118 = Instance.new("SpecialMesh")
  276. o119 = Instance.new("Weld")
  277. o120 = Instance.new("Part")
  278. o121 = Instance.new("SpecialMesh")
  279. o122 = Instance.new("Weld")
  280. o123 = Instance.new("Part")
  281. o124 = Instance.new("BlockMesh")
  282. o125 = Instance.new("Weld")
  283. o126 = Instance.new("Part")
  284. o127 = Instance.new("SpecialMesh")
  285. o128 = Instance.new("Weld")
  286. o129 = Instance.new("Part")
  287. o130 = Instance.new("SpecialMesh")
  288. o131 = Instance.new("Weld")
  289. o132 = Instance.new("Part")
  290. o133 = Instance.new("SpecialMesh")
  291. o134 = Instance.new("Weld")
  292. o135 = Instance.new("Part")
  293. o136 = Instance.new("SpecialMesh")
  294. o137 = Instance.new("Weld")
  295. o138 = Instance.new("Part")
  296. o139 = Instance.new("SpecialMesh")
  297. o140 = Instance.new("Weld")
  298. o141 = Instance.new("Part")
  299. o142 = Instance.new("SpecialMesh")
  300. o143 = Instance.new("Part")
  301. o144 = Instance.new("SpecialMesh")
  302. o145 = Instance.new("Weld")
  303. o146 = Instance.new("Part")
  304. o147 = Instance.new("SpecialMesh")
  305. o148 = Instance.new("Weld")
  306. o149 = Instance.new("Part")
  307. o150 = Instance.new("SpecialMesh")
  308. o151 = Instance.new("Weld")
  309. o152 = Instance.new("Part")
  310. o153 = Instance.new("CylinderMesh")
  311. o154 = Instance.new("Weld")
  312. o155 = Instance.new("Part")
  313. o156 = Instance.new("CylinderMesh")
  314. o157 = Instance.new("Weld")
  315. o158 = Instance.new("Part")
  316. o159 = Instance.new("SpecialMesh")
  317. o160 = Instance.new("Weld")
  318. o161 = Instance.new("Part")
  319. o162 = Instance.new("SpecialMesh")
  320. o163 = Instance.new("Weld")
  321. o164 = Instance.new("Part")
  322. o165 = Instance.new("SpecialMesh")
  323. o166 = Instance.new("Weld")
  324. o167 = Instance.new("Part")
  325. o168 = Instance.new("SpecialMesh")
  326. o169 = Instance.new("Weld")
  327. o170 = Instance.new("Part")
  328. o171 = Instance.new("SpecialMesh")
  329. o172 = Instance.new("Weld")
  330. o173 = Instance.new("Part")
  331. o174 = Instance.new("SpecialMesh")
  332. o175 = Instance.new("Weld")
  333. o176 = Instance.new("Part")
  334. o177 = Instance.new("SpecialMesh")
  335. o178 = Instance.new("Weld")
  336. o179 = Instance.new("Part")
  337. o180 = Instance.new("SpecialMesh")
  338. o181 = Instance.new("Weld")
  339. o182 = Instance.new("Part")
  340. o183 = Instance.new("SpecialMesh")
  341. o184 = Instance.new("Weld")
  342. o185 = Instance.new("Part")
  343. o186 = Instance.new("SpecialMesh")
  344. o187 = Instance.new("Weld")
  345. o188 = Instance.new("Part")
  346. o189 = Instance.new("SpecialMesh")
  347. o190 = Instance.new("Weld")
  348. o191 = Instance.new("Part")
  349. o192 = Instance.new("SpecialMesh")
  350. o193 = Instance.new("Weld")
  351. o194 = Instance.new("Part")
  352. o195 = Instance.new("SpecialMesh")
  353. o196 = Instance.new("Weld")
  354. o197 = Instance.new("Part")
  355. o198 = Instance.new("SpecialMesh")
  356. o199 = Instance.new("Weld")
  357. o200 = Instance.new("Part")
  358. o201 = Instance.new("SpecialMesh")
  359. o202 = Instance.new("Weld")
  360. o203 = Instance.new("Part")
  361. o204 = Instance.new("SpecialMesh")
  362. o205 = Instance.new("Weld")
  363. o206 = Instance.new("Part")
  364. o207 = Instance.new("SpecialMesh")
  365. o208 = Instance.new("Weld")
  366. o209 = Instance.new("Part")
  367. o210 = Instance.new("SpecialMesh")
  368. o211 = Instance.new("Weld")
  369. o212 = Instance.new("Part")
  370. o213 = Instance.new("SpecialMesh")
  371. o214 = Instance.new("Weld")
  372. o215 = Instance.new("Part")
  373. o216 = Instance.new("SpecialMesh")
  374. o217 = Instance.new("Weld")
  375. o218 = Instance.new("Part")
  376. o219 = Instance.new("SpecialMesh")
  377. o220 = Instance.new("Weld")
  378. o221 = Instance.new("Part")
  379. o222 = Instance.new("SpecialMesh")
  380. o223 = Instance.new("Weld")
  381. o224 = Instance.new("Part")
  382. o225 = Instance.new("SpecialMesh")
  383. o226 = Instance.new("Weld")
  384. o227 = Instance.new("Part")
  385. o228 = Instance.new("SpecialMesh")
  386. o229 = Instance.new("Weld")
  387. o230 = Instance.new("Part")
  388. o231 = Instance.new("SpecialMesh")
  389. o232 = Instance.new("Weld")
  390. o233 = Instance.new("Part")
  391. o234 = Instance.new("SpecialMesh")
  392. o235 = Instance.new("Weld")
  393. o236 = Instance.new("Part")
  394. o237 = Instance.new("SpecialMesh")
  395. o238 = Instance.new("Weld")
  396. o239 = Instance.new("Part")
  397. o240 = Instance.new("SpecialMesh")
  398. o241 = Instance.new("Weld")
  399. o242 = Instance.new("Part")
  400. o243 = Instance.new("SpecialMesh")
  401. o244 = Instance.new("Weld")
  402. o245 = Instance.new("Part")
  403. o246 = Instance.new("SpecialMesh")
  404. o247 = Instance.new("Weld")
  405. o248 = Instance.new("Part")
  406. o249 = Instance.new("SpecialMesh")
  407. o250 = Instance.new("Weld")
  408. o251 = Instance.new("Part")
  409. o252 = Instance.new("SpecialMesh")
  410. o253 = Instance.new("Weld")
  411. o254 = Instance.new("Part")
  412. o255 = Instance.new("SpecialMesh")
  413. o256 = Instance.new("Weld")
  414. o257 = Instance.new("Part")
  415. o258 = Instance.new("SpecialMesh")
  416. o259 = Instance.new("Weld")
  417. o260 = Instance.new("Part")
  418. o261 = Instance.new("SpecialMesh")
  419. o262 = Instance.new("Weld")
  420. o263 = Instance.new("Part")
  421. o264 = Instance.new("SpecialMesh")
  422. o265 = Instance.new("Weld")
  423. o266 = Instance.new("Part")
  424. o267 = Instance.new("SpecialMesh")
  425. o268 = Instance.new("Weld")
  426. o269 = Instance.new("Part")
  427. o270 = Instance.new("SpecialMesh")
  428. o271 = Instance.new("Weld")
  429. o272 = Instance.new("Part")
  430. o273 = Instance.new("SpecialMesh")
  431. o274 = Instance.new("Weld")
  432. o275 = Instance.new("Part")
  433. o276 = Instance.new("SpecialMesh")
  434. o277 = Instance.new("Weld")
  435. o278 = Instance.new("Part")
  436. o279 = Instance.new("SpecialMesh")
  437. o280 = Instance.new("Weld")
  438. o281 = Instance.new("Part")
  439. o282 = Instance.new("SpecialMesh")
  440. o283 = Instance.new("Weld")
  441. o284 = Instance.new("Part")
  442. o285 = Instance.new("SpecialMesh")
  443. o286 = Instance.new("Weld")
  444. o287 = Instance.new("Part")
  445. o288 = Instance.new("SpecialMesh")
  446. o289 = Instance.new("Weld")
  447. o290 = Instance.new("Part")
  448. o291 = Instance.new("SpecialMesh")
  449. o292 = Instance.new("Weld")
  450. o293 = Instance.new("Part")
  451. o294 = Instance.new("SpecialMesh")
  452. o295 = Instance.new("Weld")
  453. o296 = Instance.new("Part")
  454. o297 = Instance.new("SpecialMesh")
  455. o298 = Instance.new("Weld")
  456. o299 = Instance.new("Part")
  457. o300 = Instance.new("SpecialMesh")
  458. o301 = Instance.new("Weld")
  459. o302 = Instance.new("Part")
  460. o303 = Instance.new("SpecialMesh")
  461. o304 = Instance.new("Weld")
  462. o305 = Instance.new("Part")
  463. o306 = Instance.new("SpecialMesh")
  464. o307 = Instance.new("Weld")
  465. o308 = Instance.new("Part")
  466. o309 = Instance.new("SpecialMesh")
  467. o310 = Instance.new("Weld")
  468. o311 = Instance.new("Part")
  469. o312 = Instance.new("SpecialMesh")
  470. o313 = Instance.new("Weld")
  471. o314 = Instance.new("Part")
  472. o315 = Instance.new("SpecialMesh")
  473. o316 = Instance.new("Weld")
  474. o317 = Instance.new("Part")
  475. o318 = Instance.new("SpecialMesh")
  476. o319 = Instance.new("Weld")
  477. o320 = Instance.new("Part")
  478. o321 = Instance.new("SpecialMesh")
  479. o322 = Instance.new("Weld")
  480. o323 = Instance.new("Part")
  481. o324 = Instance.new("SpecialMesh")
  482. o325 = Instance.new("Weld")
  483. o326 = Instance.new("Part")
  484. o327 = Instance.new("SpecialMesh")
  485. o328 = Instance.new("Weld")
  486. o329 = Instance.new("Part")
  487. o330 = Instance.new("SpecialMesh")
  488. o331 = Instance.new("Weld")
  489. o332 = Instance.new("Part")
  490. o333 = Instance.new("SpecialMesh")
  491. o334 = Instance.new("Weld")
  492. o335 = Instance.new("Part")
  493. o336 = Instance.new("SpecialMesh")
  494. o337 = Instance.new("Weld")
  495. o338 = Instance.new("Part")
  496. o339 = Instance.new("SpecialMesh")
  497. o340 = Instance.new("Weld")
  498. o341 = Instance.new("Part")
  499. o342 = Instance.new("SpecialMesh")
  500. o343 = Instance.new("Weld")
  501. o344 = Instance.new("Part")
  502. o345 = Instance.new("SpecialMesh")
  503. o346 = Instance.new("Weld")
  504. o347 = Instance.new("Part")
  505. o348 = Instance.new("SpecialMesh")
  506. o349 = Instance.new("Weld")
  507. o350 = Instance.new("Part")
  508. o351 = Instance.new("SpecialMesh")
  509. o352 = Instance.new("Weld")
  510. o353 = Instance.new("Part")
  511. o354 = Instance.new("SpecialMesh")
  512. o355 = Instance.new("Weld")
  513. o356 = Instance.new("Part")
  514. o357 = Instance.new("SpecialMesh")
  515. o358 = Instance.new("Weld")
  516. o359 = Instance.new("Part")
  517. o360 = Instance.new("SpecialMesh")
  518. o361 = Instance.new("Weld")
  519. o362 = Instance.new("Part")
  520. o363 = Instance.new("SpecialMesh")
  521. o364 = Instance.new("Weld")
  522. o365 = Instance.new("Part")
  523. o1.Name = "Left"
  524. o1.Parent = game.ReplicatedStorage
  525. o2.Name = "part"
  526. o2.Parent = o1
  527. o2.Material = Enum.Material.Metal
  528. o2.Position = Vector3.new(-7.26739264, 1.75540948, -9.51076508)
  529. o2.Rotation = Vector3.new(-89.9899979, 85, -90.0099945)
  530. o2.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  531. o2.Velocity = Vector3.new(-2.61577552e-21, 0.103487223, -3.79704497e-21)
  532. o2.CanCollide = false
  533. o2.Locked = true
  534. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  535. o2.CFrame = CFrame.new(-7.26739264, 1.75540948, -9.51076508, -2.06523491e-05, 0.0871428549, 0.996199965, 1.552701e-05, -0.996199369, 0.0871426314, 0.999999702, 1.72970376e-05, 1.92113312e-05)
  536. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  537. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  538. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  539. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  540. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  541. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  542. o2.Position = Vector3.new(-7.26739264, 1.75540948, -9.51076508)
  543. o2.Velocity = Vector3.new(-2.61577552e-21, 0.103487223, -3.79704497e-21)
  544. o3.Parent = o2
  545. o3.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  546. o3.MeshType = Enum.MeshType.Brick
  547. o4.Name = "part_Weld"
  548. o4.Parent = o2
  549. o4.C0 = CFrame.new(-15.4239855, 2.46731901, 12.3522243, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
  550. o4.C1 = CFrame.new(-15.4239874, 12.4249134, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  551. o4.Part0 = o2
  552. o4.Part1 = o308
  553. o5.Name = "part"
  554. o5.Parent = o1
  555. o5.Material = Enum.Material.Metal
  556. o5.Position = Vector3.new(-7.26737595, 1.75540423, -9.76076984)
  557. o5.Rotation = Vector3.new(-89.9899979, 85, -90.0099945)
  558. o5.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  559. o5.Velocity = Vector3.new(-2.60984934e-21, 0.103487223, -3.7970579e-21)
  560. o5.CanCollide = false
  561. o5.Locked = true
  562. o5.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  563. o5.CFrame = CFrame.new(-7.26737595, 1.75540423, -9.76076984, -2.06523491e-05, 0.0871426836, 0.996198654, 1.552701e-05, -0.996197939, 0.0871424526, 0.999999702, 1.72970103e-05, 1.92113021e-05)
  564. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  565. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  566. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  567. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  568. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  569. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  570. o5.Position = Vector3.new(-7.26737595, 1.75540423, -9.76076984)
  571. o5.Velocity = Vector3.new(-2.60984934e-21, 0.103487223, -3.7970579e-21)
  572. o6.Parent = o5
  573. o6.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  574. o6.MeshType = Enum.MeshType.Brick
  575. o7.Name = "part_Weld"
  576. o7.Parent = o5
  577. o7.C0 = CFrame.new(-15.1739807, 2.46731949, 12.3522282, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
  578. o7.C1 = CFrame.new(-15.173975, 12.4249115, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  579. o7.Part0 = o5
  580. o7.Part1 = o242
  581. o8.Name = "part"
  582. o8.Parent = o1
  583. o8.Material = Enum.Material.Metal
  584. o8.Position = Vector3.new(-7.2673564, 1.7553978, -10.0107708)
  585. o8.Rotation = Vector3.new(-89.9899979, 85, -90.0099945)
  586. o8.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  587. o8.Velocity = Vector3.new(-2.60392579e-21, 0.103487223, -3.79707405e-21)
  588. o8.CanCollide = false
  589. o8.Locked = true
  590. o8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  591. o8.CFrame = CFrame.new(-7.2673564, 1.7553978, -10.0107708, -2.06523491e-05, 0.0871424302, 0.996197104, 1.552701e-05, -0.996196508, 0.0871423557, 0.999999702, 1.72969831e-05, 1.9211273e-05)
  592. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  593. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  594. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  595. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  596. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  597. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  598. o8.Position = Vector3.new(-7.2673564, 1.7553978, -10.0107708)
  599. o8.Velocity = Vector3.new(-2.60392579e-21, 0.103487223, -3.79707405e-21)
  600. o9.Parent = o8
  601. o9.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  602. o9.MeshType = Enum.MeshType.Brick
  603. o10.Name = "part_Weld"
  604. o10.Parent = o8
  605. o10.C0 = CFrame.new(-14.9239798, 2.46731997, 12.3522339, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
  606. o10.C1 = CFrame.new(-14.9239721, 12.4249153, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  607. o10.Part0 = o8
  608. o10.Part1 = o176
  609. o11.Name = "part"
  610. o11.Parent = o1
  611. o11.Material = Enum.Material.SmoothPlastic
  612. o11.BrickColor = BrickColor.new("Institutional white")
  613. o11.Position = Vector3.new(-6.15531635, 3.97901082, -9.21477699)
  614. o11.Rotation = Vector3.new(90, 90, 0)
  615. o11.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  616. o11.Velocity = Vector3.new(1.56150495e-21, 0.103487223, 2.14414666e-21)
  617. o11.CanCollide = false
  618. o11.Locked = true
  619. o11.Shape = Enum.PartType.Ball
  620. o11.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  621. o11.CFrame = CFrame.new(-6.15531635, 3.97901082, -9.21477699, 1.18017197e-05, -2.06523491e-05, 1.00000048, 1, 1.552701e-05, -1.17719173e-05, -1.55568141e-05, 0.999999702, 2.06456607e-05)
  622. o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  623. o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  624. o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  625. o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  626. o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  627. o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  628. o11.Color = Color3.new(0.972549, 0.972549, 0.972549)
  629. o11.Position = Vector3.new(-6.15531635, 3.97901082, -9.21477699)
  630. o11.Velocity = Vector3.new(1.56150495e-21, 0.103487223, 2.14414666e-21)
  631. o12.Parent = o11
  632. o12.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
  633. o12.MeshType = Enum.MeshType.Sphere
  634. o13.Name = "part_Weld"
  635. o13.Parent = o11
  636. o13.C0 = CFrame.new(-3.6050005, -15.719985, 11.4082508, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  637. o13.C1 = CFrame.new(4.97322464, -15.719985, 11.5352583, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
  638. o13.Part0 = o11
  639. o13.Part1 = o53
  640. o14.Name = "part"
  641. o14.Parent = o1
  642. o14.Material = Enum.Material.Granite
  643. o14.BrickColor = BrickColor.new("Alder")
  644. o14.Position = Vector3.new(-6.47206688, 3.28450394, -9.76026821)
  645. o14.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  646. o14.Velocity = Vector3.new(2.67552488e-22, 0.103487223, 2.89234475e-22)
  647. o14.CanCollide = false
  648. o14.Locked = true
  649. o14.Size = Vector3.new(0.915499985, 2.04999995, 1.0999999)
  650. o14.CFrame = CFrame.new(-6.47206688, 3.28450394, -9.76026821, 1, 1.17220197e-05, -2.06454806e-05, -1.17216987e-05, 1, 1.55407015e-05, 2.06456625e-05, -1.55404614e-05, 1)
  651. o14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  652. o14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  653. o14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  654. o14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  655. o14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  656. o14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  657. o14.Color = Color3.new(0.705882, 0.501961, 1)
  658. o14.Position = Vector3.new(-6.47206688, 3.28450394, -9.76026821)
  659. o14.Velocity = Vector3.new(2.67552488e-22, 0.103487223, 2.89234475e-22)
  660. o15.Parent = o14
  661. o15.Scale = Vector3.new(0.5, 1, 0.5)
  662. o16.Name = "Handle"
  663. o16.Parent = o1
  664. o16.BrickColor = BrickColor.new("Bright orange")
  665. o16.Transparency = 1
  666. o16.Position = Vector3.new(-6.45531607, 3.37400794, -9.75977612)
  667. o16.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  668. o16.Velocity = Vector3.new(4.35967602e-22, 0.103487223, 5.27714372e-22)
  669. o16.CanCollide = false
  670. o16.Size = Vector3.new(1, 2, 1)
  671. o16.CFrame = CFrame.new(-6.45531607, 3.37400794, -9.75977612, 1.00000024, 1.17700811e-05, -2.06523491e-05, -1.17798645e-05, 0.99999994, 1.552701e-05, 2.06456625e-05, -1.55568123e-05, 0.999999702)
  672. o16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  673. o16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  674. o16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  675. o16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  676. o16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  677. o16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  678. o16.Color = Color3.new(0.854902, 0.521569, 0.254902)
  679. o16.Position = Vector3.new(-6.45531607, 3.37400794, -9.75977612)
  680. o16.Velocity = Vector3.new(4.35967602e-22, 0.103487223, 5.27714372e-22)
  681. o17.Parent = o16
  682. o17.MeshId = "rbxasset://fonts/rightarm.mesh"
  683. o17.MeshType = Enum.MeshType.FileMesh
  684. o18.Name = "part"
  685. o18.Parent = o1
  686. o18.BrickColor = BrickColor.new("Institutional white")
  687. o18.Position = Vector3.new(-6.46031475, 2.79400635, -9.75976372)
  688. o18.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  689. o18.Velocity = Vector3.new(-6.55462279e-22, 0.103487223, -1.01521052e-21)
  690. o18.CanCollide = false
  691. o18.Locked = true
  692. o18.Size = Vector3.new(0.5, 0.349999934, 1)
  693. o18.CFrame = CFrame.new(-6.46031475, 2.79400635, -9.75976372, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  694. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  695. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  696. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  697. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  698. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  699. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  700. o18.Color = Color3.new(0.972549, 0.972549, 0.972549)
  701. o18.Position = Vector3.new(-6.46031475, 2.79400635, -9.75976372)
  702. o18.Velocity = Vector3.new(-6.55462279e-22, 0.103487223, -1.01521052e-21)
  703. o19.Parent = o18
  704. o19.MeshId = "rbxasset://fonts/rightarm.mesh"
  705. o19.Scale = Vector3.new(1.10000002, 0.0500000007, 1.10000002)
  706. o19.MeshType = Enum.MeshType.FileMesh
  707. o20.Name = "part_Weld"
  708. o20.Parent = o18
  709. o20.C0 = CFrame.new(11.7132454, -2.42000055, -15.1749859, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  710. o20.C1 = CFrame.new(-15.174984, -12.1832561, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  711. o20.Part0 = o18
  712. o20.Part1 = o56
  713. o21.Name = "part"
  714. o21.Parent = o1
  715. o21.BrickColor = BrickColor.new("Institutional white")
  716. o21.Position = Vector3.new(-6.45530319, 4.1435051, -9.75978851)
  717. o21.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  718. o21.Velocity = Vector3.new(1.88398503e-21, 0.103487223, 2.57457966e-21)
  719. o21.CanCollide = false
  720. o21.Locked = true
  721. o21.Size = Vector3.new(0.5, 0.349999934, 1)
  722. o21.CFrame = CFrame.new(-6.45530319, 4.1435051, -9.75978851, 1.00000024, 1.17700811e-05, -2.06523491e-05, -1.17798645e-05, 0.99999994, 1.552701e-05, 2.06456625e-05, -1.55568123e-05, 0.999999702)
  723. o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  724. o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  725. o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  726. o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  727. o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  728. o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  729. o21.Color = Color3.new(0.972549, 0.972549, 0.972549)
  730. o21.Position = Vector3.new(-6.45530319, 4.1435051, -9.75978851)
  731. o21.Velocity = Vector3.new(1.88398503e-21, 0.103487223, 2.57457966e-21)
  732. o22.Parent = o21
  733. o22.MeshId = "rbxasset://fonts/rightarm.mesh"
  734. o22.Scale = Vector3.new(1.10000002, 0.075000003, 1.10000002)
  735. o22.MeshType = Enum.MeshType.FileMesh
  736. o23.Name = "ArmHandle_Weld"
  737. o23.Parent = o21
  738. o23.C0 = CFrame.new(11.7082539, -3.76949954, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  739. o23.C1 = CFrame.new(11.7082577, -3.00000238, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  740. o23.Part0 = o21
  741. o23.Part1 = o16
  742. o24.Name = "part"
  743. o24.Parent = o1
  744. o24.Material = Enum.Material.SmoothPlastic
  745. o24.BrickColor = BrickColor.new("Institutional white")
  746. o24.Position = Vector3.new(-6.15530109, 3.97899365, -10.3097734)
  747. o24.Rotation = Vector3.new(90, 20, 0)
  748. o24.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  749. o24.Velocity = Vector3.new(1.58747006e-21, 0.103487223, 2.14410142e-21)
  750. o24.CanCollide = false
  751. o24.Locked = true
  752. o24.Shape = Enum.PartType.Ball
  753. o24.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  754. o24.CFrame = CFrame.new(-6.15530109, 3.97899365, -10.3097734, 0.939697027, -2.06523491e-05, 0.342008919, 0.342008829, 1.552701e-05, -0.939696729, 1.40798393e-05, 0.999999702, 2.16798508e-05)
  755. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  756. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  757. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  758. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  759. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  760. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  761. o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
  762. o24.Position = Vector3.new(-6.15530109, 3.97899365, -10.3097734)
  763. o24.Velocity = Vector3.new(1.58747006e-21, 0.103487223, 2.14410142e-21)
  764. o25.Parent = o24
  765. o25.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
  766. o25.MeshType = Enum.MeshType.Sphere
  767. o26.Name = "part_Weld"
  768. o26.Parent = o24
  769. o26.C0 = CFrame.new(9.48727798, -14.6249886, 7.28944492, 0.939692736, 0.342019916, 0, 0, 0, 1, 0.342019886, -0.939692736, 0)
  770. o26.C1 = CFrame.new(11.7082539, -3.76949954, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  771. o26.Part0 = o24
  772. o26.Part1 = o21
  773. o27.Name = "part"
  774. o27.Parent = o1
  775. o27.Material = Enum.Material.SmoothPlastic
  776. o27.BrickColor = BrickColor.new("Really black")
  777. o27.Position = Vector3.new(-6.15530205, 3.97899342, -10.3097734)
  778. o27.Rotation = Vector3.new(90, 20, 0)
  779. o27.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  780. o27.Velocity = Vector3.new(1.58746966e-21, 0.103487223, 2.14410082e-21)
  781. o27.CanCollide = false
  782. o27.Locked = true
  783. o27.Shape = Enum.PartType.Ball
  784. o27.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  785. o27.CFrame = CFrame.new(-6.15530205, 3.97899342, -10.3097734, 0.939697027, -2.06523491e-05, 0.342008889, 0.342008859, 1.552701e-05, -0.939696729, 1.40798384e-05, 0.999999702, 2.16798508e-05)
  786. o27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  787. o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  788. o27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  789. o27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  790. o27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  791. o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  792. o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  793. o27.Position = Vector3.new(-6.15530205, 3.97899342, -10.3097734)
  794. o27.Velocity = Vector3.new(1.58746966e-21, 0.103487223, 2.14410082e-21)
  795. o28.Parent = o27
  796. o28.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
  797. o28.MeshType = Enum.MeshType.Cylinder
  798. o29.Name = "part_Weld"
  799. o29.Parent = o27
  800. o29.C0 = CFrame.new(9.48727798, -14.6249886, 7.28944492, 0.939692736, 0.342019916, 0, 0, 0, 1, 0.342019886, -0.939692736, 0)
  801. o29.C1 = CFrame.new(9.48727798, -14.6249886, 7.28944492, 0.939692736, 0.342019916, 0, 0, 0, 1, 0.342019886, -0.939692736, 0)
  802. o29.Part0 = o27
  803. o29.Part1 = o24
  804. o30.Name = "part"
  805. o30.Parent = o1
  806. o30.Material = Enum.Material.SmoothPlastic
  807. o30.BrickColor = BrickColor.new("Institutional white")
  808. o30.Position = Vector3.new(-6.78029633, 3.97900081, -10.3097887)
  809. o30.Rotation = Vector3.new(-90, 10, 180)
  810. o30.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  811. o30.Velocity = Vector3.new(1.58748389e-21, 0.103487223, 2.12928164e-21)
  812. o30.CanCollide = false
  813. o30.Locked = true
  814. o30.Shape = Enum.PartType.Ball
  815. o30.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  816. o30.CFrame = CFrame.new(-6.78029633, 3.97900081, -10.3097887, -0.98480618, -2.06523491e-05, 0.173658699, 0.17365858, 1.552701e-05, 0.984805942, -2.30334063e-05, 0.999999702, -1.17354157e-05)
  817. o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  818. o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  819. o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  820. o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  821. o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  822. o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  823. o30.Color = Color3.new(0.972549, 0.972549, 0.972549)
  824. o30.Position = Vector3.new(-6.78029633, 3.97900081, -10.3097887)
  825. o30.Velocity = Vector3.new(1.58748389e-21, 0.103487223, 2.12928164e-21)
  826. o31.Parent = o30
  827. o31.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
  828. o31.MeshType = Enum.MeshType.Sphere
  829. o32.Name = "part_Weld"
  830. o32.Parent = o30
  831. o32.C0 = CFrame.new(-12.4764423, -14.6249866, -1.46069455, -0.984807968, 0.173647001, 0, 0, 0, 1, 0.173647001, 0.984807968, 0)
  832. o32.C1 = CFrame.new(9.48727798, -14.6249886, 7.28944492, 0.939692736, 0.342019916, 0, 0, 0, 1, 0.342019886, -0.939692736, 0)
  833. o32.Part0 = o30
  834. o32.Part1 = o27
  835. o33.Name = "part"
  836. o33.Parent = o1
  837. o33.Material = Enum.Material.SmoothPlastic
  838. o33.BrickColor = BrickColor.new("Institutional white")
  839. o33.Position = Vector3.new(-6.45530558, 3.97900581, -9.75977516)
  840. o33.Rotation = Vector3.new(0, 90, 0)
  841. o33.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  842. o33.Velocity = Vector3.new(1.5744348e-21, 0.103487223, 2.13701102e-21)
  843. o33.CanCollide = false
  844. o33.Locked = true
  845. o33.Shape = Enum.PartType.Cylinder
  846. o33.Size = Vector3.new(1.11000001, 0.349999934, 1)
  847. o33.CFrame = CFrame.new(-6.45530558, 3.97900581, -9.75977516, 2.06523491e-05, 1.18166208e-05, 1.00000036, -1.552701e-05, 1, -1.17570162e-05, -0.999999702, -1.55568123e-05, 2.06456625e-05)
  848. o33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  849. o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  850. o33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  851. o33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  852. o33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  853. o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  854. o33.Color = Color3.new(0.972549, 0.972549, 0.972549)
  855. o33.Position = Vector3.new(-6.45530558, 3.97900581, -9.75977516)
  856. o33.Velocity = Vector3.new(1.5744348e-21, 0.103487223, 2.13701102e-21)
  857. o34.Name = "part_Weld"
  858. o34.Parent = o33
  859. o34.C0 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  860. o34.C1 = CFrame.new(-12.4764423, -14.6249866, -1.46069455, -0.984807968, 0.173647001, 0, 0, 0, 1, 0.173647001, 0.984807968, 0)
  861. o34.Part0 = o33
  862. o34.Part1 = o30
  863. o35.Name = "part"
  864. o35.Parent = o1
  865. o35.BrickColor = BrickColor.new("Institutional white")
  866. o35.Position = Vector3.new(-6.45530748, 3.97900581, -9.75978661)
  867. o35.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  868. o35.Velocity = Vector3.new(1.5744351e-21, 0.103487223, 2.13701102e-21)
  869. o35.CanCollide = false
  870. o35.Locked = true
  871. o35.Size = Vector3.new(0.5, 0.349999934, 1)
  872. o35.CFrame = CFrame.new(-6.45530748, 3.97900581, -9.75978661, 1.00000036, 1.18166208e-05, -2.06523491e-05, -1.17570162e-05, 1, 1.552701e-05, 2.06456625e-05, -1.55568123e-05, 0.999999702)
  873. o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  874. o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  875. o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  876. o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  877. o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  878. o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  879. o35.Color = Color3.new(0.972549, 0.972549, 0.972549)
  880. o35.Position = Vector3.new(-6.45530748, 3.97900581, -9.75978661)
  881. o35.Velocity = Vector3.new(1.5744351e-21, 0.103487223, 2.13701102e-21)
  882. o36.Parent = o35
  883. o36.MeshId = "rbxasset://fonts/rightarm.mesh"
  884. o36.Scale = Vector3.new(1.10000002, 0.00999999978, 1.10000002)
  885. o36.MeshType = Enum.MeshType.FileMesh
  886. o37.Name = "part_Weld"
  887. o37.Parent = o35
  888. o37.C0 = CFrame.new(11.7082539, -3.6050005, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  889. o37.C1 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  890. o37.Part0 = o35
  891. o37.Part1 = o33
  892. o38.Name = "part"
  893. o38.Parent = o1
  894. o38.Material = Enum.Material.SmoothPlastic
  895. o38.BrickColor = BrickColor.new("Really black")
  896. o38.Position = Vector3.new(-6.1553154, 3.97901082, -9.21477795)
  897. o38.Rotation = Vector3.new(90, 90, 0)
  898. o38.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  899. o38.Velocity = Vector3.new(1.56150485e-21, 0.103487223, 2.14414686e-21)
  900. o38.CanCollide = false
  901. o38.Locked = true
  902. o38.Shape = Enum.PartType.Ball
  903. o38.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  904. o38.CFrame = CFrame.new(-6.1553154, 3.97901082, -9.21477795, 1.18166208e-05, -2.06523491e-05, 1.00000036, 1, 1.552701e-05, -1.17570162e-05, -1.55568123e-05, 0.999999702, 2.06456625e-05)
  905. o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  906. o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  907. o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  908. o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  909. o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  910. o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  911. o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  912. o38.Position = Vector3.new(-6.1553154, 3.97901082, -9.21477795)
  913. o38.Velocity = Vector3.new(1.56150485e-21, 0.103487223, 2.14414686e-21)
  914. o39.Parent = o38
  915. o39.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
  916. o39.MeshType = Enum.MeshType.Cylinder
  917. o40.Name = "part_Weld"
  918. o40.Parent = o38
  919. o40.C0 = CFrame.new(-3.6050005, -15.719985, 11.4082508, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  920. o40.C1 = CFrame.new(11.7082539, -3.6050005, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  921. o40.Part0 = o38
  922. o40.Part1 = o35
  923. o41.Name = "part"
  924. o41.Parent = o1
  925. o41.Material = Enum.Material.SmoothPlastic
  926. o41.BrickColor = BrickColor.new("Institutional white")
  927. o41.Position = Vector3.new(-6.78030825, 3.97900963, -9.75978947)
  928. o41.Rotation = Vector3.new(90, 50, 0)
  929. o41.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  930. o41.Velocity = Vector3.new(1.57444237e-21, 0.103487223, 2.12930487e-21)
  931. o41.CanCollide = false
  932. o41.Locked = true
  933. o41.Shape = Enum.PartType.Cylinder
  934. o41.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
  935. o41.CFrame = CFrame.new(-6.78030825, 3.97900963, -9.75978947, 0.642796278, -2.06523491e-05, 0.766037703, 0.766037405, 1.552701e-05, -0.64279598, 1.35354458e-06, 0.999999702, 2.58152213e-05)
  936. o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  937. o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  938. o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  939. o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  940. o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  941. o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  942. o41.Color = Color3.new(0.972549, 0.972549, 0.972549)
  943. o41.Position = Vector3.new(-6.78030825, 3.97900963, -9.75978947)
  944. o41.Velocity = Vector3.new(1.57444237e-21, 0.103487223, 2.12930487e-21)
  945. o42.Parent = o41
  946. o42.Scale = Vector3.new(0.224999994, 0.736000001, 0.224999994)
  947. o43.Name = "part_Weld"
  948. o43.Parent = o41
  949. o43.C0 = CFrame.new(4.97322655, -15.1749859, 11.5352612, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
  950. o43.C1 = CFrame.new(-3.6050005, -15.719985, 11.4082508, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  951. o43.Part0 = o41
  952. o43.Part1 = o38
  953. o44.Name = "part"
  954. o44.Parent = o1
  955. o44.Material = Enum.Material.SmoothPlastic
  956. o44.BrickColor = BrickColor.new("Dark stone grey")
  957. o44.Position = Vector3.new(-6.15530825, 3.97900248, -9.75977612)
  958. o44.Rotation = Vector3.new(90, 90, 0)
  959. o44.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  960. o44.Velocity = Vector3.new(1.57442864e-21, 0.103487223, 2.14412465e-21)
  961. o44.CanCollide = false
  962. o44.Locked = true
  963. o44.Shape = Enum.PartType.Cylinder
  964. o44.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
  965. o44.CFrame = CFrame.new(-6.15530825, 3.97900248, -9.75977612, 1.18017197e-05, -2.06523491e-05, 1.00000048, 1, 1.552701e-05, -1.17719173e-05, -1.55568123e-05, 0.999999702, 2.06456607e-05)
  966. o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  967. o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  968. o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  969. o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  970. o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  971. o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  972. o44.Color = Color3.new(0.388235, 0.372549, 0.384314)
  973. o44.Position = Vector3.new(-6.15530825, 3.97900248, -9.75977612)
  974. o44.Velocity = Vector3.new(1.57442864e-21, 0.103487223, 2.14412465e-21)
  975. o45.Parent = o44
  976. o45.Scale = Vector3.new(0.300000012, 0.734999955, 0.300000012)
  977. o46.Name = "part_Weld"
  978. o46.Parent = o44
  979. o46.C0 = CFrame.new(-3.6050005, -15.1749859, 11.4082546, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  980. o46.C1 = CFrame.new(4.97322655, -15.1749859, 11.5352612, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
  981. o46.Part0 = o44
  982. o46.Part1 = o41
  983. o47.Name = "part"
  984. o47.Parent = o1
  985. o47.Material = Enum.Material.SmoothPlastic
  986. o47.BrickColor = BrickColor.new("Dark stone grey")
  987. o47.Position = Vector3.new(-6.78030872, 3.97900987, -9.75978947)
  988. o47.Rotation = Vector3.new(90, 50, 0)
  989. o47.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  990. o47.Velocity = Vector3.new(1.57444288e-21, 0.103487223, 2.12930547e-21)
  991. o47.CanCollide = false
  992. o47.Locked = true
  993. o47.Shape = Enum.PartType.Cylinder
  994. o47.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
  995. o47.CFrame = CFrame.new(-6.78030872, 3.97900987, -9.75978947, 0.642796338, -2.06523491e-05, 0.766037762, 0.766037405, 1.552701e-05, -0.64279598, 1.35354367e-06, 0.999999702, 2.58152213e-05)
  996. o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  997. o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  998. o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  999. o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1002. o47.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1003. o47.Position = Vector3.new(-6.78030872, 3.97900987, -9.75978947)
  1004. o47.Velocity = Vector3.new(1.57444288e-21, 0.103487223, 2.12930547e-21)
  1005. o48.Parent = o47
  1006. o48.Scale = Vector3.new(0.300000012, 0.734999955, 0.300000012)
  1007. o49.Name = "part_Weld"
  1008. o49.Parent = o47
  1009. o49.C0 = CFrame.new(4.97322655, -15.1749859, 11.5352612, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
  1010. o49.C1 = CFrame.new(-3.6050005, -15.1749859, 11.4082546, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  1011. o49.Part0 = o47
  1012. o49.Part1 = o44
  1013. o50.Name = "part"
  1014. o50.Parent = o1
  1015. o50.Material = Enum.Material.SmoothPlastic
  1016. o50.BrickColor = BrickColor.new("Institutional white")
  1017. o50.Position = Vector3.new(-6.78031635, 3.97901797, -9.21479034)
  1018. o50.Rotation = Vector3.new(90, 50, 0)
  1019. o50.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1020. o50.Velocity = Vector3.new(1.56151868e-21, 0.103487223, 2.12932688e-21)
  1021. o50.CanCollide = false
  1022. o50.Locked = true
  1023. o50.Shape = Enum.PartType.Ball
  1024. o50.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1025. o50.CFrame = CFrame.new(-6.78031635, 3.97901797, -9.21479034, 0.642796338, -2.06523491e-05, 0.766037762, 0.766037405, 1.552701e-05, -0.64279598, 1.35354367e-06, 0.999999702, 2.58152213e-05)
  1026. o50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1027. o50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1028. o50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1029. o50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1030. o50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1031. o50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1032. o50.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1033. o50.Position = Vector3.new(-6.78031635, 3.97901797, -9.21479034)
  1034. o50.Velocity = Vector3.new(1.56151868e-21, 0.103487223, 2.12932688e-21)
  1035. o51.Parent = o50
  1036. o51.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
  1037. o51.MeshType = Enum.MeshType.Sphere
  1038. o52.Name = "part_Weld"
  1039. o52.Parent = o50
  1040. o52.C0 = CFrame.new(4.97322464, -15.719985, 11.5352583, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
  1041. o52.C1 = CFrame.new(4.97322655, -15.1749859, 11.5352612, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
  1042. o52.Part0 = o50
  1043. o52.Part1 = o47
  1044. o53.Name = "part"
  1045. o53.Parent = o1
  1046. o53.Material = Enum.Material.SmoothPlastic
  1047. o53.BrickColor = BrickColor.new("Really black")
  1048. o53.Position = Vector3.new(-6.78031635, 3.97901797, -9.21479034)
  1049. o53.Rotation = Vector3.new(90, 50, 0)
  1050. o53.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1051. o53.Velocity = Vector3.new(1.56151868e-21, 0.103487223, 2.12932688e-21)
  1052. o53.CanCollide = false
  1053. o53.Locked = true
  1054. o53.Shape = Enum.PartType.Ball
  1055. o53.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1056. o53.CFrame = CFrame.new(-6.78031635, 3.97901797, -9.21479034, 0.642796338, -2.06523491e-05, 0.766037762, 0.766037405, 1.552701e-05, -0.64279598, 1.35354367e-06, 0.999999702, 2.58152213e-05)
  1057. o53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1058. o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1059. o53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1060. o53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1061. o53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1062. o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1063. o53.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1064. o53.Position = Vector3.new(-6.78031635, 3.97901797, -9.21479034)
  1065. o53.Velocity = Vector3.new(1.56151868e-21, 0.103487223, 2.12932688e-21)
  1066. o54.Parent = o53
  1067. o54.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
  1068. o54.MeshType = Enum.MeshType.Cylinder
  1069. o55.Name = "part_Weld"
  1070. o55.Parent = o53
  1071. o55.C0 = CFrame.new(4.97322464, -15.719985, 11.5352583, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
  1072. o55.C1 = CFrame.new(4.97322464, -15.719985, 11.5352583, 0.64278698, 0.766044974, 0, 0, 0, 1, 0.766044974, -0.64278698, 0)
  1073. o55.Part0 = o53
  1074. o55.Part1 = o50
  1075. o56.Name = "part"
  1076. o56.Parent = o1
  1077. o56.Position = Vector3.new(-6.93032694, 2.69901729, -9.75977421)
  1078. o56.Rotation = Vector3.new(90, 0, 90)
  1079. o56.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1080. o56.Velocity = Vector3.new(-8.34209628e-22, 0.103487223, -1.27904085e-21)
  1081. o56.CanCollide = false
  1082. o56.Locked = true
  1083. o56.Size = Vector3.new(0.200000003, 0.349999934, 1)
  1084. o56.CFrame = CFrame.new(-6.93032694, 2.69901729, -9.75977421, -2.06523491e-05, -1.0000006, -1.18017197e-05, 1.552701e-05, 1.17719173e-05, -1, 0.999999702, -2.06456607e-05, 1.55568141e-05)
  1085. o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1086. o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1087. o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1088. o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1091. o56.Position = Vector3.new(-6.93032694, 2.69901729, -9.75977421)
  1092. o56.Velocity = Vector3.new(-8.34209628e-22, 0.103487223, -1.27904085e-21)
  1093. o57.Parent = o56
  1094. o57.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1095. o57.Scale = Vector3.new(0.125, 0.200000003, 0.25)
  1096. o57.MeshType = Enum.MeshType.FileMesh
  1097. o58.Name = "part_Weld"
  1098. o58.Parent = o56
  1099. o58.C0 = CFrame.new(-15.174984, -12.1832561, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  1100. o58.C1 = CFrame.new(12.008255, -2.1250031, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1101. o58.Part0 = o56
  1102. o58.Part1 = o59
  1103. o59.Name = "part"
  1104. o59.Parent = o1
  1105. o59.BrickColor = BrickColor.new("Institutional white")
  1106. o59.Position = Vector3.new(-6.75532818, 2.49901223, -9.75976181)
  1107. o59.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1108. o59.Velocity = Vector3.new(-1.21057358e-21, 0.103487223, -1.80690012e-21)
  1109. o59.CanCollide = false
  1110. o59.Locked = true
  1111. o59.Size = Vector3.new(0.5, 0.349999934, 1)
  1112. o59.CFrame = CFrame.new(-6.75532818, 2.49901223, -9.75976181, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1113. o59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1114. o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1115. o59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. o59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1117. o59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1118. o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1119. o59.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1120. o59.Position = Vector3.new(-6.75532818, 2.49901223, -9.75976181)
  1121. o59.Velocity = Vector3.new(-1.21057358e-21, 0.103487223, -1.80690012e-21)
  1122. o60.Parent = o59
  1123. o60.MeshId = "rbxasset://fonts/rightarm.mesh"
  1124. o60.Scale = Vector3.new(0.5, 0.174999997, 1.10000002)
  1125. o60.MeshType = Enum.MeshType.FileMesh
  1126. o61.Name = "part_Weld"
  1127. o61.Parent = o59
  1128. o61.C0 = CFrame.new(12.008255, -2.1250031, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1129. o61.C1 = CFrame.new(11.8332577, -2.325001, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1130. o61.Part0 = o59
  1131. o61.Part1 = o62
  1132. o62.Name = "part"
  1133. o62.Parent = o1
  1134. o62.BrickColor = BrickColor.new("Institutional white")
  1135. o62.Position = Vector3.new(-6.58032846, 2.69900799, -9.75976086)
  1136. o62.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1137. o62.Velocity = Vector3.new(-8.34227501e-22, 0.103487223, -1.27075581e-21)
  1138. o62.CanCollide = false
  1139. o62.Locked = true
  1140. o62.Size = Vector3.new(0.5, 0.349999934, 1)
  1141. o62.CFrame = CFrame.new(-6.58032846, 2.69900799, -9.75976086, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1142. o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1143. o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1146. o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. o62.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1149. o62.Position = Vector3.new(-6.58032846, 2.69900799, -9.75976086)
  1150. o62.Velocity = Vector3.new(-8.34227501e-22, 0.103487223, -1.27075581e-21)
  1151. o63.Parent = o62
  1152. o63.MeshId = "rbxasset://fonts/rightarm.mesh"
  1153. o63.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
  1154. o63.MeshType = Enum.MeshType.FileMesh
  1155. o64.Name = "part_Weld"
  1156. o64.Parent = o62
  1157. o64.C0 = CFrame.new(11.8332577, -2.325001, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1158. o64.C1 = CFrame.new(11.9732513, -2.325001, -15.174984, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1159. o64.Part0 = o62
  1160. o64.Part1 = o65
  1161. o65.Name = "part"
  1162. o65.Parent = o1
  1163. o65.Material = Enum.Material.Granite
  1164. o65.BrickColor = BrickColor.new("Alder")
  1165. o65.Position = Vector3.new(-6.72032213, 2.69900966, -9.75976944)
  1166. o65.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1167. o65.Velocity = Vector3.new(-8.34224169e-22, 0.103487223, -1.27407514e-21)
  1168. o65.CanCollide = false
  1169. o65.Locked = true
  1170. o65.Size = Vector3.new(0.5, 0.349999934, 1)
  1171. o65.CFrame = CFrame.new(-6.72032213, 2.69900966, -9.75976944, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1172. o65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1173. o65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1174. o65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1175. o65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. o65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1177. o65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1178. o65.Color = Color3.new(0.705882, 0.501961, 1)
  1179. o65.Position = Vector3.new(-6.72032213, 2.69900966, -9.75976944)
  1180. o65.Velocity = Vector3.new(-8.34224169e-22, 0.103487223, -1.27407514e-21)
  1181. o66.Parent = o65
  1182. o66.Scale = Vector3.new(0.529999971, 0.400000006, 1.09899998)
  1183. o67.Name = "part_Weld"
  1184. o67.Parent = o65
  1185. o67.C0 = CFrame.new(11.9732513, -2.325001, -15.174984, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1186. o67.C1 = CFrame.new(-14.9249811, -12.1832581, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  1187. o67.Part0 = o65
  1188. o67.Part1 = o68
  1189. o68.Name = "part"
  1190. o68.Parent = o1
  1191. o68.Position = Vector3.new(-6.9303236, 2.69901323, -10.0097761)
  1192. o68.Rotation = Vector3.new(90, 0, 90)
  1193. o68.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1194. o68.Velocity = Vector3.new(-8.28281736e-22, 0.103487223, -1.27905155e-21)
  1195. o68.CanCollide = false
  1196. o68.Locked = true
  1197. o68.Size = Vector3.new(0.200000003, 0.349999934, 1)
  1198. o68.CFrame = CFrame.new(-6.9303236, 2.69901323, -10.0097761, -2.06523491e-05, -1.0000006, -1.18017197e-05, 1.552701e-05, 1.17719173e-05, -1, 0.999999702, -2.06456607e-05, 1.55568141e-05)
  1199. o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1201. o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1202. o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1203. o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1204. o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1205. o68.Position = Vector3.new(-6.9303236, 2.69901323, -10.0097761)
  1206. o68.Velocity = Vector3.new(-8.28281736e-22, 0.103487223, -1.27905155e-21)
  1207. o69.Parent = o68
  1208. o69.MeshId = "rbxassetid://9756362"
  1209. o69.Scale = Vector3.new(0.125, 0.200000003, 0.25)
  1210. o69.MeshType = Enum.MeshType.FileMesh
  1211. o70.Name = "part_Weld"
  1212. o70.Parent = o68
  1213. o70.C0 = CFrame.new(-14.9249811, -12.1832581, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  1214. o70.C1 = CFrame.new(12.1082554, -2.325001, -15.1749859, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1215. o70.Part0 = o68
  1216. o70.Part1 = o71
  1217. o71.Name = "part"
  1218. o71.Parent = o1
  1219. o71.BrickColor = BrickColor.new("Institutional white")
  1220. o71.Position = Vector3.new(-6.85532618, 2.69901133, -9.75976944)
  1221. o71.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1222. o71.Velocity = Vector3.new(-8.34221038e-22, 0.103487223, -1.27727602e-21)
  1223. o71.CanCollide = false
  1224. o71.Locked = true
  1225. o71.Size = Vector3.new(0.5, 0.349999934, 1)
  1226. o71.CFrame = CFrame.new(-6.85532618, 2.69901133, -9.75976944, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1227. o71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. o71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. o71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1230. o71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1231. o71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1232. o71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1233. o71.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1234. o71.Position = Vector3.new(-6.85532618, 2.69901133, -9.75976944)
  1235. o71.Velocity = Vector3.new(-8.34221038e-22, 0.103487223, -1.27727602e-21)
  1236. o72.Parent = o71
  1237. o72.MeshId = "rbxasset://fonts/rightarm.mesh"
  1238. o72.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
  1239. o72.MeshType = Enum.MeshType.FileMesh
  1240. o73.Name = "part_Weld"
  1241. o73.Parent = o71
  1242. o73.C0 = CFrame.new(12.1082554, -2.325001, -15.1749859, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1243. o73.C1 = CFrame.new(12.1932487, -2.325001, -14.6799793, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1244. o73.Part0 = o71
  1245. o73.Part1 = o74
  1246. o74.Name = "part"
  1247. o74.Parent = o1
  1248. o74.Material = Enum.Material.Granite
  1249. o74.BrickColor = BrickColor.new("Alder")
  1250. o74.Position = Vector3.new(-6.94030952, 2.69900465, -10.2547779)
  1251. o74.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1252. o74.Velocity = Vector3.new(-8.22480971e-22, 0.103487223, -1.27931146e-21)
  1253. o74.CanCollide = false
  1254. o74.Locked = true
  1255. o74.Size = Vector3.new(0.200000003, 0.349999934, 0.200000003)
  1256. o74.CFrame = CFrame.new(-6.94030952, 2.69900465, -10.2547779, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1257. o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1259. o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1260. o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1261. o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1262. o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1263. o74.Color = Color3.new(0.705882, 0.501961, 1)
  1264. o74.Position = Vector3.new(-6.94030952, 2.69900465, -10.2547779)
  1265. o74.Velocity = Vector3.new(-8.22480971e-22, 0.103487223, -1.27931146e-21)
  1266. o75.Parent = o74
  1267. o75.Scale = Vector3.new(0.5, 0.5, 0.5)
  1268. o76.Name = "part_Weld"
  1269. o76.Parent = o74
  1270. o76.C0 = CFrame.new(12.1932487, -2.325001, -14.6799793, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1271. o76.C1 = CFrame.new(11.7082539, -3.00500154, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1272. o76.Part0 = o74
  1273. o76.Part1 = o77
  1274. o77.Name = "part"
  1275. o77.Parent = o1
  1276. o77.BrickColor = BrickColor.new("Institutional white")
  1277. o77.Position = Vector3.new(-6.45531654, 3.3790071, -9.75977612)
  1278. o77.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1279. o77.Velocity = Vector3.new(4.45375166e-22, 0.103487223, 5.41012168e-22)
  1280. o77.CanCollide = false
  1281. o77.Locked = true
  1282. o77.Size = Vector3.new(0.5, 0.349999934, 1)
  1283. o77.CFrame = CFrame.new(-6.45531654, 3.3790071, -9.75977612, 1.0000006, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1284. o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1285. o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1286. o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1290. o77.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1291. o77.Position = Vector3.new(-6.45531654, 3.3790071, -9.75977612)
  1292. o77.Velocity = Vector3.new(4.45375166e-22, 0.103487223, 5.41012168e-22)
  1293. o78.Parent = o77
  1294. o78.MeshId = "rbxasset://fonts/rightarm.mesh"
  1295. o78.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
  1296. o78.MeshType = Enum.MeshType.FileMesh
  1297. o79.Name = "part_Weld"
  1298. o79.Parent = o77
  1299. o79.C0 = CFrame.new(11.7082539, -3.00500154, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1300. o79.C1 = CFrame.new(-12.4764423, -14.6249866, -1.46069455, -0.984807968, 0.173647001, 0, 0, 0, 1, 0.173647001, 0.984807968, 0)
  1301. o79.Part0 = o77
  1302. o79.Part1 = o80
  1303. o80.Name = "part"
  1304. o80.Parent = o1
  1305. o80.Material = Enum.Material.SmoothPlastic
  1306. o80.BrickColor = BrickColor.new("Really black")
  1307. o80.Position = Vector3.new(-6.78029823, 3.97900128, -10.3097878)
  1308. o80.Rotation = Vector3.new(-90, 10, 180)
  1309. o80.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1310. o80.Velocity = Vector3.new(1.58748511e-21, 0.103487223, 2.12928285e-21)
  1311. o80.CanCollide = false
  1312. o80.Locked = true
  1313. o80.Shape = Enum.PartType.Ball
  1314. o80.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1315. o80.CFrame = CFrame.new(-6.78029823, 3.97900128, -10.3097878, -0.984806418, -2.06523491e-05, 0.173658714, 0.173658594, 1.552701e-05, 0.984805942, -2.30334044e-05, 0.999999702, -1.17354175e-05)
  1316. o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1317. o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1318. o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1319. o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1320. o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1321. o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1322. o80.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1323. o80.Position = Vector3.new(-6.78029823, 3.97900128, -10.3097878)
  1324. o80.Velocity = Vector3.new(1.58748511e-21, 0.103487223, 2.12928285e-21)
  1325. o81.Parent = o80
  1326. o81.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
  1327. o81.MeshType = Enum.MeshType.Cylinder
  1328. o82.Name = "part_Weld"
  1329. o82.Parent = o80
  1330. o82.C0 = CFrame.new(-12.4764423, -14.6249866, -1.46069455, -0.984807968, 0.173647001, 0, 0, 0, 1, 0.173647001, 0.984807968, 0)
  1331. o82.C1 = CFrame.new(-15.1749878, -12.0582561, 2.77500439, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  1332. o82.Part0 = o80
  1333. o82.Part1 = o83
  1334. o83.Name = "part"
  1335. o83.Parent = o1
  1336. o83.Material = Enum.Material.SmoothPlastic
  1337. o83.BrickColor = BrickColor.new("Institutional white")
  1338. o83.Position = Vector3.new(-6.80532074, 3.149014, -9.75977421)
  1339. o83.Rotation = Vector3.new(90, 0, 90)
  1340. o83.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1341. o83.Velocity = Vector3.new(1.2580779e-23, 0.103487223, -7.90801629e-23)
  1342. o83.CanCollide = false
  1343. o83.Locked = true
  1344. o83.Size = Vector3.new(0.799999952, 0.349999934, 1)
  1345. o83.CFrame = CFrame.new(-6.80532074, 3.149014, -9.75977421, -2.06523491e-05, -1.00000048, -1.18017197e-05, 1.552701e-05, 1.17719173e-05, -1, 0.999999702, -2.06456607e-05, 1.55568141e-05)
  1346. o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1347. o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1348. o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1349. o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1350. o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1352. o83.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1353. o83.Position = Vector3.new(-6.80532074, 3.149014, -9.75977421)
  1354. o83.Velocity = Vector3.new(1.2580779e-23, 0.103487223, -7.90801629e-23)
  1355. o84.Parent = o83
  1356. o84.Scale = Vector3.new(1.10000002, 1.125, 1)
  1357. o84.MeshType = Enum.MeshType.Wedge
  1358. o85.Name = "part_Weld"
  1359. o85.Parent = o83
  1360. o85.C0 = CFrame.new(-15.1749878, -12.0582561, 2.77500439, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  1361. o85.C1 = CFrame.new(12.1932526, -2.325001, -15.6699905, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1362. o85.Part0 = o83
  1363. o85.Part1 = o86
  1364. o86.Name = "part"
  1365. o86.Parent = o1
  1366. o86.Material = Enum.Material.Granite
  1367. o86.BrickColor = BrickColor.new("Alder")
  1368. o86.Position = Vector3.new(-6.94033289, 2.69901991, -9.26476765)
  1369. o86.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1370. o86.Velocity = Vector3.new(-8.45957471e-22, 0.103487223, -1.27927137e-21)
  1371. o86.CanCollide = false
  1372. o86.Locked = true
  1373. o86.Size = Vector3.new(0.200000003, 0.349999934, 0.200000003)
  1374. o86.CFrame = CFrame.new(-6.94033289, 2.69901991, -9.26476765, 1.00000048, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1375. o86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1376. o86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1377. o86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1378. o86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1379. o86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1380. o86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1381. o86.Color = Color3.new(0.705882, 0.501961, 1)
  1382. o86.Position = Vector3.new(-6.94033289, 2.69901991, -9.26476765)
  1383. o86.Velocity = Vector3.new(-8.45957471e-22, 0.103487223, -1.27927137e-21)
  1384. o87.Parent = o86
  1385. o87.Scale = Vector3.new(0.5, 0.5, 0.5)
  1386. o88.Name = "part_Weld"
  1387. o88.Parent = o86
  1388. o88.C0 = CFrame.new(12.1932526, -2.325001, -15.6699905, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1389. o88.C1 = CFrame.new(11.9732513, -2.325001, -15.174984, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1390. o88.Part0 = o86
  1391. o88.Part1 = o89
  1392. o89.Name = "part"
  1393. o89.Parent = o1
  1394. o89.BrickColor = BrickColor.new("Institutional white")
  1395. o89.Position = Vector3.new(-6.72032118, 2.69900966, -9.75976944)
  1396. o89.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1397. o89.Velocity = Vector3.new(-8.3422432e-22, 0.103487223, -1.27407504e-21)
  1398. o89.CanCollide = false
  1399. o89.Locked = true
  1400. o89.Size = Vector3.new(0.5, 0.349999934, 1)
  1401. o89.CFrame = CFrame.new(-6.72032118, 2.69900966, -9.75976944, 1.00000048, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1402. o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1403. o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1404. o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1406. o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1407. o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1408. o89.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1409. o89.Position = Vector3.new(-6.72032118, 2.69900966, -9.75976944)
  1410. o89.Velocity = Vector3.new(-8.3422432e-22, 0.103487223, -1.27407504e-21)
  1411. o90.Parent = o89
  1412. o90.MeshId = "rbxasset://fonts/rightarm.mesh"
  1413. o90.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
  1414. o90.MeshType = Enum.MeshType.FileMesh
  1415. o91.Name = "part_Weld"
  1416. o91.Parent = o89
  1417. o91.C0 = CFrame.new(11.9732513, -2.325001, -15.174984, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1418. o91.C1 = CFrame.new(-15.424983, -12.1832542, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  1419. o91.Part0 = o89
  1420. o91.Part1 = o92
  1421. o92.Name = "part"
  1422. o92.Parent = o1
  1423. o92.Position = Vector3.new(-6.93032932, 2.6990211, -9.50977516)
  1424. o92.Rotation = Vector3.new(90, 0, 90)
  1425. o92.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1426. o92.Velocity = Vector3.new(-8.40138227e-22, 0.103487223, -1.27903065e-21)
  1427. o92.CanCollide = false
  1428. o92.Locked = true
  1429. o92.Size = Vector3.new(0.200000003, 0.349999934, 1)
  1430. o92.CFrame = CFrame.new(-6.93032932, 2.6990211, -9.50977516, -2.06523491e-05, -1.00000048, -1.18017197e-05, 1.552701e-05, 1.17719173e-05, -1, 0.999999702, -2.06456607e-05, 1.55568141e-05)
  1431. o92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1432. o92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1433. o92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1434. o92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1435. o92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1436. o92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1437. o92.Position = Vector3.new(-6.93032932, 2.6990211, -9.50977516)
  1438. o92.Velocity = Vector3.new(-8.40138227e-22, 0.103487223, -1.27903065e-21)
  1439. o93.Parent = o92
  1440. o93.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1441. o93.Scale = Vector3.new(0.125, 0.200000003, 0.25)
  1442. o93.MeshType = Enum.MeshType.FileMesh
  1443. o94.Name = "part_Weld"
  1444. o94.Parent = o92
  1445. o94.C0 = CFrame.new(-15.424983, -12.1832542, 2.32500601, 0, 0, 1, -1, 0, 0, 0, -1, 0)
  1446. o94.C1 = CFrame.new(11.4032574, -3.00500154, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1447. o94.Part0 = o92
  1448. o94.Part1 = o95
  1449. o95.Name = "part"
  1450. o95.Parent = o1
  1451. o95.BrickColor = BrickColor.new("Institutional white")
  1452. o95.Position = Vector3.new(-6.15031862, 3.37900352, -9.75976276)
  1453. o95.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1454. o95.Velocity = Vector3.new(4.45367996e-22, 0.103487223, 5.48244041e-22)
  1455. o95.CanCollide = false
  1456. o95.Locked = true
  1457. o95.Size = Vector3.new(0.5, 0.349999934, 1)
  1458. o95.CFrame = CFrame.new(-6.15031862, 3.37900352, -9.75976276, 1.00000048, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1459. o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1460. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1463. o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1464. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1465. o95.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1466. o95.Position = Vector3.new(-6.15031862, 3.37900352, -9.75976276)
  1467. o95.Velocity = Vector3.new(4.45367996e-22, 0.103487223, 5.48244041e-22)
  1468. o96.Parent = o95
  1469. o96.MeshId = "rbxasset://fonts/rightarm.mesh"
  1470. o96.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
  1471. o96.MeshType = Enum.MeshType.FileMesh
  1472. o97.Name = "part_Weld"
  1473. o97.Parent = o95
  1474. o97.C0 = CFrame.new(11.4032574, -3.00500154, -15.1749897, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1475. o97.C1 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1476. o97.Part0 = o95
  1477. o97.Part1 = o98
  1478. o98.Name = "part"
  1479. o98.Parent = o1
  1480. o98.Material = Enum.Material.Granite
  1481. o98.BrickColor = BrickColor.new("Alder")
  1482. o98.Position = Vector3.new(-6.45530605, 3.97900605, -9.75977421)
  1483. o98.Rotation = Vector3.new(0, 90, 0)
  1484. o98.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1485. o98.Velocity = Vector3.new(1.5744354e-21, 0.103487223, 2.13701162e-21)
  1486. o98.CanCollide = false
  1487. o98.Locked = true
  1488. o98.Shape = Enum.PartType.Cylinder
  1489. o98.Size = Vector3.new(1.12, 0.300000012, 0.949999988)
  1490. o98.CFrame = CFrame.new(-6.45530605, 3.97900605, -9.75977421, 2.06523491e-05, 1.18017197e-05, 1.00000048, -1.552701e-05, 1, -1.17719173e-05, -0.999999702, -1.55568141e-05, 2.06456607e-05)
  1491. o98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1492. o98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1493. o98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. o98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. o98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. o98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. o98.Color = Color3.new(0.705882, 0.501961, 1)
  1498. o98.Position = Vector3.new(-6.45530605, 3.97900605, -9.75977421)
  1499. o98.Velocity = Vector3.new(1.5744354e-21, 0.103487223, 2.13701162e-21)
  1500. o99.Name = "part_Weld"
  1501. o99.Parent = o98
  1502. o99.C0 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1503. o99.C1 = CFrame.new(11.7082539, -3.6050005, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1504. o99.Part0 = o98
  1505. o99.Part1 = o100
  1506. o100.Name = "part"
  1507. o100.Parent = o1
  1508. o100.BrickColor = BrickColor.new("Institutional white")
  1509. o100.Position = Vector3.new(-6.45530796, 3.97900605, -9.75978565)
  1510. o100.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1511. o100.Velocity = Vector3.new(1.57443571e-21, 0.103487223, 2.13701162e-21)
  1512. o100.CanCollide = false
  1513. o100.Locked = true
  1514. o100.Size = Vector3.new(0.5, 0.349999934, 1)
  1515. o100.CFrame = CFrame.new(-6.45530796, 3.97900605, -9.75978565, 1.00000048, 1.18017197e-05, -2.06523491e-05, -1.17719173e-05, 1, 1.552701e-05, 2.06456607e-05, -1.55568141e-05, 0.999999702)
  1516. o100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. o100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1518. o100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1519. o100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1520. o100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1521. o100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1522. o100.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1523. o100.Position = Vector3.new(-6.45530796, 3.97900605, -9.75978565)
  1524. o100.Velocity = Vector3.new(1.57443571e-21, 0.103487223, 2.13701162e-21)
  1525. o101.Parent = o100
  1526. o101.MeshId = "rbxasset://fonts/rightarm.mesh"
  1527. o101.Scale = Vector3.new(0.800000012, 0.0500000007, 1.10000002)
  1528. o101.MeshType = Enum.MeshType.FileMesh
  1529. o102.Name = "part_Weld"
  1530. o102.Parent = o100
  1531. o102.C0 = CFrame.new(11.7082539, -3.6050005, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1532. o102.C1 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1533. o102.Part0 = o100
  1534. o102.Part1 = o103
  1535. o103.Name = "part"
  1536. o103.Parent = o1
  1537. o103.Material = Enum.Material.Neon
  1538. o103.BrickColor = BrickColor.new("Alder")
  1539. o103.Position = Vector3.new(-6.45530605, 3.97900605, -9.75977421)
  1540. o103.Rotation = Vector3.new(0, 90, 0)
  1541. o103.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1542. o103.Velocity = Vector3.new(1.5744354e-21, 0.103487223, 2.13701162e-21)
  1543. o103.CanCollide = false
  1544. o103.Locked = true
  1545. o103.Shape = Enum.PartType.Cylinder
  1546. o103.Size = Vector3.new(1.11500001, 0.307500005, 0.957499981)
  1547. o103.CFrame = CFrame.new(-6.45530605, 3.97900605, -9.75977421, 2.06523491e-05, 1.18017197e-05, 1.00000048, -1.552701e-05, 1, -1.17719173e-05, -0.999999702, -1.55568141e-05, 2.06456607e-05)
  1548. o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1553. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1554. o103.Color = Color3.new(0.705882, 0.501961, 1)
  1555. o103.Position = Vector3.new(-6.45530605, 3.97900605, -9.75977421)
  1556. o103.Velocity = Vector3.new(1.5744354e-21, 0.103487223, 2.13701162e-21)
  1557. o104.Name = "part_Weld"
  1558. o104.Parent = o103
  1559. o104.C0 = CFrame.new(15.1749935, -3.6050005, 11.708252, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1560. o104.C1 = CFrame.new(-3.6050005, -15.1749859, 11.4082546, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  1561. o104.Part0 = o103
  1562. o104.Part1 = o105
  1563. o105.Name = "part"
  1564. o105.Parent = o1
  1565. o105.Material = Enum.Material.SmoothPlastic
  1566. o105.BrickColor = BrickColor.new("Institutional white")
  1567. o105.Position = Vector3.new(-6.15530872, 3.97900248, -9.75977612)
  1568. o105.Rotation = Vector3.new(90, 90, 0)
  1569. o105.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1570. o105.Velocity = Vector3.new(1.57442874e-21, 0.103487223, 2.14412465e-21)
  1571. o105.CanCollide = false
  1572. o105.Locked = true
  1573. o105.Shape = Enum.PartType.Cylinder
  1574. o105.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
  1575. o105.CFrame = CFrame.new(-6.15530872, 3.97900248, -9.75977612, 1.18017197e-05, -2.06523491e-05, 1.00000048, 1, 1.552701e-05, -1.17719173e-05, -1.55568141e-05, 0.999999702, 2.06456607e-05)
  1576. o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1577. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1578. o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1579. o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1580. o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1581. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1582. o105.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1583. o105.Position = Vector3.new(-6.15530872, 3.97900248, -9.75977612)
  1584. o105.Velocity = Vector3.new(1.57442874e-21, 0.103487223, 2.14412465e-21)
  1585. o106.Parent = o105
  1586. o106.Scale = Vector3.new(0.224999994, 0.736000001, 0.224999994)
  1587. o107.Name = "part_Weld"
  1588. o107.Parent = o105
  1589. o107.C0 = CFrame.new(-3.6050005, -15.1749859, 11.4082546, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  1590. o107.C1 = CFrame.new(-3.6050005, -15.719985, 11.4082508, 0, 1, 0, 0, 0, 1, 1, 0, 0)
  1591. o107.Part0 = o105
  1592. o107.Part1 = o11
  1593. o108.Parent = o1
  1594. o108.Material = Enum.Material.SmoothPlastic
  1595. o108.BrickColor = BrickColor.new("Institutional white")
  1596. o108.Position = Vector3.new(-6.47820044, 2.08811569, -10.2095814)
  1597. o108.Rotation = Vector3.new(-45, 90, 0)
  1598. o108.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1599. o108.Velocity = Vector3.new(-1.97310586e-21, 0.103487223, -2.89330411e-21)
  1600. o108.CanCollide = false
  1601. o108.Locked = true
  1602. o108.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
  1603. o108.CFrame = CFrame.new(-6.47820044, 2.08811569, -10.2095814, 6.23700225e-06, 2.29261204e-05, 1.00000024, -0.707117677, 0.707095861, -1.18107737e-05, -0.707095623, -0.707117558, 2.06147542e-05)
  1604. o108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1605. o108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. o108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1607. o108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1608. o108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1609. o108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1610. o108.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1611. o108.Position = Vector3.new(-6.47820044, 2.08811569, -10.2095814)
  1612. o108.Velocity = Vector3.new(-1.97310586e-21, 0.103487223, -2.89330411e-21)
  1613. o109.Parent = o108
  1614. o109.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  1615. o110.Name = "Part_Weld"
  1616. o110.Parent = o108
  1617. o110.C0 = CFrame.new(11.62432, 9.20018959, 11.7311325, -4.37113883e-08, -0.707106709, -0.707106829, 0, 0.707106829, -0.707106709, 1, -3.09086161e-08, -3.09086197e-08)
  1618. o110.C1 = CFrame.new(-14.5369148, 6.04063177, -11.7311316, -4.37113883e-08, 0.500000119, 0.866025329, 0, 0.866025329, -0.500000119, -1, -2.18556995e-08, -3.78551697e-08)
  1619. o110.Part0 = o108
  1620. o110.Part1 = o111
  1621. o111.Parent = o1
  1622. o111.Material = Enum.Material.SmoothPlastic
  1623. o111.BrickColor = BrickColor.new("Institutional white")
  1624. o111.Position = Vector3.new(-6.47821569, 2.41113019, -9.32508469)
  1625. o111.Rotation = Vector3.new(-30, -90, 0)
  1626. o111.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1627. o111.Velocity = Vector3.new(-1.38626656e-21, 0.103487223, -2.03408479e-21)
  1628. o111.CanCollide = false
  1629. o111.Locked = true
  1630. o111.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
  1631. o111.CFrame = CFrame.new(-6.47821569, 2.41113019, -9.32508469, -1.20441282e-05, 2.05193683e-05, -1.00000024, 0.50001353, 0.86601758, 1.17580084e-05, 0.866017342, -0.500013471, -2.06835175e-05)
  1632. o111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1633. o111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1634. o111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1635. o111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1636. o111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1637. o111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1638. o111.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1639. o111.Position = Vector3.new(-6.47821569, 2.41113019, -9.32508469)
  1640. o111.Velocity = Vector3.new(-1.38626656e-21, 0.103487223, -2.03408479e-21)
  1641. o112.Parent = o111
  1642. o112.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  1643. o113.Name = "Part_Weld"
  1644. o113.Parent = o111
  1645. o113.C0 = CFrame.new(-14.5369148, 6.04063177, -11.7311316, -4.37113883e-08, 0.500000119, 0.866025329, 0, 0.866025329, -0.500000119, -1, -2.18556995e-08, -3.78551697e-08)
  1646. o113.C1 = CFrame.new(11.7440453, -9.10902119, 11.7311335, -4.37113883e-08, 0.500000119, -0.866025329, 0, 0.866025329, 0.500000119, 1, 2.18556995e-08, -3.78551697e-08)
  1647. o113.Part0 = o111
  1648. o113.Part1 = o114
  1649. o114.Parent = o1
  1650. o114.Material = Enum.Material.SmoothPlastic
  1651. o114.BrickColor = BrickColor.new("Institutional white")
  1652. o114.Position = Vector3.new(-6.47819757, 2.39061642, -10.2095842)
  1653. o114.Rotation = Vector3.new(30, 90, 0)
  1654. o114.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1655. o114.Velocity = Vector3.new(-1.40386878e-21, 0.103487223, -2.08865104e-21)
  1656. o114.CanCollide = false
  1657. o114.Locked = true
  1658. o114.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
  1659. o114.CFrame = CFrame.new(-6.47819757, 2.39061642, -10.2095842, 2.37267905e-05, -1.3298795e-07, 1.00000024, 0.499986678, 0.866033077, -1.17580094e-05, -0.866032958, 0.499986529, 2.06078075e-05)
  1660. o114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1661. o114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1662. o114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1663. o114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1664. o114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1665. o114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1666. o114.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1667. o114.Position = Vector3.new(-6.47819757, 2.39061642, -10.2095842)
  1668. o114.Velocity = Vector3.new(-1.40386878e-21, 0.103487223, -2.08865104e-21)
  1669. o115.Parent = o114
  1670. o115.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  1671. o116.Name = "Part_Weld"
  1672. o116.Parent = o114
  1673. o116.C0 = CFrame.new(11.7440453, -9.10902119, 11.7311335, -4.37113883e-08, 0.500000119, -0.866025329, 0, 0.866025329, 0.500000119, 1, 2.18556995e-08, -3.78551697e-08)
  1674. o116.C1 = CFrame.new(-1.92440557, 15.179328, -11.7311325, -4.37113883e-08, 1, -1.62920685e-07, 0, -1.62920685e-07, -1, -1, -4.37113883e-08, 7.12148964e-15)
  1675. o116.Part0 = o114
  1676. o116.Part1 = o117
  1677. o117.Parent = o1
  1678. o117.Material = Enum.Material.SmoothPlastic
  1679. o117.BrickColor = BrickColor.new("Institutional white")
  1680. o117.Position = Vector3.new(-6.47820807, 2.29841208, -9.75540829)
  1681. o117.Rotation = Vector3.new(-90, -90, 0)
  1682. o117.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1683. o117.Velocity = Vector3.new(-1.58815931e-21, 0.103487223, -2.33391514e-21)
  1684. o117.CanCollide = false
  1685. o117.Locked = true
  1686. o117.Size = Vector3.new(0.200000003, 0.664949954, 0.200000003)
  1687. o117.CFrame = CFrame.new(-6.47820807, 2.29841208, -9.75540829, 1.17263735e-05, 2.06523491e-05, -1.00000024, 1, -1.56462193e-05, 1.17361533e-05, -1.57058239e-05, -0.999999821, -2.06456625e-05)
  1688. o117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1689. o117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1690. o117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1691. o117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1692. o117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1693. o117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1694. o117.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1695. o117.Position = Vector3.new(-6.47820807, 2.29841208, -9.75540829)
  1696. o117.Velocity = Vector3.new(-1.58815931e-21, 0.103487223, -2.33391514e-21)
  1697. o118.Parent = o117
  1698. o118.Scale = Vector3.new(0.158149958, 1, 0.763249993)
  1699. o118.MeshType = Enum.MeshType.Brick
  1700. o119.Name = "Part_Weld"
  1701. o119.Parent = o117
  1702. o119.C0 = CFrame.new(-1.92440557, 15.179328, -11.7311325, -4.37113883e-08, 1, -1.62920685e-07, 0, -1.62920685e-07, -1, -1, -4.37113883e-08, 7.12148964e-15)
  1703. o119.C1 = CFrame.new(-14.3873434, 6.09654665, -11.7311316, -4.37113883e-08, 0.5, 0.866025388, 0, 0.866025388, -0.5, -1, -2.18556941e-08, -3.78551732e-08)
  1704. o119.Part0 = o117
  1705. o119.Part1 = o120
  1706. o120.Parent = o1
  1707. o120.Material = Enum.Material.SmoothPlastic
  1708. o120.BrickColor = BrickColor.new("Institutional white")
  1709. o120.Position = Vector3.new(-6.47821474, 2.2879169, -9.42665863)
  1710. o120.Rotation = Vector3.new(-30, -90, 0)
  1711. o120.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1712. o120.Velocity = Vector3.new(-1.61571406e-21, 0.103487223, -2.36183249e-21)
  1713. o120.CanCollide = false
  1714. o120.Locked = true
  1715. o120.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
  1716. o120.CFrame = CFrame.new(-6.47821474, 2.2879169, -9.42665863, -1.20441318e-05, 2.05193646e-05, -1.00000024, 0.500013411, 0.86601764, 1.17580084e-05, 0.866017401, -0.500013351, -2.06835175e-05)
  1717. o120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1718. o120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1719. o120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1720. o120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1721. o120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1722. o120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1723. o120.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1724. o120.Position = Vector3.new(-6.47821474, 2.2879169, -9.42665863)
  1725. o120.Velocity = Vector3.new(-1.61571406e-21, 0.103487223, -2.36183249e-21)
  1726. o121.Parent = o120
  1727. o121.Scale = Vector3.new(0.158149958, 1, 0.763249993)
  1728. o121.MeshType = Enum.MeshType.Brick
  1729. o122.Name = "Part_Weld"
  1730. o122.Parent = o120
  1731. o122.C0 = CFrame.new(-14.3873434, 6.09654665, -11.7311316, -4.37113883e-08, 0.5, 0.866025388, 0, 0.866025388, -0.5, -1, -2.18556941e-08, -3.78551732e-08)
  1732. o122.C1 = CFrame.new(-9.81113243, -12.2642508, -11.7311316, -4.37113883e-08, -0.707106709, 0.707106829, 0, 0.707106829, 0.707106709, -1, 3.09086161e-08, -3.09086197e-08)
  1733. o122.Part0 = o120
  1734. o122.Part1 = o123
  1735. o123.Parent = o1
  1736. o123.Material = Enum.Material.SmoothPlastic
  1737. o123.BrickColor = BrickColor.new("Institutional white")
  1738. o123.Position = Vector3.new(-6.47821808, 2.10862899, -9.32507992)
  1739. o123.Rotation = Vector3.new(45, -90, 0)
  1740. o123.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1741. o123.Velocity = Vector3.new(-1.95550445e-21, 0.103487223, -2.83873907e-21)
  1742. o123.CanCollide = false
  1743. o123.Locked = true
  1744. o123.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
  1745. o123.CFrame = CFrame.new(-6.47821808, 2.10862899, -9.32507992, -2.29698326e-05, -6.2807112e-06, -1.00000024, -0.707095742, 0.707117736, 1.18107728e-05, 0.707117617, 0.707095504, -2.06765726e-05)
  1746. o123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1747. o123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1748. o123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1749. o123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1750. o123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1751. o123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. o123.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1753. o123.Position = Vector3.new(-6.47821808, 2.10862899, -9.32507992)
  1754. o123.Velocity = Vector3.new(-1.95550445e-21, 0.103487223, -2.83873907e-21)
  1755. o124.Parent = o123
  1756. o124.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  1757. o125.Name = "Part_Weld"
  1758. o125.Parent = o123
  1759. o125.C0 = CFrame.new(-9.81113243, -12.2642508, -11.7311316, -4.37113883e-08, -0.707106709, 0.707106829, 0, 0.707106829, 0.707106709, -1, 3.09086161e-08, -3.09086197e-08)
  1760. o125.C1 = CFrame.new(-11.8906012, -9.07503128, -11.7311316, -4.37113883e-08, -0.5, 0.866025388, 0, 0.866025388, 0.5, -1, 2.18556941e-08, -3.78551732e-08)
  1761. o125.Part0 = o123
  1762. o125.Part1 = o126
  1763. o126.Parent = o1
  1764. o126.Material = Enum.Material.SmoothPlastic
  1765. o126.BrickColor = BrickColor.new("Institutional white")
  1766. o126.Position = Vector3.new(-6.47820091, 2.28790617, -10.0996571)
  1767. o126.Rotation = Vector3.new(30, -90, 0)
  1768. o126.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1769. o126.Velocity = Vector3.new(-1.59975569e-21, 0.103487223, -2.36186076e-21)
  1770. o126.CanCollide = false
  1771. o126.Locked = true
  1772. o126.Size = Vector3.new(0.200000003, 0.460449964, 0.200000003)
  1773. o126.CFrame = CFrame.new(-6.47820091, 2.28790617, -10.0996571, -2.38142111e-05, -1.32987353e-07, -1.00000024, -0.499986589, 0.866033018, 1.18017197e-05, 0.866032839, 0.49998641, -2.06835193e-05)
  1774. o126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1775. o126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1776. o126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1777. o126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1778. o126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1779. o126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1780. o126.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1781. o126.Position = Vector3.new(-6.47820091, 2.28790617, -10.0996571)
  1782. o126.Velocity = Vector3.new(-1.59975569e-21, 0.103487223, -2.36186076e-21)
  1783. o127.Parent = o126
  1784. o127.Scale = Vector3.new(0.158149958, 1, 0.763249993)
  1785. o127.MeshType = Enum.MeshType.Brick
  1786. o128.Name = "Part_Weld"
  1787. o128.Parent = o126
  1788. o128.C0 = CFrame.new(-11.8906012, -9.07503128, -11.7311316, -4.37113883e-08, -0.5, 0.866025388, 0, 0.866025388, 0.5, -1, 2.18556941e-08, -3.78551732e-08)
  1789. o128.C1 = CFrame.new(12.2190666, 0.378772736, 14.6808443, 0.965936959, -0.258777469, 2.36039277e-08, -0.258777469, -0.965936959, -1.62644113e-07, 6.4888539e-08, 1.50995803e-07, -1)
  1790. o128.Part0 = o126
  1791. o128.Part1 = o129
  1792. o129.Parent = o1
  1793. o129.Material = Enum.Material.Neon
  1794. o129.BrickColor = BrickColor.new("Alder")
  1795. o129.Position = Vector3.new(-6.45187712, 3.90188384, -10.2539158)
  1796. o129.Rotation = Vector3.new(180, 0, 15)
  1797. o129.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1798. o129.Velocity = Vector3.new(1.44104263e-21, 0.103487223, 1.93194979e-21)
  1799. o129.CanCollide = false
  1800. o129.Locked = true
  1801. o129.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
  1802. o129.CFrame = CFrame.new(-6.45187712, 3.90188384, -10.2539158, 0.965934157, -0.258788884, 2.07172397e-05, -0.258788824, -0.96593374, -1.53183937e-05, 2.39724868e-05, 9.45932607e-06, -0.999999642)
  1803. o129.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1804. o129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1805. o129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1806. o129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1807. o129.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. o129.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1809. o129.Color = Color3.new(0.705882, 0.501961, 1)
  1810. o129.Position = Vector3.new(-6.45187712, 3.90188384, -10.2539158)
  1811. o129.Velocity = Vector3.new(1.44104263e-21, 0.103487223, 1.93194979e-21)
  1812. o130.Parent = o129
  1813. o130.Scale = Vector3.new(0.392943025, 0.104347944, 0.606715083)
  1814. o130.MeshType = Enum.MeshType.Brick
  1815. o131.Name = "Part_Weld"
  1816. o131.Parent = o129
  1817. o131.C0 = CFrame.new(12.2190666, 0.378772736, 14.6808443, 0.965936959, -0.258777469, 2.36039277e-08, -0.258777469, -0.965936959, -1.62644113e-07, 6.4888539e-08, 1.50995803e-07, -1)
  1818. o131.C1 = CFrame.new(3.60923386, -11.7324982, 14.6808453, 4.31100525e-05, -1, 1.50998545e-07, -1, -4.31100525e-05, -6.35665174e-08, 6.3573026e-08, -1.50995803e-07, -1)
  1819. o131.Part0 = o129
  1820. o131.Part1 = o132
  1821. o132.Parent = o1
  1822. o132.Material = Enum.Material.Neon
  1823. o132.BrickColor = BrickColor.new("Alder")
  1824. o132.Position = Vector3.new(-6.47970009, 3.98272705, -10.2539177)
  1825. o132.Rotation = Vector3.new(180, 0, 90)
  1826. o132.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1827. o132.Velocity = Vector3.new(1.59317106e-21, 0.103487223, 2.14633235e-21)
  1828. o132.CanCollide = false
  1829. o132.Locked = true
  1830. o132.Size = Vector3.new(0.302901715, 0.229906425, 0.229906395)
  1831. o132.CFrame = CFrame.new(-6.47970009, 3.98272705, -10.2539177, 3.13371347e-05, -1.00000024, 2.0715921e-05, -0.999999821, -3.13073397e-05, -1.5620386e-05, 1.56435381e-05, -2.07060621e-05, -0.999999642)
  1832. o132.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1833. o132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1834. o132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1835. o132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1836. o132.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1837. o132.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1838. o132.Color = Color3.new(0.705882, 0.501961, 1)
  1839. o132.Position = Vector3.new(-6.47970009, 3.98272705, -10.2539177)
  1840. o132.Velocity = Vector3.new(1.59317106e-21, 0.103487223, 2.14633235e-21)
  1841. o133.Parent = o132
  1842. o133.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
  1843. o133.MeshType = Enum.MeshType.Brick
  1844. o134.Name = "Part_Weld"
  1845. o134.Parent = o132
  1846. o134.C0 = CFrame.new(3.60923386, -11.7324982, 14.6808453, 4.31100525e-05, -1, 1.50998545e-07, -1, -4.31100525e-05, -6.35665174e-08, 6.3573026e-08, -1.50995803e-07, -1)
  1847. o134.C1 = CFrame.new(8.31720257, 8.98535156, 14.6808434, 0.866003811, 0.500037432, 2.23302301e-08, 0.500037432, -0.866003811, -1.61465636e-07, -6.14007902e-08, 1.50995803e-07, -1)
  1848. o134.Part0 = o132
  1849. o134.Part1 = o135
  1850. o135.Parent = o1
  1851. o135.Material = Enum.Material.Neon
  1852. o135.BrickColor = BrickColor.new("Alder")
  1853. o135.Position = Vector3.new(-6.44278574, 3.9964304, -10.2539167)
  1854. o135.Rotation = Vector3.new(180, 0, -30)
  1855. o135.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1856. o135.Velocity = Vector3.new(1.61895755e-21, 0.103487223, 2.18365968e-21)
  1857. o135.CanCollide = false
  1858. o135.Locked = true
  1859. o135.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
  1860. o135.CFrame = CFrame.new(-6.44278574, 3.9964304, -10.2539167, 0.866009891, 0.500027359, 2.0590951e-05, 0.50002712, -0.866009533, -1.53183937e-05, 1.0152984e-05, 2.35767184e-05, -0.999999642)
  1861. o135.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1862. o135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1863. o135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1864. o135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1865. o135.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1866. o135.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1867. o135.Color = Color3.new(0.705882, 0.501961, 1)
  1868. o135.Position = Vector3.new(-6.44278574, 3.9964304, -10.2539167)
  1869. o135.Velocity = Vector3.new(1.61895755e-21, 0.103487223, 2.18365968e-21)
  1870. o136.Parent = o135
  1871. o136.Scale = Vector3.new(0.447949916, 0.104347944, 0.606715083)
  1872. o136.MeshType = Enum.MeshType.Brick
  1873. o137.Name = "Part_Weld"
  1874. o137.Parent = o135
  1875. o137.C0 = CFrame.new(8.31720257, 8.98535156, 14.6808434, 0.866003811, 0.500037432, 2.23302301e-08, 0.500037432, -0.866003811, -1.61465636e-07, -6.14007902e-08, 1.50995803e-07, -1)
  1876. o137.C1 = CFrame.new(11.9701443, -2.67644763, 14.6808453, 0.866046965, -0.499962628, 2.1012454e-09, -0.499962628, -0.866046965, -1.75563628e-07, 8.95950336e-08, 1.50995803e-07, -1)
  1877. o137.Part0 = o135
  1878. o137.Part1 = o138
  1879. o138.Parent = o1
  1880. o138.Material = Enum.Material.Neon
  1881. o138.BrickColor = BrickColor.new("Alder")
  1882. o138.Position = Vector3.new(-6.45187712, 4.04068899, -10.2539177)
  1883. o138.Rotation = Vector3.new(180, 0, 30)
  1884. o138.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1885. o138.Velocity = Vector3.new(1.70224218e-21, 0.103487223, 2.30117183e-21)
  1886. o138.CanCollide = false
  1887. o138.Locked = true
  1888. o138.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
  1889. o138.CFrame = CFrame.new(-6.45187712, 4.04068899, -10.2539177, 0.866041303, -0.499972939, 2.07419471e-05, -0.499972761, -0.866040945, -1.53183955e-05, 2.56252988e-05, 2.92012328e-06, -0.999999642)
  1890. o138.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1891. o138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1892. o138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1893. o138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1894. o138.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1895. o138.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1896. o138.Color = Color3.new(0.705882, 0.501961, 1)
  1897. o138.Position = Vector3.new(-6.45187712, 4.04068899, -10.2539177)
  1898. o138.Velocity = Vector3.new(1.70224218e-21, 0.103487223, 2.30117183e-21)
  1899. o139.Parent = o138
  1900. o139.Scale = Vector3.new(0.392943025, 0.104347944, 0.606715083)
  1901. o139.MeshType = Enum.MeshType.Brick
  1902. o140.Name = "Part_Weld"
  1903. o140.Parent = o138
  1904. o140.C0 = CFrame.new(11.9701443, -2.67644763, 14.6808453, 0.866046965, -0.499962628, 2.1012454e-09, -0.499962628, -0.866046965, -1.75563628e-07, 8.95950336e-08, 1.50995803e-07, -1)
  1905. o140.C1 = CFrame.new(-10.3952847, 6.437222, -15.6695423, -0.965936959, -0.258777469, 2.26190878e-07, 0.258777469, -0.965936959, 9.57233368e-08, 1.93715096e-07, 1.50995817e-07, 1)
  1906. o140.Part0 = o138
  1907. o140.Part1 = o141
  1908. o141.Parent = o1
  1909. o141.Material = Enum.Material.Neon
  1910. o141.BrickColor = BrickColor.new("Alder")
  1911. o141.Position = Vector3.new(-6.45406055, 3.90189886, -9.26521587)
  1912. o141.Rotation = Vector3.new(0, 0, -165)
  1913. o141.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1914. o141.Velocity = Vector3.new(1.41759703e-21, 0.103487223, 1.93193788e-21)
  1915. o141.CanCollide = false
  1916. o141.Locked = true
  1917. o141.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
  1918. o141.CFrame = CFrame.new(-6.45406055, 3.90189886, -9.26521587, -0.965940237, 0.258766174, -2.0458634e-05, -0.258766055, -0.965939879, 1.56203841e-05, -1.57049162e-05, 2.04016669e-05, 0.999999642)
  1919. o141.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1920. o141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1921. o141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1922. o141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1923. o141.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1924. o141.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1925. o141.Color = Color3.new(0.705882, 0.501961, 1)
  1926. o141.Position = Vector3.new(-6.45406055, 3.90189886, -9.26521587)
  1927. o141.Velocity = Vector3.new(1.41759703e-21, 0.103487223, 1.93193788e-21)
  1928. o142.Parent = o141
  1929. o142.Scale = Vector3.new(0.392943025, 0.104347944, 0.606715083)
  1930. o142.MeshType = Enum.MeshType.Brick
  1931. o143.Parent = o1
  1932. o143.Material = Enum.Material.Neon
  1933. o143.BrickColor = BrickColor.new("Alder")
  1934. o143.Position = Vector3.new(-6.46314669, 3.99644661, -9.26521683)
  1935. o143.Rotation = Vector3.new(0, 0, 150)
  1936. o143.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1937. o143.Velocity = Vector3.new(1.59551165e-21, 0.103487223, 2.183216e-21)
  1938. o143.CanCollide = false
  1939. o143.Locked = true
  1940. o143.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
  1941. o143.CFrame = CFrame.new(-6.46314669, 3.99644661, -9.26521683, -0.86599803, -0.500047565, -2.03474556e-05, 0.500047565, -0.86599803, 1.5691694e-05, -2.54674487e-05, 3.41428176e-06, 1)
  1942. o143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1943. o143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1944. o143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1945. o143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1946. o143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1947. o143.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1948. o143.Color = Color3.new(0.705882, 0.501961, 1)
  1949. o143.Position = Vector3.new(-6.46314669, 3.99644661, -9.26521683)
  1950. o143.Velocity = Vector3.new(1.59551165e-21, 0.103487223, 2.183216e-21)
  1951. o144.Parent = o143
  1952. o144.Scale = Vector3.new(0.447949916, 0.104347944, 0.606715083)
  1953. o144.MeshType = Enum.MeshType.Brick
  1954. o145.Name = "Part_Weld"
  1955. o145.Parent = o143
  1956. o145.C0 = CFrame.new(-11.9575319, -2.72144461, -15.6695414, -0.866003811, 0.500037432, 1.82585694e-07, -0.500037432, -0.866003811, 2.79785695e-07, 2.98023224e-07, 1.50995803e-07, 1)
  1957. o145.C1 = CFrame.new(-8.30559921, 9.02858734, -15.6695433, -0.866046965, -0.499962658, 2.17448431e-07, 0.499962658, -0.866046965, 4.88191958e-08, 1.63912773e-07, 1.50995817e-07, 1)
  1958. o145.Part0 = o143
  1959. o145.Part1 = o146
  1960. o146.Parent = o1
  1961. o146.Material = Enum.Material.Neon
  1962. o146.BrickColor = BrickColor.new("Alder")
  1963. o146.Position = Vector3.new(-6.45405054, 4.04070663, -9.26521778)
  1964. o146.Rotation = Vector3.new(0, 0, -150)
  1965. o146.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1966. o146.Velocity = Vector3.new(1.6787989e-21, 0.103487223, 2.30116376e-21)
  1967. o146.CanCollide = false
  1968. o146.Locked = true
  1969. o146.Size = Vector3.new(0.200000003, 0.229906425, 0.229906395)
  1970. o146.CFrame = CFrame.new(-6.45405054, 4.04070663, -9.26521778, -0.866052866, 0.499952525, -2.0481566e-05, -0.499952525, -0.866052866, 1.56916958e-05, -9.89301407e-06, 2.38296489e-05, 1)
  1971. o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1972. o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1973. o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1974. o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1975. o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1976. o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1977. o146.Color = Color3.new(0.705882, 0.501961, 1)
  1978. o146.Position = Vector3.new(-6.45405054, 4.04070663, -9.26521778)
  1979. o146.Velocity = Vector3.new(1.6787989e-21, 0.103487223, 2.30116376e-21)
  1980. o147.Parent = o146
  1981. o147.Scale = Vector3.new(0.392943025, 0.104347944, 0.606715083)
  1982. o147.MeshType = Enum.MeshType.Brick
  1983. o148.Name = "Part_Weld"
  1984. o148.Parent = o146
  1985. o148.C0 = CFrame.new(-8.30559921, 9.02858734, -15.6695433, -0.866046965, -0.499962658, 2.17448431e-07, 0.499962658, -0.866046965, 4.88191958e-08, 1.63912773e-07, 1.50995817e-07, 1)
  1986. o148.C1 = CFrame.new(3.60822964, 11.6793289, -15.6695404, -4.30782638e-05, -1, -1.50987475e-07, 1, -4.30782638e-05, -1.93721604e-07, 1.93715096e-07, -1.50995817e-07, 1)
  1987. o148.Part0 = o146
  1988. o148.Part1 = o149
  1989. o149.Parent = o1
  1990. o149.Material = Enum.Material.Neon
  1991. o149.BrickColor = BrickColor.new("Alder")
  1992. o149.Position = Vector3.new(-6.42622948, 3.9827435, -9.26521683)
  1993. o149.Rotation = Vector3.new(0, 0, -90)
  1994. o149.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  1995. o149.Velocity = Vector3.new(1.56972556e-21, 0.103487223, 2.14764218e-21)
  1996. o149.CanCollide = false
  1997. o149.Locked = true
  1998. o149.Size = Vector3.new(0.302901715, 0.229906425, 0.229906395)
  1999. o149.CFrame = CFrame.new(-6.42622948, 3.9827435, -9.26521683, -5.4800279e-05, 1, -2.04517673e-05, -1, -5.47999662e-05, 1.53897035e-05, 1.53885849e-05, 2.04526095e-05, 1)
  2000. o149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2001. o149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2002. o149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2003. o149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2004. o149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2005. o149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2006. o149.Color = Color3.new(0.705882, 0.501961, 1)
  2007. o149.Position = Vector3.new(-6.42622948, 3.9827435, -9.26521683)
  2008. o149.Velocity = Vector3.new(1.56972556e-21, 0.103487223, 2.14764218e-21)
  2009. o150.Parent = o149
  2010. o150.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
  2011. o150.MeshType = Enum.MeshType.Brick
  2012. o151.Name = "part_Weld"
  2013. o151.Parent = o149
  2014. o151.C0 = CFrame.new(3.60822964, 11.6793289, -15.6695404, -4.30782638e-05, -1, -1.50987475e-07, 1, -4.30782638e-05, -1.93721604e-07, 1.93715096e-07, -1.50995817e-07, 1)
  2015. o151.C1 = CFrame.new(11.7252579, -2.88699794, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2016. o151.Part0 = o149
  2017. o151.Part1 = o152
  2018. o152.Name = "part"
  2019. o152.Parent = o1
  2020. o152.Material = Enum.Material.SmoothPlastic
  2021. o152.BrickColor = BrickColor.new("Institutional white")
  2022. o152.Position = Vector3.new(-6.47231483, 3.26100397, -9.75976753)
  2023. o152.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2024. o152.Velocity = Vector3.new(2.2331905e-22, 0.103487223, 2.26718599e-22)
  2025. o152.CanCollide = false
  2026. o152.Locked = true
  2027. o152.Size = Vector3.new(1, 2, 1)
  2028. o152.CFrame = CFrame.new(-6.47231483, 3.26100397, -9.75976753, 1, 1.17220197e-05, -2.06454806e-05, -1.17216987e-05, 1, 1.55407015e-05, 2.06456625e-05, -1.55404614e-05, 1)
  2029. o152.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2030. o152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2031. o152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2032. o152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2033. o152.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2034. o152.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2035. o152.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2036. o152.Position = Vector3.new(-6.47231483, 3.26100397, -9.75976753)
  2037. o152.Velocity = Vector3.new(2.2331905e-22, 0.103487223, 2.26718599e-22)
  2038. o153.Parent = o152
  2039. o153.Scale = Vector3.new(0.5, 1, 0.5)
  2040. o154.Name = "part_Weld"
  2041. o154.Parent = o152
  2042. o154.C0 = CFrame.new(11.7252579, -2.88699794, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2043. o154.C1 = CFrame.new(11.7252579, -2.90149784, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2044. o154.Part0 = o152
  2045. o154.Part1 = o155
  2046. o155.Name = "part"
  2047. o155.Parent = o1
  2048. o155.Material = Enum.Material.Neon
  2049. o155.BrickColor = BrickColor.new("Alder")
  2050. o155.Position = Vector3.new(-6.47231483, 3.27550387, -9.75976753)
  2051. o155.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2052. o155.Velocity = Vector3.new(2.5060455e-22, 0.103487223, 2.65288394e-22)
  2053. o155.CanCollide = false
  2054. o155.Locked = true
  2055. o155.Size = Vector3.new(0.849999964, 2.04999995, 1)
  2056. o155.CFrame = CFrame.new(-6.47231483, 3.27550387, -9.75976753, 1, 1.17220197e-05, -2.06454806e-05, -1.17216987e-05, 1, 1.55407015e-05, 2.06456625e-05, -1.55404614e-05, 1)
  2057. o155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2058. o155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2059. o155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2060. o155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2061. o155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2062. o155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2063. o155.Color = Color3.new(0.705882, 0.501961, 1)
  2064. o155.Position = Vector3.new(-6.47231483, 3.27550387, -9.75976753)
  2065. o155.Velocity = Vector3.new(2.5060455e-22, 0.103487223, 2.65288394e-22)
  2066. o156.Parent = o155
  2067. o156.Scale = Vector3.new(0.5, 1, 0.5)
  2068. o157.Name = "part_Weld"
  2069. o157.Parent = o155
  2070. o157.C0 = CFrame.new(11.7252579, -2.90149784, -15.1749821, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2071. o157.C1 = CFrame.new(11.7250099, -2.9104979, -15.1744814, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2072. o157.Part0 = o155
  2073. o157.Part1 = o14
  2074. o158.Name = "part"
  2075. o158.Parent = o1
  2076. o158.Material = Enum.Material.Metal
  2077. o158.Position = Vector3.new(-7.26236534, 2.07540035, -10.0107718)
  2078. o158.Rotation = Vector3.new(89.9899979, 85, 90.0099945)
  2079. o158.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2080. o158.Velocity = Vector3.new(-2.00175467e-21, 0.103487223, -2.94574849e-21)
  2081. o158.CanCollide = false
  2082. o158.Locked = true
  2083. o158.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2084. o158.CFrame = CFrame.new(-7.26236534, 2.07540035, -10.0107718, -2.06523491e-05, -0.087161839, 0.996196568, 1.552701e-05, -0.996195853, -0.0871618837, 0.999999702, 1.36983799e-05, 2.19229241e-05)
  2085. o158.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2086. o158.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2087. o158.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. o158.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. o158.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2090. o158.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2091. o158.Position = Vector3.new(-7.26236534, 2.07540035, -10.0107718)
  2092. o158.Velocity = Vector3.new(-2.00175467e-21, 0.103487223, -2.94574849e-21)
  2093. o159.Parent = o158
  2094. o159.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  2095. o159.MeshType = Enum.MeshType.Brick
  2096. o160.Name = "part_Weld"
  2097. o160.Parent = o158
  2098. o160.C0 = CFrame.new(-14.9239836, 0.604206085, 12.6159229, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
  2099. o160.C1 = CFrame.new(-14.9239779, 3.40832949, 12.0952158, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
  2100. o160.Part0 = o158
  2101. o160.Part1 = o179
  2102. o161.Name = "part"
  2103. o161.Parent = o1
  2104. o161.Material = Enum.Material.Metal
  2105. o161.BrickColor = BrickColor.new("Really black")
  2106. o161.Position = Vector3.new(-6.9128418, 2.61751699, -9.51077843)
  2107. o161.Rotation = Vector3.new(-90, -10, -90)
  2108. o161.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2109. o161.Velocity = Vector3.new(-9.93486224e-22, 0.103487223, -1.49541673e-21)
  2110. o161.CanCollide = false
  2111. o161.Locked = true
  2112. o161.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2113. o161.CFrame = CFrame.new(-6.9128418, 2.61751699, -9.51077843, -2.06523491e-05, 0.984810472, -0.173636466, 1.552701e-05, 0.173636392, 0.984809875, 0.999999702, 1.76305984e-05, -1.890555e-05)
  2114. o161.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2115. o161.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2116. o161.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2117. o161.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2118. o161.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2119. o161.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2120. o161.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2121. o161.Position = Vector3.new(-6.9128418, 2.61751699, -9.51077843)
  2122. o161.Velocity = Vector3.new(-9.93486224e-22, 0.103487223, -1.49541673e-21)
  2123. o162.Parent = o161
  2124. o162.Scale = Vector3.new(0.075000003, 1.5, 1)
  2125. o162.MeshType = Enum.MeshType.Wedge
  2126. o163.Name = "part_Weld"
  2127. o163.Parent = o161
  2128. o163.C0 = CFrame.new(-15.4239779, 11.5913601, -4.32197857, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
  2129. o163.C1 = CFrame.new(11.7132454, -2.42000055, -15.1749859, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2130. o163.Part0 = o161
  2131. o163.Part1 = o18
  2132. o164.Name = "part"
  2133. o164.Parent = o1
  2134. o164.Material = Enum.Material.Metal
  2135. o164.BrickColor = BrickColor.new("Really black")
  2136. o164.Position = Vector3.new(-6.91284275, 2.6175139, -9.76078129)
  2137. o164.Rotation = Vector3.new(-90, -10, -90)
  2138. o164.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2139. o164.Velocity = Vector3.new(-9.87556413e-22, 0.103487223, -1.49542501e-21)
  2140. o164.CanCollide = false
  2141. o164.Locked = true
  2142. o164.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2143. o164.CFrame = CFrame.new(-6.91284275, 2.6175139, -9.76078129, -2.06523491e-05, 0.984810591, -0.173636481, 1.552701e-05, 0.173636407, 0.984809995, 0.999999702, 1.76306003e-05, -1.89055518e-05)
  2144. o164.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2145. o164.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2146. o164.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2147. o164.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2148. o164.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2149. o164.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2150. o164.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2151. o164.Position = Vector3.new(-6.91284275, 2.6175139, -9.76078129)
  2152. o164.Velocity = Vector3.new(-9.87556413e-22, 0.103487223, -1.49542501e-21)
  2153. o165.Parent = o164
  2154. o165.Scale = Vector3.new(0.075000003, 1.5, 1)
  2155. o165.MeshType = Enum.MeshType.Wedge
  2156. o166.Name = "part_Weld"
  2157. o166.Parent = o164
  2158. o166.C0 = CFrame.new(-15.173975, 11.5913639, -4.32197952, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
  2159. o166.C1 = CFrame.new(-15.4239779, 11.5913601, -4.32197857, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
  2160. o166.Part0 = o164
  2161. o166.Part1 = o161
  2162. o167.Name = "part"
  2163. o167.Parent = o1
  2164. o167.Material = Enum.Material.Metal
  2165. o167.BrickColor = BrickColor.new("Really black")
  2166. o167.Position = Vector3.new(-6.91284323, 2.61750984, -10.0107822)
  2167. o167.Rotation = Vector3.new(-90, -10, -90)
  2168. o167.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2169. o167.Velocity = Vector3.new(-9.8162842e-22, 0.103487223, -1.49543582e-21)
  2170. o167.CanCollide = false
  2171. o167.Locked = true
  2172. o167.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2173. o167.CFrame = CFrame.new(-6.91284323, 2.61750984, -10.0107822, -2.06523491e-05, 0.98481071, -0.173636496, 1.552701e-05, 0.173636422, 0.984810114, 0.999999702, 1.76306021e-05, -1.89055536e-05)
  2174. o167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2175. o167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2176. o167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2177. o167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2178. o167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2179. o167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2180. o167.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2181. o167.Position = Vector3.new(-6.91284323, 2.61750984, -10.0107822)
  2182. o167.Velocity = Vector3.new(-9.8162842e-22, 0.103487223, -1.49543582e-21)
  2183. o168.Parent = o167
  2184. o168.Scale = Vector3.new(0.075000003, 1.5, 1)
  2185. o168.MeshType = Enum.MeshType.Wedge
  2186. o169.Name = "part_Weld"
  2187. o169.Parent = o167
  2188. o169.C0 = CFrame.new(-14.923974, 11.5913677, -4.32198, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
  2189. o169.C1 = CFrame.new(-15.173975, 11.5913639, -4.32197952, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
  2190. o169.Part0 = o167
  2191. o169.Part1 = o164
  2192. o170.Name = "part"
  2193. o170.Parent = o1
  2194. o170.Material = Enum.Material.Metal
  2195. o170.Position = Vector3.new(-7.24260473, 1.5667212, -10.0107689)
  2196. o170.Rotation = Vector3.new(-90, 30, -90)
  2197. o170.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2198. o170.Velocity = Vector3.new(-2.95897207e-21, 0.103487223, -4.2983665e-21)
  2199. o170.CanCollide = false
  2200. o170.Locked = true
  2201. o170.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2202. o170.CFrame = CFrame.new(-7.24260473, 1.5667212, -10.0107689, -2.06523491e-05, 0.866020322, 0.500010908, 1.552701e-05, -0.50001055, 0.866019785, 0.999999702, 2.56580843e-05, -3.14976205e-06)
  2203. o170.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2204. o170.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2205. o170.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2206. o170.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2207. o170.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2208. o170.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2209. o170.Position = Vector3.new(-7.24260473, 1.5667212, -10.0107689)
  2210. o170.Velocity = Vector3.new(-2.95897207e-21, 0.103487223, -4.2983665e-21)
  2211. o171.Parent = o170
  2212. o171.MeshId = "rbxassetid://9756362"
  2213. o171.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  2214. o171.MeshType = Enum.MeshType.FileMesh
  2215. o172.Name = "part_Weld"
  2216. o172.Parent = o170
  2217. o172.C0 = CFrame.new(-14.9239779, 11.4177895, 5.21484423, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
  2218. o172.C1 = CFrame.new(-14.923974, 11.5913677, -4.32198, 0, 0, 1, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0)
  2219. o172.Part0 = o170
  2220. o172.Part1 = o167
  2221. o173.Name = "part"
  2222. o173.Parent = o1
  2223. o173.Material = Enum.Material.Metal
  2224. o173.Position = Vector3.new(-7.17200708, 1.42038417, -10.0107689)
  2225. o173.Rotation = Vector3.new(-90, 20, -90)
  2226. o173.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2227. o173.Velocity = Vector3.new(-3.23434486e-21, 0.103487223, -4.68594747e-21)
  2228. o173.CanCollide = false
  2229. o173.Locked = true
  2230. o173.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2231. o173.CFrame = CFrame.new(-7.17200708, 1.42038417, -10.0107689, -2.06523491e-05, 0.939689755, 0.3420313, 1.552701e-05, -0.342031091, 0.939689219, 0.999999702, 2.47213302e-05, -7.55740348e-06)
  2232. o173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. o173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. o173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. o173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2236. o173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2237. o173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2238. o173.Position = Vector3.new(-7.17200708, 1.42038417, -10.0107689)
  2239. o173.Velocity = Vector3.new(-3.23434486e-21, 0.103487223, -4.68594747e-21)
  2240. o174.Parent = o173
  2241. o174.MeshId = "rbxassetid://9756362"
  2242. o174.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  2243. o174.MeshType = Enum.MeshType.FileMesh
  2244. o175.Name = "part_Weld"
  2245. o175.Parent = o173
  2246. o175.C0 = CFrame.new(-14.923974, 12.0334835, 3.26629925, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
  2247. o175.C1 = CFrame.new(-14.9239779, 11.4177895, 5.21484423, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
  2248. o175.Part0 = o173
  2249. o175.Part1 = o170
  2250. o176.Name = "part"
  2251. o176.Parent = o1
  2252. o176.Material = Enum.Material.Metal
  2253. o176.Position = Vector3.new(-7.17200804, 1.33038437, -10.0107698)
  2254. o176.Rotation = Vector3.new(-90, 0, -90)
  2255. o176.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2256. o176.Velocity = Vector3.new(-3.40370363e-21, 0.103487223, -4.92534719e-21)
  2257. o176.CanCollide = false
  2258. o176.Locked = true
  2259. o176.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2260. o176.CFrame = CFrame.new(-7.17200804, 1.33038437, -10.0107698, -2.06523491e-05, 1.00000119, 1.17123127e-05, 1.552701e-05, -1.1742115e-05, 1.0000006, 0.999999702, 2.06456716e-05, -1.5556825e-05)
  2261. o176.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2262. o176.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2263. o176.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2264. o176.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2265. o176.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2266. o176.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2267. o176.Position = Vector3.new(-7.17200804, 1.33038437, -10.0107698)
  2268. o176.Velocity = Vector3.new(-3.40370363e-21, 0.103487223, -4.92534719e-21)
  2269. o177.Parent = o176
  2270. o177.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  2271. o177.MeshType = Enum.MeshType.Wedge
  2272. o178.Name = "part_Weld"
  2273. o178.Parent = o176
  2274. o178.C0 = CFrame.new(-14.9239721, 12.4249153, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  2275. o178.C1 = CFrame.new(-14.923974, 12.0334835, 3.26629925, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
  2276. o178.Part0 = o176
  2277. o178.Part1 = o173
  2278. o179.Name = "part"
  2279. o179.Parent = o1
  2280. o179.Material = Enum.Material.Metal
  2281. o179.Position = Vector3.new(-7.25041485, 1.63026619, -10.0107698)
  2282. o179.Rotation = Vector3.new(-89.9899979, 80, -90.0099945)
  2283. o179.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2284. o179.Velocity = Vector3.new(-2.8393952e-21, 0.103487223, -4.12952311e-21)
  2285. o179.CanCollide = false
  2286. o179.Locked = true
  2287. o179.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2288. o179.CFrame = CFrame.new(-7.25041485, 1.63026619, -10.0107698, -2.06523491e-05, 0.17363593, 0.98481226, 1.552701e-05, -0.984811604, 0.173635691, 0.999999702, 1.89055645e-05, 1.76306457e-05)
  2289. o179.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2290. o179.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2291. o179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2292. o179.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2293. o179.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2294. o179.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2295. o179.Position = Vector3.new(-7.25041485, 1.63026619, -10.0107698)
  2296. o179.Velocity = Vector3.new(-2.8393952e-21, 0.103487223, -4.12952311e-21)
  2297. o180.Parent = o179
  2298. o180.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  2299. o180.MeshType = Enum.MeshType.Brick
  2300. o181.Name = "part_Weld"
  2301. o181.Parent = o179
  2302. o181.C0 = CFrame.new(-14.9239779, 3.40832949, 12.0952158, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
  2303. o181.C1 = CFrame.new(-14.923974, 9.47493267, 8.04478168, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
  2304. o181.Part0 = o179
  2305. o181.Part1 = o182
  2306. o182.Name = "part"
  2307. o182.Parent = o1
  2308. o182.Material = Enum.Material.Metal
  2309. o182.Position = Vector3.new(-7.13541603, 1.38526404, -10.0107679)
  2310. o182.Rotation = Vector3.new(-90, 45, -90)
  2311. o182.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2312. o182.Velocity = Vector3.new(-3.30043307e-21, 0.103487223, -4.77849921e-21)
  2313. o182.CanCollide = false
  2314. o182.Locked = true
  2315. o182.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2316. o182.CFrame = CFrame.new(-7.13541603, 1.38526404, -10.0107679, -2.06523491e-05, 0.707101107, 0.70711565, 1.552701e-05, -0.707115233, 0.707100511, 0.999999702, 2.55990617e-05, 3.59832757e-06)
  2317. o182.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2318. o182.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2319. o182.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2320. o182.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2321. o182.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2322. o182.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. o182.Position = Vector3.new(-7.13541603, 1.38526404, -10.0107679)
  2324. o182.Velocity = Vector3.new(-3.30043307e-21, 0.103487223, -4.77849921e-21)
  2325. o183.Parent = o182
  2326. o183.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  2327. o183.MeshType = Enum.MeshType.Brick
  2328. o184.Name = "part_Weld"
  2329. o184.Parent = o182
  2330. o184.C0 = CFrame.new(-14.923974, 9.47493267, 8.04478168, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
  2331. o184.C1 = CFrame.new(-14.923974, 7.16470861, 10.2317486, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  2332. o184.Part0 = o182
  2333. o184.Part1 = o185
  2334. o185.Name = "part"
  2335. o185.Parent = o1
  2336. o185.Material = Enum.Material.Metal
  2337. o185.Position = Vector3.new(-7.19041348, 1.46294463, -10.0107698)
  2338. o185.Rotation = Vector3.new(-90, 60, -90)
  2339. o185.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2340. o185.Velocity = Vector3.new(-3.15425596e-21, 0.103487223, -4.57317424e-21)
  2341. o185.CanCollide = false
  2342. o185.Locked = true
  2343. o185.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2344. o185.CFrame = CFrame.new(-7.19041348, 1.46294463, -10.0107698, -2.06523491e-05, 0.499991924, 0.8660326, 1.552701e-05, -0.866032064, 0.499991477, 0.999999702, 2.37954737e-05, 1.01012483e-05)
  2345. o185.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2346. o185.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2347. o185.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2348. o185.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2349. o185.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2350. o185.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2351. o185.Position = Vector3.new(-7.19041348, 1.46294463, -10.0107698)
  2352. o185.Velocity = Vector3.new(-3.15425596e-21, 0.103487223, -4.57317424e-21)
  2353. o186.Parent = o185
  2354. o186.Scale = Vector3.new(0.0250000022, 0.699999988, 0.774999976)
  2355. o186.MeshType = Enum.MeshType.Brick
  2356. o187.Name = "part_Weld"
  2357. o187.Parent = o185
  2358. o187.C0 = CFrame.new(-14.923974, 7.16470861, 10.2317486, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  2359. o187.C1 = CFrame.new(-14.9239836, 11.9266863, 4.17670155, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
  2360. o187.Part0 = o185
  2361. o187.Part1 = o188
  2362. o188.Name = "part"
  2363. o188.Parent = o1
  2364. o188.Material = Enum.Material.Metal
  2365. o188.Position = Vector3.new(-7.32150173, 1.62906897, -10.010766)
  2366. o188.Rotation = Vector3.new(-90, 25, -90)
  2367. o188.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2368. o188.Velocity = Vector3.new(-2.84164813e-21, 0.103487223, -4.13439532e-21)
  2369. o188.CanCollide = false
  2370. o188.Locked = true
  2371. o188.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2372. o188.CFrame = CFrame.new(-7.32150173, 1.62906897, -10.010766, -2.06523491e-05, 0.906304955, 0.422629476, 1.552701e-05, -0.422629297, 0.9063043, 0.999999702, 2.52859536e-05, -5.37404503e-06)
  2373. o188.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2374. o188.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2375. o188.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2376. o188.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2377. o188.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2378. o188.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2379. o188.Position = Vector3.new(-7.32150173, 1.62906897, -10.010766)
  2380. o188.Velocity = Vector3.new(-2.84164813e-21, 0.103487223, -4.13439532e-21)
  2381. o189.Parent = o188
  2382. o189.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  2383. o189.MeshType = Enum.MeshType.Wedge
  2384. o190.Name = "part_Weld"
  2385. o190.Parent = o188
  2386. o190.C0 = CFrame.new(-14.9239836, 11.9266863, 4.17670155, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
  2387. o190.C1 = CFrame.new(-14.9239779, 9.80968094, 7.91943741, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
  2388. o190.Part0 = o188
  2389. o190.Part1 = o191
  2390. o191.Name = "part"
  2391. o191.Parent = o1
  2392. o191.Material = Enum.Material.Metal
  2393. o191.Position = Vector3.new(-7.28347826, 1.71063662, -10.0107727)
  2394. o191.Rotation = Vector3.new(-90, 45, -90)
  2395. o191.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2396. o191.Velocity = Vector3.new(-2.68815645e-21, 0.103487223, -3.91652249e-21)
  2397. o191.CanCollide = false
  2398. o191.Locked = true
  2399. o191.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2400. o191.CFrame = CFrame.new(-7.28347826, 1.71063662, -10.0107727, -2.06523491e-05, 0.70709902, 0.707117617, 1.552701e-05, -0.7071172, 0.707098484, 0.999999702, 2.5599049e-05, 3.59839987e-06)
  2401. o191.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2402. o191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2403. o191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2404. o191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2405. o191.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2406. o191.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2407. o191.Position = Vector3.new(-7.28347826, 1.71063662, -10.0107727)
  2408. o191.Velocity = Vector3.new(-2.68815645e-21, 0.103487223, -3.91652249e-21)
  2409. o192.Parent = o191
  2410. o192.MeshId = "rbxassetid://9756362"
  2411. o192.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  2412. o192.MeshType = Enum.MeshType.FileMesh
  2413. o193.Name = "part_Weld"
  2414. o193.Parent = o191
  2415. o193.C0 = CFrame.new(-14.9239779, 9.80968094, 7.91943741, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
  2416. o193.C1 = CFrame.new(-14.923974, -2.37625527, 12.39503, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
  2417. o193.Part0 = o191
  2418. o193.Part1 = o194
  2419. o194.Name = "part"
  2420. o194.Parent = o1
  2421. o194.Material = Enum.Material.Metal
  2422. o194.Position = Vector3.new(-7.20733833, 2.38039947, -10.0107851)
  2423. o194.Rotation = Vector3.new(90, 70, 90)
  2424. o194.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2425. o194.Velocity = Vector3.new(-1.42781602e-21, 0.103487223, -2.1331435e-21)
  2426. o194.CanCollide = false
  2427. o194.Locked = true
  2428. o194.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2429. o194.CFrame = CFrame.new(-7.20733833, 2.38039947, -10.0107851, -2.06523491e-05, -0.342030704, 0.939690948, 1.552701e-05, -0.939690351, -0.342030525, 0.999999702, 7.55743395e-06, 2.47213447e-05)
  2430. o194.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2431. o194.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2432. o194.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2433. o194.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2434. o194.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2435. o194.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2436. o194.Position = Vector3.new(-7.20733833, 2.38039947, -10.0107851)
  2437. o194.Velocity = Vector3.new(-1.42781602e-21, 0.103487223, -2.1331435e-21)
  2438. o195.Parent = o194
  2439. o195.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  2440. o195.MeshType = Enum.MeshType.Brick
  2441. o196.Name = "part_Weld"
  2442. o196.Parent = o194
  2443. o196.C0 = CFrame.new(-14.923974, -2.37625527, 12.39503, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
  2444. o196.C1 = CFrame.new(-14.9239759, -5.39621353, 11.37535, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
  2445. o196.Part0 = o194
  2446. o196.Part1 = o197
  2447. o197.Name = "part"
  2448. o197.Parent = o1
  2449. o197.Material = Enum.Material.Metal
  2450. o197.Position = Vector3.new(-7.16037798, 2.47828889, -10.0107841)
  2451. o197.Rotation = Vector3.new(90, 55, 90)
  2452. o197.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2453. o197.Velocity = Vector3.new(-1.24361062e-21, 0.103487223, -1.87164235e-21)
  2454. o197.CanCollide = false
  2455. o197.Locked = true
  2456. o197.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2457. o197.CFrame = CFrame.new(-7.16037798, 2.47828889, -10.0107841, -2.06523491e-05, -0.573584557, 0.819148719, 1.552701e-05, -0.819148183, -0.573584259, 0.999999702, 9.01615749e-07, 2.58349901e-05)
  2458. o197.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2459. o197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2460. o197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2461. o197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2462. o197.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2463. o197.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2464. o197.Position = Vector3.new(-7.16037798, 2.47828889, -10.0107841)
  2465. o197.Velocity = Vector3.new(-1.24361062e-21, 0.103487223, -1.87164235e-21)
  2466. o198.Parent = o197
  2467. o198.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  2468. o198.MeshType = Enum.MeshType.Brick
  2469. o199.Name = "part_Weld"
  2470. o199.Parent = o197
  2471. o199.C0 = CFrame.new(-14.9239759, -5.39621353, 11.37535, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
  2472. o199.C1 = CFrame.new(-14.9239721, 1.54138505, 12.5252533, 0, 0, 1, 0, -1, 0, 1, 0, -0)
  2473. o199.Part0 = o197
  2474. o199.Part1 = o200
  2475. o200.Name = "part"
  2476. o200.Parent = o1
  2477. o200.Material = Enum.Material.Metal
  2478. o200.Position = Vector3.new(-7.27234888, 1.91539979, -10.0107813)
  2479. o200.Rotation = Vector3.new(180, 90, 0)
  2480. o200.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2481. o200.Velocity = Vector3.new(-2.30283892e-21, 0.103487223, -3.37158757e-21)
  2482. o200.CanCollide = false
  2483. o200.Locked = true
  2484. o200.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2485. o200.CFrame = CFrame.new(-7.27234888, 1.91539979, -10.0107813, -2.06523491e-05, -1.16825104e-05, 1.00000191, 1.552701e-05, -1.00000131, -1.1742115e-05, 0.999999702, 1.55568359e-05, 2.06456862e-05)
  2486. o200.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2487. o200.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2488. o200.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2489. o200.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2490. o200.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2491. o200.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2492. o200.Position = Vector3.new(-7.27234888, 1.91539979, -10.0107813)
  2493. o200.Velocity = Vector3.new(-2.30283892e-21, 0.103487223, -3.37158757e-21)
  2494. o201.Parent = o200
  2495. o201.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  2496. o201.MeshType = Enum.MeshType.Brick
  2497. o202.Name = "part_Weld"
  2498. o202.Parent = o200
  2499. o202.C0 = CFrame.new(-14.9239721, 1.54138505, 12.5252533, 0, 0, 1, 0, -1, 0, 1, 0, -0)
  2500. o202.C1 = CFrame.new(-14.923974, 4.3719182, 11.7522163, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
  2501. o202.Part0 = o200
  2502. o202.Part1 = o203
  2503. o203.Name = "part"
  2504. o203.Parent = o1
  2505. o203.Material = Enum.Material.Metal
  2506. o203.Position = Vector3.new(-7.23040485, 1.55526567, -10.0107727)
  2507. o203.Rotation = Vector3.new(-90, 75, -90)
  2508. o203.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2509. o203.Velocity = Vector3.new(-2.98052885e-21, 0.103487223, -4.32854971e-21)
  2510. o203.CanCollide = false
  2511. o203.Locked = true
  2512. o203.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2513. o203.CFrame = CFrame.new(-7.23040485, 1.55526567, -10.0107727, -2.06523491e-05, 0.258808166, 0.9659307, 1.552701e-05, -0.965930104, 0.258807957, 0.999999702, 2.03702457e-05, 1.59157971e-05)
  2514. o203.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2515. o203.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2516. o203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2517. o203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2518. o203.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2519. o203.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2520. o203.Position = Vector3.new(-7.23040485, 1.55526567, -10.0107727)
  2521. o203.Velocity = Vector3.new(-2.98052885e-21, 0.103487223, -4.32854971e-21)
  2522. o204.Parent = o203
  2523. o204.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  2524. o204.MeshType = Enum.MeshType.Brick
  2525. o205.Name = "part_Weld"
  2526. o205.Parent = o203
  2527. o205.C0 = CFrame.new(-14.923974, 4.3719182, 11.7522163, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
  2528. o205.C1 = CFrame.new(-14.9239759, -11.3810329, -5.27908039, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
  2529. o205.Part0 = o203
  2530. o205.Part1 = o206
  2531. o206.Name = "part"
  2532. o206.Parent = o1
  2533. o206.Material = Enum.Material.Metal
  2534. o206.Position = Vector3.new(-7.09784222, 2.57751417, -10.0107841)
  2535. o206.Rotation = Vector3.new(90, -35, 90)
  2536. o206.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2537. o206.Velocity = Vector3.new(-1.05689135e-21, 0.103487223, -1.60621784e-21)
  2538. o206.CanCollide = false
  2539. o206.Locked = true
  2540. o206.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2541. o206.CFrame = CFrame.new(-7.09784222, 2.57751417, -10.0107841, -2.06523491e-05, -0.819147706, -0.57358557, 1.552701e-05, 0.573585272, -0.81914717, 0.999999702, -2.58349846e-05, 9.01580279e-07)
  2542. o206.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2543. o206.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2544. o206.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2545. o206.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2546. o206.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2547. o206.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. o206.Position = Vector3.new(-7.09784222, 2.57751417, -10.0107841)
  2549. o206.Velocity = Vector3.new(-1.05689135e-21, 0.103487223, -1.60621784e-21)
  2550. o207.Parent = o206
  2551. o207.Scale = Vector3.new(0.0250000022, 0.825000048, 0.825000048)
  2552. o207.MeshType = Enum.MeshType.Wedge
  2553. o208.Name = "part_Weld"
  2554. o208.Parent = o206
  2555. o208.C0 = CFrame.new(-14.9239759, -11.3810329, -5.27908039, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
  2556. o208.C1 = CFrame.new(-14.9239759, -0.341733932, 12.6295233, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
  2557. o208.Part0 = o206
  2558. o208.Part1 = o209
  2559. o209.Name = "part"
  2560. o209.Parent = o1
  2561. o209.Material = Enum.Material.Metal
  2562. o209.Position = Vector3.new(-7.24408531, 2.23055029, -10.0107822)
  2563. o209.Rotation = Vector3.new(89.9899979, 80, 90.0099945)
  2564. o209.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2565. o209.Velocity = Vector3.new(-1.70979788e-21, 0.103487223, -2.53261499e-21)
  2566. o209.CanCollide = false
  2567. o209.Locked = true
  2568. o209.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2569. o209.CFrame = CFrame.new(-7.24408531, 2.23055029, -10.0107822, -2.06523491e-05, -0.173658788, 0.984807491, 1.552701e-05, -0.984806895, -0.173658818, 0.999999702, 1.17354311e-05, 2.30334281e-05)
  2570. o209.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2571. o209.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2572. o209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2573. o209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2574. o209.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2575. o209.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2576. o209.Position = Vector3.new(-7.24408531, 2.23055029, -10.0107822)
  2577. o209.Velocity = Vector3.new(-1.70979788e-21, 0.103487223, -2.53261499e-21)
  2578. o210.Parent = o209
  2579. o210.Scale = Vector3.new(0.0250000022, 0.949999988, 0.774999976)
  2580. o210.MeshType = Enum.MeshType.Brick
  2581. o211.Name = "part_Weld"
  2582. o211.Parent = o209
  2583. o211.C0 = CFrame.new(-14.9239759, -0.341733932, 12.6295233, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
  2584. o211.C1 = CFrame.new(14.9239798, 9.23743725, -8.0447855, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
  2585. o211.Part0 = o209
  2586. o211.Part1 = o212
  2587. o212.Name = "part"
  2588. o212.Parent = o1
  2589. o212.Material = Enum.Material.Metal
  2590. o212.Position = Vector3.new(-6.96747684, 1.2173245, -10.0107565)
  2591. o212.Rotation = Vector3.new(90, -45, -90)
  2592. o212.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2593. o212.Velocity = Vector3.new(-3.61645706e-21, 0.103487223, -5.22123148e-21)
  2594. o212.CanCollide = false
  2595. o212.Locked = true
  2596. o212.Size = Vector3.new(0.200000003, 0.38499999, 0.200000003)
  2597. o212.CFrame = CFrame.new(-6.96747684, 1.2173245, -10.0107565, 2.06523491e-05, 0.70710057, -0.707115114, -1.552701e-05, -0.707114756, -0.707100093, -0.999999702, 2.55990453e-05, -3.59832302e-06)
  2598. o212.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2599. o212.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2600. o212.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2601. o212.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2602. o212.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2603. o212.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2604. o212.Position = Vector3.new(-6.96747684, 1.2173245, -10.0107565)
  2605. o212.Velocity = Vector3.new(-3.61645706e-21, 0.103487223, -5.22123148e-21)
  2606. o213.Parent = o212
  2607. o213.Scale = Vector3.new(0.0250000022, 1, 0.774999976)
  2608. o213.MeshType = Enum.MeshType.Wedge
  2609. o214.Name = "part_Weld"
  2610. o214.Parent = o212
  2611. o214.C0 = CFrame.new(14.9239798, 9.23743725, -8.0447855, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
  2612. o214.C1 = CFrame.new(-14.9239798, 12.5127945, 1.0852313, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
  2613. o214.Part0 = o212
  2614. o214.Part1 = o215
  2615. o215.Name = "part"
  2616. o215.Parent = o1
  2617. o215.Material = Enum.Material.Metal
  2618. o215.Position = Vector3.new(-7.25824022, 1.47809064, -10.010767)
  2619. o215.Rotation = Vector3.new(-90, 10, -90)
  2620. o215.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2621. o215.Velocity = Vector3.new(-3.12575458e-21, 0.103487223, -4.53449587e-21)
  2622. o215.CanCollide = false
  2623. o215.Locked = true
  2624. o215.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2625. o215.CFrame = CFrame.new(-7.25824022, 1.47809064, -10.010767, -2.06523491e-05, 0.984807134, 0.173659742, 1.552701e-05, -0.173659742, 0.984806538, 0.999999702, 2.30334354e-05, -1.17354057e-05)
  2626. o215.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. o215.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. o215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2629. o215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2630. o215.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2631. o215.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2632. o215.Position = Vector3.new(-7.25824022, 1.47809064, -10.010767)
  2633. o215.Velocity = Vector3.new(-3.12575458e-21, 0.103487223, -4.53449587e-21)
  2634. o216.Parent = o215
  2635. o216.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  2636. o216.MeshType = Enum.MeshType.Wedge
  2637. o217.Name = "part_Weld"
  2638. o217.Parent = o215
  2639. o217.C0 = CFrame.new(-14.9239798, 12.5127945, 1.0852313, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
  2640. o217.C1 = CFrame.new(-14.9239817, 10.541173, 7.02121878, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
  2641. o217.Part0 = o215
  2642. o217.Part1 = o218
  2643. o218.Name = "part"
  2644. o218.Parent = o1
  2645. o218.Material = Enum.Material.Metal
  2646. o218.Position = Vector3.new(-7.33524895, 1.77119112, -10.0107708)
  2647. o218.Rotation = Vector3.new(-90, 40, -90)
  2648. o218.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2649. o218.Velocity = Vector3.new(-2.57420667e-21, 0.103487223, -3.75667589e-21)
  2650. o218.CanCollide = false
  2651. o218.Locked = true
  2652. o218.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2653. o218.CFrame = CFrame.new(-7.33524895, 1.77119112, -10.0107708, -2.06523491e-05, 0.766037583, 0.642797887, 1.552701e-05, -0.642797589, 0.766037107, 0.999999702, 2.58152395e-05, 1.35357732e-06)
  2654. o218.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2655. o218.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2656. o218.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2657. o218.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2658. o218.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2659. o218.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2660. o218.Position = Vector3.new(-7.33524895, 1.77119112, -10.0107708)
  2661. o218.Velocity = Vector3.new(-2.57420667e-21, 0.103487223, -3.75667589e-21)
  2662. o219.Parent = o218
  2663. o219.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  2664. o219.MeshType = Enum.MeshType.Wedge
  2665. o220.Name = "part_Weld"
  2666. o220.Parent = o218
  2667. o220.C0 = CFrame.new(-14.9239817, 10.541173, 7.02121878, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
  2668. o220.C1 = CFrame.new(-14.9239759, 7.534863, 10.1184931, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  2669. o220.Part0 = o218
  2670. o220.Part1 = o221
  2671. o221.Name = "part"
  2672. o221.Parent = o1
  2673. o221.Material = Enum.Material.Metal
  2674. o221.Position = Vector3.new(-7.27739334, 1.84013617, -10.0107765)
  2675. o221.Rotation = Vector3.new(-90, 60, -90)
  2676. o221.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2677. o221.Velocity = Vector3.new(-2.44446775e-21, 0.103487223, -3.57190806e-21)
  2678. o221.CanCollide = false
  2679. o221.Locked = true
  2680. o221.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2681. o221.CFrame = CFrame.new(-7.27739334, 1.84013617, -10.0107765, -2.06523491e-05, 0.499991447, 0.866031885, 1.552701e-05, -0.866031408, 0.499991119, 0.999999702, 2.37954555e-05, 1.01012392e-05)
  2682. o221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2683. o221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2684. o221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2685. o221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. o221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2687. o221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2688. o221.Position = Vector3.new(-7.27739334, 1.84013617, -10.0107765)
  2689. o221.Velocity = Vector3.new(-2.44446775e-21, 0.103487223, -3.57190806e-21)
  2690. o222.Parent = o221
  2691. o222.MeshId = "rbxassetid://9756362"
  2692. o222.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  2693. o222.MeshType = Enum.MeshType.FileMesh
  2694. o223.Name = "part_Weld"
  2695. o223.Parent = o221
  2696. o223.C0 = CFrame.new(-14.9239759, 7.534863, 10.1184931, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  2697. o223.C1 = CFrame.new(-14.9239779, 6.85642242, 10.6288795, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
  2698. o223.Part0 = o221
  2699. o223.Part1 = o224
  2700. o224.Name = "part"
  2701. o224.Parent = o1
  2702. o224.Material = Enum.Material.Metal
  2703. o224.Position = Vector3.new(-7.27777147, 2.09608793, -10.0107784)
  2704. o224.Rotation = Vector3.new(-90, 65, -90)
  2705. o224.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2706. o224.Velocity = Vector3.new(-1.96282507e-21, 0.103487223, -2.89108449e-21)
  2707. o224.CanCollide = false
  2708. o224.Locked = true
  2709. o224.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2710. o224.CFrame = CFrame.new(-7.27777147, 2.09608793, -10.0107784, -2.06523491e-05, 0.422607899, 0.906314135, 1.552701e-05, -0.906313658, 0.422607601, 0.999999702, 2.28245099e-05, 1.21367448e-05)
  2711. o224.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2712. o224.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2713. o224.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2714. o224.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. o224.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. o224.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. o224.Position = Vector3.new(-7.27777147, 2.09608793, -10.0107784)
  2718. o224.Velocity = Vector3.new(-1.96282507e-21, 0.103487223, -2.89108449e-21)
  2719. o225.Parent = o224
  2720. o225.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  2721. o225.MeshType = Enum.MeshType.Wedge
  2722. o226.Name = "part_Weld"
  2723. o226.Parent = o224
  2724. o226.C0 = CFrame.new(-14.9239779, 6.85642242, 10.6288795, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
  2725. o226.C1 = CFrame.new(-14.9239759, 9.27238274, 8.61450481, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
  2726. o226.Part0 = o224
  2727. o226.Part1 = o227
  2728. o227.Name = "part"
  2729. o227.Parent = o1
  2730. o227.Material = Enum.Material.Metal
  2731. o227.Position = Vector3.new(-7.30635548, 1.93976712, -10.0107784)
  2732. o227.Rotation = Vector3.new(-90, 50, -90)
  2733. o227.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2734. o227.Velocity = Vector3.new(-2.25698492e-21, 0.103487223, -3.307577e-21)
  2735. o227.CanCollide = false
  2736. o227.Locked = true
  2737. o227.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2738. o227.CFrame = CFrame.new(-7.30635548, 1.93976712, -10.0107784, -2.06523491e-05, 0.642779887, 0.766052723, 1.552701e-05, -0.766052246, 0.642779469, 0.999999702, 2.51880083e-05, 5.81575569e-06)
  2739. o227.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2740. o227.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2741. o227.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2742. o227.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2743. o227.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2744. o227.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2745. o227.Position = Vector3.new(-7.30635548, 1.93976712, -10.0107784)
  2746. o227.Velocity = Vector3.new(-2.25698492e-21, 0.103487223, -3.307577e-21)
  2747. o228.Parent = o227
  2748. o228.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  2749. o228.MeshType = Enum.MeshType.Wedge
  2750. o229.Name = "part_Weld"
  2751. o229.Parent = o227
  2752. o229.C0 = CFrame.new(-14.9239759, 9.27238274, 8.61450481, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
  2753. o229.C1 = CFrame.new(-14.9239779, -11.7327061, 4.41294289, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
  2754. o229.Part0 = o227
  2755. o229.Part1 = o230
  2756. o230.Name = "part"
  2757. o230.Parent = o1
  2758. o230.Material = Enum.Material.Metal
  2759. o230.Position = Vector3.new(-7.06784439, 2.68251252, -10.0107832)
  2760. o230.Rotation = Vector3.new(90, 10, 90)
  2761. o230.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2762. o230.Velocity = Vector3.new(-8.5930838e-22, 0.103487223, -1.32620902e-21)
  2763. o230.CanCollide = false
  2764. o230.Locked = true
  2765. o230.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2766. o230.CFrame = CFrame.new(-7.06784439, 2.68251252, -10.0107832, -2.06523491e-05, -0.984810591, 0.173639715, 1.552701e-05, -0.173639596, -0.984809995, 0.999999702, -1.76305512e-05, 1.89056191e-05)
  2767. o230.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2768. o230.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2769. o230.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2770. o230.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2771. o230.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2772. o230.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2773. o230.Position = Vector3.new(-7.06784439, 2.68251252, -10.0107832)
  2774. o230.Velocity = Vector3.new(-8.5930838e-22, 0.103487223, -1.32620902e-21)
  2775. o231.Parent = o230
  2776. o231.Scale = Vector3.new(0.0250000022, 1.5, 1)
  2777. o231.MeshType = Enum.MeshType.Wedge
  2778. o232.Name = "part_Weld"
  2779. o232.Parent = o230
  2780. o232.C0 = CFrame.new(-14.9239779, -11.7327061, 4.41294289, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
  2781. o232.C1 = CFrame.new(-14.9239798, 2.46731997, 12.3522339, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
  2782. o232.Part0 = o230
  2783. o232.Part1 = o8
  2784. o233.Name = "part"
  2785. o233.Parent = o1
  2786. o233.Material = Enum.Material.Metal
  2787. o233.Position = Vector3.new(-7.2623806, 2.07540607, -9.7607708)
  2788. o233.Rotation = Vector3.new(89.9899979, 85, 90.0099945)
  2789. o233.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2790. o233.Velocity = Vector3.new(-2.00767963e-21, 0.103487223, -2.94573354e-21)
  2791. o233.CanCollide = false
  2792. o233.Locked = true
  2793. o233.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2794. o233.CFrame = CFrame.new(-7.2623806, 2.07540607, -9.7607708, -2.06523491e-05, -0.0871618688, 0.996198058, 1.552701e-05, -0.996197283, -0.087161988, 0.999999702, 1.36984008e-05, 2.19229551e-05)
  2795. o233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. o233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2797. o233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2798. o233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2799. o233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2800. o233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2801. o233.Position = Vector3.new(-7.2623806, 2.07540607, -9.7607708)
  2802. o233.Velocity = Vector3.new(-2.00767963e-21, 0.103487223, -2.94573354e-21)
  2803. o234.Parent = o233
  2804. o234.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  2805. o234.MeshType = Enum.MeshType.Brick
  2806. o235.Name = "part_Weld"
  2807. o235.Parent = o233
  2808. o235.C0 = CFrame.new(-15.1739845, 0.604206681, 12.6159172, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
  2809. o235.C1 = CFrame.new(-15.1739864, 3.40832806, 12.0952063, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
  2810. o235.Part0 = o233
  2811. o235.Part1 = o245
  2812. o236.Name = "part"
  2813. o236.Parent = o1
  2814. o236.Material = Enum.Material.Metal
  2815. o236.Position = Vector3.new(-7.24263906, 1.56672812, -9.76076412)
  2816. o236.Rotation = Vector3.new(-90, 30, -90)
  2817. o236.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2818. o236.Velocity = Vector3.new(-2.96489481e-21, 0.103487223, -4.29834995e-21)
  2819. o236.CanCollide = false
  2820. o236.Locked = true
  2821. o236.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2822. o236.CFrame = CFrame.new(-7.24263906, 1.56672812, -9.76076412, -2.06523491e-05, 0.866021693, 0.500011563, 1.552701e-05, -0.500011325, 0.866021037, 0.999999702, 2.56581261e-05, -3.14976842e-06)
  2823. o236.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2824. o236.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2825. o236.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2826. o236.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2827. o236.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2828. o236.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2829. o236.Position = Vector3.new(-7.24263906, 1.56672812, -9.76076412)
  2830. o236.Velocity = Vector3.new(-2.96489481e-21, 0.103487223, -4.29834995e-21)
  2831. o237.Parent = o236
  2832. o237.MeshId = "rbxassetid://9756362"
  2833. o237.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  2834. o237.MeshType = Enum.MeshType.FileMesh
  2835. o238.Name = "part_Weld"
  2836. o238.Parent = o236
  2837. o238.C0 = CFrame.new(-15.1739826, 11.4177961, 5.21484804, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
  2838. o238.C1 = CFrame.new(-14.9239836, 0.604206085, 12.6159229, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
  2839. o238.Part0 = o236
  2840. o238.Part1 = o158
  2841. o239.Name = "part"
  2842. o239.Parent = o1
  2843. o239.Material = Enum.Material.Metal
  2844. o239.Position = Vector3.new(-7.17202854, 1.42039013, -9.76076221)
  2845. o239.Rotation = Vector3.new(-90, 20, -90)
  2846. o239.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2847. o239.Velocity = Vector3.new(-3.24026942e-21, 0.103487223, -4.68593293e-21)
  2848. o239.CanCollide = false
  2849. o239.Locked = true
  2850. o239.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2851. o239.CFrame = CFrame.new(-7.17202854, 1.42039013, -9.76076221, -2.06523491e-05, 0.939691305, 0.342031717, 1.552701e-05, -0.342031628, 0.93969059, 0.999999702, 2.47213684e-05, -7.55741712e-06)
  2852. o239.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2853. o239.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2854. o239.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2855. o239.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2856. o239.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2857. o239.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2858. o239.Position = Vector3.new(-7.17202854, 1.42039013, -9.76076221)
  2859. o239.Velocity = Vector3.new(-3.24026942e-21, 0.103487223, -4.68593293e-21)
  2860. o240.Parent = o239
  2861. o240.MeshId = "rbxassetid://9756362"
  2862. o240.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  2863. o240.MeshType = Enum.MeshType.FileMesh
  2864. o241.Name = "part_Weld"
  2865. o241.Parent = o239
  2866. o241.C0 = CFrame.new(-15.1739807, 12.0334797, 3.26629829, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
  2867. o241.C1 = CFrame.new(-15.1739826, 11.4177961, 5.21484804, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
  2868. o241.Part0 = o239
  2869. o241.Part1 = o236
  2870. o242.Name = "part"
  2871. o242.Parent = o1
  2872. o242.Material = Enum.Material.Metal
  2873. o242.Position = Vector3.new(-7.1720295, 1.33039021, -9.76076698)
  2874. o242.Rotation = Vector3.new(-90, 0, -90)
  2875. o242.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2876. o242.Velocity = Vector3.new(-3.40962839e-21, 0.103487223, -4.92533306e-21)
  2877. o242.CanCollide = false
  2878. o242.Locked = true
  2879. o242.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2880. o242.CFrame = CFrame.new(-7.1720295, 1.33039021, -9.76076698, -2.06523491e-05, 1.00000274, 1.15931034e-05, 1.552701e-05, -1.17719173e-05, 1.00000203, 0.999999702, 2.06457025e-05, -1.55568505e-05)
  2881. o242.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2882. o242.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2883. o242.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2884. o242.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. o242.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2886. o242.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2887. o242.Position = Vector3.new(-7.1720295, 1.33039021, -9.76076698)
  2888. o242.Velocity = Vector3.new(-3.40962839e-21, 0.103487223, -4.92533306e-21)
  2889. o243.Parent = o242
  2890. o243.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  2891. o243.MeshType = Enum.MeshType.Wedge
  2892. o244.Name = "part_Weld"
  2893. o244.Parent = o242
  2894. o244.C0 = CFrame.new(-15.173975, 12.4249115, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  2895. o244.C1 = CFrame.new(-15.1739807, 12.0334797, 3.26629829, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
  2896. o244.Part0 = o242
  2897. o244.Part1 = o239
  2898. o245.Name = "part"
  2899. o245.Parent = o1
  2900. o245.Material = Enum.Material.Metal
  2901. o245.Position = Vector3.new(-7.25042629, 1.63027143, -9.76076126)
  2902. o245.Rotation = Vector3.new(-89.9899979, 80, -90.0099945)
  2903. o245.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2904. o245.Velocity = Vector3.new(-2.84532117e-21, 0.103487223, -4.12950938e-21)
  2905. o245.CanCollide = false
  2906. o245.Locked = true
  2907. o245.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2908. o245.CFrame = CFrame.new(-7.25042629, 1.63027143, -9.76076126, -2.06523491e-05, 0.173636258, 0.98481369, 1.552701e-05, -0.984812975, 0.17363596, 0.999999702, 1.89055936e-05, 1.76306712e-05)
  2909. o245.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2910. o245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2911. o245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2912. o245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2913. o245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2914. o245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2915. o245.Position = Vector3.new(-7.25042629, 1.63027143, -9.76076126)
  2916. o245.Velocity = Vector3.new(-2.84532117e-21, 0.103487223, -4.12950938e-21)
  2917. o246.Parent = o245
  2918. o246.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  2919. o246.MeshType = Enum.MeshType.Brick
  2920. o247.Name = "part_Weld"
  2921. o247.Parent = o245
  2922. o247.C0 = CFrame.new(-15.1739864, 3.40832806, 12.0952063, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
  2923. o247.C1 = CFrame.new(-15.1739845, 9.47493839, 8.04478741, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
  2924. o247.Part0 = o245
  2925. o247.Part1 = o248
  2926. o248.Name = "part"
  2927. o248.Parent = o1
  2928. o248.Material = Enum.Material.Metal
  2929. o248.Position = Vector3.new(-7.13544559, 1.38526952, -9.76075745)
  2930. o248.Rotation = Vector3.new(-90, 45, -90)
  2931. o248.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2932. o248.Velocity = Vector3.new(-3.30635864e-21, 0.103487223, -4.77848548e-21)
  2933. o248.CanCollide = false
  2934. o248.Locked = true
  2935. o248.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2936. o248.CFrame = CFrame.new(-7.13544559, 1.38526952, -9.76075745, -2.06523491e-05, 0.70710218, 0.707116604, 1.552701e-05, -0.707116187, 0.707101583, 0.999999702, 2.55990999e-05, 3.5983303e-06)
  2937. o248.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2938. o248.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2939. o248.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2940. o248.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2941. o248.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2942. o248.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2943. o248.Position = Vector3.new(-7.13544559, 1.38526952, -9.76075745)
  2944. o248.Velocity = Vector3.new(-3.30635864e-21, 0.103487223, -4.77848548e-21)
  2945. o249.Parent = o248
  2946. o249.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  2947. o249.MeshType = Enum.MeshType.Brick
  2948. o250.Name = "part_Weld"
  2949. o250.Parent = o248
  2950. o250.C0 = CFrame.new(-15.1739845, 9.47493839, 8.04478741, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
  2951. o250.C1 = CFrame.new(-15.1739864, 7.16470861, 10.2317486, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  2952. o250.Part0 = o248
  2953. o250.Part1 = o251
  2954. o251.Name = "part"
  2955. o251.Parent = o1
  2956. o251.Material = Enum.Material.Metal
  2957. o251.Position = Vector3.new(-7.19043541, 1.46295023, -9.76075745)
  2958. o251.Rotation = Vector3.new(-90, 60, -90)
  2959. o251.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2960. o251.Velocity = Vector3.new(-3.16018133e-21, 0.103487223, -4.5731601e-21)
  2961. o251.CanCollide = false
  2962. o251.Locked = true
  2963. o251.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2964. o251.CFrame = CFrame.new(-7.19043541, 1.46295023, -9.76075745, -2.06523491e-05, 0.499992728, 0.866033792, 1.552701e-05, -0.866033196, 0.499992251, 0.999999702, 2.37955119e-05, 1.01012611e-05)
  2965. o251.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2966. o251.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2967. o251.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2968. o251.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2969. o251.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2970. o251.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2971. o251.Position = Vector3.new(-7.19043541, 1.46295023, -9.76075745)
  2972. o251.Velocity = Vector3.new(-3.16018133e-21, 0.103487223, -4.5731601e-21)
  2973. o252.Parent = o251
  2974. o252.Scale = Vector3.new(0.0250000022, 0.699999988, 0.774999976)
  2975. o252.MeshType = Enum.MeshType.Brick
  2976. o253.Name = "part_Weld"
  2977. o253.Parent = o251
  2978. o253.C0 = CFrame.new(-15.1739864, 7.16470861, 10.2317486, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  2979. o253.C1 = CFrame.new(-15.1739864, 11.926692, 4.17670345, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
  2980. o253.Part0 = o251
  2981. o253.Part1 = o254
  2982. o254.Name = "part"
  2983. o254.Parent = o1
  2984. o254.Material = Enum.Material.Metal
  2985. o254.Position = Vector3.new(-7.32153034, 1.62907553, -9.76076317)
  2986. o254.Rotation = Vector3.new(-90, 25, -90)
  2987. o254.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  2988. o254.Velocity = Vector3.new(-2.84757148e-21, 0.103487223, -4.13437876e-21)
  2989. o254.CanCollide = false
  2990. o254.Locked = true
  2991. o254.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2992. o254.CFrame = CFrame.new(-7.32153034, 1.62907553, -9.76076317, -2.06523491e-05, 0.906306386, 0.422630012, 1.552701e-05, -0.422629863, 0.906305611, 0.999999702, 2.52859936e-05, -5.37405685e-06)
  2993. o254.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2994. o254.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2995. o254.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2996. o254.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2997. o254.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2998. o254.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. o254.Position = Vector3.new(-7.32153034, 1.62907553, -9.76076317)
  3000. o254.Velocity = Vector3.new(-2.84757148e-21, 0.103487223, -4.13437876e-21)
  3001. o255.Parent = o254
  3002. o255.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3003. o255.MeshType = Enum.MeshType.Wedge
  3004. o256.Name = "part_Weld"
  3005. o256.Parent = o254
  3006. o256.C0 = CFrame.new(-15.1739864, 11.926692, 4.17670345, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
  3007. o256.C1 = CFrame.new(-15.1739864, 9.80967999, 7.9194355, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
  3008. o256.Part0 = o254
  3009. o256.Part1 = o257
  3010. o257.Name = "part"
  3011. o257.Parent = o1
  3012. o257.Material = Enum.Material.Metal
  3013. o257.Position = Vector3.new(-7.28349972, 1.71064317, -9.76076412)
  3014. o257.Rotation = Vector3.new(-90, 45, -90)
  3015. o257.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3016. o257.Velocity = Vector3.new(-2.6940798e-21, 0.103487223, -3.91650552e-21)
  3017. o257.CanCollide = false
  3018. o257.Locked = true
  3019. o257.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3020. o257.CFrame = CFrame.new(-7.28349972, 1.71064317, -9.76076412, -2.06523491e-05, 0.707100213, 0.70711863, 1.552701e-05, -0.707118154, 0.707099497, 0.999999702, 2.55990908e-05, 3.5984026e-06)
  3021. o257.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3022. o257.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3023. o257.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3024. o257.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3025. o257.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3026. o257.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3027. o257.Position = Vector3.new(-7.28349972, 1.71064317, -9.76076412)
  3028. o257.Velocity = Vector3.new(-2.6940798e-21, 0.103487223, -3.91650552e-21)
  3029. o258.Parent = o257
  3030. o258.MeshId = "rbxassetid://9756362"
  3031. o258.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  3032. o258.MeshType = Enum.MeshType.FileMesh
  3033. o259.Name = "part_Weld"
  3034. o259.Parent = o257
  3035. o259.C0 = CFrame.new(-15.1739864, 9.80967999, 7.9194355, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
  3036. o259.C1 = CFrame.new(-15.1739807, -2.37625861, 12.3950396, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
  3037. o259.Part0 = o257
  3038. o259.Part1 = o260
  3039. o260.Name = "part"
  3040. o260.Parent = o1
  3041. o260.Material = Enum.Material.Metal
  3042. o260.Position = Vector3.new(-7.20737219, 2.38040638, -9.76077843)
  3043. o260.Rotation = Vector3.new(90, 70, 90)
  3044. o260.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3045. o260.Velocity = Vector3.new(-1.43373877e-21, 0.103487223, -2.13312593e-21)
  3046. o260.CanCollide = false
  3047. o260.Locked = true
  3048. o260.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3049. o260.CFrame = CFrame.new(-7.20737219, 2.38040638, -9.76077843, -2.06523491e-05, -0.342031121, 0.939692497, 1.552701e-05, -0.939691663, -0.342030942, 0.999999702, 7.55744895e-06, 2.47213829e-05)
  3050. o260.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3051. o260.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3052. o260.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. o260.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3054. o260.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3055. o260.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3056. o260.Position = Vector3.new(-7.20737219, 2.38040638, -9.76077843)
  3057. o260.Velocity = Vector3.new(-1.43373877e-21, 0.103487223, -2.13312593e-21)
  3058. o261.Parent = o260
  3059. o261.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  3060. o261.MeshType = Enum.MeshType.Brick
  3061. o262.Name = "part_Weld"
  3062. o262.Parent = o260
  3063. o262.C0 = CFrame.new(-15.1739807, -2.37625861, 12.3950396, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
  3064. o262.C1 = CFrame.new(-15.1739845, -5.39620972, 11.3753452, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
  3065. o262.Part0 = o260
  3066. o262.Part1 = o263
  3067. o263.Name = "part"
  3068. o263.Parent = o1
  3069. o263.Material = Enum.Material.Metal
  3070. o263.Position = Vector3.new(-7.16039371, 2.47829628, -9.76077557)
  3071. o263.Rotation = Vector3.new(90, 55, 90)
  3072. o263.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3073. o263.Velocity = Vector3.new(-1.24953245e-21, 0.103487223, -1.87162316e-21)
  3074. o263.CanCollide = false
  3075. o263.Locked = true
  3076. o263.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3077. o263.CFrame = CFrame.new(-7.16039371, 2.47829628, -9.76077557, -2.06523491e-05, -0.573585391, 0.81915009, 1.552701e-05, -0.819149375, -0.573585033, 0.999999702, 9.01620297e-07, 2.58350301e-05)
  3078. o263.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3079. o263.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3080. o263.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3081. o263.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3082. o263.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3083. o263.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3084. o263.Position = Vector3.new(-7.16039371, 2.47829628, -9.76077557)
  3085. o263.Velocity = Vector3.new(-1.24953245e-21, 0.103487223, -1.87162316e-21)
  3086. o264.Parent = o263
  3087. o264.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  3088. o264.MeshType = Enum.MeshType.Brick
  3089. o265.Name = "part_Weld"
  3090. o265.Parent = o263
  3091. o265.C0 = CFrame.new(-15.1739845, -5.39620972, 11.3753452, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
  3092. o265.C1 = CFrame.new(-15.1739845, 1.54138505, 12.5252552, 0, 0, 1, 0, -1, 0, 1, 0, -0)
  3093. o265.Part0 = o263
  3094. o265.Part1 = o266
  3095. o266.Name = "part"
  3096. o266.Parent = o1
  3097. o266.Material = Enum.Material.Metal
  3098. o266.Position = Vector3.new(-7.27237272, 1.91540599, -9.76076889)
  3099. o266.Rotation = Vector3.new(180, 90, 0)
  3100. o266.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3101. o266.Velocity = Vector3.new(-2.30876307e-21, 0.103487223, -3.37157182e-21)
  3102. o266.CanCollide = false
  3103. o266.Locked = true
  3104. o266.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3105. o266.CFrame = CFrame.new(-7.27237272, 1.91540599, -9.76076889, -2.06523491e-05, -1.15931034e-05, 1.00000358, 1.552701e-05, -1.00000274, -1.16974115e-05, 0.999999702, 1.55568632e-05, 2.06457171e-05)
  3106. o266.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3107. o266.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3108. o266.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3109. o266.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3110. o266.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. o266.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3112. o266.Position = Vector3.new(-7.27237272, 1.91540599, -9.76076889)
  3113. o266.Velocity = Vector3.new(-2.30876307e-21, 0.103487223, -3.37157182e-21)
  3114. o267.Parent = o266
  3115. o267.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  3116. o267.MeshType = Enum.MeshType.Brick
  3117. o268.Name = "part_Weld"
  3118. o268.Parent = o266
  3119. o268.C0 = CFrame.new(-15.1739845, 1.54138505, 12.5252552, 0, 0, 1, 0, -1, 0, 1, 0, -0)
  3120. o268.C1 = CFrame.new(-15.1739807, 4.37191916, 11.7522202, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
  3121. o268.Part0 = o266
  3122. o268.Part1 = o269
  3123. o269.Name = "part"
  3124. o269.Parent = o1
  3125. o269.Material = Enum.Material.Metal
  3126. o269.Position = Vector3.new(-7.2304306, 1.55527139, -9.76076603)
  3127. o269.Rotation = Vector3.new(-90, 75, -90)
  3128. o269.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3129. o269.Velocity = Vector3.new(-2.98645381e-21, 0.103487223, -4.32853517e-21)
  3130. o269.CanCollide = false
  3131. o269.Locked = true
  3132. o269.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3133. o269.CFrame = CFrame.new(-7.2304306, 1.55527139, -9.76076603, -2.06523491e-05, 0.258808702, 0.96593225, 1.552701e-05, -0.965931535, 0.258808404, 0.999999702, 2.03702784e-05, 1.59158189e-05)
  3134. o269.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3135. o269.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3136. o269.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3137. o269.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3138. o269.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3139. o269.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3140. o269.Position = Vector3.new(-7.2304306, 1.55527139, -9.76076603)
  3141. o269.Velocity = Vector3.new(-2.98645381e-21, 0.103487223, -4.32853517e-21)
  3142. o270.Parent = o269
  3143. o270.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  3144. o270.MeshType = Enum.MeshType.Brick
  3145. o271.Name = "part_Weld"
  3146. o271.Parent = o269
  3147. o271.C0 = CFrame.new(-15.1739807, 4.37191916, 11.7522202, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
  3148. o271.C1 = CFrame.new(-15.1739788, -11.3810368, -5.27908278, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
  3149. o271.Part0 = o269
  3150. o271.Part1 = o272
  3151. o272.Name = "part"
  3152. o272.Parent = o1
  3153. o272.Material = Enum.Material.Metal
  3154. o272.Position = Vector3.new(-7.09786892, 2.57752156, -9.76078129)
  3155. o272.Rotation = Vector3.new(90, -35, 90)
  3156. o272.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3157. o272.Velocity = Vector3.new(-1.06281299e-21, 0.103487223, -1.60619876e-21)
  3158. o272.CanCollide = false
  3159. o272.Locked = true
  3160. o272.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3161. o272.CFrame = CFrame.new(-7.09786892, 2.57752156, -9.76078129, -2.06523491e-05, -0.819149137, -0.573586404, 1.552701e-05, 0.573586047, -0.819148421, 0.999999702, -2.58350228e-05, 9.01583007e-07)
  3162. o272.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3163. o272.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3164. o272.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3165. o272.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3166. o272.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3167. o272.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3168. o272.Position = Vector3.new(-7.09786892, 2.57752156, -9.76078129)
  3169. o272.Velocity = Vector3.new(-1.06281299e-21, 0.103487223, -1.60619876e-21)
  3170. o273.Parent = o272
  3171. o273.Scale = Vector3.new(0.0250000022, 0.825000048, 0.825000048)
  3172. o273.MeshType = Enum.MeshType.Wedge
  3173. o274.Name = "part_Weld"
  3174. o274.Parent = o272
  3175. o274.C0 = CFrame.new(-15.1739788, -11.3810368, -5.27908278, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
  3176. o274.C1 = CFrame.new(-15.1739807, -0.341732502, 12.6295156, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
  3177. o274.Part0 = o272
  3178. o274.Part1 = o275
  3179. o275.Name = "part"
  3180. o275.Parent = o1
  3181. o275.Material = Enum.Material.Metal
  3182. o275.Position = Vector3.new(-7.24410009, 2.23055696, -9.76077747)
  3183. o275.Rotation = Vector3.new(89.9899979, 80, 90.0099945)
  3184. o275.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3185. o275.Velocity = Vector3.new(-1.71572082e-21, 0.103487223, -2.53259762e-21)
  3186. o275.CanCollide = false
  3187. o275.Locked = true
  3188. o275.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3189. o275.CFrame = CFrame.new(-7.24410009, 2.23055696, -9.76077747, -2.06523491e-05, -0.173658967, 0.98480916, 1.552701e-05, -0.984808326, -0.173658997, 0.999999702, 1.17354502e-05, 2.30334626e-05)
  3190. o275.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3191. o275.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3192. o275.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3193. o275.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3194. o275.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3195. o275.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3196. o275.Position = Vector3.new(-7.24410009, 2.23055696, -9.76077747)
  3197. o275.Velocity = Vector3.new(-1.71572082e-21, 0.103487223, -2.53259762e-21)
  3198. o276.Parent = o275
  3199. o276.Scale = Vector3.new(0.0250000022, 0.949999988, 0.774999976)
  3200. o276.MeshType = Enum.MeshType.Brick
  3201. o277.Name = "part_Weld"
  3202. o277.Parent = o275
  3203. o277.C0 = CFrame.new(-15.1739807, -0.341732502, 12.6295156, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
  3204. o277.C1 = CFrame.new(15.1739864, 9.2374382, -8.04478645, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
  3205. o277.Part0 = o275
  3206. o277.Part1 = o278
  3207. o278.Name = "part"
  3208. o278.Parent = o1
  3209. o278.Material = Enum.Material.Metal
  3210. o278.Position = Vector3.new(-6.96750164, 1.21732867, -9.76074982)
  3211. o278.Rotation = Vector3.new(90, -45, -90)
  3212. o278.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3213. o278.Velocity = Vector3.new(-3.62238465e-21, 0.103487223, -5.22122098e-21)
  3214. o278.CanCollide = false
  3215. o278.Locked = true
  3216. o278.Size = Vector3.new(0.200000003, 0.38499999, 0.200000003)
  3217. o278.CFrame = CFrame.new(-6.96750164, 1.21732867, -9.76074982, 2.06523491e-05, 0.707101822, -0.707116187, -1.552701e-05, -0.70711571, -0.707101166, -0.999999702, 2.55990853e-05, -3.59832666e-06)
  3218. o278.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3219. o278.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3220. o278.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. o278.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. o278.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3223. o278.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3224. o278.Position = Vector3.new(-6.96750164, 1.21732867, -9.76074982)
  3225. o278.Velocity = Vector3.new(-3.62238465e-21, 0.103487223, -5.22122098e-21)
  3226. o279.Parent = o278
  3227. o279.Scale = Vector3.new(0.0250000022, 1, 0.774999976)
  3228. o279.MeshType = Enum.MeshType.Wedge
  3229. o280.Name = "part_Weld"
  3230. o280.Parent = o278
  3231. o280.C0 = CFrame.new(15.1739864, 9.2374382, -8.04478645, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
  3232. o280.C1 = CFrame.new(-15.1739864, 12.5127907, 1.08523083, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
  3233. o280.Part0 = o278
  3234. o280.Part1 = o281
  3235. o281.Name = "part"
  3236. o281.Parent = o1
  3237. o281.Material = Enum.Material.Metal
  3238. o281.Position = Vector3.new(-7.25825977, 1.47809505, -9.76076031)
  3239. o281.Rotation = Vector3.new(-90, 10, -90)
  3240. o281.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3241. o281.Velocity = Vector3.new(-3.13168197e-21, 0.103487223, -4.53448497e-21)
  3242. o281.CanCollide = false
  3243. o281.Locked = true
  3244. o281.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3245. o281.CFrame = CFrame.new(-7.25825977, 1.47809505, -9.76076031, -2.06523491e-05, 0.984808743, 0.173659921, 1.552701e-05, -0.173659891, 0.984807968, 0.999999702, 2.30334717e-05, -1.17354266e-05)
  3246. o281.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3247. o281.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3248. o281.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3249. o281.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3250. o281.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3251. o281.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3252. o281.Position = Vector3.new(-7.25825977, 1.47809505, -9.76076031)
  3253. o281.Velocity = Vector3.new(-3.13168197e-21, 0.103487223, -4.53448497e-21)
  3254. o282.Parent = o281
  3255. o282.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3256. o282.MeshType = Enum.MeshType.Wedge
  3257. o283.Name = "part_Weld"
  3258. o283.Parent = o281
  3259. o283.C0 = CFrame.new(-15.1739864, 12.5127907, 1.08523083, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
  3260. o283.C1 = CFrame.new(-15.1739845, 10.5411682, 7.02121496, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
  3261. o283.Part0 = o281
  3262. o283.Part1 = o284
  3263. o284.Name = "part"
  3264. o284.Parent = o1
  3265. o284.Material = Enum.Material.Metal
  3266. o284.Position = Vector3.new(-7.33526611, 1.77119625, -9.76076794)
  3267. o284.Rotation = Vector3.new(-90, 40, -90)
  3268. o284.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3269. o284.Velocity = Vector3.new(-2.58013244e-21, 0.103487223, -3.75666297e-21)
  3270. o284.CanCollide = false
  3271. o284.Locked = true
  3272. o284.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3273. o284.CFrame = CFrame.new(-7.33526611, 1.77119625, -9.76076794, -2.06523491e-05, 0.766038895, 0.642798841, 1.552701e-05, -0.642798424, 0.766038239, 0.999999702, 2.58152813e-05, 1.35357823e-06)
  3274. o284.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3275. o284.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3276. o284.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3277. o284.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3278. o284.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3279. o284.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3280. o284.Position = Vector3.new(-7.33526611, 1.77119625, -9.76076794)
  3281. o284.Velocity = Vector3.new(-2.58013244e-21, 0.103487223, -3.75666297e-21)
  3282. o285.Parent = o284
  3283. o285.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3284. o285.MeshType = Enum.MeshType.Wedge
  3285. o286.Name = "part_Weld"
  3286. o286.Parent = o284
  3287. o286.C0 = CFrame.new(-15.1739845, 10.5411682, 7.02121496, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
  3288. o286.C1 = CFrame.new(-15.1739769, 7.534863, 10.1184931, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  3289. o286.Part0 = o284
  3290. o286.Part1 = o287
  3291. o287.Name = "part"
  3292. o287.Parent = o1
  3293. o287.Material = Enum.Material.Metal
  3294. o287.Position = Vector3.new(-7.27741718, 1.84014189, -9.76077557)
  3295. o287.Rotation = Vector3.new(-90, 60, -90)
  3296. o287.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3297. o287.Velocity = Vector3.new(-2.45039231e-21, 0.103487223, -3.57189392e-21)
  3298. o287.CanCollide = false
  3299. o287.Locked = true
  3300. o287.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3301. o287.CFrame = CFrame.new(-7.27741718, 1.84014189, -9.76077557, -2.06523491e-05, 0.499992281, 0.866033196, 1.552701e-05, -0.8660326, 0.499991864, 0.999999702, 2.37954937e-05, 1.01012547e-05)
  3302. o287.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3303. o287.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3304. o287.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3305. o287.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3306. o287.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. o287.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3308. o287.Position = Vector3.new(-7.27741718, 1.84014189, -9.76077557)
  3309. o287.Velocity = Vector3.new(-2.45039231e-21, 0.103487223, -3.57189392e-21)
  3310. o288.Parent = o287
  3311. o288.MeshId = "rbxassetid://9756362"
  3312. o288.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  3313. o288.MeshType = Enum.MeshType.FileMesh
  3314. o289.Name = "part_Weld"
  3315. o289.Parent = o287
  3316. o289.C0 = CFrame.new(-15.1739769, 7.534863, 10.1184931, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  3317. o289.C1 = CFrame.new(-15.1739864, 6.85641956, 10.6288748, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
  3318. o289.Part0 = o287
  3319. o289.Part1 = o290
  3320. o290.Name = "part"
  3321. o290.Parent = o1
  3322. o290.Material = Enum.Material.Metal
  3323. o290.Position = Vector3.new(-7.27778959, 2.09609342, -9.76076984)
  3324. o290.Rotation = Vector3.new(-90, 65, -90)
  3325. o290.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3326. o290.Velocity = Vector3.new(-1.96875044e-21, 0.103487223, -2.89107096e-21)
  3327. o290.CanCollide = false
  3328. o290.Locked = true
  3329. o290.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3330. o290.CFrame = CFrame.new(-7.27778959, 2.09609342, -9.76076984, -2.06523491e-05, 0.422608614, 0.906315506, 1.552701e-05, -0.906314909, 0.422608256, 0.999999702, 2.28245462e-05, 1.2136763e-05)
  3331. o290.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3332. o290.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3333. o290.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3334. o290.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3335. o290.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3336. o290.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3337. o290.Position = Vector3.new(-7.27778959, 2.09609342, -9.76076984)
  3338. o290.Velocity = Vector3.new(-1.96875044e-21, 0.103487223, -2.89107096e-21)
  3339. o291.Parent = o290
  3340. o291.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3341. o291.MeshType = Enum.MeshType.Wedge
  3342. o292.Name = "part_Weld"
  3343. o292.Parent = o290
  3344. o292.C0 = CFrame.new(-15.1739864, 6.85641956, 10.6288748, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
  3345. o292.C1 = CFrame.new(-15.1739845, 9.27238464, 8.61450672, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
  3346. o292.Part0 = o290
  3347. o292.Part1 = o293
  3348. o293.Name = "part"
  3349. o293.Parent = o1
  3350. o293.Material = Enum.Material.Metal
  3351. o293.Position = Vector3.new(-7.30638218, 1.9397738, -9.76076984)
  3352. o293.Rotation = Vector3.new(-90, 50, -90)
  3353. o293.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3354. o293.Velocity = Vector3.new(-2.26290807e-21, 0.103487223, -3.30756044e-21)
  3355. o293.CanCollide = false
  3356. o293.Locked = true
  3357. o293.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3358. o293.CFrame = CFrame.new(-7.30638218, 1.9397738, -9.76076984, -2.06523491e-05, 0.64278096, 0.766053796, 1.552701e-05, -0.766053319, 0.642780423, 0.999999702, 2.51880483e-05, 5.81576387e-06)
  3359. o293.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3360. o293.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3361. o293.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3362. o293.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3363. o293.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3364. o293.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3365. o293.Position = Vector3.new(-7.30638218, 1.9397738, -9.76076984)
  3366. o293.Velocity = Vector3.new(-2.26290807e-21, 0.103487223, -3.30756044e-21)
  3367. o294.Parent = o293
  3368. o294.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3369. o294.MeshType = Enum.MeshType.Wedge
  3370. o295.Name = "part_Weld"
  3371. o295.Parent = o293
  3372. o295.C0 = CFrame.new(-15.1739845, 9.27238464, 8.61450672, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
  3373. o295.C1 = CFrame.new(-15.1739883, -11.7327003, 4.41294193, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
  3374. o295.Part0 = o293
  3375. o295.Part1 = o296
  3376. o296.Name = "part"
  3377. o296.Parent = o1
  3378. o296.Material = Enum.Material.Metal
  3379. o296.Position = Vector3.new(-7.06786251, 2.68252039, -9.76077271)
  3380. o296.Rotation = Vector3.new(90, 10, 90)
  3381. o296.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3382. o296.Velocity = Vector3.new(-8.65229305e-22, 0.103487223, -1.32618903e-21)
  3383. o296.CanCollide = false
  3384. o296.Locked = true
  3385. o296.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3386. o296.CFrame = CFrame.new(-7.06786251, 2.68252039, -9.76077271, -2.06523491e-05, -0.984812081, 0.173640102, 1.552701e-05, -0.173639834, -0.984811425, 0.999999702, -1.76305766e-05, 1.890565e-05)
  3387. o296.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3388. o296.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3389. o296.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3390. o296.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3391. o296.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3392. o296.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3393. o296.Position = Vector3.new(-7.06786251, 2.68252039, -9.76077271)
  3394. o296.Velocity = Vector3.new(-8.65229305e-22, 0.103487223, -1.32618903e-21)
  3395. o297.Parent = o296
  3396. o297.Scale = Vector3.new(0.0250000022, 1.5, 1)
  3397. o297.MeshType = Enum.MeshType.Wedge
  3398. o298.Name = "part_Weld"
  3399. o298.Parent = o296
  3400. o298.C0 = CFrame.new(-15.1739883, -11.7327003, 4.41294193, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
  3401. o298.C1 = CFrame.new(-15.1739807, 2.46731949, 12.3522282, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
  3402. o298.Part0 = o296
  3403. o298.Part1 = o5
  3404. o299.Name = "part"
  3405. o299.Parent = o1
  3406. o299.Material = Enum.Material.Metal
  3407. o299.Position = Vector3.new(-7.26241064, 2.07541251, -9.51076794)
  3408. o299.Rotation = Vector3.new(89.9899979, 85, 90.0099945)
  3409. o299.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3410. o299.Velocity = Vector3.new(-2.01360298e-21, 0.103487223, -2.94571739e-21)
  3411. o299.CanCollide = false
  3412. o299.Locked = true
  3413. o299.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3414. o299.CFrame = CFrame.new(-7.26241064, 2.07541251, -9.51076794, -2.06523491e-05, -0.0871620625, 0.996199727, 1.552701e-05, -0.996198595, -0.0871621668, 0.999999702, 1.36984245e-05, 2.19229914e-05)
  3415. o299.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3416. o299.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3417. o299.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3418. o299.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3419. o299.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3420. o299.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3421. o299.Position = Vector3.new(-7.26241064, 2.07541251, -9.51076794)
  3422. o299.Velocity = Vector3.new(-2.01360298e-21, 0.103487223, -2.94571739e-21)
  3423. o300.Parent = o299
  3424. o300.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  3425. o300.MeshType = Enum.MeshType.Brick
  3426. o301.Name = "part_Weld"
  3427. o301.Parent = o299
  3428. o301.C0 = CFrame.new(-15.4239874, 0.604206324, 12.615921, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
  3429. o301.C1 = CFrame.new(-15.4239874, 3.40832901, 12.095212, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
  3430. o301.Part0 = o299
  3431. o301.Part1 = o311
  3432. o302.Name = "part"
  3433. o302.Parent = o1
  3434. o302.Material = Enum.Material.Metal
  3435. o302.Position = Vector3.new(-7.24264145, 1.56673288, -9.51075935)
  3436. o302.Rotation = Vector3.new(-90, 30, -90)
  3437. o302.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3438. o302.Velocity = Vector3.new(-2.9708218e-21, 0.103487223, -4.29833742e-21)
  3439. o302.CanCollide = false
  3440. o302.Locked = true
  3441. o302.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3442. o302.CFrame = CFrame.new(-7.24264145, 1.56673288, -9.51075935, -2.06523491e-05, 0.866023004, 0.500012219, 1.552701e-05, -0.500011981, 0.866022289, 0.999999702, 2.56581625e-05, -3.14977387e-06)
  3443. o302.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3444. o302.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3445. o302.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3446. o302.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3447. o302.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3448. o302.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3449. o302.Position = Vector3.new(-7.24264145, 1.56673288, -9.51075935)
  3450. o302.Velocity = Vector3.new(-2.9708218e-21, 0.103487223, -4.29833742e-21)
  3451. o303.Parent = o302
  3452. o303.MeshId = "rbxassetid://9756362"
  3453. o303.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  3454. o303.MeshType = Enum.MeshType.FileMesh
  3455. o304.Name = "part_Weld"
  3456. o304.Parent = o302
  3457. o304.C0 = CFrame.new(-15.4239874, 11.4177809, 5.21483946, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
  3458. o304.C1 = CFrame.new(-15.1739845, 0.604206681, 12.6159172, 0, 0, 1, -0.0871500224, -0.996195257, 0, 0.996195257, -0.0871500224, 0)
  3459. o304.Part0 = o302
  3460. o304.Part1 = o233
  3461. o305.Name = "part"
  3462. o305.Parent = o1
  3463. o305.Material = Enum.Material.Metal
  3464. o305.Position = Vector3.new(-7.17205048, 1.42039502, -9.51075554)
  3465. o305.Rotation = Vector3.new(-90, 20, -90)
  3466. o305.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3467. o305.Velocity = Vector3.new(-3.2461962e-21, 0.103487223, -4.68592082e-21)
  3468. o305.CanCollide = false
  3469. o305.Locked = true
  3470. o305.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3471. o305.CFrame = CFrame.new(-7.17205048, 1.42039502, -9.51075554, -2.06523491e-05, 0.939692616, 0.342032135, 1.552701e-05, -0.342032075, 0.939691961, 0.999999702, 2.47214048e-05, -7.55742894e-06)
  3472. o305.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3473. o305.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3474. o305.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3475. o305.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3476. o305.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3477. o305.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3478. o305.Position = Vector3.new(-7.17205048, 1.42039502, -9.51075554)
  3479. o305.Velocity = Vector3.new(-3.2461962e-21, 0.103487223, -4.68592082e-21)
  3480. o306.Parent = o305
  3481. o306.MeshId = "rbxassetid://9756362"
  3482. o306.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  3483. o306.MeshType = Enum.MeshType.FileMesh
  3484. o307.Name = "part_Weld"
  3485. o307.Parent = o305
  3486. o307.C0 = CFrame.new(-15.4239874, 12.0334816, 3.26629877, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
  3487. o307.C1 = CFrame.new(-15.4239874, 11.4177809, 5.21483946, 0, 0, 1, 0.866025388, -0.500000238, 0, 0.500000238, 0.866025388, 0)
  3488. o307.Part0 = o305
  3489. o307.Part1 = o302
  3490. o308.Name = "part"
  3491. o308.Parent = o1
  3492. o308.Material = Enum.Material.Metal
  3493. o308.Position = Vector3.new(-7.17205143, 1.33039498, -9.51075459)
  3494. o308.Rotation = Vector3.new(-90, 0, -90)
  3495. o308.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3496. o308.Velocity = Vector3.new(-3.41555557e-21, 0.103487223, -4.92532135e-21)
  3497. o308.CanCollide = false
  3498. o308.Locked = true
  3499. o308.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3500. o308.CFrame = CFrame.new(-7.17205143, 1.33039498, -9.51075459, -2.06523491e-05, 1.00000405, 1.15334988e-05, 1.552701e-05, -1.17123127e-05, 1.00000346, 0.999999702, 2.06457335e-05, -1.55568741e-05)
  3501. o308.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3502. o308.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3503. o308.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3504. o308.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3505. o308.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3506. o308.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3507. o308.Position = Vector3.new(-7.17205143, 1.33039498, -9.51075459)
  3508. o308.Velocity = Vector3.new(-3.41555557e-21, 0.103487223, -4.92532135e-21)
  3509. o309.Parent = o308
  3510. o309.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3511. o309.MeshType = Enum.MeshType.Wedge
  3512. o310.Name = "part_Weld"
  3513. o310.Parent = o308
  3514. o310.C0 = CFrame.new(-15.4239874, 12.4249134, -0.956372976, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  3515. o310.C1 = CFrame.new(-15.4239874, 12.0334816, 3.26629877, 0, 0, 1, 0.939692736, -0.342019916, 0, 0.342019886, 0.939692736, 0)
  3516. o310.Part0 = o308
  3517. o310.Part1 = o305
  3518. o311.Name = "part"
  3519. o311.Parent = o1
  3520. o311.Material = Enum.Material.Metal
  3521. o311.Position = Vector3.new(-7.25045824, 1.6302774, -9.51076031)
  3522. o311.Rotation = Vector3.new(-89.9899979, 80, -90.0099945)
  3523. o311.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3524. o311.Velocity = Vector3.new(-2.85124533e-21, 0.103487223, -4.12949443e-21)
  3525. o311.CanCollide = false
  3526. o311.Locked = true
  3527. o311.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3528. o311.CFrame = CFrame.new(-7.25045824, 1.6302774, -9.51076031, -2.06523491e-05, 0.173636526, 0.984815359, 1.552701e-05, -0.984814286, 0.173636138, 0.999999702, 1.89056245e-05, 1.76307003e-05)
  3529. o311.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3530. o311.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3531. o311.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3532. o311.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3533. o311.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3534. o311.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. o311.Position = Vector3.new(-7.25045824, 1.6302774, -9.51076031)
  3536. o311.Velocity = Vector3.new(-2.85124533e-21, 0.103487223, -4.12949443e-21)
  3537. o312.Parent = o311
  3538. o312.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  3539. o312.MeshType = Enum.MeshType.Brick
  3540. o313.Name = "part_Weld"
  3541. o313.Parent = o311
  3542. o313.C0 = CFrame.new(-15.4239874, 3.40832901, 12.095212, 0, 0, 1, 0.173647001, -0.984807968, 0, 0.984807968, 0.173647001, 0)
  3543. o313.C1 = CFrame.new(-15.4239874, 9.47494125, 8.04478931, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
  3544. o313.Part0 = o311
  3545. o313.Part1 = o314
  3546. o314.Name = "part"
  3547. o314.Parent = o1
  3548. o314.Material = Enum.Material.Metal
  3549. o314.Position = Vector3.new(-7.13547325, 1.38527513, -9.51075459)
  3550. o314.Rotation = Vector3.new(-90, 45, -90)
  3551. o314.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3552. o314.Velocity = Vector3.new(-3.31228361e-21, 0.103487223, -4.77847134e-21)
  3553. o314.CanCollide = false
  3554. o314.Locked = true
  3555. o314.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3556. o314.CFrame = CFrame.new(-7.13547325, 1.38527513, -9.51075459, -2.06523491e-05, 0.707103372, 0.707117796, 1.552701e-05, -0.70711714, 0.707102418, 0.999999702, 2.55991436e-05, 3.59833757e-06)
  3557. o314.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3558. o314.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3559. o314.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3560. o314.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3561. o314.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3562. o314.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3563. o314.Position = Vector3.new(-7.13547325, 1.38527513, -9.51075459)
  3564. o314.Velocity = Vector3.new(-3.31228361e-21, 0.103487223, -4.77847134e-21)
  3565. o315.Parent = o314
  3566. o315.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  3567. o315.MeshType = Enum.MeshType.Brick
  3568. o316.Name = "part_Weld"
  3569. o316.Parent = o314
  3570. o316.C0 = CFrame.new(-15.4239874, 9.47494125, 8.04478931, 0, 0, 1, 0.707107842, -0.707105815, 0, 0.707105815, 0.707107842, 0)
  3571. o316.C1 = CFrame.new(-15.4239874, 7.16470575, 10.2317438, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  3572. o316.Part0 = o314
  3573. o316.Part1 = o317
  3574. o317.Name = "part"
  3575. o317.Parent = o1
  3576. o317.Material = Enum.Material.Metal
  3577. o317.Position = Vector3.new(-7.19045305, 1.46295571, -9.51075649)
  3578. o317.Rotation = Vector3.new(-90, 60, -90)
  3579. o317.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3580. o317.Velocity = Vector3.new(-3.1661065e-21, 0.103487223, -4.57314597e-21)
  3581. o317.CanCollide = false
  3582. o317.Locked = true
  3583. o317.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3584. o317.CFrame = CFrame.new(-7.19045305, 1.46295571, -9.51075649, -2.06523491e-05, 0.499993563, 0.866035223, 1.552701e-05, -0.866034389, 0.499992847, 0.999999702, 2.37955519e-05, 1.01012793e-05)
  3585. o317.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3586. o317.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3587. o317.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3588. o317.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3589. o317.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3590. o317.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3591. o317.Position = Vector3.new(-7.19045305, 1.46295571, -9.51075649)
  3592. o317.Velocity = Vector3.new(-3.1661065e-21, 0.103487223, -4.57314597e-21)
  3593. o318.Parent = o317
  3594. o318.Scale = Vector3.new(0.0250000022, 0.699999988, 0.774999976)
  3595. o318.MeshType = Enum.MeshType.Brick
  3596. o319.Name = "part_Weld"
  3597. o319.Parent = o317
  3598. o319.C0 = CFrame.new(-15.4239874, 7.16470575, 10.2317438, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  3599. o319.C1 = CFrame.new(-15.4239855, 11.9266882, 4.1767025, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
  3600. o319.Part0 = o317
  3601. o319.Part1 = o320
  3602. o320.Name = "part"
  3603. o320.Parent = o1
  3604. o320.Material = Enum.Material.Metal
  3605. o320.Position = Vector3.new(-7.32154942, 1.6290803, -9.51076412)
  3606. o320.Rotation = Vector3.new(-90, 25, -90)
  3607. o320.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3608. o320.Velocity = Vector3.new(-2.85349806e-21, 0.103487223, -4.13436664e-21)
  3609. o320.CanCollide = false
  3610. o320.Locked = true
  3611. o320.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3612. o320.CFrame = CFrame.new(-7.32154942, 1.6290803, -9.51076412, -2.06523491e-05, 0.906307817, 0.422630668, 1.552701e-05, -0.422630429, 0.906306803, 0.999999702, 2.52860355e-05, -5.37406504e-06)
  3613. o320.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3614. o320.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3615. o320.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3616. o320.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3617. o320.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3618. o320.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3619. o320.Position = Vector3.new(-7.32154942, 1.6290803, -9.51076412)
  3620. o320.Velocity = Vector3.new(-2.85349806e-21, 0.103487223, -4.13436664e-21)
  3621. o321.Parent = o320
  3622. o321.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3623. o321.MeshType = Enum.MeshType.Wedge
  3624. o322.Name = "part_Weld"
  3625. o322.Parent = o320
  3626. o322.C0 = CFrame.new(-15.4239855, 11.9266882, 4.1767025, 0, 0, 1, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0)
  3627. o322.C1 = CFrame.new(-15.4239855, 9.80967808, 7.91943455, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
  3628. o322.Part0 = o320
  3629. o322.Part1 = o323
  3630. o323.Name = "part"
  3631. o323.Parent = o1
  3632. o323.Material = Enum.Material.Metal
  3633. o323.Position = Vector3.new(-7.28352022, 1.71064818, -9.51076508)
  3634. o323.Rotation = Vector3.new(-90, 45, -90)
  3635. o323.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3636. o323.Velocity = Vector3.new(-2.70000597e-21, 0.103487223, -3.916493e-21)
  3637. o323.CanCollide = false
  3638. o323.Locked = true
  3639. o323.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3640. o323.CFrame = CFrame.new(-7.28352022, 1.71064818, -9.51076508, -2.06523491e-05, 0.707101345, 0.707119703, 1.552701e-05, -0.707119107, 0.707100451, 0.999999702, 2.55991345e-05, 3.59840942e-06)
  3641. o323.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3642. o323.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3643. o323.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3644. o323.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3645. o323.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3646. o323.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3647. o323.Position = Vector3.new(-7.28352022, 1.71064818, -9.51076508)
  3648. o323.Velocity = Vector3.new(-2.70000597e-21, 0.103487223, -3.916493e-21)
  3649. o324.Parent = o323
  3650. o324.MeshId = "rbxassetid://9756362"
  3651. o324.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  3652. o324.MeshType = Enum.MeshType.FileMesh
  3653. o325.Name = "part_Weld"
  3654. o325.Parent = o323
  3655. o325.C0 = CFrame.new(-15.4239855, 9.80967808, 7.91943455, 0, 0, 1, 0.707105815, -0.707107842, 0, 0.707107842, 0.707105815, 0)
  3656. o325.C1 = CFrame.new(-15.4239931, -2.37625909, 12.3950405, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
  3657. o325.Part0 = o323
  3658. o325.Part1 = o326
  3659. o326.Name = "part"
  3660. o326.Parent = o1
  3661. o326.Material = Enum.Material.Metal
  3662. o326.Position = Vector3.new(-7.20739508, 2.38041329, -9.51076603)
  3663. o326.Rotation = Vector3.new(90, 70, 90)
  3664. o326.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3665. o326.Velocity = Vector3.new(-1.43966161e-21, 0.103487223, -2.13310816e-21)
  3666. o326.CanCollide = false
  3667. o326.Locked = true
  3668. o326.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3669. o326.CFrame = CFrame.new(-7.20739508, 2.38041329, -9.51076603, -2.06523491e-05, -0.342031598, 0.939693928, 1.552701e-05, -0.939692974, -0.342031479, 0.999999702, 7.55746032e-06, 2.47214248e-05)
  3670. o326.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3671. o326.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3672. o326.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3673. o326.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3674. o326.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3675. o326.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3676. o326.Position = Vector3.new(-7.20739508, 2.38041329, -9.51076603)
  3677. o326.Velocity = Vector3.new(-1.43966161e-21, 0.103487223, -2.13310816e-21)
  3678. o327.Parent = o326
  3679. o327.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  3680. o327.MeshType = Enum.MeshType.Brick
  3681. o328.Name = "part_Weld"
  3682. o328.Parent = o326
  3683. o328.C0 = CFrame.new(-15.4239931, -2.37625909, 12.3950405, 0, 0, 1, -0.342019022, -0.939693093, 0, 0.939693093, -0.342018992, 0)
  3684. o328.C1 = CFrame.new(-15.4239836, -5.39621258, 11.3753481, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
  3685. o328.Part0 = o326
  3686. o328.Part1 = o329
  3687. o329.Name = "part"
  3688. o329.Parent = o1
  3689. o329.Material = Enum.Material.Metal
  3690. o329.Position = Vector3.new(-7.16041946, 2.47830248, -9.51077652)
  3691. o329.Rotation = Vector3.new(90, 55, 90)
  3692. o329.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3693. o329.Velocity = Vector3.new(-1.2554564e-21, 0.103487223, -1.87160721e-21)
  3694. o329.CanCollide = false
  3695. o329.Locked = true
  3696. o329.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3697. o329.CFrame = CFrame.new(-7.16041946, 2.47830248, -9.51077652, -2.06523491e-05, -0.573586166, 0.819151342, 1.552701e-05, -0.819150507, -0.573585868, 0.999999702, 9.01620297e-07, 2.58350738e-05)
  3698. o329.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3699. o329.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3700. o329.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3701. o329.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3702. o329.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3703. o329.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3704. o329.Position = Vector3.new(-7.16041946, 2.47830248, -9.51077652)
  3705. o329.Velocity = Vector3.new(-1.2554564e-21, 0.103487223, -1.87160721e-21)
  3706. o330.Parent = o329
  3707. o330.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  3708. o330.MeshType = Enum.MeshType.Brick
  3709. o331.Name = "part_Weld"
  3710. o331.Parent = o329
  3711. o331.C0 = CFrame.new(-15.4239836, -5.39621258, 11.3753481, 0, 0, 1, -0.573573887, -0.819153845, 0, 0.819153845, -0.573573887, 0)
  3712. o331.C1 = CFrame.new(-15.4239855, 1.54138505, 12.5252533, 0, 0, 1, 0, -1, 0, 1, 0, -0)
  3713. o331.Part0 = o329
  3714. o331.Part1 = o332
  3715. o332.Name = "part"
  3716. o332.Parent = o1
  3717. o332.Material = Enum.Material.Metal
  3718. o332.Position = Vector3.new(-7.2723937, 1.91541219, -9.51076794)
  3719. o332.Rotation = Vector3.new(180, 90, 0)
  3720. o332.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3721. o332.Velocity = Vector3.new(-2.31468703e-21, 0.103487223, -3.37155587e-21)
  3722. o332.CanCollide = false
  3723. o332.Locked = true
  3724. o332.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3725. o332.CFrame = CFrame.new(-7.2723937, 1.91541219, -9.51076794, -2.06523491e-05, -1.14887953e-05, 1.00000501, 1.552701e-05, -1.00000417, -1.17123127e-05, 0.999999702, 1.55568887e-05, 2.06457535e-05)
  3726. o332.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3727. o332.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3728. o332.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3729. o332.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3730. o332.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3731. o332.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3732. o332.Position = Vector3.new(-7.2723937, 1.91541219, -9.51076794)
  3733. o332.Velocity = Vector3.new(-2.31468703e-21, 0.103487223, -3.37155587e-21)
  3734. o333.Parent = o332
  3735. o333.Scale = Vector3.new(0.0250000022, 0.850000024, 0.774999976)
  3736. o333.MeshType = Enum.MeshType.Brick
  3737. o334.Name = "part_Weld"
  3738. o334.Parent = o332
  3739. o334.C0 = CFrame.new(-15.4239855, 1.54138505, 12.5252533, 0, 0, 1, 0, -1, 0, 1, 0, -0)
  3740. o334.C1 = CFrame.new(-15.4239855, 4.37191868, 11.7522182, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
  3741. o334.Part0 = o332
  3742. o334.Part1 = o335
  3743. o335.Name = "part"
  3744. o335.Parent = o1
  3745. o335.Material = Enum.Material.Metal
  3746. o335.Position = Vector3.new(-7.23045158, 1.55527711, -9.51076126)
  3747. o335.Rotation = Vector3.new(-90, 75, -90)
  3748. o335.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3749. o335.Velocity = Vector3.new(-2.99237878e-21, 0.103487223, -4.32852063e-21)
  3750. o335.CanCollide = false
  3751. o335.Locked = true
  3752. o335.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3753. o335.CFrame = CFrame.new(-7.23045158, 1.55527711, -9.51076126, -2.06523491e-05, 0.258809149, 0.965933561, 1.552701e-05, -0.965932906, 0.258808762, 0.999999702, 2.0370313e-05, 1.59158481e-05)
  3754. o335.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3755. o335.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3756. o335.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3757. o335.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3758. o335.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3759. o335.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3760. o335.Position = Vector3.new(-7.23045158, 1.55527711, -9.51076126)
  3761. o335.Velocity = Vector3.new(-2.99237878e-21, 0.103487223, -4.32852063e-21)
  3762. o336.Parent = o335
  3763. o336.Scale = Vector3.new(0.0250000022, 0.5, 0.774999976)
  3764. o336.MeshType = Enum.MeshType.Brick
  3765. o337.Name = "part_Weld"
  3766. o337.Parent = o335
  3767. o337.C0 = CFrame.new(-15.4239855, 4.37191868, 11.7522182, 0, 0, 1, 0.258818984, -0.965925872, 0, 0.965925872, 0.258818984, 0)
  3768. o337.C1 = CFrame.new(-15.4239798, -11.3810387, -5.27908373, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
  3769. o337.Part0 = o335
  3770. o337.Part1 = o338
  3771. o338.Name = "part"
  3772. o338.Parent = o1
  3773. o338.Material = Enum.Material.Metal
  3774. o338.Position = Vector3.new(-7.09789419, 2.57752943, -9.51078033)
  3775. o338.Rotation = Vector3.new(90, -35, 90)
  3776. o338.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3777. o338.Velocity = Vector3.new(-1.06873391e-21, 0.103487223, -1.60617876e-21)
  3778. o338.CanCollide = false
  3779. o338.Locked = true
  3780. o338.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3781. o338.CFrame = CFrame.new(-7.09789419, 2.57752943, -9.51078033, -2.06523491e-05, -0.819150269, -0.57358712, 1.552701e-05, 0.573586881, -0.819149613, 0.999999702, -2.58350683e-05, 9.01583917e-07)
  3782. o338.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3783. o338.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3784. o338.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3785. o338.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3786. o338.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3787. o338.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3788. o338.Position = Vector3.new(-7.09789419, 2.57752943, -9.51078033)
  3789. o338.Velocity = Vector3.new(-1.06873391e-21, 0.103487223, -1.60617876e-21)
  3790. o339.Parent = o338
  3791. o339.Scale = Vector3.new(0.0250000022, 0.825000048, 0.825000048)
  3792. o339.MeshType = Enum.MeshType.Wedge
  3793. o340.Name = "part_Weld"
  3794. o340.Parent = o338
  3795. o340.C0 = CFrame.new(-15.4239798, -11.3810387, -5.27908373, 0, 0, 1, -0.81915313, 0.573575079, 0, -0.573575079, -0.81915313, 0)
  3796. o340.C1 = CFrame.new(-15.4239893, -0.341733694, 12.6295214, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
  3797. o340.Part0 = o338
  3798. o340.Part1 = o341
  3799. o341.Name = "part"
  3800. o341.Parent = o1
  3801. o341.Material = Enum.Material.Metal
  3802. o341.Position = Vector3.new(-7.24413013, 2.23056412, -9.51076889)
  3803. o341.Rotation = Vector3.new(89.9899979, 80, 90.0099945)
  3804. o341.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3805. o341.Velocity = Vector3.new(-1.72164336e-21, 0.103487223, -2.53257965e-21)
  3806. o341.CanCollide = false
  3807. o341.Locked = true
  3808. o341.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3809. o341.CFrame = CFrame.new(-7.24413013, 2.23056412, -9.51076889, -2.06523491e-05, -0.173659146, 0.984810472, 1.552701e-05, -0.984809756, -0.173659205, 0.999999702, 1.17354703e-05, 2.30335027e-05)
  3810. o341.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3811. o341.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. o341.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. o341.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3814. o341.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3815. o341.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3816. o341.Position = Vector3.new(-7.24413013, 2.23056412, -9.51076889)
  3817. o341.Velocity = Vector3.new(-1.72164336e-21, 0.103487223, -2.53257965e-21)
  3818. o342.Parent = o341
  3819. o342.Scale = Vector3.new(0.0250000022, 0.949999988, 0.774999976)
  3820. o342.MeshType = Enum.MeshType.Brick
  3821. o343.Name = "part_Weld"
  3822. o343.Parent = o341
  3823. o343.C0 = CFrame.new(-15.4239893, -0.341733694, 12.6295214, 0, 0, 1, -0.173647001, -0.984807968, 0, 0.984807968, -0.173647001, 0)
  3824. o343.C1 = CFrame.new(15.4239855, 9.23743916, -8.04478836, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
  3825. o343.Part0 = o341
  3826. o343.Part1 = o344
  3827. o344.Name = "part"
  3828. o344.Parent = o1
  3829. o344.Material = Enum.Material.Metal
  3830. o344.Position = Vector3.new(-6.96752596, 1.21733391, -9.51075077)
  3831. o344.Rotation = Vector3.new(90, -45, -90)
  3832. o344.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3833. o344.Velocity = Vector3.new(-3.62831063e-21, 0.103487223, -5.22120805e-21)
  3834. o344.CanCollide = false
  3835. o344.Locked = true
  3836. o344.Size = Vector3.new(0.200000003, 0.38499999, 0.200000003)
  3837. o344.CFrame = CFrame.new(-6.96752596, 1.21733391, -9.51075077, 2.06523491e-05, 0.707102835, -0.70711714, -1.552701e-05, -0.707116723, -0.707102239, -0.999999702, 2.5599129e-05, -3.59833211e-06)
  3838. o344.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3839. o344.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3840. o344.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3841. o344.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3842. o344.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3843. o344.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3844. o344.Position = Vector3.new(-6.96752596, 1.21733391, -9.51075077)
  3845. o344.Velocity = Vector3.new(-3.62831063e-21, 0.103487223, -5.22120805e-21)
  3846. o345.Parent = o344
  3847. o345.Scale = Vector3.new(0.0250000022, 1, 0.774999976)
  3848. o345.MeshType = Enum.MeshType.Wedge
  3849. o346.Name = "part_Weld"
  3850. o346.Parent = o344
  3851. o346.C0 = CFrame.new(15.4239855, 9.23743916, -8.04478836, 0, 0, -1, 0.707107842, -0.707105815, 0, -0.707105815, -0.707107842, 0)
  3852. o346.C1 = CFrame.new(-15.4239893, 12.5127926, 1.08523107, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
  3853. o346.Part0 = o344
  3854. o346.Part1 = o347
  3855. o347.Name = "part"
  3856. o347.Parent = o1
  3857. o347.Material = Enum.Material.Metal
  3858. o347.Position = Vector3.new(-7.25828457, 1.47810113, -9.51075745)
  3859. o347.Rotation = Vector3.new(-90, 10, -90)
  3860. o347.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3861. o347.Velocity = Vector3.new(-3.13760633e-21, 0.103487223, -4.53446962e-21)
  3862. o347.CanCollide = false
  3863. o347.Locked = true
  3864. o347.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3865. o347.CFrame = CFrame.new(-7.25828457, 1.47810113, -9.51075745, -2.06523491e-05, 0.984810114, 0.1736601, 1.552701e-05, -0.1736601, 0.984809399, 0.999999702, 2.30335081e-05, -1.17354457e-05)
  3866. o347.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3867. o347.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3868. o347.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3869. o347.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3870. o347.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3871. o347.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3872. o347.Position = Vector3.new(-7.25828457, 1.47810113, -9.51075745)
  3873. o347.Velocity = Vector3.new(-3.13760633e-21, 0.103487223, -4.53446962e-21)
  3874. o348.Parent = o347
  3875. o348.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3876. o348.MeshType = Enum.MeshType.Wedge
  3877. o349.Name = "part_Weld"
  3878. o349.Parent = o347
  3879. o349.C0 = CFrame.new(-15.4239893, 12.5127926, 1.08523107, 0, 0, 1, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0)
  3880. o349.C1 = CFrame.new(-15.423995, 10.541173, 7.02121878, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
  3881. o349.Part0 = o347
  3882. o349.Part1 = o350
  3883. o350.Name = "part"
  3884. o350.Parent = o1
  3885. o350.Material = Enum.Material.Metal
  3886. o350.Position = Vector3.new(-7.3352952, 1.77120233, -9.51075745)
  3887. o350.Rotation = Vector3.new(-90, 40, -90)
  3888. o350.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3889. o350.Velocity = Vector3.new(-2.5860572e-21, 0.103487223, -3.75664802e-21)
  3890. o350.CanCollide = false
  3891. o350.Locked = true
  3892. o350.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3893. o350.CFrame = CFrame.new(-7.3352952, 1.77120233, -9.51075745, -2.06523491e-05, 0.766039968, 0.642799675, 1.552701e-05, -0.642799318, 0.766039371, 0.999999702, 2.58153232e-05, 1.35358005e-06)
  3894. o350.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3895. o350.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3896. o350.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3897. o350.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3898. o350.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3899. o350.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3900. o350.Position = Vector3.new(-7.3352952, 1.77120233, -9.51075745)
  3901. o350.Velocity = Vector3.new(-2.5860572e-21, 0.103487223, -3.75664802e-21)
  3902. o351.Parent = o350
  3903. o351.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3904. o351.MeshType = Enum.MeshType.Wedge
  3905. o352.Name = "part_Weld"
  3906. o352.Parent = o350
  3907. o352.C0 = CFrame.new(-15.423995, 10.541173, 7.02121878, 0, 0, 1, 0.76604414, -0.642788053, 0, 0.642788053, 0.76604414, 0)
  3908. o352.C1 = CFrame.new(-15.4239855, 7.53486109, 10.1184902, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  3909. o352.Part0 = o350
  3910. o352.Part1 = o353
  3911. o353.Name = "part"
  3912. o353.Parent = o1
  3913. o353.Material = Enum.Material.Metal
  3914. o353.Position = Vector3.new(-7.27743578, 1.84014738, -9.51076698)
  3915. o353.Rotation = Vector3.new(-90, 60, -90)
  3916. o353.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3917. o353.Velocity = Vector3.new(-2.45631828e-21, 0.103487223, -3.57188019e-21)
  3918. o353.CanCollide = false
  3919. o353.Locked = true
  3920. o353.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3921. o353.CFrame = CFrame.new(-7.27743578, 1.84014738, -9.51076698, -2.06523491e-05, 0.499993026, 0.866034329, 1.552701e-05, -0.866033852, 0.499992579, 0.999999702, 2.37955319e-05, 1.01012702e-05)
  3922. o353.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3923. o353.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3924. o353.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3925. o353.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3926. o353.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3927. o353.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3928. o353.Position = Vector3.new(-7.27743578, 1.84014738, -9.51076698)
  3929. o353.Velocity = Vector3.new(-2.45631828e-21, 0.103487223, -3.57188019e-21)
  3930. o354.Parent = o353
  3931. o354.MeshId = "rbxassetid://9756362"
  3932. o354.Scale = Vector3.new(0.0250000004, 0.0500000007, 0.100000001)
  3933. o354.MeshType = Enum.MeshType.FileMesh
  3934. o355.Name = "part_Weld"
  3935. o355.Parent = o353
  3936. o355.C0 = CFrame.new(-15.4239855, 7.53486109, 10.1184902, 0, 0, 1, 0.500000954, -0.866024852, 0, 0.866024852, 0.500000954, 0)
  3937. o355.C1 = CFrame.new(-15.4239817, 6.85642242, 10.6288795, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
  3938. o355.Part0 = o353
  3939. o355.Part1 = o356
  3940. o356.Name = "part"
  3941. o356.Parent = o1
  3942. o356.Material = Enum.Material.Metal
  3943. o356.Position = Vector3.new(-7.2778163, 2.09610081, -9.51077461)
  3944. o356.Rotation = Vector3.new(-90, 65, -90)
  3945. o356.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3946. o356.Velocity = Vector3.new(-1.97467238e-21, 0.103487223, -2.89105238e-21)
  3947. o356.CanCollide = false
  3948. o356.Locked = true
  3949. o356.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3950. o356.CFrame = CFrame.new(-7.2778163, 2.09610081, -9.51077461, -2.06523491e-05, 0.42260927, 0.906316698, 1.552701e-05, -0.906316221, 0.422608852, 0.999999702, 2.28245826e-05, 1.21367821e-05)
  3951. o356.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3952. o356.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3953. o356.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3954. o356.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3955. o356.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3956. o356.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3957. o356.Position = Vector3.new(-7.2778163, 2.09610081, -9.51077461)
  3958. o356.Velocity = Vector3.new(-1.97467238e-21, 0.103487223, -2.89105238e-21)
  3959. o357.Parent = o356
  3960. o357.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3961. o357.MeshType = Enum.MeshType.Wedge
  3962. o358.Name = "part_Weld"
  3963. o358.Parent = o356
  3964. o358.C0 = CFrame.new(-15.4239817, 6.85642242, 10.6288795, 0, 0, 1, 0.422617942, -0.906307876, 0, 0.906307876, 0.422617942, 0)
  3965. o358.C1 = CFrame.new(-15.4239798, 9.27239037, 8.61451435, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
  3966. o358.Part0 = o356
  3967. o358.Part1 = o359
  3968. o359.Name = "part"
  3969. o359.Parent = o1
  3970. o359.Material = Enum.Material.Metal
  3971. o359.Position = Vector3.new(-7.3064127, 1.9397794, -9.51077461)
  3972. o359.Rotation = Vector3.new(-90, 50, -90)
  3973. o359.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  3974. o359.Velocity = Vector3.new(-2.26883343e-21, 0.103487223, -3.30754671e-21)
  3975. o359.CanCollide = false
  3976. o359.Locked = true
  3977. o359.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3978. o359.CFrame = CFrame.new(-7.3064127, 1.9397794, -9.51077461, -2.06523491e-05, 0.642781854, 0.766054809, 1.552701e-05, -0.766054451, 0.642781377, 0.999999702, 2.51880883e-05, 5.81577297e-06)
  3979. o359.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3980. o359.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3981. o359.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3982. o359.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3983. o359.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3984. o359.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3985. o359.Position = Vector3.new(-7.3064127, 1.9397794, -9.51077461)
  3986. o359.Velocity = Vector3.new(-2.26883343e-21, 0.103487223, -3.30754671e-21)
  3987. o360.Parent = o359
  3988. o360.Scale = Vector3.new(0.0250000022, 0.5, 0.925000012)
  3989. o360.MeshType = Enum.MeshType.Wedge
  3990. o361.Name = "part_Weld"
  3991. o361.Parent = o359
  3992. o361.C0 = CFrame.new(-15.4239798, 9.27239037, 8.61451435, 0, 0, 1, 0.642788053, -0.76604414, 0, 0.76604414, 0.642788053, 0)
  3993. o361.C1 = CFrame.new(-15.4239779, -11.7326965, 4.41294098, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
  3994. o361.Part0 = o359
  3995. o361.Part1 = o362
  3996. o362.Name = "part"
  3997. o362.Parent = o1
  3998. o362.Material = Enum.Material.Metal
  3999. o362.Position = Vector3.new(-7.0678792, 2.68252707, -9.5107832)
  4000. o362.Rotation = Vector3.new(90, 10, 90)
  4001. o362.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4002. o362.Velocity = Vector3.new(-8.71152451e-22, 0.103487223, -1.32617227e-21)
  4003. o362.CanCollide = false
  4004. o362.Locked = true
  4005. o362.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4006. o362.CFrame = CFrame.new(-7.0678792, 2.68252707, -9.5107832, -2.06523491e-05, -0.984813392, 0.1736404, 1.552701e-05, -0.173640132, -0.984812856, 0.999999702, -1.76306039e-05, 1.89056791e-05)
  4007. o362.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4008. o362.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4009. o362.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4010. o362.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4011. o362.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4012. o362.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4013. o362.Position = Vector3.new(-7.0678792, 2.68252707, -9.5107832)
  4014. o362.Velocity = Vector3.new(-8.71152451e-22, 0.103487223, -1.32617227e-21)
  4015. o363.Parent = o362
  4016. o363.Scale = Vector3.new(0.0250000022, 1.5, 1)
  4017. o363.MeshType = Enum.MeshType.Wedge
  4018. o364.Name = "part_Weld"
  4019. o364.Parent = o362
  4020. o364.C0 = CFrame.new(-15.4239779, -11.7326965, 4.41294098, 0, 0, 1, -0.984807253, -0.17365104, 0, 0.17365104, -0.984807253, 0)
  4021. o364.C1 = CFrame.new(-15.4239855, 2.46731901, 12.3522243, 0, 0, 1, 0.0871539935, -0.996194899, 0, 0.996194899, 0.087154001, 0)
  4022. o364.Part0 = o362
  4023. o364.Part1 = o2
  4024. o365.Name = "Hitbox"
  4025. o365.Parent = o1
  4026. o365.BrickColor = BrickColor.new("Bright orange")
  4027. o365.Transparency = 1
  4028. o365.Position = Vector3.new(-6.72532797, 1.95401204, -9.75976563)
  4029. o365.CanCollide = false
  4030. o365.Size = Vector3.new(1.53999972, 2.09999967, 1)
  4031. o365.CFrame = CFrame.new(-6.72532797, 1.95401204, -9.75976563, 1.00000024, 1.17700811e-05, -2.06523491e-05, -1.17798645e-05, 0.99999994, 1.552701e-05, 2.06456625e-05, -1.55568123e-05, 0.999999702)
  4032. o365.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4033. o365.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4034. o365.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4035. o365.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4036. o365.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4037. o365.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4038. o365.Color = Color3.new(0.854902, 0.521569, 0.254902)
  4039. o365.Position = Vector3.new(-6.72532797, 1.95401204, -9.75976563)
  4040.  
  4041.  
  4042. --Right--
  4043.  
  4044. o1 = Instance.new("Model")
  4045. o2 = Instance.new("Part")
  4046. o3 = Instance.new("SpecialMesh")
  4047. o4 = Instance.new("Weld")
  4048. o5 = Instance.new("Part")
  4049. o6 = Instance.new("SpecialMesh")
  4050. o7 = Instance.new("Weld")
  4051. o8 = Instance.new("Part")
  4052. o9 = Instance.new("SpecialMesh")
  4053. o10 = Instance.new("Part")
  4054. o11 = Instance.new("SpecialMesh")
  4055. o12 = Instance.new("Weld")
  4056. o13 = Instance.new("Part")
  4057. o14 = Instance.new("SpecialMesh")
  4058. o15 = Instance.new("Part")
  4059. o16 = Instance.new("SpecialMesh")
  4060. o17 = Instance.new("Weld")
  4061. o18 = Instance.new("Part")
  4062. o19 = Instance.new("SpecialMesh")
  4063. o20 = Instance.new("Weld")
  4064. o21 = Instance.new("Part")
  4065. o22 = Instance.new("SpecialMesh")
  4066. o23 = Instance.new("Weld")
  4067. o24 = Instance.new("Part")
  4068. o25 = Instance.new("Weld")
  4069. o26 = Instance.new("Part")
  4070. o27 = Instance.new("SpecialMesh")
  4071. o28 = Instance.new("Weld")
  4072. o29 = Instance.new("Part")
  4073. o30 = Instance.new("SpecialMesh")
  4074. o31 = Instance.new("Weld")
  4075. o32 = Instance.new("Part")
  4076. o33 = Instance.new("CylinderMesh")
  4077. o34 = Instance.new("Weld")
  4078. o35 = Instance.new("Part")
  4079. o36 = Instance.new("CylinderMesh")
  4080. o37 = Instance.new("Weld")
  4081. o38 = Instance.new("Part")
  4082. o39 = Instance.new("CylinderMesh")
  4083. o40 = Instance.new("Weld")
  4084. o41 = Instance.new("Part")
  4085. o42 = Instance.new("SpecialMesh")
  4086. o43 = Instance.new("Weld")
  4087. o44 = Instance.new("Part")
  4088. o45 = Instance.new("SpecialMesh")
  4089. o46 = Instance.new("Weld")
  4090. o47 = Instance.new("Part")
  4091. o48 = Instance.new("SpecialMesh")
  4092. o49 = Instance.new("Weld")
  4093. o50 = Instance.new("Part")
  4094. o51 = Instance.new("SpecialMesh")
  4095. o52 = Instance.new("Weld")
  4096. o53 = Instance.new("Part")
  4097. o54 = Instance.new("SpecialMesh")
  4098. o55 = Instance.new("Weld")
  4099. o56 = Instance.new("Part")
  4100. o57 = Instance.new("BlockMesh")
  4101. o58 = Instance.new("Weld")
  4102. o59 = Instance.new("Part")
  4103. o60 = Instance.new("SpecialMesh")
  4104. o61 = Instance.new("Weld")
  4105. o62 = Instance.new("Part")
  4106. o63 = Instance.new("SpecialMesh")
  4107. o64 = Instance.new("Weld")
  4108. o65 = Instance.new("Part")
  4109. o66 = Instance.new("CylinderMesh")
  4110. o67 = Instance.new("Weld")
  4111. o68 = Instance.new("Part")
  4112. o69 = Instance.new("SpecialMesh")
  4113. o70 = Instance.new("Weld")
  4114. o71 = Instance.new("Part")
  4115. o72 = Instance.new("SpecialMesh")
  4116. o73 = Instance.new("Weld")
  4117. o74 = Instance.new("Part")
  4118. o75 = Instance.new("SpecialMesh")
  4119. o76 = Instance.new("Weld")
  4120. o77 = Instance.new("Part")
  4121. o78 = Instance.new("CylinderMesh")
  4122. o79 = Instance.new("Weld")
  4123. o80 = Instance.new("Part")
  4124. o81 = Instance.new("SpecialMesh")
  4125. o82 = Instance.new("Weld")
  4126. o83 = Instance.new("Part")
  4127. o84 = Instance.new("SpecialMesh")
  4128. o85 = Instance.new("Weld")
  4129. o86 = Instance.new("Part")
  4130. o87 = Instance.new("SpecialMesh")
  4131. o88 = Instance.new("Weld")
  4132. o89 = Instance.new("Part")
  4133. o90 = Instance.new("Weld")
  4134. o91 = Instance.new("Part")
  4135. o92 = Instance.new("SpecialMesh")
  4136. o93 = Instance.new("Weld")
  4137. o94 = Instance.new("Part")
  4138. o95 = Instance.new("Weld")
  4139. o96 = Instance.new("Part")
  4140. o97 = Instance.new("CylinderMesh")
  4141. o98 = Instance.new("Weld")
  4142. o99 = Instance.new("Part")
  4143. o100 = Instance.new("BlockMesh")
  4144. o101 = Instance.new("Weld")
  4145. o102 = Instance.new("Part")
  4146. o103 = Instance.new("SpecialMesh")
  4147. o104 = Instance.new("Part")
  4148. o105 = Instance.new("SpecialMesh")
  4149. o106 = Instance.new("Weld")
  4150. o107 = Instance.new("Part")
  4151. o108 = Instance.new("SpecialMesh")
  4152. o109 = Instance.new("Weld")
  4153. o110 = Instance.new("Part")
  4154. o111 = Instance.new("SpecialMesh")
  4155. o112 = Instance.new("Weld")
  4156. o113 = Instance.new("Part")
  4157. o114 = Instance.new("SpecialMesh")
  4158. o115 = Instance.new("Weld")
  4159. o116 = Instance.new("Part")
  4160. o117 = Instance.new("SpecialMesh")
  4161. o118 = Instance.new("Weld")
  4162. o119 = Instance.new("Part")
  4163. o120 = Instance.new("SpecialMesh")
  4164. o121 = Instance.new("Weld")
  4165. o122 = Instance.new("Part")
  4166. o123 = Instance.new("SpecialMesh")
  4167. o124 = Instance.new("Weld")
  4168. o125 = Instance.new("Part")
  4169. o126 = Instance.new("SpecialMesh")
  4170. o127 = Instance.new("Weld")
  4171. o128 = Instance.new("Part")
  4172. o129 = Instance.new("SpecialMesh")
  4173. o130 = Instance.new("Weld")
  4174. o131 = Instance.new("Part")
  4175. o132 = Instance.new("SpecialMesh")
  4176. o133 = Instance.new("Weld")
  4177. o134 = Instance.new("Part")
  4178. o135 = Instance.new("BlockMesh")
  4179. o136 = Instance.new("Weld")
  4180. o137 = Instance.new("Part")
  4181. o138 = Instance.new("BlockMesh")
  4182. o139 = Instance.new("Weld")
  4183. o140 = Instance.new("Part")
  4184. o141 = Instance.new("SpecialMesh")
  4185. o142 = Instance.new("Weld")
  4186. o143 = Instance.new("Part")
  4187. o144 = Instance.new("BlockMesh")
  4188. o145 = Instance.new("Weld")
  4189. o146 = Instance.new("Part")
  4190. o147 = Instance.new("BlockMesh")
  4191. o148 = Instance.new("Weld")
  4192. o149 = Instance.new("Part")
  4193. o150 = Instance.new("SpecialMesh")
  4194. o151 = Instance.new("Weld")
  4195. o152 = Instance.new("Part")
  4196. o153 = Instance.new("BlockMesh")
  4197. o154 = Instance.new("Weld")
  4198. o155 = Instance.new("Part")
  4199. o156 = Instance.new("SpecialMesh")
  4200. o157 = Instance.new("Weld")
  4201. o158 = Instance.new("Part")
  4202. o159 = Instance.new("Weld")
  4203. o160 = Instance.new("Part")
  4204. o161 = Instance.new("BlockMesh")
  4205. o162 = Instance.new("Weld")
  4206. o163 = Instance.new("Part")
  4207. o164 = Instance.new("BlockMesh")
  4208. o165 = Instance.new("Weld")
  4209. o166 = Instance.new("Part")
  4210. o167 = Instance.new("BlockMesh")
  4211. o168 = Instance.new("Weld")
  4212. o169 = Instance.new("Part")
  4213. o170 = Instance.new("BlockMesh")
  4214. o171 = Instance.new("Weld")
  4215. o172 = Instance.new("Part")
  4216. o173 = Instance.new("BlockMesh")
  4217. o174 = Instance.new("Weld")
  4218. o175 = Instance.new("Part")
  4219. o176 = Instance.new("BlockMesh")
  4220. o177 = Instance.new("Weld")
  4221. o178 = Instance.new("Part")
  4222. o179 = Instance.new("SpecialMesh")
  4223. o180 = Instance.new("Weld")
  4224. o181 = Instance.new("Part")
  4225. o182 = Instance.new("SpecialMesh")
  4226. o183 = Instance.new("Weld")
  4227. o184 = Instance.new("Part")
  4228. o185 = Instance.new("SpecialMesh")
  4229. o186 = Instance.new("Weld")
  4230. o1.Name = "Right"
  4231. o1.Parent = game.ReplicatedStorage
  4232. o2.Name = "part"
  4233. o2.Parent = o1
  4234. o2.Material = Enum.Material.SmoothPlastic
  4235. o2.BrickColor = BrickColor.new("Institutional white")
  4236. o2.Position = Vector3.new(-5.50483513, 3.97847772, -10.3093672)
  4237. o2.Rotation = Vector3.new(-90, -90, 0)
  4238. o2.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4239. o2.Velocity = Vector3.new(3.16409953e-21, 0.103487223, 4.5781139e-21)
  4240. o2.CanCollide = false
  4241. o2.Locked = true
  4242. o2.Shape = Enum.PartType.Ball
  4243. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4244. o2.CFrame = CFrame.new(-5.50483513, 3.97847772, -10.3093672, -7.9870224e-06, 6.85437442e-07, -1.00000095, 1.00000119, 4.88512751e-06, -8.16583633e-06, 5.06196193e-06, -1.00000131, -7.15279839e-07)
  4245. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4246. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4247. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4248. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4249. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4250. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4251. o2.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4252. o2.Position = Vector3.new(-5.50483513, 3.97847772, -10.3093672)
  4253. o2.Velocity = Vector3.new(3.16409953e-21, 0.103487223, 4.5781139e-21)
  4254. o3.Parent = o2
  4255. o3.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
  4256. o3.MeshType = Enum.MeshType.Sphere
  4257. o4.Name = "part_Weld"
  4258. o4.Parent = o2
  4259. o4.C0 = CFrame.new(-3.6050005, 14.6050053, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  4260. o4.C1 = CFrame.new(-9.01119041, 14.6050024, -5.13074589, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
  4261. o4.Part0 = o2
  4262. o4.Part1 = o44
  4263. o5.Parent = o1
  4264. o5.Material = Enum.Material.Neon
  4265. o5.BrickColor = BrickColor.new("Alder")
  4266. o5.Position = Vector3.new(-5.23741627, 4.01984501, -10.2693815)
  4267. o5.Rotation = Vector3.new(-180, 0, 180)
  4268. o5.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4269. o5.Velocity = Vector3.new(3.24099583e-21, 0.103487223, 4.69450241e-21)
  4270. o5.CanCollide = false
  4271. o5.Locked = true
  4272. o5.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4273. o5.CFrame = CFrame.new(-5.23741627, 4.01984501, -10.2693815, -1.00000072, -3.59863043e-05, 6.42132477e-07, -3.63737345e-05, 1.00000095, 5.07036202e-06, -5.16633463e-07, 5.15975307e-06, -1.00000107)
  4274. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4275. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4276. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4277. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4278. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4279. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4280. o5.Color = Color3.new(0.705882, 0.501961, 1)
  4281. o5.Position = Vector3.new(-5.23741627, 4.01984501, -10.2693815)
  4282. o5.Velocity = Vector3.new(3.24099583e-21, 0.103487223, 4.69450241e-21)
  4283. o6.Parent = o5
  4284. o6.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
  4285. o6.MeshType = Enum.MeshType.Brick
  4286. o7.Name = "Part_Weld"
  4287. o7.Parent = o5
  4288. o7.C0 = CFrame.new(-10.0801458, -3.6466527, 14.6449938, -1, -2.80459699e-05, 1.01303236e-07, -2.80459699e-05, 1, 1.50998645e-07, -1.01307471e-07, 1.50995803e-07, -1)
  4289. o7.C1 = CFrame.new(-4.57674551, -9.71762657, 14.6449928, -0.70708704, -0.707126498, 3.04639869e-08, -0.707126498, 0.70708704, 2.44011972e-07, -1.94088017e-07, 1.50995803e-07, -1)
  4290. o7.Part0 = o5
  4291. o7.Part1 = o131
  4292. o8.Name = "Handle"
  4293. o8.Parent = o1
  4294. o8.BrickColor = BrickColor.new("Bright orange")
  4295. o8.Transparency = 1
  4296. o8.Position = Vector3.new(-5.20482397, 3.37347794, -9.76437378)
  4297. o8.CanCollide = false
  4298. o8.Size = Vector3.new(1, 2, 1)
  4299. o8.CFrame = CFrame.new(-5.20482397, 3.37347794, -9.76437378, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4300. o8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4301. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4302. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4303. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4304. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4305. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4306. o8.Color = Color3.new(0.854902, 0.521569, 0.254902)
  4307. o8.Position = Vector3.new(-5.20482397, 3.37347794, -9.76437378)
  4308. o9.Parent = o8
  4309. o9.MeshId = "rbxasset://fonts/rightarm.mesh"
  4310. o9.MeshType = Enum.MeshType.FileMesh
  4311. o10.Name = "part"
  4312. o10.Parent = o1
  4313. o10.BrickColor = BrickColor.new("Institutional white")
  4314. o10.Position = Vector3.new(-5.19982624, 2.7934761, -9.76437569)
  4315. o10.Rotation = Vector3.new(-180, 0, 180)
  4316. o10.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4317. o10.Velocity = Vector3.new(9.21258877e-22, 0.103487223, 1.43324722e-21)
  4318. o10.CanCollide = false
  4319. o10.Locked = true
  4320. o10.Size = Vector3.new(0.5, 0.349999934, 1)
  4321. o10.CFrame = CFrame.new(-5.19982624, 2.7934761, -9.76437569, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
  4322. o10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4323. o10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4324. o10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4325. o10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4326. o10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4327. o10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4328. o10.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4329. o10.Position = Vector3.new(-5.19982624, 2.7934761, -9.76437569)
  4330. o10.Velocity = Vector3.new(9.21258877e-22, 0.103487223, 1.43324722e-21)
  4331. o11.Parent = o10
  4332. o11.MeshId = "rbxasset://fonts/rightarm.mesh"
  4333. o11.Scale = Vector3.new(1.10000002, 0.0500000007, 1.10000002)
  4334. o11.MeshType = Enum.MeshType.FileMesh
  4335. o12.Name = "part_Weld"
  4336. o12.Parent = o10
  4337. o12.C0 = CFrame.new(-10.0426617, -2.42000055, 15.1500034, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4338. o12.C1 = CFrame.new(15.1500034, 9.57265949, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  4339. o12.Part0 = o10
  4340. o12.Part1 = o47
  4341. o13.Name = "part"
  4342. o13.Parent = o1
  4343. o13.BrickColor = BrickColor.new("Institutional white")
  4344. o13.Position = Vector3.new(-5.20483971, 4.14297819, -9.76436901)
  4345. o13.Rotation = Vector3.new(-180, 0, 180)
  4346. o13.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4347. o13.Velocity = Vector3.new(3.46071204e-21, 0.103487223, 5.02280749e-21)
  4348. o13.CanCollide = false
  4349. o13.Locked = true
  4350. o13.Size = Vector3.new(0.5, 0.349999934, 1)
  4351. o13.CFrame = CFrame.new(-5.20483971, 4.14297819, -9.76436901, -1.00000095, -8.07642937e-06, 6.85438181e-07, -8.22544098e-06, 1.00000119, 4.79770461e-06, -7.15280294e-07, 4.97453993e-06, -1.00000131)
  4352. o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4353. o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4354. o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4355. o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4356. o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4357. o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4358. o13.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4359. o13.Position = Vector3.new(-5.20483971, 4.14297819, -9.76436901)
  4360. o13.Velocity = Vector3.new(3.46071204e-21, 0.103487223, 5.02280749e-21)
  4361. o14.Parent = o13
  4362. o14.MeshId = "rbxasset://fonts/rightarm.mesh"
  4363. o14.Scale = Vector3.new(1.10000002, 0.075000003, 1.10000002)
  4364. o14.MeshType = Enum.MeshType.FileMesh
  4365. o15.Name = "part"
  4366. o15.Parent = o1
  4367. o15.Material = Enum.Material.SmoothPlastic
  4368. o15.BrickColor = BrickColor.new("Institutional white")
  4369. o15.Position = Vector3.new(-5.50483847, 3.97847366, -9.21436501)
  4370. o15.Rotation = Vector3.new(90, -20, -180)
  4371. o15.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4372. o15.Velocity = Vector3.new(3.13809403e-21, 0.103487223, 4.57810219e-21)
  4373. o15.CanCollide = false
  4374. o15.Locked = true
  4375. o15.Shape = Enum.PartType.Ball
  4376. o15.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4377. o15.CFrame = CFrame.new(-5.50483847, 3.97847366, -9.21436501, -0.939696372, 6.85437442e-07, -0.342012733, 0.342012674, 4.88512751e-06, -0.93969667, 1.05914864e-06, -1.00000131, -5.00132955e-06)
  4378. o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4379. o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4380. o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4381. o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4382. o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4383. o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4384. o15.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4385. o15.Position = Vector3.new(-5.50483847, 3.97847366, -9.21436501)
  4386. o15.Velocity = Vector3.new(3.13809403e-21, 0.103487223, 4.57810219e-21)
  4387. o16.Parent = o15
  4388. o16.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
  4389. o16.MeshType = Enum.MeshType.Sphere
  4390. o17.Name = "part_Weld"
  4391. o17.Parent = o15
  4392. o17.C0 = CFrame.new(-10.9566031, 15.7000055, -0.151512623, -0.939692736, 0.342019916, 0, 0, 0, -1, -0.342019886, -0.939692736, 0)
  4393. o17.C1 = CFrame.new(-10.0476608, -3.7694993, 15.1500015, -1, -8.74227766e-08, 7.64274186e-15, -8.74227766e-08, 1, -8.74227766e-08, 0, -8.74227766e-08, -1)
  4394. o17.Part0 = o15
  4395. o17.Part1 = o13
  4396. o18.Name = "part"
  4397. o18.Parent = o1
  4398. o18.Material = Enum.Material.SmoothPlastic
  4399. o18.BrickColor = BrickColor.new("Really black")
  4400. o18.Position = Vector3.new(-5.50483751, 3.97847319, -9.21436501)
  4401. o18.Rotation = Vector3.new(90, -20, -180)
  4402. o18.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4403. o18.Velocity = Vector3.new(3.13809322e-21, 0.103487223, 4.57810097e-21)
  4404. o18.CanCollide = false
  4405. o18.Locked = true
  4406. o18.Shape = Enum.PartType.Ball
  4407. o18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4408. o18.CFrame = CFrame.new(-5.50483751, 3.97847319, -9.21436501, -0.939696372, 6.85437442e-07, -0.342012763, 0.342012644, 4.88512751e-06, -0.93969667, 1.05914853e-06, -1.00000131, -5.00132955e-06)
  4409. o18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4410. o18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4411. o18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4412. o18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4413. o18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4414. o18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4415. o18.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4416. o18.Position = Vector3.new(-5.50483751, 3.97847319, -9.21436501)
  4417. o18.Velocity = Vector3.new(3.13809322e-21, 0.103487223, 4.57810097e-21)
  4418. o19.Parent = o18
  4419. o19.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
  4420. o19.MeshType = Enum.MeshType.Cylinder
  4421. o20.Name = "part_Weld"
  4422. o20.Parent = o18
  4423. o20.C0 = CFrame.new(-10.9566031, 15.7000055, -0.151512623, -0.939692736, 0.342019916, 0, 0, 0, -1, -0.342019886, -0.939692736, 0)
  4424. o20.C1 = CFrame.new(-10.9566031, 15.7000055, -0.151512623, -0.939692736, 0.342019916, 0, 0, 0, -1, -0.342019886, -0.939692736, 0)
  4425. o20.Part0 = o18
  4426. o20.Part1 = o15
  4427. o21.Name = "part"
  4428. o21.Parent = o1
  4429. o21.Material = Enum.Material.SmoothPlastic
  4430. o21.BrickColor = BrickColor.new("Institutional white")
  4431. o21.Position = Vector3.new(-4.87983847, 3.97847795, -9.21436882)
  4432. o21.Rotation = Vector3.new(-90, -10, 0)
  4433. o21.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4434. o21.Velocity = Vector3.new(3.13810231e-21, 0.103487223, 4.59295266e-21)
  4435. o21.CanCollide = false
  4436. o21.Locked = true
  4437. o21.Shape = Enum.PartType.Ball
  4438. o21.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4439. o21.CFrame = CFrame.new(-4.87983847, 3.97847795, -9.21436882, 0.984807551, 6.85437442e-07, -0.173655033, 0.173655286, 4.88512751e-06, 0.98480773, 1.58340799e-06, -1.00000131, 4.86085492e-06)
  4440. o21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4441. o21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4442. o21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4443. o21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4444. o21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4445. o21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4446. o21.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4447. o21.Position = Vector3.new(-4.87983847, 3.97847795, -9.21436882)
  4448. o21.Velocity = Vector3.new(3.13810231e-21, 0.103487223, 4.59295266e-21)
  4449. o22.Parent = o21
  4450. o22.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
  4451. o22.MeshType = Enum.MeshType.Sphere
  4452. o23.Name = "part_Weld"
  4453. o23.Parent = o21
  4454. o23.C0 = CFrame.new(8.9489584, 15.7000017, -5.23854446, 0.984807968, 0.173647001, 0, 0, 0, -1, -0.173647001, 0.984807968, 0)
  4455. o23.C1 = CFrame.new(-10.9566031, 15.7000055, -0.151512623, -0.939692736, 0.342019916, 0, 0, 0, -1, -0.342019886, -0.939692736, 0)
  4456. o23.Part0 = o21
  4457. o23.Part1 = o18
  4458. o24.Name = "part"
  4459. o24.Parent = o1
  4460. o24.Material = Enum.Material.SmoothPlastic
  4461. o24.BrickColor = BrickColor.new("Institutional white")
  4462. o24.Position = Vector3.new(-5.20483923, 3.97847795, -9.76436996)
  4463. o24.Rotation = Vector3.new(0, -90, 0)
  4464. o24.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4465. o24.Velocity = Vector3.new(3.1511605e-21, 0.103487223, 4.58523662e-21)
  4466. o24.CanCollide = false
  4467. o24.Locked = true
  4468. o24.Shape = Enum.PartType.Cylinder
  4469. o24.Size = Vector3.new(1.11000001, 0.349999934, 1)
  4470. o24.CFrame = CFrame.new(-5.20483923, 3.97847795, -9.76436996, -6.85437442e-07, -7.9870224e-06, -1.00000095, -4.88512751e-06, 1.00000119, -8.19563866e-06, 1.00000131, 5.06196238e-06, -7.15279896e-07)
  4471. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4472. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4473. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4474. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4475. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4476. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4477. o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4478. o24.Position = Vector3.new(-5.20483923, 3.97847795, -9.76436996)
  4479. o24.Velocity = Vector3.new(3.1511605e-21, 0.103487223, 4.58523662e-21)
  4480. o25.Name = "part_Weld"
  4481. o25.Parent = o24
  4482. o25.C0 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  4483. o25.C1 = CFrame.new(8.9489584, 15.7000017, -5.23854446, 0.984807968, 0.173647001, 0, 0, 0, -1, -0.173647001, 0.984807968, 0)
  4484. o25.Part0 = o24
  4485. o25.Part1 = o21
  4486. o26.Name = "part"
  4487. o26.Parent = o1
  4488. o26.BrickColor = BrickColor.new("Institutional white")
  4489. o26.Position = Vector3.new(-5.20483637, 3.97847795, -9.76436996)
  4490. o26.Rotation = Vector3.new(-180, 0, 180)
  4491. o26.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4492. o26.Velocity = Vector3.new(3.1511605e-21, 0.103487223, 4.58523662e-21)
  4493. o26.CanCollide = false
  4494. o26.Locked = true
  4495. o26.Size = Vector3.new(0.5, 0.349999934, 1)
  4496. o26.CFrame = CFrame.new(-5.20483637, 3.97847795, -9.76436996, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.19563866e-06, 1.00000119, 4.88512751e-06, -7.15279896e-07, 5.06196238e-06, -1.00000131)
  4497. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4498. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4499. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4500. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4501. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4502. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4503. o26.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4504. o26.Position = Vector3.new(-5.20483637, 3.97847795, -9.76436996)
  4505. o26.Velocity = Vector3.new(3.1511605e-21, 0.103487223, 4.58523662e-21)
  4506. o27.Parent = o26
  4507. o27.MeshId = "rbxasset://fonts/rightarm.mesh"
  4508. o27.Scale = Vector3.new(1.10000002, 0.00999999978, 1.10000002)
  4509. o27.MeshType = Enum.MeshType.FileMesh
  4510. o28.Name = "part_Weld"
  4511. o28.Parent = o26
  4512. o28.C0 = CFrame.new(-10.0476608, -3.6050005, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4513. o28.C1 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  4514. o28.Part0 = o26
  4515. o28.Part1 = o24
  4516. o29.Name = "part"
  4517. o29.Parent = o1
  4518. o29.Material = Enum.Material.SmoothPlastic
  4519. o29.BrickColor = BrickColor.new("Really black")
  4520. o29.Position = Vector3.new(-5.50483656, 3.97847819, -10.3093672)
  4521. o29.Rotation = Vector3.new(-90, -90, 0)
  4522. o29.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4523. o29.Velocity = Vector3.new(3.16410034e-21, 0.103487223, 4.57811471e-21)
  4524. o29.CanCollide = false
  4525. o29.Locked = true
  4526. o29.Shape = Enum.PartType.Ball
  4527. o29.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4528. o29.CFrame = CFrame.new(-5.50483656, 3.97847819, -10.3093672, -7.9870224e-06, 6.85437442e-07, -1.00000095, 1.00000119, 4.88512751e-06, -8.19563866e-06, 5.06196238e-06, -1.00000131, -7.15279896e-07)
  4529. o29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4530. o29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4531. o29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4532. o29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4533. o29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4534. o29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4535. o29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4536. o29.Position = Vector3.new(-5.50483656, 3.97847819, -10.3093672)
  4537. o29.Velocity = Vector3.new(3.16410034e-21, 0.103487223, 4.57811471e-21)
  4538. o30.Parent = o29
  4539. o30.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
  4540. o30.MeshType = Enum.MeshType.Cylinder
  4541. o31.Name = "part_Weld"
  4542. o31.Parent = o29
  4543. o31.C0 = CFrame.new(-3.6050005, 14.6050053, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  4544. o31.C1 = CFrame.new(-10.0476608, -3.6050005, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4545. o31.Part0 = o29
  4546. o31.Part1 = o26
  4547. o32.Name = "part"
  4548. o32.Parent = o1
  4549. o32.Material = Enum.Material.SmoothPlastic
  4550. o32.BrickColor = BrickColor.new("Institutional white")
  4551. o32.Position = Vector3.new(-4.87983513, 3.97848082, -9.76436806)
  4552. o32.Rotation = Vector3.new(90, -50, -180)
  4553. o32.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4554. o32.Velocity = Vector3.new(3.15116575e-21, 0.103487223, 4.59296074e-21)
  4555. o32.CanCollide = false
  4556. o32.Locked = true
  4557. o32.Shape = Enum.PartType.Cylinder
  4558. o32.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
  4559. o32.CFrame = CFrame.new(-4.87983513, 3.97848082, -9.76436806, -0.642793715, 6.85437442e-07, -0.766040564, 0.766040623, 4.88512751e-06, -0.642794013, 3.41791815e-06, -1.00000131, -3.80170013e-06)
  4560. o32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4561. o32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4562. o32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4563. o32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4564. o32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4565. o32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4566. o32.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4567. o32.Position = Vector3.new(-4.87983513, 3.97848082, -9.76436806)
  4568. o32.Velocity = Vector3.new(3.15116575e-21, 0.103487223, 4.59296074e-21)
  4569. o33.Parent = o32
  4570. o33.Scale = Vector3.new(0.224999994, 0.736000001, 0.224999994)
  4571. o34.Name = "part_Weld"
  4572. o34.Parent = o32
  4573. o34.C0 = CFrame.new(-9.01119232, 15.1500034, -5.13074732, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
  4574. o34.C1 = CFrame.new(-3.6050005, 14.6050053, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  4575. o34.Part0 = o32
  4576. o34.Part1 = o29
  4577. o35.Name = "part"
  4578. o35.Parent = o1
  4579. o35.Material = Enum.Material.SmoothPlastic
  4580. o35.BrickColor = BrickColor.new("Dark stone grey")
  4581. o35.Position = Vector3.new(-5.50483608, 3.97847533, -9.76437092)
  4582. o35.Rotation = Vector3.new(-90, -90, 0)
  4583. o35.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4584. o35.Velocity = Vector3.new(3.15115545e-21, 0.103487223, 4.57810744e-21)
  4585. o35.CanCollide = false
  4586. o35.Locked = true
  4587. o35.Shape = Enum.PartType.Cylinder
  4588. o35.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
  4589. o35.CFrame = CFrame.new(-5.50483608, 3.97847533, -9.76437092, -7.9870224e-06, 6.85437442e-07, -1.00000095, 1.00000119, 4.88512751e-06, -8.16583633e-06, 5.06196238e-06, -1.00000131, -7.15279839e-07)
  4590. o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4591. o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4592. o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4593. o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4594. o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4595. o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4596. o35.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4597. o35.Position = Vector3.new(-5.50483608, 3.97847533, -9.76437092)
  4598. o35.Velocity = Vector3.new(3.15115545e-21, 0.103487223, 4.57810744e-21)
  4599. o36.Parent = o35
  4600. o36.Scale = Vector3.new(0.300000012, 0.734999955, 0.300000012)
  4601. o37.Name = "part_Weld"
  4602. o37.Parent = o35
  4603. o37.C0 = CFrame.new(-3.6050005, 15.1500006, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  4604. o37.C1 = CFrame.new(-9.01119232, 15.1500034, -5.13074732, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
  4605. o37.Part0 = o35
  4606. o37.Part1 = o32
  4607. o38.Name = "part"
  4608. o38.Parent = o1
  4609. o38.Material = Enum.Material.SmoothPlastic
  4610. o38.BrickColor = BrickColor.new("Dark stone grey")
  4611. o38.Position = Vector3.new(-4.87983465, 3.97848058, -9.76436806)
  4612. o38.Rotation = Vector3.new(90, -50, -180)
  4613. o38.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4614. o38.Velocity = Vector3.new(3.15116534e-21, 0.103487223, 4.59296034e-21)
  4615. o38.CanCollide = false
  4616. o38.Locked = true
  4617. o38.Shape = Enum.PartType.Cylinder
  4618. o38.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
  4619. o38.CFrame = CFrame.new(-4.87983465, 3.97848058, -9.76436806, -0.642793715, 6.85437442e-07, -0.766040564, 0.766040623, 4.88512751e-06, -0.642794013, 3.41791815e-06, -1.00000131, -3.8016999e-06)
  4620. o38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4621. o38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4622. o38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4623. o38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4624. o38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4625. o38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4626. o38.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4627. o38.Position = Vector3.new(-4.87983465, 3.97848058, -9.76436806)
  4628. o38.Velocity = Vector3.new(3.15116534e-21, 0.103487223, 4.59296034e-21)
  4629. o39.Parent = o38
  4630. o39.Scale = Vector3.new(0.300000012, 0.734999955, 0.300000012)
  4631. o40.Name = "part_Weld"
  4632. o40.Parent = o38
  4633. o40.C0 = CFrame.new(-9.01119232, 15.1500034, -5.13074732, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
  4634. o40.C1 = CFrame.new(-3.6050005, 15.1500006, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  4635. o40.Part0 = o38
  4636. o40.Part1 = o35
  4637. o41.Name = "part"
  4638. o41.Parent = o1
  4639. o41.Material = Enum.Material.SmoothPlastic
  4640. o41.BrickColor = BrickColor.new("Institutional white")
  4641. o41.Position = Vector3.new(-4.87983179, 3.97848272, -10.30937)
  4642. o41.Rotation = Vector3.new(90, -50, -180)
  4643. o41.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4644. o41.Velocity = Vector3.new(3.16410902e-21, 0.103487223, 4.59296599e-21)
  4645. o41.CanCollide = false
  4646. o41.Locked = true
  4647. o41.Shape = Enum.PartType.Ball
  4648. o41.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4649. o41.CFrame = CFrame.new(-4.87983179, 3.97848272, -10.30937, -0.642793715, 6.85437442e-07, -0.766040564, 0.766040623, 4.88512751e-06, -0.642794013, 3.41791815e-06, -1.00000131, -3.8016999e-06)
  4650. o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4651. o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4652. o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4653. o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4654. o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4655. o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4656. o41.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4657. o41.Position = Vector3.new(-4.87983179, 3.97848272, -10.30937)
  4658. o41.Velocity = Vector3.new(3.16410902e-21, 0.103487223, 4.59296599e-21)
  4659. o42.Parent = o41
  4660. o42.Scale = Vector3.new(0.100000009, 0.100000009, 0.100000009)
  4661. o42.MeshType = Enum.MeshType.Sphere
  4662. o43.Name = "part_Weld"
  4663. o43.Parent = o41
  4664. o43.C0 = CFrame.new(-9.01119041, 14.6050024, -5.13074589, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
  4665. o43.C1 = CFrame.new(-9.01119232, 15.1500034, -5.13074732, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
  4666. o43.Part0 = o41
  4667. o43.Part1 = o38
  4668. o44.Name = "part"
  4669. o44.Parent = o1
  4670. o44.Material = Enum.Material.SmoothPlastic
  4671. o44.BrickColor = BrickColor.new("Really black")
  4672. o44.Position = Vector3.new(-4.87983179, 3.97848272, -10.30937)
  4673. o44.Rotation = Vector3.new(90, -50, -180)
  4674. o44.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4675. o44.Velocity = Vector3.new(3.16410902e-21, 0.103487223, 4.59296599e-21)
  4676. o44.CanCollide = false
  4677. o44.Locked = true
  4678. o44.Shape = Enum.PartType.Ball
  4679. o44.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4680. o44.CFrame = CFrame.new(-4.87983179, 3.97848272, -10.30937, -0.642793715, 6.85437442e-07, -0.766040564, 0.766040623, 4.88512751e-06, -0.642794013, 3.41791815e-06, -1.00000131, -3.8016999e-06)
  4681. o44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4682. o44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4683. o44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4684. o44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4685. o44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4686. o44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4687. o44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4688. o44.Position = Vector3.new(-4.87983179, 3.97848272, -10.30937)
  4689. o44.Velocity = Vector3.new(3.16410902e-21, 0.103487223, 4.59296599e-21)
  4690. o45.Parent = o44
  4691. o45.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
  4692. o45.MeshType = Enum.MeshType.Cylinder
  4693. o46.Name = "part_Weld"
  4694. o46.Parent = o44
  4695. o46.C0 = CFrame.new(-9.01119041, 14.6050024, -5.13074589, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
  4696. o46.C1 = CFrame.new(-9.01119041, 14.6050024, -5.13074589, -0.64278698, 0.766044974, 0, 0, 0, -1, -0.766044974, -0.64278698, 0)
  4697. o46.Part0 = o44
  4698. o46.Part1 = o41
  4699. o47.Name = "part"
  4700. o47.Parent = o1
  4701. o47.Position = Vector3.new(-4.72982311, 2.69848537, -9.76437569)
  4702. o47.Rotation = Vector3.new(90, 0, -90)
  4703. o47.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4704. o47.Velocity = Vector3.new(7.42508095e-22, 0.103487223, 1.19173048e-21)
  4705. o47.CanCollide = false
  4706. o47.Locked = true
  4707. o47.Size = Vector3.new(0.200000003, 0.349999934, 1)
  4708. o47.CFrame = CFrame.new(-4.72982311, 2.69848537, -9.76437569, 6.85437442e-07, 1.00000095, 7.97212124e-06, 4.88512751e-06, 8.16583633e-06, -1.00000119, -1.00000131, 7.15279725e-07, -5.06196193e-06)
  4709. o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4710. o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4711. o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4712. o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4713. o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4714. o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4715. o47.Position = Vector3.new(-4.72982311, 2.69848537, -9.76437569)
  4716. o47.Velocity = Vector3.new(7.42508095e-22, 0.103487223, 1.19173048e-21)
  4717. o48.Parent = o47
  4718. o48.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  4719. o48.Scale = Vector3.new(0.125, 0.200000003, 0.25)
  4720. o48.MeshType = Enum.MeshType.FileMesh
  4721. o49.Name = "part_Weld"
  4722. o49.Parent = o47
  4723. o49.C0 = CFrame.new(15.1500034, 9.57265949, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  4724. o49.C1 = CFrame.new(-9.74765873, -2.1250031, 15.1500006, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4725. o49.Part0 = o47
  4726. o49.Part1 = o50
  4727. o50.Name = "part"
  4728. o50.Parent = o1
  4729. o50.BrickColor = BrickColor.new("Institutional white")
  4730. o50.Position = Vector3.new(-4.90482092, 2.4984808, -9.7643795)
  4731. o50.Rotation = Vector3.new(-180, 0, 180)
  4732. o50.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4733. o50.Velocity = Vector3.new(3.6614546e-22, 0.103487223, 6.55562799e-22)
  4734. o50.CanCollide = false
  4735. o50.Locked = true
  4736. o50.Size = Vector3.new(0.5, 0.349999934, 1)
  4737. o50.CFrame = CFrame.new(-4.90482092, 2.4984808, -9.7643795, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
  4738. o50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4739. o50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4740. o50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4741. o50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4742. o50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4743. o50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4744. o50.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4745. o50.Position = Vector3.new(-4.90482092, 2.4984808, -9.7643795)
  4746. o50.Velocity = Vector3.new(3.6614546e-22, 0.103487223, 6.55562799e-22)
  4747. o51.Parent = o50
  4748. o51.MeshId = "rbxasset://fonts/rightarm.mesh"
  4749. o51.Scale = Vector3.new(0.5, 0.174999997, 1.10000002)
  4750. o51.MeshType = Enum.MeshType.FileMesh
  4751. o52.Name = "part_Weld"
  4752. o52.Parent = o50
  4753. o52.C0 = CFrame.new(-9.74765873, -2.1250031, 15.1500006, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4754. o52.C1 = CFrame.new(-9.92265701, -2.325001, 15.1500034, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4755. o52.Part0 = o50
  4756. o52.Part1 = o53
  4757. o53.Name = "part"
  4758. o53.Parent = o1
  4759. o53.BrickColor = BrickColor.new("Institutional white")
  4760. o53.Position = Vector3.new(-5.07982111, 2.69847751, -9.76437569)
  4761. o53.Rotation = Vector3.new(-180, 0, 180)
  4762. o53.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4763. o53.Velocity = Vector3.new(7.42493302e-22, 0.103487223, 1.1833998e-21)
  4764. o53.CanCollide = false
  4765. o53.Locked = true
  4766. o53.Size = Vector3.new(0.5, 0.349999934, 1)
  4767. o53.CFrame = CFrame.new(-5.07982111, 2.69847751, -9.76437569, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
  4768. o53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4769. o53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4770. o53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4771. o53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4772. o53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4773. o53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4774. o53.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4775. o53.Position = Vector3.new(-5.07982111, 2.69847751, -9.76437569)
  4776. o53.Velocity = Vector3.new(7.42493302e-22, 0.103487223, 1.1833998e-21)
  4777. o54.Parent = o53
  4778. o54.MeshId = "rbxasset://fonts/rightarm.mesh"
  4779. o54.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
  4780. o54.MeshType = Enum.MeshType.FileMesh
  4781. o55.Name = "part_Weld"
  4782. o55.Parent = o53
  4783. o55.C0 = CFrame.new(-9.92265701, -2.325001, 15.1500034, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4784. o55.C1 = CFrame.new(-9.78266144, -2.325001, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4785. o55.Part0 = o53
  4786. o55.Part1 = o56
  4787. o56.Name = "part"
  4788. o56.Parent = o1
  4789. o56.Material = Enum.Material.Granite
  4790. o56.BrickColor = BrickColor.new("Alder")
  4791. o56.Position = Vector3.new(-4.93982553, 2.6984787, -9.76437759)
  4792. o56.Rotation = Vector3.new(-180, 0, 180)
  4793. o56.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4794. o56.Velocity = Vector3.new(7.42495574e-22, 0.103487223, 1.1867268e-21)
  4795. o56.CanCollide = false
  4796. o56.Locked = true
  4797. o56.Size = Vector3.new(0.5, 0.349999934, 1)
  4798. o56.CFrame = CFrame.new(-4.93982553, 2.6984787, -9.76437759, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
  4799. o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4800. o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4801. o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4802. o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4803. o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4804. o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4805. o56.Color = Color3.new(0.705882, 0.501961, 1)
  4806. o56.Position = Vector3.new(-4.93982553, 2.6984787, -9.76437759)
  4807. o56.Velocity = Vector3.new(7.42495574e-22, 0.103487223, 1.1867268e-21)
  4808. o57.Parent = o56
  4809. o57.Scale = Vector3.new(0.529999971, 0.400000006, 1.09899998)
  4810. o58.Name = "part_Weld"
  4811. o58.Parent = o56
  4812. o58.C0 = CFrame.new(-9.78266144, -2.325001, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4813. o58.C1 = CFrame.new(15.4000063, 9.57265472, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  4814. o58.Part0 = o56
  4815. o58.Part1 = o59
  4816. o59.Name = "part"
  4817. o59.Parent = o1
  4818. o59.Position = Vector3.new(-4.72981882, 2.69848418, -9.51437187)
  4819. o59.Rotation = Vector3.new(90, 0, -90)
  4820. o59.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4821. o59.Velocity = Vector3.new(7.36570206e-22, 0.103487223, 1.19172745e-21)
  4822. o59.CanCollide = false
  4823. o59.Locked = true
  4824. o59.Size = Vector3.new(0.200000003, 0.349999934, 1)
  4825. o59.CFrame = CFrame.new(-4.72981882, 2.69848418, -9.51437187, 6.85437442e-07, 1.00000095, 7.97212124e-06, 4.88512751e-06, 8.16583633e-06, -1.00000119, -1.00000131, 7.15279725e-07, -5.06196193e-06)
  4826. o59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4827. o59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4828. o59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4829. o59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4830. o59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4831. o59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4832. o59.Position = Vector3.new(-4.72981882, 2.69848418, -9.51437187)
  4833. o59.Velocity = Vector3.new(7.36570206e-22, 0.103487223, 1.19172745e-21)
  4834. o60.Parent = o59
  4835. o60.MeshId = "rbxassetid://9756362"
  4836. o60.Scale = Vector3.new(0.125, 0.200000003, 0.25)
  4837. o60.MeshType = Enum.MeshType.FileMesh
  4838. o61.Name = "part_Weld"
  4839. o61.Parent = o59
  4840. o61.C0 = CFrame.new(15.4000063, 9.57265472, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  4841. o61.C1 = CFrame.new(-9.64765739, -2.325001, 15.1500044, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4842. o61.Part0 = o59
  4843. o61.Part1 = o62
  4844. o62.Name = "part"
  4845. o62.Parent = o1
  4846. o62.BrickColor = BrickColor.new("Institutional white")
  4847. o62.Position = Vector3.new(-4.80482149, 2.69847989, -9.76437378)
  4848. o62.Rotation = Vector3.new(-180, 0, 180)
  4849. o62.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4850. o62.Velocity = Vector3.new(7.42497745e-22, 0.103487223, 1.18993526e-21)
  4851. o62.CanCollide = false
  4852. o62.Locked = true
  4853. o62.Size = Vector3.new(0.5, 0.349999934, 1)
  4854. o62.CFrame = CFrame.new(-4.80482149, 2.69847989, -9.76437378, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
  4855. o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4856. o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4857. o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4858. o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4859. o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4860. o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4861. o62.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4862. o62.Position = Vector3.new(-4.80482149, 2.69847989, -9.76437378)
  4863. o62.Velocity = Vector3.new(7.42497745e-22, 0.103487223, 1.18993526e-21)
  4864. o63.Parent = o62
  4865. o63.MeshId = "rbxasset://fonts/rightarm.mesh"
  4866. o63.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
  4867. o63.MeshType = Enum.MeshType.FileMesh
  4868. o64.Name = "part_Weld"
  4869. o64.Parent = o62
  4870. o64.C0 = CFrame.new(-9.64765739, -2.325001, 15.1500044, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4871. o64.C1 = CFrame.new(-9.56266499, -2.325001, 15.6450043, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4872. o64.Part0 = o62
  4873. o64.Part1 = o65
  4874. o65.Name = "part"
  4875. o65.Parent = o1
  4876. o65.Material = Enum.Material.Granite
  4877. o65.BrickColor = BrickColor.new("Alder")
  4878. o65.Position = Vector3.new(-4.71982956, 2.69847822, -9.26937294)
  4879. o65.Rotation = Vector3.new(-180, 0, 180)
  4880. o65.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4881. o65.Velocity = Vector3.new(7.30742178e-22, 0.103487223, 1.19194868e-21)
  4882. o65.CanCollide = false
  4883. o65.Locked = true
  4884. o65.Size = Vector3.new(0.200000003, 0.349999934, 0.200000003)
  4885. o65.CFrame = CFrame.new(-4.71982956, 2.69847822, -9.26937294, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
  4886. o65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4887. o65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4888. o65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4889. o65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4890. o65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4891. o65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4892. o65.Color = Color3.new(0.705882, 0.501961, 1)
  4893. o65.Position = Vector3.new(-4.71982956, 2.69847822, -9.26937294)
  4894. o65.Velocity = Vector3.new(7.30742178e-22, 0.103487223, 1.19194868e-21)
  4895. o66.Parent = o65
  4896. o66.Scale = Vector3.new(0.5, 0.5, 0.5)
  4897. o67.Name = "part_Weld"
  4898. o67.Parent = o65
  4899. o67.C0 = CFrame.new(-9.56266499, -2.325001, 15.6450043, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4900. o67.C1 = CFrame.new(-10.0476608, -3.00500154, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4901. o67.Part0 = o65
  4902. o67.Part1 = o68
  4903. o68.Name = "part"
  4904. o68.Parent = o1
  4905. o68.BrickColor = BrickColor.new("Institutional white")
  4906. o68.Position = Vector3.new(-5.20483112, 3.37847805, -9.76437283)
  4907. o68.Rotation = Vector3.new(-180, 0, 180)
  4908. o68.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4909. o68.Velocity = Vector3.new(2.02209834e-21, 0.103487223, 2.98923525e-21)
  4910. o68.CanCollide = false
  4911. o68.Locked = true
  4912. o68.Size = Vector3.new(0.5, 0.349999934, 1)
  4913. o68.CFrame = CFrame.new(-5.20483112, 3.37847805, -9.76437283, -1.00000095, -7.97212124e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279725e-07, 5.06196193e-06, -1.00000131)
  4914. o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4915. o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4916. o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4917. o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4918. o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4919. o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4920. o68.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4921. o68.Position = Vector3.new(-5.20483112, 3.37847805, -9.76437283)
  4922. o68.Velocity = Vector3.new(2.02209834e-21, 0.103487223, 2.98923525e-21)
  4923. o69.Parent = o68
  4924. o69.MeshId = "rbxasset://fonts/rightarm.mesh"
  4925. o69.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
  4926. o69.MeshType = Enum.MeshType.FileMesh
  4927. o70.Name = "part_Weld"
  4928. o70.Parent = o68
  4929. o70.C0 = CFrame.new(-10.0476608, -3.00500154, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4930. o70.C1 = CFrame.new(8.9489584, 15.7000017, -5.23854446, 0.984807968, 0.173647001, 0, 0, 0, -1, -0.173647001, 0.984807968, 0)
  4931. o70.Part0 = o68
  4932. o70.Part1 = o71
  4933. o71.Name = "part"
  4934. o71.Parent = o1
  4935. o71.Material = Enum.Material.SmoothPlastic
  4936. o71.BrickColor = BrickColor.new("Really black")
  4937. o71.Position = Vector3.new(-4.87983799, 3.97847748, -9.21436882)
  4938. o71.Rotation = Vector3.new(-90, -10, 0)
  4939. o71.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4940. o71.Velocity = Vector3.new(3.1381015e-21, 0.103487223, 4.59295186e-21)
  4941. o71.CanCollide = false
  4942. o71.Locked = true
  4943. o71.Shape = Enum.PartType.Ball
  4944. o71.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4945. o71.CFrame = CFrame.new(-4.87983799, 3.97847748, -9.21436882, 0.984807551, 6.85437442e-07, -0.173655033, 0.173655257, 4.88512751e-06, 0.98480773, 1.58340777e-06, -1.00000131, 4.86085446e-06)
  4946. o71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4947. o71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4948. o71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4949. o71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4950. o71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4951. o71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4952. o71.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4953. o71.Position = Vector3.new(-4.87983799, 3.97847748, -9.21436882)
  4954. o71.Velocity = Vector3.new(3.1381015e-21, 0.103487223, 4.59295186e-21)
  4955. o72.Parent = o71
  4956. o72.Scale = Vector3.new(0.00500000035, 0.100500003, 0.100500003)
  4957. o72.MeshType = Enum.MeshType.Cylinder
  4958. o73.Name = "part_Weld"
  4959. o73.Parent = o71
  4960. o73.C0 = CFrame.new(8.9489584, 15.7000017, -5.23854446, 0.984807968, 0.173647001, 0, 0, 0, -1, -0.173647001, 0.984807968, 0)
  4961. o73.C1 = CFrame.new(15.1500015, 9.69765949, 2.77500439, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  4962. o73.Part0 = o71
  4963. o73.Part1 = o74
  4964. o74.Name = "part"
  4965. o74.Parent = o1
  4966. o74.Material = Enum.Material.SmoothPlastic
  4967. o74.BrickColor = BrickColor.new("Institutional white")
  4968. o74.Position = Vector3.new(-4.8548274, 3.14848328, -9.76437378)
  4969. o74.Rotation = Vector3.new(90, 0, -90)
  4970. o74.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  4971. o74.Velocity = Vector3.new(1.58930103e-21, 0.103487223, 2.38575852e-21)
  4972. o74.CanCollide = false
  4973. o74.Locked = true
  4974. o74.Size = Vector3.new(0.799999952, 0.349999934, 1)
  4975. o74.CFrame = CFrame.new(-4.8548274, 3.14848328, -9.76437378, 6.85437442e-07, 1.00000095, 7.9870224e-06, 4.88512751e-06, 8.16583633e-06, -1.00000119, -1.00000131, 7.15279839e-07, -5.06196193e-06)
  4976. o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4977. o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4978. o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4979. o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4980. o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4981. o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4982. o74.Color = Color3.new(0.972549, 0.972549, 0.972549)
  4983. o74.Position = Vector3.new(-4.8548274, 3.14848328, -9.76437378)
  4984. o74.Velocity = Vector3.new(1.58930103e-21, 0.103487223, 2.38575852e-21)
  4985. o75.Parent = o74
  4986. o75.Scale = Vector3.new(1.10000002, 1.125, 1)
  4987. o75.MeshType = Enum.MeshType.Wedge
  4988. o76.Name = "part_Weld"
  4989. o76.Parent = o74
  4990. o76.C0 = CFrame.new(15.1500015, 9.69765949, 2.77500439, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  4991. o76.C1 = CFrame.new(-9.56266499, -2.325001, 14.6550045, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4992. o76.Part0 = o74
  4993. o76.Part1 = o77
  4994. o77.Name = "part"
  4995. o77.Parent = o1
  4996. o77.Material = Enum.Material.Granite
  4997. o77.BrickColor = BrickColor.new("Alder")
  4998. o77.Position = Vector3.new(-4.71982861, 2.69848275, -10.2593737)
  4999. o77.Rotation = Vector3.new(-180, 0, 180)
  5000. o77.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5001. o77.Velocity = Vector3.new(7.54255635e-22, 0.103487223, 1.1919607e-21)
  5002. o77.CanCollide = false
  5003. o77.Locked = true
  5004. o77.Size = Vector3.new(0.200000003, 0.349999934, 0.200000003)
  5005. o77.CFrame = CFrame.new(-4.71982861, 2.69848275, -10.2593737, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279839e-07, 5.06196193e-06, -1.00000131)
  5006. o77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5007. o77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5008. o77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5009. o77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5010. o77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5011. o77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5012. o77.Color = Color3.new(0.705882, 0.501961, 1)
  5013. o77.Position = Vector3.new(-4.71982861, 2.69848275, -10.2593737)
  5014. o77.Velocity = Vector3.new(7.54255635e-22, 0.103487223, 1.1919607e-21)
  5015. o78.Parent = o77
  5016. o78.Scale = Vector3.new(0.5, 0.5, 0.5)
  5017. o79.Name = "part_Weld"
  5018. o79.Parent = o77
  5019. o79.C0 = CFrame.new(-9.56266499, -2.325001, 14.6550045, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  5020. o79.C1 = CFrame.new(-9.78266144, -2.325001, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  5021. o79.Part0 = o77
  5022. o79.Part1 = o80
  5023. o80.Name = "part"
  5024. o80.Parent = o1
  5025. o80.BrickColor = BrickColor.new("Institutional white")
  5026. o80.Position = Vector3.new(-4.93982553, 2.69847846, -9.76437569)
  5027. o80.Rotation = Vector3.new(-180, 0, 180)
  5028. o80.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5029. o80.Velocity = Vector3.new(7.42495221e-22, 0.103487223, 1.1867261e-21)
  5030. o80.CanCollide = false
  5031. o80.Locked = true
  5032. o80.Size = Vector3.new(0.5, 0.349999934, 1)
  5033. o80.CFrame = CFrame.new(-4.93982553, 2.69847846, -9.76437569, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279839e-07, 5.06196193e-06, -1.00000131)
  5034. o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5035. o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5036. o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5037. o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5038. o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5039. o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5040. o80.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5041. o80.Position = Vector3.new(-4.93982553, 2.69847846, -9.76437569)
  5042. o80.Velocity = Vector3.new(7.42495221e-22, 0.103487223, 1.1867261e-21)
  5043. o81.Parent = o80
  5044. o81.MeshId = "rbxasset://fonts/rightarm.mesh"
  5045. o81.Scale = Vector3.new(0.0500000007, 0.100000001, 1.10000002)
  5046. o81.MeshType = Enum.MeshType.FileMesh
  5047. o82.Name = "part_Weld"
  5048. o82.Parent = o80
  5049. o82.C0 = CFrame.new(-9.78266144, -2.325001, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  5050. o82.C1 = CFrame.new(14.9000063, 9.57265663, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  5051. o82.Part0 = o80
  5052. o82.Part1 = o83
  5053. o83.Name = "part"
  5054. o83.Parent = o1
  5055. o83.Position = Vector3.new(-4.72982025, 2.69848633, -10.0143709)
  5056. o83.Rotation = Vector3.new(90, 0, -90)
  5057. o83.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5058. o83.Velocity = Vector3.new(7.48445478e-22, 0.103487223, 1.191733e-21)
  5059. o83.CanCollide = false
  5060. o83.Locked = true
  5061. o83.Size = Vector3.new(0.200000003, 0.349999934, 1)
  5062. o83.CFrame = CFrame.new(-4.72982025, 2.69848633, -10.0143709, 6.85437442e-07, 1.00000095, 7.9870224e-06, 4.88512751e-06, 8.16583633e-06, -1.00000119, -1.00000131, 7.15279839e-07, -5.06196193e-06)
  5063. o83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5064. o83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5065. o83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5066. o83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5067. o83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5068. o83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5069. o83.Position = Vector3.new(-4.72982025, 2.69848633, -10.0143709)
  5070. o83.Velocity = Vector3.new(7.48445478e-22, 0.103487223, 1.191733e-21)
  5071. o84.Parent = o83
  5072. o84.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  5073. o84.Scale = Vector3.new(0.125, 0.200000003, 0.25)
  5074. o84.MeshType = Enum.MeshType.FileMesh
  5075. o85.Name = "part_Weld"
  5076. o85.Parent = o83
  5077. o85.C0 = CFrame.new(14.9000063, 9.57265663, 2.32500601, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  5078. o85.C1 = CFrame.new(-10.3526583, -3.00500154, 15.1500006, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  5079. o85.Part0 = o83
  5080. o85.Part1 = o86
  5081. o86.Name = "part"
  5082. o86.Parent = o1
  5083. o86.BrickColor = BrickColor.new("Institutional white")
  5084. o86.Position = Vector3.new(-5.50982809, 3.37847519, -9.76437378)
  5085. o86.Rotation = Vector3.new(-180, 0, 180)
  5086. o86.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5087. o86.Velocity = Vector3.new(2.02209309e-21, 0.103487223, 2.98198651e-21)
  5088. o86.CanCollide = false
  5089. o86.Locked = true
  5090. o86.Size = Vector3.new(0.5, 0.349999934, 1)
  5091. o86.CFrame = CFrame.new(-5.50982809, 3.37847519, -9.76437378, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279839e-07, 5.06196193e-06, -1.00000131)
  5092. o86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5093. o86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5094. o86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5095. o86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5096. o86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5097. o86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5098. o86.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5099. o86.Position = Vector3.new(-5.50982809, 3.37847519, -9.76437378)
  5100. o86.Velocity = Vector3.new(2.02209309e-21, 0.103487223, 2.98198651e-21)
  5101. o87.Parent = o86
  5102. o87.MeshId = "rbxasset://fonts/rightarm.mesh"
  5103. o87.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
  5104. o87.MeshType = Enum.MeshType.FileMesh
  5105. o88.Name = "part_Weld"
  5106. o88.Parent = o86
  5107. o88.C0 = CFrame.new(-10.3526583, -3.00500154, 15.1500006, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  5108. o88.C1 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  5109. o88.Part0 = o86
  5110. o88.Part1 = o89
  5111. o89.Name = "part"
  5112. o89.Parent = o1
  5113. o89.Material = Enum.Material.Granite
  5114. o89.BrickColor = BrickColor.new("Alder")
  5115. o89.Position = Vector3.new(-5.2048378, 3.97847748, -9.76436996)
  5116. o89.Rotation = Vector3.new(0, -90, 0)
  5117. o89.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5118. o89.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
  5119. o89.CanCollide = false
  5120. o89.Locked = true
  5121. o89.Shape = Enum.PartType.Cylinder
  5122. o89.Size = Vector3.new(1.12, 0.300000012, 0.949999988)
  5123. o89.CFrame = CFrame.new(-5.2048378, 3.97847748, -9.76436996, -6.85437442e-07, -7.9870224e-06, -1.00000095, -4.88512751e-06, 1.00000119, -8.16583633e-06, 1.00000131, 5.06196193e-06, -7.15279839e-07)
  5124. o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5125. o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5126. o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5127. o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5128. o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5129. o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5130. o89.Color = Color3.new(0.705882, 0.501961, 1)
  5131. o89.Position = Vector3.new(-5.2048378, 3.97847748, -9.76436996)
  5132. o89.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
  5133. o90.Name = "part_Weld"
  5134. o90.Parent = o89
  5135. o90.C0 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  5136. o90.C1 = CFrame.new(-10.0476608, -3.6050005, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  5137. o90.Part0 = o89
  5138. o90.Part1 = o91
  5139. o91.Name = "part"
  5140. o91.Parent = o1
  5141. o91.BrickColor = BrickColor.new("Institutional white")
  5142. o91.Position = Vector3.new(-5.20483494, 3.97847748, -9.76436996)
  5143. o91.Rotation = Vector3.new(-180, 0, 180)
  5144. o91.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5145. o91.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
  5146. o91.CanCollide = false
  5147. o91.Locked = true
  5148. o91.Size = Vector3.new(0.5, 0.349999934, 1)
  5149. o91.CFrame = CFrame.new(-5.20483494, 3.97847748, -9.76436996, -1.00000095, -7.9870224e-06, 6.85437442e-07, -8.16583633e-06, 1.00000119, 4.88512751e-06, -7.15279839e-07, 5.06196193e-06, -1.00000131)
  5150. o91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5151. o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5152. o91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5153. o91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5154. o91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5155. o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5156. o91.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5157. o91.Position = Vector3.new(-5.20483494, 3.97847748, -9.76436996)
  5158. o91.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
  5159. o92.Parent = o91
  5160. o92.MeshId = "rbxasset://fonts/rightarm.mesh"
  5161. o92.Scale = Vector3.new(0.800000012, 0.0500000007, 1.10000002)
  5162. o92.MeshType = Enum.MeshType.FileMesh
  5163. o93.Name = "part_Weld"
  5164. o93.Parent = o91
  5165. o93.C0 = CFrame.new(-10.0476608, -3.6050005, 15.1500015, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  5166. o93.C1 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  5167. o93.Part0 = o91
  5168. o93.Part1 = o94
  5169. o94.Name = "part"
  5170. o94.Parent = o1
  5171. o94.Material = Enum.Material.Neon
  5172. o94.BrickColor = BrickColor.new("Alder")
  5173. o94.Position = Vector3.new(-5.2048378, 3.97847748, -9.76436996)
  5174. o94.Rotation = Vector3.new(0, -90, 0)
  5175. o94.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5176. o94.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
  5177. o94.CanCollide = false
  5178. o94.Locked = true
  5179. o94.Shape = Enum.PartType.Cylinder
  5180. o94.Size = Vector3.new(1.11500001, 0.307500005, 0.957499981)
  5181. o94.CFrame = CFrame.new(-5.2048378, 3.97847748, -9.76436996, -6.85437442e-07, -7.9870224e-06, -1.00000095, -4.88512751e-06, 1.00000119, -8.16583633e-06, 1.00000131, 5.06196193e-06, -7.15279839e-07)
  5182. o94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5183. o94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5184. o94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5185. o94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5186. o94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5187. o94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5188. o94.Color = Color3.new(0.705882, 0.501961, 1)
  5189. o94.Position = Vector3.new(-5.2048378, 3.97847748, -9.76436996)
  5190. o94.Velocity = Vector3.new(3.15115969e-21, 0.103487223, 4.58523581e-21)
  5191. o95.Name = "part_Weld"
  5192. o95.Parent = o94
  5193. o95.C0 = CFrame.new(-15.1500015, -3.6050005, -10.0476637, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  5194. o95.C1 = CFrame.new(-3.6050005, 15.1500006, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  5195. o95.Part0 = o94
  5196. o95.Part1 = o96
  5197. o96.Name = "part"
  5198. o96.Parent = o1
  5199. o96.Material = Enum.Material.SmoothPlastic
  5200. o96.BrickColor = BrickColor.new("Institutional white")
  5201. o96.Position = Vector3.new(-5.50483561, 3.97847509, -9.76437092)
  5202. o96.Rotation = Vector3.new(-90, -90, 0)
  5203. o96.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5204. o96.Velocity = Vector3.new(3.15115525e-21, 0.103487223, 4.57810703e-21)
  5205. o96.CanCollide = false
  5206. o96.Locked = true
  5207. o96.Shape = Enum.PartType.Cylinder
  5208. o96.Size = Vector3.new(0.200000003, 1.5, 0.200000003)
  5209. o96.CFrame = CFrame.new(-5.50483561, 3.97847509, -9.76437092, -7.9870224e-06, 6.85437442e-07, -1.00000095, 1.00000119, 4.88512751e-06, -8.16583633e-06, 5.06196193e-06, -1.00000131, -7.15279839e-07)
  5210. o96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5211. o96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5212. o96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5213. o96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5214. o96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5215. o96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5216. o96.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5217. o96.Position = Vector3.new(-5.50483561, 3.97847509, -9.76437092)
  5218. o96.Velocity = Vector3.new(3.15115525e-21, 0.103487223, 4.57810703e-21)
  5219. o97.Parent = o96
  5220. o97.Scale = Vector3.new(0.224999994, 0.736000001, 0.224999994)
  5221. o98.Name = "part_Weld"
  5222. o98.Parent = o96
  5223. o98.C0 = CFrame.new(-3.6050005, 15.1500006, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  5224. o98.C1 = CFrame.new(-3.6050005, 14.6050053, -10.347661, 0, 1, 0, 0, 0, -1, -1, 0, 0)
  5225. o98.Part0 = o96
  5226. o98.Part1 = o2
  5227. o99.Parent = o1
  5228. o99.Material = Enum.Material.SmoothPlastic
  5229. o99.BrickColor = BrickColor.new("Institutional white")
  5230. o99.Position = Vector3.new(-5.39680243, 4.27047253, -9.74921799)
  5231. o99.Rotation = Vector3.new(90, 60, -90)
  5232. o99.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5233. o99.Velocity = Vector3.new(3.70026969e-21, 0.103487223, 5.35738831e-21)
  5234. o99.CanCollide = false
  5235. o99.Locked = true
  5236. o99.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
  5237. o99.CFrame = CFrame.new(-5.39680243, 4.27047253, -9.74921799, 6.09625204e-07, 0.499993622, 0.866030216, 4.64916138e-06, 0.866030395, -0.499993443, -1.00000095, 4.45763089e-06, -1.97251347e-06)
  5238. o99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5239. o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5240. o99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5241. o99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5242. o99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5243. o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5244. o99.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5245. o99.Position = Vector3.new(-5.39680243, 4.27047253, -9.74921799)
  5246. o99.Velocity = Vector3.new(3.70026969e-21, 0.103487223, 5.35738831e-21)
  5247. o100.Parent = o99
  5248. o100.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5249. o101.Name = "Part_Weld"
  5250. o101.Parent = o99
  5251. o101.C0 = CFrame.new(15.1651592, 1.74491942, 10.8162794, -1.41065001e-07, -2.0062032e-07, -1, 0.50000006, 0.866025388, -2.44274815e-07, 0.866025388, -0.50000006, -2.18556959e-08)
  5252. o101.C1 = CFrame.new(10.5048914, -11.0150871, 10.0121317, -4.37113883e-08, 0.500000119, -0.866025329, 0, 0.866025329, 0.500000119, 1, 2.18556995e-08, -3.78551697e-08)
  5253. o101.Part0 = o99
  5254. o101.Part1 = o134
  5255. o102.Parent = o1
  5256. o102.Material = Enum.Material.Neon
  5257. o102.BrickColor = BrickColor.new("Alder")
  5258. o102.Position = Vector3.new(-5.22433519, 3.95214248, -9.26237965)
  5259. o102.Rotation = Vector3.new(0, 0, 90)
  5260. o102.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5261. o102.Velocity = Vector3.new(3.089687e-21, 0.103487223, 4.51472391e-21)
  5262. o102.CanCollide = false
  5263. o102.Locked = true
  5264. o102.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5265. o102.CFrame = CFrame.new(-5.22433519, 3.95214248, -9.26237965, -7.95722008e-06, -1.00000072, -5.96412463e-07, 1.00000119, -8.404254e-06, -5.07036157e-06, 5.15976762e-06, -4.70768953e-07, 1.00000107)
  5266. o102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5267. o102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5268. o102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5269. o102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5270. o102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5271. o102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5272. o102.Color = Color3.new(0.705882, 0.501961, 1)
  5273. o102.Position = Vector3.new(-5.22433519, 3.95214248, -9.26237965)
  5274. o102.Velocity = Vector3.new(3.089687e-21, 0.103487223, 4.51472391e-21)
  5275. o103.Parent = o102
  5276. o103.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
  5277. o103.MeshType = Enum.MeshType.Brick
  5278. o104.Parent = o1
  5279. o104.Material = Enum.Material.Neon
  5280. o104.BrickColor = BrickColor.new("Alder")
  5281. o104.Position = Vector3.new(-5.14973497, 4.00834274, -9.26238155)
  5282. o104.Rotation = Vector3.new(0, 0, -45)
  5283. o104.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5284. o104.Velocity = Vector3.new(3.19544313e-21, 0.103487223, 4.66598811e-21)
  5285. o104.CanCollide = false
  5286. o104.Locked = true
  5287. o104.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5288. o104.CFrame = CFrame.new(-5.14973497, 4.00834274, -9.26238155, 0.707093179, 0.707121491, -4.61931393e-07, -0.707121432, 0.707093775, -4.7683684e-06, -3.19727906e-06, 3.67266625e-06, 1.00000107)
  5289. o104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5290. o104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5291. o104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5292. o104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5293. o104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5294. o104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5295. o104.Color = Color3.new(0.705882, 0.501961, 1)
  5296. o104.Position = Vector3.new(-5.14973497, 4.00834274, -9.26238155)
  5297. o104.Velocity = Vector3.new(3.19544313e-21, 0.103487223, 4.66598811e-21)
  5298. o105.Parent = o104
  5299. o105.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
  5300. o105.MeshType = Enum.MeshType.Brick
  5301. o106.Name = "Part_Weld"
  5302. o106.Parent = o104
  5303. o106.C0 = CFrame.new(9.63592529, 4.49584293, -15.6519928, 0.70708704, -0.707126498, -9.22794854e-08, 0.707126498, 0.70708704, -3.05830895e-07, 2.81510779e-07, 1.50995803e-07, 1)
  5304. o106.C1 = CFrame.new(-3.57867122, -10.0671654, -15.6519947, -4.37113883e-08, 1, 1.50995803e-07, -1, -4.37114096e-08, 1.47027421e-07, 1.47027421e-07, -1.50995803e-07, 1)
  5305. o106.Part0 = o104
  5306. o106.Part1 = o102
  5307. o107.Parent = o1
  5308. o107.Material = Enum.Material.Neon
  5309. o107.BrickColor = BrickColor.new("Alder")
  5310. o107.Position = Vector3.new(-5.2697382, 4.02784061, -9.26237965)
  5311. o107.Rotation = Vector3.new(0, 0, 30)
  5312. o107.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5313. o107.Velocity = Vector3.new(3.23213352e-21, 0.103487223, 4.7150034e-21)
  5314. o107.CanCollide = false
  5315. o107.Locked = true
  5316. o107.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5317. o107.CFrame = CFrame.new(-5.2697382, 4.02784061, -9.26237965, 0.866036117, -0.499982923, -6.26217172e-07, 0.499983519, 0.866036236, -4.76836976e-06, 2.86228374e-06, 3.9567517e-06, 1.00000107)
  5318. o107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5319. o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5320. o107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5321. o107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5322. o107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5323. o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5324. o107.Color = Color3.new(0.705882, 0.501961, 1)
  5325. o107.Position = Vector3.new(-5.2697382, 4.02784061, -9.26237965)
  5326. o107.Velocity = Vector3.new(3.23213352e-21, 0.103487223, 4.7150034e-21)
  5327. o108.Parent = o107
  5328. o108.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
  5329. o108.MeshType = Enum.MeshType.Brick
  5330. o109.Name = "Part_Weld"
  5331. o109.Parent = o107
  5332. o109.C0 = CFrame.new(6.93078899, -8.22086239, -15.6519957, 0.866039455, 0.499975711, -1.77015792e-07, -0.499975711, 0.866039455, -7.21586275e-08, 1.17225099e-07, 1.50995803e-07, 1)
  5333. o109.C1 = CFrame.new(9.63592529, 4.49584293, -15.6519928, 0.70708704, -0.707126498, -9.22794854e-08, 0.707126498, 0.70708704, -3.05830895e-07, 2.81510779e-07, 1.50995803e-07, 1)
  5334. o109.Part0 = o107
  5335. o109.Part1 = o104
  5336. o110.Parent = o1
  5337. o110.Material = Enum.Material.Neon
  5338. o110.BrickColor = BrickColor.new("Alder")
  5339. o110.Position = Vector3.new(-5.1772356, 4.01984167, -9.26238155)
  5340. o110.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5341. o110.Velocity = Vector3.new(3.2170813e-21, 0.103487223, 4.69592251e-21)
  5342. o110.CanCollide = false
  5343. o110.Locked = true
  5344. o110.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5345. o110.CFrame = CFrame.new(-5.1772356, 4.01984167, -9.26238155, 1.00000072, 2.01165676e-05, -5.5471196e-07, -1.96397305e-05, 1.00000107, -4.76836931e-06, 4.28929297e-07, 4.85778719e-06, 1.00000107)
  5346. o110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5347. o110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5348. o110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5349. o110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5350. o110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5351. o110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5352. o110.Color = Color3.new(0.705882, 0.501961, 1)
  5353. o110.Position = Vector3.new(-5.1772356, 4.01984167, -9.26238155)
  5354. o110.Velocity = Vector3.new(3.2170813e-21, 0.103487223, 4.69592251e-21)
  5355. o111.Parent = o110
  5356. o111.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
  5357. o111.MeshType = Enum.MeshType.Brick
  5358. o112.Name = "Part_Weld"
  5359. o112.Parent = o110
  5360. o112.C0 = CFrame.new(10.0201683, -3.64608431, -15.6519938, 1, -2.80459699e-05, -1.88726005e-07, 2.80459699e-05, 1, -1.51001089e-07, 1.8873024e-07, 1.50995803e-07, 1)
  5361. o112.C1 = CFrame.new(6.93078899, -8.22086239, -15.6519957, 0.866039455, 0.499975711, -1.77015792e-07, -0.499975711, 0.866039455, -7.21586275e-08, 1.17225099e-07, 1.50995803e-07, 1)
  5362. o112.Part0 = o110
  5363. o112.Part1 = o107
  5364. o113.Parent = o1
  5365. o113.Material = Enum.Material.Neon
  5366. o113.BrickColor = BrickColor.new("Alder")
  5367. o113.Position = Vector3.new(-5.17823505, 3.98884153, -9.26238155)
  5368. o113.Rotation = Vector3.new(0, 0, 15)
  5369. o113.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5370. o113.Velocity = Vector3.new(3.15874608e-21, 0.103487223, 4.61343831e-21)
  5371. o113.CanCollide = false
  5372. o113.Locked = true
  5373. o113.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5374. o113.CFrame = CFrame.new(-5.17823505, 3.98884153, -9.26238155, 0.965931714, -0.258799791, -5.88152034e-07, 0.258800358, 0.965931952, -4.76836976e-06, 1.70390251e-06, 4.57259284e-06, 1.00000107)
  5375. o113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5376. o113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5377. o113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5378. o113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5379. o113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5380. o113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5381. o113.Color = Color3.new(0.705882, 0.501961, 1)
  5382. o113.Position = Vector3.new(-5.17823505, 3.98884153, -9.26238155)
  5383. o113.Velocity = Vector3.new(3.15874608e-21, 0.103487223, 4.61343831e-21)
  5384. o114.Parent = o113
  5385. o114.Scale = Vector3.new(0.100000001, 0.104347944, 0.606715083)
  5386. o114.MeshType = Enum.MeshType.Brick
  5387. o115.Name = "Part_Weld"
  5388. o115.Parent = o113
  5389. o115.C0 = CFrame.new(8.74405193, -6.08557272, -15.6519938, 0.965933084, 0.258791953, -1.89076431e-07, -0.258791953, 0.965933084, -1.05663986e-07, 1.55290195e-07, 1.50995803e-07, 1)
  5390. o115.C1 = CFrame.new(10.0201683, -3.64608431, -15.6519938, 1, -2.80459699e-05, -1.88726005e-07, 2.80459699e-05, 1, -1.51001089e-07, 1.8873024e-07, 1.50995803e-07, 1)
  5391. o115.Part0 = o113
  5392. o115.Part1 = o110
  5393. o116.Parent = o1
  5394. o116.Material = Enum.Material.Neon
  5395. o116.BrickColor = BrickColor.new("Alder")
  5396. o116.Position = Vector3.new(-5.20673466, 4.01134062, -9.26238155)
  5397. o116.Rotation = Vector3.new(0, 0, 30)
  5398. o116.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5399. o116.Velocity = Vector3.new(3.20108416e-21, 0.103487223, 4.67260919e-21)
  5400. o116.CanCollide = false
  5401. o116.Locked = true
  5402. o116.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5403. o116.CFrame = CFrame.new(-5.20673466, 4.01134062, -9.26238155, 0.866036057, -0.499982893, -6.26217172e-07, 0.49998349, 0.866036117, -4.76837022e-06, 2.86228351e-06, 3.9567517e-06, 1.00000107)
  5404. o116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5405. o116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5406. o116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5407. o116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5408. o116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5409. o116.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5410. o116.Color = Color3.new(0.705882, 0.501961, 1)
  5411. o116.Position = Vector3.new(-5.20673466, 4.01134062, -9.26238155)
  5412. o116.Velocity = Vector3.new(3.20108416e-21, 0.103487223, 4.67260919e-21)
  5413. o117.Parent = o116
  5414. o117.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
  5415. o117.MeshType = Enum.MeshType.Brick
  5416. o118.Name = "Part_Weld"
  5417. o118.Parent = o116
  5418. o118.C0 = CFrame.new(6.88447571, -8.17507362, -15.6519938, 0.866039455, 0.499975711, -1.77015792e-07, -0.499975711, 0.866039455, -7.21586275e-08, 1.17225099e-07, 1.50995803e-07, 1)
  5419. o118.C1 = CFrame.new(8.74405193, -6.08557272, -15.6519938, 0.965933084, 0.258791953, -1.89076431e-07, -0.258791953, 0.965933084, -1.05663986e-07, 1.55290195e-07, 1.50995803e-07, 1)
  5420. o118.Part0 = o116
  5421. o118.Part1 = o113
  5422. o119.Parent = o1
  5423. o119.Material = Enum.Material.Neon
  5424. o119.BrickColor = BrickColor.new("Alder")
  5425. o119.Position = Vector3.new(-5.1449132, 4.02784538, -10.2693834)
  5426. o119.Rotation = Vector3.new(-180, 0, -150)
  5427. o119.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5428. o119.Velocity = Vector3.new(3.25605088e-21, 0.103487223, 4.71797972e-21)
  5429. o119.CanCollide = false
  5430. o119.Locked = true
  5431. o119.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5432. o119.CFrame = CFrame.new(-5.1449132, 4.02784538, -10.2693834, -0.866043985, 0.499969125, 7.13637633e-07, 0.499968916, 0.866044521, 5.07036293e-06, 2.07053245e-06, 4.76254445e-06, -1.00000107)
  5433. o119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5434. o119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5435. o119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5436. o119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5437. o119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5438. o119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5439. o119.Color = Color3.new(0.705882, 0.501961, 1)
  5440. o119.Position = Vector3.new(-5.1449132, 4.02784538, -10.2693834)
  5441. o119.Velocity = Vector3.new(3.25605088e-21, 0.103487223, 4.71797972e-21)
  5442. o120.Parent = o119
  5443. o120.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
  5444. o120.MeshType = Enum.MeshType.Brick
  5445. o121.Name = "Part_Weld"
  5446. o121.Parent = o119
  5447. o121.C0 = CFrame.new(-10.4768772, 1.82880092, 14.6449928, -0.866039455, 0.499975681, 1.01304217e-07, 0.499975681, 0.866039455, 1.15867891e-07, -2.98023224e-08, 1.50995803e-07, -1)
  5448. o121.C1 = CFrame.new(6.88447571, -8.17507362, -15.6519938, 0.866039455, 0.499975711, -1.77015792e-07, -0.499975711, 0.866039455, -7.21586275e-08, 1.17225099e-07, 1.50995803e-07, 1)
  5449. o121.Part0 = o119
  5450. o121.Part1 = o116
  5451. o122.Parent = o1
  5452. o122.Material = Enum.Material.Neon
  5453. o122.BrickColor = BrickColor.new("Alder")
  5454. o122.Position = Vector3.new(-5.19031334, 3.95214534, -10.2693834)
  5455. o122.Rotation = Vector3.new(-180, 0, -90)
  5456. o122.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5457. o122.Velocity = Vector3.new(3.11360072e-21, 0.103487223, 4.51553938e-21)
  5458. o122.CanCollide = false
  5459. o122.Locked = true
  5460. o122.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5461. o122.CFrame = CFrame.new(-5.19031334, 3.95214534, -10.2693834, -7.84991971e-06, 1.0000006, 6.83837698e-07, 1.00000095, 8.29694363e-06, 4.76837067e-06, 4.85777537e-06, 5.58190891e-07, -1.00000107)
  5462. o122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5463. o122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5464. o122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5465. o122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5466. o122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5467. o122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5468. o122.Color = Color3.new(0.705882, 0.501961, 1)
  5469. o122.Position = Vector3.new(-5.19031334, 3.95214534, -10.2693834)
  5470. o122.Velocity = Vector3.new(3.11360072e-21, 0.103487223, 4.51553938e-21)
  5471. o123.Parent = o122
  5472. o123.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
  5473. o123.MeshType = Enum.MeshType.Brick
  5474. o124.Name = "Part_Weld"
  5475. o124.Parent = o122
  5476. o124.C0 = CFrame.new(-3.57866549, 10.0331469, 14.6449938, 7.54979013e-08, 1, -1.50995803e-07, 1, -7.54979084e-08, -5.96046341e-08, -5.96046448e-08, -1.50995803e-07, -1)
  5477. o124.C1 = CFrame.new(-10.4768772, 1.82880092, 14.6449928, -0.866039455, 0.499975681, 1.01304217e-07, 0.499975681, 0.866039455, 1.15867891e-07, -2.98023224e-08, 1.50995803e-07, -1)
  5478. o124.Part0 = o122
  5479. o124.Part1 = o119
  5480. o125.Parent = o1
  5481. o125.Material = Enum.Material.Neon
  5482. o125.BrickColor = BrickColor.new("Alder")
  5483. o125.Position = Vector3.new(-5.23741388, 4.01984453, -10.2693815)
  5484. o125.Rotation = Vector3.new(-180, 0, 180)
  5485. o125.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5486. o125.Velocity = Vector3.new(3.24099502e-21, 0.103487223, 4.6945012e-21)
  5487. o125.CanCollide = false
  5488. o125.Locked = true
  5489. o125.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5490. o125.CFrame = CFrame.new(-5.23741388, 4.01984453, -10.2693815, -1.0000006, -3.59714031e-05, 6.42132477e-07, -3.6418438e-05, 1.00000095, 5.07036202e-06, -5.16633122e-07, 5.15975262e-06, -1.00000107)
  5491. o125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5492. o125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5493. o125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5494. o125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5495. o125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5496. o125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5497. o125.Color = Color3.new(0.705882, 0.501961, 1)
  5498. o125.Position = Vector3.new(-5.23741388, 4.01984453, -10.2693815)
  5499. o125.Velocity = Vector3.new(3.24099502e-21, 0.103487223, 4.6945012e-21)
  5500. o126.Parent = o125
  5501. o126.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
  5502. o126.MeshType = Enum.MeshType.Brick
  5503. o127.Name = "Part_Weld"
  5504. o127.Parent = o125
  5505. o127.C0 = CFrame.new(-10.0801458, -3.6466527, 14.6449938, -1, -2.80459699e-05, 1.01303236e-07, -2.80459699e-05, 1, 1.50998645e-07, -1.01307471e-07, 1.50995803e-07, -1)
  5506. o127.C1 = CFrame.new(-3.57866549, 10.0331469, 14.6449938, 7.54979013e-08, 1, -1.50995803e-07, 1, -7.54979084e-08, -5.96046341e-08, -5.96046448e-08, -1.50995803e-07, -1)
  5507. o127.Part0 = o125
  5508. o127.Part1 = o122
  5509. o128.Parent = o1
  5510. o128.Material = Enum.Material.Neon
  5511. o128.BrickColor = BrickColor.new("Alder")
  5512. o128.Position = Vector3.new(-5.26491404, 4.0083437, -10.2693815)
  5513. o128.Rotation = Vector3.new(-180, 0, 135)
  5514. o128.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5515. o128.Velocity = Vector3.new(3.21935302e-21, 0.103487223, 4.66325615e-21)
  5516. o128.CanCollide = false
  5517. o128.Locked = true
  5518. o128.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5519. o128.CFrame = CFrame.new(-5.26491404, 4.0083437, -10.2693815, -0.707081914, -0.707132578, 5.49351853e-07, -0.707133055, 0.707081795, 5.07036111e-06, -3.94820654e-06, 3.34878973e-06, -1.00000107)
  5520. o128.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5521. o128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5522. o128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5523. o128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5524. o128.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5525. o128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5526. o128.Color = Color3.new(0.705882, 0.501961, 1)
  5527. o128.Position = Vector3.new(-5.26491404, 4.0083437, -10.2693815)
  5528. o128.Velocity = Vector3.new(3.21935302e-21, 0.103487223, 4.66325615e-21)
  5529. o129.Parent = o128
  5530. o129.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
  5531. o129.MeshType = Enum.MeshType.Brick
  5532. o130.Name = "Part_Weld"
  5533. o130.Parent = o128
  5534. o130.C0 = CFrame.new(-4.57674551, -9.71762657, 14.6449928, -0.70708704, -0.707126498, 3.04639869e-08, -0.707126498, 0.70708704, 2.44011972e-07, -1.94088017e-07, 1.50995803e-07, -1)
  5535. o130.C1 = CFrame.new(-10.0801458, -3.6466527, 14.6449938, -1, -2.80459699e-05, 1.01303236e-07, -2.80459699e-05, 1, 1.50998645e-07, -1.01307471e-07, 1.50995803e-07, -1)
  5536. o130.Part0 = o128
  5537. o130.Part1 = o125
  5538. o131.Parent = o1
  5539. o131.Material = Enum.Material.Neon
  5540. o131.BrickColor = BrickColor.new("Alder")
  5541. o131.Position = Vector3.new(-5.26491499, 4.00834417, -10.2693815)
  5542. o131.Rotation = Vector3.new(-180, 0, 135)
  5543. o131.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5544. o131.Velocity = Vector3.new(3.21935382e-21, 0.103487223, 4.66325736e-21)
  5545. o131.CanCollide = false
  5546. o131.Locked = true
  5547. o131.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5548. o131.CFrame = CFrame.new(-5.26491499, 4.00834417, -10.2693815, -0.707081914, -0.707132578, 5.49351853e-07, -0.707133055, 0.707081795, 5.07036111e-06, -3.94820654e-06, 3.34878973e-06, -1.00000107)
  5549. o131.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5550. o131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5551. o131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5552. o131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5553. o131.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5554. o131.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5555. o131.Color = Color3.new(0.705882, 0.501961, 1)
  5556. o131.Position = Vector3.new(-5.26491499, 4.00834417, -10.2693815)
  5557. o131.Velocity = Vector3.new(3.21935382e-21, 0.103487223, 4.66325736e-21)
  5558. o132.Parent = o131
  5559. o132.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
  5560. o132.MeshType = Enum.MeshType.Brick
  5561. o133.Name = "Part_Weld"
  5562. o133.Parent = o131
  5563. o133.C0 = CFrame.new(-4.57674551, -9.71762657, 14.6449928, -0.70708704, -0.707126498, 3.04639869e-08, -0.707126498, 0.70708704, 2.44011972e-07, -1.94088017e-07, 1.50995803e-07, -1)
  5564. o133.C1 = CFrame.new(-4.57674551, -9.71762657, 14.6449928, -0.70708704, -0.707126498, 3.04639869e-08, -0.707126498, 0.70708704, 2.44011972e-07, -1.94088017e-07, 1.50995803e-07, -1)
  5565. o133.Part0 = o131
  5566. o133.Part1 = o128
  5567. o134.Parent = o1
  5568. o134.Material = Enum.Material.SmoothPlastic
  5569. o134.BrickColor = BrickColor.new("Institutional white")
  5570. o134.Position = Vector3.new(-5.1693058, 4.66037607, -10.3093281)
  5571. o134.Rotation = Vector3.new(30, 90, 0)
  5572. o134.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5573. o134.Velocity = Vector3.new(4.44727679e-21, 0.103487223, 6.39993437e-21)
  5574. o134.CanCollide = false
  5575. o134.Locked = true
  5576. o134.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
  5577. o134.CFrame = CFrame.new(-5.1693058, 4.66037607, -10.3093281, -3.3740148e-06, -7.26962935e-06, 1.00000095, 0.500004888, 0.866023839, 8.27409349e-06, -0.86602366, 0.500004947, 6.30215709e-07)
  5578. o134.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5579. o134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5580. o134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5581. o134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5582. o134.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5583. o134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5584. o134.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5585. o134.Position = Vector3.new(-5.1693058, 4.66037607, -10.3093281)
  5586. o134.Velocity = Vector3.new(4.44727679e-21, 0.103487223, 6.39993437e-21)
  5587. o135.Parent = o134
  5588. o135.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5589. o136.Name = "Part_Weld"
  5590. o136.Parent = o134
  5591. o136.C0 = CFrame.new(10.5048914, -11.0150871, 10.0121317, -4.37113883e-08, 0.500000119, -0.866025329, 0, 0.866025329, 0.500000119, 1, 2.18556995e-08, -3.78551697e-08)
  5592. o136.C1 = CFrame.new(15.1651602, -3.78999591, 10.2126322, -4.37113883e-08, -2.08616257e-07, -1, 0, 1, -2.08616257e-07, 1, -9.11890599e-15, -4.37113883e-08)
  5593. o136.Part0 = o134
  5594. o136.Part1 = o137
  5595. o137.Parent = o1
  5596. o137.Material = Enum.Material.SmoothPlastic
  5597. o137.BrickColor = BrickColor.new("Institutional white")
  5598. o137.Position = Vector3.new(-5.369802, 4.16347218, -9.74921703)
  5599. o137.Rotation = Vector3.new(0, 90, 0)
  5600. o137.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5601. o137.Velocity = Vector3.new(3.49891947e-21, 0.103487223, 5.07340808e-21)
  5602. o137.CanCollide = false
  5603. o137.Locked = true
  5604. o137.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
  5605. o137.CFrame = CFrame.new(-5.369802, 4.16347218, -9.74921703, 7.0697871e-07, -7.96083532e-06, 1.00000095, 4.66604752e-06, 1.00000107, 8.25223742e-06, -1.00000095, 4.81505913e-06, 6.24359359e-07)
  5606. o137.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5607. o137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5608. o137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5609. o137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5610. o137.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5611. o137.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5612. o137.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5613. o137.Position = Vector3.new(-5.369802, 4.16347218, -9.74921703)
  5614. o137.Velocity = Vector3.new(3.49891947e-21, 0.103487223, 5.07340808e-21)
  5615. o138.Parent = o137
  5616. o138.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5617. o139.Name = "part_Weld"
  5618. o139.Parent = o137
  5619. o139.C0 = CFrame.new(15.1651602, -3.78999591, 10.2126322, -4.37113883e-08, -2.08616257e-07, -1, 0, 1, -2.08616257e-07, 1, -9.11890599e-15, -4.37113883e-08)
  5620. o139.C1 = CFrame.new(-10.0476599, -3.95599866, 15.1500025, -1, -1.50995803e-07, 2.27997332e-14, -1.50995803e-07, 1, -1.50995803e-07, 0, -1.50995803e-07, -1)
  5621. o139.Part0 = o137
  5622. o139.Part1 = o140
  5623. o140.Name = "part"
  5624. o140.Parent = o1
  5625. o140.BrickColor = BrickColor.new("Institutional white")
  5626. o140.Position = Vector3.new(-5.20483255, 4.32947445, -9.76437378)
  5627. o140.Rotation = Vector3.new(-180, 0, 180)
  5628. o140.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5629. o140.Velocity = Vector3.new(3.81165755e-21, 0.103487223, 5.51889129e-21)
  5630. o140.CanCollide = false
  5631. o140.Locked = true
  5632. o140.Size = Vector3.new(0.5, 0.349999934, 1)
  5633. o140.CFrame = CFrame.new(-5.20483255, 4.32947445, -9.76437378, -1.00000095, -8.11183145e-06, 7.50689708e-07, -8.40323355e-06, 1.00000107, 4.72366855e-06, -6.6807155e-07, 4.87267971e-06, -1.00000095)
  5634. o140.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5635. o140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5636. o140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5637. o140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5638. o140.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5639. o140.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5640. o140.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5641. o140.Position = Vector3.new(-5.20483255, 4.32947445, -9.76437378)
  5642. o140.Velocity = Vector3.new(3.81165755e-21, 0.103487223, 5.51889129e-21)
  5643. o141.Parent = o140
  5644. o141.MeshId = "rbxasset://fonts/rightarm.mesh"
  5645. o141.Scale = Vector3.new(1.10000002, 0.0500000007, 1.10000002)
  5646. o141.MeshType = Enum.MeshType.FileMesh
  5647. o142.Name = "Part_Weld"
  5648. o142.Parent = o140
  5649. o142.C0 = CFrame.new(-10.0476599, -3.95599866, 15.1500025, -1, -1.50995803e-07, 2.27997332e-14, -1.50995803e-07, 1, -1.50995803e-07, 0, -1.50995803e-07, -1)
  5650. o142.C1 = CFrame.new(15.262166, -0.187239647, 10.0121317, -4.37113883e-08, -0.258819044, -0.965925813, 0, 0.965925813, -0.258819044, 1, -1.13133396e-08, -4.22219593e-08)
  5651. o142.Part0 = o140
  5652. o142.Part1 = o143
  5653. o143.Parent = o1
  5654. o143.Material = Enum.Material.SmoothPlastic
  5655. o143.BrickColor = BrickColor.new("Institutional white")
  5656. o143.Position = Vector3.new(-5.16930342, 4.50447655, -10.2207155)
  5657. o143.Rotation = Vector3.new(-15, 90, 0)
  5658. o143.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5659. o143.Velocity = Vector3.new(4.15180609e-21, 0.103487223, 5.98524102e-21)
  5660. o143.CanCollide = false
  5661. o143.Locked = true
  5662. o143.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
  5663. o143.CFrame = CFrame.new(-5.16930342, 4.50447655, -10.2207155, 2.74181366e-06, -7.49528408e-06, 1.00000095, -0.258814603, 0.965928137, 8.24092422e-06, -0.965928078, -0.258814454, 6.2584877e-07)
  5664. o143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5665. o143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5666. o143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5667. o143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5668. o143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5669. o143.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5670. o143.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5671. o143.Position = Vector3.new(-5.16930342, 4.50447655, -10.2207155)
  5672. o143.Velocity = Vector3.new(4.15180609e-21, 0.103487223, 5.98524102e-21)
  5673. o144.Parent = o143
  5674. o144.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5675. o145.Name = "Part_Weld"
  5676. o145.Parent = o143
  5677. o145.C0 = CFrame.new(15.262166, -0.187239647, 10.0121317, -4.37113883e-08, -0.258819044, -0.965925813, 0, 0.965925813, -0.258819044, 1, -1.13133396e-08, -4.22219593e-08)
  5678. o145.C1 = CFrame.new(16.2419701, 0.0502983332, -7.94692659, 0.836516261, -0.258819044, -0.482962906, 0.224143863, 0.965925813, -0.129409522, 0.5, 0, 0.866025388)
  5679. o145.Part0 = o143
  5680. o145.Part1 = o146
  5681. o146.Parent = o1
  5682. o146.Material = Enum.Material.SmoothPlastic
  5683. o146.BrickColor = BrickColor.new("Institutional white")
  5684. o146.Position = Vector3.new(-4.78165674, 4.5286274, -10.1813545)
  5685. o146.Rotation = Vector3.new(0, 30, -15)
  5686. o146.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5687. o146.Velocity = Vector3.new(4.19631794e-21, 0.103487223, 6.05868601e-21)
  5688. o146.CanCollide = false
  5689. o146.Locked = true
  5690. o146.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
  5691. o146.CFrame = CFrame.new(-4.78165674, 4.5286274, -10.1813545, 0.836519599, 0.224136516, 0.499999851, -0.258810073, 0.965929449, -1.18044682e-07, -0.482964188, -0.129404649, 0.86602664)
  5692. o146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5693. o146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5694. o146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5695. o146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5696. o146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5697. o146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5698. o146.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5699. o146.Position = Vector3.new(-4.78165674, 4.5286274, -10.1813545)
  5700. o146.Velocity = Vector3.new(4.19631794e-21, 0.103487223, 6.05868601e-21)
  5701. o147.Parent = o146
  5702. o147.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5703. o148.Name = "Part_Weld"
  5704. o148.Parent = o146
  5705. o148.C0 = CFrame.new(16.2419701, 0.0502983332, -7.94692659, 0.836516261, -0.258819044, -0.482962906, 0.224143863, 0.965925813, -0.129409522, 0.5, 0, 0.866025388)
  5706. o148.C1 = CFrame.new(10.0673161, -3.5782373, -15.6519909, 1, -4.30663385e-05, -1.172316e-07, 4.30663385e-05, 1, 1.50990758e-07, 1.17225099e-07, -1.50995803e-07, 1)
  5707. o148.Part0 = o146
  5708. o148.Part1 = o149
  5709. o149.Parent = o1
  5710. o149.Material = Enum.Material.Neon
  5711. o149.BrickColor = BrickColor.new("Alder")
  5712. o149.Position = Vector3.new(-5.22432995, 3.95214033, -9.26238251)
  5713. o149.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5714. o149.Velocity = Vector3.new(3.08968317e-21, 0.103487223, 4.51471866e-21)
  5715. o149.CanCollide = false
  5716. o149.Locked = true
  5717. o149.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5718. o149.CFrame = CFrame.new(-5.22432995, 3.95214033, -9.26238251, 1.00000107, 3.51038834e-05, -6.55651093e-07, -3.48247704e-05, 1.00000119, -5.04560194e-06, 5.06639481e-07, 5.18911293e-06, 1.00000107)
  5719. o149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5720. o149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5721. o149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5722. o149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5723. o149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5724. o149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5725. o149.Color = Color3.new(0.705882, 0.501961, 1)
  5726. o149.Position = Vector3.new(-5.22432995, 3.95214033, -9.26238251)
  5727. o149.Velocity = Vector3.new(3.08968317e-21, 0.103487223, 4.51471866e-21)
  5728. o150.Parent = o149
  5729. o150.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
  5730. o150.MeshType = Enum.MeshType.Brick
  5731. o151.Name = "Part_Weld"
  5732. o151.Parent = o149
  5733. o151.C0 = CFrame.new(10.0673161, -3.5782373, -15.6519909, 1, -4.30663385e-05, -1.172316e-07, 4.30663385e-05, 1, 1.50990758e-07, 1.17225099e-07, -1.50995803e-07, 1)
  5734. o151.C1 = CFrame.new(11.3833618, -11.522274, -7.94691992, 0.749999881, 0.500000119, -0.433012873, -0.433012575, 0.866025388, 0.250000417, 0.500000358, -2.72390196e-07, 0.866025209)
  5735. o151.Part0 = o149
  5736. o151.Part1 = o152
  5737. o152.Parent = o1
  5738. o152.Material = Enum.Material.SmoothPlastic
  5739. o152.BrickColor = BrickColor.new("Institutional white")
  5740. o152.Position = Vector3.new(-4.71052122, 4.66037846, -10.2224236)
  5741. o152.Rotation = Vector3.new(0, 30, 30)
  5742. o152.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5743. o152.Velocity = Vector3.new(4.44521853e-21, 0.103487223, 6.41083312e-21)
  5744. o152.CanCollide = false
  5745. o152.Locked = true
  5746. o152.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
  5747. o152.CFrame = CFrame.new(-4.71052122, 4.66037846, -10.2224236, 0.749996901, -0.433020055, 0.500000179, 0.500008941, 0.866021574, -3.8894359e-07, -0.43301031, 0.250004768, 0.866026461)
  5748. o152.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5749. o152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5750. o152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5751. o152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5752. o152.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5753. o152.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5754. o152.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5755. o152.Position = Vector3.new(-4.71052122, 4.66037846, -10.2224236)
  5756. o152.Velocity = Vector3.new(4.44521853e-21, 0.103487223, 6.41083312e-21)
  5757. o153.Parent = o152
  5758. o153.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5759. o154.Name = "part_Weld"
  5760. o154.Parent = o152
  5761. o154.C0 = CFrame.new(11.3833618, -11.522274, -7.94691992, 0.749999881, 0.500000119, -0.433012873, -0.433012575, 0.866025388, 0.250000417, 0.500000358, -2.72390196e-07, 0.866025209)
  5762. o154.C1 = CFrame.new(-9.74265862, -3.00500059, 15.1500006, -1, -1.50995803e-07, 2.27997332e-14, -1.50995803e-07, 1, -1.50995803e-07, 0, -1.50995803e-07, -1)
  5763. o154.Part0 = o152
  5764. o154.Part1 = o155
  5765. o155.Name = "part"
  5766. o155.Parent = o1
  5767. o155.BrickColor = BrickColor.new("Institutional white")
  5768. o155.Position = Vector3.new(-4.89982414, 3.37847805, -9.76437759)
  5769. o155.Rotation = Vector3.new(-180, 0, 180)
  5770. o155.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5771. o155.Velocity = Vector3.new(2.02210076e-21, 0.103487223, 2.99647914e-21)
  5772. o155.CanCollide = false
  5773. o155.Locked = true
  5774. o155.Size = Vector3.new(0.5, 0.349999934, 1)
  5775. o155.CFrame = CFrame.new(-4.89982414, 3.37847805, -9.76437759, -1.00000095, -8.07733795e-06, 7.4505806e-07, -8.3697114e-06, 1.00000119, 4.72867032e-06, -6.55651093e-07, 4.92008849e-06, -1.00000107)
  5776. o155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5777. o155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5778. o155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5779. o155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5780. o155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5781. o155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5782. o155.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5783. o155.Position = Vector3.new(-4.89982414, 3.37847805, -9.76437759)
  5784. o155.Velocity = Vector3.new(2.02210076e-21, 0.103487223, 2.99647914e-21)
  5785. o156.Parent = o155
  5786. o156.MeshId = "rbxasset://fonts/rightarm.mesh"
  5787. o156.Scale = Vector3.new(0.100000001, 0.649999976, 1.10000002)
  5788. o156.MeshType = Enum.MeshType.FileMesh
  5789. o157.Name = "Part_Weld"
  5790. o157.Parent = o155
  5791. o157.C0 = CFrame.new(-9.74265862, -3.00500059, 15.1500006, -1, -1.50995803e-07, 2.27997332e-14, -1.50995803e-07, 1, -1.50995803e-07, 0, -1.50995803e-07, -1)
  5792. o157.C1 = CFrame.new(9.96975994, -4.31484985, -15.1752768, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5793. o157.Part0 = o155
  5794. o157.Part1 = o158
  5795. o158.Parent = o1
  5796. o158.Material = Enum.Material.Neon
  5797. o158.BrickColor = BrickColor.new("Alder")
  5798. o158.Position = Vector3.new(-5.12693548, 4.68832588, -9.73909378)
  5799. o158.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5800. o158.Velocity = Vector3.new(4.48633361e-21, 0.103487223, 6.47528656e-21)
  5801. o158.Locked = true
  5802. o158.Shape = Enum.PartType.Ball
  5803. o158.Size = Vector3.new(0.5, 0.5, 0.5)
  5804. o158.CFrame = CFrame.new(-5.12693548, 4.68832588, -9.73909378, 1.00000095, -7.92634182e-06, -7.45056866e-07, 8.21871527e-06, 1.00000119, -4.87966645e-06, 6.55650354e-07, 5.07108462e-06, 1.00000107)
  5805. o158.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5806. o158.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5807. o158.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5808. o158.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5809. o158.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5810. o158.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5811. o158.Color = Color3.new(0.705882, 0.501961, 1)
  5812. o158.Position = Vector3.new(-5.12693548, 4.68832588, -9.73909378)
  5813. o158.Velocity = Vector3.new(4.48633361e-21, 0.103487223, 6.47528656e-21)
  5814. o159.Name = "Part_Weld"
  5815. o159.Parent = o158
  5816. o159.C0 = CFrame.new(9.96975994, -4.31484985, -15.1752768, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  5817. o159.C1 = CFrame.new(10.3135281, -1.51322389, -15.1661596, 0.965925813, -0.258819044, 0, 0.258819044, 0.965925813, 0, 0, 0, 1)
  5818. o159.Part0 = o158
  5819. o159.Part1 = o160
  5820. o160.Parent = o1
  5821. o160.Material = Enum.Material.SmoothPlastic
  5822. o160.BrickColor = BrickColor.new("Institutional white")
  5823. o160.Position = Vector3.new(-4.72762537, 4.50447845, -9.74821186)
  5824. o160.Rotation = Vector3.new(0, 0, -15)
  5825. o160.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5826. o160.Velocity = Vector3.new(4.1405915e-21, 0.103487223, 5.99573224e-21)
  5827. o160.CanCollide = false
  5828. o160.Locked = true
  5829. o160.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
  5830. o160.CFrame = CFrame.new(-4.72762537, 4.50447845, -9.74821186, 0.965928733, 0.258811623, -7.45056866e-07, -0.258811414, 0.965929091, -4.87966645e-06, -6.791837e-07, 5.06798642e-06, 1.00000107)
  5831. o160.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5832. o160.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5833. o160.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5834. o160.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5835. o160.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5836. o160.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5837. o160.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5838. o160.Position = Vector3.new(-4.72762537, 4.50447845, -9.74821186)
  5839. o160.Velocity = Vector3.new(4.1405915e-21, 0.103487223, 5.99573224e-21)
  5840. o161.Parent = o160
  5841. o161.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5842. o162.Name = "Part_Weld"
  5843. o162.Parent = o160
  5844. o162.C0 = CFrame.new(10.3135281, -1.51322389, -15.1661596, 0.965925813, -0.258819044, 0, 0.258819044, 0.965925813, 0, 0, 0, 1)
  5845. o162.C1 = CFrame.new(6.06806517, -8.45348072, -15.1661596, 0.866025388, 0.5, 0, -0.5, 0.866025388, 0, 0, 0, 1)
  5846. o162.Part0 = o160
  5847. o162.Part1 = o163
  5848. o163.Parent = o1
  5849. o163.Material = Enum.Material.SmoothPlastic
  5850. o163.BrickColor = BrickColor.new("Institutional white")
  5851. o163.Position = Vector3.new(-4.63901281, 4.66037655, -9.74821091)
  5852. o163.Rotation = Vector3.new(0, 0, 30)
  5853. o163.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5854. o163.Velocity = Vector3.new(4.43395587e-21, 0.103487223, 6.41252544e-21)
  5855. o163.CanCollide = false
  5856. o163.Locked = true
  5857. o163.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
  5858. o163.CFrame = CFrame.new(-4.63901281, 4.66037655, -9.74821091, 0.86602211, -0.500007331, -7.45056866e-07, 0.500007689, 0.866022229, -4.87966645e-06, 3.10335213e-06, 4.06386243e-06, 1.00000107)
  5859. o163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5860. o163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5861. o163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5862. o163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5863. o163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5864. o163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5865. o163.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5866. o163.Position = Vector3.new(-4.63901281, 4.66037655, -9.74821091)
  5867. o163.Velocity = Vector3.new(4.43395587e-21, 0.103487223, 6.41252544e-21)
  5868. o164.Parent = o163
  5869. o164.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5870. o165.Name = "Part_Weld"
  5871. o165.Parent = o163
  5872. o165.C0 = CFrame.new(6.06806517, -8.45348072, -15.1661596, 0.866025388, 0.5, 0, -0.5, 0.866025388, 0, 0, 0, 1)
  5873. o165.C1 = CFrame.new(-1.77061176, -3.92781997, -18.3610363, 0.750000238, 0.49999997, 0.433012396, -0.433012784, 0.866025448, -0.249999791, -0.499999613, 0, 0.866025627)
  5874. o165.Part0 = o163
  5875. o165.Part1 = o166
  5876. o166.Parent = o1
  5877. o166.Material = Enum.Material.SmoothPlastic
  5878. o166.BrickColor = BrickColor.new("Institutional white")
  5879. o166.Position = Vector3.new(-4.71052265, 4.66037512, -9.22850037)
  5880. o166.Rotation = Vector3.new(0, -30, 30)
  5881. o166.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5882. o166.Velocity = Vector3.new(4.42161399e-21, 0.103487223, 6.41082383e-21)
  5883. o166.CanCollide = false
  5884. o166.Locked = true
  5885. o166.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
  5886. o166.CFrame = CFrame.new(-4.71052265, 4.66037512, -9.22850037, 0.749996543, -0.433019847, -0.500000656, 0.50000459, 0.866023958, -8.33863669e-06, 0.433015913, -0.249995947, 0.866026282)
  5887. o166.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5888. o166.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5889. o166.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5890. o166.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5891. o166.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5892. o166.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5893. o166.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5894. o166.Position = Vector3.new(-4.71052265, 4.66037512, -9.22850037)
  5895. o166.Velocity = Vector3.new(4.42161399e-21, 0.103487223, 6.41082383e-21)
  5896. o167.Parent = o166
  5897. o167.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5898. o168.Name = "Part_Weld"
  5899. o168.Parent = o166
  5900. o168.C0 = CFrame.new(-1.77061176, -3.92781997, -18.3610363, 0.750000238, 0.49999997, 0.433012396, -0.433012784, 0.866025448, -0.249999791, -0.499999613, 0, 0.866025627)
  5901. o168.C1 = CFrame.new(1.57062054, -3.88087869, -18.3610344, 0.8365165, -0.258819014, 0.482962519, 0.224143893, 0.965925813, 0.129409403, -0.499999613, 0, 0.866025627)
  5902. o168.Part0 = o166
  5903. o168.Part1 = o169
  5904. o169.Parent = o1
  5905. o169.Material = Enum.Material.SmoothPlastic
  5906. o169.BrickColor = BrickColor.new("Institutional white")
  5907. o169.Position = Vector3.new(-4.78165913, 4.52862406, -9.26957417)
  5908. o169.Rotation = Vector3.new(0, -30, -15)
  5909. o169.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5910. o169.Velocity = Vector3.new(4.17466383e-21, 0.103487223, 6.05867672e-21)
  5911. o169.CanCollide = false
  5912. o169.Locked = true
  5913. o169.Size = Vector3.new(0.200000003, 0.449999988, 0.200000003)
  5914. o169.CFrame = CFrame.new(-4.78165913, 4.52862406, -9.26957417, 0.836518884, 0.224136263, -0.500000656, -0.258814663, 0.965928078, -8.33863669e-06, 0.48296231, 0.129414618, 0.866026282)
  5915. o169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5916. o169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5917. o169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5918. o169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5919. o169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5920. o169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5921. o169.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5922. o169.Position = Vector3.new(-4.78165913, 4.52862406, -9.26957417)
  5923. o169.Velocity = Vector3.new(4.17466383e-21, 0.103487223, 6.05867672e-21)
  5924. o170.Parent = o169
  5925. o170.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5926. o171.Name = "Part_Weld"
  5927. o171.Parent = o169
  5928. o171.C0 = CFrame.new(1.57062054, -3.88087869, -18.3610344, 0.8365165, -0.258819014, 0.482962519, 0.224143893, 0.965925813, 0.129409403, -0.499999613, 0, 0.866025627)
  5929. o171.C1 = CFrame.new(-15.7826138, 4.16201735, -10.0121298, -4.37113883e-08, 0.500000119, 0.866025329, 0, 0.866025329, -0.500000119, -1, -2.18556995e-08, -3.78551697e-08)
  5930. o171.Part0 = o169
  5931. o171.Part1 = o172
  5932. o172.Parent = o1
  5933. o172.Material = Enum.Material.SmoothPlastic
  5934. o172.BrickColor = BrickColor.new("Institutional white")
  5935. o172.Position = Vector3.new(-5.16930723, 4.6603694, -9.16521931)
  5936. o172.Rotation = Vector3.new(-30, -90, 0)
  5937. o172.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5938. o172.Velocity = Vector3.new(4.42010059e-21, 0.103487223, 6.39991619e-21)
  5939. o172.CanCollide = false
  5940. o172.Locked = true
  5941. o172.Size = Vector3.new(0.200000003, 0.494449973, 0.200000003)
  5942. o172.CFrame = CFrame.new(-5.16930723, 4.6603694, -9.16521931, -4.67896461e-06, -6.54160976e-06, -1.00000072, 0.499996424, 0.866028666, -8.32673868e-06, 0.866028786, -0.499996275, -6.55651093e-07)
  5943. o172.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5944. o172.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5945. o172.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5946. o172.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5947. o172.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5948. o172.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5949. o172.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5950. o172.Position = Vector3.new(-5.16930723, 4.6603694, -9.16521931)
  5951. o172.Velocity = Vector3.new(4.42010059e-21, 0.103487223, 6.39991619e-21)
  5952. o173.Parent = o172
  5953. o173.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5954. o174.Name = "Part_Weld"
  5955. o174.Parent = o172
  5956. o174.C0 = CFrame.new(-15.7826138, 4.16201735, -10.0121298, -4.37113883e-08, 0.500000119, 0.866025329, 0, 0.866025329, -0.500000119, -1, -2.18556995e-08, -3.78551697e-08)
  5957. o174.C1 = CFrame.new(-14.0577393, -8.04348469, -10.0121298, -4.37113883e-08, -0.258819044, 0.965925813, 0, 0.965925813, 0.258819044, -1, 1.13133396e-08, -4.22219593e-08)
  5958. o174.Part0 = o172
  5959. o174.Part1 = o175
  5960. o175.Parent = o1
  5961. o175.Material = Enum.Material.SmoothPlastic
  5962. o175.BrickColor = BrickColor.new("Institutional white")
  5963. o175.Position = Vector3.new(-5.1693058, 4.50447226, -9.25383186)
  5964. o175.Rotation = Vector3.new(15, -90, 0)
  5965. o175.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5966. o175.Velocity = Vector3.new(4.12884174e-21, 0.103487223, 5.9852293e-21)
  5967. o175.CanCollide = false
  5968. o175.Locked = true
  5969. o175.Size = Vector3.new(0.200000003, 0.5, 0.200000003)
  5970. o175.CFrame = CFrame.new(-5.1693058, 4.50447226, -9.25383186, 1.30428748e-06, -7.90323611e-06, -1.00000072, -0.25882405, 0.965925515, -8.29356941e-06, 0.965925574, 0.258824199, -6.60017747e-07)
  5971. o175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5972. o175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5973. o175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5974. o175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5975. o175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5976. o175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5977. o175.Color = Color3.new(0.972549, 0.972549, 0.972549)
  5978. o175.Position = Vector3.new(-5.1693058, 4.50447226, -9.25383186)
  5979. o175.Velocity = Vector3.new(4.12884174e-21, 0.103487223, 5.9852293e-21)
  5980. o176.Parent = o175
  5981. o176.Scale = Vector3.new(0.790749788, 1, 0.763249993)
  5982. o177.Name = "Part_Weld"
  5983. o177.Parent = o175
  5984. o177.C0 = CFrame.new(-14.0577393, -8.04348469, -10.0121298, -4.37113883e-08, -0.258819044, 0.965925813, 0, 0.965925813, 0.258819044, -1, 1.13133396e-08, -4.22219593e-08)
  5985. o177.C1 = CFrame.new(-10.0329962, -3.57909822, 14.6449976, -1, -4.30663385e-05, 2.98088239e-08, -4.30663385e-05, 1, -1.50994524e-07, -2.98023224e-08, -1.50995803e-07, -1)
  5986. o177.Part0 = o175
  5987. o177.Part1 = o178
  5988. o178.Parent = o1
  5989. o178.Material = Enum.Material.Neon
  5990. o178.BrickColor = BrickColor.new("Alder")
  5991. o178.Position = Vector3.new(-5.19032049, 3.95214605, -10.2693796)
  5992. o178.Rotation = Vector3.new(-180, 0, 180)
  5993. o178.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  5994. o178.Velocity = Vector3.new(3.11360193e-21, 0.103487223, 4.515541e-21)
  5995. o178.CanCollide = false
  5996. o178.Locked = true
  5997. o178.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5998. o178.CFrame = CFrame.new(-5.19032049, 3.95214605, -10.2693796, -1.00000072, -5.10491955e-05, 7.13640077e-07, -5.13712621e-05, 1.00000095, 4.76837113e-06, -5.88203136e-07, 4.8577499e-06, -1.00000107)
  5999. o178.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6000. o178.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6001. o178.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6002. o178.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6003. o178.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6004. o178.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6005. o178.Color = Color3.new(0.705882, 0.501961, 1)
  6006. o178.Position = Vector3.new(-5.19032049, 3.95214605, -10.2693796)
  6007. o178.Velocity = Vector3.new(3.11360193e-21, 0.103487223, 4.515541e-21)
  6008. o179.Parent = o178
  6009. o179.Scale = Vector3.new(0.523875356, 0.104347944, 0.606715083)
  6010. o179.MeshType = Enum.MeshType.Brick
  6011. o180.Name = "Part_Weld"
  6012. o180.Parent = o178
  6013. o180.C0 = CFrame.new(-10.0329962, -3.57909822, 14.6449976, -1, -4.30663385e-05, 2.98088239e-08, -4.30663385e-05, 1, -1.50994524e-07, -2.98023224e-08, -1.50995803e-07, -1)
  6014. o180.C1 = CFrame.new(-10.5231905, 1.87458968, 14.6449947, -0.866039455, 0.499975681, 1.01304217e-07, 0.499975681, 0.866039455, 1.15867891e-07, -2.98023224e-08, 1.50995803e-07, -1)
  6015. o180.Part0 = o178
  6016. o180.Part1 = o181
  6017. o181.Parent = o1
  6018. o181.Material = Enum.Material.Neon
  6019. o181.BrickColor = BrickColor.new("Alder")
  6020. o181.Position = Vector3.new(-5.20791769, 4.01134586, -10.2693815)
  6021. o181.Rotation = Vector3.new(-180, 0, -150)
  6022. o181.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  6023. o181.Velocity = Vector3.new(3.22500252e-21, 0.103487223, 4.67259505e-21)
  6024. o181.CanCollide = false
  6025. o181.Locked = true
  6026. o181.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6027. o181.CFrame = CFrame.new(-5.20791769, 4.01134586, -10.2693815, -0.866044044, 0.499969155, 7.13637689e-07, 0.499968976, 0.866044462, 5.07036293e-06, 2.07053222e-06, 4.7625449e-06, -1.00000107)
  6028. o181.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6029. o181.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6030. o181.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6031. o181.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6032. o181.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6033. o181.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6034. o181.Color = Color3.new(0.705882, 0.501961, 1)
  6035. o181.Position = Vector3.new(-5.20791769, 4.01134586, -10.2693815)
  6036. o181.Velocity = Vector3.new(3.22500252e-21, 0.103487223, 4.67259505e-21)
  6037. o182.Parent = o181
  6038. o182.Scale = Vector3.new(0.200000003, 0.104347944, 0.606715083)
  6039. o182.MeshType = Enum.MeshType.Brick
  6040. o183.Name = "Part_Weld"
  6041. o183.Parent = o181
  6042. o183.C0 = CFrame.new(-10.5231905, 1.87458968, 14.6449947, -0.866039455, 0.499975681, 1.01304217e-07, 0.499975681, 0.866039455, 1.15867891e-07, -2.98023224e-08, 1.50995803e-07, -1)
  6043. o183.C1 = CFrame.new(-10.6715069, -0.88377738, 14.6449947, -0.965933084, 0.258791953, 1.0463188e-07, 0.258791953, 0.965933084, 1.28288306e-07, -6.78674184e-08, 1.50995803e-07, -1)
  6044. o183.Part0 = o181
  6045. o183.Part1 = o184
  6046. o184.Parent = o1
  6047. o184.Material = Enum.Material.Neon
  6048. o184.BrickColor = BrickColor.new("Alder")
  6049. o184.Position = Vector3.new(-5.23641634, 3.98884511, -10.2693815)
  6050. o184.Rotation = Vector3.new(-180, 0, -165)
  6051. o184.RotVelocity = Vector3.new(2.66000323e-21, -2.37422315e-23, -1.88177066e-21)
  6052. o184.Velocity = Vector3.new(3.18266122e-21, 0.103487223, 4.61206627e-21)
  6053. o184.CanCollide = false
  6054. o184.Locked = true
  6055. o184.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  6056. o184.CFrame = CFrame.new(-5.23641634, 3.98884511, -10.2693815, -0.965935826, 0.258784473, 6.75572551e-07, 0.258784175, 0.965936184, 5.07036248e-06, 8.04111892e-07, 5.12630731e-06, -1.00000107)
  6057. o184.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6058. o184.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6059. o184.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6060. o184.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6061. o184.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6062. o184.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6063. o184.Color = Color3.new(0.705882, 0.501961, 1)
  6064. o184.Position = Vector3.new(-5.23641634, 3.98884511, -10.2693815)
  6065. o184.Velocity = Vector3.new(3.18266122e-21, 0.103487223, 4.61206627e-21)
  6066. o185.Parent = o184
  6067. o185.Scale = Vector3.new(0.100000001, 0.104347944, 0.606715083)
  6068. o185.MeshType = Enum.MeshType.Brick
  6069. o186.Name = "Part_Weld"
  6070. o186.Parent = o184
  6071. o186.C0 = CFrame.new(-10.6715069, -0.88377738, 14.6449947, -0.965933084, 0.258791953, 1.0463188e-07, 0.258791953, 0.965933084, 1.28288306e-07, -6.78674184e-08, 1.50995803e-07, -1)
  6072. o186.C1 = CFrame.new(-10.0801458, -3.6466527, 14.6449938, -1, -2.80459699e-05, 1.01303236e-07, -2.80459699e-05, 1, 1.50998645e-07, -1.01307471e-07, 1.50995803e-07, -1)
  6073. o186.Part0 = o184
  6074. o186.Part1 = o5
  6075.  
  6076.  
  6077.  
  6078. --Melee
  6079.  
  6080. o1 = Instance.new("Model")
  6081. o2 = Instance.new("UnionOperation")
  6082. o3 = Instance.new("UnionOperation")
  6083. o4 = Instance.new("UnionOperation")
  6084. o5 = Instance.new("Part")
  6085. o6 = Instance.new("Model")
  6086. o7 = Instance.new("UnionOperation")
  6087. o8 = Instance.new("UnionOperation")
  6088. o9 = Instance.new("UnionOperation")
  6089. o10 = Instance.new("UnionOperation")
  6090. o11 = Instance.new("UnionOperation")
  6091. o12 = Instance.new("UnionOperation")
  6092. o13 = Instance.new("UnionOperation")
  6093. o14 = Instance.new("UnionOperation")
  6094. o15 = Instance.new("UnionOperation")
  6095. o16 = Instance.new("UnionOperation")
  6096. o17 = Instance.new("UnionOperation")
  6097. o18 = Instance.new("UnionOperation")
  6098. o1.Name = "Melee"
  6099. o1.Parent = game.ReplicatedStorage
  6100. o2.Parent = o1
  6101. o2.BrickColor = BrickColor.new("Really black")
  6102. o2.Material = "SmoothPlastic"
  6103. o2.Name = "Base"
  6104. o2.Position = Vector3.new(-5.77,5.32,-9.664)
  6105. o2.Orientation = Vector3.new(85.02,-89.81,-179.81)
  6106. o2.Anchored = true
  6107. o2.CanCollide = true
  6108. o2.Size = Vector3.new(0.41,0.099,9.001)
  6109. o3.Parent = o1
  6110. o3.BrickColor = BrickColor.new("Institutional white")
  6111. o3.Name = "Hitbox"
  6112. o3.Orientation = Vector3.new(90,-179.99,0)
  6113. o3.Position = Vector3.new(-5.54,7.912,-10.468)
  6114. o3.Anchored = true
  6115. o3.CanCollide = true
  6116. o3.Size = Vector3.new(0.247,4.837,1.603)
  6117. o4.Name = "Segments"
  6118. o4.Parent = o1
  6119. o4.BrickColor = BrickColor.new("Institutional white")
  6120. o4.Transparency = 0.05
  6121. o4.Orientation = Vector3.new(-4.99,-90,0.02)
  6122. o4.Position = Vector3.new(-5.827,4.664,-9.751)
  6123. o4.Anchored = true
  6124. o4.CanCollide = true
  6125. o4.Size = Vector3.new(0.25,7.949,0.105)
  6126. o5.Name = "Handle"
  6127. o5.Parent = o1
  6128. o5.BrickColor = BrickColor.new("Really black")
  6129. o5.Reflectance = 0.40000000596046
  6130. o5.Transparency = 1
  6131. o5.Position = Vector3.new(-5.89046288, 3.09279108, -9.7504921)
  6132. o5.Rotation = Vector3.new(-90.0299988, -85.0299988, 89.9899979)
  6133. o5.Anchored = true
  6134. o5.FormFactor = Enum.FormFactor.Custom
  6135. o5.Size = Vector3.new(0.500100017, 2.05800009, 0.776000023)
  6136. o5.CFrame = CFrame.new(-5.89046288, 3.09279108, -9.7504921, 1.5790607e-05, -0.0867413133, -0.996234536, -0.000304654473, -0.996230841, 0.08674106, -1, 0.000302136614, -4.21571312e-05)
  6137. o5.BottomSurface = Enum.SurfaceType.Smooth
  6138. o5.TopSurface = Enum.SurfaceType.Smooth
  6139. o5.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  6140. o5.Position = Vector3.new(-5.89046288, 3.09279108, -9.7504921)
  6141. o6.Name = "Rune"
  6142. o6.Parent = o1
  6143. o7.Parent = o6
  6144. o7.BrickColor = BrickColor.new("Alder")
  6145. o7.Material = "Neon"
  6146. o7.Transparency = 0.5
  6147. o7.Name = "Union"
  6148. o7.Orientation = Vector3.new(-48,179.87,-89.94)
  6149. o7.Position = Vector3.new(-5.536,8.062,-10.307)
  6150. o7.Anchored = true
  6151. o7.CanCollide = true
  6152. o7.Size = Vector3.new(0.0036,0.194,0.121)
  6153. o8.Parent = o6
  6154. o8.BrickColor = BrickColor.new("Alder")
  6155. o8.Material = "Granite"
  6156. o8.Transparency = 0.5
  6157. o8.Name = "Union"
  6158. o8.Orientation = Vector3.new(-48,179.87,-89.94)
  6159. o8.Position = Vector3.new(-5.536,8.062,-10.307)
  6160. o8.Anchored = true
  6161. o8.CanCollide = true
  6162. o8.Size = Vector3.new(0.0036,0.194,0.121)
  6163. o9.Parent = o6
  6164. o9.BrickColor = BrickColor.new("Alder")
  6165. o9.Material = "Neon"
  6166. o9.Transparency = 0.5
  6167. o9.Name = "Union"
  6168. o9.Orientation = Vector3.new(-34,0.08,89.74)
  6169. o9.Position = Vector3.new(-5.536,7.885,-10.305)
  6170. o9.Anchored = true
  6171. o9.CanCollide = true
  6172. o9.Size = Vector3.new(0.0036,0.194,0.121)
  6173. o10.Parent = o6
  6174. o10.BrickColor = BrickColor.new("Alder")
  6175. o10.Material = "Neon"
  6176. o10.Transparency = 0.5
  6177. o10.Name = "Union"
  6178. o10.Orientation = Vector3.new(0,180,-90)
  6179. o10.Position = Vector3.new(-5.536,8.104,-10.397)
  6180. o10.Anchored = true
  6181. o10.CanCollide = true
  6182. o10.Size = Vector3.new(0.0036,0.194,0.121)
  6183. o11.Parent = o6
  6184. o11.BrickColor = BrickColor.new("Alder")
  6185. o11.Material = "Neon"
  6186. o11.Transparency = 0.5
  6187. o11.Name = "Union"
  6188. o11.Orientation = Vector3.new(-68,0.3,89.56)
  6189. o11.Position = Vector3.new(-5.536,7.801,-10.376)
  6190. o11.Anchored = true
  6191. o11.CanCollide = false
  6192. o11.Size = Vector3.new(0.0036,0.194,0.121)
  6193. o12.Parent = o6
  6194. o12.BrickColor = BrickColor.new("Alder")
  6195. o12.Material = "Granite"
  6196. o12.Transparency = 0.5
  6197. o12.Name = "Union"
  6198. o12.Orientation = Vector3.new(-83,179.03,-89.14)
  6199. o12.Position = Vector3.new(-5.536,7.967,-10.265)
  6200. o12.Anchored = true
  6201. o12.CanCollide = true
  6202. o12.Size = Vector3.new(0.0036,0.194,0.121)
  6203. o13.Parent = o6
  6204. o13.BrickColor = BrickColor.new("Alder")
  6205. o13.Material = "Granite"
  6206. o13.Transparency = 0.5
  6207. o13.Name = "Union"
  6208. o13.Orientation = Vector3.new(-68,0.3,89.56)
  6209. o13.Position = Vector3.new(-5.536,7.801,-10.376)
  6210. o13.Anchored = true
  6211. o13.CanCollide = true
  6212. o13.Size = Vector3.new(0.0036,0.194,0.121)
  6213. o14.Parent = o6
  6214. o14.BrickColor = BrickColor.new("Alder")
  6215. o14.Material = "Neon"
  6216. o14.Transparency = 0.5
  6217. o14.Name = "Union"
  6218. o14.Orientation = Vector3.new(-83,179.03,-89.14)
  6219. o14.Position = Vector3.new(-5.536,7.967,-10.265)
  6220. o14.Anchored = true
  6221. o14.CanCollide = false
  6222. o14.Size = Vector3.new(0.0036,0.194,0.121)
  6223. o15.Parent = o6
  6224. o15.BrickColor = BrickColor.new("Alder")
  6225. o15.Material = "Neon"
  6226. o15.Transparency = 0.5
  6227. o15.Name = "Union"
  6228. o15.Orientation = Vector3.new(0,180,-90)
  6229. o15.Position = Vector3.new(-5.536,8.014,-10.346)
  6230. o15.Anchored = true
  6231. o15.CanCollide = false
  6232. o15.Size = Vector3.new(0.0036,0.194,0.121)
  6233. o16.Parent = o6
  6234. o16.BrickColor = BrickColor.new("Alder")
  6235. o16.Material = "Granite"
  6236. o16.Transparency = 0.5
  6237. o16.Name = "Union"
  6238. o16.Orientation = Vector3.new(0,180,-90)
  6239. o16.Position = Vector3.new(-5.536,8.014,-10.346)
  6240. o16.Anchored = true
  6241. o16.CanCollide = true
  6242. o16.Size = Vector3.new(0.0036,0.194,0.121)
  6243. o17.Parent = o6
  6244. o17.BrickColor = BrickColor.new("Alder")
  6245. o17.Material = "Granite"
  6246. o17.Transparency = 0.5
  6247. o17.Name = "Union"
  6248. o17.Orientation = Vector3.new(0,180,-90)
  6249. o17.Position = Vector3.new(-5.536,8.104,-10.397)
  6250. o17.Anchored = true
  6251. o17.CanCollide = true
  6252. o17.Size = Vector3.new(0.0036,0.194,0.121)
  6253. o18.Parent = o6
  6254. o18.BrickColor = BrickColor.new("Alder")
  6255. o18.Material = "Granite"
  6256. o18.Transparency = 0.5
  6257. o18.Name = "Union"
  6258. o18.Orientation = Vector3.new(-34,0.08,89.74)
  6259. o18.Position = Vector3.new(-5.536,7.885,-10.305)
  6260. o18.Anchored = true
  6261. o18.CanCollide = true
  6262. o18.Size = Vector3.new(0.0036,0.194,0.121)
  6263. --Effects--
  6264. Ef = Instance.new("Folder")
  6265. Ef.Parent = game.ReplicatedStorage
  6266. Ef.Name = "Effects"
  6267. Con = Instance.new("Part")
  6268. Conm = Instance.new("SpecialMesh")
  6269. Conm.MeshId = 'rbxassetid://703458158'
  6270. Conm.Parent = Con
  6271. Con.Size = Vector3.new(2,2,2)
  6272. Con.Name = "Cone"
  6273. Con.Parent = Ef
  6274. Crow = Instance.new("Part")
  6275. Cron = Instance.new("SpecialMesh")
  6276. Cron.MeshId = 'rbxassetid://1007757199'
  6277. CronSize = Vector3.new(1.866,0.71,2.155)
  6278. Cron.Parent = Crow
  6279. Crow.Name = "Crown"
  6280. Crow.Parent = Ef
  6281. Donu = Instance.new("Part")
  6282. Donn = Instance.new("SpecialMesh")
  6283. Donn.MeshId = 'rbxassetid://750104831'
  6284. Donn.Parent = Donu
  6285. Donu.Name = 'Donut'
  6286. Donu.Size = Vector3.new(1,0.25,1)
  6287. Donu.Parent = Ef
  6288. Rin = Instance.new("Part")
  6289. Rinm = Instance.new("SpecialMesh")
  6290. Rinm.MeshId = 'rbxassetid://471124075'
  6291. Rinm.Parent = Rin
  6292. Rin.Name = 'Ring'
  6293. Rin.Parent = Ef
  6294. Rin.Size = Vector3.new(1,0.25,1)
  6295. wait(2)
  6296. local Player = owner
  6297. repeat wait() until Player.Character
  6298. local Character = Player.Character
  6299. local Mouse = Player:GetMouse()
  6300. local Landed = true
  6301. local Walking = true
  6302.  
  6303. --// Settings
  6304.  
  6305. local ComboResetTime = .125 --// Seconds it takes for the combo to reset if not clicked fast enough
  6306. local Max_Health = 150
  6307. local NotifyKeyPresses = false
  6308.  
  6309. --// Limbs and what not
  6310.  
  6311. local Torso = Character:WaitForChild'Torso'
  6312. local Head = Character:WaitForChild'Head'
  6313. local Left_Arm = Character:WaitForChild'Left Arm'
  6314. local Right_Arm = Character:WaitForChild'Right Arm'
  6315. local Left_Leg = Character:WaitForChild'Left Leg'
  6316. local Right_Leg = Character:WaitForChild'Right Leg'
  6317. local HumanoidRootPart = Character:WaitForChild'HumanoidRootPart'
  6318. local Humanoid = Character:WaitForChild'Humanoid'
  6319.  
  6320. --// Debounces
  6321.  
  6322. local trail=false
  6323. local DebounceHit = false
  6324. local DebounceKeyDown, DebounceState = false, false
  6325. local DebounceAFKAnimations = false
  6326.  
  6327. --// Other Things
  6328.  
  6329. local State, LastState, Mode = 'Idle', 'Normal'
  6330. Mode=LastState
  6331. local AFKAnimSequenceCount,MaxSequenceCount = 0, 200
  6332.  
  6333. --// Abbreiviations
  6334.  
  6335. local rbx = 'rbxassetid://'
  6336. local char,Char,plr,Plr = Character, Character, Player, Player
  6337. local mouse,ms = Mouse, Mouse
  6338. local cam,camera,Camera,Cam=workspace.CurrentCamera,workspace.CurrentCamera,workspace.CurrentCamera,workspace.CurrentCamera
  6339. local dkd, debkd = DebounceKeyDown, DebounceKeyDown
  6340. local dst, debst, ds, debs = DebounceState,DebounceState,DebounceState,DebounceState
  6341. local daa,dafk,debafk = DebounceAFKAnimations,DebounceAFKAnimations,DebounceAFKAnimations
  6342. local rs = game:service'RunService'
  6343. local lrs = rs.Stepped
  6344. local srs = rs.Stepped
  6345. local lleg,rleg = Left_Leg, Right_Leg
  6346. local larm,rarm = Left_Arm, Right_Arm
  6347. local hed,torr,torso = Head, Torso, Torso
  6348. local hum, root = Humanoid, HumanoidRootPart
  6349. local vec3,vec2 = Vector3.new, Vector2.new
  6350. local sin, cos, atan, rad, rand, rands = math.sin, math.cos, math.atan, math.rad, math.random, math.randomseed
  6351. local cf, ang, eu, v3 = CFrame.new, CFrame.Angles, CFrame.fromEulerAnglesXYZ, Vector3.new
  6352. local bc,bcr,c3 = BrickColor.new,BrickColor.Random,Color3.new
  6353.  
  6354. --// Removals and error prevention
  6355.  
  6356. if Char:FindFirstChild'Animate' then
  6357. local Anim = Char:WaitForChild'Animate'
  6358. Anim.Disabled=true
  6359. end
  6360. local anims = Humanoid:GetPlayingAnimationTracks()
  6361. for i, v in ipairs(anims) do v:Stop() end
  6362. print'Loading'
  6363. wait(2)
  6364.  
  6365. for Index, Object in next, Head:GetChildren() do
  6366. if Object:IsA('Sound') then
  6367. Object.Volume = 0
  6368. end
  6369. end
  6370. if Char:FindFirstChild'Health' then
  6371. ypcall(game.Destroy, Char.Health)
  6372. end
  6373.  
  6374. --// Base Functions
  6375.  
  6376. function Weld(to, from, c1)
  6377. local New_Weld = Instance.new('Motor', to)
  6378. New_Weld.Part0 = from
  6379. New_Weld.Part1 = to
  6380. New_Weld.C1 = c1
  6381. return New_Weld
  6382. end
  6383.  
  6384. function clerp(c1,c2,al)
  6385. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  6386. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  6387. for i,v in pairs(com1) do
  6388. com1[i] = v+(com2[i]-v)*al
  6389. end
  6390. return cf(com1[1],com1[2],com1[3]) * ang(select(4,unpack(com1)))
  6391. end
  6392.  
  6393. function lerp(c1,c2,al)
  6394. return c1:lerp(c2,al)
  6395. end
  6396.  
  6397. function snd(Id, Parent, PlayAsWell, OtherProperties)
  6398. PlayAsWell=PlayAsWell or false
  6399. OtherProperties=OtherProperties or {Volume=.5}
  6400. local Sound = Instance.new('Sound')
  6401. Sound.SoundId = rbx..Id
  6402. for i,v in next, OtherProperties do
  6403. pcall(function()
  6404. Sound[i]=v
  6405. end)
  6406. end
  6407. Sound.Parent=Parent
  6408. Sound.Ended:connect(function()
  6409. game.Debris:AddItem(Sound, 1)
  6410. end)
  6411. if PlayAsWell then
  6412. Sound:Play()
  6413. end
  6414. return Sound
  6415. end
  6416.  
  6417. function FacePos(pos)
  6418. local torso, torsoPos = torso, HumanoidRootPart.CFrame.p
  6419. local torso = Char:FindFirstChild'Torso'
  6420. if pos == 'mouse' or not pos then
  6421. pos = CFrame.new(torsoPos, Vector3.new(mouse.Hit.X,torsoPos.Y,mouse.Hit.Z))
  6422. else
  6423. pos = CFrame.new(torsoPos, pos.p)
  6424. end
  6425. if torso then
  6426. HumanoidRootPart.CFrame = lerp(HumanoidRootPart.CFrame,pos,.3)
  6427. end
  6428. end
  6429.  
  6430. local function lwait(i, output)
  6431. --[[
  6432. i, output = i or 0, output or false
  6433. local lrs = game:service'RunService'.Stepped
  6434. local ifps = 1 / (i / lrs:wait())
  6435. local total = 0
  6436. for asd = 0, (i - ifps) / i, ifps / 1.6 do
  6437. if output then
  6438. warn(asd)
  6439. end
  6440. total = asd * i
  6441. lrs:wait()
  6442. end
  6443. return total, (i / ifps) / ifps, ifps
  6444. ==]]
  6445. return wait(i)
  6446. end
  6447.  
  6448. local function Tween(Object, Time, Style, Direction, Properties)
  6449. local S = type(Style) == 'string' and Enum.EasingStyle[Style] or Style
  6450. local D = type(Direction) == 'string' and Enum.EasingDirection[Direction] or Direction
  6451. local TweenService = game:GetService("TweenService")
  6452. local TweenData = TweenInfo.new(Time, S, D, 0, false, 0)
  6453. local Result = TweenService:Create(Object, TweenData, Properties)
  6454. Result:Play()
  6455. end
  6456.  
  6457. local walkspd = 16
  6458. local sine, change = 0, 1
  6459.  
  6460. --// Model
  6461.  
  6462. local Welds = {};
  6463. local Parts = {};
  6464.  
  6465. local function Join(Main, Parent) --// AutoWeld
  6466. for Index, Object in next, Parent:GetChildren() do
  6467. if Object:IsA('BasePart') then
  6468. for i = 0, 5 do
  6469. if Object:FindFirstChildOfClass('Weld') then
  6470. Object:FindFirstChildOfClass('Weld'):Destroy()
  6471. end
  6472. end
  6473. if Object ~= Main then
  6474. Parts[#Parts + 1] = Object
  6475. Object.Anchored, Object.CanCollide, Object.Locked = false, false, true
  6476. local w = Weld(Main, Object, Main.CFrame:toObjectSpace(Object.CFrame))
  6477. w.Name = Object.Name..':'..Main.Name
  6478. w.Parent = script
  6479. Welds[#Welds + 1] = {w, Main}
  6480. else
  6481. Parts[#Parts + 1] = Main
  6482. Main.Anchored, Main.CanCollide, Main.Locked = false, false, true
  6483. end
  6484. end
  6485. end
  6486. end
  6487.  
  6488. --game:GetService('StarterGui'):SetCoreGuiEnabled(3, false)
  6489.  
  6490. local RStorage = game:GetService('ReplicatedStorage');
  6491. local LG = RStorage:WaitForChild('Left', 5)
  6492. local RG = RStorage:WaitForChild('Right', 5)
  6493. local Melee = RStorage:WaitForChild('Melee', 5)
  6494.  
  6495. if LG == nil or RG == nil or Melee == nil then
  6496. Character:BreakJoints()
  6497. return
  6498. end
  6499.  
  6500. LG = LG:Clone()
  6501. RG = RG:Clone()
  6502. Melee = Melee:Clone()
  6503.  
  6504. local LHA, LHI = LG.Handle, LG.Hitbox
  6505. local RHA = RG.Handle
  6506. local SHA, SHI = Melee.Handle, Melee.Hitbox
  6507.  
  6508. local trailTop = Instance.new('Part')
  6509. trailTop.CFrame=SHI.CFrame*CFrame.new(0,-SHI.Size.Y/2,0)
  6510. trailTop.Size=Vector3.new(1,1,1)
  6511. trailTop.Transparency=1
  6512. trailTop.Color=Color3.new(1,0,0)
  6513. trailTop.Anchored=true
  6514.  
  6515. local trailBottom = Instance.new('Part')
  6516. trailBottom.CFrame=SHI.CFrame*CFrame.new(0,(SHI.Size.Y/2),0)
  6517. trailBottom.Size=Vector3.new(1,1,1)
  6518. trailBottom.Transparency=1
  6519. trailBottom.Color=Color3.new(0,1,0)
  6520. trailBottom.Anchored=true
  6521.  
  6522. trailTop.Parent=Melee
  6523. trailBottom.Parent=Melee
  6524.  
  6525. local TrailSettings = {
  6526. Lifetime = .1,
  6527. Transparency = NumberSequence.new(.5,1),
  6528. Texture = 'rbxassetid://31270182',
  6529. Color1 = ColorSequence.new(BrickColor.new'Alder'.Color,Color3.new(1,1,1)),
  6530. }
  6531.  
  6532. local A0 = Instance.new('Attachment', trailTop)
  6533. local A1 = Instance.new('Attachment', trailBottom)
  6534.  
  6535. local Trail = Instance.new('Trail', Character)
  6536. Trail.Attachment0 = A0
  6537. Trail.Attachment1 = A1
  6538. Trail.FaceCamera=false
  6539. Trail.Transparency = TrailSettings.Transparency
  6540. Trail.Texture = TrailSettings.Texture
  6541. Trail.Color = TrailSettings.Color1
  6542. Trail.Lifetime = TrailSettings.Lifetime
  6543.  
  6544. Join(LHA, LG)
  6545. Join(RHA, RG)
  6546. Join(SHA, Melee)
  6547. Join(SHA, Melee.Rune)
  6548.  
  6549. local MeshEffects = RStorage:WaitForChild('Effects'):Clone()
  6550. MeshEffects.Parent = nil
  6551.  
  6552. for Index, Array in next, Welds do
  6553. Array[1].Parent = Array[2]
  6554. end
  6555.  
  6556. local Set = {
  6557. ['Really black'] = {Color = Color3.new(0, 0, 0), Material = 'Grass'};
  6558. Others = {}--Color = Color3.new(0, 0, 0), Material = 'SmoothPlastic'};
  6559. };
  6560.  
  6561. local Exceptions = {};
  6562.  
  6563. for Index, Object in next, Parts do
  6564. local Pardoned = false
  6565. for Index, Model in next, Exceptions do
  6566. if Object.Parent == Model then
  6567. Pardoned = true
  6568. end
  6569. end
  6570. if Object:IsA('BasePart') and not Pardoned then
  6571. Object.Anchored, Object.Locked, Object.CanCollide = false, true, false
  6572. if Object.ClassName:find('UnionOperation') then
  6573. Object.UsePartColor = true
  6574. end
  6575. local WasSet = false
  6576. for Look, Data in next, Set do
  6577. if tostring(Object.BrickColor) == Look then
  6578. WasSet = true
  6579. for Index, Value in next, Data do
  6580. pcall(function()
  6581. Object[Index] = Value
  6582. end)
  6583. end
  6584. end
  6585. end
  6586. if not WasSet then
  6587. for Index, Value in next, Set.Others do
  6588. pcall(function()
  6589. Object[Index] = Value
  6590. end)
  6591. end
  6592. end
  6593. end
  6594. end
  6595.  
  6596. --// Welds
  6597.  
  6598. local llw = Weld(Left_Leg, Torso, cf(.5,2,0))
  6599. local rlw = Weld(Right_Leg, Torso, cf(-.5,2,0))
  6600. local raw = Weld(Right_Arm, Torso, cf(-1.5,0,0))
  6601. local law = Weld(Left_Arm, Torso, cf(1.5,0,0))
  6602. local torw = Weld(Torso, HumanoidRootPart, cf(0,0,0))
  6603. local hedw = Weld(Head, Torso, cf(0,-1.5,0))
  6604. local lhw = Weld(Left_Arm, LHA, cf(0,0,0))
  6605. local rhw = Weld(Right_Arm, RHA, cf(0,0,0)*ang(0,0,0))
  6606. local shw = Weld(Right_Arm, SHA, cf(0,-1,0)*ang(0,-rad(90),-rad(90)))
  6607.  
  6608. LG.Parent, RG.Parent, Melee.Parent = script, script, script
  6609.  
  6610. --[[ State Example: Arms Out
  6611. raw.C0 = clerp(raw.C0, cf(0,.5,-.5)*ang(rad(90),0,0),.1)
  6612. law.C0 = clerp(law.C0, cf(0,.5,-.5)*ang(rad(90),0,0),.1)
  6613. --]]
  6614.  
  6615. local keyz={};
  6616. local Used = {
  6617. Executed={};
  6618. Failed={};
  6619. };
  6620.  
  6621. local BindKey = function(Name, Key, Function)
  6622. local keydown
  6623. keyz[Key:upper()]=Name
  6624. keydown = mouse.KeyDown:connect(function(key)
  6625. if Key:lower() == key:lower() then
  6626. local detect=dkd
  6627. if dkd then
  6628. table.insert(Used.Failed, {Name, Key, Function})
  6629. elseif not dkd and Walking then
  6630. if NotifyKeyPresses then
  6631. warn('executed('..Name..', "'..tostring(Key:upper())..'")')
  6632. end
  6633. Function(Name, Key)
  6634. if NotifyKeyPresses then
  6635. warn('ended('..Name..')')
  6636. end
  6637. table.insert(Used.Executed, {Name, Key, Function})
  6638. elseif Walking then
  6639. warn('You must Walking enabled to use this key')
  6640. end
  6641. end
  6642. end)
  6643. end
  6644.  
  6645. local pitches = {}
  6646. for i = -.1,.1,.01 do table.insert(pitches,1.5+i) end
  6647.  
  6648. --[[
  6649.  
  6650. BindKey('Attack Name', 'Key{Not case sensative}', function(AttackName, Key)
  6651. ds,dkd = true,true
  6652. for i = 0,1,.05 do
  6653. local animspd = .1
  6654. local Right_Arm_ = cf(0,0,0)
  6655. local Left_Arm_ = cf(0,0,0)
  6656. local Right_Leg_ = cf(0,0,0)
  6657. local Left_Leg_ = cf(0,0,0)
  6658. local Head_ = cf(0,0,0)
  6659. local Torso_ = cf(0,0,0)
  6660.  
  6661. torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
  6662. hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
  6663. law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
  6664. raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
  6665. rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
  6666. llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
  6667. lrs:wait()
  6668. lrs:wait()
  6669. end
  6670. for i = 0,1,.05 do
  6671. local animspd = .1
  6672. local Right_Arm_ = cf(0,0,0)
  6673. local Left_Arm_ = cf(0,0,0)
  6674. local Right_Leg_ = cf(0,0,0)
  6675. local Left_Leg_ = cf(0,0,0)
  6676. local Head_ = cf(0,0,0)
  6677. local Torso_ = cf(0,0,0)
  6678.  
  6679. torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
  6680. hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
  6681. law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
  6682. raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
  6683. rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
  6684. llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
  6685. lrs:wait()
  6686. end
  6687. ds,dkd = false,false
  6688. end)
  6689.  
  6690. --]]
  6691.  
  6692. function rainb(hue)
  6693. local section = hue % 1 * 3
  6694. local secondary = 0.5 * math.pi * (section % 1)
  6695. if section < 1 then
  6696. return c3(1, 1 - cos(secondary), 1 - sin(secondary))
  6697. elseif section < 2 then
  6698. return c3(1 - sin(secondary), 1, 1 - cos(secondary))
  6699. else
  6700. return c3(1 - cos(secondary), 1 - sin(secondary), 1)
  6701. end
  6702. end
  6703.  
  6704. function showDmg(To, From, Txt, Others)
  6705. local bc,c3=BrickColor.new,Color3.new
  6706. local vec3,cf=Vector3.new,CFrame.new
  6707. local rand=math.random
  6708. local n = 2
  6709. local lrs=game:service'RunService'.Stepped
  6710. local Color = 'Pearl'
  6711. local Clr_Raw = Color
  6712. if Clr == nil then Clr = 'Pearl' end
  6713. Clr = bc(Color).Color
  6714. local Pert = Instance.new('Part', Character)
  6715. Pert.Size = vec3(.2,.2,.2)
  6716. Pert.Transparency = 1
  6717. Pert.CanCollide = false
  6718. Pert.Anchored = true
  6719. Pert.CFrame = To:FindFirstChild'Head'.CFrame * cf(rand(-n,n),n,rand(-n,n))
  6720. Pert.BrickColor = bc('Black')
  6721. local Rod = nil
  6722. if (Others.Rod ~= nil and Others.Rod == true) then
  6723. Rod = Instance.new('Part', Character)
  6724. local to,from = Pert.CFrame.p, From:WaitForChild'HumanoidRootPart'.CFrame.p
  6725. local dist = (to-from).magnitude
  6726. Rod.Size = vec3(.2,.2,dist)
  6727. Instance.new('BlockMesh',Rod).Scale=vec3(.1,.1,1)
  6728. Rod.CFrame = cf(to,from)*cf(0,0,-dist/2)
  6729. Rod.Transparency = .5 or Rod.RodTrans
  6730. Rod.CanCollide = false
  6731. Rod.Anchored = true
  6732. Rod.BrickColor = bc(Clr_Raw)
  6733. end
  6734. local Gui = Instance.new('BillboardGui',Pert)
  6735. Gui.Adornee = Pert
  6736. local n2 = 10
  6737. Gui.Size = UDim2.new(n2,0,n2,0)
  6738. local TextL = Instance.new('TextLabel', Gui)
  6739. local r,g,b = Clr.r,Clr.g,Clr.b
  6740. local clr = c3(r,g,b)
  6741. TextL.BackgroundTransparency = 1
  6742. TextL.Font = 'SciFi'
  6743. TextL.Size = UDim2.new(1,0,1,0)
  6744. TextL.TextTransparency = .1
  6745. TextL.TextStrokeTransparency = .2
  6746. TextL.TextStrokeColor3 = clr
  6747. TextL.Position = UDim2.new(0,0,0,0)
  6748. Txt=tostring(Txt):upper()
  6749. if string.find(Txt:lower(),'critical') or (Others.Crit ~= nil and Others.Crit == true)then
  6750. Txt='(CRITICAL) // '..Txt
  6751. end
  6752. TextL.Text=Txt
  6753. TextL.TextScaled = false
  6754. TextL.FontSize = 'Size18'
  6755. TextL.TextColor3 = Color3.new(1,1,1)
  6756. local sp = Pert.CFrame*cf(rand(n,n*2),rand(n,n*2),rand(n,n*2)) --Pert.CFrame * cf(rand(-n,n),n,rand(-n,n))
  6757. delay(.1,function()
  6758. repeat lrs:wait()
  6759. TextL.TextTransparency=TextL.TextTransparency+.005
  6760. TextL.TextStrokeTransparency=TextL.TextStrokeTransparency+.005
  6761. if Rod ~= nil then
  6762. Rod.Transparency = Rod.Transparency + .0025
  6763. end
  6764. Pert.CFrame = Pert.CFrame:lerp(sp,.01)
  6765. clr = c3(r,g,b)
  6766. if Rod ~= nil then
  6767. local to,from = Pert.CFrame.p, From:WaitForChild'HumanoidRootPart'.CFrame.p
  6768. local dist = (to-from).magnitude
  6769. Rod.Size = vec3(.2,.2,dist)
  6770. Rod.CFrame = cf(to,from)*cf(0,0,-dist/2)
  6771. end
  6772. --TextL.TextColor3 = clr
  6773. until TextL.TextTransparency>=1
  6774. Pert:Destroy()
  6775. if Rod ~= nil then
  6776. Rod:Destroy()
  6777. end
  6778. end)
  6779. end
  6780.  
  6781. --// Example // showDmg(workspace.SavageMunkey, workspace.Base, 'Damage Dealt'..math.random(0,100), {Rod=false,RodTrans=0,Crit=false})
  6782.  
  6783. function CheckIfLanded()
  6784. local Ray = Ray.new(root.Position,vec3(0,-1,0)*3.5)
  6785. local Ignore = {Char}
  6786. local Hit,Pos,SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  6787. if Hit == nil then return false,nil end
  6788. return true, Hit
  6789. end;
  6790.  
  6791. function FindNearestTorso(Position, Distance, SinglePlayer)
  6792. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  6793. local List = {}
  6794. for i,v in pairs(workspace:GetChildren())do
  6795. if v:IsA("Model")then
  6796. if v:findFirstChild("Torso")then
  6797. if v ~= Char then
  6798. if(v.Torso.Position -Position).magnitude <= Distance then
  6799. table.insert(List,v)
  6800. end
  6801. end
  6802. end
  6803. end
  6804. end
  6805. return List
  6806. end
  6807.  
  6808. local function ExpellWithForce(Origin, Radius, Force, OnHit, Break, Ignore)
  6809. Origin = Origin or Vector3.new()
  6810. Origin = typeof(Origin) == 'Vector3' and Origin or Origin.p
  6811. Ignore = Ignore or {};
  6812. Ignore = typeof(Ignore) == 'table' and Ignore or {};
  6813. Radius = Radius or 5
  6814. Force = Force or 50
  6815. if Break == nil then
  6816. Break = true
  6817. end
  6818. OnHit = OnHit or function(Part, Distance)
  6819. --// oof
  6820. end
  6821.  
  6822. local SearchRegion = Region3.new(Origin - Vector3.new(Radius, Radius, Radius),Origin + Vector3.new(Radius, Radius, Radius))
  6823. local Parts = workspace:FindPartsInRegion3WithIgnoreList(SearchRegion, Ignore, 100)
  6824.  
  6825. for Index, Part in next, Parts do
  6826. spawn(function()
  6827. OnHit(Part, (Origin - Part.Position).magnitude)
  6828. end)
  6829. if not Part.Anchored then
  6830. if Break then
  6831. Part:BreakJoints()
  6832. end
  6833. local Direction = CFrame.new(Origin, Part.Position).lookVector * Force
  6834. local Propell = Instance.new('BodyVelocity')
  6835. Propell.Velocity = Direction
  6836. Propell.Parent = Part
  6837. spawn(function()
  6838. game:GetService('RunService').Stepped:wait()
  6839. Propell:Destroy()
  6840. end)
  6841. end
  6842. end
  6843. end
  6844.  
  6845. function NewFXBox(name,prnt)
  6846. if prnt == nil then
  6847. prnt = Character
  6848. end
  6849. local FXBox = Instance.new('Model', prnt)
  6850. FXBox.Name = 'FXBox'
  6851. if name then
  6852. FXBox.Name = name
  6853. end
  6854. local Count = 0
  6855. local Check
  6856. Check = FXBox.ChildAdded:connect(function(Object)
  6857. if Object:IsA'BasePart' then
  6858. FXBox.PrimaryPart = Object
  6859. Check:disconnect()
  6860. end
  6861. end)
  6862. return FXBox
  6863. end
  6864.  
  6865. function ReSurface(Part, Integer)
  6866. if Part ~= nil and Part:IsA'BasePart' then
  6867. Part.TopSurface = Integer
  6868. Part.BottomSurface = Integer
  6869. Part.LeftSurface = Integer
  6870. Part.RightSurface = Integer
  6871. Part.FrontSurface = Integer
  6872. Part.BackSurface = Integer
  6873. end
  6874. end
  6875.  
  6876. function ni(name,prnt)
  6877. return Instance.new(tostring(name),prnt)
  6878. end
  6879.  
  6880. local FX = NewFXBox('FXBox', Character)
  6881. function NewObject(Type, prnt, others)
  6882. if not prnt then prnt = workspace end
  6883. local New = ni(Type)
  6884. if New:IsA'BasePart' then
  6885. ReSurface(New,10)
  6886. New.Anchored = true
  6887. New.Size = vec3(1,1,1)
  6888. New.CanCollide = false
  6889. end
  6890. for i,v in next, others do
  6891. local suc,err = pcall(function()
  6892. New[i] = v
  6893. end)
  6894. if not suc then
  6895. print(err)
  6896. end
  6897. end
  6898. New.Parent = prnt
  6899. return New
  6900. end
  6901.  
  6902. function NewPart(prnt)
  6903. return NewObject('Part', prnt, {Anchored = true, Size = Vector3.new(1,1,1), CanCollide = false, CFrame = prnt:IsA'BasePart' and prnt.CFrame or CFrame.new(0,1,0)})
  6904. end
  6905.  
  6906. function OnHumanoidFind(Detector, Offset, Function, Range, Multi) --// R15 Support
  6907. spawn(function()
  6908. if not Multi then Multi = false end
  6909. local PlayerModels={};
  6910. local SearchAndStuff
  6911. local First = true
  6912. SearchAndStuff=function(Parent)
  6913. for Index, Obj in next, Parent:children() do
  6914. if Obj:IsA'Model' and Obj:FindFirstChild'Humanoid' then
  6915. if Obj:FindFirstChild'HumanoidRootPart' and (Obj.HumanoidRootPart.CFrame.p-(Detector.CFrame*Offset).p).magnitude <= Range and Obj~=char then
  6916. --print'derp'
  6917. table.insert(PlayerModels, Obj)
  6918. if First then
  6919. if not Multi then
  6920. First = false
  6921. end
  6922. pcall(function()
  6923. Obj.Health.Disabled = true
  6924. end)
  6925. spawn(function()
  6926. Function(Obj:WaitForChild'HumanoidRootPart', Obj:WaitForChild'Humanoid', Obj)
  6927. end)
  6928. end
  6929. end
  6930. end
  6931. SearchAndStuff(Obj)
  6932. end
  6933. end
  6934. SearchAndStuff(workspace)
  6935. return PlayerModels
  6936. end)
  6937. end
  6938.  
  6939. function debri(item,time)
  6940. return game:service'Debris':AddItem(item,time)
  6941. end
  6942.  
  6943. local effects={MagicCircles={};};
  6944. local trans={};
  6945. local grows={}
  6946.  
  6947. function effects:MagicCircle(waitt, id, Offset,clr,sz)
  6948. sz=sz or 4.5
  6949. local mcPart=NewObject('Part', FX,{Transparency=1,Size=vec3(sz,sz,.2)})
  6950. debri(mcPart, 40)
  6951. clr=clr or 'Pearl'
  6952. local mesh=NewObject('BlockMesh',mcPart,{Scale=vec3(1,1,0)})
  6953. local backDecal=NewObject('Decal',mcPart,{Color3=bc(clr).Color,Face='Back',Texture=rbx..id})
  6954. local frontDecal=NewObject('Decal',mcPart,{Color3=bc(clr).Color,Face='Front',Texture=rbx..id})
  6955. local r=rand()
  6956. local dir=5
  6957. if r>.5 then dir=-5 end
  6958. spawn(function()
  6959. repeat lwait() until frontDecal.Parent==nil mcPart:Destroy()
  6960. end)
  6961. table.insert(effects.MagicCircles, {mcPart,backDecal,frontDecal,dir})
  6962. mcPart.CFrame = Offset
  6963. delay(waitt,function() trans[backDecal]={.05,1} trans[frontDecal]={.05,1}end)
  6964. return mcPart,frontDecal,backDecal
  6965. end
  6966.  
  6967. function effects:particle(waitt,mx,num, shape,Offset, clrz,cancollide)
  6968. local sz={};
  6969. if not clrz or #clrz < 1 then
  6970. clrz={'Alder','Pearl'}
  6971. end
  6972. for i = .4,mx,.025 do table.insert(sz,i) end
  6973. local tings={};
  6974. for i = 1,num do
  6975. local val = sz[rand(1,#sz)]
  6976. local part=NewObject('Part', FX,{Material='Neon', CanCollide=cancollide,Shape=shape, Transparency=.6,Size=vec3(val,val,val),Color = bc(clrz[rand(1,#clrz)]).Color, CFrame = Offset*ang(rad(rand(-360,360)),rad(rand(-360,360)),rad(rand(-360,360)))})
  6977. tings[i]=part
  6978. delay(waitt,function() trans[part]={.05,1} end)
  6979. end
  6980. return tings
  6981. end
  6982.  
  6983. function effects:Debris(cancollide, radius, mx, num, pos, waitt,velocitymax)
  6984. local Ray = Ray.new(pos+vec3(0,1,0),vec3(0,-1,0)*5)
  6985. local Ignore = {FX,Character}
  6986. local Hit, Pos, SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  6987. local tings={};
  6988. if Hit then
  6989. local sz={};
  6990. for i = .2,mx,.025 do table.insert(sz,i) end
  6991. for i = 1,num do
  6992. local val = sz[rand(1,#sz)]
  6993. local y = 45
  6994. if not cancollide then y = 65 end
  6995. local top,bottom=velocitymax[1],velocitymax[2]
  6996. local x,z=rand(bottom,top),rand(bottom,top)
  6997. local part=NewObject('Part', FX,{Anchored=false, Velocity = vec3(rand(-x,x),y,rand(-z,z)), Material=Hit.Material, CanCollide=cancollide, Transparency=Hit.Transparency,Size=vec3(val,val,val),Color = Hit.Color, CFrame = cf(pos)*cf(rand(-radius,radius),0,rand(-radius,radius))*ang(rad(rand(-360,360)),rad(rand(-360,360)),rad(rand(-360,360)))})
  6998. tings[i]=part
  6999. if cancollide then
  7000. delay(waitt,function() trans[part]={.05,1} end)
  7001. end
  7002. end
  7003. return tings
  7004. else
  7005. --// Derp
  7006. end
  7007. end
  7008.  
  7009. function effects:Crown(waitt, origin, sz, height,clr, others,ut)
  7010. local props={CanCollide=false,Anchored=true,Size=vec3(sz,height,sz),Color = bc(clr).Color, CFrame = origin*ang(0,rad(rand(-360,360)),0)}
  7011. for i,v in next, others do
  7012. props[i]=v
  7013. end
  7014. local cr=MeshEffects.Crown:Clone()
  7015. for i,v in next, props do
  7016. if tostring(i)~='Parent' then
  7017. pcall(function() cr[i]=v end)
  7018. end
  7019. end
  7020. cr.Parent=FX
  7021. delay(waitt,function() trans[cr]={ut,1} end)
  7022. return cr
  7023. end
  7024.  
  7025. function effects:Ring(waitt, origin, sz, height,clr, slim, others,ut)
  7026. local props={CanCollide=false,Anchored=true,Size=vec3(sz,height,sz),Color = bc(clr).Color, CFrame = origin*ang(0,rad(rand(-360,360)),0)}
  7027. slim = slim or false
  7028. others = others or {};
  7029. for i,v in next, others do
  7030. props[i]=v
  7031. end
  7032. local cr=MeshEffects[slim and 'Ring' or 'Donut']:Clone()
  7033. for i,v in next, props do
  7034. if tostring(i)~='Parent' then
  7035. pcall(function() cr[i]=v end)
  7036. end
  7037. end
  7038. cr.Parent=FX
  7039. delay(waitt,function() trans[cr]={ut,1} end)
  7040. return cr
  7041. end
  7042.  
  7043. function effects:BlastRad(cancollide, radius, num, mx, pos, waitt)
  7044. local Ray = Ray.new(pos+vec3(0,1,0),vec3(0,-1,0)*5)
  7045. local Ignore = {FX,Character}
  7046. local Hit, Pos, SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  7047. local tings={};
  7048. local org=mx/4
  7049. mx=mx
  7050. if Hit then
  7051. local sz={};
  7052. for i = .2,num,.025 do table.insert(sz,i) end
  7053. for i = 1,360,mx do
  7054. local val = sz[rand(1,#sz)]
  7055. local function rr()
  7056. local vlz={}
  7057. for i = .45,1,.025 do table.insert(vlz,i) end
  7058. return vlz[rand(1,#vlz)]
  7059. end
  7060. local part=NewObject('Part', FX,{Material=Hit.Material, CanCollide=cancollide, Transparency=Hit.Transparency,Size=vec3(val/rr(),val/rr(),val/rr()),Color = Hit.Color, CFrame = cf(pos) * ang(0,rad(i),0)*cf(radius,(Hit.CFrame.Y+(Hit.Size.Y/2))-val,0)*ang(rad(rand(-360,360)),rad(rand(-360,360)),rad(rand(-360,360)))})
  7061. tings[i]=part
  7062. if cancollide then
  7063. delay(waitt,function() trans[part]={.05,1} end)
  7064. end
  7065. end
  7066. return tings
  7067. else
  7068. --// Derp
  7069. end
  7070. end
  7071.  
  7072. --[[ examples
  7073. effects:BlastRad(true, 15, 2, 18, pos, .5)
  7074.  
  7075. effects:Debris(true, 2.5, 2, rand(10,20), pos, .5,{50,25})
  7076.  
  7077. effects:MagicCircle(.15,124339738, cf(0,-1.5,0))
  7078.  
  7079. effects:Particle(.5,1.2,rand(2,5),'Ball',cf(0,-1.5,0),{'Pearl','Pearl'})
  7080. --]]
  7081.  
  7082. function SetSwordTransparency(Transparency, Speed)
  7083. Speed = Speed or .5
  7084. for Index, Obj in next, Parts do
  7085. if Obj:IsDescendantOf(Melee) and Obj ~= SHA and Obj ~= trailTop and Obj ~= trailBottom then
  7086. Tween(Obj, Speed, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, {Transparency = Transparency})
  7087. end
  7088. end
  7089. lwait(Speed)
  7090. end
  7091.  
  7092. function FadeSword(Type)
  7093. if Type == 'Out' then
  7094. snd(588738712,root,true)
  7095. SetSwordTransparency(1, .5)
  7096. elseif Type == 'In' then
  7097. snd(588733880,root,true)
  7098. SetSwordTransparency(0, .5)
  7099. end
  7100. if Type == 'In' or Type == 'Out' then
  7101. --// asd
  7102. else
  7103. warn('Invalid Tween Type')
  7104. end
  7105. end
  7106.  
  7107. local function CalculateArc(Smoothness, From, To)
  7108. local PeakFactor = 5
  7109. local Peak, To = (From - To).magnitude / PeakFactor, To - Vector3.new(0, From.Y, 0)
  7110. local Algorithm = math.abs(2 * (Peak * 2 - From.Y + To.Y))
  7111. local Fraction, Last, Return = (1 / (Peak * PeakFactor)) / Smoothness, From, {};
  7112. for Integer = 0, 1, Fraction do
  7113. local New = CFrame.new(From:lerp(To, Integer) + Vector3.new(0, -Algorithm * Integer ^ 2 + Algorithm * Integer + From.Y, 0))
  7114. Return[#Return + 1] = New.p
  7115. end
  7116. return Return
  7117. end
  7118.  
  7119. local function DisplayArc(Arc)
  7120. local Storage, Last = Instance.new('Folder', script), Arc[1]
  7121. for Index, Point in next, Arc do
  7122. if Index > 1 then
  7123. local Part = Instance.new('Part')
  7124. Part.Anchored = true
  7125. Part.Material = 'Plastic'
  7126. Part.BrickColor = BrickColor.new('Buttermilk')
  7127. Part.TopSurface, Part.BottomSurface = 0, 0
  7128. Part.CanCollide = false
  7129. local Distance = (Last - Point).magnitude
  7130. Part.Size = Vector3.new(.15, .15, Distance)
  7131. Part.CFrame = CFrame.new(Point, Last) * CFrame.new(0, 0, -Distance / 2)
  7132. Part.Parent = Storage
  7133. end
  7134. Last = Point
  7135. end
  7136. return Storage
  7137. end
  7138.  
  7139. local function TweenC0(Obj, C0, Style, Direction, Time)
  7140. local S = type(Style) == 'string' and Enum.EasingStyle[Style] or Style
  7141. local D = type(Direction) == 'string' and Enum.EasingDirection[Direction] or Direction
  7142. return Tween(Obj, Time, S, D, {C0 = C0})
  7143. end
  7144.  
  7145. local function TweenJoints(Array)
  7146. local Style, Direction, Time = Array.Style, Array.Direction, Array.Time
  7147. TweenC0(torw, CFrame.new(0,0,0) * Array.Torso_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
  7148. TweenC0(hedw, CFrame.new(0,0,0) * Array.Head_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
  7149. TweenC0(law, CFrame.new(0,0,0) * Array.Left_Arm_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
  7150. TweenC0(raw, CFrame.new(0,0,0) * Array.Right_Arm_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
  7151. TweenC0(rlw, CFrame.new(0,0,0) * Array.Right_Leg_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
  7152. TweenC0(llw, CFrame.new(0,0,0) * Array.Left_Leg_ * CFrame.Angles(0,0,0), Enum.EasingStyle[Style], Enum.EasingDirection[Direction], Time)
  7153. lwait(Time)
  7154. end
  7155.  
  7156. BindKey('Shatter', 'g', function()
  7157. local actual,floor = CheckIfLanded(5)
  7158. if floor ~= nil then
  7159. dkd,ds = true,true
  7160. walkspd=0
  7161. spawn(function()
  7162. FadeSword'Out'
  7163. end)
  7164. spawn(function()
  7165. TweenJoints{
  7166. Style = 'Quad',
  7167. Direction = 'InOut',
  7168. Time = 2,
  7169. Right_Arm_ = CFrame.new(0.465010166, -0.439316332, -0.871765137, 0.747874916, -0.654143095, 0.1130483, 0.493739158, 0.434284091, -0.753404915, 0.443739593, 0.619269013, 0.647766173),
  7170. Left_Arm_ = CFrame.new(-0.170354724, -0.342900693, -0.237001896, 0.933956206, 0.284371793, 0.216468185, -0.290408731, 0.95689404, -0.00408667326, -0.208299309, -0.0590473711, 0.976281226),
  7171. Right_Leg_ = CFrame.new(5.82933426e-05, -0.162627101, -0.864352643, 0.99999994, 5.28991222e-07, 8.41915607e-07, -7.22706318e-07, 0.963203788, 0.268772095, -6.85453415e-07, -0.268772036, 0.963203907),
  7172. Left_Leg_ = CFrame.new(0.0951830149, 0.54995501, -0.323918521, 0.984639764, 0.100627825, 0.142683357, -0.0181532614, 0.871783793, -0.489554465, -0.173651829, 0.479444683, 0.860219717),
  7173. Head_ = CFrame.new(-0.0422370695, 0.00290894508, -0.0818053484, 0.984639764, 0.0281961933, 0.172306329, -0.0181532614, 0.99805814, -0.0595857799, -0.173651829, 0.0555427074, 0.983239532),
  7174. Torso_ = CFrame.new(0.0194549561, -0.49135685, -0.340732574, 0.984639764, -0.0181533415, -0.173651904, 0.131810531, 0.729528904, 0.671128631, 0.114500739, -0.683708429, 0.720715284),
  7175. }
  7176. end)
  7177. local s2=snd(588697034,root)
  7178. s2.Pitch=1
  7179. s2:Play()
  7180. for i = 1,3 do
  7181. lwait(.4)
  7182. local s = snd(588738949, root)
  7183. s.Pitch=1+(i/3)
  7184. s:Play()
  7185. effects:MagicCircle(2, 124339738, Right_Arm.CFrame*cf(0,1.25+i,0)*ang(rad(90),0,0),'Alder',.4+(i*2))
  7186. end
  7187. lwait(1)
  7188. local pe=effects:particle(.5,1.2,rand(2,5),'Cylinder',Right_Arm.CFrame*cf(0,1.25,0),{'Alder','Pearl'})
  7189. for i,v in next, pe do
  7190. v.Material='Neon'
  7191. v.Transparency=.5
  7192. end
  7193. TweenJoints{
  7194. Style = 'Bounce',
  7195. Direction = 'Out',
  7196. Time = .1,
  7197. Right_Arm_ = CFrame.new(-0.0323668718, -0.33607614, -1.25630379, 0.91932112, -0.32731083, 0.218440875, 0.34712559, 0.413077384, -0.841944814, 0.185344651, 0.849843979, 0.493368685),
  7198. Left_Arm_ = CFrame.new(-0.209303617, -0.521940768, 0.209407374, 0.936596692, 0.341231942, 0.0796716437, -0.350254416, 0.904899955, 0.24182263, 0.0104227364, -0.254395574, 0.967044115),
  7199. Right_Leg_ = CFrame.new(-0.144759536, -0.00181019306, -0.561343014, 0.955083072, -0.217188269, -0.201608062, 0.221891105, 0.975071311, 0.000745773315, 0.196420282, -0.0454473495, 0.979466081),
  7200. Left_Leg_ = CFrame.new(-0.314982504, 0.547448993, 0.130197883, 0.968778491, -0.198621765, 0.148383692, 0.246814638, 0.715970933, -0.653045356, 0.0234706104, 0.669279575, 0.742639899),
  7201. Head_ = CFrame.new(0.181634739, 0.0164057016, -0.124970227, 0.991457701, -0.121056765, 0.0485501736, 0.124629587, 0.989057779, -0.0789446831, -0.0384620987, 0.0843212008, 0.995696187),
  7202. Torso_ = CFrame.new(0.35552597, -0.773739338, -0.511285782, 0.919321179, 0.34712553, 0.185344562, -0.344054341, 0.480445355, 0.806721151, 0.190985352, -0.80540365, 0.561113119),
  7203. }
  7204. Tween(s2, .1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, {Volume=0,Pitch=0})
  7205. lwait(.08)
  7206. OnHumanoidFind(root, cf(0,0,0), function(proot,phum,body)
  7207. local dmg = math.random(20,35)
  7208. phum.Health = phum.Health - dmg
  7209. showDmg(body, Character, dmg, {Rod=true,RodTrans=0,Crit=math.random()>.85})
  7210. phum.PlatformStand=proot:GetMass()<4 and true or false
  7211. delay(1,function()
  7212. phum.PlatformStand=false
  7213. end)
  7214. end, 15, true)
  7215. ExpellWithForce(Right_Arm.CFrame*cf(0,-.5,0), 15, math.random(30,80), function(Part, Distance)
  7216. end, false, {workspace:FindFirstChild'Base', Character})
  7217. local cr=effects:Crown(.5, cf((Right_Arm.CFrame*cf(0,-.5,0)).p), 10, 1, tostring(floor.BrickColor),{Material=floor.Material},.2)
  7218. local cr2=effects:Ring(0, cf((Right_Arm.CFrame*cf(0,-.5,0)).p), 10, 2, tostring(floor.BrickColor),false,{Material=floor.Material},.15)
  7219. table.insert(grows,{{cr},vec3(4,0,4)*4,ang(0,rad(10),0)})
  7220. table.insert(grows,{{cr2},vec3(2,0,2)*4,ang(0,0,0)})
  7221. s2:Destroy()
  7222. snd(610359590,root,true)
  7223. snd(610359515,root,true)
  7224. snd(471882019,root,true)
  7225. snd(284228088,root,true)
  7226. effects:Debris(true, 2.5, 2, rand(10,20), (Right_Arm.CFrame*CFrame.new(0,-1,0)).p, .5,{50,25})
  7227. effects:BlastRad(true, 10, 4, 6, (Right_Arm.CFrame*cf(0,-1,0)).p, .5)
  7228. lwait(.2)
  7229. dkd,ds = false,false
  7230. FadeSword'In'
  7231. end
  7232. end)
  7233.  
  7234. local canmine=true
  7235. BindKey('Mine', 'x', function(an,key)
  7236. if canmine then
  7237. canmine=false
  7238. ds,dkd = true,true
  7239. walkspd=0
  7240. TweenJoints{
  7241. Style = 'Quint',
  7242. Direction = 'In',
  7243. Time = .1,
  7244. Right_Arm_ = CFrame.new(0.206053138, -0.214844942, 4.48524952e-06, 0.950437307, -0.310916245, 3.57627869e-07, 0.310916275, 0.950437307, 4.52626892e-07, -4.47034836e-07, -3.27825546e-07, 0.99999994),
  7245. Left_Arm_ = CFrame.new(-0.450706005, 0.440005541, -1.68257201, 0.674415231, 0.738352239, -3.22744e-08, 0, -4.37113883e-08, -1, -0.738352239, 0.674415231, -2.94796259e-08),
  7246. Right_Leg_ = CFrame.new(4.7981739e-06, 1.08480453e-05, 3.81469727e-06, 0.99999994, 0, 0, 0, 1, 0, 0, 0, 0.99999994),
  7247. Left_Leg_ = CFrame.new(-0.280058563, -0.0610874891, -0.665026188, 0.889047265, -0.112292051, 0.443835318, 4.33083471e-07, 0.969455719, 0.245275185, -0.457815409, -0.218061626, 0.861891985),
  7248. Head_ = CFrame.new(0, -6.10351563e-05, 0, 0.560465097, 0, 0.828179061, 0, 1, 0, -0.828179061, 0, 0.560465097),
  7249. Torso_ = CFrame.new(-1.1920929e-06, 0, 2.86102295e-06, 0.674415231, 0, -0.738352239, 0, 1, 0, 0.738352239, 0, 0.674415231),
  7250. }
  7251.  
  7252. for i=0,1,.1 do
  7253. FacePos(old)
  7254. lrs:wait()
  7255. end
  7256.  
  7257. lwait(.2)
  7258. for i=0,1,.1 do
  7259. FacePos(old)
  7260. end
  7261.  
  7262. local bl=NewPart(script)
  7263. bl.Color=c3(0,0,0)
  7264. bl.Size=Vector3.new(2,2,2)
  7265. bl.CFrame=larm.CFrame*cf(0,-1.5,0)
  7266. bl.Shape='Ball'
  7267. bl.Material='Neon'
  7268. bl.Transparency=.001
  7269. local active=true
  7270. spawn(function()
  7271. game.Debris:AddItem(bl,25)
  7272. delay(24,function()
  7273. active=false
  7274. local c=bl.CFrame
  7275. bl.CanCollide=false
  7276. Tween(bl,1,Enum.EasingStyle.Back,Enum.EasingDirection.In,{Size=Vector3.new(.05,.05,.05),CFrame=c,Transparency=1})
  7277. end)
  7278. local tic=0
  7279. local ontouch
  7280. ontouch=bl.Touched:connect(function(Hit)
  7281. if not Hit:IsDescendantOf(Character) then
  7282. bl.CanCollide=true
  7283. OnHumanoidFind(bl, cf(0,0,0), function(proot,phum,body)
  7284. local dmg = math.random(15,30)
  7285. phum.Health = phum.Health - dmg
  7286. hum.Health=hum.Health+15
  7287. showDmg(body, Character, 'LIFE STEAL '..dmg, {Rod=true,RodTrans=0,Crit=false})
  7288. end, 8, true)
  7289. snd(144699494,root,true)
  7290. snd(260433487,root,true)
  7291. local neww=bl:Clone()
  7292. neww.Color=c3(0,0,0)
  7293. local c=bl.CFrame
  7294. bl:Destroy()
  7295. neww.Parent=script
  7296. effects:particle(.5,7,rand(2,5),'Cylinder',c,{'Pearl','Alder'})
  7297. for i = 0,8,.45 do
  7298. neww.Transparency=neww.Transparency+.056274620146314
  7299. neww.Size=neww.Size:lerp(Vector3.new(2+i,2+i,2+i),.2)
  7300. neww.CFrame=c
  7301. lrs:wait()
  7302. end
  7303. neww:Destroy()
  7304. ontouch:disconnect()
  7305. neww.CFrame=c
  7306. end
  7307. end)
  7308. while lwait(.2) and bl and active do
  7309. if bl.Parent~=nil then
  7310. tic=tic+.1
  7311. if tic > .65 then
  7312. snd(171137312,bl,true)
  7313. OnHumanoidFind(bl, cf(0,0,0), function(proot,phum,body)
  7314. local took=math.random(5,20)
  7315. phum.Health = phum.Health - took
  7316. --hum.Health=hum.Health+took
  7317. showDmg(body, Character, took, {Rod=true,RodTrans=0,Crit=false})
  7318. end, 6, true)
  7319. local cr=effects:Crown(.1, cf(bl.Position)*cf(0,-3,0), 1, .25, 'Pearl',{Material='Neon'},.05)
  7320. local cr2=effects:Ring(.1, cf(bl.Position)*cf(0,-3.5,0), 2, .1, 'Pearl',true,{Material='Neon'},.05)
  7321. table.insert(grows,{{cr,cr2},vec3(.05,.005,.05)*3,ang(0,rad(1),0)})
  7322. tic=0
  7323. local neww=bl:Clone()
  7324. neww.Color=c3(1,1,1)
  7325. neww.Parent=script
  7326. local c=bl.CFrame
  7327. spawn(function()
  7328. for i = 0,3,.1 do
  7329. neww.Transparency=neww.Transparency+.0333
  7330. neww.Size=neww.Size:lerp(Vector3.new(2+i,2+i,2+i),.2)
  7331. neww.CFrame=c
  7332. lrs:wait()
  7333. end
  7334. neww:Destroy()
  7335. end)
  7336. end
  7337. end
  7338. end
  7339. ontouch:disconnect()
  7340. end)
  7341.  
  7342. snd(171137312,root,true)
  7343. snd(187747824,root,true)
  7344.  
  7345. spawn(function()
  7346. TweenJoints{
  7347. Style = 'Back',
  7348. Direction = 'Out',
  7349. Time = .1,
  7350. Right_Arm_ = CFrame.new(0.206047893, -0.21484524, 5.28991222e-06, 0.950437486, -0.310916156, 9.23871994e-07, 0.310916156, 0.950437367, 3.18055783e-07, -9.83476639e-07, -1.49011612e-08, 1.00000024),
  7351. Left_Arm_ = CFrame.new(0.333840013, 0.20000568, -0.701913893, 0.985808611, 0.140995234, 0.0911340564, -6.04101302e-08, 0.542838275, -0.839838743, -0.167884231, 0.827917576, 0.535135746),
  7352. Right_Leg_ = CFrame.new(0.406761706, 0.198160172, -0.827177048, 0.861753821, 0.0901806355, -0.499247611, 0, 0.984074771, 0.177756459, 0.507326901, -0.153182313, 0.84803021),
  7353. Left_Leg_ = CFrame.new(0.428323984, -0.535795689, -1.22677946, 0.797612667, 0.302806526, 0.521652818, -0.546524048, 0.728732705, 0.41263321, -0.255197555, -0.614223242, 0.74672997),
  7354. Head_ = CFrame.new(0.106018938, 0.00909304619, 0.160875916, 0.97453934, -0.0714026541, -0.212544471, 0.0874781013, 0.993896961, 0.0672045946, 0.206448734, -0.0840865001, 0.97483778),
  7355. Torso_ = CFrame.new(-0.0166940689, -0.179999828, -0.0304899216, 0.861753821, 0, 0.507326901, 0, 1, 0, -0.507326901, 0, 0.861753821),
  7356. }
  7357. end)
  7358. local bv=Instance.new('BodyVelocity',root)
  7359. bv.MaxForce=vec3(9e9,0,9e9)
  7360. bv.Velocity=Head.CFrame.lookVector*-13
  7361. game.Debris:AddItem(bv,.2)
  7362. for i = 0,1,.2 do
  7363. local ptc1 = effects:particle(.1,.5,3,'Block',Left_Leg.CFrame*cf(0,-1,0),{'Really black','Really black', 'Pearl'})
  7364. local ptc2 = effects:particle(.1,.5,3,'Block',Right_Leg.CFrame*cf(0,-1,0),{'Really black','Really black', 'Pearl'})
  7365. local ss=1.6
  7366. table.insert(grows,{{ptc1},vec3(.2,0,.2),ang(rad(10),rad(10),rad(10))})
  7367. table.insert(grows,{{ptc2},vec3(.2,.2,.2),ang(rad(10),rad(10),rad(10))})
  7368. lrs:wait()
  7369. end
  7370. lwait()
  7371. ds,dkd = false,false
  7372. delay(0,function()
  7373. canmine=true
  7374. end)
  7375. end
  7376. end)
  7377.  
  7378. local cangrab=true
  7379. local grabbed=false
  7380. BindKey('Ward (wip)', 'e', function(_,key)
  7381. if not cangrab then return end
  7382. ds,dkd = true,true
  7383. walkspd = 7
  7384. SetSwordTransparency(1,.1)
  7385. local done=false
  7386. local wld=nil
  7387. spawn(function()
  7388. repeat lrs:wait()
  7389. local strt = Right_Arm.CFrame
  7390. local rayray = Ray.new(strt.p, (strt.p - (strt * CFrame.new(0, 1, 0)).p).unit * 1)
  7391. local hit, pp = workspace:FindPartOnRayWithIgnoreList(rayray, {Character})
  7392. if hit then
  7393. local first=true
  7394. OnHumanoidFind(Right_Arm, cf(0,-1,0), function(proot,phum,body)
  7395. if hit:IsDescendantOf(body) and first then
  7396. first=false
  7397. cangrab=false
  7398. local olds={};
  7399. spawn(function()
  7400. local r
  7401. r=function(p)
  7402. for i,v in next, p:children() do
  7403. if v:IsA'BasePart' then
  7404. olds[v]=v.CustomPhysicalProperties
  7405. v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  7406. end
  7407. r(v)
  7408. end
  7409. end
  7410. r(body)
  7411. end)
  7412. grabbed=true
  7413. local dist=((Right_Arm.CFrame*cf(0,-1,0)).p-(Right_Arm.CFrame*Right_Arm.CFrame:toObjectSpace(hit.CFrame)).p).magnitude
  7414. wld=Weld(Right_Arm,proot,cf(0,-1.25,0)*ang(-rad(90),rad(180),0))
  7415. local ev
  7416. ev=mouse.KeyDown:connect(function(k)
  7417. if k==key then
  7418. game.Debris:AddItem(wld,0)
  7419. ev:disconnect()
  7420. end
  7421. end)
  7422. spawn(function()
  7423. while wld.Parent~= nil and lrs:wait() do
  7424. phum.PlatformStand=true
  7425. end
  7426. grabbed=false
  7427. cangrab=true
  7428. for i,v in next, olds do
  7429. pcall(function()
  7430. i.CustomPhysicalProperties=v
  7431. end)
  7432. end
  7433. end)
  7434. end
  7435. end, 10, true)
  7436. end
  7437. until done or grabbed
  7438. end)
  7439. TweenJoints{
  7440. Style = 'Linear',
  7441. Direction = 'Out',
  7442. Time = .2,
  7443. Right_Arm_ = CFrame.new(0.829519689, 0.381413698, -1.57987428, 0.374878913, -0.927073777, 4.05236804e-08, -0.00280904677, -0.00113593217, -0.99999547, 0.927069545, 0.374877214, -0.00303003029),
  7444. Left_Arm_ = CFrame.new(-0.519713402, -0.873377562, -0.158320561, 0.739482224, 0.668240309, 0.0813785493, -0.665690601, 0.74387598, -0.0592175536, -0.100107282, -0.0103825331, 0.994922578),
  7445. Right_Leg_ = CFrame.new(3.68356705e-05, -0.0779465437, -0.447928578, 1.00000942, -2.08616257e-07, 2.38418579e-07, -1.59139745e-07, 0.975493431, 0.220059082, -7.74860382e-07, -0.22006014, 0.97549367),
  7446. Left_Leg_ = CFrame.new(0.246763051, -0.165307999, 5.43892384e-06, 0.97661984, 0.21497333, 1.34110451e-06, -0.21497333, 0.976619899, -5.21395123e-07, -1.43051147e-06, 2.16066837e-07, 1),
  7447. Head_ = CFrame.new(-0.175744906, 0.0174450874, 0.14690578, 0.648833036, 0.1171887, -0.75185281, -0.00230547017, 0.988368213, 0.152063951, 0.76092732, -0.0969307423, 0.641555905),
  7448. Torso_ = CFrame.new(-0.00162887573, -0.00289463997, 0.00579071045, 0.374878913, -0.0028091569, 0.927069545, 0.00280869659, 0.999994338, 0.00189410418, -0.92706871, 0.00189380953, 0.374884337),
  7449. }
  7450. lwait(.35)
  7451. done=true
  7452. SetSwordTransparency(0,.1)
  7453. ds,dkd = false,false
  7454. end)
  7455.  
  7456. BindKey('Reap (Buggy, wip)', 'z', function()
  7457. local actual,floor = CheckIfLanded(8)
  7458. if actual then
  7459. ds,dkd = true,true
  7460. local og=root.CFrame.Y
  7461. walkspd=0
  7462. spawn(function()
  7463. FadeSword'Out'
  7464. end)
  7465. TweenJoints{
  7466. Style = 'Quint',
  7467. Direction = 'InOut',
  7468. Time = 1.35,
  7469. Right_Arm_ = CFrame.new(-0.00888395309, 0.069206208, 0.582951427, 0.959281623, -0.28070721, 0.0313441679, 0.177029952, 0.683999717, 0.707676709, -0.220087633, -0.673311114, 0.705845058),
  7470. Left_Arm_ = CFrame.new(-0.0156921148, 0.0312868953, 0.542969108, 0.965948522, 0.248420492, 0.0723837912, -0.223978251, 0.662671089, 0.714635015, 0.129563898, -0.706504285, 0.695749283),
  7471. Right_Leg_ = CFrame.new(4.19616699e-05, 0.12218833, -0.250127792, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 0.999999881),
  7472. Left_Leg_ = CFrame.new(4.19616699e-05, 0.867762089, 0.3243047, 1, 0, 0, 0, 0.664999247, -0.746844232, 0, 0.746844351, 0.664999068),
  7473. Head_ = CFrame.new(-4.48642386e-05, 0.00383925438, 0.162792355, 0.999999106, 8.84015171e-05, -0.000454272929, -2.1958258e-06, 0.982483029, 0.186356097, 0.000462789234, -0.186356962, 0.982482672),
  7474. Torso_ = CFrame.new(0, -0.9390347, -0.399072647, 1, -6.54393304e-08, -8.86936391e-08, -1.42846829e-07, 0.599315822, 0.800512612, -9.31322575e-10, -0.800511897, 0.599315286),
  7475. }
  7476. ExpellWithForce(root.CFrame*cf(0,-3,0), 15, -30, function(Part, Distance)
  7477. end, false, {workspace:FindFirstChild'Base', Character})
  7478. local cr2=effects:Ring(0, cf((Left_Leg.CFrame*cf(0,-.5,0)).p), 10, 2, tostring(floor.BrickColor),false,{Material=floor.Material},.15)
  7479. table.insert(grows,{{cr2},vec3(2,0,2)*4,ang(0,0,0)})
  7480. snd(875882348,root,true)
  7481. snd(875881806,root,true)
  7482. local bv=Instance.new('BodyVelocity',root)
  7483. bv.MaxForce=vec3(0,9e9,0)
  7484. bv.Velocity=vec3(0,300,0)
  7485. game.Debris:AddItem(bv,.1)
  7486. local pos=nil
  7487. local can=false
  7488. local elligable=false
  7489. local done=false
  7490. local failed=false
  7491. local tem=0
  7492. spawn(function()
  7493. repeat lrs:wait()
  7494. if root.CFrame.Y > og+15 then
  7495. elligable=true
  7496. end
  7497. tem=tem+1
  7498. if tem>300 then
  7499. done=true
  7500. print'rip'
  7501. failed=true
  7502. end
  7503. until torso.Velocity.Y < 2 or tem>300
  7504. done=true
  7505. if root.CFrame.Y > og+30 then
  7506. can=true
  7507. pos=Instance.new('BodyPosition',root)
  7508. pos.MaxForce=vec3(9e9,9e9,9e9)
  7509. pos.Position=root.Position
  7510. end
  7511. end)
  7512. TweenJoints{
  7513. Style = 'Linear',
  7514. Direction = 'InOut',
  7515. Time = .05,
  7516. Right_Arm_ = CFrame.new(0.0626385212, -0.413276285, -0.00104331132, 0.959853292, -0.280451715, -0.00532685313, 0.280474722, 0.959851921, 0.00428472133, 0.00391133083, -0.00560673419, 0.999975801),
  7517. Left_Arm_ = CFrame.new(-0.0532609224, -0.383139998, 0.00133582728, 0.96501404, 0.26220125, 0.000218151894, -0.26220125, 0.96501267, 0.00172606739, 0.000242053007, -0.00172287039, 0.999997616),
  7518. Right_Leg_ = CFrame.new(5.21838665e-05, 0.485050678, -1.44800735, 1, 3.20676759e-06, 6.05589264e-07, -3.39197777e-06, 0.894448161, 0.447186589, 8.90321246e-07, -0.447186172, 0.894447386),
  7519. Left_Leg_ = CFrame.new(4.14550304e-05, 0.00266909599, 3.84132045e-06, 1, -2.5306602e-07, -1.70181491e-09, -2.5306602e-07, 1, 1.3737008e-08, -1.70181491e-09, 1.3737008e-08, 0.999998212),
  7520. Head_ = CFrame.new(0.000245878298, 0.0850384235, -0.496386617, 0.999999881, -0.000141030672, -0.000435515656, -1.17793134e-05, 0.943306148, -0.331931502, 0.000457633898, 0.33193022, 0.943304479),
  7521. Torso_ = CFrame.new(0, -0.00287747383, 0, 1, -2.5306602e-07, -1.70181491e-09, -2.5306602e-07, 1, 1.3737008e-08, -1.70181491e-09, 1.3737008e-08, 0.999998212),
  7522. }
  7523. repeat lrs:wait() until elligable or failed
  7524. if failed then
  7525. print'oof1'
  7526. FadeSword'In'
  7527. ds,dkd = false,false
  7528. game.Debris:AddItem(pos,.1)
  7529. return
  7530. end
  7531. snd(610359515,root,true,{Pitch=.75,Volume=3})
  7532. spawn(function()
  7533. TweenJoints{
  7534. Style = 'Quint',
  7535. Direction = 'InOut',
  7536. Time = 1,
  7537. Right_Arm_ = CFrame.new(0.116997018, 1.7438519, -0.714151025, 0.0453877375, 0.961275458, -0.271829873, -0.988650799, 0.0042135613, -0.150176093, -0.143214807, 0.275561094, 0.950555861),
  7538. Left_Arm_ = CFrame.new(-1.62301254, -1.07525158, 0.624707758, 0.00382485241, 0.935074449, 0.354432911, -0.999991775, 0.00296776183, 0.00296173617, 0.00171759352, -0.354441464, 0.935076714),
  7539. Right_Leg_ = CFrame.new(4.78625298e-05, 0.171154499, -0.586177945, 1.00000024, -8.94069672e-08, -9.53674316e-07, 3.04044676e-07, 0.965367615, 0.260893703, 8.20373486e-07, -0.260893673, 0.965367556),
  7540. Left_Leg_ = CFrame.new(0.432845116, -0.0829806328, -0.0325477421, 0.932780087, 0.35875231, 0.0347830057, -0.360428244, 0.928439498, 0.0900038332, -3.56324017e-06, -0.0964903384, 0.995342135),
  7541. Head_ = CFrame.new(4.07677144e-05, 8.82148743e-06, -0.0030586943, 0.358160794, -2.70083547e-06, -0.933659971, -0.00284077972, 0.99999541, -0.00109264627, 0.933655679, 0.00304366648, 0.358159155),
  7542. Torso_ = CFrame.new(0.0228919983, -0.487380266, -0.492824554, 0.390342087, 0.0503119566, 0.919294178, -0.920665801, 0.0243561249, 0.389591277, -0.00278935931, -0.998435676, 0.0558276772),
  7543. }
  7544. end)
  7545. local ball = NewPart(script)
  7546. ball.Parent=nil
  7547. ball.CFrame=Left_Arm.CFrame*cf(0,-1,0)
  7548. ball.Material='Neon'
  7549. ball.Size=vec3(1,1,1)
  7550. ball.BrickColor=bc'Alder'
  7551. local msh=Instance.new('SpecialMesh',ball)
  7552. msh.Scale=vec3(1,1,1)
  7553. msh.MeshType='Sphere'
  7554. ball.Parent=script
  7555. local t=0
  7556. snd(782199941,root,true)
  7557. repeat lrs:wait()
  7558. t=t+1
  7559. ball.CFrame=Left_Arm.CFrame*cf(0,-1,0)
  7560. Tween(msh,.15,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=msh.Scale+vec3(1,1,1)})
  7561. if t>4 then
  7562. local bl = NewPart(script)
  7563. bl.Parent=nil
  7564. bl.CFrame=Left_Arm.CFrame*cf(rand(-3,3),-1+rand(-3,3),rand(-3,3))
  7565. bl.Material='Neon'
  7566. bl.Size=vec3(2,2,2)
  7567. bl.BrickColor=math.random()>.5 and bc'Alder' or bc'Pearl'
  7568. local msh2=Instance.new('SpecialMesh',bl)
  7569. msh2.MeshType='Sphere'
  7570. msh2.Scale=vec3(1,1,1)
  7571. bl.Parent=script
  7572. Tween(bl,.5,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{CFrame=Left_Arm.CFrame*cf(0,-1,0)})
  7573. Tween(msh2,.5,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=vec3(0,0,0)})
  7574. delay(.5, function()
  7575. bl:Destroy()
  7576. end)
  7577. end
  7578. until done
  7579. if not can or failed then
  7580. print'oof2'
  7581. FadeSword'In'
  7582. ds,dkd = false,false
  7583. game.Debris:AddItem(pos,.1)
  7584. game.Debris:AddItem(ball,.1)
  7585. return
  7586. end
  7587. FadeSword'In'
  7588. local beam = NewPart(script)
  7589. beam.Parent=nil
  7590. beam.Size=vec3(5,1,5)
  7591. beam.CFrame=Left_Arm.CFrame*cf(0,-1,0)
  7592. beam.Material='Neon'
  7593. beam.BrickColor=bc'Alder'
  7594. local cm = Instance.new('CylinderMesh',beam)
  7595. beam.Parent=script
  7596. local strt = root.CFrame
  7597. local rayray = Ray.new(strt.p, (strt.p - (strt * CFrame.new(0, 1, 0)).p).unit * 9e9)
  7598. local hit, pp = workspace:FindPartOnRayWithIgnoreList(rayray, {Character})
  7599. pos.D=0
  7600. pos.P=3e6
  7601. snd(763717897,root,true)
  7602. snd(395184130,root,true)
  7603. snd(782353117,root,true)
  7604. local tii=1
  7605. Tween(cm,tii,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=vec3(3,2048,3)})
  7606. Tween(beam,tii,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{CFrame=Left_Arm.CFrame*cf(0,-1025,0)})
  7607. Tween(pos,tii,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Position=pp+vec3(0,10,0)})
  7608. lwait(tii)
  7609. local ptc1 = effects:particle(.1,40,7,'Block',cf(pp+vec3(0,5,0)),{'Alder', 'Pearl'})
  7610. local ptc2 = effects:particle(.1,40,15,'Cylinder',cf(pp+vec3(0,5,0)),{'Alder', 'Pearl'})
  7611. for i,v in next, ptc1 do v.Material='Neon' end
  7612. for i,v in next, ptc2 do v.Material='Neon' end
  7613. table.insert(grows,{{ptc1},vec3(6,6,6),ang(rad(13),rad(13),rad(13))})
  7614. table.insert(grows,{{ptc2},vec3(-4,4,-4),ang(rad(13),rad(13),rad(13))})
  7615. lrs:wait()
  7616. beam:Destroy()
  7617. ball:Destroy()
  7618. OnHumanoidFind(root, cf(0,0,0), function(proot,phum,body)
  7619. local dmg = math.random(35,50)
  7620. phum.Health = phum.Health - dmg
  7621. pcall(function()
  7622. showDmg(body, Character, dmg, {Rod=false,RodTrans=0,Crit=math.random()>.9})
  7623. end)
  7624. phum.PlatformStand=proot:GetMass()<4 and true or false
  7625. delay(1,function()
  7626. phum.PlatformStand=false
  7627. end)
  7628. end, 30, true)
  7629. ExpellWithForce(cf(pp), 25, 150, function(Part, Distance)
  7630. end, false, {workspace:FindFirstChild'Base', Character})
  7631. local cr=effects:Crown(2, cf(pp+vec3(0,5,0)), 5, 4, tostring(floor.BrickColor),{Material=floor.Material},.2)
  7632. local cr2=effects:Ring(2, cf(pp+vec3(0,5,0)), 10, 5, tostring(floor.BrickColor),false,{Material=floor.Material},.15)
  7633. table.insert(grows,{{cr},vec3(4,.1,4)*4,ang(0,rad(3),0)})
  7634. table.insert(grows,{{cr2},vec3(2,0,2)*4,ang(0,0,0)})
  7635. snd(875881806,root,true)
  7636. snd(782353260,root,true)
  7637. snd(284228088,root,true,{Volume=2})
  7638. snd(782200047,root,true)
  7639. snd(782202168,root,true)
  7640. effects:Debris(false, 2.5, 7, rand(10,20), pp+vec3(0,2,0), .05,{50,25})
  7641. effects:BlastRad(false, 15, 3, 6, pp+vec3(0,2,0), .05)
  7642. ds,dkd = false,false
  7643. hum.PlatformStand=false
  7644. --[[TweenJoints{
  7645. Style = 'Quint',
  7646. Direction = 'Out',
  7647. Time = .5,
  7648. Right_Arm_ = cf(0,0,0),
  7649. Left_Arm_ = cf(0,0,0),
  7650. Right_Leg_ = cf(0,0,0),
  7651. Left_Leg_ = cf(0,0,0),
  7652. Head_ = cf(0,0,0),
  7653. Torso_ = cf(0,0,0),
  7654. }--]]
  7655. game.Debris:AddItem(pos,.5)
  7656. end
  7657. end)
  7658.  
  7659. local clsr=true
  7660. BindKey('Incinerate', 'q', function()
  7661. if not clsr then return end
  7662. clsr=false
  7663. ds,dkd = true,true
  7664. walkspd=0
  7665. FadeSword'Out'
  7666. spawn(function()
  7667. TweenJoints{
  7668. Style = 'Quint',
  7669. Direction = 'Out',
  7670. Time = .45,
  7671. Right_Arm_ = CFrame.new(-0.231867522, 0.277298152, 0.793980241, 0.274041951, 0.959314048, -0.0679790825, 0.0029127209, -0.071512714, -0.997437716, -0.961713552, 0.273141831, -0.0223916993),
  7672. Left_Arm_ = CFrame.new(-0.503219903, 0.412600666, -1.63814199, 0.586037755, 0.81028372, -3.54186263e-08, 0.00245406968, -0.00177494972, -0.99999547, -0.810280085, 0.586035132, -0.00302868057),
  7673. Right_Leg_ = CFrame.new(-0.1793679, -0.194476008, -1.1458993e-05, 0.983692706, -0.17985943, 2.98023224e-08, 0.179859221, 0.983697474, -7.10133463e-09, -2.98023224e-08, -1.49011612e-08, 1.0000062),
  7674. Left_Leg_ = CFrame.new(0.103276968, -0.0279527903, -0.087505281, 0.983025551, 0.0558601618, 0.174757063, -0.0549976081, 0.998438716, -0.00977835804, -0.17503038, 1.13807619e-06, 0.98456347),
  7675. Head_ = CFrame.new(4.57763672e-05, 3.93390656e-06, -0.00303999148, 0.586037755, 0, 0.81028372, 0.00245406968, 0.99999547, -0.00177490606, -0.810280085, 0.00302865496, 0.586035132),
  7676. Torso_ = CFrame.new(0.368801117, -0.00288367271, 0.00219345093, 0.586037755, 0.00245395955, -0.810280085, -0.00245499588, 0.999996245, 0.00125324936, 0.81027925, 0.00125479547, 0.586041093),
  7677. }
  7678. end)
  7679. for i=0,1,.05 do
  7680. FacePos'mouse'
  7681. lrs:wait()
  7682. end
  7683.  
  7684. local beam = NewPart(script)
  7685. beam.Parent=nil
  7686. beam.CFrame=Right_Arm.CFrame*cf(0,-1,0)
  7687. beam.Material='Neon'
  7688. beam.BrickColor=bc'Alder'
  7689. Instance.new('CylinderMesh',beam).Scale=Vector3.new(.05,1,.05)
  7690. beam.Parent=script
  7691. local canfrag=true
  7692. spawn(function()
  7693. while beam.Parent ~= nil and lwait(.25) do
  7694. canfrag=true
  7695. end
  7696. end)
  7697. snd(588734767,root,true,{Pitch=1.25})
  7698. snd(588736245,root,true)
  7699. local hums,bps = {},{};
  7700. local ignore={Character};
  7701. local replace
  7702. for i=0, 2048, 50 do
  7703. FacePos'mouse'
  7704. local StartPos = Left_Arm.CFrame*cf(0,-1,0)
  7705. local Ray = Ray.new(StartPos.p, (StartPos.p - (StartPos * CFrame.new(0, 1, 0)).p).unit * i)
  7706. local Hit, Pos = workspace:FindPartOnRayWithIgnoreList(Ray, ignore)
  7707. local dist = Hit and not Hit:IsDescendantOf(Character) and (Pos-StartPos.p).magnitude or i
  7708. beam.Size=vec3(.85,dist,1)
  7709. beam.CFrame=StartPos*cf(0,-(dist/2),0)
  7710. if Hit then
  7711. local ptc2 = effects:particle(.1,2,1,'Block',cf(Pos),{'Really black',tostring(Hit.BrickColor), 'Pearl'})
  7712. for i,v in next, ptc2 do v.Material='Neon' end
  7713. table.insert(grows,{{ptc2},vec3(1,0,1),ang(rad(10),rad(10),rad(10))})
  7714. if Hit and (Hit.Parent:FindFirstChildOfClass'Humanoid' or Hit.Parent.Parent:FindFirstChildOfClass'Humanoid') and #hums < 5 then
  7715. if Hit:GetMass()<=4 then
  7716. local bp = Instance.new('BodyPosition', Hit)
  7717. game.Debris:AddItem(bp,10)
  7718. local dist = (StartPos.p-Hit.Position).magnitude
  7719. bp.Position=(StartPos*cf(0,-dist,1)).p
  7720. spawn(function()
  7721. while lwait() and bp.Parent ~= nil do
  7722. local pos = ((replace or Left_Arm.CFrame)*cf(0,-1-dist,0)).p
  7723. bp.Position=pos
  7724. end
  7725. end)
  7726. table.insert(bps, bp)
  7727. end
  7728. local phum = Hit.Parent:FindFirstChildOfClass'Humanoid' or Hit.Parent.Parent:FindFirstChildOfClass'Humanoid' or Hit.Parent.Parent.Parent:FindFirstChildOfClass'Humanoid'
  7729. table.insert(ignore,phum.Parent)
  7730. hums[phum]=true
  7731. end
  7732. end
  7733. lrs:wait()
  7734. end
  7735. local pos = Left_Arm.CFrame*cf(0,-1,0)
  7736. ds,dkd = false,false
  7737. replace=Left_Arm.CFrame
  7738. FadeSword'In'
  7739.  
  7740. local b2 = beam:Clone()
  7741. b2.Mesh.Scale=vec3(2,1,2)
  7742. b2.Transparency=.8
  7743. local b3 = beam:Clone()
  7744. b3.Mesh.Scale=vec3(.3,1,.3)
  7745. b3.Transparency=1
  7746. b2.Parent,b3.Parent=script,script
  7747.  
  7748. Tween(b2.Mesh,.4,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Scale=vec3(.45,1,.45)})
  7749. Tween(b2,.4,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency=0})
  7750. Tween(b3.Mesh,.4,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Scale=vec3(3,1,3)})
  7751. Tween(b3,.4,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency=.85})
  7752. snd(763718573,root,true)
  7753. lwait(.7)
  7754. --b2:Destroy();b3:Destroy()
  7755. snd(763717897, root, true)
  7756. snd(782354294, root,true)
  7757.  
  7758. for i = 1, 6, 1 do
  7759. local effected={};
  7760. for i,v in next, hums do
  7761. local can=true
  7762. for a,b in next, effected do
  7763. if b==i then
  7764. can=false
  7765. end
  7766. end
  7767. if can then
  7768. for a,b in next, bps do
  7769. if b:IsDescendantOf(i.Parent) and (b.Position-i.Parent:WaitForChild'Head'.Position).magnitude < 6 then
  7770. table.insert(effected,i)
  7771. local dmgg = rand(2, 4)*1
  7772. i:TakeDamage(dmgg)
  7773. showDmg(i.Parent, Character, dmgg, {Rod=false,RodTrans=0,Crit=rand()>.5})
  7774. spawn(function()
  7775. snd(588694531,i.Parent:WaitForChild'Head',true)
  7776. end)
  7777. end
  7778. end
  7779. end
  7780. end
  7781. local b4 = beam:Clone()
  7782. b4.Mesh.Scale=vec3(2,1,2)
  7783. b4.Transparency=.2
  7784. b4.Parent=script
  7785.  
  7786. local cone = MeshEffects.Cone:Clone()
  7787. cone.CFrame = pos*cf(0,1.25,0)
  7788. cone.Anchored=true
  7789. cone.BrickColor=bc'Pearl'
  7790. cone.CanCollide=false
  7791. cone.Material='Neon'
  7792. cone.Transparency=.2
  7793. cone.Parent=script
  7794. Tween(cone,.65,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency = 1, Size=vec3(15,4,15)/2.5})
  7795.  
  7796. local cone2 = MeshEffects.Cone:Clone()
  7797. cone2.CFrame = pos*cf(0,1.5,0)
  7798. cone2.Anchored=true
  7799. cone2.BrickColor=bc'Alder'
  7800. cone2.CanCollide=false
  7801. cone2.Material='Neon'
  7802. cone2.Transparency=.2
  7803. cone2.Parent=script
  7804. Tween(cone2,.65,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency = 1, Size=vec3(15,4,15)/1.25})
  7805.  
  7806. Tween(b4.Mesh,.65,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Scale=vec3(15,1,15)})
  7807. Tween(b4,.65,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,{Transparency=1})
  7808. delay(.65,function()
  7809. b4:Destroy();cone:Destroy()
  7810. end)
  7811. lwait(.6)
  7812. end
  7813. b2:Destroy();b3:Destroy()
  7814. for i,v in next, bps do
  7815. v:Destroy()
  7816. end
  7817. delay(5,function()
  7818. clsr=true
  7819. end)
  7820. beam:Destroy()
  7821. end)
  7822.  
  7823. BindKey('Buster', 'r', function(_,k)
  7824. dkd,ds=true,true
  7825. local fire=false
  7826. local ev
  7827. walkspd=0
  7828. ev=mouse.KeyUp:connect(function(key)
  7829. if k==key then
  7830. fire=true
  7831. ev:disconnect()
  7832. end
  7833. end)
  7834. walkspd=0
  7835. local tweened=false
  7836. spawn(function()
  7837. TweenC0(shw, cf(0,0,0)*ang(0,rad(45),rad(70)), 'Quint', 'Out', 1)
  7838. TweenJoints{
  7839. Style = 'Quint',
  7840. Direction = 'Out',
  7841. Time = 1,
  7842. Right_Arm_ = CFrame.new(0.535389304, 0.15619868, -1.28274536, 0.680957854, -0.702149034, 0.208047509, 0.284585983, -0.00804074015, -0.958620548, 0.674766183, 0.711983562, 0.19434683),
  7843. Left_Arm_ = CFrame.new(-1.80736709, 0.506341934, -1.62024987, 0.117187969, 0.993109763, -4.3410207e-08, 0, -4.37113883e-08, -1, -0.993109763, 0.117187969, -5.12244869e-09),
  7844. Right_Leg_ = CFrame.new(-6.61611557e-06, -0.905116677, -1.40443158, 1, 7.5250864e-07, -5.30853868e-06, 4.43911813e-06, 0.440601975, 0.897702694, 3.02493572e-06, -0.897702754, 0.440601975),
  7845. Left_Leg_ = CFrame.new(-0.244986176, 0.385205865, -0.7590608, 0.939282835, -0.0607775971, 0.337720811, -2.25848567e-07, 0.98419106, 0.177119762, -0.343143851, -0.166365743, 0.924440086),
  7846. Head_ = CFrame.new(4.76837158e-07, 0, -2.86102295e-06, 0.117187969, 0, 0.993109763, 0, 1, 0, -0.993109763, 0, 0.117187969),
  7847. Torso_ = CFrame.new(0.0551037788, -0.53477335, -1.43051147e-06, 0.117187969, 0, -0.993109763, 0, 1, 0, 0.993109763, 0, 0.117187969),
  7848. }
  7849. tweened=true
  7850. end)
  7851. repeat lrs:wait() FacePos'mouse'
  7852. until fire and tweened
  7853. dkd,ds=false,false
  7854. local to = mouse.Hit.p
  7855. local from = (Left_Arm.CFrame*cf(0,-1.5,1.25)).p
  7856. local Arc = CalculateArc(.5, from, to)
  7857. --local Segment = DisplayArc(Arc)
  7858. local Ball = NewObject('Part', script, {Size = vec3(2.5,2.5,2.5), Material='Neon', Color=bc'Alder'.Color, CFrame=cf(Arc[1]), Shape = 'Ball'})
  7859. local msh=Instance.new('SpecialMesh',Ball)
  7860. msh.MeshType='Sphere'
  7861. msh.Scale=vec3(1,1,1)
  7862. local loop=snd(228343433,Ball,true,{Pitch=2,Volume=3,Looped=true})
  7863. snd(231917750,root,true,{Pitch=.9})
  7864. local finished=false
  7865. spawn(function()
  7866. local t=0
  7867. local lcf=Arc[1]
  7868. repeat lrs:wait()
  7869. t=t+1
  7870. Tween(msh,.15,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=msh.Scale.Y < 5 and msh.Scale+vec3(1,1,1) or msh.Scale})
  7871. if t > 10 then
  7872. t=0
  7873. local ri=effects:Ring(.5, cf(lcf,Ball.Position)*ang(rad(90),0,0), 1, .5, 'Alder', true,{Material='Neon'},.15)
  7874. table.insert(grows,{{ri},vec3(.15,0,.15)*4,ang(0,0,0)})
  7875. end
  7876. lcf=Ball.Position
  7877. spawn(function()
  7878. local bl = NewPart(script)
  7879. bl.Parent=nil
  7880. local random = vec3(rand(-3,3),rand(-3,3),rand(-3,3))
  7881. bl.CFrame=Ball.CFrame*cf(random*(msh.Scale.Y/2))
  7882. bl.Material='Neon'
  7883. bl.Size=vec3(1,1,1)
  7884. bl.BrickColor=math.random()>.5 and bc'Alder' or bc'Pearl'
  7885. local msh2=Instance.new('SpecialMesh',bl)
  7886. msh2.MeshType='Sphere'
  7887. msh2.Scale=msh.Scale/2
  7888. bl.Parent=script
  7889. Tween(bl,.5,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{CFrame=Ball.CFrame})
  7890. Tween(msh2,.5,Enum.EasingStyle.Linear,Enum.EasingDirection.InOut,{Scale=vec3(0,0,0)})
  7891. delay(.5, function()
  7892. bl:Destroy()
  7893. end)
  7894. end)
  7895. until finished
  7896. end)
  7897. for i,v in next, Arc do
  7898. Tween(Ball, .025, 'Linear', 'InOut', {CFrame = cf(v)})
  7899. lrs:wait()
  7900. end
  7901. finished=true
  7902. Ball.Transparency=1
  7903. loop:Stop()
  7904. local strt = cf(to)*cf(0,3,0)
  7905. local rayray = Ray.new(strt.p, (strt.p - (strt * CFrame.new(0, 1, 0)).p).unit * 10)
  7906. local hit, pp = workspace:FindPartOnRayWithIgnoreList(rayray, {Character})
  7907. game.Debris:AddItem(Ball,3)
  7908. snd(610359515,Ball,true)
  7909. local ptc1 = effects:particle(.1,.5,5,'Block', cf(to),{'Alder','Pearl'})
  7910. local ptc2 = effects:particle(.1,.5,5,'Cylinder',cf(to),{'Alder', 'Pearl'})
  7911. local ss=10
  7912. for i,v in next, ptc1 do v.Material = 'Neon' Tween(v, .5, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, {Size=Vector3.new(ss,ss,ss)}) end
  7913. for i,v in next, ptc2 do v.Material='Neon' Tween(v, .5, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, {Size=Vector3.new(ss,ss,ss)}) end
  7914. OnHumanoidFind(Ball,cf(0,0,0), function(proot,phum,body)
  7915. local dmg = math.random(8,16)
  7916. phum.Health = phum.Health - dmg
  7917. pcall(function()
  7918. showDmg(body, Character, dmg, {Rod=false,RodTrans=0,Crit=false})
  7919. end)
  7920. phum.PlatformStand=proot:GetMass()<4 and true or false
  7921. delay(.25,function()
  7922. phum.PlatformStand=false
  7923. end)
  7924. end, 20, true)
  7925. ExpellWithForce(strt, 10, 15, function(Part, Distance)
  7926. end, false, {workspace:FindFirstChild'Base', Character})
  7927. local ri=effects:Ring(.5, cf(pp+vec3(0,0,0)), 3, 2, tostring(hit ~= nil and hit.BrickColor or 'Pearl'),false,{Material=hit ~= nil and hit.Material or 'Neon'},.15)
  7928. local cr=effects:Crown(.5, cf(pp+vec3(0,0,0)), 7, 4, tostring(hit ~= nil and hit.BrickColor or 'Pearl'),{Material=hit ~= nil and hit.Material or 'Neon'},.15)
  7929. table.insert(grows,{{ri},vec3(.5,0,.5)*4,ang(0,0,0)})
  7930. table.insert(grows,{{cr},vec3(.5,0,.5)*4,ang(0,rad(3),0)})
  7931. snd(782202168,Ball,true)
  7932. snd(228343412,Ball,true)
  7933. snd(231917742,Ball,true)
  7934. effects:Debris(true, 2.5, 2, rand(5,10), to, .005,{50,25})
  7935. --effects:BlastRad(true, 15, 3, 5, to, .05)
  7936. end)
  7937.  
  7938. function Attack4()
  7939. dkd,ds = true,true
  7940. TweenJoints{
  7941. Style = 'Quint',
  7942. Direction = 'Out',
  7943. Time = .5,
  7944. Right_Arm_ = cf(0,0,0),
  7945. Left_Arm_ = cf(0,0,0),
  7946. Right_Leg_ = cf(0,0,0),
  7947. Left_Leg_ = cf(0,0,0),
  7948. Head_ = cf(0,0,0),
  7949. Torso_ = cf(0,0,0),
  7950. }
  7951. TweenJoints{
  7952. Style = 'Quint',
  7953. Direction = 'Out',
  7954. Time = .5,
  7955. Right_Arm_ = cf(0,0,0),
  7956. Left_Arm_ = cf(0,0,0),
  7957. Right_Leg_ = cf(0,0,0),
  7958. Left_Leg_ = cf(0,0,0),
  7959. Head_ = cf(0,0,0),
  7960. Torso_ = cf(0,0,0),
  7961. }
  7962. dkd,ds = false,false
  7963. end
  7964.  
  7965. function Attack2()
  7966. dkd,ds = true,true
  7967. TweenJoints{
  7968. Style = 'Quint',
  7969. Direction = 'Out',
  7970. Time = .5,
  7971. Right_Arm_ = cf(0,0,0),
  7972. Left_Arm_ = cf(0,0,0),
  7973. Right_Leg_ = cf(0,0,0),
  7974. Left_Leg_ = cf(0,0,0),
  7975. Head_ = cf(0,0,0),
  7976. Torso_ = cf(0,0,0),
  7977. }
  7978. TweenJoints{
  7979. Style = 'Quint',
  7980. Direction = 'Out',
  7981. Time = .5,
  7982. Right_Arm_ = cf(0,0,0),
  7983. Left_Arm_ = cf(0,0,0),
  7984. Right_Leg_ = cf(0,0,0),
  7985. Left_Leg_ = cf(0,0,0),
  7986. Head_ = cf(0,0,0),
  7987. Torso_ = cf(0,0,0),
  7988. }
  7989. dkd,ds = false,false
  7990. end
  7991.  
  7992. function Attack3()
  7993. dkd,ds = true,true
  7994. TweenJoints{
  7995. Style = 'Quint',
  7996. Direction = 'Out',
  7997. Time = .5,
  7998. Right_Arm_ = cf(0,0,0),
  7999. Left_Arm_ = cf(0,0,0),
  8000. Right_Leg_ = cf(0,0,0),
  8001. Left_Leg_ = cf(0,0,0),
  8002. Head_ = cf(0,0,0),
  8003. Torso_ = cf(0,0,0),
  8004. }
  8005. TweenJoints{
  8006. Style = 'Quint',
  8007. Direction = 'Out',
  8008. Time = .5,
  8009. Right_Arm_ = cf(0,0,0),
  8010. Left_Arm_ = cf(0,0,0),
  8011. Right_Leg_ = cf(0,0,0),
  8012. Left_Leg_ = cf(0,0,0),
  8013. Head_ = cf(0,0,0),
  8014. Torso_ = cf(0,0,0),
  8015. }
  8016. dkd,ds = false,false
  8017. end
  8018.  
  8019. function Attack1()
  8020. dkd,ds = true,true
  8021. TweenC0(shw, ang(0,-rad(180),rad(135)), 'Linear', 'Out', .05)
  8022. TweenJoints{
  8023. Style = 'Quint',
  8024. Direction = 'Out',
  8025. Time = .15,
  8026. Right_Arm_ = CFrame.new(0.480937481, -0.623095155, 0.207057506, 0.829737663, -0.543632448, -0.126478553, 0.558150053, 0.808969557, 0.184476554, 0.00202971697, -0.223660082, 0.974669456),
  8027. Left_Arm_ = CFrame.new(-0.223258257, -0.312400937, 0.592300892, 0.647217274, -0.554238617, -0.523383737, -0.253734976, 0.490803808, -0.833504915, 0.718839288, 0.672259688, 0.177026629),
  8028. Right_Leg_ = CFrame.new(5.14984131e-05, -0.0270439386, -0.340497971, 1, 7.4505806e-09, -8.94069672e-08, -5.12227416e-09, 0.98540169, 0.170247093, -2.98023224e-08, -0.170247093, 0.985401392),
  8029. Left_Leg_ = CFrame.new(-0.0214843154, 0.00267851353, -0.145123824, 0.956951261, -1.0477379e-09, 0.290260822, 1.86264515e-09, 1.00000489, -9.42964107e-09, -0.290262878, -9.54605639e-09, 0.956948757),
  8030. Head_ = CFrame.new(3.81469727e-05, 4.17232513e-06, -0.00303199375, 0.584618986, 0, 0.811308026, 0.00245903619, 0.99999547, -0.00177195237, -0.811304271, 0.0030309523, 0.584616244),
  8031. Torso_ = CFrame.new(0.00667190552, -0.00287604332, -0.000377655029, 0.584618986, 0.00245892606, -0.811304271, -0.00245809881, 0.999996245, 0.0012598458, 0.811303556, 0.00125774904, 0.584622204),
  8032. }
  8033. TweenC0(shw, ang(0,-rad(180),-rad(135)), 'Linear', 'Out', .4)
  8034. snd(588693156,root,true)
  8035. TweenJoints{
  8036. Style = 'Linear',
  8037. Direction = 'Out',
  8038. Time = .15,
  8039. Right_Arm_ = CFrame.new(1.22454464, -1.18362045, -0.306676567, 0.0752486736, -0.146807969, 0.98629868, 0.997097671, 0.02256638, -0.0727136135, -0.0115822516, 0.988907576, 0.148080021),
  8040. Left_Arm_ = CFrame.new(-0.516955376, -0.73023963, -0.855697036, 0.655881882, 0.60047102, 0.457442462, -0.493600518, 0.799645245, -0.341944873, -0.571119547, -0.00151839852, 0.820865571),
  8041. Right_Leg_ = CFrame.new(3.68356705e-05, -0.0779465437, -0.447924763, 1.00000942, -2.08616257e-07, 2.38418579e-07, -1.59139745e-07, 0.975493431, 0.220059082, -7.74860382e-07, -0.22006014, 0.97549367),
  8042. Left_Leg_ = CFrame.new(0.246763051, -0.165307999, 7.34627247e-06, 0.97661984, 0.21497333, 1.34110451e-06, -0.21497333, 0.976619899, -5.21395123e-07, -1.43051147e-06, 2.16066837e-07, 1),
  8043. Head_ = CFrame.new(-0.175744906, 0.017444849, 0.146904826, 0.648833036, 0.1171887, -0.75185281, -0.00230547017, 0.988368213, 0.152063951, 0.76092732, -0.0969307423, 0.641555905),
  8044. Torso_ = CFrame.new(-0.00162887573, -0.00289463997, 0.00579071045, 0.374878913, -0.0028091569, 0.927069545, 0.00280869659, 0.999994338, 0.00189410418, -0.92706871, 0.00189380953, 0.374884337),
  8045. }
  8046. local poss = SHA.CFrame
  8047. local offset = root.CFrame:toObjectSpace(SHA.CFrame)
  8048. shw:Destroy()
  8049. SHA.CFrame=poss
  8050. SHA.Anchored=true
  8051. local done=false
  8052. local half=false
  8053. OnHumanoidFind(SHA, cf(0,0,0), function(proot,phum,body)
  8054. local dmg = math.random(5,13)
  8055. phum.Health = phum.Health - dmg
  8056. pcall(function()
  8057. showDmg(body, Character, dmg, {Rod=false,RodTrans=0,Crit=math.random()>.9})
  8058. end)
  8059. end, 7, true)
  8060. spawn(function()
  8061. while lwait(.5) and not done do
  8062. OnHumanoidFind(SHA, cf(0,0,0), function(proot,phum,body)
  8063. local dmg = math.random(3,7)
  8064. phum.Health = phum.Health - dmg
  8065. pcall(function()
  8066. showDmg(body, Character, dmg, {Rod=false,RodTrans=0,Crit=math.random()>.9})
  8067. end)
  8068. end, 7, true)
  8069. end
  8070. end)
  8071. trail=true
  8072. spawn(function()
  8073. repeat lrs:wait();lrs:wait();lrs:wait()
  8074. --local ptc1 = effects:particle(.1,.5,1,'Block', SHI.CFrame,{'Alder', 'Pearl'})
  8075. local ptc2 = effects:particle(.1,.5,2,'Cylinder',SHI.CFrame,{'Alder', 'Pearl'})
  8076. local ss=3.4
  8077. --for i,v in next, ptc1 do Tween(v, 1, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out, {Size=Vector3.new(ss,ss,ss)}) end
  8078. for i,v in next, ptc2 do Tween(v, 1, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out, {Size=Vector3.new(ss,ss,ss)}) end
  8079. until done
  8080. end)
  8081. spawn(function()
  8082. snd(233856097,root,true)
  8083. local lp = snd(235097691,root,true,{Pitch=.45,Looped=true})
  8084. for i = 0,360,10 do
  8085. local set = (root.CFrame*cf(0,0,-1-(-1/(360/(360-i))))*ang(0,math.rad(i),0)*offset*ang(rad(i),0,rad(i*3))*cf(1.5,0,0))
  8086. SHA.CFrame = set
  8087. lrs:wait()
  8088. end
  8089. for i = 0,200,10 do
  8090. local set = (root.CFrame*cf(0,0,-1/(360/(360-i)))*ang(0,math.rad(i),0)*offset*ang(rad(13),0,rad(i*3))*cf(6,0,0))
  8091. SHA.CFrame = set
  8092. lrs:wait()
  8093. end
  8094. half=true
  8095. for i = 200,360,10 do
  8096. local set = (root.CFrame*cf(0,0,-1/(360/(360-i)))*ang(0,math.rad(i),0)*offset*ang(rad(9),0,rad(i*3))*cf(6,0,0))
  8097. SHA.CFrame = set
  8098. lrs:wait()
  8099. end
  8100. lp:Destroy()
  8101. done=true
  8102. trail=false
  8103. end)
  8104. lwait(.3)
  8105. TweenJoints{
  8106. Style = 'Quint',
  8107. Direction = 'In',
  8108. Time = .3,
  8109. Right_Arm_ = CFrame.new(0.998920679, 0.14364481, 1.68959856, 0.300145298, -0.618172228, 0.726481915, -0.0739984512, 0.74421227, 0.663831592, -0.951018989, -0.253004432, 0.177628011),
  8110. Left_Arm_ = CFrame.new(-1.36803436, -0.0923654437, -1.48961067, 0.0884984732, 0.600464821, 0.794741571, -0.0683499575, 0.799651325, -0.596564591, -0.993728042, -0.00152620673, 0.111809149),
  8111. Right_Leg_ = CFrame.new(0.10795176, 0.137223721, -0.322895944, 0.868303895, -0.172812983, -0.464955926, -0.00150111609, 0.936429739, -0.350851864, 0.496030331, 0.305344015, 0.812846243),
  8112. Left_Leg_ = CFrame.new(0.24675554, -0.16530633, 1.2665987e-06, 0.976619899, 0.214973375, 3.57627869e-06, -0.21497333, 0.976620018, 1.66893005e-06, -3.1888485e-06, -2.38418579e-06, 1),
  8113. Head_ = CFrame.new(0.0915586054, 0.0196099281, -0.111794382, 0.869667768, -0.0338301063, -0.492476821, 0.104621723, 0.987616539, 0.116908997, 0.482423246, -0.153195754, 0.862437844),
  8114. Torso_ = CFrame.new(-0.315471649, -0.31086731, -0.393325806, 0.394115746, -0.218366832, 0.892742395, -0.170076683, 0.937257767, 0.304338545, -0.903187037, -0.271779239, 0.332248896),
  8115. }
  8116. snd(588693579,root,true)
  8117. TweenJoints{
  8118. Style = 'Linear',
  8119. Direction = 'Out',
  8120. Time = .2,
  8121. Right_Arm_ = CFrame.new(0.0439815521, -0.135678574, -0.440430045, 0.806191146, 0.397307813, -0.438409001, -0.0213991497, 0.76008296, 0.649473667, 0.591268122, -0.514218271, 0.621274173),
  8122. Left_Arm_ = CFrame.new(0.236092269, 0.785143495, 0.332070351, 0.558541417, -0.762449682, 0.326653212, 0.206355974, -0.253699929, -0.945015788, 0.803398728, 0.595236301, 0.0156343132),
  8123. Right_Leg_ = CFrame.new(-0.351975918, -0.201288223, -0.3103953, 0.947356284, -0.32018137, 3.57627869e-06, 0.315506399, 0.93352598, 0.170250237, -0.0545143187, -0.161286473, 0.985400915),
  8124. Left_Leg_ = CFrame.new(-0.178579241, 0.00266909599, -0.383025676, 0.642761528, -3.51574272e-08, 0.766066432, 7.49423634e-09, 1.00000024, 3.99304554e-08, -0.766066551, -1.94413587e-08, 0.64276135),
  8125. Head_ = CFrame.new(3.9100647e-05, 3.93390656e-06, -0.00303199375, 0.584618986, 0, 0.811308026, 0.00245903619, 0.99999547, -0.00177195237, -0.811304271, 0.0030309523, 0.584616244),
  8126. Torso_ = CFrame.new(0.00667190552, -0.00287604332, -0.000377655029, 0.584618986, 0.00245892606, -0.811304271, -0.00245809881, 0.999996245, 0.0012598458, 0.811303556, 0.00125774904, 0.584622204),
  8127. }
  8128. OnHumanoidFind(Left_Arm, cf(0,0,0), function(proot,phum,body)
  8129. local dmg = math.random(3,9) * (rand()>.8 and 2 or 1)
  8130. phum.Health = phum.Health - dmg
  8131. pcall(function()
  8132. showDmg(body, Character, dmg, {Rod=true,RodTrans=0,Crit=dmg>9})
  8133. end)
  8134. end, 10, true)
  8135. repeat lrs:wait() until half
  8136. TweenJoints{
  8137. Style = 'Linear',
  8138. Direction = 'Out',
  8139. Time = .15,
  8140. Right_Arm_ = CFrame.new(0.829519689, 0.381413698, -1.57987428, 0.374878913, -0.927073777, 4.05236804e-08, -0.00280904677, -0.00113593217, -0.99999547, 0.927069545, 0.374877214, -0.00303003029),
  8141. Left_Arm_ = CFrame.new(-0.519713402, -0.873377562, -0.158320561, 0.739482224, 0.668240309, 0.0813785493, -0.665690601, 0.74387598, -0.0592175536, -0.100107282, -0.0103825331, 0.994922578),
  8142. Right_Leg_ = CFrame.new(3.68356705e-05, -0.0779465437, -0.447928578, 1.00000942, -2.08616257e-07, 2.38418579e-07, -1.59139745e-07, 0.975493431, 0.220059082, -7.74860382e-07, -0.22006014, 0.97549367),
  8143. Left_Leg_ = CFrame.new(0.246763051, -0.165307999, 5.43892384e-06, 0.97661984, 0.21497333, 1.34110451e-06, -0.21497333, 0.976619899, -5.21395123e-07, -1.43051147e-06, 2.16066837e-07, 1),
  8144. Head_ = CFrame.new(-0.175744906, 0.0174450874, 0.14690578, 0.648833036, 0.1171887, -0.75185281, -0.00230547017, 0.988368213, 0.152063951, 0.76092732, -0.0969307423, 0.641555905),
  8145. Torso_ = CFrame.new(-0.00162887573, -0.00289463997, 0.00579071045, 0.374878913, -0.0028091569, 0.927069545, 0.00280869659, 0.999994338, 0.00189410418, -0.92706871, 0.00189380953, 0.374884337),
  8146. }
  8147. snd(231917871,root,true)
  8148. repeat lrs:wait() until done
  8149. SHA.Anchored=false
  8150. shw = Weld(Right_Arm, SHA, Right_Arm.CFrame:toObjectSpace(SHA.CFrame))
  8151. Tween(shw,.25/2,Enum.EasingStyle.Quint,Enum.EasingDirection.Out,{C1=cf(0,-1,0)*ang(0,-rad(0),-rad(90))})
  8152. lwait(.25/2)
  8153. Tween(shw,.25/2,Enum.EasingStyle.Quint,Enum.EasingDirection.Out,{C1=cf(0,-1,0)*ang(0,-rad(90),-rad(90))})
  8154. lwait(.25/2)
  8155. dkd,ds = false,false
  8156. end
  8157.  
  8158.  
  8159. hum.MaxHealth = Max_Health
  8160. lwait(.1)
  8161. hum.Health = Max_Health
  8162. HumanoidRootPart.Transparency = 1
  8163.  
  8164. local debvals={};
  8165. debvals['CLEAN']=0
  8166. debvals['walkparticles']=0
  8167. local Handle = function()
  8168. spawn(function()
  8169. for i,v in next, effects.MagicCircles do
  8170. if v[1].Parent ~= nil then
  8171. v[1].CFrame = lerp(v[1].CFrame, v[1].CFrame * CFrame.Angles(0,0,rad(v[4])), .9)
  8172. else
  8173. --table.remove(effects.MagicCircles,i)
  8174. effects.MagicCircles[i]=nil
  8175. end
  8176. end
  8177. end)
  8178. spawn(function()
  8179. for ting,data in next, trans do
  8180. if ting.Transparency~=nil and ting.Transparency < data[2] then
  8181. --print(ting.Transparency,data[2])
  8182. ting.Transparency=ting.Transparency+data[1]
  8183. elseif ting.Transparency >= tonumber(data[2]) and ting.Parent ~= nil then
  8184. --print'ded'
  8185. trans[ting]=nil
  8186. ting:Destroy()
  8187. end
  8188. end
  8189. end)
  8190. spawn(function()
  8191. for a,b in next, grows do
  8192. if a==grows[15] then
  8193. grows={};
  8194. for i,v in next, grows do
  8195. grows[i]=v
  8196. end
  8197. print'ded'
  8198. else
  8199. if #b > 1 then
  8200. for __,v in next, b[1] do
  8201. if v.Parent ~= nil then
  8202. if v.Transparency > 1 then
  8203. v:Destroy()
  8204. else
  8205. local c=v.CFrame
  8206. v.Size=v.Size+b[2] or vec3(b[2],b[2],b[2]) or vec3(0,0,0)
  8207. v.CFrame=c*b[3] or cf(0,0,0)
  8208. end
  8209. else
  8210. b[1][__]=nil
  8211. end
  8212. end
  8213. else
  8214. grows[a]=nil
  8215. end
  8216. end
  8217. end
  8218. end)
  8219. local actual,floor = CheckIfLanded(5)
  8220. if debvals['CLEAN'] > 40 then
  8221. debvals['CLEAN']=0
  8222. grows={};
  8223. trans={};
  8224. effects.MagicCircles={};
  8225. for i,v in next, FX:children() do
  8226. v:Destroy()
  8227. end
  8228. end
  8229. for i,v in next,debvals do
  8230. debvals[i]=v+.1
  8231. --print(i,v)
  8232. end
  8233. end
  8234.  
  8235. --_G.g=function(mdl)local t,s=0 function s(p)for i,v in next,p:children()do if v:IsA'Part'then t=t+v:GetMass()end;s(v)end;end s(mdl) return t end
  8236.  
  8237. Mouse.KeyDown:connect(function(Key)
  8238. if Key:byte() == 48 then
  8239. Walking = false
  8240. elseif Key:byte() == 93 then
  8241. table.foreach(keyz,print)
  8242. end
  8243. end)
  8244.  
  8245. Mouse.KeyUp:connect(function(Key)
  8246. if Key:byte() == 48 then
  8247. Walking = true
  8248. end
  8249. end)
  8250.  
  8251. local ComboResetTime,canatk = .1,true
  8252. local combo = 0
  8253. local output_clicks = false
  8254.  
  8255. function ComboUp()
  8256. if dkd == true then return end
  8257. if combo == 0 and canatk == true then
  8258. canatk = false
  8259. Attack1()
  8260. combo = 1
  8261. canatk = true
  8262. spawn(function()
  8263. ds = true
  8264. lwait(ComboResetTime)
  8265. if canatk == true then
  8266. ds = false
  8267. end
  8268. if combo == 1 and not ds then
  8269. combo = 0
  8270. end
  8271. end)
  8272. return
  8273. end
  8274. if combo == 1 and canatk == true then
  8275. canatk = false
  8276. --print'2'
  8277. Attack2()
  8278. combo = 2
  8279. canatk = true
  8280. spawn(function()
  8281. ds = true
  8282. lwait(ComboResetTime)
  8283. if canatk == true then
  8284. ds = false
  8285. end
  8286. if combo == 2 and not ds then
  8287. combo = 0
  8288. end
  8289. end)
  8290. return
  8291. end
  8292. if combo == 2 and canatk == true then
  8293. canatk = false
  8294. Attack3()
  8295. combo = 3
  8296. canatk = true
  8297. spawn(function()
  8298. ds = true
  8299. lwait(ComboResetTime)
  8300. if canatk == true then
  8301. ds = false
  8302. end
  8303. if combo == 3 and not ds then
  8304. combo = 0
  8305. end
  8306. end)
  8307. return
  8308. end
  8309. if combo == 3 and canatk == true then
  8310. canatk = false
  8311. Attack4()
  8312. combo = 0
  8313. lwait(ComboResetTime)
  8314. canatk = true
  8315. spawn(function()
  8316. if canatk == true then
  8317. ds = false
  8318. end
  8319. if combo == 0 and not ds then
  8320. combo = 0
  8321. end
  8322. end)
  8323. return
  8324. end
  8325. end
  8326.  
  8327. mouse.Button1Down:connect(function()
  8328. ComboUp()
  8329. end)
  8330.  
  8331. local can=true
  8332. function FootStep()
  8333. if root.CFrame.Y < -10 then
  8334. root.CFrame = cf(rand(-10, 10), 5, rand(-10, 10))
  8335. end
  8336. if can then
  8337. --// continue
  8338. else
  8339. return
  8340. end
  8341. can=false
  8342. delay(.2,function()
  8343. can=true
  8344. end)
  8345. local ping = Instance.new('Sound',Torso)
  8346. local ov = .5
  8347. local pitches={}
  8348. for i = -.05,.05,.005 do table.insert(pitches,1+i) end
  8349. ping.Volume = .25/ov
  8350. game:service'RunService'.RenderStepped:wait()
  8351. local ray = Ray.new(HumanoidRootPart.CFrame.p,(HumanoidRootPart.CFrame.p-(HumanoidRootPart.CFrame*cf(0,2.5,0)).p).unit*3.15)
  8352. local Hit,Pos = workspace:FindPartOnRayWithIgnoreList(ray, {Char})
  8353. if Hit and (Hit:IsDescendantOf(Character) == false) then
  8354. local num=0
  8355. if Hit.Material == Enum.Material.Plastic or Hit.Material == Enum.Material.SmoothPlastic then
  8356. local ss={379483672, 379398649};
  8357. ping.SoundId = rbx..ss[math.random(1,#ss)]
  8358. ping.Pitch = pitches[math.random(1,#pitches)]
  8359. ping:Play()
  8360. return
  8361. end
  8362. if Hit.Material == Enum.Material.Grass then
  8363. ping.SoundId = rbx..379482039
  8364. ping.Volume = .05/ov
  8365. ping.Pitch = pitches[math.random(1,#pitches)]
  8366. ping:Play()
  8367. return
  8368. end
  8369. if Hit.Material == Enum.Material.Neon then
  8370. ping.SoundId = rbx..236989198
  8371. ping.Volume = 1/ov
  8372. ping.Pitch = pitches[math.random(1,#pitches)]
  8373. local ping2 = Instance.new('Sound',Torso)
  8374. ping2.Volume = .075/ov
  8375. ping2.SoundId = rbx..379482691
  8376. ping2.Pitch = pitches[math.random(1,#pitches)]
  8377. ping:Play()
  8378. ping2:Play()
  8379. return
  8380. end
  8381. if Hit.Material == Enum.Material.Metal or Hit.Material == Enum.Material.DiamondPlate or Hit.Material == Enum.Material.CorrodedMetal then
  8382. local ss={379482691,};
  8383. ping.SoundId = rbx..ss[math.random(1,#ss)]
  8384. ping.Volume = .5/ov
  8385. ping.Pitch = pitches[math.random(1,#pitches)]
  8386. ping:Play()
  8387. return
  8388. end --510932495
  8389. if Hit.Material == Enum.Material.WoodPlanks or Hit.Material == Enum.Material.Wood then
  8390. local ss={ 379484117};
  8391. ping.SoundId = rbx..ss[math.random(1,#ss)]
  8392. ping.Volume = .15/ov
  8393. ping.Pitch = pitches[math.random(1,#pitches)]
  8394. ping:Play()
  8395. return
  8396. end
  8397. if Hit.Material == Enum.Material.Ice or Hit.Material == Enum.Material.Foil then
  8398. local ss={ 510932495};
  8399. ping.SoundId = rbx..ss[math.random(1,#ss)]
  8400. ping.Volume = .5/ov
  8401. ping.Pitch = pitches[math.random(1,#pitches)]
  8402. ping:Play()
  8403. return
  8404. end
  8405. if Hit.Material == Enum.Material.Fabric or Hit.Material == Enum.Material.Sand or Hit.Name == 'Snow' then
  8406. --warn'derp'
  8407. local ss={145536125,145536149};
  8408. ping.SoundId = rbx..ss[math.random(1,#ss)]
  8409. ping.Pitch = pitches[math.random(1,#pitches)]
  8410. ping:Play()
  8411. return
  8412. end
  8413. if Hit.Material == Enum.Material.Slate or Hit.Material == Enum.Material.Pebble or Hit.Material == Enum.Material.Marble or Hit.Material == Enum.Material.Brick or Hit.Material == Enum.Material.Cobblestone or Hit.Material == Enum.Material.Concrete or Hit.Material == Enum.Material.Granite then
  8414. local ss={379483672, 379398649};
  8415. ping.SoundId = rbx..ss[math.random(1,#ss)]
  8416. ping.Volume = .5/ov
  8417. ping.Pitch = pitches[math.random(1,#pitches)]
  8418. ping:Play()
  8419. return
  8420. end
  8421. end
  8422. end
  8423.  
  8424. local upv=0
  8425.  
  8426. srs:connect(function()
  8427. sine = tick() * (change * 25)
  8428. Handle()
  8429. end)
  8430.  
  8431. local once=false
  8432. lrs:connect(function()
  8433. Trail.Enabled=trail
  8434. Landed = CheckIfLanded()
  8435. hum.PlatformStand = false
  8436. if ds then
  8437. if Mode == 'Running' and not once then
  8438. once=true
  8439. spawn(function()
  8440. FadeSword'In'
  8441. end)
  8442. end
  8443. return
  8444. end
  8445. hum.JumpPower = 0
  8446. hum.Jump=false
  8447. hum.WalkSpeed = hum.WalkSpeed + (walkspd - hum.WalkSpeed) * .1;
  8448. walkspd=7
  8449. if not Walking then
  8450. walkspd = 25
  8451. end
  8452. local tmag_xz = (torso.Velocity*vec3(1, 0, 1)).magnitude
  8453. local tmag_y = torso.Velocity.Y
  8454. local trot = torso.RotVelocity.Y/50
  8455. local speed = Vector3.new(Torso.Velocity.X,0,Torso.Velocity.Z)
  8456. local TiltOnAxis = (root.CFrame-root.CFrame.p):inverse()*speed/200
  8457. local Tilt = ang(TiltOnAxis.Z,-TiltOnAxis.X,-TiltOnAxis.X)
  8458. if Landed == false then
  8459. State, Mode = 'Falling', 'Normal'
  8460. elseif tmag_xz < 3 then
  8461. State, Mode = 'Idle', 'Normal'
  8462. elseif tmag_xz >= 4 then
  8463. State = 'Walking'
  8464. if tmag_xz > 20 then
  8465. Mode = 'Running'
  8466. else
  8467. Mode = 'Normal'
  8468. end
  8469. end
  8470. local RestoreDefault = function(Current)
  8471. Current = Current or State
  8472. local Current2 = Mode
  8473. if LastMode ~= Current2 then
  8474. if Current2 == 'Running' then
  8475. spawn(function()
  8476. FadeSword'Out'
  8477. end)
  8478. elseif Current2 ~= 'Running' or once then
  8479. spawn(function()
  8480. FadeSword'In'
  8481. end)
  8482. end
  8483. LastMode = Current2
  8484. end
  8485. if LastState ~= Current then
  8486. LastState = Current
  8487. sine = 0
  8488. end
  8489. end
  8490. once=false
  8491. local Default_Anims = function()
  8492. local animspd = .1
  8493. local Right_Arm_ = cf(0,0,0)
  8494. local Left_Arm_ = cf(0,0,0)
  8495. local Right_Leg_ = cf(0,0,0)
  8496. local Left_Leg_ = cf(0,0,0)
  8497. local Head_ = cf(0,0,0)
  8498. local Torso_ = cf(0,0,0)
  8499.  
  8500. torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
  8501. hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
  8502. law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
  8503. raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
  8504. rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
  8505. llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
  8506. end
  8507. if State == 'Falling' and ds == false then
  8508. local animspd = .3
  8509. change = 1
  8510. local Right_Arm_ = cf(0,0,0)
  8511. local Left_Arm_ = cf(0,0,0)
  8512. local Right_Leg_ = cf(0,0,0)
  8513. local Left_Leg_ = cf(0,0,0)
  8514. local Head_ = cf(0,0,0)
  8515. local Torso_ = cf(0,0,0)
  8516.  
  8517. torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
  8518. hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
  8519. law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
  8520. raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
  8521. rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
  8522. llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
  8523. elseif State == 'Idle' and ds == false then
  8524. RestoreDefault()
  8525. if Mode == 'Normal' and ds == false then
  8526. local animspd = .125
  8527. change = .35
  8528. local Right_Arm_ = CFrame.new(0.467620611, -0.552611947, -0.132565618, 0.842239499, -0.53289324, -0.0816002488, 0.520031989, 0.842986345, -0.137627944, 0.142128706, 0.0734807402, 0.987117887)
  8529. local Left_Arm_ = CFrame.new(-0.781376958, 0.0332048535, -1.34890664, 0.59977144, 0.799722373, -0.0268236771, -0.304636121, 0.197214842, -0.931828678, -0.739913702, 0.567055464, 0.361907959)
  8530. local Right_Leg_ = CFrame.new(-0.272229075, -0.24053812, 0.000354528427, 0.955758393, -0.294165701, -1.257658e-05, 0.294165134, 0.955759764, 6.22232903e-07, 1.13546848e-05, -4.07546759e-06, 1.00000012)
  8531. local Left_Leg_ = CFrame.new(0.0260814428, 0.0450050831, -0.361847639, 0.775439262, 0.110567033, 0.621666431, -0.0906994343, 0.993843734, -0.0636264831, -0.624874234, -0.00704631209, 0.780693769)
  8532. local Head_ = CFrame.new(0.270924807, 0.0874993801, 0.260071456, 0.390913397, -0.180617183, 0.90253222, -0.0901362225, 0.96833241, 0.23282595, -0.916003525, -0.172365636, 0.362253964)
  8533. local Torso_ = CFrame.new(0.0059170723, -0.182877302, -0.00212669373, 0.392511159, 0, -0.919747353, 0, 1, 0, 0.919747353, 0, 0.392511159)
  8534.  
  8535. torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
  8536. hedw.C0 = lerp(hedw.C0, cf(0,0,-cos(sine/8)/16)*Head_*ang(cos(sine/8)/16,0,0),animspd)
  8537. law.C0 = lerp(law.C0, cf(sin(sine/8)/20,cos(sine/8)/14,0)*Left_Arm_*ang(cos(sine/8)/14,0,sin(sine/8)/20),animspd)
  8538. raw.C0 = lerp(raw.C0, cf(0,.5+sin(sine/8)/14,-.5)*Right_Arm_*ang(rad(70)+sin(sine/8)/14,0,0),animspd)
  8539. rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
  8540. llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
  8541. rhw.C0 = clerp(rhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8542. lhw.C0 = clerp(lhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8543. shw.C0 = clerp(shw.C0, cf(0,0,0)*ang(0,-rad(15),rad(70)), animspd)
  8544. else
  8545. Default_Anims()
  8546. warn'Idle: Unknown Mode Used'
  8547. end
  8548. elseif State == 'Walking' and ds == false then
  8549. RestoreDefault()
  8550. if Mode == 'Normal' and ds == false then
  8551. local up = sin(sine/6)
  8552. if math.abs(up)>=.995 then
  8553. local actual,floor = CheckIfLanded(7)
  8554. local clrs={'Really black','Pearl'}
  8555. local mtrl='Neon'
  8556. local ss = 3
  8557. if actual then
  8558. clrs={tostring(floor.BrickColor)}
  8559. mtrl=floor.Material
  8560. end
  8561. FootStep()
  8562. if up > 0 then
  8563.  
  8564. else
  8565.  
  8566. end
  8567. end
  8568. local animspd = .25
  8569. change = 1.4
  8570. local Right_Arm_ = cf(0,0,0)
  8571. local Left_Arm_ = cf(0,0,0)
  8572. local Right_Leg_ = cf(0,0,0)
  8573. local Left_Leg_ = cf(0,0,0)
  8574. local Head_ = cf(0,0,0)
  8575. local Torso_ = cf(0,0,0)
  8576.  
  8577. torw.C0 = clerp(torw.C0, cf(0,-.2,0)*Torso_*ang(-rad(12)+sin(sine/3)/18,sin(sine/6)/13,0),animspd)
  8578. hedw.C0 = clerp(hedw.C0, cf(0,0,-rad(4))*Head_*ang(rad(4),0,0),animspd)
  8579. law.C0 = clerp(law.C0, cf(-.265,-.359/2,sin(sine/6)/4)*Left_Arm_*ang(-sin(sine/6)/4,0,-rad(20)),animspd)
  8580. raw.C0 = clerp(raw.C0, cf(.265+cos(sine/6)/8,(-.359/2)+.65,-.85)*Right_Arm_*ang(rad(90),0,rad(20)+cos(sine/6)/8),animspd)
  8581. rlw.C0 = clerp(rlw.C0, cf(-.034/2,.1-cos(sine/6)/4,-.4+cos(sine/6)/4+-sin(sine/6)/2)*ang(-rad(5)+-sin(sine/6)/2,-sin(sine/6)/13,rad(1)),animspd)
  8582. llw.C0 = clerp(llw.C0, cf(.034/2,.1+cos(sine/6)/4,-.4+-cos(sine/6)/4+sin(sine/6)/2)*ang(-rad(5)+sin(sine/6)/2,-sin(sine/6)/13,-rad(1)),animspd)
  8583.  
  8584. rhw.C0 = clerp(rhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8585. lhw.C0 = clerp(lhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8586. shw.C0 = clerp(shw.C0, cf(0,0,0)*ang(0,rad(15),rad(70)), .1)
  8587. elseif Mode == 'Running' and ds == false then
  8588. local up = sin(sine/6)
  8589. if math.abs(up)>=.995 then
  8590. local actual,floor = CheckIfLanded(7)
  8591. local clrs={'Really black','Pearl'}
  8592. local mtrl='Neon'
  8593. local ss = 3
  8594. if actual then
  8595. clrs={tostring(floor.BrickColor)}
  8596. mtrl=floor.Material
  8597. end
  8598. FootStep()
  8599. if up > 0 then
  8600.  
  8601. else
  8602.  
  8603. end
  8604. end
  8605. local animspd = .25
  8606. change = 1.4
  8607. local Right_Arm_ = cf(0,0,0)
  8608. local Left_Arm_ = cf(0,0,0)
  8609. local Right_Leg_ = cf(0,0,0)
  8610. local Left_Leg_ = cf(0,0,0)
  8611. local Head_ = cf(0,0,0)
  8612. local Torso_ = cf(0,0,0)
  8613.  
  8614. torw.C0 = clerp(torw.C0, cf(0,-.2,0)*Torso_*ang(-rad(12)+sin(sine/3)/18,sin(sine/6)/13,0),animspd)
  8615. hedw.C0 = clerp(hedw.C0, cf(0,0,-rad(4))*Head_*ang(rad(4),0,0),animspd)
  8616. law.C0 = clerp(law.C0, cf(-.265,-.359/2,sin(sine/6)/4)*Left_Arm_*ang(-sin(sine/6)/4,0,-rad(20)),animspd)
  8617. raw.C0 = clerp(raw.C0, cf(.265,-.359/2,-sin(sine/6)/4)*Right_Arm_*ang(sin(sine/6)/4,0,rad(20)),animspd)
  8618. rlw.C0 = clerp(rlw.C0, cf(-.034/2,.1-cos(sine/6)/4,-.4+cos(sine/6)/4+-sin(sine/6)/2)*ang(-rad(5)+-sin(sine/6)/2,-sin(sine/6)/13,rad(1)),animspd)
  8619. llw.C0 = clerp(llw.C0, cf(.034/2,.1+cos(sine/6)/4,-.4+-cos(sine/6)/4+sin(sine/6)/2)*ang(-rad(5)+sin(sine/6)/2,-sin(sine/6)/13,-rad(1)),animspd)
  8620.  
  8621. rhw.C0 = clerp(rhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8622. lhw.C0 = clerp(lhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8623. shw.C0 = clerp(shw.C0, cf(0,0,0)*ang(0,rad(15),rad(70)), .1)
  8624. else --// 59426=74955
  8625. Default_Anims()
  8626. warn'Walking: Unknown Mode Used'
  8627. end
  8628. else --// New Animation Test Stage
  8629. local animspd = .1
  8630. local Right_Arm_ = cf(0,0,0)
  8631. local Left_Arm_ = cf(0,0,0)
  8632. local Right_Leg_ = cf(0,0,0)
  8633. local Left_Leg_ = cf(0,0,0)
  8634. local Head_ = cf(0,0,0)
  8635. local Torso_ = cf(0,0,0)
  8636.  
  8637. torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
  8638. hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
  8639. law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
  8640. raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
  8641. rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
  8642. llw.C0 = clerp(llw.C0, cf(0,0,0)*Left_Leg_*ang(0,0,0),animspd)
  8643. end
  8644.  
  8645. end)
  8646.  
  8647. --[[ Default Welds
  8648. local animspd = .3
  8649. change = 1
  8650.  
  8651. local Right_Arm_ = cf(0,0,0)
  8652. local Left_Arm_ = cf(0,0,0)
  8653. local Right_Leg_ = cf(0,0,0)
  8654. local Left_Leg_ = cf(0,0,0)
  8655. local Head_ = cf(0,0,0)
  8656. local Torso_ = cf(0,0,0)
  8657.  
  8658. torw.C0 = clerp(torw.C0, cf(0,0,0)*Torso_*ang(0,0,0),animspd)
  8659. hedw.C0 = clerp(hedw.C0, cf(0,0,0)*Head_*ang(0,0,0),animspd)
  8660. law.C0 = clerp(law.C0, cf(0,0,0)*Left_Arm_*ang(0,0,0),animspd)
  8661. raw.C0 = clerp(raw.C0, cf(0,0,0)*Right_Arm_*ang(0,0,0),animspd)
  8662. rlw.C0 = clerp(rlw.C0, cf(0,0,0)*Right_Leg_*ang(0,0,0),animspd)
  8663. rhw.C0 = clerp(rhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8664. lhw.C0 = clerp(lhw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8665. shw.C0 = clerp(shw.C0, cf(0,0,0)*ang(0,0,0),animspd)
  8666.  
  8667. --]]
  8668.  
  8669. Player.Chatted:connect(function(Message)
  8670. if Message == '~debug' then
  8671. ds,dkd=false,false
  8672. for i,v in next, FX:children() do
  8673. v:Destroy()
  8674. end
  8675. FadeSword'In'
  8676. end
  8677. end)
  8678.  
  8679. script.Archivable = false
  8680. script:WaitForChild('Sound'):Play()
  8681.  
  8682. print("Press ']' to see all KeyBinds")
  8683. print('Say ~debug to... debug..............................')
Advertisement
Add Comment
Please, Sign In to add comment