Advertisement
AxeuerAlt

Untitled

Jun 23rd, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.06 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 15457
  3.  
  4. local Scripts = { function()
  5. a=script.Parent.Frame b=a.B1 c=a.B2 d=a.B3 e=a.B4 f=a.B5 g=a.B6 h=a.B7 i=a.B8 j=a.B9 k=a.B0 l=a.Enter m=a.Clear n=a.CodeSign o=a.Parent.Input p=a.Parent.Code l.MouseButton1Down:connect(function()if o.Value==p.Value then n.Text="Code granted"n.TextColor3=Color3.new(255,0,0)wait(.75)n.Text=""o.Value=""script.Parent.Parent.Parent.L.Lamp.BrickColor=BrickColor.new("Bright red")script.Parent.Parent.Parent.L2.Lamp.BrickColor=BrickColor.new("Bright red")script.Parent.Parent.Parent.L3.Lamp.BrickColor=BrickColor.new("Bright red")script.Parent.Parent.Parent.L4.Lamp.BrickColor=BrickColor.new("Bright red")script.Parent.Parent.Parent.L.Lamp.L.Enabled=false script.Parent.Parent.Parent.L.Lamp.R.Enabled=true script.Parent.Parent.Parent.L2.Lamp.L.Enabled=false script.Parent.Parent.Parent.L2.Lamp.R.Enabled=true script.Parent.Parent.Parent.L3.Lamp.L.Enabled=false script.Parent.Parent.Parent.L3.Lamp.R.Enabled=true script.Parent.Parent.Parent.L4.Lamp.L.Enabled=false script.Parent.Parent.Parent.L4.Lamp.R.Enabled=true script.Parent.Parent.Parent.Rocket.Capsule.Bottom.Alarm:Play()wait(8)script.Parent.Parent.Parent.Rocket.Capsule.Bottom.Alarm:Stop()script.Parent.Parent.Parent.Rocket.Capsule.Bottom.S:Play()wait(10)script.Parent.Parent.Parent.Rocket.Stage.Bottom.PointLight.Enabled=true script.Parent.Parent.Parent.Rocket.Stage.Bottom.Fire.Enabled=true script.Parent.Parent.Parent.Rocket.Capsule.Bottom.Anchored=false script.Parent.Parent.Parent.Stop:remove()script.Parent.Parent.Parent.Stop2:remove()script.Parent.Parent.Parent.Stop3:remove()script.Parent.Parent.Parent.Stop4:remove()wait(1)script.Parent.Parent.Parent.Rocket.Capsule.Bottom.Fly.P=999 script.Parent.Parent.Parent.Rocket.Capsule.Bottom.Fire:Play()else n.Text="Code denied"n.TextColor3=Color3.new(255,0,0)wait(.75)n.TextColor3=Color3.new(255,255,255)n.Text=""o.Value=""end end)b.MouseButton1Down:connect(function()o.Value=o.Value.."1"end)c.MouseButton1Down:connect(function()o.Value=o.Value.."2"end)d.MouseButton1Down:connect(function()o.Value=o.Value.."3"end)e.MouseButton1Down:connect(function()o.Value=o.Value.."4"end)f.MouseButton1Down:connect(function()o.Value=o.Value.."5"end)g.MouseButton1Down:connect(function()o.Value=o.Value.."6"end)h.MouseButton1Down:connect(function()o.Value=o.Value.."7"end)i.MouseButton1Down:connect(function()o.Value=o.Value.."8"end)j.MouseButton1Down:connect(function()o.Value=o.Value.."9"end)k.MouseButton1Down:connect(function()o.Value=o.Value.."0"end)
  6. end; function()
  7. a=script.Parent b=script.Parent.Parent.Parent.Input function c()a.Text=b.Value end b.Changed:connect(c)c()
  8. end; function()
  9. a=script.Parent b=script.Parent.Parent.Parent.Input c=b.Value local function d(e)if e:sub(1,16)==c then a.FontSize=Enum.FontSize.Size24 else a.FontSize=Enum.FontSize.Size48 end end a.Changed:connect(d)d(a.Text)
  10. end;}local ActualScripts = {}
  11. function s(var)
  12. local func = table.remove(Scripts,1)
  13. setfenv(func,setmetatable({script=var},{
  14. __index = getfenv(func),
  15. }))
  16. table.insert(ActualScripts,coroutine.wrap(func))
  17. end
  18.  
  19. local Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  20. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  21. function(t,f)
  22. for a,b in pairs(t) do
  23. f(a,b)
  24. end
  25. end
  26. local Types = {
  27. Color3 = Color3.new,
  28. Vector3 = Vector3.new,
  29. Vector2 = Vector2.new,
  30. UDim = UDim.new,
  31. UDim2 = UDim2.new,
  32. CFrame = CFrame.new,
  33. Rect = Rect.new,
  34. NumberRange = NumberRange.new,
  35. NumberSequence = function(...)
  36. local a = {...}
  37. local t = {}
  38. repeat
  39. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  40. until #a==0
  41. return NumberSequence.new(t)
  42. end,
  43. ColorSequence = function(...)
  44. local a = {...}
  45. local t = {}
  46. repeat
  47. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  48. until #a==0
  49. return ColorSequence.new(t)
  50. end,
  51. number = tonumber,
  52. boolean = function(a)
  53. return a=="1"
  54. end
  55. }
  56. split = function(str,sep)
  57. if not str then return end
  58. local fields = {}
  59. local ConcatNext = false
  60. str:gsub(("([^%s]+)"):format(sep),function(c)
  61. if ConcatNext == true then
  62. fields[#fields] = fields[#fields]..sep..c
  63. ConcatNext = false
  64. else
  65. fields[#fields+1] = c
  66. end
  67. if c:sub(#c)=="\\" then
  68. c = fields[#fields]
  69. fields[#fields] = c:sub(1,#c-1)
  70. ConcatNext = true
  71. end
  72. end)
  73. return fields
  74. end
  75. RemoveAndSplit = function(t)
  76. return split(table_remove(t,1),comma)
  77. end
  78. t = split(str,";")
  79. props = RemoveAndSplit(t)
  80. classes = RemoveAndSplit(t)
  81. values = split(table_remove(t,1),'|')
  82. ICList = RemoveAndSplit(t)
  83. InstanceList = {}
  84. Model = inst"Model"
  85. CurPar = Model
  86. table_foreach(t,function(ct,c)
  87. if c=="n" or c=="p" then
  88. CurPar = c=="n" and LastIns or CurPar[parnt]
  89. else
  90. ct = split(c,"|")
  91. local class = classes[tonum(table_remove(ct,1))]
  92. if class=="UnionOperation" then
  93. LastIns = {Locked="true",Anchored="true",UsePartColor="true"}
  94. else
  95. LastIns = inst(class)
  96. if LastIns:IsA"Script" then
  97. s(LastIns)
  98. end
  99. end
  100.  
  101. local function SetProperty(LastIns,p,str,s)
  102. s = Types[typeof(LastIns[p])]
  103. LastIns[p] = s and s(unpack(split(str,comma))) or str
  104. end
  105.  
  106. local UnionData
  107. table_foreach(ct,function(s,p,a,str)
  108. a = p:find":"
  109. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  110. if p=="UnionData" then
  111. UnionData = split(str," ")
  112. return
  113. end
  114. if class=="UnionOperation" then
  115. LastIns[p] = str
  116. return
  117. end
  118. SetProperty(LastIns,p,str)
  119. end)
  120.  
  121. if UnionData then
  122. local LI_Data = LastIns
  123. LastIns = DecodeUnion(UnionData)
  124. table_foreach(LI_Data,function(p,str)
  125. SetProperty(LastIns,p,str)
  126. end)
  127. end
  128. table.insert(InstanceList,LastIns)
  129. LastIns[parnt] = CurPar
  130. end
  131. end)
  132. table_remove(ICList,1)
  133. table_foreach(ICList,function(a,b)
  134. b = split(b,">")
  135. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  136. end)
  137.  
  138. return Model:GetChildren()
  139. end
  140.  
  141. local Objects = Decode('Name,Color,Position,Orientation,Size,C0,C1,Part0,Part1,Transparency,CanCollide,BackSurface,BottomSurface,FrontSurface,LeftSurface,RightSurface,TopSurface,MeshType,Texture,Face,Scale,MeshId,TextureId,E'
  142. ..'nabled,Heat,SecondaryColor,Range,Brightness,Offset,Reflectance,Anchored,Velocity,MaxForce,P,SoundId,Volume,Looped,CanvasSize,BackgroundColor3,BackgroundTransparency,Text,TextColor3,TextSize,Style,Valu'
  143. ..'e;Part,Model,TrussPart,Weld,SpecialMesh,CylinderMesh,Decal,Fire,PointLight,BlockMesh,Rotate,Seat,BodyVelocity,BodyGyro,Sound,SpotLight,SurfaceGui,Script,Frame,TextButton,TextLabel,StringValue;Part|Cod'
  144. ..'e Rocket|Silo|Rocket|0.05,0.411,0.674|-2.27,76.989,-146.46|0,-90,0|2,6,2|0,-3,0,1,0,0,-0,-0,-1,0,1,0|0,1.797,0,1,0,0,0,0,-1,0,1,0|Holder|0.105,0.164,0.207|1|-2.27,75.889,-147.961|1,3.85,4|0|2|0.5,0,0,'
  145. ..'0,0,1,0,1,0,-1,-0,-0|-1.001,-1.1,0,0,0,1,0,1,0,-1,0,0|Stage|0.949,0.952,0.952|3.73,9.793,-146.46|1,8.4,3|0,-4.201,0,1,0,0,-0,-0,-1,0,1,0|0,0.999,-0.5,1,0,0,0,0,-1,0,1,0|0,0,1.5,1,0,0,0,1,0,0,0,1|-4.5,'
  146. ..'1.798,0,0,0,1,0,-1,0,1,0,0|0.898,0.894,0.874|-2.27,11.592,-146.46|0,0,180|9,12,9|0,6,0,-1,-0,-0,0,0,1,0,1,0|0,0.998,5.5,0,1,0,0,0,-1,-1,0,0|0,0.998,-5.501,-1,0,0,0,0,-1,0,-1,0|0,0.998,-5.501,1,0,0,0,0'
  147. ..',-1,0,1,0|0,-6,0,1,0,0,-0,-0,-1,0,1,0|0,0.599,0,1,0,0,0,0,-1,0,1,0|0,0,-4.5,-1,-0,-0,0,1,0,-0,-0,-1|0,1.798,1.5,1,0,0,0,-1,0,0,0,-1|Stagepiece|-2.27,56.595,-146.46|9,10.8,9|http://www.roblox.com/asset'
  148. ..'/?id=8162847|0|3|0,-5.401,0,1,0,0,-0,-0,-1,0,1,0|-0.502,-3,2.999,0,0,1,-1,0,0,0,-1,0|0,-0.502,3,0,-1,0,0,0,1,-1,0,0|-0.502,-3,3,0,0,1,1,0,0,0,1,0|-2.27,9.793,-152.46|-2.27,9.793,-140.46|0,180,0|0,0.99'
  149. ..'9,0.5,-1,0,0,0,0,-1,0,-1,0|0,1.798,4.5,1,0,0,0,-1,0,0,0,-1|-2.27,4.593,-140.96|1,2,4|3.23,4.593,-146.46|Bottom|-2.27,4.393,-146.46|5,2.4,5|6,5,6|http://www.roblox.com/asset/?id=1038653|http://www.robl'
  150. ..'ox.com/asset/?id=1038654|5|0.925,0.545,0.274|20|-25|0.545,0.313,0.215|0.984,1,0|58|9.9999996169032e+35|0,1.2,0,-1,-0,-0,0,0,1,0,1,0|0,5.998,0,0,1,0,0,0,-1,-1,0,0|-2.27,4.593,-151.96|0,1,0,-1,-0,-0,0,0'
  151. ..',1,0,1,0|0,-4.2,0.5,1,0,0,0,0,1,0,-1,0|-7.77,4.593,-146.46|0,90,0|5.499,5.998,0,0,-1,0,0,0,-1,1,0,0|-8.27,9.793,-146.46|4.499,1.798,0,0,0,-1,0,-1,0,-1,0,0|-2.27,18.191,-146.46|9,1.2,9|-2.27,34.997,-14'
  152. ..'6.46|9,32.4,9|0,-16.201,0,1,0,0,-0,-0,-1,0,1,0|0,5.397,0,1,0,0,0,0,-1,0,1,0|0,16.2,0,-1,-0,-0,0,0,1,0,1,0|0,-0.607,0,-1,0,0,0,0,1,0,1,0|-7.27,44.604,-146.17|5.989,6.239,1|6|0,0,0.5|1,1,0.2|http://www.'
  153. ..'roblox.com/asset/?id=126439162|0,0,0.5,1,0,0,0,1,0,0,0,1|4.5,-9.61,0.289,-0,-0,-1,0,1,0,1,0,0|Capsule|-2.27,66.598,-149.961|3,7.2,2|http://www.roblox.com/asset/?id=2637202|0.066,0.066,0.066|0.1|0.399|'
  154. ..'-4.27,66.499,-148.461|0,0,90|7,1,1|3.5,0,0,0,0,1,0,1,0,-1,-0,-0|-2.001,-0.198,1.999,-1,0,0,0,0,1,0,1,0|-3.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.502,-1.001,1,0,0,-1,0,1,0,1,0,0|0.73,62.496,-149.461|0,-90,90|1,3'
  155. ..',3|-3.001,0,-1.5,0,-1,0,1,0,0,0,0,1|-3.501,0.99,-1,0,0,1,0,1,0,-1,0,0|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|-3,-5.402,-3.001,1,0,0,0,0,1,0,-1,0|-0.27,66.497,-148.47|-2.27,70.196,-146.46|5,0.4,5|4|0,0,-2.5,-1,'
  156. ..'-0,-0,0,1,0,-0,-0,-1|0,3.597,1,-1,0,0,0,1,0,0,0,-1|0,-0.201,0,1,0,0,-0,-0,-1,0,1,0|3.497,-2,2,0,0,-1,0,-1,0,-1,0,0|0,0.2,0,-1,-0,-0,0,0,1,0,1,0|0,-1.796,0,-1,0,0,0,0,1,0,1,0|3.499,-2.01,2,0,0,-1,-1,0,'
  157. ..'0,0,1,0|-2.5,0,0,-0,-0,-1,0,1,0,1,0,0|-2.27,72.192,-146.46|3,3.6,3|-2.4,63.197,-146.37|1.98,0.4,2|0.09,0.5,0.129,-1,0,0,0,0,-1,0,-1,0|-5.77,66.598,-146.46|0,0,1,1,0,0,0,1,0,0,0,1|0,-3.598,2.499,-1,0,0'
  158. ..',0,1,0,0,0,-1|0,-3.601,0,1,0,0,-0,-0,-1,0,1,0|0,0.502,-0.5,1,0,0,0,0,-1,0,1,0|-0.27,66.499,-144.46|0,180,90|0.502,-1,0.999,0,0,-1,0,1,0,1,0,0|1.23,66.598,-146.46|0.73,62.496,-146.46|3,1,3|-1.5,0,0,-0,'
  159. ..'-0,-1,0,1,0,1,0,0|0,0,1.499,0,1,0,1,0,0,0,0,-1|0,0.5,0,-1,-0,-0,0,0,1,0,1,0|0,-3.603,0.5,1,0,0,0,0,1,0,-1,0|0,0,-1.5,-1,-0,-0,0,1,0,-0,-0,-1|0,0,-1.5,1,0,0,0,1,0,0,0,1|1.5,0,0,0,0,1,0,1,0,-1,-0,-0|0,-'
  160. ..'1.501,0,0,1,0,0,0,1,1,0,0|0,-0.5,0,1,0,0,-0,-0,-1,0,1,0|-3,-5.402,0,-0,-1,-0,0,0,1,-1,0,0|-4.27,66.499,-144.46|0,90,90|2,-0.198,1.999,0,1,0,0,0,1,1,0,0|0.502,-1,1,0,0,-1,0,1,0,1,0,0|-2.27,66.598,-142.'
  161. ..'961|2.499,-3.598,0,0,0,-1,0,1,0,1,0,0|3.499,0.502,0,0,-1,0,0,0,-1,1,0,0|-5.27,62.496,-149.461|1.5,0,0,0,0,-1,1,0,0,0,-1,0|-2.27,62.496,-146.46|9,1,3|Fly|0,80,0|10000000000,10000000000,10000000000|S|ht'
  162. ..'tp://www.roblox.com/asset/?id=160914477|Alarm|http://www.roblox.com/asset/?id=160664485|Fire|http://www.roblox.com/asset/?id=181395537|0,-1.5,2.999,0,1,0,0,0,1,1,0,0|0,0,1.5,-1,0,0,0,1,0,0,0,-1|0,-1.5'
  163. ..',3,0,1,0,0,0,1,1,0,0|0,-3.603,3.5,0,-1,0,0,0,1,-1,0,0|0,-5.402,0,0,1,0,0,0,1,1,0,0|0.73,62.496,-143.461|-5.27,62.496,-146.46|-5.27,62.496,-143.461|2.999,0,1.5,0,1,0,1,0,0,0,0,-1|0,-1.5,0,1,0,0,-0,-0,-'
  164. ..'1,0,1,0|-1.5,0,0,0,0,1,1,0,0,0,1,0|3,-5.402,2.999,-1,0,0,0,0,1,0,1,0|Ladders|0.768,0.156,0.109|-4.61,8,-157.371|2,16,2|0,-8,0,1,0,0,-0,-0,-1,0,1,0|-4.61,10,-157.371,0,-1,0,0,0,-1,0.999,0,0|0.172,8,-15'
  165. ..'7.348|0.172,10,-157.348,0,-1,0,0,0,-1,0.999,0,0|-3.09,49.034,-160.378|2,8.039,2|-4.628,24.002,-163.348|0,8.001,0,0.999,0,0,0,0,-1,0,0.999,0|-4.628,40.291,-163.348|0.172,40.004,-157.348|0,8,0,-1,-0,-0,'
  166. ..'0,0,1,0,1,0|-1,-3.031,-0.022,0,0,1,0.999,0,0,0,0.999,0|0.172,24.002,-157.348|0,-8.003,0,-1,0,0,0,0,1,0,0.999,0|0,8.002,0,0.999,0,0,0,0,-1,0,0.999,0|-1.38,49.024,-160.378|-4.61,40.004,-157.371|0.072,8,'
  167. ..'-163.448|0.072,10,-163.448,0,-1,0,0,0,-1,0.999,0,0|-4.57,49.054,-160.378|-4.61,24.002,-157.371|-1.38,58.505,-160.378|0.072,24.002,-163.448|0.15,49.004,-160.378|-4.628,8,-163.348|-4.628,10,-163.348,0,-'
  168. ..'1,0,0,0,-1,0.999,0,0|-3.09,58.515,-160.378|-4.628,54.76,-163.348|2,9.309,2|0.072,40.294,-163.448|-4.61,54.834,-157.371|2,9.46,2|0.172,54.754,-157.348|2,9.3,2|-1.93,60.066,-155.241|0,-90,-66.981|2,10.0'
  169. ..'39,2|0.15,58.485,-160.378|-4.57,58.535,-160.378|0.072,54.229,-163.448|2,8.25,2|Stop3|1.33,23.914,-148.283|2,16.069,2|Stop2|-5.86,40.104,-148.283|Stop|-5.86,23.954,-148.283|L4|2.869,0.244,-141.23|0,90,'
  170. ..'180|2,0.4,2|OH SNAP YOU GOT INFECTED XD XD XD|0,-0.2,0,1,0,0,0,0,1,0,-1,0|Lamp|0,0.56,0.611|2.869,0.644,-141.23|0,-0.35,0|1,1,0.85|L|0,0.901,1|1|9999999827968|R|1,0,0|-8.03,0.244,-151.93|-8.03,0.644,-'
  171. ..'151.93|L3|3.07,0.244,-152.33|3.07,0.644,-152.33|L2|-8.23,0.244,-140.83|-8.23,0.644,-140.83|Stop4|1.33,40.424,-148.283|CodeGui|-47.3,59.462,-149.9|7,11,0.2|Gui|490,610|MasterScript|0,100,0,100|1,1,1|B0'
  172. ..'|0,200,0,450|48|B1|0,100,0,150|B2|0,200,0,150|2|B3|0,300,0,150|3|B4|0,100,0,250|4|B5|0,200,0,250|5|B6|0,300,0,250|6|B7|0,100,0,350|7|B8|0,200,0,350|8|B9|0,300,0,350|9|Clear|0,300,0,450|24|Enter|0,100,'
  173. ..'0,450|0,1,0|CodeSign|0,250,0,100| |TextSub|Code|1234|Input;0,5>8>4,5>9>82,7>8>6,7>9>4,11>8>9,11>9>36,12>8>9,12>9>13,15>8>13,15>9>36,16>8>13,16>9>42,17>8>13,17>9>35,18>8>13,18>9>50,19>8>13,19>9>29,26>8'
  174. ..'>20,26>9>123,27>8>20,27>9>125,28>8>20,28>9>109,33>8>31,33>9>35,34>8>31,34>9>13,41>8>37,41>9>13,43>8>42,43>9>29,45>8>44,45>9>13,48>8>46,48>9>13,49>8>46,49>9>44,54>8>52,54>9>20,55>8>52,55>9>50,59>8>56,5'
  175. ..'9>9>52,66>8>64,66>9>75,67>8>64,67>9>109,70>8>68,70>9>112,71>8>68,71>9>73,72>8>68,72>9>20,77>8>75,77>9>92,78>8>75,78>9>89,79>8>75,79>9>82,80>8>75,80>9>73,81>8>75,81>9>61,84>8>83,84>9>112,87>8>85,87>9>7'
  176. ..'5,88>8>85,88>9>125,91>8>89,91>9>123,95>8>94,95>9>123,96>8>94,96>9>92,97>8>94,97>9>112,98>8>94,98>9>68,99>8>94,99>9>20,102>8>100,102>9>75,103>8>100,103>9>126,107>8>104,107>9>75,108>8>104,108>9>112,111>'
  177. ..'8>109,111>9>125,118>8>112,118>9>123,119>8>112,119>9>125,120>8>112,120>9>109,121>8>112,121>9>61,122>8>112,122>9>20,128>8>126,128>9>112,129>8>126,129>9>125,130>8>126,130>9>20,133>8>132,133>9,135>8>134,1'
  178. ..'35>9,138>8>137,138>9>157,141>8>140,141>9>156,143>8>142,143>9>140,144>8>142,144>9>134,148>8>147,148>9,151>8>150,151>9>146,152>8>150,152>9>132,155>8>154,155>9>147,158>8>157,158>9,175>8>172,175>9>176,188'
  179. ..'>8>184,188>9>181,197>8>193,197>9>190,206>8>202,206>9>199;2|1:2;n;2|1:3;n;2|1:4;n;3|2:5|3:6|4:7|5:8|2:5|2:5;n;4|6:9|7:10;p;1|1:11|2:12|10:13|3:14|4:7|5:15|11:16|12:17|13:17|14:17|15:17|16:17|17:17|2:12'
  180. ..'|2:12;n;4|6:18|7:19;p;2|1:20;n;1|2:21|3:22|4:7|5:23|11:16|12:17|13:17|17:17|2:21|2:21;n;5|18:17;4|6:24|7:25;4|6:26|7:27;p;1|2:28|3:29|4:30|5:31|13:17|17:17|2:28|2:28;n;6;4|6:32|7:33;4|6:32|7:34;4|6:32'
  181. ..'|7:35;4|6:36|7:37;4|6:38|7:39;p;1|1:40|2:21|3:41|4:30|5:42|13:17|17:17|2:21|2:21;n;6;7|19:43;7|19:43|20:44;7|19:43|20:17;7|19:43|20:45;4|6:46|7:47;4|6:46|7:48;4|6:46|7:49;p;1|2:21|3:50|5:23|11:16|12:1'
  182. ..'7|13:17|17:17|2:21|2:21;n;5|18:17;p;1|2:21|3:51|4:52|5:23|11:16|12:17|13:17|17:17|2:21|2:21;n;5|18:17;4|6:24|7:53;4|6:26|7:54;p;1|2:12|3:55|5:56|11:16|12:17|13:44|17:17|2:12|2:12;1|2:12|3:57|4:7|5:56|'
  183. ..'11:16|12:17|13:44|17:17|2:12|2:12;1|1:58|3:59|4:7|5:60|13:44|17:17;n;5|21:61|22:62|23:63|18:64;8|2:65|5:66|24:16|25:67|26:68|2:65|2:65;9|2:69|27:70|28:71|24:16|2:69|2:69;4|6:72|7:73;p;1|2:12|3:74|4:52'
  184. ..'|5:56|11:16|12:17|13:44|17:17|2:12|2:12;n;4|6:75|7:76;p;1|2:12|3:77|4:78|5:56|11:16|12:17|13:44|17:17|2:12|2:12;n;4|6:75|7:79;p;1|2:21|3:80|4:78|5:23|11:16|12:17|13:17|17:17|2:21|2:21;n;5|18:17;4|6:26'
  185. ..'|7:81;4|6:24|7:25;p;1|2:12|3:82|4:30|5:83|13:17|17:17|2:12|2:12;n;6;p;1|2:28|3:84|4:30|5:85|13:17|17:17|2:28|2:28;n;6;4|6:86|7:87;4|6:88|7:89;p;1|10:13|3:90|4:78|5:91|11:16|12:92;n;10|29:93|21:94;7|19'
  186. ..':95;11|6:96|7:97;p;p;2|1:98;n;1|2:12|3:99|5:100|11:16|12:17|13:17|15:17|16:17|17:17|2:12|2:12;n;5|18:17;7|19:101|20:17;p;1|2:102|30:103|10:104|3:105|4:106|5:107|11:16|12:17|13:17|15:17|16:17|17:44|2:1'
  187. ..'02|2:102;n;5|18:17;4|6:108|7:109;4|6:110|7:111;p;1|2:12|3:112|4:113|5:114|12:17|13:17|16:17|17:44|2:12|2:12;n;5|18:17;4|6:26|7:115;4|6:18|7:116;4|6:117|7:118;p;1|2:12|3:119|4:113|5:107|12:17|13:17|15:'
  188. ..'17|16:17|17:44|2:12|2:12;n;5|18:17;p;1|2:12|3:120|4:7|5:121|12:17|13:17|14:17|15:17|16:17|17:17|2:12|2:12;n;7|19:101|20:122;4|6:123|7:124;4|6:125|7:126;4|6:127|7:128;4|6:125|7:129;4|6:130|7:124;p;1|2:'
  189. ..'12|3:131|4:7|5:132|12:17|13:17|14:17|15:17|16:17|17:17|2:12|2:12;12|2:5|3:133|4:78|5:134|13:17|17:17|2:5|2:5;n;4|6:125|7:135;p;1|2:12|3:136|4:78|5:100|11:16|12:17|13:17|15:17|16:17|17:17|2:12|2:12;n;5'
  190. ..'|18:17;4|6:137|7:138;4|6:139|7:140;p;1|2:12|3:141|4:142|5:107|12:17|13:17|15:17|16:17|17:44|2:12|2:12;n;5|18:17;4|6:110|7:143;p;1|2:12|3:144|4:7|5:100|11:16|12:17|13:17|15:17|16:17|17:17|2:12|2:12;n;5'
  191. ..'|18:17;p;1|2:12|3:145|4:78|5:146|12:17|13:44|14:17|15:17|16:17|17:17|2:12|2:12;n;4|6:147|7:148;4|6:149|7:150;4|6:151|7:152;4|6:153|7:154;4|6:155|7:156;p;1|2:102|30:103|10:104|3:157|4:158|5:107|11:16|1'
  192. ..'2:17|13:17|15:17|16:17|17:44|2:102|2:102;n;5|18:17;4|6:108|7:159;4|6:110|7:160;p;1|2:12|3:161|4:52|5:100|11:16|12:17|13:17|15:17|16:17|17:17|2:12|2:12;n;5|18:17;7|19:101|20:17;4|6:137|7:162;4|6:139|7:'
  193. ..'163;p;1|2:12|3:164|4:106|5:114|12:17|13:17|16:17|17:44|2:12|2:12;n;5|18:17;4|6:26|7:165;p;1|1:58|31:13|2:12|3:166|4:7|5:167|13:44|17:17|2:12|2:12;n;13|1:168|32:169|33:170|34:16;14;15|1:171|35:172;15|1'
  194. ..':173|35:174|36:13;15|1:175|37:13|35:176|36:13;4|6:151|7:177;4|6:26|7:178;4|6:26|7:179;4|6:149|7:180;4|6:155|7:181;p;1|2:12|3:182|4:142|5:114|12:17|13:17|16:17|17:44|2:12|2:12;n;5|18:17;p;1|2:12|3:183|'
  195. ..'4:78|5:146|12:17|13:44|15:17|16:17|17:17|2:12|2:12;1|2:12|3:184|4:158|5:114|12:17|13:17|16:17|17:44|2:12|2:12;n;5|18:17;4|6:26|7:185;4|6:186|7:187;4|6:117|7:188;p;p;p;2|1:189;n;3|31:13|2:190|3:191|4:7'
  196. ..'|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;n;4|6:193|7:194;p;3|31:13|2:190|3:195|4:7|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;n;4|6:193|7:196;p;3|31:13|2:190|3:197|4:113|5:198'
  197. ..'|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:199|4:7|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;n;4|6:193|7:200;p;3|31:13|2:190|3:201|4:7|5:192|12:17|13:17|14:17|15:17|1'
  198. ..'6:17|17:17|2:190|2:190;3|31:13|2:190|3:202|4:7|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;n;4|6:203|7:204;p;3|31:13|2:190|3:205|4:7|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;n;4'
  199. ..'|6:203|7:206;4|6:193|7:207;p;3|31:13|2:190|3:208|4:113|5:198|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:209|4:7|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190'
  200. ..'|3:210|4:7|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;n;4|6:193|7:211;p;3|31:13|2:190|3:212|4:113|5:198|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:213|4:7|5:192|12:17|1'
  201. ..'3:17|14:17|15:17|16:17|17:17|2:190|2:190;n;4|6:203|7:206;4|6:193|7:207;p;3|31:13|2:190|3:214|4:113|5:198|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:215|4:7|5:192|12:17|13:17|14:17'
  202. ..'|15:17|16:17|17:17|2:190|2:190;n;4|6:193|7:207;p;3|31:13|2:190|3:216|4:113|5:198|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:217|4:7|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190'
  203. ..'|2:190;n;4|6:193|7:218;p;3|31:13|2:190|3:219|4:113|5:198|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:220|4:7|5:221|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:2'
  204. ..'22|4:7|5:192|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:223|4:7|5:224|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:225|4:7|5:226|12:17|13:17|14:17|15:17|16:17|1'
  205. ..'7:17|2:190|2:190;3|31:13|2:190|3:227|4:228|5:229|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:230|4:113|5:198|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:231|4:1'
  206. ..'13|5:198|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|31:13|2:190|3:232|4:7|5:233|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;p;3|1:234|31:13|2:190|3:235|4:113|5:236|12:17|13:17|14:17|15:17|1'
  207. ..'6:17|17:17|2:190|2:190;3|1:237|31:13|2:190|3:238|4:113|5:236|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;3|1:239|31:13|2:190|3:240|4:113|5:236|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;2|1:2'
  208. ..'41;n;1|31:13|2:12|3:242|4:243|5:244|13:17|17:44|2:12|2:12;n;5;4|1:245;4|6:125|7:246;p;1|1:247|31:13|2:248|3:249|4:7|5:244|13:44|17:44|2:248|2:248;n;6|29:250|21:251;16|1:252|2:253|20:254|27:66|28:255|2'
  209. ..':253|2:253;16|1:256|2:257|20:254|27:66|28:255|24:16|2:257|2:257;p;p;2|1:252;n;1|31:13|2:12|3:258|4:243|5:244|13:17|17:44|2:12|2:12;n;5;4|1:245;p;1|1:247|31:13|2:248|3:259|4:7|5:244|13:44|17:44|2:248|2'
  210. ..':248;n;6|29:250|21:251;16|1:252|2:253|20:254|27:66|28:255|2:253|2:253;16|1:256|2:257|20:254|27:66|28:255|24:16|2:257|2:257;4|6:125|7:246;p;p;2|1:260;n;1|31:13|2:12|3:261|4:243|5:244|13:17|17:44|2:12|2'
  211. ..':12;n;5;4|1:245;p;1|1:247|31:13|2:248|3:262|4:7|5:244|13:44|17:44|2:248|2:248;n;6|29:250|21:251;16|1:252|2:253|20:254|27:66|28:255|2:253|2:253;16|1:256|2:257|20:254|27:66|28:255|24:16|2:257|2:257;4|6:'
  212. ..'125|7:246;p;p;2|1:263;n;1|31:13|2:12|3:264|4:243|5:244|13:17|17:44|2:12|2:12;n;5;4|1:245;p;1|1:247|31:13|2:248|3:265|4:7|5:244|13:44|17:44|2:248|2:248;n;6|29:250|21:251;16|1:252|2:253|20:254|27:66|28:'
  213. ..'255|2:253|2:253;16|1:256|2:257|20:254|27:66|28:255|24:16|2:257|2:257;4|6:125|7:246;p;p;3|1:266|31:13|2:190|3:267|4:113|5:236|12:17|13:17|14:17|15:17|16:17|17:17|2:190|2:190;1|1:268|31:13|2:102|3:269|4'
  214. ..':78|5:270|13:44|17:44|2:102|2:102;n;17|1:271|38:272;n;18|1:273;19|5:274|39:275|40:13;n;20|1:276|3:277|5:274|39:275|41:16|42:275|43:278|44:254;20|1:279|3:280|5:274|39:275|41:13|42:275|43:278|44:254;20|'
  215. ..'1:281|3:282|5:274|39:275|41:283|42:275|43:278|44:254;20|1:284|3:285|5:274|39:275|41:286|42:275|43:278|44:254;20|1:287|3:288|5:274|39:275|41:289|42:275|43:278|44:254;20|1:290|3:291|5:274|39:275|41:292|'
  216. ..'42:275|43:278|44:254;20|1:293|3:294|5:274|39:275|41:295|42:275|43:278|44:254;20|1:296|3:297|5:274|39:275|41:298|42:275|43:278|44:254;20|1:299|3:300|5:274|39:275|41:301|42:275|43:278|44:254;20|1:302|3:'
  217. ..'303|5:274|39:275|41:304|42:275|43:278|44:254;20|1:305|3:306|5:274|39:275|41:305|42:257|43:307|44:254;20|1:308|3:309|5:274|39:275|41:308|42:310|43:307|44:254;21|1:311|3:312|39:275|40:13|41:313|42:275|4'
  218. ..'3:278;n;18;18|1:314;p;p;22|1:315|45:316;22|1:317;p;p;p;p;')
  219. for _,Object in pairs(Objects) do
  220. Object.Parent = script and script.Parent==workspace and script or workspace
  221. end
  222. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement