Advertisement
lafur

Untitled

May 19th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 54.40 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 39535
  3. local genv={}
  4. local Scripts = {
  5. function() script.Parent.Selected:connect(function(mouse)
  6. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  7. workspace.CurrentCamera.CameraSubject = script.Parent.Link.Value.NewTar
  8. workspace.CurrentCamera.CameraType = "Follow"
  9. end)
  10.  
  11. script.Parent.Deselected:connect(function()
  12. workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
  13. workspace.CurrentCamera.CameraType = "Custom"
  14. end) end;
  15. function() Link = script.Parent.Link.Value
  16. Engines = Link.Engines:GetChildren()
  17. TurningEnabled = Link.Turn
  18. Speed = Link.Speed
  19.  
  20. function PitchDown()
  21. for i = 1, #Engines do
  22. if Engines[i] and TurningEnabled.Value then
  23. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(-math.pi/16, 0, 0)
  24. end
  25. end
  26. end
  27.  
  28. function PitchUp()
  29. for i = 1, #Engines do
  30. if Engines[i] and TurningEnabled.Value then
  31. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(math.pi/16, 0, 0)
  32. end
  33. end
  34. end
  35.  
  36. function YawDown()
  37. for i = 1, #Engines do
  38. if Engines[i] and TurningEnabled.Value then
  39. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(0, math.pi/16, 0)
  40. end
  41. end
  42. end
  43.  
  44. function YawUp()
  45. for i = 1, #Engines do
  46. if Engines[i] and TurningEnabled.Value then
  47. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(0, -math.pi/16, 0)
  48. end
  49. end
  50. end
  51.  
  52. function RollDown()
  53. for i = 1, #Engines do
  54. if Engines[i] and TurningEnabled.Value then
  55. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(0, 0, math.pi/16)
  56. end
  57. end
  58. end
  59.  
  60. function RollUp()
  61. for i = 1, #Engines do
  62. if Engines[i] and TurningEnabled.Value then
  63. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(0, 0, -math.pi/16)
  64. end
  65. end
  66. end
  67.  
  68. function SpeedUp()
  69. if Speed.Value < 5 then
  70. Speed.Value = Speed.Value + 1
  71. for i = 1, #Engines do
  72. if Engines[i] then
  73. if Speed.Value >= 1 and Speed.Value < 5 then
  74. TurningEnabled.Value = true
  75. Engines[i].BodyVelocity.velocity = Engines[i].CFrame.lookVector * 62.5 * Speed.Value
  76. else
  77. TurningEnabled.Value = false
  78. Engines[i].BodyVelocity.velocity = Engines[i].CFrame.lookVector * 1000
  79. end
  80. end
  81. end
  82. end
  83. end
  84.  
  85. function SpeedDown()
  86. if Speed.Value > 0 then
  87. Speed.Value = Speed.Value - 1
  88. for i = 1, #Engines do
  89. if Engines[i] then
  90. TurningEnabled.Value = true
  91. Engines[i].BodyVelocity.velocity = Engines[i].CFrame.lookVector * 62.5 * Speed.Value
  92. end
  93. end
  94. end
  95. end
  96.  
  97. function EmergancyStop()
  98. Speed.Value = 0
  99. for i = 1, #Engines do
  100. if Engines[i] then
  101. TurningEnabled.Value = true
  102. Engines[i].BodyGyro.cframe = Engines[i].CFrame
  103. end
  104. end
  105. end
  106.  
  107. function Normalize()
  108. for i = 1, #Engines do
  109. if Engines[i] then
  110. Engines[i].BodyGyro.cframe = Origins[i]
  111. end
  112. end
  113. end
  114.  
  115. function Engage(Arguement)
  116. local PitchIN = tonumber(Arguement.PitchIN.Text)
  117. local YawIN = tonumber(Arguement.YawIN.Text)
  118. if not PitchIN or not YawIN then return end
  119. for i = 1, #Engines do
  120. if Engines[i] then
  121. Engines[i].BodyGyro.cframe = CFrame.Angles(PitchIN, YawIN, 0)
  122. end
  123. end
  124. end
  125.  
  126. script.Parent.Selected:connect(function(mouse)
  127. mouse.Button1Down:connect(function()
  128. for i = 1, #Engines do
  129. if Engines[i] then
  130. if TurningEnabled.Value then
  131. Engines[i].BodyGyro.cframe = CFrame.new(Engines[i].Position, mouse.Hit.p)
  132. end
  133. end
  134. end
  135. end)
  136. mouse.KeyDown:connect(function(key)
  137. if key == "q" then
  138. RollDown()
  139. elseif key == "e" then
  140. RollUp()
  141. elseif key == "w" then
  142. PitchUp()
  143. elseif key == "s" then
  144. PitchDown()
  145. elseif key == "a" then
  146. YawDown()
  147. elseif key == "d" then
  148. YawUp()
  149. elseif key == "x" then
  150. EmergancyStop()
  151. elseif key == "r" then
  152. SpeedUp()
  153. elseif key == "f" then
  154. SpeedDown()
  155. end
  156. end)
  157. end) end;
  158. function() -- Starfleet tech: Engine system Mark II
  159. -- By swmaniac.
  160. System = script.Parent
  161. Engines = System.Engines:GetChildren()
  162. GUI = System.EngineGUI
  163. Tool = System.Starship
  164. Hidden = true
  165. TurningEnabled = System.Turn
  166. Speed = 0
  167. Origins = {}
  168. CopyA = nil
  169. Speed = script.Parent.Speed
  170. Speeds = {"Full stop", "1/4 Impulse", "1/2 Impulse", "3/4 Impulse", "Full Impulse", "Warp 1"}
  171. for i = 1, #Engines do
  172. if Engines[i] then
  173. table.insert(Origins, Engines[i].CFrame)
  174. Engines[i].BodyGyro.cframe = Engines[i].CFrame
  175. end
  176. end
  177.  
  178. function PitchDown()
  179. for i = 1, #Engines do
  180. if Engines[i] and TurningEnabled.Value then
  181. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(-math.pi/16, 0, 0)
  182. end
  183. end
  184. end
  185.  
  186. function PitchUp()
  187. for i = 1, #Engines do
  188. if Engines[i] and TurningEnabled.Value then
  189. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(math.pi/16, 0, 0)
  190. end
  191. end
  192. end
  193.  
  194. function YawDown()
  195. for i = 1, #Engines do
  196. if Engines[i] and TurningEnabled.Value then
  197. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(0, -math.pi/16, 0)
  198. end
  199. end
  200. end
  201.  
  202. function YawUp()
  203. for i = 1, #Engines do
  204. if Engines[i] and TurningEnabled.Value then
  205. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(0, math.pi/16, 0)
  206. end
  207. end
  208. end
  209.  
  210. function RollDown()
  211. for i = 1, #Engines do
  212. if Engines[i] and TurningEnabled.Value then
  213. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(0, 0, -math.pi/16)
  214. end
  215. end
  216. end
  217.  
  218. function RollUp()
  219. for i = 1, #Engines do
  220. if Engines[i] and TurningEnabled.Value then
  221. Engines[i].BodyGyro.cframe = Engines[i].BodyGyro.cframe * CFrame.Angles(0, 0, math.pi/16)
  222. end
  223. end
  224. end
  225.  
  226. function SpeedUp()
  227. if Speed.Value < 5 then
  228. Speed.Value = Speed.Value + 1
  229. for i = 1, #Engines do
  230. if Engines[i] then
  231. if Speed.Value >= 1 and Speed.Value < 5 then
  232. TurningEnabled.Value = true
  233. --Engines[i].BodyPosition.maxForce = Vector3.new(0, 0, 0)
  234. --Engines[i].BodyVelocity.maxForce = Vector3.new(5e+100, 5e+100, 5e+100)
  235. Engines[i].BodyVelocity.velocity = Engines[i].CFrame.lookVector * 62.5 * Speed.Value
  236. else
  237. TurningEnabled.Value = false
  238. --Engines[i].BodyVelocity.maxForce = Vector3.new(5e+100, 5e+100, 5e+100)
  239. Engines[i].BodyVelocity.velocity = Engines[i].CFrame.lookVector * 1000
  240. end
  241. end
  242. end
  243. end
  244. end
  245.  
  246. function SpeedDown()
  247. if Speed.Value > 0 then
  248. Speed.Value = Speed.Value - 1
  249. for i = 1, #Engines do
  250. if Engines[i] then
  251. TurningEnabled.Value = true
  252. Engines[i].BodyVelocity.velocity = Engines[i].CFrame.lookVector * 62.5 * Speed.Value
  253. end
  254. end
  255. end
  256. end
  257.  
  258. function EmergancyStop()
  259. Speed.Value = 0
  260. for i = 1, #Engines do
  261. if Engines[i] then
  262. TurningEnabled.Value = true
  263. Engines[i].BodyGyro.cframe = Engines[i].CFrame
  264. end
  265. end
  266. end
  267.  
  268. function Normalize()
  269. for i = 1, #Engines do
  270. if Engines[i] then
  271. Engines[i].BodyGyro.cframe = Origins[i]
  272. end
  273. end
  274. end
  275.  
  276. function Engage(Arguement)
  277. local PitchIN = tonumber(Arguement.PitchIN.Text)
  278. local YawIN = tonumber(Arguement.YawIN.Text)
  279. if not PitchIN or not YawIN then return end
  280. for i = 1, #Engines do
  281. if Engines[i] then
  282. Engines[i].BodyGyro.cframe = CFrame.Angles(PitchIN, YawIN, 0)
  283. end
  284. end
  285. end
  286.  
  287. debounce = false
  288.  
  289. script.Parent.Seat.Touched:connect(function(hit)
  290. if not debounce then
  291. debouce = true
  292. local human = hit.Parent:FindFirstChild("Humanoid")
  293. local player = game.Players:GetPlayerFromCharacter(hit.Parent)
  294. if human and player then
  295. wait()
  296. if human.Sit then
  297. CopyA = GUI:clone()
  298. CopyA.Parent = player:FindFirstChild("PlayerGui")
  299. local Hide = CopyA.GUIControls.Hide
  300. local MainControls = CopyA.Main.MainControls
  301. local Imput = CopyA.Main.Imput
  302. Hide.MouseButton1Click:connect(function()
  303. if Hidden then
  304. Hidden = false
  305. CopyA.Main.Visible = false
  306. Hide.Text = "Show"
  307. Hide.Parent.Size = UDim2.new(.05, 0, .05, 0)
  308. Hide.Parent.Position = UDim2.new(.95, 0, .5, 0)
  309. else
  310. Hidden = true
  311. CopyA.Main.Visible = true
  312. Hide.Text = "Hide"
  313. Hide.Parent.Size = UDim2.new(0.15, 0, 0.1, 0)
  314. Hide.Parent.Position = UDim2.new(0.05, 0, 0.5, 0)
  315. end
  316. end)
  317. MainControls.PitchDown.MouseButton1Click:connect(PitchDown)
  318. MainControls.PitchUp.MouseButton1Click:connect(PitchUp)
  319. MainControls.YawDown.MouseButton1Click:connect(YawDown)
  320. MainControls.YawUp.MouseButton1Click:connect(YawUp)
  321. MainControls.RollDown.MouseButton1Click:connect(RollDown)
  322. MainControls.RollUp.MouseButton1Click:connect(RollUp)
  323. MainControls.SpeedDown.MouseButton1Click:connect(SpeedDown)
  324. MainControls.SpeedUp.MouseButton1Click:connect(SpeedUp)
  325. MainControls.EmergancyStop.MouseButton1Click:connect(EmergancyStop)
  326. Imput.Fix.MouseButton1Click:connect(Normalize)
  327. Imput.Enter.MouseButton1Click:connect(function() Engage(Imput) end)
  328. local CopyB = Tool:clone()
  329. CopyB.Link.Value = System
  330. CopyB.Script.Disabled = false
  331. CopyB.LocalScript.Disabled = false
  332. CopyB.Parent = player:FindFirstChild("Backpack")
  333. local connection = human.Changed:connect(function()
  334. if not human.Sit and CopyA and CopyB and connection then
  335. CopyA:remove()
  336. CopyA = nil
  337. CopyB:remove()
  338. connection = nil
  339. end
  340. end)
  341. end
  342. end
  343. wait(3)
  344. debounce = true
  345. end
  346. end)
  347.  
  348. while true do
  349. wait()
  350. if CopyA then
  351. for i = 1, #Engines do
  352. if Engines[i] then
  353. Readouts = CopyA.Main.Readouts
  354. Readouts.CurrentSpeed.Text = "Current Speed: " .. Speeds[Speed.Value + 1]
  355. if Speed.Value < 5 then
  356. Engines[i].BodyVelocity.velocity = Engines[i].CFrame.lookVector * 62.5 * Speed.Value
  357. else
  358. Engines[i].BodyVelocity.velocity = Engines[i].CFrame.lookVector * 1000
  359. end
  360. end
  361. end
  362. end
  363. end
  364. -- *Phew* A lot of code. end;
  365. function() t = script.Parent
  366.  
  367. wait(5)
  368.  
  369. function stick(x, y)
  370. weld = Instance.new("Weld")
  371. weld.Part0 = x
  372. weld.Part1 = y
  373. local HitPos = x.Position
  374. local CJ = CFrame.new(HitPos)
  375. local C0 = x.CFrame:inverse() *CJ
  376. local C1 = y.CFrame:inverse() * CJ
  377. weld.C0 = C0
  378. weld.C1 = C1
  379. weld.Parent = x
  380. end
  381.  
  382. function Weldnow()
  383. c = t:children()
  384. for n = 1, #c do
  385. if (c[n].className == "Part") then
  386. if (c[n].Name ~= "MainPart") then
  387. stick(c[n], t.MainPart)
  388. wait()
  389. c[n].Anchored = false
  390. end
  391. end
  392. if (c[n].className == "VehicleSeat") then
  393. if (c[n].Name ~= "MainPart") then
  394. stick(c[n], t.MainPart)
  395. wait()
  396. c[n].Anchored = false
  397. end
  398. end
  399. if (c[n].className == "WedgePart") then
  400. if (c[n].Name ~= "MainPart") then
  401. stick(c[n], t.MainPart)
  402. wait()
  403. c[n].Anchored = false
  404. end
  405. end
  406. if (c[n].className == "Seat") then
  407. if (c[n].Name ~= "MainPart") then
  408. stick(c[n], t.MainPart)
  409. wait()
  410. c[n].Anchored = false
  411. end
  412. end
  413. end
  414. end
  415.  
  416. wait()
  417.  
  418. t.MainPart.Anchored = false
  419.  
  420. Weldnow() end;}local ActualScripts = {}
  421. function s(var)
  422. local func = table.remove(Scripts,1)
  423. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  424. __index = getfenv(func),
  425. }))
  426. table.insert(ActualScripts,coroutine.wrap(func))
  427. end
  428. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  429. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  430. function(t,f)
  431. for a,b in pairs(t) do
  432. f(a,b)
  433. end
  434. end
  435. local Types = {
  436. Color3 = Color3.new,
  437. Vector3 = Vector3.new,
  438. Vector2 = Vector2.new,
  439. UDim = UDim.new,
  440. UDim2 = UDim2.new,
  441. CFrame = CFrame.new,
  442. Rect = Rect.new,
  443. NumberRange = NumberRange.new,
  444. BrickColor = BrickColor.new,
  445. PhysicalProperties = PhysicalProperties.new,
  446. NumberSequence = function(...)
  447. local a = {...}
  448. local t = {}
  449. repeat
  450. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  451. until #a==0
  452. return NumberSequence.new(t)
  453. end,
  454. ColorSequence = function(...)
  455. local a = {...}
  456. local t = {}
  457. repeat
  458. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  459. until #a==0
  460. return ColorSequence.new(t)
  461. end,
  462. number = tonumber,
  463. boolean = function(a)
  464. return a=="1"
  465. end
  466. }
  467. split = function(str,sep)
  468. if not str then return end
  469. local fields = {}
  470. local ConcatNext = false
  471. str:gsub(("([^%s]+)"):format(sep),function(c)
  472. if ConcatNext == true then
  473. fields[#fields] = fields[#fields]..sep..c
  474. ConcatNext = false
  475. else
  476. fields[#fields+1] = c
  477. end
  478. if c:sub(#c)=="\\" then
  479. c = fields[#fields]
  480. fields[#fields] = c:sub(1,#c-1)
  481. ConcatNext = true
  482. end
  483. end)
  484. return fields
  485. end
  486. RemoveAndSplit = function(t)
  487. return split(table_remove(t,1),comma)
  488. end
  489. t = split(str,";")
  490. props = RemoveAndSplit(t)
  491. classes = RemoveAndSplit(t)
  492. values = split(table_remove(t,1),'|')
  493. ICList = RemoveAndSplit(t)
  494. InstanceList = {}
  495. Model = inst"Model"
  496. CurPar = Model
  497. table_foreach(t,function(ct,c)
  498. if c=="n" or c=="p" then
  499. CurPar = c=="n" and LastIns or CurPar[parnt]
  500. else
  501. ct = split(c,"|")
  502. local class = classes[tonum(table_remove(ct,1))]
  503. if class=="UnionOperation" then
  504. LastIns = {UsePartColor="1"}
  505. else
  506. LastIns = inst(class)
  507. if LastIns:IsA"Script" then
  508. s(LastIns)
  509. elseif LastIns:IsA("ModuleScript") then
  510. ms(LastIns)
  511. end
  512. end
  513.  
  514. local function SetProperty(LastIns,p,str,s)
  515. s = Types[typeof(LastIns[p])]
  516. if p=="CustomPhysicalProperties" then
  517. s = PhysicalProperties.new
  518. end
  519. if s then
  520. LastIns[p] = s(unpack(split(str,comma)))
  521. else
  522. LastIns[p] = str
  523. end
  524. end
  525.  
  526. local UnionData
  527. table_foreach(ct,function(s,p,a,str)
  528. a = p:find":"
  529. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  530. if p=="UnionData" then
  531. UnionData = split(str," ")
  532. return
  533. end
  534. if class=="UnionOperation" then
  535. LastIns[p] = str
  536. return
  537. end
  538. SetProperty(LastIns,p,str)
  539. end)
  540.  
  541. if UnionData then
  542. local LI_Data = LastIns
  543. LastIns = DecodeUnion(UnionData)
  544. table_foreach(LI_Data,function(p,str)
  545. SetProperty(LastIns,p,str)
  546. end)
  547. end
  548. table.insert(InstanceList,LastIns)
  549. LastIns[parnt] = CurPar
  550. end
  551. end)
  552. table_remove(ICList,1)
  553. table_foreach(ICList,function(a,b)
  554. b = split(b,">")
  555. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  556. end)
  557.  
  558. return Model:GetChildren()
  559. end
  560.  
  561. local Objects = Decode('Name,Transparency,Position,Orientation,Size,BackSurface,BottomSurface,FrontSurface,LeftSurface,RightSurface,TopSurface,MaxTorque,CFrame,Velocity,MaxForce,C0,C1,Part0,Part1,Value,Color,Offset,Scale,Reflectance,Texture,Face,MeshType,CanCollide,Enabled,Heat,Secondar'
  562. ..'yColor,BackgroundColor3,BackgroundTransparency,BorderSizePixel,Image,Text,TextWrapped,TextColor3,BorderColor3;Part,Model,BodyGyro,BodyVelocity,Weld,HopperBin,LocalScript,Script,ObjectValue,BrickColorValue,BoolValue,NumberValue,Seat,BlockMesh,WedgePart,Decal,Speci'
  563. ..'alMesh,CylinderMesh,Fire,ScreenGui,Frame,ImageButton,TextButton,TextBox,TextLabel,RotateP;Part|EngineSystem|Engines|Engine|1|63.4929,8.7,-59.6001|0,90,0|11,1.2,4|2|40000000000,40000000000,40000000000|-4.38,9.1103,7.7223,1,-0.0001,-0.0001,0,1,-0.0001,0,0,1|0,0,0|i'
  564. ..'nf,inf,inf|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|-3,-1,-0.5001,-1,-0.0001,0,-0.0001,-1,-0,-0.0001,-0,1|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|0,3.2,-1.5,1,-0.0001,0,-0.0001,1,0,0,0,1|3,-1,-0.5001,-1,-0.0001,0,-0.0001,-1,0,-0.0001,-0.0001,1|Starship|Link|Main|Team|White|Turn|S'
  565. ..'peed|0.0666,0.0666,0.0666|28.4929,2,-57.1001|2,0.4,2|BodyKit|0.7686,0.1568,0.1098|56.9929,3,-64.1001|0,-90,0|2,2,1|0|0,0,-0.9|0.6999,1,1|0,0,0,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|3.5,0,-41,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|56.9929,5.'
  566. ..'5,-64.1001|2,1,1|0.6999,0.8,1|0,0,0,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|3.5,2.5,-41,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|53.4929,4.5,-71.6001|9,1,4|-4,1.4999,-37.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|51.4929,3.5988,-64.600'
  567. ..'1|0,90,63.0299|3,0.4,2|0.8,1,0.8999|0,0,0,0.4535,0.8912,-0.0001,-0.8913,0.4535,0,0,-0.0001,1|2.9999,0.5988,-35.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|51.4929,3.3988,-64.6001|3,0.3988,-35.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|47.4929,3.5'
  568. ..'987,-64.6001|3,0.5987,-31.5001,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|56.9929,7.5,-64.1001|3.5,4.5,-41,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|56.9929,6.5,-64.1001|3.5,3.5,-41,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|62.4929,7.6,-62.'
  569. ..'6001|90,-90,0|5,6,1|0,0,0,-1,-0.0001,0,-0.0001,-0.0001,-1,0,-1,0|5,4.5999,-46.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|51.9929,10.5,-62.6001|0,180,0|5,1,1|0,0,-0.5|1.0499,1.1,0.25|0,0,0,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|5,7.4999,-36,-1,-'
  570. ..'0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|53.4929,10.5,-63.6001|8,1,3|0,0,0,0,0,1,-0.0001,1,-0.0001,-1,-0.0001,0|4,7.4999,-37.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|57.9929,4.5,-64.1001|2,7,1|3.4999,1.4999,-42,-1,-0.0001,0,-0.0001,1,-0.0001,-0.00'
  571. ..'01,-0.0001,-1|62.4929,2.5,-63.1001|6,6,1|4.4999,-0.5,-46.5001,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|62.4929,5.0999,-65.6001|72.8099,179.99,-90.0101|1,6,6|0,0,0,-0.9554,-0.2956,0,0,-0.0001,-1.0001,0.2955,-0.9554,0|2,2.0999,-46.5001,-1,-0.0001,0,-0.0001'
  572. ..',1,-0.0001,-0.0001,-0.0001,-1|61.4929,7.5,-66.6001|1,5,6|0,0,0,-1.0001,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1.0001|1,4.5,-45.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|61.4929,3,-66.6001|1,4,6|1,0,-45.5001,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-'
  573. ..'0.0001,-1|0.2|64.9929,4.1,-65.6001|1,2,1|0.5,1,1|0,0,0,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|2,1.0999,-49,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|64.9929,5.1,-63.1|1,4,4|4.5,2.1,-49.0001,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|http://www.'
  574. ..'roblox.com/asset/?id=36560491|3|58.3933,9.5,-64.1|0,-180,0|3,3,3|0,0,0,-0.0001,0,-1,-0.0001,0.9999,0,0.9999,0,-0.0001|3.5,6.4999,-42.4004,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|52.9929,5.5,-71.6001|9,1,3|0,0,0,-1,-0.0001,0,-0.0001,1,-0.0001,0,-0.0001,-'
  575. ..'1.0001|-4.0001,2.5,-37,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|53.4929,4.5,-76.6001|0,0,90|1,4,1|0,0,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1,-1,-0.0001,-0.0001|-9,1.4999,-37.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|48.4929,5,-70.1001|6,2,6|0,0'
  576. ..',0,-1,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,-0.0001,-0.0001,-1|-2.5,2,-32.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|48.4929,5,-74.6001|2,6,3|0,0,0,-0.0001,0.9999,-0.0001,0,-0.0001,-1.0001,-1.0001,-0.0001,0|-7,2,-32.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0'
  577. ..'001,-0.0001,-1|42.9929,9.4999,-64.1001|0,-180,-90|3,31,3|0,0,0,0,-1,0,0,-0.0001,-1,1,0,-0.0001|3.5,6.4999,-27.0001,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.4929,9,-66.1001|30,2,2|0,0,0,0,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,-0.0001|1.5,5.9999,-26.5,-'
  578. ..'1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,9.4142,-66.3929|0,90,135|1,1,29|0,0.8999,0|0,0,0,-0.7072,0.707,0,-0.7071,-0.7072,0,0,0,0.9999|1.2071,6.4141,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,8.7,-64.6001|1,1,31|0,0,0,-1,-0.0001'
  579. ..',0,-0.0001,1,-0.0001,0,-0.0001,-1|3,5.7,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,6,-68.1001|31,4,2|-0.5001,3,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|43.4929,5,-70.1001|2,4,6|0,0,0,-0.0001,0.9999,-0.0001,-0.0001,-0.0001,-1.0001,-'
  580. ..'1.0001,-0.0001,-0.0001|-2.5,2,-27.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,5.5652,-68.8765|0,90,116.5699|0,0,0,-0.4473,0.8943,0,-0.8944,-0.4473,0,0,0,1|-1.2764,2.5652,-27.0001,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|38.4929,10.5,-63.1'
  581. ..'001|22,1,4|4.5,7.4999,-22.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|21.9929,2.5,-54.6001|1,3,11|0,0,0,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|12.9999,-0.5,-6,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|53.4929,4.5,-42.6001|0,180,-9'
  582. ..'0|0,0,0,0,-1,0,-0.0001,-0.0001,-1,0.9999,0,0|24.9999,1.4999,-37.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|47.4929,2.1,-63.1001|0,0,180|0|0.8999,1,0.8999|0,0,0,-0.0001,-0.0001,-1,0,-1,0,-1,-0.0001,-0.0001|4.5,-0.9,-31.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.'
  583. ..'0001,-0.0001,-1|21.9929,3,-66.6001|3,2,11|1,0,-6,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|0.3882,0.3725,0.3843|51.4929,1.4,-63.1001|2,0.8,2|0.5,1.5,0.5|0,0,0,-0.0001,-0.0001,-1,0,-1,0,-1,-0.0001,0|4.5,-1.6001,-35.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,'
  584. ..'-0.0001,-1|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.2,0,1,0,0,0,-0.0001,1,-0,-1,0|54.9929,5.5,-57.6001|0,90,-90|9,1,1|1,0.5,0.25|0,0,0,0,-1,0,0.9999,0,-0.0001,0,0,0.9999|9.9999,2.5,-39,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|54.9929,5.5,-61.6001|5.9999,2.5'
  585. ..',-39,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|47.4929,3.3987,-64.6001|0,0,0,0.4535,0.8912,-0.0001,-0.8913,0.4535,0,0,-0.0001,0.9999|2.9999,0.3987,-31.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|27.4929,9.4999,-64.1001|0,0,0,-0.0001,0,-1,0,1,0,0.9'
  586. ..'999,0,-0.0001|3.5,6.4999,-11.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|21.9929,2.5,-64.6001|3,-0.5,-6,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|21.9929,7,-64.6001|1,6,11|0,0,0,0.9999,0,-0.0001,-0.0001,1,-0.0001,0,0,0.9999|3,4,-6,-1,-0.0001,0,-0.'
  587. ..'0001,1,-0.0001,-0.0001,-0.0001,-1|MainPart|0.9607,0.8039,0.1882|15.9929,3,-67.6001|51.4929,2.1,-63.1001|0,0,0,-0.0001,0,-1,0,-1,-0.0001,-1,-0.0001,0|4.5,-0.9,-35.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|0,0,0,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|4.5,-1.6001,-35.5,'
  588. ..'-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|0,-0.2,0,1,0,0,0,0,1,0,-1,-0.0001|18.4929,2.5,-59.6001|9,3,4|0,0,0,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|7.9999,-0.5,-2.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|47.4929,2.2,-57.6001|3,0.4,10|1.1,1,'
  589. ..'1.0499|10,-0.8,-31.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,4.5,-67.6001|1,1,11|0,0,0,1,0,-0.0001,-0.0001,1,0,0,-0.0001,1|0,1.5,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,7,-54.6001|13,4,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,6,-53.1001|2,4'
  590. ..',11|14.5,3,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|0.5|21.0818,7.0726,-59.6001|28.61,-90,0|9,1,9|0,-1,0|1,0.5,1.2|0,0,0,-1,0,0,0,0.8779,-0.4788,-0.0001,-0.4788,-0.878|8,4.0726,-5.0889,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|43.4929,3.3985,-64.6001|3,0.3985,-27.5,-'
  591. ..'1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,1.5,-67.6001|0,90,180|0,0,0,-1,-0.0001,0,0,-1,-0.0001,0,-0.0001,1|0,-1.5,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,1,-66.1001|2,2,11|0,0,1|30|25|1,1,1|1.5,-2,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,6,-6'
  592. ..'6.1001|1.5,3,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|47.4929,1.4,-63.1001|4.5,-1.6001,-31.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,1,-53.1001|0,0,0,-1,0,0,-0.0001,-1,-0.0001,0,-0.0001,1|14.5,-2,-6,-1,0,0,0,1,0,-0.0001,0,-1|50.4929,7,-54.6001|6,2,1|1,0.5,1'
  593. ..'|0,0,0,-0.0001,0,-1,0,1,0,1,-0.0001,-0.0001|13,4,-34.5,-1,0,0,0,1,0,-0.0001,0,-1|50.4929,2,-54.6001|13,-1,-34.5,-1,0,0,0,1,0,-0.0001,0,-1|0.4549,0.5254,0.6156|44.4929,4.5,-54.6001|1,3,4|0.8999,0,0|http://www.roblox.com/asset/?id=23661720|0,0,0,-1,0,0,0,1,0,-0.000'
  594. ..'1,0,-1|13,1.5,-28.5,-1,0,0,0,1,0,-0.0001,0,-1|0.9499,0,1|1,1.1,1.6|55.4929,4.5,-54.6001|0.8,0.8,1|0,0,0,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|13,1.5,-39.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|56.9929,6.5,-55.1001|2,3,1|http://www.roblox.com/asset/?id='
  595. ..'21128316|0,0,0,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|12.5,3.5,-41,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|56.9929,3.5,-55.1001|12.5,0.5,-41,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|56.9929,2.5,-55.1001|12.5,-0.5,-41,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|43.4929,2,-54.'
  596. ..'6001|13,-1,-27.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|51.4929,4.5,-54.6001|http://www.roblox.com/asset/?id=25318828|13,1.5,-35.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|47.4929,1.5,-57.6001|3,1,10|10,-1.5,-31.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|48.4929,5,-44.6'
  597. ..'001|0,0,0,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|23,2,-32.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|43.4929,1.4,-63.1001|0,0,0,-0.0001,-0.0001,-1,-0.0001,-1,0,-1,0,0|4.5,-1.6001,-27.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|0,-0.2,0,1,0,0,0,-0.0001,1,0,-1,'
  598. ..'0|43.4929,2.1,-63.1001|4.5,-0.9,-27.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|27.4929,2,-67.1001|4,4,4|0.5,-1,-11.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|-256,10,256,-1,0,0,0,0,1,0,1,0|283.4929,-2.0001,-323.1001,1,0,0,0,-0.0001,1,0,-1,0|27.4929,2,-52.1001|15.5,-1,-'
  599. ..'11.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|283.4929,-2.0001,-308.1001,1,0,0,0,-0.0001,1,0,-1,0|27.4929,9.4999,-55.1001|12.5,6.4999,-11.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|27.4929,9.4999,-59.6001|0,-90,-90|3,10,3|1,0.8999,1|0,0,0,0,-1,0,-1,-0.0001,'
  600. ..'0,-0.0001,-0.0001,-1|8,6.4999,-11.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|52.9929,5.5,-47.6001|0,-90,180|0,0,0,1,0,-0.0001,0,-1,0,-0.0001,-0.0001,-1|20,2.5,-37,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|43.4929,5,-49.1001|0,0,0,0,-1,0,-0.0001,-'
  601. ..'0.0001,-1,1,0,-0.0001|18.5,2,-27.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|53.4929,4.5,-47.6001|20,1.5,-37.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,5.5652,-50.3237|0,-90,116.5599|0,0,0,0.4471,0.8944,0,0.8944,-0.4472,-0.0001,0,0,-1|17.'
  602. ..'2763,2.5652,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|48.4929,5,-49.1001|18.5,2,-32.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,6,-51.1001|16.5,3,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,0.5,-59.6001|15,1,31|8,-2.5'
  603. ..',-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|0,0.5,0,-1,-0,-0,0,0,1,0,1,0|4.5,0.4,3.5,0,1,0,0,0,-1,-1,0,0|8.5,0.4,3.5,0,1,0,-0.0001,0,-1,-1,0,-0.0001|0.5,0.4,3.5,0,1,0,-0.0001,0,-1,-1,0,-0.0001|-8.5,-0.4001,3.5,0,-1,0,-0.0001,0,1,-1,0,0|2.5,0.4,-14.5,1,'
  604. ..'-0.0001,0,-0.0001,0,-1,-0.0001,1,0|11.5,0.4,-2.5,0,-1,0,-0.0001,0,-1,1,0,0|315.6,-0.5001,298.9929,0,1,-0.0001,0,-0.0001,1,1,0,0|42.9929,2,-67.1001|4,31,4|0.5,-1,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|2,298.9929,-323.1001,0,0,-1,1,0,0,0,-1,0|42.9929'
  605. ..',9.4142,-52.8072|0,90,-135|0,0,0,-0.7071,-0.7072,0,0.7071,-0.7071,0,0,0,1|14.7928,6.4141,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|38.4929,10.5,-59.6001|3,1,22|8,7.5,-22.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|0,-0.2,-7.5,-1,0,-0.0001,0,0,'
  606. ..'1,-0.0001,1,0|42.4929,9,-53.1001|14.5,5.9999,-26.5,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,3,-51.1001|2,2,31|16.5,0,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,2,-52.1001|15.5,-1,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.00'
  607. ..'01,-1|2,298.9929,-308.1001,0,0,-1,1,0,0,0,-1,0|42.9929,4.5,-53.6001|1,7,31|14,1.5,-27,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|42.9929,8.5,-54.6001|13,5.5,-27,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|42.9929,9.4999,-55.1001|-90,90,0|0,0,0,1,0,-0.0001,-0.000'
  608. ..'1,0,-1,-0.0001,1,0|12.5,6.4999,-27,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|38.4929,10.5,-56.1001|0,0,0,-0.0001,0,-1,-0.0001,1,0,1,0,-0.0001|11.5,7.5,-22.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|61.4929,3,-52.6001|15,0,-45.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|61.4'
  609. ..'929,7.5,-52.6001|15,4.5,-45.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|53.4929,10.5,-55.6001|12,7.4999,-37.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|57.9929,4.5,-55.1001|12.5,1.5,-42,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|62.4929,5.0999,-53.6001|72.8099,0.0099,90.01|0,'
  610. ..'0,0,-0.9554,0.2955,-0.0001,-0.0001,-0.0001,-1.0001,-0.2956,-0.9554,0|14,2.0999,-46.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|64.9929,4.1,-53.6001|14,1.1,-49,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|51.9929,10.5,-56.6001|11,7.5,-36,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1'
  611. ..'|58.3933,9.4999,-55.1001|12.5,6.4999,-42.4004,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|51.9929,10.5,-59.6001|5,1,5|8,7.5,-36,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|1|4|55.9929,10.5,-59.6001|5,1,3|8,7.5,-40,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|62.4929,7.6,-56.6001|0,'
  612. ..'0,0,-1,-0.0001,0,-0.0001,0,-1,0,-1,-0.0001|11,4.5999,-46.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|62.4929,2.5,-56.1001|0,0,0,-1,0,0,-0.0001,0,-1,-0.0001,-1,-0.0001|11.5,-0.5,-46.5,-1,0,0,0,1,0,-0.0001,0,-1|64.9929,5.1,-56.1001|0,0,0,0,-0.0001,1,0,1,0,-1,0,0|11.5,2'
  613. ..'.1,-49,-1,0,0,0,1,0,-0.0001,0,-1|54.9929,10.5,-59.6001|1,1.1,0.25|0,0,0,1,-0.0001,-0.0001,0,1,0,0,-0.0001,1|8,7.5,-39,-1,0,0,0,1,0,-0.0001,0,-1|48.9929,10.5,-59.6001|8,7.5,-33,-1,0,0,0,1,0,-0.0001,0,-1|57.9929,1.5,-59.6001|7,1,1|8,-1.5,-42,-1,0,0,0,1,0,-0.0001,0,'
  614. ..'-1|57.9929,3,-59.6001|7,2,1|1,1,0.2|8,0,-42,-1,0,0,0,1,0,-0.0001,0,-1|57.9929,6.5,-59.6001|7,3,1|8,3.5,-42,-1,0,0,0,1,0,-0.0001,0,-1|57.9929,4.5,-59.6001|8,1.5,-42,-1,0,0,0,1,0,-0.0001,0,-1|59.9929,9.5,-59.6001|13,1,3|8,6.5,-44,-1,0,0,0,1,0,-0.0001,0,-1|57.9929,9'
  615. ..',-59.6001|15,2,1|8,6,-42,-1,0,0,0,1,0,-0.0001,0,-1|62.4929,5,-58.6001|9,2,-46.5,-1,0,0,0,1,0,-0.0001,0,-1|59.9929,5.5,-59.6001|13,7,3|8,2.5,-44,-1,0,0,0,1,0,-0.0001,0,-1|62.4929,5,-60.6001|7,2,-46.5,-1,0,0,0,1,0,-0.0001,0,-1|61.4929,1.5,-59.6001|13,1,6|8,-1.5,-45'
  616. ..'.5,-1,0,0,0,1,0,-0.0001,0,-1|43.4929,7,-54.6001|13,4,-27.5,-1,0,0,0,1,0,-0.0001,0,-1|43.4929,3.5985,-64.6001|3,0.5985,-27.5,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|42.9929,3,-68.1001|-0.5,0,-27,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|42.9929,4.5,-65.6001|2,1.5,-27,-1'
  617. ..',0,0,0,1,-0.0001,-0.0001,-0.0001,-1|54.9929,1.5,-59.6001|0,0,0,1,-0.0001,-0.0001,0,1,-0.0001,0,0,1|8,-1.5,-39,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|54.9929,9.5,-59.6001|0,0,0,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|8,6.5,-39,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|54.9'
  618. ..'929,3.5,-59.6001|8,0.5,-39,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|54.9929,7.5,-59.6001|8,4.5,-39,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|54.9929,5.5,-59.6001|8,2.5,-39,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|36.9929,5.5,-55.6001|3,9,1|0,0,0,-1,0,-0.0001,0,1,-0.0001,0,'
  619. ..'-0.0001,-1|12,2.5,-21,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|36.9929,5.5,-63.6001|4,2.5,-21,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|36.9929,9.5,-59.6001|8,6.5,-21,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|0,-0.6001,0|1,0.2,1.2|36.9929,5,-62.6001|0,-90,90|8,1,1|0,0,0,0,1'
  620. ..',-0.0001,1,-0.0001,0,0,-0.0001,-1|5,2,-21,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|36.9929,5,-56.6001|0,90,90|0,0,0,0,1,-0.0001,-1,0,-0.0001,-0.0001,0,1|11,2,-21,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|37.9929,4.5,-55.6001|3,7,1|12,1.5,-22,-1,0,-0.0001,0,1,-0.0001,0,-'
  621. ..'0.0001,-1|37.9929,4.5,-63.6001|4,1.5,-22,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|35.9929,4.5,-63.6001|4,1.5,-20,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|35.9929,4.5,-55.6001|12,1.5,-20,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|27.4929,4.5,-65.1001|'
  622. ..'2,7,2|1,1.2,1|0,0,0,0,-0.0001,-1,0,-1,0,-1,-0.0001,-0.0001|2.5,1.5,-11.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|27.4929,4.5,-54.1001|13.5,1.5,-11.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|32.4929,5.5,-54.6001|6,1,1|0,0,0,0,-0.0001,-1,-0.0001,'
  623. ..'1,-0.0001,1,0,0|13,2.5,-16.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|32.4929,3.5,-54.6001|6,3,1|1,0.8,1|13,0.5,-16.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|32.4929,6.5,-54.6001|13,3.5,-16.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|20'
  624. ..'.4929,2.5,-59.6001|1,3,8|8,-0.5,-4.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|25.5925,2.8999,-59.6001|-22.9201,-90,0|1,0.1,1|0,0,0,-1,0,0,0,0.921,0.3894,-0.0001,0.3894,-0.9211|8,-0.1001,-9.5997,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|24.4929,3,'
  625. ..'-59.6001|90,0,0|2,1,2|0,0,0,-0.0001,0,1,-1,-0.0001,-0.0001,0,-1,0|8,0,-8.5,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|25.5925,2.8999,-57.1001|4,1,3|0,0.0099,0|0.8999,0.1,0.8999|10.5,-0.1001,-9.5997,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|25.5925,'
  626. ..'2.8999,-62.1001|5.5,-0.1001,-9.5997,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|31.4929,3.9004,-64|-22.9201,-180,0|0,0.0099,-0.1501|0.8999,0.1,0.75|0,0,0,-0.0001,0,-1,-0.3895,0.921,0,0.921,0.3894,-0.0001|3.6,0.9004,-15.5,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-'
  627. ..'1|31.9929,3.9004,-64|3.6,0.9004,-16,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|33.9929,4,-65.1001|0,0,0,-1,-0.0001,-0.0001,0,0,-1,0,-1,-0.0001|2.5,1,-18,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|33.9929,2.5,-65.1001|1,3,2|0,0,0,0,0,-1,-0.0001,1,0,1,0,0|2.5,-0.5,-18,-1,-0.'
  628. ..'0001,-0.0001,-0.0001,1,0,0,0,-1|WeldScript|29.9929,3.3985,-57.1001|0,0,63.0299|0,0,0,0,0.8912,0.4535,-0.0001,0.4535,-0.8913,-1,-0.0001,0|10.5,0.3985,-14,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|29.9929,3.5985,-57.1001|10.5,0.5985,-14,-1,-0.0001,-0.0001,-0.0001,1,0,0'
  629. ..',0,-1|28.4929,1.4,-57.1001|0,0,0,1,0,-0.0001,0,-1,-0.0001,-0.0001,0,-1|10.5,-1.6001,-12.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|0,-0.2,0,1,-0.0001,0,0,0,1,0,-1,0|28.4929,2.1,-57.1001|10.5,-0.9,-12.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,4.5,-51.6001|16,1.'
  630. ..'5,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|31.4929,2.1,-62.1001|0,-180,180|0,0,0,0,-0.0001,1,0,-1,-0.0001,1,0,-0.0001|5.5,-0.9,-15.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|31.4929,3.3986,-60.6001|0,-90,63.02|0,0,0,-0.4537,0.8911,0,0.8911,0.4536,0,-0.0001,0,-1|7,0.'
  631. ..'3986,-15.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|31.4929,3.5986,-60.6001|7,0.5986,-15.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|31.4929,1.4,-62.1001|0,180,180|5.5,-1.6001,-15.5,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,0.5,-59.6001|0,90,-180|11,1,11|8,-2.5,-6,-'
  632. ..'1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|15.9929,3,-53.6001|3,2,1|14,0,0,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|15.9929,2.5,-59.6001|9,3,1|8,-0.5,0,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|15.9929,3,-65.6001|2,0,0,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|15.9929,3,-51.6001|'
  633. ..'16,0,0,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,1.5,-51.6001|16,-1.5,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|21.9929,3,-52.6001|15,0,-6,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|OtherSeat|31.4929,2,-62.1001|5.5,-1,-15.5,-1,0,0,0,1,0,-0.0001,0,-1|43.4929,2,-63.1'
  634. ..'001|4.5,-1,-27.5,-1,0,0,0,1,0,-0.0001,0,-1|47.4929,2,-63.1001|4.5,-1,-31.5,-1,0,0,0,1,0,-0.0001,0,-1|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|0,-0.4,0,1,0,0,0,0,1,0,-1,-0.0001|51.4929,2,-63.1001|4.5,-1,-35.5,-1,0,0,0,1,0,-0.0001,0,-1|NewTar|30.9929,11.2,-59.6001|1,0.4,1|'
  635. ..'EngineGUI|0.05,0,0.6,0|0.8999,0,0.3,0|0.3|MainControls|0.3,0,0,0|0.4,0,1,0|0.7411,0.7372,0.749|YawUp|0.0099,0,0.35,0|0.2899,0,0.3,0|http://www.roblox.com/asset/?id=32649146|YawDown|0.6999,0,0.35,0|0.3,0,0.3,0|0.745,0.7411,0.7529|http://www.roblox.com/asset/?id=32'
  636. ..'649096|PitchUp|0.31,0,0.05,0|0.3799,0,0.28,0|http://www.roblox.com/asset/?id=32649103|PitchDown|0.31,0,0.6699,0|0.749,0.745,0.7568|http://www.roblox.com/asset/?id=32648978|RollUp|0.0099,0,0.05,0|0.2899,0,0.28,0|0.9764,0.9764,0.9764|http://www.roblox.com/asset/?id'
  637. ..'=32649125|RollDown|0.6999,0,0.05,0|0.2999,0,0.28,0|http://www.roblox.com/asset/?id=32649055|EmergancyStop|0.31,0,0.3499,0|0.3799,0,0.3,0|http://www.roblox.com/asset/?id=30533474|SpeedUp|0.0099,0,0.67,0|Increase Speed|SpeedDown|0.6999,0,0.6699,0|Decrease Speed|Imp'
  638. ..'ut|0.6999,0,0,0|0.3,0,1,0|Enter|0.2,0,1,0|Engage|Fix|0.2,0,0,0|0.25,0,1,0|Normalize|YawIN|0.5,0,0,0|0.5,0,0.5,0|Imput Yaw|PitchIN|Imput Pitch|Readouts|CurrentSpeed|0.03,0,0.05,0|0.9499,0,0.8999,0|Current Speed:|GUIControls|0.05,0,0.5,0|0.15,0,0.1,0|Hide|0,0,0,10|'
  639. ..'1,0,0,40|1,1,0|STFU NOOB;0,6>18>3,6>19>332,7>18>3,7>19>370,8>18>3,8>19>44,22>18>20,22>19>138,25>18>23,25>19>138,28>18>26,28>19>138,31>18>29,31>19>138,34>18>32,34>19>138,37>18>35,37>19>138,40>18>38,40>19>138,43>18>41,43>19>138,46>18>44,46>19>138,49>18>47,49>19>138'
  640. ..',51>18>50,51>19>138,54>18>52,54>19>138,57>18>55,57>19>138,60>18>58,60>19>138,62>18>61,62>19>138,65>18>63,65>19>138,68>18>66,68>19>138,71>18>69,71>19>138,75>18>73,75>19>138,78>18>76,78>19>138,80>18>79,80>19>138,83>18>81,83>19>138,85>18>84,85>19>138,88>18>86,88>19>'
  641. ..'138,90>18>89,90>19>138,93>18>91,93>19>138,96>18>94,96>19>138,98>18>97,98>19>138,100>18>99,100>19>138,103>18>101,103>19>138,105>18>104,105>19>138,108>18>106,108>19>138,110>18>109,110>19>138,113>18>111,113>19>138,116>18>114,116>19>138,119>18>117,119>19>138,120>18>1'
  642. ..'17,120>19>538,123>18>121,123>19>138,126>18>124,126>19>138,129>18>127,129>19>138,132>18>130,132>19>138,135>18>133,135>19>138,137>18>136,137>19>138,142>18>140,142>19>138,145>18>143,145>19>138,146>18>143,146>19>538,149>18>147,149>19>138,152>18>150,152>19>138,154>18>'
  643. ..'153,154>19>138,156>18>155,156>19>138,158>18>157,158>19>138,161>18>159,161>19>138,164>18>162,164>19>138,166>18>165,166>19>138,169>18>167,169>19>138,171>18>170,171>19>138,174>18>172,174>19>138,177>18>175,177>19>138,180>18>178,180>19>138,183>18>181,183>19>138,187>18'
  644. ..'>184,187>19>138,190>18>188,190>19>138,193>18>191,193>19>138,197>18>194,197>19>138,200>18>198,200>19>138,203>18>201,203>19>138,206>18>204,206>19>138,210>18>207,210>19>138,213>18>211,213>19>138,216>18>214,216>19>138,218>18>217,218>19>138,221>18>219,221>19>138,222>1'
  645. ..'8>219,222>19>531,225>18>223,225>19>138,229>18>226,229>19>138,230>18,230>19>226,234>18>231,234>19>138,235>18,235>19>231,238>18>236,238>19>138,241>18>239,241>19>138,244>18>242,244>19>138,246>18>245,246>19>138,249>18>247,249>19>138,252>18>250,252>19>138,255>18>253,2'
  646. ..'55>19>138,257>18>256,257>19>138,261>18>258,261>19>138,262>18>258,262>19>172,263>18>258,263>19>117,264>18>258,264>19>219,265>18>258,265>19>143,266>18>258,266>19>487,267>18>258,267>19>505,268>18,268>19>258,272>18>269,272>19>138,273>18,273>19>269,276>18>274,276>19>1'
  647. ..'38,279>18>277,279>19>138,280>18>277,280>19>541,282>18>281,282>19>138,285>18>283,285>19>138,289>18>286,289>19>138,290>18,290>19>286,293>18>291,293>19>138,296>18>294,296>19>138,299>18>297,299>19>138,301>18>300,301>19>138,304>18>302,304>19>138,306>18>305,306>19>138,'
  648. ..'308>18>307,308>19>138,311>18>309,311>19>138,314>18>312,314>19>138,317>18>315,317>19>138,320>18>318,320>19>138,323>18>321,323>19>138,326>18>324,326>19>138,331>18>329,331>19>138,334>18>332,334>19>138,337>18>335,337>19>138,340>18>338,340>19>138,344>18>342,344>19>138'
  649. ..',347>18>345,347>19>138,350>18>348,350>19>138,354>18>351,354>19>138,358>18>355,358>19>138,361>18>359,361>19>138,363>18>362,363>19>138,366>18>364,366>19>138,369>18>367,369>19>138,372>18>370,372>19>138,375>18>373,375>19>138,378>18>376,378>19>138,381>18>379,381>19>13'
  650. ..'8,384>18>382,384>19>138,387>18>385,387>19>138,390>18>388,390>19>138,393>18>391,393>19>138,396>18>394,396>19>138,399>18>397,399>19>138,402>18>400,402>19>138,405>18>403,405>19>138,408>18>406,408>19>138,411>18>409,411>19>138,414>18>412,414>19>138,417>18>415,417>19>1'
  651. ..'38,420>18>418,420>19>138,423>18>421,423>19>138,426>18>424,426>19>138,430>18>428,430>19>138,434>18>432,434>19>138,437>18>435,437>19>138,440>18>438,440>19>138,443>18>441,443>19>138,446>18>444,446>19>138,449>18>447,449>19>138,452>18>450,452>19>138,455>18>453,455>19>'
  652. ..'138,458>18>456,458>19>138,461>18>459,461>19>138,464>18>462,464>19>138,467>18>465,467>19>138,470>18>468,470>19>138,473>18>471,473>19>138,476>18>474,476>19>138,479>18>477,479>19>138,483>18>481,483>19>138,486>18>484,486>19>138,489>18>487,489>19>138,490>18>487,490>19'
  653. ..'>17,493>18>491,493>19>138,495>18>494,495>19>138,498>18>496,498>19>138,501>18>499,501>19>138,504>18>502,504>19>138,507>18>505,507>19>138,508>18>505,508>19>528,511>18>509,511>19>138,514>18>512,514>19>138,516>18>515,516>19>138,519>18>517,519>19>138,522>18>520,522>19'
  654. ..'>138,524>18>523,524>19>138,527>18>525,527>19>138,530>18>528,530>19>138,533>18>531,533>19>138,536>18>534,536>19>138,537>18>534,537>19>172,540>18>538,540>19>138;2|1:2;n;2|1:3;n;1|1:4|2:5|3:6|4:7|5:8|6:9|7:9|8:9|9:9|10:9|11:9;n;3|12:10|13:11;4|14:12|15:13;5|16:14|17'
  655. ..':15;5|16:16|17:17;5|16:14|17:18;p;p;6|1:19;n;7;8;9|1:20;p;8|1:21;n;10|1:22|20:23;p;11|1:24|20:5;12|1:25;13|21:26|3:27|4:7|5:28|7:9|11:9|21:26|21:26;n;14;p;2|1:29;n;1|21:30|3:31|4:32|5:33|7:34|11:34|21:30|21:30;n;14|22:35|23:36;5|16:37|17:38;p;1|21:30|3:39|4:32|5:'
  656. ..'40|7:34|11:34|21:30|21:30;n;14|22:35|23:41;5|16:42|17:43;p;1|21:30|3:44|4:32|5:45|7:34|11:34|21:30|21:30;n;14;5|16:42|17:46;p;1|21:30|3:47|4:48|5:49|7:34|11:34|21:30|21:30;n;14|23:50;5|16:51|17:52;p;1|21:26|3:53|4:48|5:49|7:34|11:34|21:26|21:26;n;14;5|16:51|17:54'
  657. ..';p;1|21:30|3:55|4:48|5:49|7:34|11:34|21:30|21:30;n;14|23:50;5|16:51|17:56;p;1|21:30|3:57|4:32|5:40|7:34|11:34|21:30|21:30;n;14|22:35|23:41;5|16:42|17:58;p;1|21:30|3:59|4:32|5:40|7:34|11:34|21:30|21:30;n;14|22:35|23:41;5|16:42|17:60;p;1|21:26|3:61|4:62|5:63|7:34|1'
  658. ..'1:34|21:26|21:26;n;14;5|16:64|17:65;p;1|21:30|3:66|4:67|5:68|7:34|11:34|21:30|21:30;n;14|22:69|23:70;5|16:71|17:72;p;15|21:30|3:73|5:74|7:34|21:30|21:30;n;5|16:75|17:76;p;1|21:26|3:77|4:32|5:78|7:34|11:34|21:26|21:26;n;14;5|16:42|17:79;p;1|21:26|3:80|4:62|5:81|7:'
  659. ..'34|11:34|21:26|21:26;n;14;5|16:64|17:82;p;1|21:26|3:83|4:84|5:85|7:34|11:34|21:26|21:26;n;14;5|16:86|17:87;p;15|21:26|3:88|4:32|5:89|7:34|21:26|21:26;n;5|16:90|17:91;p;1|21:26|3:92|4:32|5:93|7:34|11:34|21:26|21:26;n;14;5|16:42|17:94;p;1|21:30|24:95|3:96|4:67|5:97'
  660. ..'|7:34|11:34|21:30|21:30;n;14|23:98;5|16:99|17:100;p;1|21:26|24:95|3:101|4:67|5:102|7:34|11:34|21:26|21:26;n;14|23:98;5|16:99|17:103;16|25:104|26:105;p;1|21:30|3:106|4:107|5:108|7:34|11:34|21:30|21:30;n;17|27:105;5|16:109|17:110;p;1|21:26|3:111|4:32|5:112|7:34|11:'
  661. ..'34|21:26|21:26;n;14;5|16:113|17:114;p;15|21:30|3:115|4:116|5:117|7:34|21:30|21:30;n;5|16:118|17:119;p;1|21:26|3:120|4:32|5:121|7:34|11:34|21:26|21:26;n;14;5|16:122|17:123;p;15|21:26|3:124|4:116|5:125|7:34|21:26|21:26;n;5|16:126|17:127;p;1|21:26|3:128|4:129|5:130|'
  662. ..'7:34|11:34|21:26|21:26;n;18;5|16:131|17:132;p;15|21:26|3:133|5:134|7:34|21:26|21:26;n;5|16:135|17:136;p;1|21:30|3:137|4:138|5:139|7:34|11:34|21:30|21:30;n;14|22:140;5|16:141|17:142;p;1|3:143|4:32|5:144|7:34|11:34;n;14;5|16:145|17:146;p;15|21:26|3:147|5:148|7:34|2'
  663. ..'1:26|21:26;n;5|16:135|17:149;p;15|21:26|3:150|4:116|5:151|7:34|21:26|21:26;n;5|16:152|17:153;p;1|21:30|3:154|4:155|5:139|7:34|11:34|21:30|21:30;n;14|22:140;5|16:156|17:157;p;15|21:26|3:158|5:159|7:34|21:26|21:26;n;5|16:135|17:160;p;1|21:26|3:161|4:32|5:162|7:34|1'
  664. ..'1:34|21:26|21:26;n;14;5|16:163|17:164;p;15|21:30|3:165|4:166|5:117|7:34|21:30|21:30;n;5|16:167|17:168;p;1|21:30|3:169|4:170|5:28|28:171|7:34|11:34|21:30|21:30;n;14|23:172;5|16:173|17:174;p;1|21:26|3:175|4:32|5:176|7:34|11:34|21:26|21:26;n;14;5|16:163|17:177;p;1|2'
  665. ..'1:178|3:179|4:170|5:180|7:9|11:9|21:178|21:178;n;14|23:181;5|16:182|17:183;5|16:184|17:185;p;1|21:26|3:186|4:187|5:188|7:34|11:34|21:26|21:26;n;14|22:69|23:189;5|16:190|17:191;p;1|21:26|3:192|4:187|5:188|7:34|11:34|21:26|21:26;n;14|22:69|23:189;5|16:190|17:193;p;'
  666. ..'1|21:26|3:194|4:48|5:49|7:34|11:34|21:26|21:26;n;14;5|16:195|17:196;p;1|21:30|3:197|4:107|5:108|7:34|11:34|21:30|21:30;n;17|27:105;5|16:198|17:199;p;1|21:26|3:200|4:32|5:162|7:34|11:34|21:26|21:26;n;14;5|16:42|17:201;p;15|21:26|3:202|4:7|5:203|7:34|21:26|21:26;n;'
  667. ..'5|16:204|17:205;p;1|1:206|21:207|24:95|3:208|4:32|5:97|7:34|11:34|21:207|21:207;n;14|22:35|23:41;p;1|21:30|3:209|4:170|5:28|28:171|7:34|11:34|21:30|21:30;n;14|23:172;5|16:210|17:211;p;1|21:30|2:5|3:179|5:180|7:9|11:9|21:30|21:30;n;14;5|16:212|17:213;5|16:214|17:2'
  668. ..'15;p;15|21:26|3:216|4:32|5:217|7:34|21:26|21:26;n;17|27:9;5|16:218|17:219;p;1|21:30|3:220|4:32|5:221|7:34|11:34|21:30|21:30;n;14|23:222;5|16:218|17:223;p;15|21:30|3:224|4:7|5:225|7:34|21:30|21:30;n;5|16:226|17:227;p;15|21:26|3:228|4:7|5:203|7:34|21:26|21:26;n;5|1'
  669. ..'6:226|17:229;p;15|21:26|3:230|4:7|5:231|7:34|21:26|21:26;n;5|16:226|17:232;p;1|21:30|2:233|3:234|4:235|5:236|7:34|11:34|21:30|21:30;n;14|22:237|23:238;5|16:239|17:240;p;1|21:26|3:241|4:48|5:49|7:34|11:34|21:26|21:26;n;14;5|16:51|17:242;p;15|21:30|3:243|4:244|5:22'
  670. ..'5|7:34|21:30|21:30;n;5|16:245|17:246;p;15|21:30|3:247|4:244|5:248|7:34|21:30|21:30;n;19|21:249|5:250|29:171|30:251|31:252|21:249|21:249;5|16:245|17:253;p;15|21:26|3:254|4:7|5:231|7:34|21:26|21:26;n;5|16:226|17:255;p;1|21:26|3:256|4:170|5:180|7:9|11:9|21:26|21:26;'
  671. ..'n;14|23:181;5|16:210|17:257;p;15|21:30|3:258|4:244|5:248|7:34|21:30|21:30;n;19|21:249|5:250|29:171|30:251|31:252|21:249|21:249;5|16:259|17:260;p;1|21:30|3:261|4:107|5:262|7:34|11:34|21:30|21:30;n;14|22:35|23:263;5|16:264|17:265;p;1|21:30|3:266|4:107|5:262|7:34|11'
  672. ..':34|21:30|21:30;n;14|22:35|23:263;5|16:264|17:267;p;1|21:268|3:269|4:32|5:270|7:34|11:34|21:268|21:268;n;14|22:271;16|25:272|26:105;5|16:273|17:274;p;1|21:30|3:269|4:32|5:270|7:34|11:34|21:30|21:30;n;14|22:275|23:276;5|16:273|17:274;p;1|21:30|3:277|4:67|5:78|7:34'
  673. ..'|11:34|21:30|21:30;n;14|22:35|23:278;5|16:279|17:280;p;1|21:30|3:281|4:32|5:282|7:34|11:34|21:30|21:30;n;14|22:35|23:41;16|25:283|26:9;5|16:284|17:285;p;1|21:30|3:286|4:32|5:40|7:34|11:34|21:30|21:30;n;14|22:35|23:41;5|16:284|17:287;p;1|21:30|3:288|4:32|5:40|7:34'
  674. ..'|11:34|21:30|21:30;n;14|22:35|23:41;5|16:284|17:289;p;1|21:30|3:290|4:67|5:262|7:34|11:34|21:30|21:30;n;14|22:35|23:263;5|16:279|17:291;p;1|21:268|3:292|4:32|5:270|7:34|11:34|21:268|21:268;n;14|22:271;16|25:293|26:105;5|16:284|17:294;p;1|21:30|3:292|4:32|5:270|7:'
  675. ..'34|11:34|21:30|21:30;n;14|22:275|23:276;5|16:284|17:294;p;1|21:26|3:295|4:32|5:296|7:34|11:34|21:26|21:26;n;14;5|16:284|17:297;p;15|21:26|3:298|4:166|5:125|7:34|21:26|21:26;n;5|16:299|17:300;p;1|21:26|3:301|4:170|5:180|7:9|11:9|21:26|21:26;n;14|23:181;5|16:302|17'
  676. ..':303;5|16:184|17:304;p;1|21:30|3:305|4:170|5:28|28:171|7:34|11:34|21:30|21:30;n;14|23:172;5|16:302|17:306;p;1|21:30|3:307|4:67|5:308|7:34|11:34|21:30|21:30;n;17|27:105;19|21:249|5:250|29:171|30:251|31:252|21:249|21:249;5|16:279|17:309;5|16:310|17:311;p;1|21:30|3:'
  677. ..'312|4:67|5:308|7:34|11:34|21:30|21:30;n;17|27:105;19|21:249|5:250|29:171|30:251|31:252|21:249|21:249;5|16:279|17:313;5|16:310|17:314;p;1|21:30|3:315|4:107|5:108|7:34|11:34|21:30|21:30;n;17|27:105;5|16:198|17:316;p;1|21:26|3:317|4:318|5:319|7:34|11:34|21:26|21:26;'
  678. ..'n;18|23:320;5|16:321|17:322;p;1|21:26|3:323|4:324|5:112|7:34|11:34|21:26|21:26;n;14;5|16:325|17:326;p;15|21:26|3:327|4:166|5:151|7:34|21:26|21:26;n;5|16:328|17:329;p;1|21:30|3:330|4:324|5:45|7:34|11:34|21:30|21:30;n;14;5|16:325|17:331;p;1|21:30|3:332|4:333|5:139|'
  679. ..'7:34|11:34|21:30|21:30;n;14|22:140;5|16:334|17:335;p;1|21:26|3:336|4:324|5:121|7:34|11:34|21:26|21:26;n;14;5|16:325|17:337;p;15|21:26|3:338|4:67|5:148|7:34|21:26|21:26;n;5|16:71|17:339;p;1|21:26|3:340|4:32|5:341|7:34|11:34|21:26|21:26;n;14;19|21:249|5:250|29:171|'
  680. ..'30:251|31:252|21:249|21:249;5|16:42|17:342;5|16:343|17:344;5|16:343|17:345;5|16:343|17:346;5|16:343|17:347;5|16:343|17:348;5|16:343|17:349;5|16:310|17:350;p;1|21:26|3:351|4:166|5:352|7:34|11:34|21:26|21:26;n;18;19|21:249|5:250|29:171|30:251|31:252|21:249|21:249;5'
  681. ..'|16:328|17:353;5|16:310|17:354;p;1|21:30|3:355|4:356|5:139|7:34|11:34|21:30|21:30;n;14|22:140;5|16:357|17:358;p;1|21:26|3:359|4:32|5:360|7:34|11:34|21:26|21:26;n;14;5|16:42|17:361;5|16:343|17:362;p;15|21:26|3:363|4:67|5:134|7:34|21:26|21:26;n;5|16:71|17:364;p;1|2'
  682. ..'1:26|3:365|4:32|5:366|7:34|11:34|21:26|21:26;n;14;5|16:42|17:367;p;1|21:26|3:368|4:166|5:352|7:34|11:34|21:26|21:26;n;18;19|21:249|5:250|29:171|30:251|31:252|21:249|21:249;5|16:328|17:369;5|16:310|17:370;p;1|21:26|3:371|4:32|5:372|7:34|11:34|21:26|21:26;n;14;5|16'
  683. ..':42|17:373;p;1|21:30|3:374|4:32|5:144|7:34|11:34|21:30|21:30;n;14;5|16:218|17:375;p;1|21:26|3:376|4:377|5:130|7:34|11:34|21:26|21:26;n;18;5|16:378|17:379;p;15|21:26|3:380|4:107|5:159|7:34|21:26|21:26;n;5|16:381|17:382;p;1|21:26|3:383|4:32|5:93|7:34|11:34|21:26|21'
  684. ..':26;n;14;5|16:218|17:384;p;15|21:26|3:385|4:32|5:89|7:34|21:26|21:26;n;5|16:218|17:386;p;15|21:30|3:387|4:107|5:74|7:34|21:30|21:30;n;5|16:381|17:388;p;1|21:26|3:389|4:32|5:78|7:34|11:34|21:26|21:26;n;14;5|16:218|17:390;p;1|21:26|3:391|4:392|5:85|7:34|11:34|21:26'
  685. ..'|21:26;n;14;5|16:393|17:394;p;1|21:30|24:95|3:395|5:97|7:34|11:34|21:30|21:30;n;14|23:98;5|16:212|17:396;p;1|21:30|3:397|4:170|5:68|7:34|11:34|21:30|21:30;n;14|22:69|23:70;5|16:210|17:398;p;1|21:30|3:399|4:107|5:108|7:34|11:34|21:30|21:30;n;17|27:105;5|16:198|17:'
  686. ..'400;p;1|21:30|3:401|4:32|5:402|28:171|7:34|11:34|21:30|21:30;n;14|23:263;5|16:218|17:403;16|25:104|26:404;16|25:104|26:405;p;1|21:26|3:406|4:32|5:407|7:34|11:34|21:26|21:26;n;14;5|16:218|17:408;p;1|21:26|3:409|4:62|5:63|7:34|11:34|21:26|21:26;n;14;5|16:410|17:411'
  687. ..';p;1|21:26|3:412|4:62|5:81|7:34|11:34|21:26|21:26;n;14;5|16:413|17:414;p;1|21:26|24:95|3:415|5:102|7:34|11:34|21:26|21:26;n;14|23:98;5|16:416|17:417;16|25:104|26:34;p;1|21:30|3:418|4:7|5:68|7:34|11:34|21:30|21:30;n;14|22:69|23:419;5|16:420|17:421;p;1|21:30|3:422|'
  688. ..'4:32|5:68|7:34|11:34|21:30|21:30;n;14|22:69|23:419;5|16:273|17:423;p;1|21:26|3:424|4:32|5:425|7:34|11:34|21:26|21:26;n;14;5|16:273|17:426;p;1|21:30|3:427|4:32|5:428|7:34|11:34|21:30|21:30;n;14|23:429;16|25:283|26:9;5|16:273|17:430;p;1|21:30|3:431|4:32|5:432|7:34|'
  689. ..'11:34|21:30|21:30;n;14|23:429;16|25:283|26:9;5|16:273|17:433;p;1|21:26|3:434|4:32|5:425|7:34|11:34|21:26|21:26;n;14;5|16:273|17:435;p;15|21:30|3:436|4:32|5:437|7:34|21:30|21:30;n;5|16:273|17:438;p;1|21:26|3:439|4:32|5:440|7:34|11:34|21:26|21:26;n;14;5|16:273|17:4'
  690. ..'41;p;1|21:26|3:442|4:62|5:85|7:34|11:34|21:26|21:26;n;14;5|16:413|17:443;p;1|21:26|3:444|4:32|5:445|7:34|11:34|21:26|21:26;n;14;5|16:273|17:446;p;1|21:26|3:447|4:62|5:85|7:34|11:34|21:26|21:26;n;14;5|16:413|17:448;p;1|21:26|3:449|4:32|5:450|7:34|11:34|21:26|21:26'
  691. ..';n;14;5|16:273|17:451;p;1|21:30|3:452|4:107|5:262|7:34|11:34|21:30|21:30;n;14|22:35|23:263;5|16:264|17:453;p;1|21:30|3:454|4:48|5:49|7:34|11:34|21:30|21:30;n;14|23:50;5|16:51|17:455;p;1|21:26|3:456|4:32|5:366|7:34|11:34|21:26|21:26;n;14;5|16:284|17:457;p;1|21:26|'
  692. ..'3:458|4:32|5:372|7:34|11:34|21:26|21:26;n;14;5|16:284|17:459;p;1|21:30|3:460|4:7|5:68|7:34|11:34|21:30|21:30;n;14|22:69|23:189;5|16:461|17:462;p;1|21:30|3:463|4:7|5:68|7:34|11:34|21:30|21:30;n;14|22:69|23:189;5|16:464|17:465;p;1|21:30|3:466|4:7|5:68|7:34|11:34|21'
  693. ..':30|21:30;n;14|22:69|23:189;5|16:464|17:467;p;1|21:30|3:468|4:7|5:68|7:34|11:34|21:30|21:30;n;14|22:69|23:189;5|16:464|17:469;p;1|21:30|3:470|4:7|5:68|7:34|11:34|21:30|21:30;n;14|22:69|23:189;5|16:464|17:471;p;1|21:26|3:472|4:32|5:473|7:34|11:34|21:26|21:26;n;14;'
  694. ..'5|16:474|17:475;p;1|21:26|3:476|4:32|5:473|7:34|11:34|21:26|21:26;n;14;5|16:474|17:477;p;1|3:478|4:32|5:68|7:34|11:34;n;14;5|16:474|17:479;p;1|21:26|3:478|4:32|5:68|7:34|11:34|21:26|21:26;n;14|22:480|23:481;5|16:474|17:479;p;1|21:30|3:482|4:483|5:484|7:34|11:34|2'
  695. ..'1:30|21:30;n;14|22:480|23:481;5|16:485|17:486;p;1|21:30|3:487|4:488|5:484|7:34|11:34|21:30|21:30;n;14|22:480|23:481;5|16:489|17:490;p;1|21:26|3:491|4:7|5:492|7:34|11:34|21:26|21:26;n;14|22:35|23:263;5|16:464|17:493;16|25:104|26:9;p;1|21:26|3:494|4:7|5:492|7:34|11'
  696. ..':34|21:26|21:26;n;14|22:35|23:263;5|16:464|17:495;16|25:104|26:9;p;1|21:30|3:496|4:32|5:492|7:34|11:34|21:30|21:30;n;14|22:35|23:263;5|16:37|17:497;p;1|21:30|3:498|4:32|5:492|7:34|11:34|21:30|21:30;n;14|22:35|23:263;5|16:37|17:499;p;1|21:26|3:500|4:170|5:501|7:34'
  697. ..'|11:34|21:26|21:26;n;18|23:502;5|16:503|17:504;p;1|21:26|3:505|4:170|5:501|7:34|11:34|21:26|21:26;n;18|23:502;5|16:503|17:506;p;1|21:30|3:507|4:107|5:508|7:34|11:34|21:30|21:30;n;14|22:35;5|16:509|17:510;p;1|21:30|3:511|4:107|5:512|7:34|11:34|21:30|21:30;n;14|22:'
  698. ..'35|23:513;5|16:509|17:514;p;1|21:30|3:515|4:107|5:508|7:34|11:34|21:30|21:30;n;14|22:35|23:263;5|16:509|17:516;p;1|21:26|3:517|4:32|5:518|7:34|11:34|21:26|21:26;n;14;5|16:37|17:519;p;1|21:26|3:520|4:521|5:112|7:34|11:34|21:26|21:26;n;14|23:522;5|16:523|17:524;p;1'
  699. ..'|21:26|3:525|4:526|5:527|7:34|11:34|21:26|21:26;n;18;5|16:528|17:529;p;1|21:178|3:530|4:521|5:531|7:34|11:34|21:178|21:178;n;14|22:532|23:533;5|16:523|17:534;p;1|21:178|3:535|4:521|5:531|7:34|11:34|21:178|21:178;n;14|22:532|23:533;5|16:523|17:536;p;1|21:178|3:537'
  700. ..'|4:538|5:531|7:34|11:34|21:178|21:178;n;14|22:539|23:540;5|16:541|17:542;p;1|21:26|3:543|4:538|5:407|7:34|11:34|21:26|21:26;n;14|23:522;5|16:541|17:544;p;1|21:30|3:545|4:62|5:527|7:34|11:34|21:30|21:30;n;18;5|16:546|17:547;p;1|21:30|3:548|4:67|5:549|7:34|11:34|21'
  701. ..':30|21:30;n;14;5|16:550|17:551;p;8|1:552;1|21:26|3:553|4:554|5:49|28:171|7:34|11:34|21:26|21:26;n;14;5|16:555|17:556;p;1|21:30|3:557|4:554|5:49|28:171|7:34|11:34|21:30|21:30;n;14|23:50;5|16:555|17:558;p;1|21:26|3:559|4:324|5:180|7:9|11:9|21:26|21:26;n;14|23:181;5'
  702. ..'|16:560|17:561;5|16:184|17:562;p;1|21:30|3:563|4:324|5:28|28:171|7:34|11:34|21:30|21:30;n;14|23:172;5|16:560|17:564;p;15|21:30|3:565|4:7|5:225|7:34|21:30|21:30;n;5|16:226|17:566;p;1|21:30|3:567|4:568|5:28|28:171|7:34|11:34|21:30|21:30;n;14|23:172;5|16:569|17:570;'
  703. ..'p;1|21:26|3:571|4:572|5:49|7:34|11:34|21:26|21:26;n;14;5|16:573|17:574;p;1|21:30|3:575|4:572|5:49|7:34|11:34|21:30|21:30;n;14|23:50;5|16:573|17:576;p;1|21:26|3:577|4:578|5:180|7:9|11:9|21:26|21:26;n;14|23:181;5|16:569|17:579;5|16:184|17:215;p;15|21:26|3:580|4:581'
  704. ..'|5:582|7:34|21:26|21:26;n;19|21:249|5:250|29:171|30:251|31:252|21:249|21:249;5|16:245|17:583;p;1|21:207|24:95|3:584|4:32|5:585|7:34|11:34|21:207|21:207;n;14|22:35|23:41;5|16:218|17:586;p;15|21:30|3:587|4:581|5:588|7:34|21:30|21:30;n;5|16:245|17:589;p;1|21:207|24:'
  705. ..'95|3:590|4:32|5:585|7:34|11:34|21:207|21:207;n;14|22:35|23:41;5|16:218|17:591;p;1|21:207|24:95|3:592|4:32|5:97|7:34|11:34|21:207|21:207;n;14|22:35|23:41;5|16:218|17:593;p;15|21:30|3:594|4:581|5:225|7:34|21:30|21:30;n;5|16:245|17:595;p;1|21:26|3:596|4:32|5:176|7:3'
  706. ..'4|11:34|21:26|21:26;n;14;5|16:218|17:597;p;13|1:598|21:26|3:599|5:28|7:9|11:9|21:26|21:26;n;14;5|16:416|17:600;p;13|1:598|21:26|3:601|4:107|5:28|7:9|11:9|21:26|21:26;n;14;5|16:264|17:602;p;13|1:598|21:26|3:603|4:107|5:28|7:9|11:9|21:26|21:26;n;14;5|16:264|17:604;'
  707. ..'5|16:605|17:606;p;13|1:598|21:26|3:607|4:107|5:28|7:9|11:9|21:26|21:26;n;14;5|16:264|17:608;p;p;1|1:609|2:5|3:610|4:32|5:611|6:9|7:9|8:9|9:9|10:9|11:9;20|1:612;n;21|1:21|3:613|5:614|32:12|33:615|34:171;n;21|1:616|3:617|5:618|32:619|33:5|34:171;n;22|1:620|3:621|5:'
  708. ..'622|32:619|33:233|35:623;22|1:624|3:625|5:626|32:627|33:233|35:628;22|1:629|3:630|5:631|32:627|33:233|35:632;22|1:633|3:634|5:631|32:635|33:233|35:636;22|1:637|3:638|5:639|32:640|33:233|35:641;22|1:642|3:643|5:644|32:635|33:233|35:645;22|1:646|3:647|5:648|32:635|'
  709. ..'33:233|35:649;23|1:650|3:651|5:639|32:252|33:233|34:171|36:652|37:5;23|1:653|3:654|5:644|32:252|33:233|34:171|36:655|37:5;p;21|1:656|3:657|5:658|32:619|33:5|34:171;n;23|1:659|5:660|32:12|33:233|34:171|36:661|38:252|37:5;23|1:662|3:663|5:664|32:252|33:233|34:171|3'
  710. ..'6:665|38:12|37:5;24|1:666|3:667|5:668|32:252|33:233|34:171|36:669|37:5;24|1:670|3:668|5:668|32:252|33:233|34:171|36:671|37:5;p;21|1:672|5:658|32:619|33:5|34:171;n;25|1:673|3:674|5:675|32:252|33:233|39:12|34:171|36:676|38:12;p;p;21|1:677|3:678|5:679|32:627|33:5|34'
  711. ..':171;n;23|1:680|3:681|5:682|32:683|33:233|39:640|34:171|36:680|38:252;p;p;26|1:684;p;')
  712. for _,Object in pairs(Objects) do
  713. Object.Parent = script and script.Parent==workspace and script or workspace
  714. end
  715. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement