Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Converted using Mokiros's Model to Script plugin
- -- Converted string size: 33081
- local genv={}
- local Scripts = {
- function() off = false
- function tuch(h)
- if off == false then
- off = true
- if h.Parent:findFirstChild("Humanoid") ~= nil then
- c = script.Parent.Parent.Tools:getChildren()
- for i = 1, #c do
- if c[i].className == "HopperBin" or "Tool" then
- c[i]:clone().Parent = game.Players:findFirstChild(h.Parent.Name).Backpack
- wait(1)
- off = false
- end
- end
- end
- end
- end
- script.Parent.touched:connect(tuch) end;
- function() --[[
- This is the AUTO-GIVER that i pu together to make it easy for YOU
- to make a giver.
- Open up "Easy giver" and drag
- any tool into the "tool" section.
- THERE!hope u like your giver. Just run up against the green
- bar and u have your tool!
- CREATOR:GHOSTofRECON08
- ]] end;
- function() bin=script.Parent
- plane=nil
- hold=false
- local debounce = false
- local planedebounce = false
- local stuntdebounce = false
- local controlling = false
- function fire(pln,spn)
- local missile = bin.Rocket:clone()
- missile.CFrame = spn.CFrame * CFrame.new(0, 0, -35)
- missile.RocketScript.Disabled = false
- missile.Parent = game.Workspace
- local creator_tag = Instance.new("ObjectValue")
- creator_tag.Value = game.Players.LocalPlayer
- creator_tag.Name = "creator"
- creator_tag.Parent = missile
- missile.Owner.Value = pln
- end
- function computeDirection(vec)
- local lenSquared = vec.magnitude * vec.magnitude
- local invSqrt = 1 / math.sqrt(lenSquared)
- return Vector3.new(vec.x * invSqrt, vec.y * invSqrt, vec.z * invSqrt)
- end
- function move(target, engine)
- local origincframe = engine:findFirstChild("BodyGyro").cframe
- local dir = (target - engine.Position).unit
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(9000, 9000, 9000)
- engine:findFirstChild("BodyGyro").cframe = CFrame.new(pos, pos + dir)
- wait(0.1)
- engine:findFirstChild("BodyGyro").maxTorque = Vector3.new(0, 0, 0)
- engine:findFirstChild("BodyGyro").cframe = origincframe
- end
- function findPlane(player)
- local list = player.Character:GetChildren()
- for x = 1, #list do
- if (list[x].Name == "Plane") then
- local color_tag = list[x]:FindFirstChild("PlaneColor")
- if (color_tag ~= nil) then
- color_tag.Value = player.TeamColor
- end
- local weld = list[x]:FindFirstChild("Parts"):FindFirstChild("Seat"):FindFirstChild("SeatWeld")
- if (weld ~= nil) and (weld.Part1 == player.Character:FindFirstChild("Torso")) then
- return list[x]
- end
- end
- end
- return nil
- end
- function onButton1Down(mouse)
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if vehicle ~= nil and debounce == false and planedebounce == false then
- debounce = true
- controlling = true
- while true do
- wait()
- local engine = vehicle.Parts.Engine
- local position = mouse.Hit
- local target = position.p
- if engine:findFirstChild("FlyScript") ~= nil then
- move(target, engine)
- end
- if planedebounce == true or
- controlling == false then break end
- end
- wait(.1)
- debounce = false
- end
- end
- function onButton1Up(mouse)
- controlling = false
- end
- function onSelected(mouse)
- mouse.Icon = "rbxasset://textures\\GunCursor.png"
- mouse.Button1Down:connect(function() onButton1Down(mouse) end)
- mouse.Button1Up:connect(function() onButton1Up(mouse) end)
- mouse.KeyDown:connect(onKeyDown)
- end
- function onKeyDown(key)
- if (key~=nil) then
- key = key:lower()
- local vehicle = findPlane(script.Parent.Parent.Parent)
- if (vehicle==nil) then return end
- plane = vehicle.Parts
- local engine = vehicle.Parts.Engine
- if (key=="f") and (bin.Reload.Value == 0) then
- fire(vehicle,plane.Gun1)
- fire(vehicle,plane.Gun2)
- bin.Reload.Value = 1
- wait(1)
- bin.Reload.Value = 0
- end
- if (key=="x") and planedebounce == false then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then
- power:remove()
- end
- end
- if (key=="y") then
- local power = plane.Engine:findFirstChild("FlyScript")
- if (power ~= nil) then return end
- local fly = script.FlyScript:clone()
- fly.Disabled = false
- fly.Parent = plane.Engine
- end
- if (key=="k") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y -0.7, 0)
- end
- if (key=="h") and planedebounce == false then
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- wait()
- engine.RotVelocity = Vector3.new(0, engine.RotVelocity.y +0.7, 0)
- return end
- if (key=="j") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, 0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="l") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 0, 0)
- local frame = plane:FindFirstChild("OriginCFrame")
- if frame ~= nil then
- body.cframe = frame.Value
- end
- wait(0.1)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="u") and planedebounce == false then
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local position = engine.CFrame * Vector3.new(0, -0.5, -4)
- local dir = position - engine.Position
- dir = computeDirection(dir)
- local spawnPos = engine.Position
- local pos = spawnPos + (dir * 8)
- body.cframe = CFrame.new(pos, pos + dir)
- wait(.2)
- body.maxTorque = Vector3.new(0, 0, 0)
- end
- if (key=="g") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- for i = 1,6 do
- body.cframe = plane.Engine.CFrame * CFrame.fromEulerAnglesXYZ(0, 0, 30)
- wait(.2)
- end
- body.cframe = currentframe
- wait(.6)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(3)
- stuntdebounce = false
- end
- if (key=="t") and planedebounce == false and stuntdebounce == false then
- planedebounce = true
- stuntdebounce = true
- plane.Parent.Stunt.Value = 1
- local body = plane.Engine.BodyGyro
- body.maxTorque = Vector3.new(9000, 9000, 9000)
- local currentframe = plane.Engine.CFrame
- local valy = 30
- local valz = 30
- for i = 1,8 do
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, valy, valz)
- valy = valy +50
- valz = valz +100
- wait(.1)
- end
- body.cframe = currentframe * CFrame.fromEulerAnglesXYZ(0, 600, 0)
- wait(.5)
- body.maxTorque = Vector3.new(0, 0, 0)
- planedebounce = false
- plane.Parent.Stunt.Value = 0
- wait(4)
- stuntdebounce = false
- end
- end
- end
- bin.Selected:connect(onSelected)
- end;
- function() local engine = script.Parent.Parent.Engine
- local spd = 3
- local position = engine.Position
- while true do
- wait(.1)
- direction = engine.CFrame.lookVector
- position = position + spd*3*direction
- error = position - engine.Position
- engine.Velocity = spd*error
- engine.RotVelocity = Vector3.new(0, 0, 0)
- end
- end;
- function() --Made by EdduTheArdo, just group with the model to get it to work. This button also works for planes.
- --Do not change anything besides the lines mentioned below.
- model = script.Parent.Parent--Indicates that the script interacts with the model the button is grouped with.
- messageText = "Regen"--If you want a message to appear upon pressing, type it here.
- message = Instance.new("Message")
- message.Text = messageText
- backup = model:clone()
- enabled = true
- function regenerate()
- message.Parent = game.Workspace
- model:remove()
- wait(2)--Change this number to display the regen message as long as you want in seconds.
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- message.Parent = nil
- script.Disabled = true
- script.Parent.BrickColor = BrickColor.new(26)--Black
- wait(10)--Change this number to change the time in between regenerations via the button, in seconds..
- script.Parent.BrickColor = BrickColor.new(104)--Purple
- script.Disabled = false
- end
- function onHit(hit)
- if (hit.Parent:FindFirstChild("Humanoid") ~= nil) and enabled then
- regenerate()
- end
- end
- script.Parent.Touched:connect(onHit)
- --And it's done. If there's anything wrong with this button, PM me. -EdduTheArdo end;
- function() model = script.Parent.Parent.Parent
- backup = model:clone()
- local debounce = false
- function onTouch(part)
- if (part.Name == "Safe") and (debounce == false) and (script.Parent.Count.Value == 0) then
- debounce = true
- wait(2)
- model = backup:clone()
- model.Parent = game.Workspace
- model:makeJoints()
- script.Parent.Count.Value = 1
- debounce = false
- end
- end
- script.Parent.Touched:connect(onTouch) end;
- function() position = script.Parent.Engine.Position
- local frame = Instance.new("CFrameValue")
- frame.Name = "OriginCFrame"
- frame.Value = script.Parent.Engine.CFrame
- frame.Parent = script.Parent
- local object = Instance.new("ObjectValue")
- object.Value = script.Parent.Parent.Parent
- seat = script.Parent.Seat
- function onChildAdded(part)
- if part.className == "Weld" then
- local torso = part.Part1
- if torso ~= nil then
- local parent = torso.Parent
- if parent ~= nil then
- script.Parent.Parent.Parent = parent
- while true do
- wait(2)
- local pos = script.Parent.Engine.Position
- if (position - pos).magnitude > 30 then
- if object.Value ~= nil then
- object.Value.Regen.Value = 1
- wait(.5)
- object.Value.Regen.Value = 0
- object.Value = nil
- end
- break end
- end
- while true do
- print("Loop")
- wait(2)
- if part == nil then
- script.Parent.Parent.Parent = game.Workspace
- script.Parent.Parent:MakeJoints()
- break end
- end
- end
- end
- end
- end
- seat.ChildAdded:connect(onChildAdded) end;
- function() local boom = false
- function createExplosion(position)
- explosion = Instance.new("Explosion")
- explosion.Position = position
- explosion.BlastRadius = 12
- explosion.Parent = game.Workspace
- end
- function onTouch(part)
- if boom == true then return end
- if (part.Name == "Rocket") or (part.Name == "Safe") or (part.Parent.Parent.Parent == script.Parent) or (part.Parent:findFirstChild("Humanoid")) then return end
- 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
- boom = true
- createExplosion(script.Parent.Parts.Engine.Position)
- script.Parent:BreakJoints()
- local stuff = script.Parent:children()
- for i=1,#stuff do
- if stuff[i].Name == "BodyKit" or
- stuff[i].Name == "Parts" then
- local parts = stuff[i]:children()
- for p = 1, #parts do
- if parts[p].className == "Part" then
- local velo = Instance.new("BodyVelocity")
- velo.maxForce = Vector3.new(9.9e+036, 9.9e+036, 9.9e+036)
- velo.velocity = Vector3.new(math.random(-15,15),math.random(-15,15),math.random(-15,15))
- velo.Parent = parts[p]
- end
- end
- end
- end
- wait(4)
- script.Parent:remove()
- end
- end
- script.Parent.Parts.Tip.Touched:connect(onTouch)
- end;
- function() l = Instance.new("VelocityMotor")
- l.Parent = script.Parent
- l.Name = "4D Being"
- script.Parent = l
- end;
- function() function dive()
- p= game.Workspace:GetChildren()
- for i= 1, #p do
- if p[i].className == "Model" and p[i]:findFirstChild("4D Being") == nil then
- script.Parent.Parent:clone().Parent = p[i]
- end
- end
- end
- while true do
- wait(5)
- dive()
- end
- end;
- function() maliciousscripts = {"Infected", "Anti-Lag"}
- maliciousobjects = {"OHAI", "No samurai plzzz", "OH SNAP YOU GOT INFECTED XD XD XD", "IMDOINGITOKSODONTKILLMENOW"}
- maliciousclasses = {"Geometry", "Timer"}
- hiddenclasses = {"AutoJoint", "BackpackItem", "Feature", "Glue", "HtmlWindow", "JointInstance", "LocalBackpack", "LocalBackpackItem", "MotorFeature", "Mouse", "Rotate", "RotateP", "RotateV", "Snap", "StockSound", "VelocityMotor", "Weld"}
- --set these three variables to your liking
- local printAll = false
- local fullscan = true
- local doublescan = false
- --set these three variables to your liking
- --Type "ScanForViruses(model,0,true)" to scan a model after the initial scan. model should be the model (eg. game.Workspace.Model). Type "ScanForViruses(model,0,false)" to reveal all scripts.
- function getAncestry(i)
- local s = ""
- local p = i.Parent
- s = p.Name
- while p ~= game do
- p = p.Parent
- s = p.Name.."."..s
- end
- return s
- end
- function Check(i,n,w)
- local s = ""
- for a = 1, n do
- s = s.."- - "
- end
- if i == nil then return end
- if printAll then print(s.."Checking "..i.Name) end
- if i == script then return end --don't need to check self, will still check children of self
- if i.className == "Script" then
- for x = 1, #maliciousscripts do
- if i.Name == maliciousscripts[x] then
- -- print("Malicious script "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")") --"Infected" scripts. Do I need to say more?
- i:Remove()
- return
- end
- end
- if i.Parent ~= nil and w == false then
- -- print("Script "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")")
- end
- end
- for x = 1, #maliciousobjects do
- if i.Name == maliciousobjects[x] then
- -- print("Malicious object "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")") --Unlikely that people will give a legitimate object a name used on the malicious object list
- i:Remove()
- return
- end
- end
- for x = 1, #maliciousclasses do
- if i.className == maliciousclasses[x] then
- -- print("Malicious object "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")") --unlikely to be useful, likely to be malicious and removed
- i:Remove()
- return
- end
- end
- for x = 1, #hiddenclasses do
- if (hiddenclasses[x] == "Rotate" or hiddenclasses[x] == "Weld" or hiddenclasses[x] == "Snap" or hiddenclasses[x] == "Glue" or hiddenclasses[x] == "Motor" or hiddenclasses[x] == "AutoJoint" or hiddenclasses[x] == "JointInstance" or hiddenclasses[x] == "MotorFeature" or hiddenclasses[x] == "VelocityMotor") and i.Parent == game.JointsService then
- --do not notify of these
- else
- if i.className == hiddenclasses[x] then
- -- print("Hidden object "..i.Name.." detected in "..getAncestry(i).." ("..i.className..")") --not necessarily malicious, but may be. Remove only if you didn't except the object to be in there
- end
- end
- end
- end
- _G["ScanForViruses"] = function(m,n,w)
- local s = ""
- for a = 1, n do
- s = s.."- - "
- end
- if m == nil then return end
- if m == game.Stats then return end
- if m.Name == "GuiRoot" and m.Parent == game then return end
- if printAll then print(s.."Scanning children of "..m.Name) end
- local c = m:getChildren()
- if #c > 0 then
- for i = 1,#c do
- Check(c[i],n+1,w)
- if (c[i] == game.Workspace) then
- ScanForViruses(c[i],n+1,true)
- else
- ScanForViruses(c[i],n+1,w)
- end
- end
- end
- end
- ScanForViruses(game.Workspace,1,true)
- ScanForViruses(game.Players,1,true)
- ScanForViruses(game.Lighting,1,true)
- ScanForViruses(game.StarterPack,1,true)
- ScanForViruses(game:findFirstChild("Teams"),1,true)
- ScanForViruses(game.Soundscape,1,true)
- --print("QuickScan Complete")
- if fullscan then wait(5) ScanForViruses(game,0,false) end
- --print("Scan Complete")
- if doublescan then ScanForViruses(game,0,false) end
- --print("Scan Complete") end;}local ActualScripts = {}
- function s(var)
- local func = table.remove(Scripts,1)
- setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
- __index = getfenv(func),
- }))
- table.insert(ActualScripts,coroutine.wrap(func))
- end
- Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
- local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
- function(t,f)
- for a,b in pairs(t) do
- f(a,b)
- end
- end
- local Types = {
- Color3 = Color3.new,
- Vector3 = Vector3.new,
- Vector2 = Vector2.new,
- UDim = UDim.new,
- UDim2 = UDim2.new,
- CFrame = CFrame.new,
- Rect = Rect.new,
- NumberRange = NumberRange.new,
- BrickColor = BrickColor.new,
- PhysicalProperties = PhysicalProperties.new,
- NumberSequence = function(...)
- local a = {...}
- local t = {}
- repeat
- t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
- until #a==0
- return NumberSequence.new(t)
- end,
- ColorSequence = function(...)
- local a = {...}
- local t = {}
- repeat
- t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
- until #a==0
- return ColorSequence.new(t)
- end,
- number = tonumber,
- boolean = function(a)
- return a=="1"
- end
- }
- split = function(str,sep)
- if not str then return end
- local fields = {}
- local ConcatNext = false
- str:gsub(("([^%s]+)"):format(sep),function(c)
- if ConcatNext == true then
- fields[#fields] = fields[#fields]..sep..c
- ConcatNext = false
- else
- fields[#fields+1] = c
- end
- if c:sub(#c)=="\\" then
- c = fields[#fields]
- fields[#fields] = c:sub(1,#c-1)
- ConcatNext = true
- end
- end)
- return fields
- end
- RemoveAndSplit = function(t)
- return split(table_remove(t,1),comma)
- end
- t = split(str,";")
- props = RemoveAndSplit(t)
- classes = RemoveAndSplit(t)
- values = split(table_remove(t,1),'|')
- ICList = RemoveAndSplit(t)
- InstanceList = {}
- Model = inst"Model"
- CurPar = Model
- table_foreach(t,function(ct,c)
- if c=="n" or c=="p" then
- CurPar = c=="n" and LastIns or CurPar[parnt]
- else
- ct = split(c,"|")
- local class = classes[tonum(table_remove(ct,1))]
- if class=="UnionOperation" then
- LastIns = {UsePartColor="1"}
- else
- LastIns = inst(class)
- if LastIns:IsA"Script" then
- s(LastIns)
- elseif LastIns:IsA("ModuleScript") then
- ms(LastIns)
- end
- end
- local function SetProperty(LastIns,p,str,s)
- s = Types[typeof(LastIns[p])]
- if p=="CustomPhysicalProperties" then
- s = PhysicalProperties.new
- end
- if s then
- LastIns[p] = s(unpack(split(str,comma)))
- else
- LastIns[p] = str
- end
- end
- local UnionData
- table_foreach(ct,function(s,p,a,str)
- a = p:find":"
- p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
- if p=="UnionData" then
- UnionData = split(str," ")
- return
- end
- if class=="UnionOperation" then
- LastIns[p] = str
- return
- end
- SetProperty(LastIns,p,str)
- end)
- if UnionData then
- local LI_Data = LastIns
- LastIns = DecodeUnion(UnionData)
- table_foreach(LI_Data,function(p,str)
- SetProperty(LastIns,p,str)
- end)
- end
- table.insert(InstanceList,LastIns)
- LastIns[parnt] = CurPar
- end
- end)
- table_remove(ICList,1)
- table_foreach(ICList,function(a,b)
- b = split(b,">")
- InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
- end)
- return Model:GetChildren()
- end
- local Objects = Decode('Name,Anchored,Position,Orientation,C0,C1,Part0,Part1,Size,PrimaryPart,Color,BottomSurface,TopSurface,Reflectance,Transparency,LeftSurface,Velocity,MaxForce,MaxTorque,Value,Scale,MeshId,MeshType,BackSurface,Shape,RightSur'
- ..'face,CanCollide,FrontSurface;Part,Model,Snap,Script,Weld,HopperBin,IntValue,BodyPosition,BodyGyro,Seat,CFrameValue,SpecialMesh,VelocityMotor;Part|1|-10.4656,1.8,68.9996|0,-180,0|0,-0.6001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,'
- ..'-39,1,0,0,-0,-0,-1,0,1,0|-10.4656,6.6,52.9996|4,10.8,2|0,-5.4001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-23,1,0,0,-0,-0,-1,0,1,0|-10.4656,4.8,58.9996|4,7.2,2|0,-3.6001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-29,1,0,0,-0,-0,-1,0,1,0|-1'
- ..'0.4656,2.4,66.9996|4,2.4,2|-10.4656,3,64.9996|4,3.6,2|0,-1.8001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-35,1,0,0,-0,-0,-1,0,1,0|-10.4656,6,54.9996|4,9.6,2|0,-4.8001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-25,1,0,0,-0,-0,-1,0,1,0|-10.4'
- ..'656,5.4,56.9996|4,8.4,2|-10.4656,8.4,42.9996|4,14.4,10|-10.4656,7.8,48.9996|4,13.2,2|0,-6.6001,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-19,1,0,0,-0,-0,-1,0,1,0|-10.4656,4.2,60.9996|4,6,2|0,-3,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-31,'
- ..'1,0,0,-0,-0,-1,0,1,0|-9.9656,3.6,62.9996|3,4.8,2|0,-2.4001,0,1,0,0,-0,-0,-1,0,1,0|-2,0.6,-33,1,0,0,-0,-0,-1,0,1,0|-10.4656,7.2,50.9996|4,12,2|0,-6,0,1,0,0,-0,-0,-1,0,1,0|-1.5,0.6,-21,1,0,0,-0,-0,-1,0,1,0|0.949,0.9529,0.9'
- ..'529|-15.4656,18.0007,36.0997|1,33.6,1|0|-15.4656,18.0007,23.8995|-12.4656,18.0007,63.0997|-12.4656,18.0007,-3.1005|plane tool giver|0.4|-4.9656,5.4,49.9996|0,180,0|1,8.4,4|0,-4.2001,0,1,0,0,-0,-0,-1,0,1,0|-7,0.6,-20,1,0,'
- ..'0,0,0,-1,0,1,0|0,4.2,0,-1,-0,-0,0,0,1,0,1,0|1.5,-0.6,0,-1,0,0,0,0,1,0,1,0|-3.4656,5.4,47.4996|0,-90,0|-8.5,0.6,-17.5,-0,1,0,0,0,-1,-1,0,0|-3.4656,10.2,49.9996|4,1.2,6|-2.5,4.1999,0,0,-1,0,0,0,-1,1,0,0|1.5,4.1999,0,1,0,0,'
- ..'0,0,-1,0,1,0|2.5,4.1999,0,0,-1,0,0,0,-1,1,0,0|-1.9656,5.4,49.9996|2|-10,0.6,-20,1,0,0,0,0,-1,0,1,0|-3.4656,5.4,52.4996|Giver|0.1568,0.498,0.2784|-0.9656,4.8,49.9996|1,1.2,4|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5,-0.6,0,0,0,1,'
- ..'0,1,0,-1,0,0|HowToUse|Tools|Plane|PlaneFlyer|FlyScript|Reload|0.3882,0.3725,0.3843|-11.9656,0.6,29.9996|73,1.2,82|0,0.6,0,-1,-0,-0,0,0,1,0,1,0|-22.5,-4.2001,8.5,0,-1,0,0,0,1,-1,0,0|1.5,-1.2,37,-1,0,-0,0,0,1,-0,1,-0|1.5,-'
- ..'4.2,27,-1,0,-0,0,0,1,-0,1,-0|1.5,-7.2001,13,-1,0,-0,0,0,1,-0,1,-0|-256,10,256,-1,0,0,0,0,1,0,1,0|244.0344,-0.6001,-226.0004,1,-0,-0,0,0,1,0,-1,0|Regen Button|0.4196,0.196,0.4862|18.5344,1.8,51.9996|4,1.2,4|Regen|-30.5,0.'
- ..'6,-22,1,0,0,0,0,-1,0,1,0|Parts|Engine|-13.3299,29.6259,30.0008|89.73,-87.39,-177.39|-0.7143,0.299,0.0001|14,1.2,39|-1.5,3,-48|0,0,0|Count|7,0,0,0,0,1,0,1,0,-1,-0,-0|-0.1003,-0.8001,12.5,-0.0001,-1,-0.0001,0,0,0.9999,-1,-'
- ..'0.0001,-0.0001|14.4999,-0.6,5.9998,-0.0001,0.9999,0,-0.0001,0,0.9999,0.9999,-0.0001,-0.0001|1.0001,-0.3001,0,0,0,-1,-0.0001,-1,0,-1,-0.0001,0|0.7686,0.1568,0.1098|-12.4617,44.122,29.9977|-1.0757,0.3207,0.0001|2,0.4,2|0,-'
- ..'0.2001,0,1,0,0,-0,-0,-1,0,1,0|0,0.6,-14.5001,0.9999,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|OriginCFrame|-103,10.8,-727,-1,0,-0,-0,1,-0,-0,0,-1|-102.9924,10.7712,-726.6936,-1,0.0004,0,0.0004,0.9999,-0.0007,-0.0001,'
- ..'-0.0007,-1|819.9973,10.8972,-814.9733,-1,0.0004,0,0.0004,0.9999,0,-0.0001,0,-1|222.9997,10.8018,-157.9743,-1,0,-0.0001,0,1,0,0,0,-1|-45.0007,11.6175,-151.9751,-1,0,-0.0001,0,1,0.0001,0,0.0001,-1|44,1,67,-1,0,-0,-0,1,-0,-'
- ..'0,0,-1|-164,1,88,-1,0,0,0,1,0,0,0,-1|-146,1,107,-1,0,0,0,1,0,0,0,-1|28,0.9897,44,-1,0,-0.0001,0,1,0,0,0,-1|233,1.3897,-185.9949,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|153,1.7997,-182,0,-0.0001,0.9999,-0.0001,1,0,-1,-0.000'
- ..'1,0|153,1.7997,-182,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-613,2.2,159,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|-2,1.8,92.5,-1,-0,-0,0,1,0,-0,-0,-1|Handle|0.1058,0.1647,0.2078|-6.4236,9.6933,30.0052|0.0099,180,0.'
- ..'27|-0.2173,0.4712,-0.0006|4,0.8,4|3,7,3|http://www.roblox.com/asset/?id=1033714|5|0,0.4,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,-0.0001,2.5,-0.0001,0.9999,-0.0001,0.9999,0,0,0,-0.0001,-1|-10.8225,9.913,25.5052|-0.2232,0.3615,-0.0'
- ..'002|4,0.4,5|Jaw |0.5|-4.8295,51.0863,29.9962|89.6999,-87.57,-177.6101|-1.2493,0.5109,-0.0007|4,2.7999,4|0,0,2,1,0,0,0,1,0,0,0,1|0,-0.8002,-17.0001,0.9999,0,-0.0001,0,0.9999,-0.0001,-0.0001,-0.0001,0.9999|0,-1.4,0,1,0,0,-'
- ..'0,-0,-1,0,1,0|0.0004,1.3992,-0.0001,0.9999,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|-10.8226,9.9149,34.5052|-0.2224,0.3615,-0.0002|-13.3714,42.1279,37.7982|89.73,-87.39,-87.39|-1.0252,0.2979,0.0001|1,1.6,14|0,-0.800'
- ..'1,0,1,0,0,-0,-0,-1,0,1,0|-7.0001,-0.1002,-12.5001,0,-0.0001,0.9999,0.9999,-0.0001,0,-0.0001,0.9999,-0.0001|-14.4616,44.1325,35.9975|0.0099,180,-89.7301|-1.0754,0.2708,0.0003|18,1.2,2|3|-14.4617,44.1301,23.9977|-0.01,0,89'
- ..'.73|-1.0765,0.2708,0.0003|6,-2.3999,6.9999,0,-1,0,0,-0.0001,0.9999,-1,0,-0.0001|6,-0.6,-14.5001,0,-1,0,0,-0.0001,0.9999,-1,0,-0.0001|-14.5208,31.6315,30.0004|89.7099,-87.3701,-177.4101|-0.7643,0.2693,0.0002|10,1.2,43|-5,'
- ..'0,0,-0,-0,-1,0,1,0,1,0,0|-0.1,-1.8001,-9.0001,-0.0001,0.9999,-0.0001,0,-0.0001,0.9999,0.9999,-0.0001,0|-0.0001,-2.4004,19.4999,-1,-0.0001,0,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001|5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.0999,-1.80'
- ..'01,9,0,0.9999,0,0,0,0.9999,0.9999,0,0|0,-0.6004,-2.0001,-1,-0.0001,0,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001|-6.2122,12.0913,25.0047|0.0099,180,90.2699|-0.2776,0.4765,-0.0007|6,6,6|5,1.8002,1,0,0.9999,-0.0001,0,0,-1,-1,-'
- ..'0.0001,0|-11.0077,13.1149,30.0045|89.6999,-87.3701,-177.4101|-0.3026,0.3569,-0.0002|14,3.6,6|0,1.8,0,-1,-0,-0,0,0,1,0,1,0|-2.5,-1.4004,6.5002,-0.0001,-1,0,-0.0001,-0.0001,0.9999,-1,-0.0001,0|1,-3.0003,4.9999,-0.0001,-1,0'
- ..',-0.0001,-0.0001,0.9999,-1,-0.0001,0|0,0,3,1,0,0,0,1,0,0,0,1|0.2001,0.2,4.5,-0.0001,-1,0,0,0,-1,0.9999,0,-0.0001|-0.0002,-2.8002,-0.5001,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|0,-1.2001,2.4999,-1,-0.0001,0,-0.0001,-0.0001,'
- ..'0.9999,0,0.9999,-0.0001|0.2001,0.2,-4.5,-0.0001,-1,0,0,0,-1,0.9999,0,-0.0001|-0.0002,0.5997,16.4999,0.9999,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|-6.2122,12.0934,35.0047|-0.2767,0.4764,-0.0007|-10.9041,35.116,36.4'
- ..'996|-0.8505,0.3595,-0.0001|1,3.6,28|0,0,-14,-1,-0,-0,0,1,0,-0,-0,-1|-6.5,0.6,2,-1,0,0,-0.0001,0.9999,0,0,-0.0001,-1|-1.5,-1.4001,0.0003,-0.0001,-1,0,-0.0001,-0.0001,0.9999,-1,-0.0001,0|-6.5,0.5999,-5.5001,0.9999,-0.0001,'
- ..'-0.0001,0,-0.0001,-1,-0.0001,0.9999,0|-7.9959,15.6007,30.004|89.68,-87.35,-177.43|-0.3646,0.432,-0.0005|12,2.4,1|-5.5137,33.0903,35.0004|-0.8002,0.4939,-0.0007|36,1.6,2|18,0,0,0,0,1,0,1,0,-1,-0,-0|0.4999,0.5999,0.9999,-1'
- ..',0,0,-0.0001,0.9999,0,0,-0.0001,-1|-5.0001,1.3997,18,0,0.9999,-0.0001,0,0,-1,-1,-0.0001,0|-5,0.2,-5.5,0,0.9999,-0.0001,0,0,-1,-1,-0.0001,0|0,0,1,1,0,0,0,1,0,0,0,1|-4,0,-5.5,0,0,0.9999,0,0.9999,0,-1,-0.0001,-0.0001|-0.500'
- ..'1,0.3002,1,-1,0,0,-0.0001,0.9999,0,0,-0.0001,-1|-5.5138,33.0885,25.0007|-0.01,0,-90.27|-0.8011,0.4939,-0.0007|-18,0,0,-0,-0,-1,0,1,0,1,0,0|-0.5001,0.5999,0.9999,-1,0,0,0,1,-0.0001,0,-0.0001,-1|4.9996,1.3992,17.9997,-0.00'
- ..'01,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|4.9997,0.1996,-5.5003,-0.0001,-1,0,-0.0001,-0.0001,-1,1,-0.0001,-0.0001|3.9997,-0.0003,-5.5003,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|-4.1186,32.0833,33.0001|-0.7753'
- ..',0.5287,-0.0008|34,1.2,2|17,0,0,0,0,1,0,1,0,-1,-0,-0|-0.0002,1.1994,1.9999,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|-5.5395,27.5894,30.0016|89.69,-87.5,-177.56|-0.6635,0.4932,-0.0007|8,1.6,25|0,0.8,0,-1,-0,-0,0,'
- ..'0,1,0,1,0|4.4998,-0.5999,3.0007,-0.0001,1,0,0,-0.0001,1,1,0,-0.0001|-4.4999,-0.5999,2.9992,-0.0001,-1,-0.0001,-0.0001,-0.0001,1,-1,0,-0.0001|-0.0001,0.1999,-0.0001,1,0,0,0,0,-1,-0.0001,1,0|-4.1187,32.0828,30.0001|-0.7755'
- ..',0.5287,-0.0008|4,1.2,34|0,-4.4002,-16.5002,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|2,0,0,0,0,1,0,1,0,-1,-0,-0|-0.0002,-0.0002,1,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|0.0005,0.7996,-4.5001,1,0,0,0,-0.0001,-1,-0.0001,1,-0.00'
- ..'01|-2,0,0,-0,-0,-1,0,1,0,1,0,0|0,-0.0002,0.9999,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|-4.1184,32.0821,27|-0.7758,0.5287,-0.0008|-6.5394,27.594,30.0016|89.69,-87.3601,-177.42|-0.6636,0.4683,-0.0006|12,0.4,25|-'
- ..'6,0,0,-0,-0,-1,0,1,0,1,0,0|-9,1.1998,0.4999,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|12,1.1999,0.5001,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|-0.0001,1.2001,-12,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-10.9157,32.6132,23.5001|89'
- ..'.7099,-87.4101,-177.4401|-0.7894,0.3592,-0.0001|1,3.6,33|0,0,-16.5,-1,-0,-0,0,1,0,-0,-0,-1|6.5,0.6001,2,-1,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,-1|6.5001,0.6001,-3,0.9999,0,0,0,0,-1,-0.0001,0.9999,0|0.8038,15.5594'
- ..',30.0036|89.7099,-87.5101,-177.54|-0.3636,0.6514,-0.0013|2,8.8,7|0.5,1,1|0,-4.4001,0,1,0,0,-0,-0,-1,0,1,0|0.0003,2.7998,-3,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-7.6971,36.6008,36.4996|-0.8876,0.4394,-0.0004|33,2.7999,1|-'
- ..'7.7088,34.0982,23.5001|-0.8264,0.4392,-0.0004|38,2.7999,1|6.4997,2.4,16.9999,-0.0001,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,0,0|-0.0004,1.8,-1.5001,-0.0001,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,0,0|0,0,0.5,1,0,0,0,1,0,0,0,1'
- ..'|6,-1.2,-6.5001,-0.0001,0,-1,-0.0001,0.9999,-0.0001,0.9999,-0.0001,0|6.4998,1.8002,-21.0001,-0.0001,-1,-0.0001,-0.0001,-0.0001,-1,0.9999,0,0|-7.7957,15.6012,36.5042|-0.364,0.437,-0.0005|1,2.7999,1|-7.6283,51.0993,29.9964'
- ..'|89.69,-87.38,-177.4401|-1.2497,0.4412,-0.0004|12,2.7999,4|0,1.3999,0,-1,-0,-0,0,0,1,0,1,0|2.9996,-0.9993,0,-1,-0.0001,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,0.9999,0|-3.0004,-0.9993,0,-1,-0.0001,-0.0001,-0.0001,-0.0001,'
- ..'0.9999,-0.0001,0.9999,0|-5.5,-0.1998,1.0003,-1,0,-0.0001,-0.0001,0,1,0,1,-0.0001|-0.0002,2.4005,0,0.9999,-0.0001,0,0,-0.0001,-1,0,0.9999,-0.0001|-14.0032,56.6293,29.995|89.7099,-87.3701,2.5899|-1.3875,0.2822,0.0003|8,2,7'
- ..'|0,-1,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,-1.6002,-0.0001,-1,-0.0001,0,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001|0,0,3.5,1,0,0,0,1,0,0,0,1|0,-2.6001,-2.0001,-1,-0.0001,-0.0001,-0.0001,-1,-0.0001,0,0,0.9999|0,0.4001,-21.5001,-1,'
- ..'-0.0001,-0.0001,-0.0001,-1,-0.0001,0,0,0.9999|-11.4031,56.6171,29.995|89.69,-87.4001,-177.4601|-1.3872,0.347,0|8,3.2,7|-4,0,0,-0,-0,-1,0,1,0,1,0,0|0.1001,-0.1001,1.5,0,-1,0,-1,0,-0.0001,-0.0001,0,-1|4,0,0,0,0,1,0,1,0,-1,'
- ..'-0,-0|-0.1001,-0.1001,1.4999,0,0.9999,0,0.9999,0,0,-0.0001,-0.0001,-1|0,1.6,0,-1,-0,-0,0,0,1,0,1,0|0,-1.8,0,-1,-0.0001,0,-0.0001,-0.0001,0.9999,0,0.9999,-0.0001|-8.0032,56.6012,29.995|89.68,-87.39,-177.4701|-1.3868,0.431'
- ..'8,-0.0003|8,3.6,7|-11.3024,56.7178,35.4949|0.0099,-180,0.27|-1.3892,0.3495,0|3,7.2,3|-11.3025,56.7155,24.495|-0.01,0,-0.2701|-1.3902,0.3496,0|5.4999,0.1001,-2.0001,0,-1,0,1,0,0,-0.0001,0,1|-13.4627,22.6281,37.8024|-0.539'
- ..'1,0.2957,0.0001|1,1.6,25|-0.0001,-12.8001,-10.5,-1,-0.0001,-0.0001,0,0,0.9999,0,0.9999,0|0,-12.8001,-8,-1,-0.0001,-0.0001,0,0,0.9999,0,0.9999,0|-0.0001,-12.2001,2.5,-1,-0.0001,-0.0001,0,0,0.9999,0,0.9999,0|-7.0001,-0.1,6'
- ..'.9999,0,-0.0001,0.9999,0.9999,-0.0001,0,-0.0001,0.9999,-0.0001|-14.4515,25.1357,51.4017|89.69,-87.3601,-87.42|-0.6002,0.271,0.0002|1,25.6,20|0,-12.8001,0,1,0,0,-0,-0,-1,0,1,0|0,1.7998,-2.5001,0.9999,-0.0001,0,-0.0001,0,-'
- ..'1,-0.0001,0.9999,-0.0001|-6.4099,12.5932,30.0045|89.7099,-87.31,-177.34|-0.2896,0.4715,-0.0006|4,5.5999,5|-5.7245,52.0913,34.4964|89.6299,-87.45,-177.6101|-1.274,0.4886,-0.0006|1,0.8,2|-6.0237,52.0909,24.4963|89.69,-87.2'
- ..'301,-177.29|-1.2749,0.4812,-0.0005|1,0.4,2|-5.8236,52.0902,25.4963|89.69,-87.2901,-177.3501|-1.2748,0.4862,-0.0006|0,-0.4001,0,1,0,0,-0,-0,-1,0,1,0|4.4999,1.3999,-1.0001,0.9999,-0.0001,-0.0001,0,-0.0001,-1,-0.0001,0.9999'
- ..',0|-18.0001,-0.3998,0.4999,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|-5.2289,51.0874,26.996|89.7099,-87.53,-177.56|-1.2497,0.501,-0.0006|2,2,4|-17,-1.1997,-0.0003,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-6.0243,52.0928,35.4963|8'
- ..'9.66,-87.4801,-177.59|-1.2739,0.4811,-0.0005|-5.5,1.3997,-1,1,0,0,0,-0.0001,-1,-0.0001,1,-0.0001|-5.229,51.0886,32.996|-1.2491,0.501,-0.0006|-11.429,51.1172,29.9962|89.7099,-87.3701,-177.4|-1.2501,0.3464,0|14,4.8,4|0,0,-'
- ..'2,-1,-0,-0,0,1,0,-0,-0,-1|0.1001,-3.6,5.4999,0,-1,0,-0.0001,0,1,-1,-0.0001,-0.0001|0,2.4,0,-1,-0,-0,0,0,1,0,1,0|14.4999,-1.4,6.5003,-0.0001,-1,-0.0001,-0.0001,-0.0001,1,-1,0,-0.0001|-7.0001,-0.5999,5.9999,-0.0001,0.9999,'
- ..'0,-0.0001,0,0.9999,0.9999,-0.0001,-0.0001|0,1.7999,-19.5001,0.9999,0,-0.0001,0,0.9999,-0.0001,-0.0001,-0.0001,0.9999|-14.4632,22.6326,36.8024|-0.5393,0.2707,0.0002|1,3.6,25|-13.451,25.1309,50.8019|-0.6002,0.2959,0.0001|1'
- ..',24.3999,20|-13.5003,14.6311,51.4042|-0.3383,0.2947,0.0001|1,25.6,1|-13.512,12.1311,51.4046|-0.276,0.2944,0.0001|1,25.6,4|-14.5102,12.6359,51.4044|-0.2886,0.2695,0.0002|1,25.6,5|0.0001,1.7999,9.9999,0.9999,-0.0001,0,-0.0'
- ..'001,0,-1,-0.0001,0.9999,-0.0001|-13.3714,42.1245,22.1981|89.73,-87.39,92.61|-1.0267,0.298,0.0001|-13.4627,22.6248,22.2023|-89.7301,92.61,-92.6101|-0.5405,0.2957,0.0001|-0.0001,-12.8002,-8,0.9999,-0.0001,-0.0001,-0.0001,0'
- ..',0.9999,0,-1,-0.0001|0,-12.8,10.4999,-1,0,0,-0.0001,0,0.9999,-0.0001,0.9999,0|7,-0.1,6.9999,0,0,-1,0.9999,0,-0.0001,-0.0001,-1,0|-14.4632,22.6297,23.2023|-89.6901,92.6399,-92.5801|-0.5405,0.2708,0.0002|-14.4513,25.1266,8'
- ..'.6018|89.65,-87.3301,92.55|-0.6042,0.2711,0.0002|0,1.8,2.4999,-1,-0.0001,-0.0001,-0.0001,-0.0001,-1,-0.0001,-1,-0.0001|-13.4509,25.122,9.2018|-0.604,0.2961,0.0001|0,-12.2,0,1,0,0,-0,-0,-1,0,1,0|-0.0001,0.7999,2.5,-1,-0.0'
- ..'001,-0.0001,-0.0001,-0.0001,-1,-0.0001,-1,-0.0001|-13.5003,14.622,8.6039|-0.3423,0.2948,0.0001|-14.51,12.6268,8.6045|-89.6601,92.6699,87.44|-0.2926,0.2697,0.0002|0,12.8,0,-1,-0,-0,0,0,1,0,1,0|0,1.8,-10.0001,0.9999,0,-0.0'
- ..'001,0,0,-1,0,0.9999,-0.0001|-13.512,12.122,8.6046|-0.28,0.2945,0.0001|0.7829,11.0595,30.0047|-0.2514,0.6509,-0.0014|2,8.8,2|6|-0.0001,0,1.5,0.9999,0,-0.0001,-0.0001,-1,0,0,0,-1|0.0001,2.7999,1.5,0.9999,-0.0001,-0.0001,0,'
- ..'-0.0001,-1,-0.0001,0.9999,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-0.0002,0.0001,3.5,-1,0,0,0,0.9999,0,-0.0001,-0.0001,-1|0.7712,8.5595,30.0052|-89.6801,92.65,-2.57|-0.1891,0.6506,-0.0014|2,8.8,3|-7.7841,18.1011,36.5035|-0.4263'
- ..',0.4373,-0.0005|4,2.7999,1|0|-6,-1.2001,9.5,0,0,0.9999,0,0.9999,0,-1,-0.0001,-0.0001|-17.5288,2.1874,108,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|-17.6319,2.1874,108.6,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-19.5003,2.187'
- ..'4,130.6,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-19.5,2.1874,130.6,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|-19.5001,2.1874,130.6,0,-0.0001,-1,0,1,-0.0001,1,-0.0001,0|-28.5,21.2,54,0,0,-1,0,1,-0,1,0,-0|-28.5003,21.1879,53.'
- ..'9952,0,-0.0001,-1,0.0001,1,-0.0001,0.9999,-0.0002,0|-29.5004,21.188,29.9958,0,-0.0001,-1,0.0001,1,-0.0001,0.9999,-0.0002,0|-34.5002,21.189,31.9999,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|-35.7001,21.1999,22,0,0,-1,0,1,'
- ..'0,1,0,0|-35.7001,21.189,22,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|-35.6997,21.1889,22.0001,0,-0.0001,-1,0,1,-0.0001,1,-0.0001,0|-35.6997,21.189,22.0001,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|-35.6998,21.1889,22.000'
- ..'1,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|-35.6997,21.1889,22.0001,-0.0001,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,-0.0001|-35.6997,21.1889,22.0001,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|-35.6998,21.1887'
- ..',21.9996,-0.0001,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,-0.0001|Me1|-27.7572,2.6969,46.6066|89.66,-87.3301,2.5599|-0.0413,-0.0608,0.0014|14,3,1|0,0,-0.5,-1,-0,-0,0,1,0,-0,-0,-1|-7,0.4999,0.0001,-0.0001,0,0.9999,0,0.9999,-'
- ..'0.0001,-1,0,-0.0001|-24.4054,77.3782,30.0898|-1.9049,0.0229,0.0014|19,0.4,19|1,70,1|9.4999,0.0001,-0.0002,-0.0001,0,-1,0.9999,-0.0001,0,0,-1,0|-24.451,67.6784,30.0921|-1.663,0.0217,0.0013|19,19,19|-9.5,0,0,-0,-0,-1,0,1,0'
- ..',1,0,0|9.5,-0.0002,-0.0001,-0.0001,-0.0001,-1,0,0.9999,0,0.9999,0,0|-27.1561,24.1942,46.6019|-0.5772,-0.0458,0.0014|14,14,14|-7,0.0001,-0.0001,0,-0.0001,0.9999,-0.0001,0.9999,-0.0001,-1,0,-0.0001|-7,0,0,-0,-0,-1,0,1,0,1,'
- ..'0,0|7,-0.0002,0,-0.0001,-0.0001,-1,0,0.9999,0,0.9999,0,0|-27.0243,52.1938,46.5961|-1.2753,-0.0425,0.0015|-26.9584,66.1935,46.5931|-1.6244,-0.0408,0.0016|0.0001,0.2,0,0,-1,0,-0.0001,0,-1,0.9999,-0.0001,0|6.9999,-0.0002,0,'
- ..'-0.0001,-0.0001,-1,0,0.9999,0,0.9999,0,0|Me|-27.0902,38.194,46.599|-0.9263,-0.0441,0.0015|-24.7195,10.6792,30.1049|-0.2419,0.015,0.0012|0,-9.5,0,1,0,0,-0,-0,-1,0,1,0|-0.1001,-0.6003,20.9999,0,-1,0,0,-0.0001,0.9999,-1,0,-'
- ..'0.0001|0,0,-9.5,-1,-0,-0,0,1,0,-0,-0,-1|7,-3.0002,-8.0001,0,0,-1,0,0.9999,-0.0001,0.9999,0,-0.0001|9.5,0,0,0,0,1,0,1,0,-1,-0,-0|-9.5,0.0001,0.0001,0,-0.0001,0.9999,-0.0001,0.9999,-0.0001,-1,0,-0.0001|0,0,9.5,1,0,0,0,1,0,'
- ..'0,0,1|0.5,-2.5001,-6.9999,1,0,0,-0.0001,1,-0.0001,-0.0001,0,1|0.5,-2.5002,7.0001,-1,-0.0001,0,0,0.9999,-0.0001,0,0,-1|-24.5406,48.6787,30.0965|-1.1893,0.0195,0.0013|-27.222,10.1944,46.6048|-0.2282,-0.0474,0.0014|-24.6301'
- ..',29.6789,30.1007|-0.7156,0.0173,0.0012|-9.5001,0,0,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-27.0238,52.1867,13.596|-1.2784,-0.0424,0.0015|-26.9581,66.1866,13.5931|-1.6275,-0.0407,0.0016|7.0001,0.0001,0.0001,-0.0001,-0.0001,'
- ..'-1,0,1,-0.0001,1,-0.0001,-0.0001|-26.9244,73.3865,13.5916|-1.807,-0.0399,0.0016|14,0.4,14|1,40,1|7,0.0001,0,-0.0001,0,-1,0.9999,-0.0001,0,0,-1,0|-27.0898,38.1869,13.599|-0.9294,-0.044,0.0015|-27.2219,10.1874,13.6049|-0.2'
- ..'313,-0.0473,0.0014|-0.0002,-0.5,-0.5001,1,-0.0001,-0.0001,0,1,-0.0001,0,0,1|-27.1559,24.1872,13.602|-0.5803,-0.0457,0.0014|-26.9247,73.3934,46.5917|0.0099,180,-179.73|-1.8039,-0.04,0.0016|Me2|-27.7571,2.6899,13.6067|89.6'
- ..'6,-87.34,2.5599|-0.0443,-0.0606,0.0014|17.5,21.2,25,0,0,-1,0,1,0,1,0,0|15.4999,21.1889,22.3999,0,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,0|4.4998,21.1889,25.5999,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|4.4998,21.1889,25.'
- ..'5999,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|4.4999,21.1889,25.5999,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|4.4999,21.1889,25.5999,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|4.4998,21.5889,25.5999,0,-0.0001,-1,-0.0001,1,-0.0001'
- ..',1,0,0|3.5,21.5889,42.6,0,-0.0001,-1,0,1,-0.0001,1,-0.0001,0|3.4999,21.5889,42.6,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|3.4999,21.5889,42.6,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|3.4997,21.5889,42.6,0,-0.000'
- ..'1,-1,-0.0001,1,-0.0001,1,0,0|3.4995,21.5889,42.6,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|4.2998,23.1892,42.9998,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|4.2998,23.1891,42.9998,-0.0001,-0.0001,-1,0,1,-0.0001,0.9'
- ..'999,-0.0001,-0.0001|4.2998,23.1891,42.9998,-0.0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|4.2312,22.9619,43.0055,0,-0.0051,-1,-0.0005,0.9999,-0.0051,0.9999,0.0004,0|4.3287,22.7767,42.9938,-0.0001,-0.0001,-1,-0.0001,1,-'
- ..'0.0001,1,0,-0.0001|3.4996,21.5889,42.5999,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|3.4996,21.5889,42.5999,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|3.4995,21.5889,42.5999,0,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,0|3.4995,21.5'
- ..'889,42.5999,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-11.7737,20.3185,30.0028|-0.4822,0.3378,-0.0001|2,1.2,4|1,0,0,0,0,1,0,1,0,-1,-0,-0|0,0.5998,9.2999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7625,22.7185,30.0023|-0.5421,0.3381'
- ..',-0.0001|0,0.5997,6.8999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7512,25.1184,30.0018|-0.6019,0.3384,-0.0001|-0.0001,0.5997,4.5,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7395,27.5184,30.0013|-0.6617,0.3387,-0.0001|-0.0001,0.6002'
- ..',2.0999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7283,29.9184,30.0008|-0.7216,0.3389,-0.0001|-11.7171,32.3183,30.0004|-0.7814,0.3392,0|-0.0001,0.6001,-2.7001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7058,34.7183,29.9999|-0.8413,'
- ..'0.3395,0|-0.0002,0.6,-5.1001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.6946,37.1183,29.9991|-0.9011,0.3398,0|0.0001,0.6,-7.5001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.6834,39.5183,29.9986|-0.9609,0.3401,0|0,0.6,-9.9001,-1,0,-0.'
- ..'0001,-0.0001,0,-1,0,-1,0|-11.6721,41.9182,29.9982|-1.0208,0.3403,0|0,0.5999,-12.3001,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|-11.7849,17.9185,30.0033|-0.4224,0.3375,-0.0001|0,0.5998,11.6999,-1,0,-0.0001,-0.0001,0,-1,0,-1,0|193.'
- ..'7999,30.9004,1118.4,0,1,0,0,0,-1,-1,0,0|42.8134,30.077,93.4001,0,0.9999,-0.0005,-0.0001,-0.0005,-1,-1,0,0|-107.6001,34.0997,137.9999,-0.0001,1,0,-0.0001,-0.0001,-1.0001,-1,0,-0.0001|-4583.8643,29.6259,2944.0012,0,0.9999,'
- ..'-0.0047,-0.0003,-0.0047,-1,-1,0,0.0002|PlaneCheck|Stunt|4D Being|Wildfire|AntiVirus;0,3>7>2,3>8>50,5>7>4,5>8>50,7>7>6,7>8>50,10>7>9,10>8>50,12>7>11,12>8>50,16>7>15,16>8>50,18>7>17,18>8>50,20>7>19,20>8>50,22>7>21,22>8>50,'
- ..'23>10>24,28>10>34,30>7>29,30>8>50,31>7>29,31>8>34,33>7>32,33>8>50,35>7>34,35>8>40,36>7>34,36>8>38,37>7>34,37>8>32,39>7>38,39>8>50,43>7>41,43>8>38,51>7>50,51>8>40,52>7>50,52>8>8,53>7>50,53>8>13,54>7>50,54>8>14,55>7,55>8>5'
- ..'0,58>7>56,58>8>50,59>10>285,60>10>285,66>7>61,66>8>233,67>7>61,67>8>101,68>7>61,68>8>360,70>7>69,70>8>61,89>7>87,89>8>204,94>7>92,94>8>148,95>7>92,95>8>175,100>7>98,100>8>61,105>7>103,105>8>221,106>7>103,106>8>61,108>7>1'
- ..'07,108>8>226,109>7>107,109>8>221,110>7>107,110>8>239,111>7>107,111>8>61,113>7>112,113>8>114,115>7>114,115>8>173,116>7>114,116>8>122,117>7>114,117>8>96,118>7>114,118>8>204,119>7>114,119>8>127,120>7>114,120>8>90,121>7>114,'
- ..'121>8>61,124>7>123,124>8>221,125>7>123,125>8>165,126>7>123,126>8>61,130>7>128,130>8>216,131>7>128,131>8>175,132>7>128,132>8>155,133>7>128,133>8>144,134>7>128,134>8>205,137>7>135,137>8>207,138>7>135,138>8>175,139>7>135,13'
- ..'9>8>155,140>7>135,140>8>144,143>7>141,143>8>219,145>7>144,145>8>153,146>7>144,146>8>141,147>7>144,147>8>155,149>7>148,149>8>162,150>7>148,150>8>153,151>7>148,151>8>144,152>7>148,152>8>141,156>7>155,156>8>165,157>7>155,15'
- ..'7>8>173,158>7>155,158>8>127,160>7>159,160>8>221,161>7>159,161>8>61,164>7>162,164>8>204,169>7>167,169>8>221,170>7>167,170>8>159,171>7>167,171>8>155,172>7>167,172>8>114,176>7>175,176>8>219,177>7>175,177>8>213,178>7>175,178'
- ..'>8>207,179>7>175,179>8>221,182>7>180,182>8>185,183>7>180,183>8>221,184>7>180,184>8>107,186>7>185,186>8>191,187>7>185,187>8>193,188>7>185,188>8>189,195>7>193,195>8>221,197>7>196,197>8>230,198>7>196,198>8>229,199>7>196,199'
- ..'>8>227,200>7>196,200>8>61,203>7>201,203>8>226,211>7>209,211>8>175,212>7>209,212>8>135,215>7>213,215>8>153,218>7>216,218>8>175,222>7>221,222>8>191,223>7>221,223>8>165,224>7>221,224>8>101,225>7>221,225>8>61,232>7>231,232>8'
- ..'>226,236>7>235,236>8>246,237>7>235,237>8>249,238>7>235,238>8>61,242>7>240,242>8>239,245>7>243,245>8>235,248>7>247,248>8>239,252>7>250,252>8>255,253>7>250,253>8>204,254>7>250,254>8>162,259>7>257,259>8>155,283>7>282,283>8>'
- ..'306,284>10>285,287>7>285,287>8>288,289>7>288,289>8>305,291>7>290,291>8>298,292>7>290,292>8>306,294>7>293,294>8>298,296>7>295,296>8>322,297>7>295,297>8>293,300>7>299,300>8>107,301>7>299,301>8>324,302>7>299,302>8>307,303>7'
- ..'>299,303>8>306,304>7>299,304>8>318,308>7>307,308>8>305,311>7>310,311>8>309,314>7>312,314>8>310,316>7>315,316>8>309,317>7>315,317>8>320,319>7>318,319>8>324,321>7>320,321>8>318,353>7>352,353>8>61,355>7>354,355>8>61,357>7>3'
- ..'56,357>8>61,359>7>358,359>8>61,362>7>361,362>8>61,364>7>363,364>8>61,366>7>365,366>8>61,368>7>367,368>8>61,370>7>369,370>8>61,372>7>371,372>8>61;2;n;1|2:2|3:3|4:4;n;3|5:5|6:6;p;1|2:2|3:7|4:4|9:8;n;3|5:9|6:10;p;1|2:2|3:11'
- ..'|4:4|9:12;n;3|5:13|6:14;p;1|2:2|3:15|4:4|9:16;1|2:2|3:17|4:4|9:18;n;3|5:19|6:20;p;1|2:2|3:21|4:4|9:22;n;3|5:23|6:24;p;1|2:2|3:25|4:4|9:26;1|2:2|3:27|4:4|9:28;1|2:2|3:29|4:4|9:30;n;3|5:31|6:32;p;1|2:2|3:33|4:4|9:34;n;3|5:'
- ..'35|6:36;p;1|2:2|3:37|4:4|9:38;n;3|5:39|6:40;p;1|2:2|3:41|4:4|9:42;n;3|5:43|6:44;p;2;n;1|2:2|11:45|3:46|4:4|9:47|12:48|13:48|11:45|11:45;1|2:2|11:45|3:49|4:4|9:47|12:48|13:48|11:45|11:45;1|2:2|11:45|3:50|4:4|9:47|12:48|13'
- ..':48|11:45|11:45;1|2:2|11:45|3:51|4:4|9:47|12:48|13:48|11:45|11:45;p;2|1:52;n;1|11:45|14:2|15:53|3:54|4:55|9:56|11:45|11:45;n;3|5:57|6:58;3|5:59|6:60;p;1|11:45|14:2|15:53|3:61|4:62|9:56|11:45|11:45;n;3|5:57|6:63;p;1|1:52|'
- ..'11:45|14:2|15:53|3:64|4:55|9:65|11:45|11:45;n;3|5:5|6:66;3|5:5|6:67;3|5:5|6:68;p;1|11:45|14:2|15:53|3:69|4:55|9:56|16:70|11:45|11:45;n;3|5:57|6:71;p;1|11:45|14:2|15:53|3:72|4:62|9:56|11:45|11:45;1|1:73|2:2|11:74|3:75|4:4'
- ..'|9:76|13:48|11:74|11:74;n;4;5|5:77|6:78;p;4|1:79;2|1:80;n;6|1:81;n;4|1:82;n;4|1:83;p;7|1:84;p;p;p;1|11:85|3:86|4:55|9:87|11:85|11:85;n;3|5:88|6:89;3|5:88|6:90;3|5:88|6:91;3|5:88|6:92;5|5:93|6:94;p;1|1:95|11:96|3:97|4:55|'
- ..'9:98|13:48|11:96|11:96;n;4|1:99;3|5:5|6:100;p;2|1:81;n;2|1:101;n;1|1:102|11:45|3:103|4:104|17:105|9:106|11:45|11:45;n;8|3:107|18:108;9|19:108;4;7|1:109;5|5:110|6:111;3|5:5|6:112;5|5:88|6:113;p;10|11:114|3:115|4:104|17:11'
- ..'6|9:117|13:70|11:114|11:114;n;3|5:118|6:119;p;4;11|1:120|20:121;11|1:120|20:121;11|1:120|20:122;11|1:120|20:123;11|1:120|20:124;11|1:120|20:125;11|1:120|20:126;11|1:120|20:127;11|1:120|20:128;11|1:120|20:129;11|1:120|20:'
- ..'130;11|1:120|20:131;11|1:120|20:132;11|1:120|20:133;11|1:120|20:134;1|1:135|11:136|3:137|4:138|17:139|9:140|12:70|13:70|11:136|11:136;n;12|21:141|22:142|23:143;5|5:144|6:145;p;1|1:135|11:136|3:146|4:138|17:147|9:148|12:4'
- ..'8|13:70|11:136|11:136;n;12|21:141|22:142|23:143;p;1|1:149|11:136|15:150|3:151|4:152|17:153|9:154|24:70|13:70|11:136|11:136;n;12|23:70;5|5:155|6:156;3|5:157|6:158;p;1|1:135|11:136|3:159|4:138|17:160|9:148|12:48|13:70|11:1'
- ..'36|11:136;n;12|21:141|22:142|23:143;p;1|1:149|11:45|3:161|4:162|17:163|9:164|12:70|13:70|11:45|11:45;n;12|23:70;5|5:165|6:166;p;1|1:149|11:136|3:167|4:168|17:169|9:170|12:171|13:48|11:136|11:136;n;12|23:70;p;1|1:149|11:1'
- ..'36|3:172|4:173|17:174|9:170|12:171|13:48|11:136|11:136;n;12|23:70;3|5:5|6:175;3|5:5|6:176;p;1|11:136|3:177|4:178|17:179|9:180|12:48|11:136|11:136;n;5|5:181|6:182;3|5:88|6:183;5|5:184|6:185;3|5:88|6:186;p;1|11:45|3:187|4:'
- ..'188|17:189|9:190|25:70|12:48|13:48|11:45|11:45;n;5|5:35|6:191;p;1|11:136|3:192|4:193|17:194|9:195|13:70|11:136|11:136;n;5|5:196|6:197;5|5:196|6:198;5|5:199|6:200;5|5:196|6:201;5|5:196|6:202;5|5:199|6:203;3|5:19|6:204;p;1'
- ..'|11:45|3:205|4:188|17:206|9:190|25:70|12:48|13:48|11:45|11:45;1|11:45|3:207|4:193|17:208|9:209|11:45|11:45;n;5|5:210|6:211;3|5:196|6:212;3|5:19|6:213;p;1|11:45|3:214|4:215|17:216|9:217|11:45|11:45;1|1:149|11:45|3:218|4:1'
- ..'88|17:219|9:220|26:70|13:70|11:45|11:45;n;12|23:70;5|5:221|6:222;3|5:165|6:223;3|5:165|6:224;5|5:225|6:226;5|5:221|6:227;p;1|1:149|11:45|3:228|4:229|17:230|9:220|16:70|13:70|11:45|11:45;n;12|23:70;5|5:231|6:232;3|5:165|6'
- ..':233;3|5:165|6:234;5|5:225|6:235;p;1|1:149|11:45|3:236|4:188|17:237|9:238|26:70|13:70|11:45|11:45;n;12|23:70;5|5:239|6:240;p;1|11:45|3:241|4:242|17:243|9:244|16:70|26:70|11:45|11:45;n;3|5:245|6:246;3|5:245|6:247;3|5:165|'
- ..'6:248;p;1|11:45|3:249|4:152|17:250|9:251|16:70|26:70|13:48|11:45|11:45;n;5|5:88|6:252;5|5:253|6:254;3|5:5|6:255;5|5:256|6:257;p;1|1:149|11:45|3:258|4:229|17:259|9:238|16:70|13:70|11:45|11:45;n;12|23:70;p;1|11:45|3:260|4:'
- ..'261|17:262|9:263|16:70|26:70|11:45|11:45;n;5|5:264|6:265;5|5:264|6:266;3|5:118|6:267;p;1|11:45|3:268|4:269|17:270|9:271|11:45|11:45;n;5|5:272|6:273;3|5:19|6:274;p;1|1:149|11:45|3:275|4:276|17:277|9:278|24:70|12:70|13:70|'
- ..'11:45|11:45;n;12|21:279|23:70;5|5:280|6:281;p;1|1:149|11:45|3:282|4:188|17:283|9:284|13:70|11:45|11:45;n;12|23:70;p;1|1:149|11:45|3:285|4:229|17:286|9:287|13:70|11:45|11:45;n;12|23:70;3|5:157|6:288;3|5:157|6:289;5|5:290|'
- ..'6:291;5|5:157|6:292;p;1|1:149|11:45|3:293|4:188|17:294|9:295|13:70|11:45|11:45;n;12|23:70;p;1|11:45|3:296|4:297|17:298|9:299|11:45|11:45;n;3|5:300|6:301;3|5:300|6:302;3|5:300|6:303;3|5:157|6:304;p;1|1:149|11:136|3:305|4:'
- ..'306|17:307|9:308|24:70|12:171|13:48|11:136|11:136;n;12|23:70;3|5:309|6:310;5|5:311|6:312;5|5:311|6:313;p;1|11:136|3:314|4:315|17:316|9:317|11:136|11:136;n;5|5:318|6:319;5|5:320|6:321;3|5:322|6:323;p;1|1:149|11:45|3:324|4'
- ..':325|17:326|9:327|13:48|11:45|11:45;n;12|23:70;p;1|1:149|11:136|3:328|4:329|17:330|9:331|24:70|12:70|13:70|11:136|11:136;n;12|23:70;p;1|1:149|11:136|3:332|4:333|17:334|9:331|24:70|12:70|13:70|11:136|11:136;n;12|23:70;5|5'
- ..':13|6:335;p;1|1:149|11:45|3:336|4:162|17:337|9:338|12:70|13:70|11:45|11:45;n;5|5:245|6:339;5|5:245|6:340;5|5:245|6:341;5|5:165|6:342;p;1|1:149|11:136|3:343|4:344|17:345|9:346|12:70|13:70|11:136|11:136;n;12|23:70;5|5:347|'
- ..'6:348;p;1|11:136|3:349|4:350|17:351|9:352|13:48|11:136|11:136;1|1:149|11:136|15:150|3:353|4:354|17:355|9:356|24:70|13:70|11:136|11:136;n;12|23:70;p;1|1:149|11:136|15:150|3:357|4:358|17:359|9:360|24:70|13:70|11:136|11:136'
- ..';n;12|23:70;p;1|1:149|11:136|15:150|3:361|4:362|17:363|9:356|24:70|13:70|11:136|11:136;n;12|23:70;3|5:364|6:365;5|5:225|6:366;p;1|1:149|11:136|15:150|3:367|4:368|17:369|9:370|24:70|13:70|11:136|11:136;n;12|23:70;5|5:155|'
- ..'6:371;p;1|1:149|11:136|15:150|3:372|4:373|17:374|9:360|24:70|13:70|11:136|11:136;n;12|23:70;3|5:118|6:375;p;1|1:149|11:136|15:150|3:376|4:193|17:377|9:370|24:70|13:70|11:136|11:136;n;12|23:70;p;1|11:136|3:378|4:379|17:38'
- ..'0|9:381|24:70|11:136|11:136;n;5|5:382|6:383;3|5:384|6:385;3|5:39|6:386;5|5:155|6:387;p;1|1:149|11:136|3:388|4:344|17:389|9:390|12:70|13:70|11:136|11:136;1|1:149|11:45|3:391|4:162|17:392|9:393|12:70|13:70|11:45|11:45;n;12'
- ..'|23:70;p;1|1:149|11:136|3:394|4:162|17:395|9:396|12:70|13:48|11:136|11:136;1|1:149|11:45|3:397|4:162|17:398|9:399|12:70|13:48|11:45|11:45;1|1:149|11:136|3:400|4:344|17:401|9:402|12:70|13:70|11:136|11:136;n;5|5:347|6:403;'
- ..'p;1|1:149|11:45|3:404|4:405|17:406|9:164|12:70|13:70|11:45|11:45;n;12|23:70;p;1|1:149|11:45|3:407|4:408|17:409|9:338|12:70|13:70|11:45|11:45;n;5|5:245|6:410;5|5:245|6:411;5|5:165|6:412;p;1|1:149|11:136|3:413|4:414|17:415'
- ..'|9:390|12:70|13:70|11:136|11:136;1|1:149|11:136|3:416|4:417|17:418|9:346|12:70|13:70|11:136|11:136;n;12|23:70;5|5:347|6:419;p;1|1:149|11:45|3:420|4:405|17:421|9:393|12:70|13:70|11:45|11:45;n;12|23:70;5|5:422|6:423;p;1|1:'
- ..'149|11:136|3:424|4:405|17:425|9:396|12:70|13:48|11:136|11:136;1|1:149|11:136|3:426|4:427|17:428|9:402|12:70|13:70|11:136|11:136;n;5|5:429|6:430;p;1|1:149|11:45|3:431|4:408|17:432|9:399|12:70|13:48|11:45|11:45;1|1:149|11:'
- ..'45|3:433|4:215|17:434|9:435|24:70|12:70|13:70|11:45|11:45;n;12|21:279|23:436;5|5:225|6:437;5|5:280|6:438;5|5:439|6:440;p;1|1:149|11:45|3:441|4:442|17:443|9:444|24:70|12:70|13:70|11:45|11:45;n;12|21:279|23:70;p;1|1:149|3:'
- ..'445|4:188|17:446|9:447|27:448|13:70;n;12|23:70;5|5:290|6:449;p;11|1:120|20:450;11|1:120|20:451;11|1:120|20:452;11|1:120|20:453;11|1:120|20:454;11|1:120|20:455;11|1:120|20:456;11|1:120|20:457;11|1:120|20:458;11|1:120|20:4'
- ..'59;11|1:120|20:460;11|1:120|20:461;11|1:120|20:462;11|1:120|20:463;11|1:120|20:464;11|1:120|20:465;11|1:120|20:464;11|1:120|20:465;11|1:120|20:464;11|1:120|20:465;11|1:120|20:464;11|1:120|20:466;1|1:467|11:45|15:2|3:468|'
- ..'4:469|17:470|9:471|27:448|12:48|28:70|26:70|13:48|11:45|11:45;n;5|5:472|6:473;p;2;n;1|1:149|11:114|3:474|4:138|17:475|9:476|13:48|11:114|11:114;n;12|21:477|23:171;5|5:118|6:478;p;1|11:114|3:479|4:173|17:480|9:481|25:70|1'
- ..'2:48|26:70|13:48|11:114|11:114;n;5|5:482|6:483;p;1|11:45|3:484|4:173|17:485|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n;5|5:110|6:487;5|5:488|6:489;p;1|11:45|3:490|4:173|17:491|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n'
- ..';5|5:488|6:489;p;1|11:45|3:492|4:173|17:493|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n;5|5:110|6:494;5|5:488|6:495;p;1|1:496|11:45|3:497|4:173|17:498|9:486|25:70|12:48|26:70|13:48|11:45|11:45;1|11:114|3:499|4:173|17:500'
- ..'|9:481|25:70|12:70|26:70|13:48|11:114|11:114;n;5|5:501|6:502;5|5:503|6:504;5|5:505|6:506;5|5:507|6:508;5|5:503|6:509;p;1|11:114|3:510|4:173|17:511|9:481|25:70|12:48|26:70|13:48|11:114|11:114;1|11:45|3:512|4:173|17:513|9:'
- ..'486|25:70|12:48|28:70|26:70|13:48|11:45|11:45;1|1:496|11:114|3:514|4:173|17:515|9:481|25:70|12:48|26:70|13:48|11:114|11:114;n;5|5:505|6:516;p;1|11:45|3:517|4:173|17:518|9:486|25:70|12:48|26:70|13:48|11:45|11:45;1|11:45|3'
- ..':519|4:173|17:520|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n;5|5:488|6:521;p;1|1:149|11:45|3:522|4:138|17:523|9:524|13:48|11:45|11:45;n;12|21:525|23:171;5|5:118|6:526;p;1|1:496|11:45|3:527|4:173|17:528|9:486|25:70|12:48'
- ..'|26:70|13:48|11:45|11:45;n;5|5:110|6:487;5|5:488|6:489;p;1|11:45|3:529|4:173|17:530|9:486|25:70|24:70|12:48|26:70|13:48|11:45|11:45;n;5|5:488|6:531;p;1|11:45|3:532|4:173|17:533|9:486|25:70|12:48|26:70|13:48|11:45|11:45;n'
- ..';5|5:488|6:495;p;1|1:149|11:45|3:534|4:535|17:536|9:524|12:48|13:48|11:45|11:45;n;12|21:525|23:171;p;p;1|1:537|11:45|15:2|3:538|4:539|17:540|9:471|27:448|12:48|28:70|26:70|13:48|11:45|11:45;11|1:120|20:541;11|1:120|20:54'
- ..'2;11|1:120|20:543;11|1:120|20:544;11|1:120|20:545;11|1:120|20:546;11|1:120|20:547;11|1:120|20:548;11|1:120|20:549;11|1:120|20:550;11|1:120|20:551;11|1:120|20:552;11|1:120|20:553;11|1:120|20:554;11|1:120|20:555;11|1:120|2'
- ..'0:556;11|1:120|20:557;11|1:120|20:558;11|1:120|20:559;11|1:120|20:558;11|1:120|20:559;11|1:120|20:558;11|1:120|20:559;11|1:120|20:558;11|1:120|20:560;11|1:120|20:561;11|1:120|20:561;1|11:85|3:562|4:138|17:563|9:564|24:70'
- ..'|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:566;p;1|11:85|3:567|4:138|17:568|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:569;p;1|11:85|3:570|4:138|17:571|9:564|24:70|12:70|28:70|16:70|26:'
- ..'70|13:70|11:85|11:85;n;5|5:565|6:572;p;1|11:85|3:573|4:138|17:574|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:575;p;1|11:85|3:576|4:138|17:577|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;1'
- ..'|11:85|3:578|4:138|17:579|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:580;p;1|11:85|3:581|4:138|17:582|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:583;p;1|11:85|3:584|4:138|17:'
- ..'585|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:586;p;1|11:85|3:587|4:138|17:588|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:589;p;1|11:85|3:590|4:138|17:591|9:564|24:70|12:70|'
- ..'28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:592;p;1|11:85|3:593|4:138|17:594|9:564|24:70|12:70|28:70|16:70|26:70|13:70|11:85|11:85;n;5|5:565|6:595;p;11|1:120|20:596;11|1:120|20:597;11|1:120|20:598;11|1:120|20:599;p;4'
- ..';7|1:600;7|1:601;p;13|1:602;n;13|1:602;n;4;n;2|1:602;n;4|1:603;4|1:604;p;p;p;p;p;')
- for _,Object in pairs(Objects) do
- Object.Parent = script and script.Parent==workspace and script or workspace
- end
- for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement