Advertisement
lafur

Untitled

May 21st, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.09 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 31204
  3. local genv={}
  4.  
  5. local Part_Classes = {"Part","WedgePart","CornerWedgePart"}
  6. local Part_Shapes = {"Brick","Cylinder","Sphere","Torso","Wedge"}
  7. function DecodeUnion(t)
  8. local r = function()return table.remove(t,1) end
  9. local split = function(str,sep)
  10. local fields = {}
  11. str:gsub(("([^%s]+)"):format(sep or ','),function(c)fields[#fields+1]=c end)
  12. return fields
  13. end
  14. local m = Instance.new("Folder")
  15. m.Name = "UnionCache ["..tostring(math.random(1,9999)).."]"
  16. m.Archivable = false
  17. m.Parent = game:GetService("ServerStorage")
  18. local Union,Subtract = {},{}
  19. repeat
  20. local isNegate = false
  21. local class = r()
  22. if class=='-' then
  23. isNegate = true
  24. class = r()
  25. end
  26. if class=='n' then
  27. local d = {}
  28. local a = r()
  29. repeat
  30. table.insert(d,a)
  31. a = r()
  32. until a=='p'
  33. local u = DecodeUnion(d)
  34. if u then
  35. table.insert(isNegate and Subtract or Union,u)
  36. end
  37. else
  38. local size,pos,rot = Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  39. local part = Instance.new(Part_Classes[tonumber(class)])
  40. part.Size = size
  41. part.Position = pos
  42. part.Orientation = rot
  43. if r()=="+" then
  44. local m,ms,of = r(),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  45. if tonumber(m)==6 then
  46. part.Shape = Enum.PartType.Cylinder
  47. elseif tonumber(m)==7 then
  48. part.Shape = Enum.PartType.Ball
  49. else
  50. local mesh = Instance.new(tonumber(m)==8 and "CylinderMesh" or "SpecialMesh")
  51. if tonumber(m)~=8 then
  52. mesh.MeshType = Enum.MeshType[Part_Shapes[tonumber(m)]]
  53. end
  54. mesh.Scale = ms
  55. mesh.Offset = of
  56. mesh.Parent = part
  57. end
  58. end
  59. table.insert(isNegate and Subtract or Union,part)
  60. end
  61. until #t<=0
  62. local first = Union[1]
  63. first.Parent = m
  64. if #Union>1 then
  65. first = first:UnionAsync(Union)
  66. first.Parent = m
  67. end
  68. if #Subtract>0 then
  69. first = first:SubtractAsync(Subtract)
  70. first.Parent = m
  71. end
  72. first.Parent = nil
  73. m:Destroy()
  74. return first
  75. end
  76. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  77. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  78. function(t,f)
  79. for a,b in pairs(t) do
  80. f(a,b)
  81. end
  82. end
  83. local Types = {
  84. Color3 = Color3.new,
  85. Vector3 = Vector3.new,
  86. Vector2 = Vector2.new,
  87. UDim = UDim.new,
  88. UDim2 = UDim2.new,
  89. CFrame = CFrame.new,
  90. Rect = Rect.new,
  91. NumberRange = NumberRange.new,
  92. BrickColor = BrickColor.new,
  93. PhysicalProperties = PhysicalProperties.new,
  94. NumberSequence = function(...)
  95. local a = {...}
  96. local t = {}
  97. repeat
  98. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  99. until #a==0
  100. return NumberSequence.new(t)
  101. end,
  102. ColorSequence = function(...)
  103. local a = {...}
  104. local t = {}
  105. repeat
  106. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  107. until #a==0
  108. return ColorSequence.new(t)
  109. end,
  110. number = tonumber,
  111. boolean = function(a)
  112. return a=="1"
  113. end
  114. }
  115. split = function(str,sep)
  116. if not str then return end
  117. local fields = {}
  118. local ConcatNext = false
  119. str:gsub(("([^%s]+)"):format(sep),function(c)
  120. if ConcatNext == true then
  121. fields[#fields] = fields[#fields]..sep..c
  122. ConcatNext = false
  123. else
  124. fields[#fields+1] = c
  125. end
  126. if c:sub(#c)=="\\" then
  127. c = fields[#fields]
  128. fields[#fields] = c:sub(1,#c-1)
  129. ConcatNext = true
  130. end
  131. end)
  132. return fields
  133. end
  134. RemoveAndSplit = function(t)
  135. return split(table_remove(t,1),comma)
  136. end
  137. t = split(str,";")
  138. props = RemoveAndSplit(t)
  139. classes = RemoveAndSplit(t)
  140. values = split(table_remove(t,1),'|')
  141. ICList = RemoveAndSplit(t)
  142. InstanceList = {}
  143. Model = inst"Model"
  144. CurPar = Model
  145. table_foreach(t,function(ct,c)
  146. if c=="n" or c=="p" then
  147. CurPar = c=="n" and LastIns or CurPar[parnt]
  148. else
  149. ct = split(c,"|")
  150. local class = classes[tonum(table_remove(ct,1))]
  151. if class=="UnionOperation" then
  152. LastIns = {UsePartColor="1"}
  153. else
  154. LastIns = inst(class)
  155. if LastIns:IsA"Script" then
  156. s(LastIns)
  157. elseif LastIns:IsA("ModuleScript") then
  158. ms(LastIns)
  159. end
  160. end
  161.  
  162. local function SetProperty(LastIns,p,str,s)
  163. s = Types[typeof(LastIns[p])]
  164. if p=="CustomPhysicalProperties" then
  165. s = PhysicalProperties.new
  166. end
  167. if s then
  168. LastIns[p] = s(unpack(split(str,comma)))
  169. else
  170. LastIns[p] = str
  171. end
  172. end
  173.  
  174. local UnionData
  175. table_foreach(ct,function(s,p,a,str)
  176. a = p:find":"
  177. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  178. if p=="UnionData" then
  179. UnionData = split(str," ")
  180. return
  181. end
  182. if class=="UnionOperation" then
  183. LastIns[p] = str
  184. return
  185. end
  186. SetProperty(LastIns,p,str)
  187. end)
  188.  
  189. if UnionData then
  190. local LI_Data = LastIns
  191. LastIns = DecodeUnion(UnionData)
  192. table_foreach(LI_Data,function(p,str)
  193. SetProperty(LastIns,p,str)
  194. end)
  195. end
  196. table.insert(InstanceList,LastIns)
  197. LastIns[parnt] = CurPar
  198. end
  199. end)
  200. table_remove(ICList,1)
  201. table_foreach(ICList,function(a,b)
  202. b = split(b,">")
  203. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  204. end)
  205.  
  206. return Model:GetChildren()
  207. end
  208.  
  209. local Objects = Decode('Name,Anchored,Color,Material,Position,Size,BottomSurface,TopSurface,Shape,Orientation,Range,CanCollide,UnionData,Texture,Face,Reflectance,Transparency,PrimaryPart,C0,C1,Part0,Part1;Part,Model,PointLight,Wedge'
  210. ..'Part,UnionOperation,Decal,Weld;Part|Cool and epic spaceship|1|1,1,0|288|-97.0841,14.2491,143.8865|0.42,0.1899,0.42|0|0,1,0|-97.0841,14.2491,144.604|1,0,0|272|-97.5903,15.0016,145.8642|0.4,0.4,0.4|0.7921,0.796'
  211. ..',0.8196|1056|-104.583,21.2041,143.5344|7.51,0.2199,9.66|-98.4309,13.1364,147.6321|0,10,0|4.1399,2.76,0.22|0.3568,0.3647,0.4117|1088|-98.7083,20.1541,147.4403|4.37,1.9199,0.1799|0.9725,0.9725,0.9725|-117.2877,'
  212. ..'19.9991,143.9876|6.77,0.85,4.49|10|-104.4404,11.9064,143.4911|8.0399,0.3,8.9199|-116.4177,14.6339,151.8125|85,0,0|16.0299,2.5199,0.1199|-98.7248,20.2688,147.3468|-0.26,149.94,90.22|1.9916,3.3444,2.8127|-124.2'
  213. ..'377,16.5991,139.1595|0.5099,9.05,4.0399|-124.2528,20.1341,143.7246|0.48,1.98,5.25|-116.4177,16.5991,137.4176|16.0299,9.05,0.3699|-123.8178,16.5991,148.5485|0.35,9.05,4.6|-123.8178,16.5991,139.1595|0.35,9.05,4'
  214. ..'.0399|0.0666,0.0666,0.0666|-108.57,16.5391,144.2388|0.28,8.79,0.2|0|-104.358,13.3641,147.725|7.96,2.1,0.4499|-98.7214,13.3641,147.3657|4.37,2.1,0.4399|0.9058,0.9058,0.9254|-115.9937,16.6391,150.4442|0.3,2.529'
  215. ..'9,0.14|-117.4137,15.4941,150.4443|2.5799,0.2399,0.14|-98.7083,20.392,147.4403|- 1 0.5699,5.99,4.23 -108.5577,15.0691,144.2832 0,0,0 = - 1 7.51,4.54,5.95 -108.8677,18.6742,144.2632 0,0,0 = 1 0.3199,9.05,13.48 '
  216. ..'-108.5627,16.5991,143.9726 0,0,0 =|-135.649,6.6991,143.8961|0,0,25|25.5799,0.2899,5.35|0.3882,0.3725,0.3843|-97.6024,14.5591,145.85|0.21,0.7699,0.16|-96.2017,20.1191,144.0021|0.4799,1.9899,7.69|-97.5674,14.25'
  217. ..'91,145.8699|1.1799,0.1699,0.54|-116.4177,20.7742,144.0568|0,90,-180|12.9084,0.7,16.0299|- 1 4.16,2.8099,1.1999 -98.1803,12.6887,139.119 0,-15,0 = n - 1 4,0.2699,1 -98.4507,11.8794,145.1063 0,0,0 = - 1 4,0.269'
  218. ..'9,1 -98.4507,11.8794,145.9647 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,143.4165 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,142.0602 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,141.7086 0,0,0 = - 1 4,0.2699,1 -98.4507'
  219. ..',11.8794,141.2108 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,142.9186 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,140.1346 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,146.8141 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,145'
  220. ..'.4578 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,142.5671 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,146.3162 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,140.8592 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,147.5387 0,0,0 '
  221. ..'= 1 4,0.2599,8.97 -98.4412,11.8569,143.5876 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,147.1657 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,147.8903 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,144.2568 0,0,0 = - 1 4,0.2'
  222. ..'699,1 -98.4507,11.8794,139.6367 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,143.7681 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,140.4861 0,0,0 = - 1 4,0.2699,1 -98.4507,11.8794,144.6084 0,0,0 = - 1 4,0.2699,1 -98.45'
  223. ..'07,11.8794,139.2851 0,0,0 = p|END|0,1,1|-117.6186,11.5904,140.6691|0,0,-90|0.05,3.6899,4.0999|2|-117.5872,11.7566,140.6691|0.05,4.82,4.0999|-116.4177,15.4166,132.9969|88.1399,180,0|16.0299,2.084,0.2508|-116.4'
  224. ..'177,15.1423,132.988|-88.14,0,0|16.0299,2.084,0.2979|-118.4898,14.8491,150.1734|0.27,0.2299,0.33|-118.8316,14.8491,150.1734|-118.1046,14.8491,150.1734|-115.7524,14.8491,150.1734|-117.7398,14.8491,150.1734|-116'
  225. ..'.1636,14.8491,150.1734|-117.3609,14.8491,150.1734|-118.8453,16.6391,150.4442|-115.4827,14.8491,149.6504|0.17,0.2299,1.4899|-123.8178,20.1541,143.7045|0.35,1.94,5.09|-108.56,16.6991,145.4462|0.1999,8.63,2.3299'
  226. ..'|-118.8316,14.8491,149.3713|-116.9682,14.8491,149.3713|-116.5754,14.8491,149.3713|-118.4898,14.8491,149.3713|-118.1046,14.8491,149.3713|-115.7524,14.8491,149.3713|-117.7398,14.8491,149.3713|-117.3609,14.8491,'
  227. ..'149.3713|-116.1636,14.8491,149.3713|-117.2552,14.8491,149.0554|1.9399,0.2299,0.2999|-118.4898,14.8491,149.7375|-116.5754,14.8491,149.7375|-115.7524,14.8491,149.7375|-118.8316,14.8491,149.7375|-117.3609,14.849'
  228. ..'1,149.7375|-118.1046,14.8491,149.7375|-117.7398,14.8491,149.7375|-116.9682,14.8491,149.7375|-116.1636,14.8491,149.7375|-117.9627,18.7891,151.0061|5.3199,4.41,0.05|http://www.roblox.com/asset/?id=5024310935|-1'
  229. ..'17.4987,14.7641,149.6755|4.29,0.24,1.6599|-97.5941,12.7848,138.9993|5.85,1.4999,0.95|0.6235,0.6313,0.6745|-117.3627,13.6441,138.6026|8.6399,0.2799,2|-111.4327,6.2259,122.1275|0,-90,-116.59|4.6511,1.0235,3.26|'
  230. ..'-124.2578,12.9491,143.7735|0.57,1.5899,5.15|-100.7192,20.185,143.4246|0.1899,0,-90|1.8906,0.2176,8.4067|-104.583,20.2053,143.4247|0,-90,179.8099|8.4067,1.8499,7.51|-98.7493,20.1628,139.7236|0,-15,0|4.47,1.98,'
  231. ..'0.1|- 1 4,0.2699,1 -110.4187,12.2043,147.1876 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,144.6303 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,145.4797 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,145.1282 0,0,0 = - 1 '
  232. ..'4,0.2699,1 -110.4187,12.2043,146.3381 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,144.2787 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,150.118 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,147.9122 0,0,0 = - 1 4,0.2699,'
  233. ..'1 -110.4187,12.2043,148.7617 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,148.4101 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,149.6201 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,146.836 0,0,0 = - 1 4,0.2699,1 -110.41'
  234. ..'87,12.2043,145.9866 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,147.5606 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,149.2685 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,139.6586 0,0,0 = - 1 4,0.2699,1 -110.4187,12.20'
  235. ..'43,140.5081 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,140.1565 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,139.307 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,137.9507 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,138.80'
  236. ..'02 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,138.4486 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,137.5992 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,143.4384 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,141.2327 0,0,0'
  237. ..' = - 1 4,0.2699,1 -110.4187,12.2043,142.0821 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,141.7306 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,142.9405 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,143.79 0,0,0 = - 1 4,0'
  238. ..'.2699,1 -110.4187,12.2043,142.589 0,0,0 = - 1 4,0.2699,1 -110.4187,12.2043,140.8811 0,0,0 = 1 4,0.2599,13.0699 -110.4093,12.1819,143.9049 0,0,0 =|-104.4404,13.1364,148.0111|8.0399,2.76,0.22|1568|0.5|-96.5343,'
  239. ..'15.7441,143.7121|0.1,6.86,7.11|-111.4327,11.0162,128.3421|-20,0,0|3.26,1,4.0099|-119.3037,14.8491,149.6504|0.58,0.2299,1.4899|-117.4275,17.784,150.4442|2.5899,0.2399,0.14|-117.9627,18.7891,137.0149|0,180,0|-1'
  240. ..'16.4377,16.5991,150.8811|16.1099,9.05,0.1999|-116.4177,15.1192,155.1248|80,0,0|-116.4177,15.1537,134.4492|-10,0,-180|16.03,0.8237,0.6394|-116.4177,15.3725,135.6901|10,-180,180|16.03,0.8237,1.8805|-116.4177,15'
  241. ..'.3724,135.6901|5,0,0|16.03,1.2824,1.6032|-116.4177,15.2626,136.9453|-5,180,0|16.03,1.2824,0.9167|-116.4177,15.2551,153.4229|-10.8901,0,0|16.0299,0.7307,0.8785|-116.4177,15.519,154.7942|10.89,180,0|16.0299,0.7'
  242. ..'307,1.9141|-98.693,15.8091,139.7645|4.6,6.99,0.1699|-116.4177,15.5371,155.0365|-80,0,180|-116.4177,15.5151,150.9123|80,180,180|16.0299,0.42,1.8799|-116.4177,16.136,152.3389|-75,0,180|16.0299,3.0299,0.1199|-10'
  243. ..'4.583,20.1991,138.8794|7.51,1.8899,0.3499|-104.583,20.1991,139.1194|7.51,1.8899,0.2099|-121.9087,11.5904,145.4924|-121.8773,11.7566,145.4924|-98.7386,20.3103,144.037|0,-105,-90.27|1.9804,8.2351,2.2164|- 1 4,0'
  244. ..'.2699,1 -102.4334,12.2066,144.9936 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,145.852 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,143.3039 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,141.9476 0,0,0 = - 1 4,0.2699,1 -'
  245. ..'102.4334,12.2066,141.596 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,141.0981 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,142.806 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,140.0219 0,0,0 = - 1 4,0.2699,1 -102.4334,1'
  246. ..'2.2066,146.7015 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,145.3452 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,142.4544 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,146.2036 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,1'
  247. ..'40.7466 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,147.4261 0,0,0 = 1 4,0.2599,8.97 -102.4239,12.1841,143.4749 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,147.0531 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,147.7777'
  248. ..' 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,144.1442 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,139.5241 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,143.6554 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,140.3735 0,0,0 ='
  249. ..' - 1 4,0.2699,1 -102.4334,12.2066,144.4957 0,0,0 = - 1 4,0.2699,1 -102.4334,12.2066,139.1725 0,0,0 =|-124.2377,16.5991,148.6311|0.5099,9.05,4.6999|-98.6451,20.1628,139.5859|4.6,1.98,0.24|-97.6574,13.2691,143.'
  250. ..'6699|1.9999,1.91,6.2999|-116.4177,16.0672,136.9133|-80,180,0|16.0299,0.8699,0.1199|-117.2277,20.1091,143.8976|7.89,0.63,5.85|- 1 4,0.2699,1 -106.4474,12.2066,144.9936 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,'
  251. ..'145.852 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,143.3039 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,141.9476 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,141.596 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,141.0981 0'
  252. ..',0,0 = - 1 4,0.2699,1 -106.4474,12.2066,142.806 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,140.0219 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,146.7015 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,145.3452 0,0,0 = - '
  253. ..'1 4,0.2699,1 -106.4474,12.2066,142.4544 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,146.2036 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,140.7466 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,147.4261 0,0,0 = 1 4,0.2599'
  254. ..',8.97 -106.438,12.1841,143.4749 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,147.0531 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,147.7777 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,144.1442 0,0,0 = - 1 4,0.2699,1 -10'
  255. ..'6.4474,12.2066,139.5241 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,143.6554 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,140.3735 0,0,0 = - 1 4,0.2699,1 -106.4474,12.2066,144.4957 0,0,0 = - 1 4,0.2699,1 -106.4474,1'
  256. ..'2.2066,139.1725 0,0,0 =|-108.56,16.6641,143.1049|0.1999,8.6999,2.3299|-121.2577,12.8991,138.5726|0.33,1.6699,1.76|- 1 4,0.2699,1 -114.4222,12.2066,147.1876 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,144.6303 0,'
  257. ..'0,0 = - 1 4,0.2699,1 -114.4222,12.2066,145.4797 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,145.1282 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,146.3381 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,144.2787 0,0,0 = - '
  258. ..'1 4,0.2699,1 -114.4222,12.2066,150.1179 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,147.9122 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,148.7617 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,148.4101 0,0,0 = - 1 4,0.26'
  259. ..'99,1 -114.4222,12.2066,149.6201 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,146.836 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,145.9866 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,147.5606 0,0,0 = - 1 4,0.2699,1 -114'
  260. ..'.4222,12.2066,149.2685 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,139.6586 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,140.508 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,140.1565 0,0,0 = - 1 4,0.2699,1 -114.4222,12.'
  261. ..'2066,139.307 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,137.9507 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,138.8002 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,138.4486 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,137.'
  262. ..'5992 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,143.4384 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,141.2327 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,142.0821 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,141.7305 0,0'
  263. ..',0 = - 1 4,0.2699,1 -114.4222,12.2066,142.9405 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,143.79 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,142.589 0,0,0 = - 1 4,0.2699,1 -114.4222,12.2066,140.8811 0,0,0 = 1 4,0.'
  264. ..'2599,13.0699 -114.4127,12.1841,143.9049 0,0,0 =|- 1 4,0.2699,1 -118.4341,12.2066,147.1876 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,144.6303 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,145.4797 0,0,0 = - 1 4,0.26'
  265. ..'99,1 -118.4341,12.2066,145.1282 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,146.3381 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,144.2787 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,150.1179 0,0,0 = - 1 4,0.2699,1 -11'
  266. ..'8.4341,12.2066,147.9122 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,148.7617 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,148.4101 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,149.6201 0,0,0 = - 1 4,0.2699,1 -118.4341,1'
  267. ..'2.2066,146.836 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,145.9866 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,147.5606 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,149.2685 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,13'
  268. ..'9.6586 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,140.508 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,140.1565 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,139.307 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,137.9507 0,0'
  269. ..',0 = - 1 4,0.2699,1 -118.4341,12.2066,138.8002 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,138.4486 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,137.5992 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,143.4384 0,0,0 = - 1'
  270. ..' 4,0.2699,1 -118.4341,12.2066,141.2327 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,142.0821 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,141.7305 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,142.9405 0,0,0 = - 1 4,0.269'
  271. ..'9,1 -118.4341,12.2066,143.79 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,142.589 0,0,0 = - 1 4,0.2699,1 -118.4341,12.2066,140.8811 0,0,0 = 1 4,0.2599,13.0699 -118.4247,12.1841,143.9049 0,0,0 =|-104.5353,20.1915,'
  272. ..'148.2511|7.8499,1.8499,0.7199|-100.2909,19.3985,143.4913|5.9748,0.477,4.43|-100.3363,19.3152,143.5594|5.1266,0.6436,3.4001|-113.0788,11.5904,146.1|-113.0474,11.7566,146.1|-116.4177,15.3337,137.3491|16.0299,1.'
  273. ..'4758,0.2663|-116.4177,15.2625,136.9454|16.0299,1.4758,0.5535|-97.0841,14.2491,145.2593|-96.635,20.1915,143.695|0.15,1.8499,6.77|-116.9682,14.8491,150.1734|-116.5754,14.8491,150.1734|-120.4498,11.0162,159.5364'
  274. ..'|-20,180,0|-120.4498,12.6241,152.87|-120.4498,2.2376,166.8459|0,90,-92.64|4.2335,1.0034,3.26|-120.4498,9.2436,163.1111|0,90,-147.64|-120.4498,12.1417,156.1856|0,90,-162.1001|3.0982,1.064,3.26|-120.4498,6.2258'
  275. ..',165.7509|0,90,-116.59|-116.4177,15.2366,134.0447|42.18,0,-180|16.03,0.4203,0.3318|-116.4177,14.8929,134.424|-42.1801,-180,180|16.03,0.4203,0.6917|-116.4177,15.5086,154.8527|83.18,0,0|16.0299,2.075,0.6274|-11'
  276. ..'6.4177,15.1399,154.8968|-83.1801,-180,0|16.0299,2.075,0.115|-116.4177,15.1472,132.989|-86.1201,-0.01,0.0099|16.03,2.0945,0.2141|-116.4177,15.4174,133.0074|86.12,179.99,-0.01|16.03,2.0945,0.3274|-116.4177,15.6'
  277. ..'368,151.9612|15,0,-180|16.03,1.0398,2.5588|-116.4177,15.2447,153.4246|-15,-180,180|16.03,1.0398,0.4711|80.73,180,180|16.0299,2.4422,1.2901|-116.4177,14.6936,151.8073|-80.7301,0,-180|16.0299,2.4422,0.6211|-116'
  278. ..'.4177,15.1192,132.7734|80,180,0|-116.4177,14.8324,134.4207|0,90,10.89|0.8258,0.1199,16.0299|-116.4177,14.6339,136.0857|85,180,0|-124.1577,16.4691,143.7635|0.25,5.5499,5.17|-116.4177,15.458,132.7821|-85,180,0|'
  279. ..'-94.5841,12.7848,147.9353|0.21,1.4999,0.95|20|-97.5941,12.7848,147.9353|-117.7018,11.5904,145.4924|-117.6704,11.7566,145.4924|-104.5353,20.1915,147.7611|7.8499,1.8499,0.26|-104.583,15.8091,139.2043|7.51,6.99,'
  280. ..'0.1799|-98.7223,15.7791,147.3608|4.37,6.93,0.2299|-104.583,15.8091,147.7099|-113.6648,12.8991,138.5726|-98.5729,13.3641,139.7605|-96.4993,13.3641,143.712|0.23,2.1,7.11|-115.8542,12.1417,131.6928|0,-90,-162.10'
  281. ..'01|-115.8542,6.2259,122.1275|-116.3305,11.0162,159.4102|-115.8542,2.2376,121.0325|0,-90,-92.64|-115.8542,12.6241,135.0085|-115.8542,9.2436,124.7673|0,-90,-147.64|-115.8542,11.0162,128.3421|-116.3306,9.2436,16'
  282. ..'2.9849|-116.3306,12.6241,152.7438|-116.3305,12.1417,156.0594|-116.3305,2.2376,166.7198|-116.3305,6.2258,165.6248|-113.0788,11.5904,140.6691|-113.0474,11.7566,140.6691|-121.9575,11.5904,140.6211|-121.9261,11.7'
  283. ..'566,140.6211|0.9294,0.9176,0.9176|816|-119.9874,12.5767,138.6949|-90,-90,0|0.8099,0.48,0.75|Images/Starlight Pitstop Logo|http://www.roblox.com/asset/?id=4891890579|3|-119.4474,12.5816,138.6799|0.5199,0.16,0.'
  284. ..'52|-2.0001,0.13,6.5349,-1,0,0,0,0,1,0,1,-0|11.7599,-0.9773,-0.2676,-0.0001,1,-0.0001,-1,-0.0001,-0.0001,-0.0001,0,0.9999|-119.3924,12.5859,138.6731|0.26,0.27,0.31|0,0,1|-120.0474,12.5816,138.6899|0.7399,1.139'
  285. ..'9,0.7|-116.4377,11.9064,144.0011|16.1099,0.3,13.96|-120.0137,14.7741,149.6655|1.5,0.1199,1.3599|0.4588,0,0|-117.4237,16.6491,150.4793|2.5399,2.11,0.07|http://www.roblox.com/asset/?id=248255786|-116.4177,16.59'
  286. ..'91,137.1235|16.0899,9.05,0.2199|-94.5841,12.7848,138.9993|- 1 4,0.2699,1 -122.4368,12.2066,147.1876 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,144.6303 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,145.4797 0,0,0 = '
  287. ..'- 1 4,0.2699,1 -122.4368,12.2066,145.1282 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,146.3381 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,144.2787 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,150.1179 0,0,0 = - 1 4,0.'
  288. ..'2699,1 -122.4368,12.2066,147.9122 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,148.7617 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,148.4101 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,149.6201 0,0,0 = - 1 4,0.2699,1 -'
  289. ..'122.4368,12.2066,146.836 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,145.9866 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,147.5606 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,149.2685 0,0,0 = - 1 4,0.2699,1 -122.4368,'
  290. ..'12.2066,139.6586 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,140.508 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,140.1565 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,139.307 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,13'
  291. ..'7.9507 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,138.8002 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,138.4486 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,137.5992 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,143.4384 0'
  292. ..',0,0 = - 1 4,0.2699,1 -122.4368,12.2066,141.2327 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,142.0821 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,141.7305 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,142.9405 0,0,0 = -'
  293. ..' 1 4,0.2699,1 -122.4368,12.2066,143.79 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,142.589 0,0,0 = - 1 4,0.2699,1 -122.4368,12.2066,140.8811 0,0,0 = 1 4,0.2599,13.0699 -122.4274,12.1841,143.9049 0,0,0 =|-97.5574'
  294. ..',14.2841,145.8599|0.6,0.22,0.32|0.4862,0.3607,0.2745|-97.6487,14.2491,141.7767|1.6799,0.1899,1.5599|our lord|http://www.roblox.com/asset/?id=1492159610|1|-98.7384,20.1432,144.0362|-100.8972,20.1432,143.4578|0'
  295. ..',75,90.2699|1.9804,8.2351,2.2535|-98.7249,20.1183,147.3459|-96.5888,20.1376,143.6555|0.2599,-30.06,-90.2201|1.9916,3.3444,5.7154|-98.0287,14.2491,144.584|0.92,0.1899,1.5599|-116.4177,14.8324,153.4775|0,-90,10'
  296. ..'.89|- 1 4.16,2.8099,1.1999 -98.2621,13.0091,139.0063 0,-15,0 = n - 1 4,0.2699,1 -98.5326,12.2047,144.9936 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,145.852 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,143.3039 0,0,0'
  297. ..' = - 1 4,0.2699,1 -98.5326,12.2047,141.9476 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,141.596 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,141.0981 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,142.806 0,0,0 = - 1 4,0.269'
  298. ..'9,1 -98.5326,12.2047,140.0219 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,146.7015 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,145.3452 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,142.4544 0,0,0 = - 1 4,0.2699,1 -98.5326'
  299. ..',12.2047,146.2036 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,140.7466 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,147.4261 0,0,0 = 1 4,0.2599,8.97 -98.5231,12.1823,143.4749 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,14'
  300. ..'7.0531 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,147.7777 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,144.1442 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,139.5241 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,143.6554 0,0,0'
  301. ..' = - 1 4,0.2699,1 -98.5326,12.2047,140.3735 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,144.4957 0,0,0 = - 1 4,0.2699,1 -98.5326,12.2047,139.1725 0,0,0 = p - 1 3.94,4.12,0.8799 -98.3782,12.3541,147.9727 0,10,0 =|'
  302. ..'-3.0927,0.1507,4.3466,-1,0,0,0,0,1,0,1,-0|-2.886,-0.186,4.4342,-1,0,0,0,0,1,0,1,-0|-116.4177,15.3723,137.2339|16.0299,0.12,1.6|-116.4177,15.7815,135.2933|-98.6277,20.1541,147.8975|4.37,1.9199,0.7199|-120.1887'
  303. ..',14.8191,149.6955|0.85,0.05,1.0999|-96.3643,13.1091,143.5871|0.12,2.6099,7.36|-111.4327,2.2376,121.0325|-104.2403,13.0964,138.8806|7.68,2.5999,0.27|-98.3992,13.0991,139.4213|4.21,2.6299,0.2499|-96.5886,20.328'
  304. ..'5,143.6566|-100.8974,20.3001,143.4585|-120.4498,11.0162,128.3421|-120.4498,6.2259,122.1275|-120.4498,12.1417,131.6928|-120.4498,9.2436,124.7673|-120.4498,12.6241,135.0085|-120.4498,2.2376,121.0325|-110.9731,6'
  305. ..'.2258,165.7509|-110.9731,9.2436,163.1111|-110.9731,2.2376,166.8459|-110.9732,12.6241,152.87|-110.9732,12.1417,156.1856|-110.9731,11.0162,159.5364|-108.2304,16.4364,149.3161|0.46,9.3599,2.8299|-119.6187,14.764'
  306. ..'1,149.6755|0.05,0.24,1.6599|-116.4177,21.1842,143.7785|16.0899,0.2599,13.53|-108.2304,16.6414,138.0456|0.46,8.9499,1.94|-116.4177,16.5991,150.6711|16.0299,9.05,0.3199|-111.4327,12.6241,135.0085|-104.358,13.36'
  307. ..'41,139.2289|-111.4327,12.1417,131.6928|-111.4327,9.2436,124.7673;0,172>18>173,176>21>110,176>22>175,197>21>30,197>22>196;2|1:2;n;1|2:3|3:4|4:5|5:6|6:7|7:8|8:8|3:4|3:4;1|2:3|3:9|4:5|5:10|6:7|7:8|8:8|3:9|3:9;1|'
  308. ..'2:3|3:11|4:12|5:13|6:14|9:8|7:8|8:8|3:11|3:11;1|2:3|3:15|4:16|5:17|6:18|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:19|10:20|6:21|7:8|8:8|3:15|3:15;1|2:3|3:22|4:23|5:24|10:20|6:25|7:8|8:8|3:22|3:22;1|2:3|3:26|4:5|5:2'
  309. ..'7|6:28|7:8|8:8|3:26|3:26;n;3|11:29;p;1|2:3|3:15|4:16|5:30|6:31|7:8|8:8|3:15|3:15;1|2:3|3:22|4:16|5:32|10:33|6:34|7:8|8:8|3:22|3:22;4|2:3|3:15|4:16|5:35|10:36|6:37|7:8|3:15|3:15;1|2:3|3:15|4:16|5:38|6:39|7:8|8'
  310. ..':8|3:15|3:15;1|2:3|3:15|4:16|5:40|6:41|7:8|8:8|3:15|3:15;1|2:3|3:22|4:23|5:42|6:43|7:8|8:8|3:22|3:22;1|2:3|3:22|4:23|5:44|6:45|7:8|8:8|3:22|3:22;1|2:3|3:22|4:23|5:46|6:47|7:8|8:8|3:22|3:22;1|2:3|3:48|4:12|5:4'
  311. ..'9|6:50|12:51|7:8|8:8|3:48|3:48;1|2:3|3:22|4:23|5:52|6:53|7:8|8:8|3:22|3:22;1|2:3|3:22|4:23|5:54|10:20|6:55|7:8|8:8|3:22|3:22;1|2:3|3:56|4:23|5:57|6:58|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:59|6:60|7:8|8:8|3:56|'
  312. ..'3:56;1|2:3|3:15|4:16|5:61|10:20|6:25|7:8|8:8|3:15|3:15;5|2:3|3:22|4:23|3:22|3:22|13:62;1|2:3|3:15|4:16|5:63|10:64|6:65|7:8|8:8|3:15|3:15;1|2:3|3:66|4:12|5:67|6:68|7:8|8:8|3:66|3:66;1|2:3|3:15|4:16|5:69|6:70|7'
  313. ..':8|8:8|3:15|3:15;1|2:3|3:66|4:12|5:71|6:72|7:8|8:8|3:66|3:66;1|2:3|3:22|4:23|5:73|10:74|6:75|7:8|8:8|3:22|3:22;5|2:3|3:15|4:16|3:15|3:15|13:76;1|1:77|2:3|3:78|4:5|5:79|10:80|6:81|9:82|7:8|8:8|3:78|3:78;n;1|2:'
  314. ..'3|3:48|4:12|5:83|10:80|6:84|9:82|7:8|8:8|3:48|3:48;p;4|2:3|3:22|4:16|5:85|10:86|6:87|7:8|3:22|3:22;4|2:3|3:22|4:16|5:88|10:89|6:90|7:8|3:22|3:22;1|2:3|3:56|4:23|5:91|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:9'
  315. ..'3|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:94|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:95|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:96|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:97|6:92|7:8|8:8|3:56|3:56;1|2:3|3'
  316. ..':56|4:23|5:98|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:99|6:58|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:100|6:101|7:8|8:8|3:56|3:56;1|2:3|3:22|4:23|5:102|6:103|7:8|8:8|3:22|3:22;1|2:3|3:22|4:16|5:104|6:105|12:51|7'
  317. ..':8|8:8|3:22|3:22;1|2:3|3:56|4:23|5:106|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:107|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:108|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:109|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|'
  318. ..'4:23|5:110|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:111|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:112|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:113|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:114|6:92|7:8|8:8|3:56'
  319. ..'|3:56;1|2:3|3:56|4:23|5:115|6:116|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:117|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:118|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:119|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:120'
  320. ..'|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:121|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:122|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:123|6:92|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:124|6:92|7:8|8:8|3:56|3:56;1|2:'
  321. ..'3|3:56|4:23|5:125|6:92|7:8|8:8|3:56|3:56;1|2:3|3:48|4:16|5:126|6:127|7:8|8:8|3:48|3:48;n;6|14:128|15:82;p;1|2:3|3:56|4:23|5:129|6:130|7:8|8:8|3:56|3:56;1|2:3|3:15|4:16|5:131|6:132|9:82|7:8|8:8|3:15|3:15;1|2:3'
  322. ..'|3:133|4:16|5:134|6:135|7:8|8:8|3:133|3:133;1|2:3|3:15|4:16|5:136|10:137|6:138|7:8|8:8|3:15|3:15;1|2:3|3:56|4:16|5:139|6:140|12:51|7:8|8:8|3:56|3:56;4|2:3|3:22|4:23|5:141|10:142|6:143|7:8|3:22|3:22;1|2:3|3:22'
  323. ..'|4:23|5:144|10:145|6:146|7:8|8:8|3:22|3:22;1|2:3|3:22|4:23|5:147|10:148|6:149|7:8|8:8|3:22|3:22;5|2:3|3:22|4:23|3:22|3:22|13:150;1|2:3|3:15|4:16|5:151|6:152|7:8|8:8|3:15|3:15;1|2:3|3:22|4:153|16:154|17:154|5:'
  324. ..'155|6:156|7:8|8:8|3:22|3:22;1|2:3|3:15|4:16|5:157|10:158|6:159|7:8|8:8|3:15|3:15;1|2:3|3:56|4:23|5:160|6:161|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:162|6:163|7:8|8:8|3:56|3:56;1|2:3|3:48|4:16|5:164|10:165|6:127|'
  325. ..'7:8|8:8|3:48|3:48;n;6|14:128|15:82;p;1|2:3|3:15|4:16|5:166|6:167|7:8|8:8|3:15|3:15;1|2:3|3:22|4:16|5:168|10:169|6:34|7:8|8:8|3:22|3:22;4|2:3|3:22|4:16|5:170|10:171|6:172|7:8|3:22|3:22;4|2:3|3:22|4:16|5:173|10'
  326. ..':174|6:175|7:8|3:22|3:22;4|2:3|3:22|4:16|5:176|10:177|6:178|7:8|3:22|3:22;4|2:3|3:22|4:16|5:179|10:180|6:181|7:8|3:22|3:22;4|2:3|3:22|4:16|5:182|10:183|6:184|7:8|3:22|3:22;4|2:3|3:22|4:16|5:185|10:186|6:187|7'
  327. ..':8|3:22|3:22;1|2:3|3:22|4:153|16:154|17:154|5:188|10:148|6:189|7:8|8:8|3:22|3:22;1|2:3|3:22|4:16|5:190|10:191|6:34|7:8|8:8|3:22|3:22;1|2:3|3:22|4:23|5:192|10:193|6:194|7:8|8:8|3:22|3:22;1|2:3|3:22|4:16|5:195|'
  328. ..'10:196|6:197|7:8|8:8|3:22|3:22;1|2:3|3:15|4:16|5:198|6:199|7:8|8:8|3:15|3:15;1|2:3|3:22|4:23|5:200|6:201|7:8|8:8|3:22|3:22;1|1:77|2:3|3:78|4:5|5:202|10:80|6:81|9:82|7:8|8:8|3:78|3:78;n;1|2:3|3:48|4:12|5:203|1'
  329. ..'0:80|6:84|9:82|7:8|8:8|3:48|3:48;p;4|2:3|3:15|4:16|5:204|10:205|6:206|7:8|3:15|3:15;5|2:3|3:22|4:23|3:22|3:22|13:207;1|2:3|3:15|4:16|5:208|6:209|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:210|10:148|6:211|7:8|8:8|3:'
  330. ..'15|3:15;1|2:3|3:48|4:12|5:212|6:213|7:8|8:8|3:48|3:48;1|2:3|3:22|4:16|5:214|10:215|6:216|7:8|8:8|3:22|3:22;1|2:3|3:66|4:16|5:217|6:218|7:8|8:8|3:66|3:66;5|2:3|3:22|4:23|3:22|3:22|13:219;1|2:3|3:15|4:16|5:220|'
  331. ..'6:221|12:51|7:8|8:8|3:15|3:15;1|2:3|3:22|4:16|5:222|6:223|7:8|8:8|3:22|3:22;5|2:3|3:22|4:23|3:22|3:22|13:224;5|2:3|3:22|4:23|3:22|3:22|13:225;1|2:3|3:15|4:16|5:226|6:227|7:8|8:8|3:15|3:15;1|2:3|3:66|4:16|5:22'
  332. ..'8|6:229|7:8|8:8|3:66|3:66;1|2:3|3:26|4:5|5:230|6:231|7:8|8:8|3:26|3:26;n;3|11:29;p;1|1:77|2:3|3:78|4:5|5:232|10:80|6:81|9:82|7:8|8:8|3:78|3:78;n;1|2:3|3:48|4:12|5:233|10:80|6:84|9:82|7:8|8:8|3:48|3:48;p;4|2:3'
  333. ..'|3:22|4:16|5:234|10:174|6:235|7:8|3:22|3:22;4|2:3|3:22|4:16|5:236|10:171|6:237|7:8|3:22|3:22;1|2:3|3:11|4:5|5:238|6:7|7:8|8:8|3:11|3:11;1|2:3|3:22|4:23|5:239|6:240|7:8|8:8|3:22|3:22;1|2:3|3:56|4:23|5:241|6:92'
  334. ..'|7:8|8:8|3:56|3:56;1|2:3|3:56|4:23|5:242|6:92|7:8|8:8|3:56|3:56;1|2:3|3:15|4:16|5:243|10:244|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:245|10:165|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:246|10:247|6:248|7:8'
  335. ..'|8:8|3:15|3:15;1|2:3|3:15|4:16|5:249|10:250|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:251|10:252|6:253|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:254|10:255|6:138|7:8|8:8|3:15|3:15;4|2:3|3:22|4:16|5:256|10:257|6:258'
  336. ..'|7:8|3:22|3:22;4|2:3|3:22|4:16|5:259|10:260|6:261|7:8|3:22|3:22;4|2:3|3:22|4:16|5:262|10:263|6:264|7:8|3:22|3:22;4|2:3|3:22|4:16|5:265|10:266|6:267|7:8|3:22|3:22;4|2:3|3:22|4:16|5:268|10:269|6:270|7:8|3:22|3:'
  337. ..'22;4|2:3|3:22|4:16|5:271|10:272|6:273|7:8|3:22|3:22;4|2:3|3:22|4:16|5:274|10:275|6:276|7:8|3:22|3:22;4|2:3|3:22|4:16|5:277|10:278|6:279|7:8|3:22|3:22;4|2:3|3:22|4:16|5:274|10:280|6:281|7:8|3:22|3:22;4|2:3|3:2'
  338. ..'2|4:16|5:282|10:283|6:284|7:8|3:22|3:22;1|2:3|3:22|4:16|5:285|10:286|6:34|7:8|8:8|3:22|3:22;1|2:3|3:22|4:16|5:287|10:288|6:289|7:8|8:8|3:22|3:22;1|2:3|3:22|4:16|5:290|10:291|6:34|7:8|8:8|3:22|3:22;1|2:3|3:66|'
  339. ..'4:16|5:292|6:293|12:51|7:8|8:8|3:66|3:66;1|2:3|3:22|4:16|5:294|10:295|6:34|7:8|8:8|3:22|3:22;1|2:3|3:15|4:5|5:296|6:297|9:82|7:8|8:8|3:15|3:15;n;3|11:298;p;1|2:3|3:15|4:16|5:299|6:132|9:82|7:8|8:8|3:15|3:15;1'
  340. ..'|1:77|2:3|3:78|4:5|5:300|10:80|6:81|9:82|7:8|8:8|3:78|3:78;n;1|2:3|3:48|4:12|5:301|10:80|6:84|9:82|7:8|8:8|3:48|3:48;p;1|2:3|3:22|4:23|5:302|6:303|7:8|8:8|3:22|3:22;1|2:3|3:22|4:153|16:154|17:154|5:304|6:305|'
  341. ..'7:8|8:8|3:22|3:22;1|2:3|3:22|4:153|16:154|17:154|5:306|10:20|6:307|7:8|8:8|3:22|3:22;1|2:3|3:22|4:153|16:154|17:154|5:308|6:305|7:8|8:8|3:22|3:22;1|2:3|3:22|4:16|5:309|6:223|7:8|8:8|3:22|3:22;1|2:3|3:22|4:23|'
  342. ..'5:310|10:148|6:55|7:8|8:8|3:22|3:22;1|2:3|3:22|4:23|5:311|6:312|7:8|8:8|3:22|3:22;1|2:3|3:15|4:16|5:313|10:314|6:253|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:315|10:137|6:138|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:31'
  343. ..'6|10:244|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:317|10:318|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:319|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:320|10:321|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:322|1'
  344. ..'0:158|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:323|10:250|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:324|10:165|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:325|10:252|6:253|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:3'
  345. ..'26|10:247|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:327|10:255|6:138|7:8|8:8|3:15|3:15;1|1:77|2:3|3:78|4:5|5:328|10:80|6:81|9:82|7:8|8:8|3:78|3:78;n;1|2:3|3:48|4:12|5:329|10:80|6:84|9:82|7:8|8:8|3:48|3:48;p;1'
  346. ..'|1:77|2:3|3:78|4:5|5:330|10:80|6:81|9:82|7:8|8:8|3:78|3:78;n;1|2:3|3:48|4:12|5:331|10:80|6:84|9:82|7:8|8:8|3:48|3:48;p;2;n;1|2:3|3:332|4:333|5:334|10:335|6:336|7:8|8:8|3:332|3:332;n;6|1:337|14:338|15:339;p;1|'
  347. ..'2:3|3:48|4:333|5:340|10:335|6:341|7:8|8:8|3:48|3:48;n;7|19:342|20:343;p;1|2:3|3:66|4:333|5:344|10:335|6:345|7:8|8:8|3:66|3:66;1|2:3|3:346|4:333|5:347|10:335|6:348|7:8|8:8|3:346|3:346;p;1|2:3|3:15|4:16|5:349|6'
  348. ..':350|7:8|8:8|3:15|3:15;1|2:3|3:56|4:23|5:351|6:352|7:8|8:8|3:56|3:56;1|2:3|3:353|4:16|5:354|6:355|7:8|8:8|3:353|3:353;n;6|14:356;p;1|2:3|3:15|4:16|5:357|6:358|7:8|8:8|3:15|3:15;1|2:3|3:15|4:5|5:359|6:297|9:82'
  349. ..'|7:8|8:8|3:15|3:15;n;3|11:298;p;5|2:3|3:22|4:23|3:22|3:22|13:360;1|2:3|3:66|4:12|5:361|6:362|7:8|8:8|3:66|3:66;1|2:3|3:363|4:5|5:364|6:365|7:8|8:8|3:363|3:363;n;6|1:366|14:367|15:368;p;4|2:3|3:22|4:23|5:369|1'
  350. ..'0:205|6:206|7:8|3:22|3:22;4|2:3|3:22|4:23|5:370|10:371|6:372|7:8|3:22|3:22;4|2:3|3:22|4:23|5:373|10:36|6:37|7:8|3:22|3:22;4|2:3|3:22|4:23|5:374|10:375|6:376|7:8|3:22|3:22;1|2:3|3:9|4:5|5:377|6:378|7:8|8:8|3:9'
  351. ..'|3:9;1|2:3|3:22|4:16|5:379|10:380|6:289|7:8|8:8|3:22|3:22;5|2:3|3:22|4:23|3:22|3:22|13:381;n;7|19:382|20:383;p;1|2:3|3:22|4:16|5:384|10:215|6:385|7:8|8:8|3:22|3:22;1|2:3|3:22|4:16|5:386|10:215|6:34|7:8|8:8|3:'
  352. ..'22|3:22;1|2:3|3:15|4:16|5:387|10:20|6:388|7:8|8:8|3:15|3:15;1|2:3|3:48|4:23|5:389|6:390|7:8|8:8|3:48|3:48;1|2:3|3:15|4:16|5:391|6:392|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:393|10:318|6:248|7:8|8:8|3:15|3:15;1|2'
  353. ..':3|3:15|4:16|5:394|6:395|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:396|10:148|6:397|7:8|8:8|3:15|3:15;4|2:3|3:15|4:16|5:398|10:375|6:376|7:8|3:15|3:15;4|2:3|3:15|4:16|5:399|10:371|6:372|7:8|3:15|3:15;1|2:3|3:15|4:1'
  354. ..'6|5:400|10:158|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:401|10:137|6:138|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:402|10:314|6:253|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:403|10:321|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15'
  355. ..'|4:16|5:404|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:405|10:318|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:406|10:255|6:138|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:407|10:250|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15|4:'
  356. ..'16|5:408|10:247|6:248|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:409|10:165|6:159|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:410|10:252|6:253|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:411|10:244|6:159|7:8|8:8|3:15|3:15;1|2:3|3:1'
  357. ..'5|4:16|5:412|6:413|7:8|8:8|3:15|3:15;1|2:3|3:56|4:23|5:414|6:415|7:8|8:8|3:56|3:56;1|2:3|3:15|4:16|5:416|6:417|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:418|6:419|7:8|8:8|3:15|3:15;1|2:3|3:22|4:23|5:420|6:421|7:8|8'
  358. ..':8|3:22|3:22;1|2:3|3:15|4:16|5:422|6:159|7:8|8:8|3:15|3:15;1|2:3|3:22|4:23|5:423|6:53|7:8|8:8|3:22|3:22;1|2:3|3:15|4:16|5:424|10:314|6:253|7:8|8:8|3:15|3:15;1|2:3|3:15|4:16|5:425|10:321|6:248|7:8|8:8|3:15|3:1'
  359. ..'5;p;')
  360. for _,Object in pairs(Objects) do
  361. Object.Parent = script and script.Parent==workspace and script or workspace
  362. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement