Advertisement
lafur

Untitled

May 19th, 2020
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 68.10 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 32803
  3. local genv={}
  4. local Scripts = {
  5. function() local boom = false
  6.  
  7. function createExplosion(position)
  8.  
  9. explosion = Instance.new("Explosion")
  10. explosion.Position = position
  11. explosion.BlastRadius = 12
  12. explosion.Parent = game.Workspace
  13.  
  14. end
  15.  
  16. function onTouch(part)
  17. if boom == true then return end
  18. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  19. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  20. boom = true
  21. createExplosion(script.Parent.Parts.Engine.Position)
  22. script.Parent:BreakJoints()
  23. local stuff = script.Parent:children()
  24. for i=1,#stuff do
  25. if stuff[i].Name == "BodyKit" or
  26. stuff[i].Name == "Parts" then
  27. local parts = stuff[i]:children()
  28. for p = 1, #parts do
  29. if parts[p].className == "Part" then
  30. local velo = Instance.new("BodyVelocity")
  31. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  32. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  33. velo.Parent = parts[p]
  34. end
  35. end
  36. end
  37. end
  38. wait(4)
  39. script.Parent:remove()
  40. end
  41. end
  42.  
  43. script.Parent.Parts.Tip.Touched:connect(onTouch)
  44. end;
  45. function() local boom = false
  46.  
  47. function createExplosion(position)
  48.  
  49. explosion = Instance.new("Explosion")
  50. explosion.Position = position
  51. explosion.BlastRadius = 12
  52. explosion.Parent = game.Workspace
  53.  
  54. end
  55.  
  56. function onTouch(part)
  57. if boom == true then return end
  58. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  59. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  60. boom = true
  61. createExplosion(script.Parent.Parts.Engine.Position)
  62. script.Parent:BreakJoints()
  63. local stuff = script.Parent:children()
  64. for i=1,#stuff do
  65. if stuff[i].Name == "BodyKit" or
  66. stuff[i].Name == "Parts" then
  67. local parts = stuff[i]:children()
  68. for p = 1, #parts do
  69. if parts[p].className == "Part" then
  70. local velo = Instance.new("BodyVelocity")
  71. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  72. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  73. velo.Parent = parts[p]
  74. end
  75. end
  76. end
  77. end
  78. wait(4)
  79. script.Parent:remove()
  80. end
  81. end
  82.  
  83. script.Parent.Parts.Tip.Touched:connect(onTouch)
  84. end;
  85. function() bin=script.Parent
  86. plane=nil
  87. hold=false
  88. local debounce = false
  89. local planedebounce = false
  90. local stuntdebounce = false
  91. local controlling = false
  92.  
  93. function fire(pln,spn)
  94. local missile = bin.Rocket:clone()
  95. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  96.  
  97. missile.RocketScript.Disabled = false
  98. missile.Parent = game.Workspace
  99.  
  100. local creator_tag = Instance.new("ObjectValue")
  101. creator_tag.Value = game.Players.LocalPlayer
  102. creator_tag.Name = "creator"
  103. creator_tag.Parent = missile
  104.  
  105. missile.Owner.Value = pln
  106. end
  107.  
  108. function computeDirection(vec)
  109. local lenSquared = vec.magnitude * vec.magnitude
  110. local invSqrt = 1 / math.sqrt(lenSquared)
  111. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  112. end
  113.  
  114. function move(target, engine)
  115. local origincframe = engine:findFirstChild("BodyGyro").cframe
  116. local dir = (target - engine.Position).unit
  117. local spawnPos = engine.Position
  118.  
  119. local pos = spawnPos + (dir * 1)
  120.  
  121. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9899, 9899, 9899)
  122. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  123. wait(0.1)
  124. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  125. engine:findFirstChild("BodyGyro").cframe = origincframe
  126. end
  127.  
  128. function findPlane(player)
  129. local list = player.Character:GetChildren()
  130. for x = 1, #list do
  131. if (list[x].Name == "Plane") then
  132. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  133. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  134. return list[x]
  135. end
  136. end
  137. end
  138. return nil
  139. end
  140.  
  141. function onButton1Down(mouse)
  142. local vehicle = findPlane(script.Parent.Parent.Parent)
  143. if vehicle ~= nil and debounce == false and planedebounce == false then
  144. debounce = true
  145.  
  146. controlling = true
  147.  
  148. while true do
  149. wait()
  150. local engine = vehicle.Parts.Engine
  151. local position = mouse.Hit
  152. local target = position.p
  153. if engine:findFirstChild("FlyScript") ~= nil then
  154. move(target, engine)
  155. end
  156. if planedebounce == true or
  157. controlling == false then break end
  158. end
  159. wait(.1)
  160. debounce = false
  161. end
  162. end
  163.  
  164. function onButton1Up(mouse)
  165. controlling = false
  166. end
  167.  
  168. function onSelected(mouse)
  169. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  170. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  171. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  172. mouse.KeyDown:connect(onKeyDown)
  173. end
  174.  
  175. function onKeyDown(key)
  176. if (key~=nil) then
  177. key = key:lower()
  178. local vehicle = findPlane(script.Parent.Parent.Parent)
  179. if (vehicle==nil) then return end
  180. plane = vehicle.Parts
  181. local engine = vehicle.Parts.Engine
  182. if (key=="f") and (bin.Reload.Value == 0) then
  183. fire(vehicle,plane.Gun1)
  184. fire(vehicle,plane.Gun2)
  185. bin.Reload.Value = 1
  186. wait(1)
  187. bin.Reload.Value = 0
  188. end
  189. if (key=="x") and planedebounce == false then
  190. local power = plane.Engine:findFirstChild("FlyScript")
  191. if (power ~= nil) then
  192. power:remove()
  193. plane.Boost1.Transparency = 0.5
  194. plane.Boost2.Transparency = 0.5
  195. wait(0.1)
  196. plane.Boost1.Transparency = 0.6
  197. plane.Boost2.Transparency = 0.6
  198. wait(0.1)
  199. plane.Boost1.Transparency = 0.7
  200. plane.Boost2.Transparency = 0.7
  201. wait(0.1)
  202. plane.Boost1.Transparency = 0.8
  203. plane.Boost2.Transparency = 0.8
  204. wait(0.1)
  205. plane.Boost1.Transparency = 0.9
  206. plane.Boost2.Transparency = 0.9
  207. wait(0.1)
  208. plane.Boost1.Transparency = 1
  209. plane.Boost2.Transparency = 1
  210. wait(0.1)
  211. end
  212. end
  213. if (key=="y") then
  214. local power = plane.Engine:findFirstChild("FlyScript")
  215. if (power ~= nil) then return end
  216. local fly = script.FlyScript:clone()
  217. fly.Disabled = false
  218. fly.Parent = plane.Engine
  219. plane.Boost1.Transparency = 0.9
  220. plane.Boost2.Transparency = 0.9
  221. wait(0.1)
  222. plane.Boost1.Transparency = 0.8
  223. plane.Boost2.Transparency = 0.8
  224. wait(0.1)
  225. plane.Boost1.Transparency = 0.7
  226. plane.Boost2.Transparency = 0.7
  227. wait(0.1)
  228. plane.Boost1.Transparency = 0.6
  229. plane.Boost2.Transparency = 0.6
  230. wait(0.1)
  231. plane.Boost1.Transparency = 0.5
  232. plane.Boost2.Transparency = 0.5
  233. wait(0.1)
  234. plane.Boost1.Transparency = 0.4
  235. plane.Boost2.Transparency = 0.4
  236. wait(0.1)
  237. end
  238. if (key=="q") then
  239. local gear = plane.Gear
  240. if gear.Value == true then
  241. plane.Wheels3.CanCollide = false
  242. plane.Wheels3.Transparency = 1
  243. plane.Wheels4.CanCollide = false
  244. plane.Wheels4.Transparency = 1
  245. gear.Value = false
  246. wait(0.1)
  247. plane.Wheels2.CanCollide = false
  248. plane.Wheels2.Transparency = 1
  249. plane.Wheels5.CanCollide = false
  250. plane.Wheels5.Transparency = 1
  251. gear.Value = false
  252. wait(0.1)
  253. plane.Wheels1.CanCollide = false
  254. plane.Wheels1.Transparency = 1
  255. wait(0)
  256. plane.Wheels6.CanCollide = false
  257. plane.Wheels6Transparency = 1
  258. gear.Value = false
  259. else
  260. plane.Wheels1.CanCollide = true
  261. plane.Wheels1.Transparency = 0
  262. plane.Wheels6.CanCollide = true
  263. plane.Wheels6.Transparency = 0
  264. gear.Value = true
  265. wait(0.1)
  266. plane.Wheels2.CanCollide = true
  267. plane.Wheels2.Transparency = 0
  268. plane.Wheels5.CanCollide = true
  269. plane.Wheels5.Transparency = 0
  270. gear.Value = true
  271. wait(0.1)
  272. plane.Wheels3.CanCollide = true
  273. plane.Wheels3.Transparency = 0
  274. plane.Wheels4.CanCollide = true
  275. plane.Wheels4.Transparency = 0
  276. gear.Value = true
  277. end
  278. end
  279. if (key=="k") and planedebounce == false then
  280. wait()
  281. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  282. wait()
  283. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  284. wait()
  285. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  286. wait()
  287. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  288. end
  289. if (key=="h") and planedebounce == false then
  290. wait()
  291. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  292. wait()
  293. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  294. wait()
  295. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  296. wait()
  297. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  298. return end
  299. if (key=="j") and planedebounce == false then
  300. local body = plane.Engine.BodyGyro
  301. body.maxTorque = Vector3.new(9899, 9899, 9899)
  302.  
  303. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  304. local dir = position - engine.Position
  305.  
  306. dir = computeDirection(dir)
  307.  
  308. local spawnPos = engine.Position
  309.  
  310. local pos = spawnPos + (dir * 8)
  311.  
  312. body.cframe = CFrame.new(pos, pos + dir)
  313. wait(.2)
  314. body.maxTorque = Vector3.new(0, 0, 0)
  315. end
  316. if (key=="l") and planedebounce == false then
  317. local body = plane.Engine.BodyGyro
  318. body.maxTorque = Vector3.new(9899, 0, 0)
  319. local frame = plane:FindFirstChild("OriginCFrame")
  320. if frame ~= nil then
  321. body.cframe = frame.Value
  322. end
  323. wait(0.1)
  324. body.maxTorque = Vector3.new(0, 0, 0)
  325. end
  326. if (key=="u") and planedebounce == false then
  327. local body = plane.Engine.BodyGyro
  328. body.maxTorque = Vector3.new(9899, 9899, 9899)
  329.  
  330. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  331. local dir = position - engine.Position
  332.  
  333. dir = computeDirection(dir)
  334.  
  335. local spawnPos = engine.Position
  336.  
  337. local pos = spawnPos + (dir * 8)
  338.  
  339. body.cframe = CFrame.new(pos, pos + dir)
  340. wait(.2)
  341. body.maxTorque = Vector3.new(0, 0, 0)
  342. end
  343. if (key=="g") and planedebounce == false and stuntdebounce == false then
  344. planedebounce = true
  345. stuntdebounce = true
  346. plane.Parent.Stunt.Value = 1
  347. local body = plane.Engine.BodyGyro
  348. body.maxTorque = Vector3.new(9899, 9899, 9899)
  349.  
  350. local currentframe = plane.Engine.CFrame
  351.  
  352. for i = 1,6 do
  353. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  354. wait(.2)
  355. end
  356.  
  357. body.cframe = currentframe
  358. wait(.6)
  359.  
  360. body.maxTorque = Vector3.new(0, 0, 0)
  361. planedebounce = false
  362. plane.Parent.Stunt.Value = 0
  363. wait(3)
  364. stuntdebounce = false
  365. end
  366. if (key=="t") and planedebounce == false and stuntdebounce == false then
  367. planedebounce = true
  368. stuntdebounce = true
  369. plane.Parent.Stunt.Value = 1
  370. local body = plane.Engine.BodyGyro
  371. body.maxTorque = Vector3.new(9899, 9899, 9899)
  372.  
  373. local currentframe = plane.Engine.CFrame
  374. local valy = 30
  375. local valz = 30
  376.  
  377. for i = 1,8 do
  378. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  379. valy = valy +50
  380. valz = valz +100
  381. wait(.1)
  382. end
  383.  
  384. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  385.  
  386. wait(.5)
  387.  
  388. body.maxTorque = Vector3.new(0, 0, 0)
  389. planedebounce = false
  390. plane.Parent.Stunt.Value = 0
  391. wait(4)
  392. stuntdebounce = false
  393. end
  394. end
  395. end
  396.  
  397. bin.Selected:connect(onSelected)
  398. end;
  399. function() local engine = script.Parent.Parent.Engine
  400. local spd = 1
  401. local position = engine.Position
  402.  
  403. while true do
  404. wait(.1)
  405. direction = engine.CFrame.lookVector
  406. position = position + spd*3*direction
  407. error = position - engine.Position
  408. engine.Velocity = spd*error
  409. engine.RotVelocity = Vector3.new(0, 0, 0)
  410. end
  411. end;
  412. function() local boom = false
  413.  
  414.  
  415.  
  416. function createExplosion(position)
  417.  
  418.  
  419.  
  420. explosion = Instance.new("Explosion")
  421.  
  422. explosion.Position = position
  423.  
  424. explosion.BlastRadius = 12
  425.  
  426. explosion.Parent = game.Workspace
  427.  
  428.  
  429.  
  430. end
  431.  
  432.  
  433.  
  434. function onTouch(part)
  435.  
  436. if boom == true then return end
  437.  
  438. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  439.  
  440. if (script.Parent.Parts.Tip.Velocity.x > 250) or (script.Parent.Parts.Tip.Velocity.x < -250) or (script.Parent.Parts.Tip.Velocity.z > 250) or (script.Parent.Parts.Tip.Velocity.z < -250) then
  441.  
  442. boom = true
  443.  
  444. createExplosion(script.Parent.Parts.Engine.Position)
  445.  
  446. script.Parent:BreakJoints()
  447.  
  448. local stuff = script.Parent:children()
  449.  
  450. for i=1,#stuff do
  451.  
  452. if stuff[i].Name == "BodyKit" or
  453.  
  454. stuff[i].Name == "Parts" then
  455.  
  456. local parts = stuff[i]:children()
  457.  
  458. for p = 1, #parts do
  459.  
  460. if parts[p].className == "Part" then
  461.  
  462. local velo = Instance.new("BodyVelocity")
  463.  
  464. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  465.  
  466. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  467.  
  468. velo.Parent = parts[p]
  469.  
  470. end
  471.  
  472. end
  473.  
  474. end
  475.  
  476. end
  477.  
  478. wait(4)
  479.  
  480. script.Parent:remove()
  481.  
  482. end
  483.  
  484. end
  485.  
  486.  
  487.  
  488. script.Parent.Parts.Tip.Touched:connect(onTouch)
  489.  
  490. end;
  491. function() local boom = false
  492.  
  493. function createExplosion(position)
  494.  
  495. explosion = Instance.new("Explosion")
  496. explosion.Position = position
  497. explosion.BlastRadius = 12
  498. explosion.Parent = game.Workspace
  499.  
  500. end
  501.  
  502. function onTouch(part)
  503. if boom == true then return end
  504. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  505. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  506. boom = true
  507. createExplosion(script.Parent.Parts.Engine.Position)
  508. script.Parent:BreakJoints()
  509. local stuff = script.Parent:children()
  510. for i=1,#stuff do
  511. if stuff[i].Name == "BodyKit" or
  512. stuff[i].Name == "Parts" then
  513. local parts = stuff[i]:children()
  514. for p = 1, #parts do
  515. if parts[p].className == "Part" then
  516. local velo = Instance.new("BodyVelocity")
  517. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  518. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  519. velo.Parent = parts[p]
  520. end
  521. end
  522. end
  523. end
  524. wait(4)
  525. script.Parent:remove()
  526. end
  527. end
  528.  
  529. script.Parent.Parts.Tip.Touched:connect(onTouch)
  530. end;
  531. function() local boom = false
  532.  
  533. function createExplosion(position)
  534.  
  535. explosion = Instance.new("Explosion")
  536. explosion.Position = position
  537. explosion.BlastRadius = 12
  538. explosion.Parent = game.Workspace
  539.  
  540. end
  541.  
  542. function onTouch(part)
  543. if boom == true then return end
  544. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  545. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  546. boom = true
  547. createExplosion(script.Parent.Parts.Engine.Position)
  548. script.Parent:BreakJoints()
  549. local stuff = script.Parent:children()
  550. for i=1,#stuff do
  551. if stuff[i].Name == "BodyKit" or
  552. stuff[i].Name == "Parts" then
  553. local parts = stuff[i]:children()
  554. for p = 1, #parts do
  555. if parts[p].className == "Part" then
  556. local velo = Instance.new("BodyVelocity")
  557. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  558. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  559. velo.Parent = parts[p]
  560. end
  561. end
  562. end
  563. end
  564. wait(4)
  565. script.Parent:remove()
  566. end
  567. end
  568.  
  569. script.Parent.Parts.Tip.Touched:connect(onTouch)
  570. end;
  571. function() --[[All parts you add on must be kept in the bodykit.do not put anchored bricks on or it wont fly!
  572. this is not my plane chassis but its the best one i could find to put this message on. ~SniperSkull end;
  573. function() local boom = false
  574.  
  575. function createExplosion(position)
  576.  
  577. explosion = Instance.new("Explosion")
  578. explosion.Position = position
  579. explosion.BlastRadius = 12
  580. explosion.Parent = game.Workspace
  581.  
  582. end
  583.  
  584. function onTouch(part)
  585. if boom == true then return end
  586. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  587. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  588. boom = true
  589. createExplosion(script.Parent.Parts.Engine.Position)
  590. script.Parent:BreakJoints()
  591. local stuff = script.Parent:children()
  592. for i=1,#stuff do
  593. if stuff[i].Name == "BodyKit" or
  594. stuff[i].Name == "Parts" then
  595. local parts = stuff[i]:children()
  596. for p = 1, #parts do
  597. if parts[p].className == "Part" then
  598. local velo = Instance.new("BodyVelocity")
  599. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  600. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  601. velo.Parent = parts[p]
  602. end
  603. end
  604. end
  605. end
  606. wait(4)
  607. script.Parent:remove()
  608. end
  609. end
  610.  
  611. script.Parent.Parts.Tip.Touched:connect(onTouch)
  612. end;
  613. function() local boom = false
  614.  
  615. function createExplosion(position)
  616.  
  617. explosion = Instance.new("Explosion")
  618. explosion.Position = position
  619. explosion.BlastRadius = 12
  620. explosion.Parent = game.Workspace
  621.  
  622. end
  623.  
  624. function onTouch(part)
  625. if boom == true then return end
  626. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  627. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  628. boom = true
  629. createExplosion(script.Parent.Parts.Engine.Position)
  630. script.Parent:BreakJoints()
  631. local stuff = script.Parent:children()
  632. for i=1,#stuff do
  633. if stuff[i].Name == "BodyKit" or
  634. stuff[i].Name == "Parts" then
  635. local parts = stuff[i]:children()
  636. for p = 1, #parts do
  637. if parts[p].className == "Part" then
  638. local velo = Instance.new("BodyVelocity")
  639. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  640. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  641. velo.Parent = parts[p]
  642. end
  643. end
  644. end
  645. end
  646. wait(4)
  647. script.Parent:remove()
  648. end
  649. end
  650.  
  651. script.Parent.Parts.Tip.Touched:connect(onTouch)
  652. end;
  653. function() creativeval = 1
  654. bin=script.Parent
  655. plane=nil
  656. hold=false
  657. local debounce = false
  658. local planedebounce = false
  659. local stuntdebounce = false
  660. local controlling = false
  661.  
  662. function fire(pln,spn)
  663. local missile = bin.Rocket:clone()
  664. missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
  665.  
  666. missile.RocketScript.Disabled = false
  667. missile.Parent = game.Workspace
  668.  
  669. local creator_tag = Instance.new("ObjectValue")
  670. creator_tag.Value = game.Players.LocalPlayer
  671. creator_tag.Name = "creator"
  672. creator_tag.Parent = missile
  673.  
  674. missile.Owner.Value = pln
  675. end
  676.  
  677. function computeDirection(vec)
  678. local lenSquared = vec.magnitude * vec.magnitude
  679. local invSqrt = 1 / math.sqrt(lenSquared)
  680. return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
  681. end
  682.  
  683. function move(target, engine)
  684. local origincframe = engine:findFirstChild("BodyGyro").cframe
  685. local dir = (target - engine.Position).unit
  686. local spawnPos = engine.Position
  687.  
  688. local pos = spawnPos + (dir * 1)
  689.  
  690. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
  691. engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
  692. wait(0.1)
  693. engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
  694. engine:findFirstChild("BodyGyro").cframe = origincframe
  695. end
  696.  
  697. function findPlane(player)
  698. local list = player.Character:GetChildren()
  699. for x = 1, #list do
  700. if (list[x].Name == "Plane") then
  701. local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
  702. if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
  703. return list[x]
  704. end
  705. end
  706. end
  707. return nil
  708. end
  709.  
  710. function onButton1Down(mouse)
  711. local vehicle = findPlane(script.Parent.Parent.Parent)
  712. if vehicle ~= nil and debounce == false and planedebounce == false then
  713. debounce = true
  714.  
  715. controlling = true
  716.  
  717. while true do
  718. wait()
  719. local engine = vehicle.Parts.Engine
  720. local position = mouse.Hit
  721. local target = position.p
  722. if engine:findFirstChild("FlyScript") ~= nil then
  723. move(target, engine)
  724. end
  725. if planedebounce == true or
  726. controlling == false then break end
  727. end
  728. wait(.1)
  729. debounce = false
  730. end
  731. end
  732.  
  733. function onButton1Up(mouse)
  734. controlling = false
  735. end
  736.  
  737. function onSelected(mouse)
  738. mouse.Icon = "rbxasset://textures\\GunCursor.png"
  739. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  740. mouse.Button1Up:connect(function() onButton1Up(mouse) end)
  741. mouse.KeyDown:connect(onKeyDown)
  742. end
  743.  
  744. function onKeyDown(key)
  745. if (key~=nil) then
  746. key = key:lower()
  747. local vehicle = findPlane(script.Parent.Parent.Parent)
  748. if (vehicle==nil) then return end
  749. plane = vehicle.Parts
  750. local engine = vehicle.Parts.Engine
  751. if (key=="f") and (bin.Reload.Value == 0) then
  752. if plane.mode.Value == true then
  753. bin.Reload.Value = 1
  754. fire(vehicle,plane.Gun1)
  755. fire(vehicle,plane.Gun2)
  756. plane.mode.Value = false
  757. wait(.25)
  758. bin.Reload.Value = 0
  759. else
  760. bin.Reload.Value = 1
  761. fire(vehicle,plane.Gun3)
  762. fire(vehicle,plane.Gun4)
  763. plane.mode.Value = true
  764. wait(.25)
  765. bin.Reload.Value = 0
  766. end
  767. end
  768. if (key=="x") and planedebounce == false then
  769. local power = plane.Engine:findFirstChild("FlyScript")
  770. if (power ~= nil) then
  771. power:remove()
  772. end
  773. local spd = plane.Engine:findFirstChild("Speed")
  774. if (spd ~= nil) then
  775. spd:remove()
  776. end
  777. end
  778. if (key=="y") then
  779. local power = plane.Engine:findFirstChild("FlyScript")
  780. if (power ~= nil) then return end
  781. local fly = script.FlyScript:clone()
  782. fly.Disabled = false
  783. fly.Parent = plane.Engine
  784. local spd = plane.Engine:findFirstChild("Speed")
  785. if (spd ~= nil) then return end
  786. local speed = script.Parent.Speed:clone()
  787. speed.Parent = plane.Engine
  788. end
  789. if (key=="n") and planedebounce == false then
  790. local val = plane.Engine:findFirstChild("Speed")
  791. if (val == nil) or (val.Value == creativeval) then return end
  792. plane.Engine.Speed.Value = val.Value - 1
  793. end
  794. if (key=="m") and planedebounce == false then
  795. local val = plane.Engine:findFirstChild("Speed")
  796. if (val == nil) then return end
  797. plane.Engine.Speed.Value = val.Value + 1
  798. end
  799. if (key=="k") and planedebounce == false then
  800. wait()
  801. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  802. wait()
  803. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  804. wait()
  805. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  806. wait()
  807. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
  808. end
  809. if (key=="h") and planedebounce == false then
  810. wait()
  811. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  812. wait()
  813. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  814. wait()
  815. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  816. wait()
  817. engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
  818. return end
  819. if (key=="j") and planedebounce == false then
  820. local body = plane.Engine.BodyGyro
  821. body.maxTorque = Vector3.new(9000, 9000, 9000)
  822.  
  823. local position = engine.CFrame * Vector3.new(0, 0.5, -4)
  824. local dir = position - engine.Position
  825.  
  826. dir = computeDirection(dir)
  827.  
  828. local spawnPos = engine.Position
  829.  
  830. local pos = spawnPos + (dir * 8)
  831.  
  832. body.cframe = CFrame.new(pos, pos + dir)
  833. wait(.2)
  834. body.maxTorque = Vector3.new(0, 0, 0)
  835. end
  836. if (key=="l") and planedebounce == false then
  837. local body = plane.Engine.BodyGyro
  838. body.maxTorque = Vector3.new(9000, 0, 0)
  839. local frame = plane:FindFirstChild("OriginCFrame")
  840. if frame ~= nil then
  841. body.cframe = frame.Value
  842. end
  843. wait(0.1)
  844. body.maxTorque = Vector3.new(0, 0, 0)
  845. end
  846. if (key=="u") and planedebounce == false then
  847. local body = plane.Engine.BodyGyro
  848. body.maxTorque = Vector3.new(9000, 9000, 9000)
  849.  
  850. local position = engine.CFrame * Vector3.new(0, -0.5, -4)
  851. local dir = position - engine.Position
  852.  
  853. dir = computeDirection(dir)
  854.  
  855. local spawnPos = engine.Position
  856.  
  857. local pos = spawnPos + (dir * 8)
  858.  
  859. body.cframe = CFrame.new(pos, pos + dir)
  860. wait(.2)
  861. body.maxTorque = Vector3.new(0, 0, 0)
  862. end
  863. if (key=="g") and planedebounce == false and stuntdebounce == false then
  864. planedebounce = true
  865. stuntdebounce = true
  866. plane.Parent.Stunt.Value = 1
  867. local body = plane.Engine.BodyGyro
  868. body.maxTorque = Vector3.new(9000, 9000, 9000)
  869.  
  870. local currentframe = plane.Engine.CFrame
  871.  
  872. for i = 1,6 do
  873. body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
  874. wait(.2)
  875. end
  876.  
  877. body.cframe = currentframe
  878. wait(.6)
  879.  
  880. body.maxTorque = Vector3.new(0, 0, 0)
  881. planedebounce = false
  882. plane.Parent.Stunt.Value = 0
  883. wait(3)
  884. stuntdebounce = false
  885. end
  886. if (key=="t") and planedebounce == false and stuntdebounce == false then
  887. planedebounce = true
  888. stuntdebounce = true
  889. plane.Parent.Stunt.Value = 1
  890. local body = plane.Engine.BodyGyro
  891. body.maxTorque = Vector3.new(9000, 9000, 9000)
  892.  
  893. local currentframe = plane.Engine.CFrame
  894. local valy = 30
  895. local valz = 30
  896.  
  897. for i = 1,8 do
  898. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
  899. valy = valy +50
  900. valz = valz +100
  901. wait(.1)
  902. end
  903.  
  904. body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
  905.  
  906. wait(.5)
  907.  
  908. body.maxTorque = Vector3.new(0, 0, 0)
  909. planedebounce = false
  910. plane.Parent.Stunt.Value = 0
  911. wait(4)
  912. stuntdebounce = false
  913. end
  914. end
  915. end
  916.  
  917. bin.Selected:connect(onSelected)
  918. end;
  919. function() local engine = script.Parent.Parent.Engine
  920. local spd = 0.6
  921. local position = engine.Position
  922.  
  923. while true do
  924. wait(.1)
  925. direction = engine.CFrame.lookVector
  926. position = position + spd*3*direction
  927. error = position - engine.Position
  928. engine.Velocity = spd*error
  929. engine.RotVelocity = Vector3.new(0, 0, 0)
  930. end
  931. end;
  932. function() local boom = false
  933.  
  934. function createExplosion(position)
  935.  
  936. explosion = Instance.new("Explosion")
  937. explosion.Position = position
  938. explosion.BlastRadius = 12
  939. explosion.Parent = game.Workspace
  940.  
  941. end
  942.  
  943. function onTouch(part)
  944. if boom == true then return end
  945. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  946. if (script.Parent.Parts.Tip.Velocity.x > 50) or (script.Parent.Parts.Tip.Velocity.x < -50) or (script.Parent.Parts.Tip.Velocity.z > 50) or (script.Parent.Parts.Tip.Velocity.z < -50) then
  947. boom = true
  948. createExplosion(script.Parent.Parts.Engine.Position)
  949. script.Parent:BreakJoints()
  950. local stuff = script.Parent:children()
  951. for i=1,#stuff do
  952. if stuff[i].Name == "BodyKit" or
  953. stuff[i].Name == "Parts" then
  954. local parts = stuff[i]:children()
  955. for p = 1, #parts do
  956. if parts[p].className == "Part" then
  957. local velo = Instance.new("BodyVelocity")
  958. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  959. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  960. velo.Parent = parts[p]
  961. end
  962. end
  963. end
  964. end
  965. wait(4)
  966. script.Parent:remove()
  967. end
  968. end
  969.  
  970. script.Parent.Parts.Tip.Touched:connect(onTouch)
  971. end;
  972. function() model = script.Parent.Parent.Parent
  973.  
  974.  
  975.  
  976.  
  977. backup = model:clone()
  978.  
  979.  
  980.  
  981.  
  982. local debounce = false
  983.  
  984.  
  985.  
  986.  
  987.  
  988.  
  989.  
  990.  
  991.  
  992. function onTouch(part)
  993.  
  994.  
  995.  
  996.  
  997. if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
  998.  
  999.  
  1000.  
  1001.  
  1002. debounce = true
  1003.  
  1004.  
  1005.  
  1006.  
  1007. wait(2)
  1008.  
  1009.  
  1010.  
  1011.  
  1012. model = backup:clone()
  1013.  
  1014.  
  1015.  
  1016.  
  1017. model.Parent = game.Workspace
  1018.  
  1019.  
  1020.  
  1021.  
  1022. model:makeJoints()
  1023.  
  1024.  
  1025.  
  1026.  
  1027. script.Parent.Count.Value = 1
  1028.  
  1029.  
  1030.  
  1031.  
  1032. debounce = false
  1033.  
  1034.  
  1035.  
  1036.  
  1037. end
  1038.  
  1039.  
  1040.  
  1041.  
  1042. end
  1043.  
  1044.  
  1045.  
  1046.  
  1047. script.Parent.Touched:connect(onTouch) end;
  1048. function() position = script.Parent.Engine.Position
  1049.  
  1050.  
  1051.  
  1052.  
  1053. local frame = Instance.new("CFrameValue")
  1054.  
  1055.  
  1056.  
  1057.  
  1058. frame.Name = "OriginCFrame"
  1059.  
  1060.  
  1061.  
  1062.  
  1063. frame.Value = script.Parent.Engine.CFrame
  1064.  
  1065.  
  1066.  
  1067.  
  1068. frame.Parent = script.Parent
  1069.  
  1070.  
  1071.  
  1072.  
  1073.  
  1074.  
  1075.  
  1076.  
  1077.  
  1078. local object = Instance.new("ObjectValue")
  1079.  
  1080.  
  1081.  
  1082.  
  1083. object.Value = script.Parent.Parent.Parent
  1084.  
  1085.  
  1086.  
  1087.  
  1088.  
  1089.  
  1090.  
  1091.  
  1092.  
  1093. seat = script.Parent.Seat
  1094.  
  1095.  
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103. function onChildAdded(part)
  1104.  
  1105.  
  1106.  
  1107.  
  1108. if part.className == "Weld" then
  1109.  
  1110.  
  1111.  
  1112.  
  1113. local torso = part.Part1
  1114.  
  1115.  
  1116.  
  1117.  
  1118. if torso ~= nil then
  1119.  
  1120.  
  1121.  
  1122.  
  1123. local parent = torso.Parent
  1124.  
  1125.  
  1126.  
  1127.  
  1128. if parent ~= nil then
  1129.  
  1130.  
  1131.  
  1132.  
  1133. script.Parent.Parent.Parent = parent
  1134.  
  1135.  
  1136.  
  1137.  
  1138. while true do
  1139.  
  1140.  
  1141.  
  1142.  
  1143. wait(2)
  1144.  
  1145.  
  1146.  
  1147.  
  1148. local pos = script.Parent.Engine.Position
  1149.  
  1150.  
  1151.  
  1152.  
  1153. if (position - pos).magnitude > 30 then
  1154.  
  1155.  
  1156.  
  1157.  
  1158. if object.Value ~= nil then
  1159.  
  1160.  
  1161.  
  1162.  
  1163. object.Value.Regen.Value = 1
  1164.  
  1165.  
  1166.  
  1167.  
  1168. wait(.5)
  1169.  
  1170.  
  1171.  
  1172.  
  1173. object.Value.Regen.Value = 0
  1174.  
  1175.  
  1176.  
  1177.  
  1178. object.Value = nil
  1179.  
  1180.  
  1181.  
  1182.  
  1183. end
  1184.  
  1185.  
  1186.  
  1187.  
  1188. break end
  1189.  
  1190.  
  1191.  
  1192.  
  1193. end
  1194.  
  1195.  
  1196.  
  1197.  
  1198. while true do
  1199.  
  1200.  
  1201.  
  1202.  
  1203. print("Loop")
  1204.  
  1205.  
  1206.  
  1207.  
  1208. wait(2)
  1209.  
  1210.  
  1211.  
  1212.  
  1213. if part == nil then
  1214.  
  1215.  
  1216.  
  1217.  
  1218. script.Parent.Parent.Parent = game.Workspace
  1219.  
  1220.  
  1221.  
  1222.  
  1223. script.Parent.Parent:MakeJoints()
  1224.  
  1225.  
  1226.  
  1227.  
  1228. break end
  1229.  
  1230.  
  1231.  
  1232.  
  1233. end
  1234.  
  1235.  
  1236.  
  1237.  
  1238. end
  1239.  
  1240.  
  1241.  
  1242.  
  1243. end
  1244.  
  1245.  
  1246.  
  1247.  
  1248. end
  1249.  
  1250.  
  1251.  
  1252.  
  1253. end
  1254.  
  1255.  
  1256.  
  1257.  
  1258. seat.ChildAdded:connect(onChildAdded) end;
  1259. function() local boom = false
  1260.  
  1261.  
  1262.  
  1263. function createExplosion(position)
  1264.  
  1265.  
  1266.  
  1267. explosion = Instance.new("Explosion")
  1268.  
  1269. explosion.Position = position
  1270.  
  1271. explosion.BlastRadius = 12
  1272.  
  1273. explosion.Parent = game.Workspace
  1274.  
  1275.  
  1276.  
  1277. end
  1278.  
  1279.  
  1280.  
  1281. function onTouch(part)
  1282.  
  1283. if boom == true then return end
  1284.  
  1285. if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
  1286.  
  1287. if (script.Parent.Parts.Tip.Velocity.x > 250) or (script.Parent.Parts.Tip.Velocity.x < -250) or (script.Parent.Parts.Tip.Velocity.z > 250) or (script.Parent.Parts.Tip.Velocity.z < -250) then
  1288.  
  1289. boom = true
  1290.  
  1291. createExplosion(script.Parent.Parts.Engine.Position)
  1292.  
  1293. script.Parent:BreakJoints()
  1294.  
  1295. local stuff = script.Parent:children()
  1296.  
  1297. for i=1,#stuff do
  1298.  
  1299. if stuff[i].Name == "BodyKit" or
  1300.  
  1301. stuff[i].Name == "Parts" then
  1302.  
  1303. local parts = stuff[i]:children()
  1304.  
  1305. for p = 1, #parts do
  1306.  
  1307. if parts[p].className == "Part" then
  1308.  
  1309. local velo = Instance.new("BodyVelocity")
  1310.  
  1311. velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
  1312.  
  1313. velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
  1314.  
  1315. velo.Parent = parts[p]
  1316.  
  1317. end
  1318.  
  1319. end
  1320.  
  1321. end
  1322.  
  1323. end
  1324.  
  1325. wait(4)
  1326.  
  1327. script.Parent:remove()
  1328.  
  1329. end
  1330.  
  1331. end
  1332.  
  1333.  
  1334.  
  1335. script.Parent.Parts.Tip.Touched:connect(onTouch)
  1336.  
  1337. end;}local ActualScripts = {}
  1338. function s(var)
  1339. local func = table.remove(Scripts,1)
  1340. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  1341. __index = getfenv(func),
  1342. }))
  1343. table.insert(ActualScripts,coroutine.wrap(func))
  1344. end
  1345. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  1346. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  1347. function(t,f)
  1348. for a,b in pairs(t) do
  1349. f(a,b)
  1350. end
  1351. end
  1352. local Types = {
  1353. Color3 = Color3.new,
  1354. Vector3 = Vector3.new,
  1355. Vector2 = Vector2.new,
  1356. UDim = UDim.new,
  1357. UDim2 = UDim2.new,
  1358. CFrame = CFrame.new,
  1359. Rect = Rect.new,
  1360. NumberRange = NumberRange.new,
  1361. BrickColor = BrickColor.new,
  1362. PhysicalProperties = PhysicalProperties.new,
  1363. NumberSequence = function(...)
  1364. local a = {...}
  1365. local t = {}
  1366. repeat
  1367. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  1368. until #a==0
  1369. return NumberSequence.new(t)
  1370. end,
  1371. ColorSequence = function(...)
  1372. local a = {...}
  1373. local t = {}
  1374. repeat
  1375. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  1376. until #a==0
  1377. return ColorSequence.new(t)
  1378. end,
  1379. number = tonumber,
  1380. boolean = function(a)
  1381. return a=="1"
  1382. end
  1383. }
  1384. split = function(str,sep)
  1385. if not str then return end
  1386. local fields = {}
  1387. local ConcatNext = false
  1388. str:gsub(("([^%s]+)"):format(sep),function(c)
  1389. if ConcatNext == true then
  1390. fields[#fields] = fields[#fields]..sep..c
  1391. ConcatNext = false
  1392. else
  1393. fields[#fields+1] = c
  1394. end
  1395. if c:sub(#c)=="\\" then
  1396. c = fields[#fields]
  1397. fields[#fields] = c:sub(1,#c-1)
  1398. ConcatNext = true
  1399. end
  1400. end)
  1401. return fields
  1402. end
  1403. RemoveAndSplit = function(t)
  1404. return split(table_remove(t,1),comma)
  1405. end
  1406. t = split(str,";")
  1407. props = RemoveAndSplit(t)
  1408. classes = RemoveAndSplit(t)
  1409. values = split(table_remove(t,1),'|')
  1410. ICList = RemoveAndSplit(t)
  1411. InstanceList = {}
  1412. Model = inst"Model"
  1413. CurPar = Model
  1414. table_foreach(t,function(ct,c)
  1415. if c=="n" or c=="p" then
  1416. CurPar = c=="n" and LastIns or CurPar[parnt]
  1417. else
  1418. ct = split(c,"|")
  1419. local class = classes[tonum(table_remove(ct,1))]
  1420. if class=="UnionOperation" then
  1421. LastIns = {UsePartColor="1"}
  1422. else
  1423. LastIns = inst(class)
  1424. if LastIns:IsA"Script" then
  1425. s(LastIns)
  1426. elseif LastIns:IsA("ModuleScript") then
  1427. ms(LastIns)
  1428. end
  1429. end
  1430.  
  1431. local function SetProperty(LastIns,p,str,s)
  1432. s = Types[typeof(LastIns[p])]
  1433. if p=="CustomPhysicalProperties" then
  1434. s = PhysicalProperties.new
  1435. end
  1436. if s then
  1437. LastIns[p] = s(unpack(split(str,comma)))
  1438. else
  1439. LastIns[p] = str
  1440. end
  1441. end
  1442.  
  1443. local UnionData
  1444. table_foreach(ct,function(s,p,a,str)
  1445. a = p:find":"
  1446. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  1447. if p=="UnionData" then
  1448. UnionData = split(str," ")
  1449. return
  1450. end
  1451. if class=="UnionOperation" then
  1452. LastIns[p] = str
  1453. return
  1454. end
  1455. SetProperty(LastIns,p,str)
  1456. end)
  1457.  
  1458. if UnionData then
  1459. local LI_Data = LastIns
  1460. LastIns = DecodeUnion(UnionData)
  1461. table_foreach(LI_Data,function(p,str)
  1462. SetProperty(LastIns,p,str)
  1463. end)
  1464. end
  1465. table.insert(InstanceList,LastIns)
  1466. LastIns[parnt] = CurPar
  1467. end
  1468. end)
  1469. table_remove(ICList,1)
  1470. table_foreach(ICList,function(a,b)
  1471. b = split(b,">")
  1472. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  1473. end)
  1474.  
  1475. return Model:GetChildren()
  1476. end
  1477.  
  1478. local Objects = Decode('Name,Color,Position,Orientation,Size,BottomSurface,LeftSurface,RightSurface,TopSurface,BaseAngle,Anchored,C0,C1,Part0,Part1,PrimaryPart,Value,FrontSurface,MaxForce,MaxTorque,MeshType,Transparency,CanCollide,Shape,BackS'
  1479. ..'urface;Part,Model,RotateP,IntValue,Script,HopperBin,Weld,CFrameValue,BodyPosition,BodyGyro,SpecialMesh;Part|0.898,0.8941,0.8745|122.4999,21.7528,90.4195|-90,0,0|1,18,16|2|d��������������ng.........you got owned...|0.25'
  1480. ..'|NP-420 Pittbull|Plane|PlaneCheck|Stunt|IMAHAKWTFZ|1.7590422885162e+22|WTFZ0R|ANTIVIRISIS|ANTIVIRIS|Dropship|Reload|PlaneFlyer|FlyScript|README|dropship|Helicopter|CivilTransport|Station1|1|0.3882,0.3725,0.3843|78.9999'
  1481. ..',13.9528,90.4195|0,-90,0|18,1.6,18|9,0,0,0,0,1,0,1,0,-1,-0,-0|-7.8001,-0.5,-4,0,1,0,0,0,1,1,0,0|-9,0,0,-0,-0,-1,0,1,0,1,0,0|-7.8001,-0.5,-2,0,1,0,0,0,1,1,0,0|0,0.8,0,-1,-0,-0,0,0,1,0,1,0|-6.5,-7.0001,-8.5,-1,0,0,0,0,1,'
  1482. ..'0,1,0|-7.0001,5,6,0,0,1,-1,0,0,0,-1,0|-7.0001,6.5,8.5,0,0,1,-1,0,0,0,-1,0|-7.0001,-5,6,0,0,1,-1,0,0,0,-1,0|-7.8001,-0.5,4,0,1,0,0,0,1,1,0,0|-7.8001,-0.5,-8,0,1,0,0,0,1,1,0,0|-1,0,5.5,0,0,1,-1,0,0,0,-1,0|105.4999,13.552'
  1483. ..'8,90.4195|0,90,0|18,0.4,35|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|-17,0,-8.0001,0,1,0,-1,0,0,0,0,1|0,-0.5001,-10,-1,0,0,0,0,1,0,1,0|Large Cargoship|Parts|OriginCFrame|-139,10.8,-727,-1,0,-0,-0,1,-0,-0,0,-1|128.9966,10.789,138.36'
  1484. ..'36,0.9999,-0.0004,-0.0003,0.0003,0.9999,0.0039,0.0002,-0.004,0.9999|128.9966,10.789,138.3629,0.9999,-0.0004,-0.0003,0.0003,0.9999,0.0039,0.0002,-0.004,0.9999|128.9966,10.789,138.3621,0.9999,-0.0004,-0.0003,0.0003,0.999'
  1485. ..'9,0.0039,0.0002,-0.004,0.9999|-344,274.7931,-95.9664,-1,-0.0001,-0.0003,-0.0001,1,-0.0001,0.0002,-0.0001,-1|Engine|115.4999,14.2528,90.4195|18,1,13|-1.5,3,-48|0,0,0|Count|0,0.5,0,-1,-0,-0,0,0,1,0,1,0|8.5,-7.0001,5.5,-1'
  1486. ..',0,0,0,0,1,0,1,0|0,0,6.5,1,0,0,0,1,0,0,0,1|-0.5,0,-7.5001,0,0,1,1,0,0,0,1,0|66.4999,1.5017,-280,0,0,1,0,1,0,-1,0,0|-266.5,6.5999,-32,-0,0,1,-0,1,0,-1,0,0|-23.1816,3.7339,85.9741,-0.0046,0.1417,0.9898,0.0002,0.9898,-0.1'
  1487. ..'418,-1,-0.0004,-0.0046|-33.2036,3.7337,-7.0235,-0.0048,0.1418,0.9898,0.0002,0.9898,-0.1419,-1,-0.0005,-0.0048|25.6684,3.7338,-147.9653,0.0041,0.1417,0.9898,0.0002,0.9898,-0.1419,-1,0.0008,0.0041|21.232,3.7338,33.6365,0'
  1488. ..'.0243,0.1417,0.9896,0.0002,0.9898,-0.1418,-0.9998,0.0037,0.0241|-22.1034,3.7315,56.9576,-0.0014,0.1416,0.9899,-0.0001,0.9899,-0.1417,-1,-0.0003,-0.0014|-4.1021,77.3339,-1.0436,-0.0013,0.1417,0.9898,0.0002,0.9898,-0.141'
  1489. ..'8,-1,0,-0.0013|-499,23.8999,-129.5,1,0,0,0,1,0,0,0,1|165.0848,3.7339,-213.9366,0.9999,0.001,0.0091,0.0002,0.9898,-0.1418,-0.0093,0.1417,0.9898|-5.5,5.9,55,0,0,-1,0,1,-0,1,0,-0|-206.8202,4.1336,-147.0698,-0.0088,-0.1418'
  1490. ..',-0.9899,0.0002,0.9898,-0.1418,0.9999,-0.0015,-0.0086|-205.7741,4.1338,-220.0455,-0.0065,-0.1418,-0.9899,0.0002,0.9899,-0.1418,0.9999,-0.0012,-0.0064|-68.8732,3.7339,34.9771,-0.006,-0.1418,-0.9899,0.0002,0.9898,-0.1418'
  1491. ..',0.9999,-0.0012,-0.0059|-82,31.6,190.5,-1,0,-0,-0,1,-0,-0,0,-1|-82.0469,30.1417,190.1044,-0.9999,-0.0025,-0.0186,0.0002,0.9898,-0.1419,0.0187,-0.1419,-0.9898|113.0265,21.8368,201.0393,-1,0.0018,0.0114,0.0002,0.9898,-0.'
  1492. ..'1419,-0.0117,-0.1419,-0.9899|-55.9055,3.7338,85.9095,-0.0077,0.1418,0.9898,0.0002,0.9898,-0.1419,-1,-0.0009,-0.0077|-215.9976,2.6105,134.4995,0.9999,0,0,-0.0001,1,0,-0.0001,-0.0001,0.9999|-208,2.6,129,1,0,0,0,1,0,0,0,1'
  1493. ..'|BodyKit|0.7686,0.1568,0.1098|82.9999,21.7528,80.9195|0,-90,90|16,1,2|0|79.9999,26.2528,80.4195|4,7,2|85.9999,26.2528,80.4195|0,0,1,1,0,0,0,1,0,0,0,1|0.5,4.5,-16,0,0,-1,0,1,0,1,0,0|0,-3.5,0,1,0,0,-0,-0,-1,0,1,0|0,-4.5,'
  1494. ..'0,-1,0,0,0,0,1,0,1,0|73.9999,18.2528,80.4195|0,0,180|4,9,2|0,-4.5,0,1,0,0,-0,-0,-1,0,1,0|0,-3.5,0,-1,0,0,0,0,1,0,1,0|-0.5,-3.5,0,0,0,1,0,-1,0,1,0,-0|73.9999,26.2528,80.4195|70.9999,21.7528,80.9195|0,-0.5,0,1,0,0,-0,-0,'
  1495. ..'-1,0,1,0|-9,-7.5,13,0,0,1,1,0,0,0,1,0|76.9999,21.7528,80.9195|-9,-7.5,7,0,0,1,1,0,0,0,1,0|90.3999,27.7528,76.4195|0,0,-90|6,1.2,6|88.9999,21.7528,80.9195|-9,-7.5,-5,0,0,1,1,0,0,0,1,0|0.1|79.9999,18.2528,80.4195|0|85.99'
  1496. ..'99,18.2528,80.4195|73.9999,21.7528,81.9195|1,14,8|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0,-0.5,3,0,1,0,0,-0,1,1,-0,0|0,7,0,-1,-0,-0,0,0,1,0,1,0|-8.5,-0.5,10,-1,0,0,0,0,1,0,1,0|0,-4.5,1,-1,0,0,0,1,0,0,0,-1|0,-7,0,1,0,0,-0,-0,-1'
  1497. ..',0,1,0|-8.5,0.8,5,1,0,0,0,0,-1,-0,1,0|0,0,4,1,0,0,0,1,0,0,0,1|0,-4,-1.5,0,1,0,0,0,1,1,0,0|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-1.5,3.5,0,1,0,0,0,1,1,0,0|0,-3,1,0,1,0,0,0,1,1,0,0|0,-0.5,-3,0,1,0,0,-0,1,1,-0,0|91.9999,26.2528'
  1498. ..',80.4195|99.9999,26.2528,80.4195|-3,9,10,0,1,0,0,0,-1,-1,0,0|0.5,4.5,-2,0,0,-1,0,1,0,1,0,0|98.9999,27.7528,76.4195|4,4,4|2,0,0,0,0,1,0,1,0,-1,-0,-0|0,0.5999,0,0,-1,-0,0,-0,-1,1,-0,-0|0.9725,0.9725,0.9725|93.9999,27.752'
  1499. ..'8,76.4195|6,6,6|0,0,3,1,0,0,0,1,0,0,0,1|6,1,2,0,1,0,0,0,-1,-1,0,0|3,0,0,0,0,1,0,1,0,-1,-0,-0|-2,0,0,0,0,1,0,1,0,-1,0,0|2,1.5,-1,1,0,0,0,1,0,0,0,1|-3,0,0,-0,-0,-1,0,1,0,1,0,0|0,0.5999,0,0,-1,0,0,0,-1,1,0,0|0.8549,0.5215'
  1500. ..',0.2549|0.3|101.5999,27.7528,76.4195|0,180,-90|4,1.2,4|79.9999,25.7528,81.9195|90,90,0|1,4,6|0,2,0,-1,-0,-0,0,0,1,0,1,0|0,4,-20,-1,0,0,0,-1,0,0,0,1|0,-2,0,1,0,0,-0,-0,-1,0,1,0|0,4,-4,-1,0,0,0,-1,0,0,0,1|0,-0.5,1,0,1,0,'
  1501. ..'1,0,0,0,0,-1|91.9999,18.2528,80.4195|95.9999,21.7528,80.4195|16,2,4|102.9999,21.7528,80.9195|105.9999,26.2528,80.4195|101.9999,21.7528,81.9195|1,14,40|-16,-4.5,1,-1,0,0,0,1,0,0,0,-1|-0.5,8.5,8,0,0,1,-1,0,0,0,-1,0|-2,-3'
  1502. ..'.5,1,1,0,0,0,-1,0,0,0,-1|-10,-4.5,1,-1,0,0,0,1,0,0,0,-1|0,-0.5,1,0,1,0,0,0,1,1,0,0|0,-1,-6,0,1,0,0,0,1,1,0,0|4,-3.5,1,1,0,-0,0,-1,-0,0,0,-1|-10,-3.5,1,1,0,-0,0,-1,-0,0,0,-1|10,-4.5,1,-1,0,0,0,1,0,0,0,-1|-8.5,-0.5,-18,1'
  1503. ..',0,0,0,0,1,0,-1,0|0,-0.5,7,0,1,0,0,0,1,1,0,0|-8.5,0.8,-23,-1,0,0,0,0,-1,0,-1,0|-19.5,-4.0001,-8,-1,0,0,0,-1,0,0,0,1|0,-0.5,13,0,1,0,0,0,1,1,0,0|-16,-3.5,1,1,0,0,0,-1,0,0,0,-1|-4,-4.5,1,-1,0,0,0,1,0,0,0,-1|8.5,0.5,-13.5'
  1504. ..',1,0,0,0,0,-1,0,1,0|0,-0.5,-13,0,1,0,0,0,1,1,0,0|0,0,20,1,0,0,0,1,0,0,0,1|-0.5,8.5,0,0,0,1,1,0,0,0,1,0|0,-0.5,-19,0,1,0,0,-0,1,1,-0,0|99.9999,18.2528,80.4195|109.9999,21.7528,98.9195|1,14,24|0,0,12,1,0,0,0,1,0,0,0,1|-0'
  1505. ..'.5,-8.5,0,0,0,1,1,0,0,0,1,0|82.4999,24.7528,90.4195|1,8,16|0,-4,0,1,0,0,-0,-0,-1,0,1,0|0,-0.5,1.5,0,1,0,0,0,1,1,0,0|0,4,0,-1,-0,-0,0,0,1,0,1,0|0,-3.0001,0,-1,0,0,0,0,1,0,1,0|0,0,-8,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,3,-19.5,'
  1506. ..'0,0,1,0,-1,0,1,0,0|82.4999,17.7528,90.4195|1,6,16|0,3,0,-1,-0,-0,0,0,1,0,1,0|0,0.7999,-3.5,0,1,0,0,0,-1,-1,-0,0|68.4999,27.2528,87.9195|0,180,90|1,3,1|0,1.5,0,-1,-0,-0,0,0,1,0,1,0|-0.5,-2.5,-0.5,-1,0,0,0,-1,0,0,0,1|0.4'
  1507. ..'313,0.6,0.7921|0.2|61.4999,25.7528,88.9195|90,-90,0|1,5,4|0,0,2,1,0,0,0,1,0,0,0,1|-1.5,3.5,3,1,0,0,0,0,-1,0,1,0|2,-1.5,1.5,0,0,-1,0,1,0,1,0,0|61.9999,25.7528,87.9195|1,4,4|-2.5,3.5,2.5,1,0,0,0,0,-1,0,1,0|2,-2,0.5,0,0,-'
  1508. ..'1,0,1,0,1,0,0|1,4,2.5,0,0,-1,-1,0,0,0,1,0|69.4999,19.2528,86.9195|0,90,90|5,3,1|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|-3.5,-1.5,3.5,0,1,0,0,0,1,1,0,0|0.5,-2,0,-1,0,0,0,0,1,0,1,0|0,-1.5,0,1,0,0,-0,-0,-1,0,1,0|-2.5,-3.5,2,1,0,0,'
  1509. ..'0,-1,0,0,0,-1|2.5,0,0,0,0,1,0,1,0,-1,-0,-0|-2.5,0.5,0,0,0,1,-1,0,0,0,-1,0|70.4999,19.2528,86.9195|1,-2,0,-1,0,0,0,0,1,0,1,0|1,-3.5,0,0,0,-1,0,1,0,1,0,0|-2.5,1.5,0,1,0,0,0,0,-1,0,1,0|-2.5,1.5,0,0,0,1,-1,0,0,0,-1,0|68.99'
  1510. ..'99,24.2528,86.9195|5,4,3|-3.5,4,-2.5,0,-1,0,1,0,0,0,0,1|2.5,-3.5,1,0,0,-1,-1,0,0,0,1,0|0.5,2.5,-2.5,0,-1,0,1,0,0,0,0,1|64.4999,21.7528,86.4195|2,10,5|-1,0,0,-0,-0,-1,0,1,0,1,0,0|0,1.5,2,0,1,0,1,0,0,0,0,-1|1,0,0,0,0,1,0'
  1511. ..',1,0,-1,-0,-0|-3,1.5,0,0,0,1,0,1,0,-1,0,0|0,0,2.5,1,0,0,0,1,0,0,0,1|0,-2,-1,0,1,0,0,0,1,1,0,0|72.9999,21.7528,85.4195|14,6,4|0,0,-2,-1,-0,-0,0,1,0,-0,-0,-1|-2.5,2,1.5,-1,0,0,0,0,-1,0,-1,0|95.9999,30.2528,90.4195|18,1,4'
  1512. ..'|0,0.5,-12,1,0,0,0,0,-1,0,1,0|65.9999,28.2528,86.4195|2,8,3|-4,-1,14,1,0,0,0,-1,0,0,0,-1|0.5,-4,-0.5,0,-1,0,1,0,0,0,0,1|0,0,1.5,1,0,0,0,1,0,0,0,1|0,5,-1.5,1,0,0,0,0,-1,0,1,0|73.9999,30.7528,85.9195|90,180,0|-4.5,0.5,10'
  1513. ..',0,-1,0,0,0,-1,1,0,0|79.9999,30.7528,85.9195|-4.5,0.5,4,0,-1,0,0,0,-1,1,0,0|85.9999,30.7528,85.9195|-4.5,0.5,-2,0,-1,0,0,0,-1,1,0,0|91.9999,30.7528,85.9195|59.9999,21.7528,87.4195|0,0,90|-1,0,0,0,0,1,1,0,0,0,1,0|-3,1.5'
  1514. ..',2.5,0,1,0,1,0,0,0,0,-1|61.4999,18.7528,86.9195|0,90,180|1,2,1|0,-1,0,1,0,0,-0,-0,-1,0,1,0|-2,-1.5,-0.5,0,0,1,0,-1,0,1,0,0|105.9999,30.7528,85.9195|99.9999,30.7528,85.9195|65.9999,21.7528,83.4195|10,8,4|70.4999,21.7528'
  1515. ..',83.9195|14,3,1|7,0,0,0,0,1,0,1,0,-1,-0,-0|-6.5,-0.5,13.5,0,1,0,0,0,1,1,0,0|-6,-5,0,-1,0,0,0,0,1,0,1,0|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|0,-4,0.5,-1,0,0,0,0,1,0,1,0|60.9999,18.2528,87.9195|1,3,2|-2,-1,0.5,0,0,1,0,-1,0,1'
  1516. ..',0,0|60.4999,18.2528,88.9195|1,3,3|-2,-0.5,1.5,0,0,1,0,-1,0,1,0,0|73.9999,30.7528,94.9195|90,0,0|79.9999,30.7528,94.9195|4.5,0.5,4,0,1,0,0,0,-1,-1,0,0|72.9999,21.7528,95.4195|-2.5,2,-1.5,-1,0,0,0,0,-1,0,-1,0|68.4999,27'
  1517. ..'.2528,92.9195|-0.5,2.5,-0.5,-1,0,0,0,-1,0,0,0,1|85.9999,30.7528,94.9195|4.5,0.5,-2,0,1,0,0,0,-1,-1,0,0|70.4999,21.7528,96.9195|3,14,1|6.5,-0.5,13.5,-1,0,0,0,0,1,0,1,0|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|-6,5,0,0,1,0,0,0,-1,-'
  1518. ..'1,0,0|2.5,1.5,0,0,1,0,0,0,-1,-1,0,0|70.4999,19.2528,93.9195|68.9999,24.2528,93.9195|3.5,4,-2.5,0,-1,0,1,0,0,0,0,1|2.5,3.5,1,0,0,-1,-1,0,0,0,1,0|2.5,0,-1.5,0,0,-1,-1,0,0,0,1,0|109.9999,29.2528,90.4195|1,18,24|0,-9,0,1,0'
  1519. ..',0,-0,-0,-1,0,1,0|7.5,-0.5,-5,1,0,0,0,0,1,0,-1,0|0,9,0,-1,-0,-0,0,0,1,0,1,0|-8,3,1,0,-1,0,-1,0,0,0,0,-1|7.5,-0.5,1,1,0,0,0,0,1,0,-1,0|0,-0.5,-5,0,1,0,0,0,1,1,0,0|-4,3,1,0,1,0,1,0,0,0,0,-1|8,-4.5,1,-1,0,0,0,1,0,0,0,-1|8'
  1520. ..'.5,7,0,0,1,0,0,0,-1,-1,0,0|0,0,-12,-1,-0,-0,0,1,0,-0,-0,-1|-0.5,0,7.5,0,0,1,0,1,0,-1,0,0|-10,3,1,0,1,0,1,0,0,0,0,-1|4,-4.5,1,1,0,0,0,-1,0,0,0,-1|2,2.9999,1,0,1,0,1,0,0,0,0,-1|4,3,1,0,-1,0,-1,0,0,0,0,-1|7.5,-0.5,-7,-1,0'
  1521. ..',0,0,0,1,0,1,0|-2,3,1,0,-1,0,-1,0,0,0,0,-1|7.5,-0.5,-1,-1,0,0,0,0,1,0,1,0|65.9999,28.2528,94.4195|0.5,4,-0.5,0,-1,0,1,0,0,0,0,1|4,-1,14,1,0,0,0,-1,0,0,0,-1|91.9999,30.7528,94.9195|105.9999,30.7528,94.9195|99.9999,30.75'
  1522. ..'28,94.9195|0.5,-4.5,10,0,0,-1,0,-1,0,-1,0,0|65.9999,21.7528,97.4195|10,4,8|2.5,5,-2,1,0,0,0,0,-1,0,1,0|1,0,-1.5,0,0,-1,1,0,0,0,-1,0|67.9999,19.2528,90.4195|5,10,2|0,-5,0,1,0,0,-0,-0,-1,0,1,0|-2.5,-2,2,1,0,0,0,-1,0,0,0,'
  1523. ..'-1|69.4999,18.7528,90.4195|4,4,1|69.4999,19.2528,93.9195|3.5,-1.5,3.5,0,1,0,0,0,1,1,0,0|-2.5,-2,3.5,-1,0,0,0,0,1,0,1,0|0.5,2,0,1,0,0,0,0,-1,0,1,0|70.4999,18.2528,90.4195|3,4,1|-1.0001,-1.5,0,-1,0,0,0,0,1,0,1,0|71.4999,'
  1524. ..'16.7528,90.4195|-2,0,0,-0,-0,-1,0,1,0,1,0,0|0,0.7999,7.5,0,1,0,0,0,-1,-1,-0,0|-5.0001,-3,-1.5,-1,0,0,0,0,1,0,1,0|-5.0001,3,-1.5,1,0,0,0,0,-1,0,1,0|72.4999,16.2528,90.4195|0,0.7999,6.5,0,1,0,0,0,-1,-1,-0,0|-5.5001,-3,-0'
  1525. ..'.5,-1,0,0,0,0,1,0,1,0|-5.5001,3,-0.5,1,0,0,0,0,-1,0,1,0|73.4999,15.7528,90.4195|2,4,1|-6.0001,-3,0.5,-1,0,0,0,0,1,0,1,0|-6.0001,3,0.5,1,0,0,0,0,-1,0,1,0|74.4999,15.2528,90.4195|1,4,1|0,0.7999,4.5,0,1,0,0,0,-1,-1,-0,0|-'
  1526. ..'6.5001,-3,1.5,-1,0,0,0,0,1,0,1,0|-6.5001,3,1.5,1,0,0,0,0,-1,0,1,0|72.9999,27.7528,90.4195|2,4,4|6,-3,0,-1,0,0,0,0,1,0,1,0|6,3,0,1,0,0,0,0,-1,0,1,0|70.4999,27.7528,90.4195|2,10,1|70.4999,15.7528,90.4195|-1.5,0,0,0,0,1,0'
  1527. ..',1,0,-1,0,0|-2.5001,-3.5,0,0,0,1,0,1,0,-1,0,0|0,0.7999,8.5,0,1,0,0,0,-1,-1,-0,0|-6.0001,1.5,0,1,0,0,0,0,-1,0,1,0|0,5,0,-1,-0,-0,0,0,1,0,1,0|-1.5,-6.0001,0,0,0,1,-1,0,0,0,-1,0|83.9999,29.2528,90.4195|18,1,28|-8,-4.5,1,0'
  1528. ..',-1,0,-1,0,0,0,0,-1|8,-4.5,1,0,1,0,1,0,0,0,0,-1|7.5,-1,12,0,1,0,0,0,1,1,0,0|7.5,-0.5,1,0,1,0,0,0,1,1,0,0|7.5,-0.5,-5,0,1,0,0,0,1,1,0,0|1,0,13.5,0,0,-1,1,0,0,0,-1,0|7.5,-0.5,-1,0,1,0,0,0,1,1,0,0|0,-0.5,-13,-1,0,0,0,0,1,'
  1529. ..'0,1,0|10,-4.5,1,0,-1,0,-1,0,0,0,0,-1|82.9999,30.2528,90.4195|18,1,2|0,0.5,1,1,0,0,0,0,-1,0,1,0|76.9999,30.2528,90.4195|0,0.5,7,1,0,0,0,0,-1,0,1,0|70.9999,30.2528,90.4195|66.9999,29.2528,90.4195|6,6,3|0,-3,0,1,0,0,-0,-0'
  1530. ..',-1,0,1,0|0,-1,1,1,0,0,0,-1,0,0,0,-1|0,0,14,1,0,0,0,-1,0,0,0,-1|1.5,0,-0.5,0,-1,0,1,0,0,0,0,1|111.9999,30.7528,94.9195|0.5,-4.5,-2,0,0,-1,0,-1,0,-1,0,0|88.9999,30.2528,90.4195|0,0.5,-5,1,0,0,0,0,-1,0,1,0|64.4999,21.752'
  1531. ..'8,94.4195|0,0,-2.5,-1,-0,-0,0,1,0,-0,-0,-1|-2.5,-2,-0.5,0,1,0,0,0,1,1,0,0|0.5,-2.5,4,0,0,-1,1,0,0,0,-1,0|3,1.5,0,0,0,-1,0,1,0,1,0,0|64.4999,20.2528,90.4195|6,7,5|60.9999,25.7528,90.4195|2,6,4|0,2,-1,1,0,0,0,0,-1,0,1,0|'
  1532. ..'0,3.5,3.5,1,0,0,0,0,-1,0,1,0|61.4999,25.7528,91.9195|2,-1.5,1.5,0,0,-1,1,0,0,0,-1,0|1.5,3.5,3,1,0,0,0,0,-1,0,1,0|61.9999,25.7528,92.9195|2,-0.5,2,0,0,-1,1,0,0,0,-1,0|2.5,3.5,2.5,1,0,0,0,0,-1,0,1,0|102.9999,30.2528,90.4'
  1533. ..'195|108.9999,30.2528,90.4195|0.5,0,1,0,0,-1,1,0,0,0,-1,0|114.9999,30.2528,90.4195|65.9999,15.2528,90.4195|10,3,8|-2,0,-3.5,0,0,1,1,0,0,0,1,0|-2.5,0,-2,0,0,1,1,0,0,0,1,0|-4,-5,-1.5,1,0,0,0,0,1,0,-1,0|0,-3.5,-1.5,1,0,0,0'
  1534. ..',0,1,0,-1,0|4,-5,-1.5,1,0,0,0,0,1,0,-1,0|59.9999,21.7528,93.4195|1.5,-1.5,-0.5,0,1,0,0,0,1,1,0,0|1,0,0,0,0,-1,1,0,0,0,-1,0|59.9999,21.7528,90.4195|61.4999,18.7528,93.9195|-2,0.5,1.5,0,0,1,1,0,0,0,1,0|59.9999,18.2528,90'
  1535. ..'.4195|2,3,4|0,-2,0,1,0,0,0,0,1,0,-1,0|60.4999,18.2528,91.9195|60.9999,18.2528,92.9195|-2,-0.5,1,0,0,1,1,0,0,0,1,0|111.9999,30.7528,85.9195|120.9999,21.7528,80.9195|0.5,0,19,0,0,-1,1,0,0,0,-1,0|-7.5,9,-11,1,0,0,0,0,-1,0'
  1536. ..',1,0|9,7.5,5.5,0,0,-1,1,0,0,0,-1,0|125.5999,27.7528,104.4195|125.5999,27.7528,76.4195|95.9999,21.7528,100.4195|9,-7.5,-12,0,0,-1,1,0,0,0,-1,0|0.5,0,-12,0,0,-1,1,0,0,-0,-1,0|0,1,0,-1,-0,-0,0,0,1,0,1,0|2,-6,-3,0,1,0,-1,0'
  1537. ..',0,0,0,1|88.9999,21.7528,99.9195|82.9999,21.7528,99.9195|117.9999,18.2528,100.4195|0,180,180|-9,4,2.5,0,0,1,0,-1,0,1,0,0|91.9999,26.2528,100.4195|0,-180,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-2,-1.5,-3,1,0,0,0,1,0,0,0,1|83.'
  1538. ..'9999,21.7528,98.9195|1,14,28|8.5,-0.5,0,-1,0,0,0,0,1,0,1,0|-1.5,-4.0001,8,1,-0,0,0,-1,0,0,0,-1|8.5,0.8,-5,1,0,0,0,0,-1,-0,1,0|-1.5,3,8,1,0,-0,0,-1,-0,0,0,-1|1.5,0,-13.5,0,0,-1,0,1,0,1,-0,0|0,3,11,0,1,0,0,0,-1,-1,0,0|91'
  1539. ..'.9999,18.2528,100.4195|99.9999,26.2528,100.4195|0,180,0|120.9999,21.7528,99.9195|-7.5,-9,-11,1,0,0,0,0,1,0,-1,0|-0.5,0,11,0,0,1,1,0,0,0,1,0|-9,7.5,5.5,0,0,1,1,0,0,0,1,0|76.9999,21.7528,99.9195|9,-7.5,7,0,0,-1,1,0,0,0,-'
  1540. ..'1,0|9,7.8,2,0,0,-1,1,0,0,-0,-1,0|102.9999,21.7528,99.9195|-7.5,-9,7,1,0,0,0,0,1,0,-1,0|-0.5,0,-7,0,0,1,1,0,0,0,1,0|111.9999,26.2528,100.4195|105.9999,18.2528,100.4195|105.9999,26.2528,100.4195|99.9999,18.2528,100.4195|'
  1541. ..'117.9999,18.2528,80.4195|0.5,-3.5,16,-0,-0,-1,0,-1,0,-1,0,0|108.9999,21.7528,99.9195|-0.5,0,-1,0,0,1,1,0,0,0,1,0|-9,7.5,-6.5,0,0,1,1,0,0,0,1,0|70.9999,21.7528,99.9195|9,-7.5,13,0,0,-1,1,0,0,0,-1,0|9,7.8,8,0,0,-1,1,0,0,'
  1542. ..'-0,-1,0|117.9999,30.7528,94.9195|0.5,-4.5,-8,0,0,-1,0,-1,0,-1,0,0|120.9999,30.2528,90.4195|0.5,0,-11,0,0,-1,1,0,0,0,-1,0|117.9999,30.7528,85.9195|111.9999,26.2528,80.4195|108.9999,21.7528,80.9195|9,7.5,-6.5,0,0,-1,1,0,'
  1543. ..'0,0,-1,0|105.9999,18.2528,80.4195|117.9999,27.7528,76.4195|0,1.5,-1,1,0,0,0,1,0,0,0,1|114.3999,27.7528,76.4195|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-3,0,0,0,0,1,1,0,0,0,1,0|93.9999,27.7528,104.4195|98.9999,27.7528,104.4195|90.'
  1544. ..'3999,27.7528,104.4195|101.5999,27.7528,104.4195|2,0,0,0,0,-1,1,0,0,0,-1,0|111.9999,18.2528,100.4195|0,-3.5001,0,-1,0,0,0,0,1,0,1,0|-9,4,-3.5,0,0,1,0,-1,0,1,0,0|117.9999,26.2528,100.4195|0,-4.5001,0,-1,0,0,0,0,1,0,1,0|0'
  1545. ..',-1.5,-3,1,0,0,0,1,0,0,0,1|-3,-9,-8,0,1,0,0,0,1,1,0,0|114.9999,21.7528,99.9195|-0.5,0,5,0,0,1,1,0,0,0,1,0|-9,7.5,-0.5,0,0,1,1,0,0,0,1,0|111.9999,18.2528,80.4195|0.5,-3.5,10,-0,-0,-1,0,-1,0,-1,0,0|117.9999,26.2528,80.41'
  1546. ..'95|114.9999,21.7528,80.9195|-7.5,9,-5,1,0,0,0,0,-1,0,1,0|9,7.5,-0.5,0,0,-1,1,0,0,0,-1,0|122.9999,27.7528,76.4195|0,0.6,0,0,-1,-0,0,-0,-1,1,-0,-0|117.9999,27.7528,104.4195|0,0.6,0,0,-1,0,0,0,-1,1,0,0|122.9999,27.7528,10'
  1547. ..'4.4195|3,0,0,0,0,-1,0,1,0,1,0,0|114.3999,27.7528,104.4195;0,70>14>68,70>15>473,71>14>68,71>15>139,72>14>68,72>15>305,73>14>68,73>15>247,74>14>68,74>15>283,75>14>68,75>15>298,76>14>68,76>15>124,77>14>68,77>15>137,78>14>'
  1548. ..'68,78>15>370,81>14>79,81>15>2,82>14>79,82>15>93,83>16>93,84>16>93,87>16>93,98>14>93,98>15>210,99>14>93,99>15>2,123>16>387,129>14>127,129>15>187,130>14>127,130>15>148,133>14>131,133>15>135,134>14>131,134>15>150,138>14>1'
  1549. ..'37,138>15>387,140>14>139,140>15>387,144>14>143,144>15>387,147>14>145,147>15>125,151>14>150,151>15>139,152>14>150,152>15>387,153>14>150,153>15>135,154>14>150,154>15>68,155>14>150,155>15>281,156>14>150,156>15>283,157>14>'
  1550. ..'150,157>15>247,158>14>150,158>15>137,161>14>159,161>15>180,164>14>162,164>15>314,165>14>162,165>15>187,166>14>162,166>15>208,168>14>167,168>15>174,170>14>169,170>15>182,171>14>169,171>15>167,172>14>169,172>15>159,173>1'
  1551. ..'4>169,173>15>141,177>14>176,177>15>187,178>14>176,178>15>150,179>14>176,179>15>125,186>14>184,186>15>538,188>14>187,188>15>571,189>14>187,189>15>314,190>14>187,190>15>208,191>14>187,191>15>534,192>14>187,192>15>183,193'
  1552. ..'>14>187,193>15>182,194>14>187,194>15>538,195>14>187,195>15>180,196>14>187,196>15>159,197>14>187,197>15>387,198>14>187,198>15>536,199>14>187,199>15>68,200>14>187,200>15>216,201>14>187,201>15>573,202>14>187,202>15>148,20'
  1553. ..'3>14>187,203>15>184,204>14>187,204>15>93,205>14>187,205>15>143,206>14>187,206>15>2,207>14>187,207>15>124,211>14>210,211>15>2,213>14>212,213>15>387,214>14>212,214>15>216,215>14>212,215>15>187,217>14>216,217>15>68,219>14'
  1554. ..'>218,219>15>380,222>14>220,222>15>416,223>14>220,223>15>270,226>14>224,226>15>416,227>14>224,227>15>270,228>14>224,228>15>243,230>14>229,230>15>433,231>14>229,231>15>354,232>14>229,232>15>281,233>14>229,233>15>239,235>'
  1555. ..'14>234,235>15>360,236>14>234,236>15>381,237>14>234,237>15>283,238>14>234,238>15>239,240>14>239,240>15>416,241>14>239,241>15>352,242>14>239,242>15>243,244>14>243,244>15>281,245>14>243,245>15>416,246>14>243,246>15>270,24'
  1556. ..'8>14>247,248>15>239,250>14>249,250>15>387,253>14>251,253>15>387,254>14>251,254>15>380,255>14>251,255>15>243,258>14>256,258>15>293,259>14>256,259>15>387,262>14>260,262>15>295,263>14>260,263>15>387,266>14>264,266>15>302,'
  1557. ..'267>14>264,267>15>387,272>14>270,272>15>444,273>14>270,273>15>416,276>14>274,276>15>270,284>14>283,284>15>387,285>14>283,285>15>380,286>14>283,286>15>281,289>14>287,289>15>270,292>14>290,292>15>270,297>14>295,297>15>38'
  1558. ..'7,299>14>298,299>15>310,301>14>300,301>15>380,304>14>302,304>15>387,306>14>305,306>15>387,307>14>305,307>15>380,308>14>305,308>15>309,311>14>310,311>15>416,312>14>310,312>15>352,313>14>310,313>15>309,315>14>314,315>15>'
  1559. ..'564,316>14>314,316>15>571,317>14>314,317>15>520,318>14>314,318>15>432,319>14>314,319>15>510,320>14>314,320>15>532,321>14>314,321>15>210,322>14>314,322>15>429,323>14>314,323>15>279,324>14>314,324>15>2,325>14>314,325>15>'
  1560. ..'494,326>14>314,326>15>341,327>14>314,327>15>277,328>14>314,328>15>506,329>14>314,329>15>184,330>14>314,330>15>183,331>14>314,331>15>534,332>14>314,332>15>536,335>14>333,335>15>380,336>14>333,336>15>412,337>14>333,337>1'
  1561. ..'5>387,340>14>338,340>15>268,343>14>341,343>15>277,346>14>344,346>15>314,347>14>344,347>15>279,350>14>348,350>15>352,351>14>348,351>15>412,353>14>352,353>15>281,356>14>355,356>15>433,357>14>355,357>15>348,358>14>355,358'
  1562. ..'>15>354,359>14>355,359>15>310,361>14>360,361>15>309,363>14>362,363>15>68,364>14>362,364>15>298,365>14>362,365>15>247,367>14>366,367>15>68,368>14>366,368>15>298,369>14>366,369>15>247,371>14>370,371>15>298,372>14>370,372'
  1563. ..'>15>247,374>14>373,374>15>68,375>14>373,375>15>298,376>14>373,376>15>247,378>14>377,378>15>298,379>14>377,379>15>247,382>14>381,382>15>360,383>14>381,383>15>309,384>14>381,384>15>68,385>14>381,385>15>283,386>14>381,386'
  1564. ..'>15>305,388>14>387,388>15>338,389>14>387,389>15>268,390>14>387,390>15>182,391>14>387,391>15>473,392>14>387,392>15>472,393>14>387,393>15>380,394>14>387,394>15>124,395>14>387,395>15>401,396>14>387,396>15>293,398>14>397,3'
  1565. ..'98>15>387,400>14>399,400>15>387,404>14>402,404>15>401,405>14>402,405>15>387,406>14>402,406>15>380,409>14>407,409>15>314,411>14>410,411>15>387,413>14>412,413>15>310,414>14>412,414>15>425,415>14>412,415>15>416,419>14>417'
  1566. ..',419>15>444,420>14>417,420>15>416,423>14>421,423>15>440,424>14>421,424>15>416,427>14>425,427>15>440,428>14>425,428>15>416,431>14>430,431>15>314,435>14>433,435>15>354,436>14>433,436>15>352,437>14>433,437>15>412,438>14>4'
  1567. ..'33,438>15>416,439>14>433,439>15>243,442>14>440,442>15>451,443>14>440,443>15>444,447>14>445,447>15>440,450>14>448,450>15>444,455>14>453,455>15>440,458>14>456,458>15>407,459>14>456,459>15>314,461>14>460,461>15>187,462>14'
  1568. ..'>460,462>15>314,463>14>460,463>15>93,469>14>468,469>15>387,470>14>468,470>15>480,471>14>468,471>15>546,476>14>474,476>15>93,479>14>477,479>15>546,481>14>480,481>15>473,482>14>480,482>15>500,483>14>480,483>15>387,484>14'
  1569. ..'>480,484>15>216,485>14>480,485>15>68,486>14>480,486>15>523,487>14>480,487>15>212,488>14>480,488>15>305,489>14>480,489>15>472,490>14>480,490>15>298,493>14>491,493>15>477,497>14>496,497>15>314,498>14>496,498>15>210,499>1'
  1570. ..'4>496,499>15>93,501>14>500,501>15>387,502>14>500,502>15>68,504>14>503,504>15>314,505>14>503,505>15>210,512>14>510,512>15>508,515>14>513,515>15>494,518>14>516,518>15>571,519>14>516,519>15>187,521>14>520,521>15>210,522>1'
  1571. ..'4>520,522>15>93,524>14>523,524>15>387,525>14>523,525>15>68,528>14>526,528>15>532,529>14>526,529>15>314,531>14>530,531>15>314,537>14>536,537>15>93,541>14>540,541>15>576,542>14>540,542>15>571,545>14>543,545>15>540,547>14'
  1572. ..'>546,547>15>548,551>14>549,551>15>546,554>14>552,554>15>548,557>14>555,557>15>506,558>14>555,558>15>93,561>14>559,561>15>474,562>14>559,562>15>578,563>14>559,563>15>314,565>14>564,565>15>210,566>14>564,566>15>93,569>14'
  1573. ..'>567,569>15>534,570>14>567,570>15>187,574>14>573,574>15>314,575>14>573,575>15>93,577>14>576,577>15>466,579>14>578,579>15>583,581>14>580,581>15>464,582>14>580,582>15>578;2;n;1|2:2|3:3|4:4|5:5|6:6|7:6|8:6|9:6|2:2|2:2;n;3'
  1574. ..'|1:7|10:8;p;2;n;2|1:9;n;2|1:10;n;4|1:11;4|1:12;5;p;3|1:13|10:14;3|1:7|10:8;3|1:15|10:14;3|1:16|10:14;3|1:17|10:14;p;2|1:18;n;2|1:10;n;4|1:11;4|1:12;5;p;6|1:18;n;4|1:19;5|1:20;n;5|1:21;p;p;3|1:7|10:8;p;2|1:10;n;4|1:11;4'
  1575. ..'|1:12;3|1:7|10:8;5;p;2|1:10;n;4|1:11;4|1:12;3|1:7|10:8;5;p;2|1:10;n;4|1:11;4|1:12;3|1:7|10:8;5;5|1:22;p;2|1:23;n;2|1:24;n;4|1:12;n;5;p;4|1:11;p;3|1:7|10:8;p;2;n;2|1:25;n;2|1:26;n;2|1:10;n;4|1:11;4|1:12;5;p;p;6|1:25;n;4'
  1576. ..'|1:19;5|1:20;n;5|1:21;p;p;p;3|1:7|10:8;p;2|1:10;n;4|1:11;4|1:12;3|1:13|10:14;3|1:7|10:8;3|1:15|10:14;3|1:16|10:14;3|1:17|10:14;5;p;1|11:27|2:28|3:29|4:30|5:31|9:6|2:28|2:28;n;3|1:7|10:8;7|12:32|13:33;7|12:34|13:35;7|12'
  1577. ..':36|13:37;7|12:36|13:38;7|12:36|13:39;7|12:36|13:40;7|12:34|13:41;7|12:34|13:42;7|12:36|13:43;p;1|11:27|2:28|3:44|4:45|5:46|9:6|2:28|2:28;n;3|1:7|10:8;7|12:47|13:48;7|12:47|13:49;p;2|1:50;n;2|1:10;n;4|1:11;4|1:12;2|1:5'
  1578. ..'1;n;8|1:52|17:53;8|1:52|17:54;8|1:52|17:55;8|1:52|17:56;8|1:52|17:57;1|1:58|3:59|4:45|5:60|6:6|18:6|7:6|9:6;n;9|3:61|19:62;10|20:62;5;4|1:63;7|12:64|13:65;7|12:66|13:67;p;8|1:52|17:68;8|1:52|17:69;8|1:52|17:70;8|1:52|1'
  1579. ..'7:71;8|1:52|17:72;8|1:52|17:73;8|1:52|17:74;8|1:52|17:75;8|1:52|17:76;8|1:52|17:77;8|1:52|17:78;8|1:52|17:78;8|1:52|17:79;8|1:52|17:80;8|1:52|17:81;8|1:52|17:82;8|1:52|17:83;8|1:52|17:84;8|1:52|17:85;8|1:52|17:86;8|1:5'
  1580. ..'2|17:87;5;8|1:52|17:68;p;2|1:88;n;1|2:89|3:90|4:91|5:92|6:6|9:93|2:89|2:89;1|2:2|3:94|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:96|5:95|6:6|2:2|2:2;n;11|21:6;7|12:97|13:98;7|12:99|13:100;p;1|2:2|3:101|4:102|5:103|6:6|2:2|2:'
  1581. ..'2;n;11|21:6;7|12:104|13:105;7|12:97|13:106;p;1|2:2|3:107|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:108|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:110;p;1|2:89|3:111|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:112;p;1|2:89|3'
  1582. ..':113|4:114|5:115|6:93|9:93|2:89|2:89;n;11;p;1|2:89|3:116|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:117;p;1|2:2|22:118|3:119|4:102|5:103|23:120|6:6|9:93|2:2|2:2;n;11|21:6;7|12:104|13:105;p;1|2:2|3:121|4:102|5:103|6:6|2'
  1583. ..':2|2:2;n;11|21:6;p;1|3:122|4:30|5:123|6:6|7:6|9:6;n;7|12:124|13:125;7|12:126|13:127;7|12:124|13:128;7|12:129|13:130;7|12:131|13:132;7|12:133|13:134;7|12:133|13:135;7|12:124|13:136;p;1|2:2|3:137|5:95|6:6|2:2|2:2;n;11|21'
  1584. ..':6;7|12:99|13:100;p;1|2:2|3:138|5:95|6:6|2:2|2:2;n;11|21:6;7|12:97|13:139;7|12:97|13:140;7|12:99|13:100;p;1|2:89|3:141|5:142|24:6|6:93|7:6|8:6|9:93|2:89|2:89;n;7|12:143|13:144;p;1|2:145|3:146|5:147|24:6|25:6|6:93|7:6|9'
  1585. ..':93|2:145|2:145;n;7|12:148|13:149;7|12:150|13:151;7|12:148|13:152;7|12:153|13:154;p;1|2:155|22:156|3:157|4:158|5:159|6:93|9:93|2:155|2:155;n;11;p;1|3:160|4:161|5:162|6:6|8:6|9:6;n;7|12:163|13:164;7|12:165|13:166;7|12:1'
  1586. ..'33|13:167;p;1|2:2|3:168|4:102|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:169|4:91|5:170|6:6|9:93|2:89|2:89;1|2:89|3:171|4:91|5:92|6:6|9:93|2:89|2:89;1|2:2|3:172|5:95|6:6|2:2|2:2;n;11|21:6;7|12:99|13:100;p;1|3:173|4:45|5:17'
  1587. ..'4|6:6|7:6|8:6|9:6;n;7|12:133|13:175;7|12:126|13:176;7|12:133|13:177;7|12:133|13:178;7|12:133|13:179;7|12:133|13:180;7|12:133|13:181;7|12:133|13:182;7|12:133|13:183;7|12:126|13:184;7|12:133|13:185;7|12:129|13:186;7|12:1'
  1588. ..'24|13:187;7|12:133|13:188;7|12:133|13:189;7|12:133|13:190;7|12:129|13:191;7|12:133|13:192;7|12:193|13:194;7|12:133|13:195;p;1|2:2|3:196|4:102|5:103|6:6|2:2|2:2;n;11|21:6;p;1|3:197|4:45|5:198|6:6|8:6|9:6;n;7|12:199|13:2'
  1589. ..'00;p;1|3:201|4:102|5:202|25:6|6:6|18:6|9:6;n;7|12:203|13:204;7|12:205|13:206;7|12:207|13:208;p;1|3:209|4:102|5:210|25:6|6:6|18:6|9:6;n;7|12:211|13:212;p;1|3:213|4:214|5:215|6:6|9:6;n;7|12:216|13:217;p;1|2:218|22:219|3:'
  1590. ..'220|4:221|5:222|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:224;7|12:223|13:225;p;1|2:218|22:219|3:226|4:221|5:227|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:228;7|12:223|13:229;7|12:124|13:230;p;1|3:231|4:232|5:233|6'
  1591. ..':6|7:6|9:93;n;7|12:234|13:235;7|12:216|13:236;7|12:237|13:238;7|12:239|13:240;p;1|3:241|4:232|5:233|6:6|7:6|9:93;n;7|12:216|13:242;7|12:234|13:243;7|12:237|13:244;7|12:239|13:245;p;1|3:246|4:214|5:247|6:6|7:6|9:6;n;7|1'
  1592. ..'2:165|13:248;7|12:234|13:249;7|12:165|13:250;p;1|2:89|3:251|4:30|5:252|6:6|7:6|8:6|9:6|2:89|2:89;n;7|12:253|13:254;7|12:255|13:256;7|12:257|13:258;p;1|3:259|4:232|5:260|6:6|7:6|9:93;n;7|12:261|13:262;p;1|2:89|3:263|4:3'
  1593. ..'0|5:264|6:6|9:93|2:89|2:89;n;7|12:109|13:265;p;1|2:89|3:266|4:221|5:267|6:6|2:89|2:89;n;11|21:6;7|12:203|13:268;7|12:203|13:269;7|12:270|13:271;p;1|2:2|3:272|4:273|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13'
  1594. ..':274;p;1|2:2|3:275|4:273|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13:276;p;1|2:2|3:277|4:273|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13:278;p;1|2:2|3:279|4:273|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:8'
  1595. ..'9|3:280|4:281|5:142|6:6|2:89|2:89;n;11|21:6;7|12:223|13:282;7|12:165|13:283;p;1|2:2|3:284|4:285|5:286|6:6|2:2|2:2;n;11|21:6;7|12:287|13:288;p;1|2:2|3:289|4:273|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:290|4:273|5:103|6:6|'
  1596. ..'2:2|2:2;n;11|21:6;p;1|2:2|3:291|4:281|5:292|6:6|2:2|2:2;n;11|21:6;p;1|3:293|4:232|5:294|6:6|7:6|8:6|9:93;n;7|12:295|13:296;7|12:216|13:297;7|12:298|13:299;p;1|2:89|3:300|4:285|5:301|6:6|2:89|2:89;n;11|21:6;7|12:237|13:'
  1597. ..'302;p;1|2:2|3:303|4:285|5:304|6:6|2:2|2:2;n;11|21:6;7|12:237|13:305;p;1|2:2|3:306|4:307|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:308|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:309;p;1|3:310|4:232|5:260|6:93|7:6|9:6;n;7|'
  1598. ..'12:261|13:311;p;1|3:312|4:214|5:215|6:6|9:6;n;7|12:216|13:313;p;1|2:2|3:314|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:315;p;1|3:316|4:30|5:317|6:6|8:6|9:6;n;7|12:126|13:318;7|12:319|13:320;7|12:319|13:321;p;1|3:322|'
  1599. ..'4:232|5:233|6:93|7:6|9:6;1|3:323|4:214|5:247|6:6|7:6|9:6;n;7|12:165|13:324;7|12:234|13:325;7|12:234|13:326;p;1|3:327|4:91|5:328|6:6|7:6|8:6|9:6;n;7|12:329|13:330;7|12:331|13:332;7|12:329|13:333;7|12:133|13:334;7|12:329'
  1600. ..'|13:335;7|12:133|13:336;7|12:124|13:337;7|12:133|13:185;7|12:133|13:178;7|12:338|13:339;7|12:329|13:340;7|12:133|13:341;7|12:133|13:190;7|12:329|13:342;7|12:331|13:343;7|12:331|13:344;7|12:331|13:345;7|12:331|13:346;p;'
  1601. ..'1|2:89|3:347|4:221|5:267|6:6|2:89|2:89;n;11|21:6;7|12:203|13:348;7|12:270|13:271;7|12:203|13:349;p;1|2:2|3:350|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;p;1|2:2|3:351|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|'
  1602. ..'13:100;p;1|2:2|3:352|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:353;7|12:104|13:100;p;1|2:2|3:354|4:232|5:355|6:93|9:93|2:2|2:2;n;11|21:6;7|12:165|13:356;7|12:165|13:357;p;1|3:358|4:232|5:359|6:6|7:6|9:6;n;7|12:360|1'
  1603. ..'3:361;p;1|3:362|4:232|5:363|6:6|7:6|9:6;1|3:364|4:232|5:233|6:93|7:6|9:6;n;7|12:234|13:365;7|12:216|13:366;7|12:237|13:367;7|12:239|13:240;p;1|3:368|4:232|5:369|6:6|7:6|9:6;n;7|12:163|13:370;p;1|3:371|4:232|5:363|6:6|7'
  1604. ..':6|9:6;n;7|12:372|13:373;7|12:163|13:374;7|12:165|13:375;p;1|3:376|4:232|5:369|6:6|7:6|9:6;n;7|12:319|13:377;7|12:163|13:378;7|12:165|13:379;p;1|3:380|4:232|5:381|6:6|7:6|9:6;n;7|12:163|13:382;7|12:165|13:383;p;1|3:384'
  1605. ..'|4:232|5:385|6:6|7:6|9:6;n;7|12:124|13:386;7|12:163|13:387;7|12:165|13:388;p;1|3:389|4:232|5:390|6:6|9:6;n;7|12:163|13:391;7|12:165|13:392;p;1|3:393|4:232|5:394|6:6|8:6|9:6;1|3:395|4:232|5:394|6:6|7:6|9:6;n;7|12:255|13'
  1606. ..':396;7|12:255|13:397;7|12:253|13:398;7|12:360|13:399;7|12:400|13:401;p;1|3:402|4:30|5:403|6:93|9:6;n;7|12:64|13:404;7|12:64|13:405;7|12:34|13:406;7|12:32|13:407;7|12:32|13:408;7|12:109|13:409;7|12:34|13:410;7|12:64|13:'
  1607. ..'411;7|12:64|13:412;p;1|2:89|3:413|4:30|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13:415;p;1|2:89|3:416|4:30|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13:417;p;1|2:89|3:418|4:30|5:414|6:6|9:93|2:89|2:89;1|2:2|3:419|4:221|5:420|6:6|'
  1608. ..'2:2|2:2;n;11|21:6;7|12:421|13:422;7|12:421|13:423;7|12:421|13:424;p;1|2:2|3:425|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:426;p;1|2:89|3:427|4:30|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13:428;p;1|2:89|3:429|4:30|5:252|'
  1609. ..'6:6|7:6|8:6|9:6|2:89|2:89;n;7|12:430|13:431;7|12:253|13:432;7|12:253|13:433;p;1|3:434|4:30|5:435|6:6|7:6|8:6|9:6;1|2:218|22:219|3:436|4:221|5:437|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:438;7|12:223|13:439;p;1|2:21'
  1610. ..'8|22:219|3:440|4:221|5:222|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:441;7|12:223|13:442;p;1|2:218|22:219|3:443|4:221|5:227|25:6|6:93|2:218|2:218;n;11|21:6;7|12:223|13:444;7|12:223|13:445;p;1|2:89|3:446|4:45|5:414|6:'
  1611. ..'6|9:93|2:89|2:89;1|2:89|3:447|4:45|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13:448;p;1|2:89|3:449|4:45|5:414|6:6|9:93|2:89|2:89;1|2:2|3:450|4:285|5:451|6:93|9:93|2:2|2:2;n;11|21:6;7|12:237|13:452;7|12:237|13:453;7|12:237|13'
  1612. ..':454;7|12:237|13:455;7|12:237|13:456;p;1|2:89|3:457|4:232|5:142|6:6|2:89|2:89;n;11|21:6;7|12:372|13:458;7|12:165|13:459;p;1|2:2|3:460|4:30|5:390|6:6|7:6|8:6|9:6|2:2|2:2;1|2:2|3:461|4:285|5:286|6:6|2:2|2:2;n;11|21:6;7|1'
  1613. ..'2:287|13:462;p;1|2:89|3:463|4:285|5:464|6:6|2:89|2:89;n;11|21:6;7|12:237|13:465;p;1|2:2|3:466|4:285|5:304|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:467|4:285|5:301|6:6|2:89|2:89;n;11|21:6;7|12:237|13:468;p;1|2:2|3:469|4:273|5:1'
  1614. ..'03|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13:140;p;1|2:89|3:470|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:471;7|12:109|13:472;7|12:109|13:473;p;1|2:155|22:156|3:474|4:158|5:159|6:93|9:93|2:155|2:155;n;11;p;1|2:'
  1615. ..'155|22:156|3:475|4:158|5:159|6:93|9:93|2:155|2:155;n;11;p;1|2:89|3:476|4:232|5:170|6:6|9:93|2:89|2:89;n;7|12:287|13:477;7|12:287|13:478;7|12:479|13:480;p;1|2:89|3:481|4:232|5:92|6:6|9:93|2:89|2:89;1|2:89|3:482|4:232|5:'
  1616. ..'92|6:6|9:93|2:89|2:89;1|2:2|3:483|4:484|5:103|6:6|2:2|2:2;n;11|21:6;7|12:97|13:485;p;1|2:2|3:486|4:487|5:95|6:6|2:2|2:2;n;11|21:6;7|12:488|13:489;p;1|2:2|3:490|4:30|5:491|6:6|9:6|2:2|2:2;n;7|12:133|13:179;7|12:133|13:1'
  1617. ..'85;7|12:126|13:492;7|12:124|13:493;7|12:129|13:494;7|12:133|13:188;7|12:124|13:495;7|12:124|13:496;7|12:133|13:334;7|12:124|13:497;p;1|2:2|3:498|4:484|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:105;p;1|2:2|3:499|4:500|5:9'
  1618. ..'5|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:501|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:502;7|12:109|13:503;7|12:109|13:504;p;1|2:89|3:505|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:506;7|12:109|13:507;p;1|2:89|3:508|4:232'
  1619. ..'|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:509;7|12:109|13:510;p;1|2:2|3:511|4:500|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:512|4:484|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:513|4:500|5:95|6:6|2:2|2:2;n;11|21:6;7|12:99|13:100;p;'
  1620. ..'1|2:2|3:514|4:484|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:105;p;1|2:2|3:515|4:102|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:105;7|12:97|13:516;p;1|2:89|3:517|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:518;7|12:109|13:51'
  1621. ..'9;p;1|2:89|3:520|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:521;7|12:109|13:522;p;1|2:2|3:523|4:307|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:100;7|12:97|13:524;p;1|2:89|3:525|4:45|5:414|6:6|9:93|2:89|2:89;n;7|12:109|13'
  1622. ..':526;p;1|2:2|3:527|4:273|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:2|3:528|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:529|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:530;p;1|2:2|3:531|4:102|5:103|6:6|2:2|2:2;n;11|21:6;p;1|2:145|3:53'
  1623. ..'2|5:147|24:6|25:6|6:93|7:6|9:93|2:145|2:145;n;7|12:150|13:151;7|12:148|13:533;p;1|2:89|3:534|4:114|5:115|6:93|9:93|2:89|2:89;n;11;7|12:535|13:536;p;1|2:145|3:537|5:147|24:6|6:93|18:6|7:6|9:93|2:145|2:145;n;7|12:150|13:'
  1624. ..'151;p;1|2:89|3:538|5:142|24:6|6:93|7:6|8:6|9:93|2:89|2:89;1|2:89|3:539|4:114|5:115|6:93|9:93|2:89|2:89;n;11;7|12:535|13:536;p;1|2:155|22:156|3:540|4:158|5:159|6:93|9:93|2:155|2:155;n;11;7|12:535|13:541;p;1|2:2|3:542|4:'
  1625. ..'484|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:543;7|12:97|13:544;p;1|2:2|3:545|4:500|5:95|6:6|2:2|2:2;n;11|21:6;7|12:99|13:546;7|12:488|13:547;7|12:97|13:548;p;1|2:89|3:549|4:232|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:550'
  1626. ..';7|12:109|13:551;p;1|2:2|3:552|4:102|5:103|6:6|2:2|2:2;n;11|21:6;7|12:104|13:105;7|12:97|13:553;p;1|2:2|3:554|5:95|6:6|2:2|2:2;n;11|21:6;p;1|2:89|3:555|4:91|5:92|6:6|9:93|2:89|2:89;n;7|12:109|13:556;7|12:109|13:557;p;1'
  1627. ..'|2:89|3:558|5:142|24:6|6:93|7:6|8:6|9:93|2:89|2:89;n;7|12:143|13:559;p;1|2:145|3:560|5:147|24:6|6:93|18:6|7:6|9:93|2:145|2:145;n;7|12:153|13:561;p;1|2:89|3:562|5:142|24:6|6:93|7:6|8:6|9:93|2:89|2:89;n;7|12:143|13:559;7'
  1628. ..'|12:372|13:563;p;1|2:89|3:564|4:114|5:115|6:93|9:93|2:89|2:89;n;11;p;p;5;p;3|1:7|10:8;p;3|1:7|10:8;p;p;')
  1629. for _,Object in pairs(Objects) do
  1630. Object.Parent = script and script.Parent==workspace and script or workspace
  1631. end
  1632. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement