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: 64440
- local genv={}
- local Scripts = {
- function() function myfunction()
- script.Parent.Parent.Door.Transparency = 0.7 --As you can see, I typed script(that is the script.), And 2 times Parent. That means: the Parent
- script.Parent.Parent.Door.CanCollide = false --(Look at properties, and then at Data,There you see: Parent, So: a Parent of a brick, Is the model/thing it is in.)
- --For example: You have a brick in Workspace, Then Workspace is the parent,(cus the brick is in the "Model" called Workspace.
- -- So the 2 times Parent means: The Parent, Of the Parent.
- end
- script.Parent.ClickDetector.MouseClick:connect(myfunction) end;
- function() function myfunction()
- script.Parent.Parent.Door.Transparency = 0.7 --As you can see, I typed script(that is the script.), And 2 times Parent. That means: the Parent
- script.Parent.Parent.Door.CanCollide = false --(Look at properties, and then at Data,There you see: Parent, So: a Parent of a brick, Is the model/thing it is in.)
- --For example: You have a brick in Workspace, Then Workspace is the parent,(cus the brick is in the "Model" called Workspace.
- -- So the 2 times Parent means: The Parent, Of the Parent.
- end
- script.Parent.ClickDetector.MouseClick:connect(myfunction) end;
- function() function myfunction()
- script.Parent.Parent.Door.Transparency = 0 --As you can see, I typed script(that is the script.), And 2 times Parent. That means: the Parent
- script.Parent.Parent.Door.CanCollide = true --(Look at properties, and then at Data,There you see: Parent, So: a Parent of a brick, Is the model/thing it is in.)
- --For example: You have a brick in Workspace, Then Workspace is the parent,(cus the brick is in the "Model" called Workspace.
- -- So the 2 times Parent means: The Parent, Of the Parent.
- end
- script.Parent.ClickDetector.MouseClick:connect(myfunction) end;
- function() function myfunction()
- script.Parent.Parent.Door.Transparency = 0 --As you can see, I typed script(that is the script.), And 2 times Parent. That means: the Parent
- script.Parent.Parent.Door.CanCollide = true --(Look at properties, and then at Data,There you see: Parent, So: a Parent of a brick, Is the model/thing it is in.)
- --For example: You have a brick in Workspace, Then Workspace is the parent,(cus the brick is in the "Model" called Workspace.
- -- So the 2 times Parent means: The Parent, Of the Parent.
- end
- script.Parent.ClickDetector.MouseClick:connect(myfunction) end;
- function() -- HoverSeat script by TankLeadfoot
- local SavedYPosition = script.Parent.Position.Y
- local Speed = 0
- while (script.Parent:findFirstChild("CanFly") == nil) do wait(0.1) end
- while (script.Parent:findFirstChild("VMode") == nil) do wait(0.1) end
- script.Parent.CanFly.Value = "Yes"
- script.Parent.VMode.Value = "Hover"
- if (script.Parent:findFirstChild("BodyPosition") == nil) then
- p = Instance.new("BodyPosition")
- p.Name = "BodyPosition"
- p.maxForce = Vector3.new(math.huge,math.huge,math.huge)
- p.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
- p.Parent = script.Parent
- end
- if (script.Parent:findFirstChild("BodyGyro") == nil) then
- g = Instance.new("BodyGyro")
- g.Name = "BodyGyro"
- g.maxTorque = Vector3.new(math.huge,math.huge,math.huge)
- g.cframe = script.Parent.CFrame
- g.Parent = script.Parent
- end
- while true do
- if (script.Parent:findFirstChild("CanFly") ~= nil) then
- if (script.Parent.CanFly.Value == "Yes") then
- if (script.Parent.Throttle ~= 0) then
- if (script.Parent.Throttle > 0) then
- if (Speed < script.Parent.MaxSpeed) then
- Speed = Speed + 1
- end
- elseif (script.Parent.Throttle < 0) then
- if (-Speed < script.Parent.MaxSpeed) then
- Speed = Speed - 1
- end
- end
- script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * Speed/4
- elseif (script.Parent.Throttle == 0) then
- if (Speed ~= 0) then
- if (Speed > 0) then
- Speed = Speed - 1
- elseif (Speed < 0) then
- Speed = Speed + 1
- end
- script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * Speed/4
- elseif (Speed == 0) then
- script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
- end
- end
- if (script.Parent.Steer > 0) then
- script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe * CFrame.fromEulerAnglesXYZ(0,-0.05, 0)
- elseif (script.Parent.Steer < 0) then
- script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe * CFrame.fromEulerAnglesXYZ(0,0.05, 0)
- elseif (script.Parent.Steer == 0) then
- script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe
- end
- if (script.Parent:findFirstChild("VMode") ~= nil) then
- if (script.Parent.VMode.Value == "Up") then
- SavedYPosition = SavedYPosition + 1
- elseif (script.Parent.VMode.Value == "Down") then
- SavedYPosition = SavedYPosition - 1
- end
- end
- elseif (script.Parent.CanFly.Value == "No") then
- if (Speed ~= 0) then
- Speed = 0
- script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
- end
- end
- end
- wait(0.1)
- end
- end;
- function() -- HoverSeatGUI script by TankLeadfoot
- local Lock = nil
- while (script.Parent:findFirstChild("CanFly") == nil) do wait(0.1) end
- while (script.Parent:findFirstChild("VMode") == nil) do wait(0.1) end
- script.Parent.CanFly.Value = "Yes"
- script.Parent.VMode.Value = "Hover"
- function SelectedButton(hit)
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
- if (script.Parent.VMode.Value == "Up") then
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.BackgroundColor3 = Color3.new(1,1,0.8)
- elseif (script.Parent.VMode.Value == "Down") then
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.BackgroundColor3 = Color3.new(1,1,0.8)
- elseif (script.Parent.VMode.Value == "Hover") then
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.BackgroundColor3 = Color3.new(1,1,0.8)
- elseif (script.Parent.VMode.Value == "AllStop") then
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.BackgroundColor3 = Color3.new(1,1,0.8)
- end
- end
- function Pilot(hit)
- if (Lock == nil) then
- Lock = true
- if (hit == nil) then Lock = nil; return end
- if (hit.Parent:findFirstChild("Humanoid") == nil) then Lock = nil; return end
- if (game.Players:findFirstChild(hit.Parent.Name) == nil) then Lock = nil; return end
- wait(2)
- if (script.Parent:findFirstChild("CanFly") ~= nil) then
- script.Parent.CanFly.Value = "Yes"
- end
- if (script.Parent:findFirstChild("VMode") ~= nil) then
- script.Parent.VMode.Value = "Hover"
- end
- if (game.Players:findFirstChild(hit.Parent.Name).PlayerGui:findFirstChild("HoverSeat") == nil) then
- script.HoverSeat:Clone().Parent = game.Players:findFirstChild(hit.Parent.Name).PlayerGui
- SelectedButton(hit)
- end
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.MouseButton1Click:connect(function()
- if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
- if (script.Parent.CanFly.Value == "Yes") then
- script.Parent.VMode.Value = "Up"
- SelectedButton(hit)
- end
- end
- end)
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.MouseButton1Click:connect(function()
- if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
- if (script.Parent.CanFly.Value == "Yes") then
- script.Parent.VMode.Value = "Down"
- SelectedButton(hit)
- end
- end
- end)
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.MouseButton1Click:connect(function()
- if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
- script.Parent.VMode.Value = "Hover"
- script.Parent.CanFly.Value = "Yes"
- SelectedButton(hit)
- end
- end)
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.MouseButton1Click:connect(function()
- if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
- script.Parent.VMode.Value = "AllStop"
- script.Parent.CanFly.Value = "No"
- SelectedButton(hit)
- end
- end)
- while (hit.Parent.Humanoid.Health > 0) and (hit.Parent.Humanoid.Sit == true) do wait(0.1) end
- if (game.Players:findFirstChild(hit.Parent.Name).PlayerGui:findFirstChild("HoverSeat") ~= nil) then
- game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat:Remove()
- end
- if (script.Parent:findFirstChild("CanFly") ~= nil) then
- script.Parent.CanFly.Value = "No"
- end
- Lock = nil
- end
- end
- script.Parent.Touched:connect(Pilot)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() function stick(x, y)
- weld = Instance.new("Weld")
- weld.Part0 = x
- weld.Part1 = y
- local HitPos = x.Position
- local CJ = CFrame.new(HitPos)
- local C0 = x.CFrame:inverse() *CJ
- local C1 = y.CFrame:inverse() * CJ
- weld.C0 = C0
- weld.C1 = C1
- weld.Parent = x
- end
- function onTouched(part)
- local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
- if h~=nil then
- wait(0.001)
- h.Health = 0
- children = h.Parent:children()
- part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
- part.Parent:findFirstChild("Head").Anchored = true
- part.Parent:findFirstChild("Torso").Anchored = true
- part.Parent:findFirstChild("Left Arm").Anchored = true
- part.Parent:findFirstChild("Right Arm").Anchored = true
- part.Parent:findFirstChild("Left Leg").Anchored = true
- part.Parent:findFirstChild("Right Leg").Anchored = true
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 1
- part.Parent:findFirstChild("Torso").Reflectance = 1
- part.Parent:findFirstChild("Left Arm").Reflectance = 1
- part.Parent:findFirstChild("Right Arm").Reflectance = 1
- part.Parent:findFirstChild("Left Leg").Reflectance = 1
- part.Parent:findFirstChild("Right Leg").Reflectance = 1
- wait(0.1)
- part.Parent:findFirstChild("Head").Reflectance = 0
- part.Parent:findFirstChild("Torso").Reflectance = 0
- part.Parent:findFirstChild("Left Arm").Reflectance = 0
- part.Parent:findFirstChild("Right Arm").Reflectance = 0
- part.Parent:findFirstChild("Left Leg").Reflectance = 0
- part.Parent:findFirstChild("Right Leg").Reflectance = 0
- wait(0.1)
- part.Parent:findFirstChild("Head").Anchored = false
- part.Parent:findFirstChild("Torso").Anchored = false
- part.Parent:findFirstChild("Left Arm").Anchored = false
- part.Parent:findFirstChild("Right Arm").Anchored = false
- part.Parent:findFirstChild("Left Leg").Anchored = false
- part.Parent:findFirstChild("Right Leg").Anchored = false
- for i=1,#children do
- if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
- if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
- end
- end
- end
- script.Parent.Touched:connect(onTouched)
- end;
- function() -- Server scripts can NOT be decompiled
- end;
- function() -- Server scripts can NOT be decompiled
- end;
- function() -- Server scripts can NOT be decompiled
- end;
- function() -- Server scripts can NOT be decompiled
- end;
- function() local BrickTable = {}
- function RecursiveGeneric(Parent, Func, ClassLimit)
- for _, Child in pairs(Parent:GetChildren()) do
- if not ClassLimit or Child:IsA(ClassLimit) then
- Func(Child)
- end
- RecursiveGeneric(Child, Func, ClassLimit)
- end
- end
- RecursiveGeneric(
- script.Parent,
- function(Brick) table.insert(BrickTable, Brick) end,
- "BasePart"
- )
- local Base = BrickTable[1]
- table.remove(BrickTable, 1)
- for _, Part in pairs(BrickTable) do
- local Weld = Instance.new("Weld")
- Weld.Part0 = Base
- Weld.Part1 = Part
- Weld.C1 = Part.CFrame:inverse() * Base.CFrame
- Weld.Parent = Base
- Part.Anchored = false
- end
- Base.Anchored = false 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
- local Part_Classes = {"Part","WedgePart","CornerWedgePart"}
- local Part_Shapes = {"Brick","Cylinder","Sphere","Torso","Wedge"}
- function DecodeUnion(t)
- local r = function()return table.remove(t,1) end
- local split = function(str,sep)
- local fields = {}
- str:gsub(("([^%s]+)"):format(sep or ','),function(c)fields[#fields+1]=c end)
- return fields
- end
- local m = Instance.new("Folder")
- m.Name = "UnionCache ["..tostring(math.random(1,9999)).."]"
- m.Archivable = false
- m.Parent = game:GetService("ServerStorage")
- local Union,Subtract = {},{}
- repeat
- local isNegate = false
- local class = r()
- if class=='-' then
- isNegate = true
- class = r()
- end
- if class=='n' then
- local d = {}
- local a = r()
- repeat
- table.insert(d,a)
- a = r()
- until a=='p'
- local u = DecodeUnion(d)
- if u then
- table.insert(isNegate and Subtract or Union,u)
- end
- else
- local size,pos,rot = Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
- local part = Instance.new(Part_Classes[tonumber(class)])
- part.Size = size
- part.Position = pos
- part.Orientation = rot
- if r()=="+" then
- local m,ms,of = r(),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
- if tonumber(m)==6 then
- part.Shape = Enum.PartType.Cylinder
- elseif tonumber(m)==7 then
- part.Shape = Enum.PartType.Ball
- else
- local mesh = Instance.new(tonumber(m)==8 and "CylinderMesh" or "SpecialMesh")
- if tonumber(m)~=8 then
- mesh.MeshType = Enum.MeshType[Part_Shapes[tonumber(m)]]
- end
- mesh.Scale = ms
- mesh.Offset = of
- mesh.Parent = part
- end
- end
- table.insert(isNegate and Subtract or Union,part)
- end
- until #t<=0
- local first = Union[1]
- first.Parent = m
- if #Union>1 then
- first = first:UnionAsync(Union)
- first.Parent = m
- end
- if #Subtract>0 then
- first = first:SubtractAsync(Subtract)
- first.Parent = m
- end
- first.Parent = nil
- m:Destroy()
- return first
- 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,Color,Position,Orientation,Size,Offset,C0,C1,Part0,Part1,Velocity,BottomSurface,TopSurface,Material,Transparency,Reflectance,Scale,MeshType,UnionData,CanCollide,Texture,LightInfluence,Speed,LightEmission,Lifetime,Rate,RotSpeed,Shape,RightSurface,BackSurface,Torque,MaxSpeed,BackgroundColor3,BackgroundTransparency,BorderSizePixel,SizeConstraint,Text,TextColor3,Value,FrontSurface,LeftSurface,Range,UsePartColor,Loop'
- ..'ed,SoundId,Volume,Face,CanvasSize,Active,AnchorPoint,BorderColor3,Font,TextScaled,TextSize,TextTransparency,TextWrapped,TextXAlignment,PlaybackSpeed;Part,Model,BlockMesh,Snap,Script,ClickDetector,WedgePart,CylinderMesh,SpecialMesh,UnionOperation,ParticleEmitter,VehicleSeat,ScreenGui,Frame,TextButton,StringValue,MeshPart,PointLight,ManualWeld,Decal,Sound,ReverbSoundEffect,SurfaceGui,TextLabel;Part|Door|1|0.3882,0.3725,0.3843|2'
- ..'6.4768,8.8881,-34.799|0,90,0|4.981,7.9697,0.8301|0,0.05,0|0,3.9848,0,-1,0,0,0,0,1,0,1,-0|0,-0.4982,0,-1,0,0,0,0,1,0,1,-0|Frame|26.4768,8.8881,-31.8934|-0.0042,0.0069,-0.0128|0.8301,7.9697,0.8301|-2.9057,-0.4982,0,-1,0,0,0,0,1,0,1,-0|26.4768,8.8881,-37.7046|-0.0046,0.0053,-0.015|2.9056,-0.4982,0,-1,0,0,0,0,1,0,1,-0|26.4767,13.3711,-34.799|-0.0051,0.0061,-0.0254|6.6414,0.9962,0.8301|Open1|0.2941,0.5921,0.2941|25.8956,9.4636,-31'
- ..'.8934|89.8099,93.22,2.7899|0.8301,0.332,0.8301|0|Open2|27.0579,9.4692,-37.7046|89.8099,93.22,2.75|Close2|0.7686,0.1568,0.1098|25.8956,8.6391,-31.8934|89.8099,93.22,-177.25|Close1|27.0579,8.6391,-37.7046|0.6235,0.6313,0.6745|1088|-24.8829,15.94,-41.1431|-89.4701,-179.9701,11.8299|3.4049,0.2,0.4097|-24.8829,16.5949,-41.1488|89.4599,0.0299,78.1699|0.2,3.4049,0.9|-24.8829,14.3352,-41.1291|0.1,101.86,179.5099|0.2,2.7999,3.4049|-25'
- ..'.0182,13.1902,-41.1186|-89.46,-179.9701,10.97|3.6674,0.2,0.5097|-25.0373,13.3442,-41.2181|0,90,-90.5|0.2,0.6999,3.6|0.0666,0.0666,0.0666|1568|0.4|-25.0077,16.533,-41.1732|-29.3701,86.25,-135.56|0.2,1.3448,3.5286|0.3568,0.3647,0.4117|11.9693,12.23,-22.892|53.0099,180,180|0.2594,1.1127,1.4772|11.9693,9.181,-25.1887|-53.01,0,-180|0.2594,1.1127,6.1571|0.1939,6.3478,-41.4714|23.8102,1.4179,0.4665|0.1939,6.3478,-27.7187|0.2|-6.2036'
- ..',15.1091,-42.3053|-89.81,-86.78,-2.27|0.4077,1.631,0.4077|0.5,1.25,0.5|-6.2036,14.2936,-42.3054|0.25,1.33,0.25|-6.2036,14.7014,-42.3053|-6.2036,13.8859,-42.3054|-4.1649,15.1091,-42.3232|-4.1649,14.7014,-42.3232|-4.1649,14.2936,-42.3232|-4.1649,13.8859,-42.3232|-2.1261,15.1092,-42.3409|-2.1261,14.7014,-42.341|-2.1261,14.2936,-42.341|-2.1261,13.8859,-42.341|-0.0873,15.1092,-42.3587|-0.0873,14.7014,-42.3588|-0.0873,14.2936,-42.3'
- ..'588|-0.0873,13.8859,-42.3588|-7.2231,14.2936,-42.2966|0,90.5,0|0.4077,1.2232,0.4077|0.5,1.33,0.5|-7.2231,15.1091,-42.2966|0.4077,0.4077,0.4077|0.5,0.5,0.5|3|-7.2194,13.8859,-41.8888|1,-0.5,0|1,0.25,1|-5.1842,14.2936,-42.3144|0,-89.5,0|-5.1808,13.8859,-41.9065|0.75,0.25,0.75|-3.1455,14.2936,-42.3321|-3.1419,13.8859,-41.9243|-1.1067,14.2936,-42.3499|-1.1032,13.8859,-41.9422|0.9319,14.2937,-42.3676|0.9319,15.1092,-42.3676|0.9356'
- ..',13.8859,-41.9599|-7.2565,15.1091,-35.2682|-89.81,-86.78,88.73|-7.2565,14.2936,-35.2682|-7.2565,14.7014,-35.2682|-7.2565,13.8858,-35.2682|-7.3099,15.1091,-37.3063|-7.3099,14.7014,-37.3063|-7.3098,14.2936,-37.3064|-7.3098,13.8858,-37.3064|-7.3632,15.1091,-39.3445|-7.3632,14.7014,-39.3445|-7.3632,14.2936,-39.3445|-7.3632,13.8858,-39.3445|-7.4166,15.1091,-41.3827|-7.4166,14.7014,-41.3827|-7.4166,14.2936,-41.3827|-7.4166,13.8858,'
- ..'-41.3827|-7.23,14.2936,-34.2491|0,-178.5,0|-7.23,15.1091,-34.2491|-6.8222,13.8858,-34.2599|-7.2833,14.2936,-36.2873|0,1.5,0|-6.8756,13.8859,-36.298|-7.3366,14.2936,-38.3255|-6.9288,13.8859,-38.3362|-7.3899,14.2936,-40.3634|-6.9824,13.8859,-40.3742|-7.4431,14.2936,-42.4015|-7.4432,15.1091,-42.4015|-7.0356,13.8859,-42.4123|6.4043,15.1092,-27.2439|-89.81,-86.78,178.25|6.4043,14.2937,-27.2439|6.4043,14.7014,-27.2439|6.4043,13.885'
- ..'9,-27.2439|4.3657,15.1092,-27.2082|4.3657,14.7014,-27.2082|4.3657,14.2937,-27.2082|4.3657,13.8859,-27.2082|2.3272,15.1092,-27.1726|2.3272,14.7014,-27.1726|2.3272,14.2937,-27.1726|2.3272,13.8859,-27.1726|0.2887,15.1092,-27.137|0.2887,14.7014,-27.137|0.2887,14.2936,-27.137|0.2887,13.8859,-27.137|7.4235,14.2937,-27.2615|0,-89,0|7.4235,15.1092,-27.2615|7.4164,13.8859,-27.6692|5.385,14.2937,-27.226|0,91,0|5.3779,13.8859,-27.6337|3'
- ..'.3464,14.2937,-27.1904|3.3394,13.8859,-27.5981|1.308,14.2937,-27.1548|1.3008,13.8859,-27.5625|-0.7306,14.2936,-27.1192|-0.7306,15.1092,-27.1192|-0.7377,13.8859,-27.527|-1.4462,9.0348,-40.6164|0.3089,6.0237,0.3089|-7.6242,9.0347,-40.5625|-7.6,9.0347,-37.7823|1 0.3089,0.1544,5.8693 -4.519,10.5793,-38.7359 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5163,10.5793,-38.427 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8'
- ..'693 -4.5325,10.5793,-40.2804 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5271,10.5793,-39.6626 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5298,10.5793,-39.9715 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -1.5885,10.5793,-39.2248 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.5109,10.5793,-37.8092 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5136,10.5793,-38.1181 0,90.5,0 + 1 '
- ..'0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -4.5231,10.5793,-39.1992 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.5352,10.5793,-40.5893 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5217,10.5793,-39.0448 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5244,10.5793,-39.3537 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -7.4576,10.5793,-39.1736 0,-179.5,0 + 1 0.5,0.5,1 0,0,0|-1.422,9.0348,-37.8362|1'
- ..' 0.3089,0.1544,5.8693 -4.519,11.9694,-38.7359 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5163,11.9694,-38.427 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5325,11.9694,-40.2804 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5271,11.9694,-39.6626 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5298,11.9694,-39.9715 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -1.5885,11.9694,-39.2248'
- ..' 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.5109,11.9694,-37.8092 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5136,11.9694,-38.1181 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -4.5231,11.9694,-39.1992 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.5352,11.9694,-40.5893 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5217,11.9694,-39.0448 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0'
- ..'.1544,5.8693 -4.5244,11.9694,-39.3537 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -7.4576,11.9694,-39.1736 0,-179.5,0 + 1 0.5,0.5,1 0,0,0|1 0.3089,0.1544,5.8693 -4.519,7.7991,-38.736 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5163,7.7991,-38.4271 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5325,7.7991,-40.2804 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5271,7.7991,-39.6627 0,90.5,0 +'
- ..' 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5298,7.7991,-39.9716 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -1.5885,7.7991,-39.2249 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.5109,7.7991,-37.8093 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5136,7.7991,-38.1182 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -4.5231,7.7991,-39.1993 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.'
- ..'5352,7.7991,-40.5893 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5217,7.7991,-39.0449 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5244,7.7991,-39.3538 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -7.4576,7.7991,-39.1737 0,-179.5,0 + 1 0.5,0.5,1 0,0,0|1 0.3089,0.1544,5.8693 -4.519,9.1892,-38.7359 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5163,9.1892,-38.427 0,90.5,0 + 1 0.5,0.5,1 0,0,0'
- ..' 1 0.3089,0.1544,5.8693 -4.5325,9.1892,-40.2804 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5271,9.1892,-39.6626 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5298,9.1892,-39.9715 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -1.5885,9.1892,-39.2248 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.5109,9.1892,-37.8092 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5136,9.1892,-38.1181'
- ..' 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -4.5231,9.1892,-39.1992 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.5352,9.1892,-40.5893 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5217,9.1892,-39.0448 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5244,9.1892,-39.3537 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -7.4576,9.1892,-39.1736 0,-179.5,0 + 1 0.5,0.5,1 0,0,0|1 0.3089,0.1544'
- ..',5.8693 -4.519,6.409,-38.736 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5163,6.409,-38.4271 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5325,6.409,-40.2804 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5271,6.409,-39.6627 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5298,6.409,-39.9716 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -1.5885,6.409,-39.2249 0,-179.5,0 + 1 0.5,0.5,1 '
- ..'0,0,0 1 0.3089,0.1544,6.1782 -4.5109,6.409,-37.8093 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5136,6.409,-38.1182 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -4.5231,6.409,-39.1993 0,-179.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,6.1782 -4.5352,6.409,-40.5893 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5217,6.409,-39.0449 0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,5.8693 -4.5244,6.409,-39.3538 '
- ..'0,90.5,0 + 1 0.5,0.5,1 0,0,0 1 0.3089,0.1544,2.7802 -7.4576,6.409,-39.1737 0,-179.5,0 + 1 0.5,0.5,1 0,0,0|1056|-6.0897,13.7693,-30.6645|0,-90,0|5.0124,0.2227,1.6708|-5.533,13.3237,-32.8923|0.5569,0.6683,0.5569|-5.5328,13.3237,-28.4367|-4.9759,12.8782,-30.6643|-4.419,12.4326,-32.8921|-4.4189,12.4326,-28.4367|-3.862,11.9871,-30.6644|-3.305,11.5415,-32.8923|-3.305,11.5415,-28.4367|-2.7481,11.096,-30.6644|-2.1912,10.6504,-32.8922'
- ..'|-2.1911,10.6504,-28.4367|-1.6343,10.2049,-30.6644|0.0366,8.8682,-32.8923|0.0366,8.8682,-28.4367|0.5936,8.4227,-30.6645|-1.0773,9.7593,-32.8921|-1.0773,9.7593,-28.4367|-0.5202,9.3138,-30.6644|1.1506,7.9771,-32.8922|1.1505,7.9771,-28.4366|1.7075,7.5316,-30.6644|2.2644,7.086,-32.8922|2.2644,7.086,-28.4367|2.8214,6.6405,-30.6645|3.3783,6.1949,-32.8923|3.3783,6.1949,-28.4366|3.9352,5.7494,-30.6644|11.9447,11.8467,-23.4104|45.5299'
- ..',180,-15.1401|0.2,0.4425,0.5692|3.0481,4.7048,-34.5763|29.394,1.5552,13.9971|12.6907,9.1373,-41.3416|9.798,8.5538,0.4665|22.0988,9.1373,-40.5641|0,-11.5,0|9.9535,8.5538,0.4665|3.1259,4.8603,-34.5763|29.2385,1.5552,13.6861|Fire|FireBrick|24.3085,13.5899,-24.9707|0,0,-88|0.2789,0.0648,0.2789|0|0,1,1,0,1,1,0,0|0,1,0,0.0642,0.2249,0,0.814,0.3312,0,1,1,0|0,4.6875,0,1,1,0|rbxasset://textures/particles/smoke_main.dds|10,10|1.5,1.5|1'
- ..'0|20,20|3.0481,3.7966,-39.9771|0,-90,-33.69|2.8037,1.5552,29.394|-6.7499,9.1372,-27.8112|-11.1045,9.1371,-29.2885|0.7776,8.5538,3.1104|-11.1045,9.1371,-32.3989|26.1076,8.8881,-30.7772|89.8099,93.22,-176.6901|1.4168,1.5552,7.9697|-6.5943,9.1372,-41.3416|-11.1045,9.1371,-40.0973|0.7776,8.5538,2.9549|3.0482,9.1372,-41.3416|22.3332,4.8604,-34.7317|0,0,-180|9.176,1.5552,9.0203|12.6907,9.1373,-27.8112|3.0481,3.1496,-34.5763|29.394,'
- ..'1.5552,9.3314|-11.1045,9.1371,-36.2868|0.7776,8.5538,5.2878|3.0481,3.7966,-29.1756|0,-90,33.6899|26.1332,8.8881,-38.7551|-89.81,-86.78,175.52|1.2242,1.5552,7.9697|22.1576,9.1373,-28.7322|0,13,0|24.3085,13.5899,-44.4319|22.2554,3.1497,-34.5763|9.3314,1.5552,9.3314|22.2556,4.8604,-34.7317|9.3314,1.5552,9.0204|12.2342,13.1675,-43.7417|-0.5,0,0|9.798,0.5097,5.1373|-6.8382,13.3292,-25.1892|9.798,0.5097,5.9157|17.0371,9.1373,-38.35'
- ..'76|1.1052,8.5538,5.9157|-6.8382,13.164,-44.1309|12.4409,15.9414,-23.2267|89.4599,0.0299,177.6499|9.3496,1.2974,5.6994|19.6354,14.7074,-45.7001|89.4599,0.0299,2.42|6.106,1.5569,3.6235|12.4408,15.8075,-46.0095|9.3496,1.5569,5.8292|12.4354,13.3455,-23.3337|9.3496,1.2974,0.5097|12.2342,13.3271,-25.4487|17.2317,9.1373,-38.3576|0.7159,8.5538,5.9157|19.6604,17.0186,-45.7193|0.5,177.61,-158.45|5.9992,1.2974,1.5568|7.7838,15.7541,-22.'
- ..'6587|0.3267,5.9589,0.4665|2.8927,13.1663,-43.8714|9.798,0.5097,5.6562|22.1309,4.2549,-30.1741|-33.6301,3.8099,-80.5401|1.5552,9.4817,2.1506|22.2245,4.5667,-39.9464|77.15,-10.2601,91.8199|1.5552,9.4494,0.8888|26.9523,3.7105,-30.5306|14.8299,-91.85,172.8|1.5552,2.4059,0.7067|19.8271,14.6408,-23.588|5.7168,1.4271,3.1046|17.8324,13.5889,-25.2916|11.5471,4.8004,8.4332|2|3.0895,9.1372,-27.8112|-1.8821,15.7541,-22.6587|19.6584,5.958'
- ..'9,0.4665|-1.8821,15.7541,-46.7908|22.1975,5.1715,-29.3519|89.8099,92.37,-10.3501|1.5552,9.4586,0.6221|2.9089,13.3483,-23.0097|89.4599,0.0299,178.5099|9.7343,1.2974,0.5097|22.174,3.3225,-39.6671|-77.1501,169.74,-91.82|1.5552,9.4494,1.6634|19.6226,16.9023,-23.5992|0.5,-177.6101,-155.04|6.1528,1.2974,1.4271|17.8325,13.589,-43.8447|2.9003,13.1456,-46.2458|-89.46,-179.9701,-2.33|9.7386,1.2974,0.5097|12.4355,13.149,-45.8567|2.8926,'
- ..'13.3282,-25.3189|26.1333,4.8819,-38.7551|0,178.2599,180|0.311,0.311,0.311|5,0.1376,3.9357|26.2064,4.3939,-39.6597|77.15,-10.2601,0|1.5552,0.3458,1.036|22.2086,5.0325,-29.0078|33.63,-176.1901,80.54|1.5552,9.4817,0.6574|17.417,4.4775,-28.2436|0,103,-173.8201|1.5552,0.9385,0.3399|26.1077,4.8819,-30.7772|-89.81,-87.8601,87.7099|5,4.5551,0.1376|22.3331,3.7967,-39.9771|33.6899,0,-90|1.5552,9.1759,2.8037|26.1076,13.1436,-30.7772|0,-'
- ..'0.5401,0|1.5552,0.5412,1.4168|22.3332,4.8604,-28.9774|0,180,90|1.5552,9.176,2.4883|22.1975,4.3939,-29.3518|-89.81,-87.8001,10.5799|1.5552,9.4586,0.9331|26.1559,3.1497,-39.3805|-77.1501,169.74,0|1.5552,0.3458,1.5162|16.7694,16.9039,-23.4154|24.9599,92.15,179.4499|1.2974,1.1135,0.9692|18.2929,16.1942,-23.4727|-24.96,-87.85,-179.45|1.2974,1.1135,2.3941|22.2376,4.3939,-39.9238|-89.81,-87.78,-12.6801|1.5552,9.4451,0.9331|22.2297,4'
- ..'.4856,-39.931|0,-101.5,-173.23|1.5552,0.9396,9.4445|17.3529,4.4855,-40.9232|0,78.5,173.2299|1.5552,0.9396,0.509|22.2554,2.4663,-30.6825|-14.83,88.15,-172.8001|1.5552,2.4059,9.0159|22.1905,4.4776,-29.3456|0,-77,173.82|1.5552,0.9385,9.458|22.2376,5.1715,-39.9238|89.8099,91.98,12.47|1.5552,9.4451,0.6221|17.9029,17.0168,-45.9223|87.0999,-82.4001,-170|1.2974,2.5739,0.8713|17.8778,16.5173,-45.919|-87.1,97.5999,170|0.2594,0.2594,0.2'
- ..'594|5,9.9192,0.4969|22.3332,4.8604,-40.3305|0,-90,90|1.5552,2.1773,9.176|26.1332,13.1436,-38.7551|89.8099,92.2699,93.6299|1.5552,1.2242,0.5412|22.2294,13.2845,-33.6016|0,-101.5,-90|0.2594,14.0598,6.9213|17.3525,13.2845,-34.5939|0,78.5,90|0.2594,14.0598,3.0321|22.2101,13.2845,-28.5048|0,142.2899,90|0.2594,6.2045,7.5831|27.0028,13.2845,-34.7037|0,-37.71,-90|0.2594,6.2045,8.0879|0.1939,12.4456,-22.6587|0.1939,9.3015,-24.8673|0,-'
- ..'90,-137.23|6.8924,0.2594,23.8102|-20.9034,13.3442,-41.2181|0,-90,90.5|0.2,0.6999,4.6677|-25.0156,13.3033,-28.1508|89.4599,0.0299,-167.4401|3.6878,0.2,0.5097|-19.2201,13.3129,-27.0517|-89.46,-179.9701,170.0399|8.1215,0.2,0.5097|0.0122,13.0341,-43.9176|23.0108,1.2957,4.8636|-9.2646,13.034,-34.7061|4.4576,1.2957,23.5466|9.4891,15.8885,-29.2985|-89.46,-179.9701,-90.03|11.2375,3.2435,5.6991|0.1939,12.4457,-46.7908|-11.5815,9.3995,'
- ..'-24.9581|-48.98,-0.2801,-178.0801|0.2594,0.7471,6.8518|-11.5945,12.4212,-22.33|48.9799,179.72,178.08|0.2594,0.7471,1.1577|-11.6075,13.0749,-25.187|48.9799,179.72,-0.38|0.2594,4.4296,3.9209|-11.5945,10.0532,-27.8151|-48.98,-0.2801,0.3799|0.2594,4.4296,4.0885|16.9494,18.6915,-34.6427|0.14,-180,180|1,0.5011,80.3053|16.9495,12.9924,-34.5929|-0.5,0,-180|1,0.0011,80.3068|15.4572,15.842,-34.6178|20.8385,3.2435,5.6991|0.0122,13.0341,'
- ..'-25.3645|9.4891,15.7927,-40.2614|10.8483,3.2435,5.6991|-19.2373,13.4687,-26.9546|0,90,89.5|0.2,1.4,8|-15.1034,13.4687,-26.9546|0,-90,-89.5|0.2,1.4,0.2677|-23.2373,13.4018,-34.6114|0.1099,-102.53,90.4899|0.2,13.5828,3.0183|-25.0373,13.3983,-35.0114|-0.11,77.47,-90.49|0.2,13.5828,0.6694|-9.3034,13.2466,-34.66|4.8677,0.5097,16.8141|12.4732,13.0284,-45.3372|-0.5,0,-90|0.2594,2.7245,0.6487|12.4732,13.0758,-39.9132|0.5,180,0|2.7245'
- ..',0.2594,10.1996|12.4732,13.1668,-29.4945|0.2594,10.6388,2.7245|-0.0901,-79.2201,90.4899|0.2594,10.9608,0.6855|11.1109,13.1691,-29.235|0.09,100.7799,-90.49|0.2594,10.9608,2.088|-11.4788,5.361,-41.5119|-53.2701,-177.62,-19.7801|0.2594,0.6513,0.7267|-11.5878,8.8845,-44.1387|53.27,2.38,19.78|0.2594,0.6513,8.0657|-11.3637,9.1371,-41.5802|15.9899,-177.62,180|0.2594,8.2228,2.3564|-11.4726,8.3837,-44.2071|-15.99,2.38,-180|0.2594,8.22'
- ..'28,3.1134|0.1939,8.773,-44.2667|0,-90,-48.9001|8.092,0.2594,23.8102|11.9693,9.3968,-25.1887|-42.7701,0,0|0.2594,0.3168,6.5499|0.1939,9.4876,-25.2813|0,90,-135.53|0.2594,6.5575,23.8102|11.9693,11.7367,-22.6588|42.77,180,0|0.2594,0.3168,0.3425|0.0238,15.1092,-42.3597|0.0238,14.2936,-42.3597|0.0238,14.7014,-42.3597|0.0238,13.8859,-42.3597|2.0625,15.1092,-42.3775|2.0625,14.7014,-42.3776|2.0625,14.2937,-42.3776|2.0625,13.8859,-42.'
- ..'3776|4.1013,15.1092,-42.3953|4.1013,14.7014,-42.3953|4.1013,14.2937,-42.3953|4.1013,13.8859,-42.3953|6.1401,15.1092,-42.4131|6.1401,14.7014,-42.4131|6.1401,14.2937,-42.4131|6.1401,13.8859,-42.4131|-0.9957,14.2936,-42.351|-0.9957,15.1092,-42.3509|-0.992,13.8859,-41.9431|1.0432,14.2937,-42.3687|1.0466,13.8859,-41.9609|3.0819,14.2937,-42.3865|3.0855,13.8859,-41.9787|5.1206,14.2937,-42.4043|5.1242,13.8859,-41.9965|7.1593,14.2937,'
- ..'-42.422|7.1593,15.1092,-42.422|7.163,13.8859,-42.0142|-6.0711,15.1091,-27.1261|-6.0711,14.2936,-27.1261|-6.0711,14.7014,-27.1261|-6.0711,13.8859,-27.1261|-4.0324,15.1091,-27.1439|-4.0324,14.7014,-27.1439|-4.0324,14.2936,-27.1439|-4.0324,13.8859,-27.1439|-1.9936,15.1092,-27.1616|-1.9936,14.7014,-27.1616|-1.9936,14.2936,-27.1616|-1.9936,13.8859,-27.1616|0.0452,15.1092,-27.1795|0.0452,14.7014,-27.1795|0.0452,14.2936,-27.1795|0.0'
- ..'452,13.8859,-27.1795|-7.0906,14.2936,-27.1173|-7.0906,15.1091,-27.1173|-7.0869,13.8859,-26.7095|-5.0517,14.2936,-27.1351|-5.0483,13.8859,-26.7273|-3.013,14.2936,-27.1529|-3.0094,13.8859,-26.745|-0.9743,14.2936,-27.1706|-0.9707,13.8859,-26.7629|1.0644,14.2937,-27.1884|1.0644,15.1092,-27.1884|1.068,13.8859,-26.7806|11.9693,12.6431,-47.024|53.0999,0,-180|0.2594,0.6143,0.8182|11.9693,8.9705,-44.2667|-53.1,-180,180|0.2594,0.6143,8'
- ..'.3669|11.68,12.432,-44.0244|53.0999,0,8.34|0.2594,4.0099,3.1215|11.68,9.0865,-41.5125|-53.1,-180,-8.3401|0.2594,4.0099,5.2454|11.4927,12.5136,-43.9176|-1.29,173.4299,-101.03|0.2594,0.567,4.8304|11.7834,12.5706,-46.4411|1.2899,-6.5701,101.0299|1,2.1853,0.9681|-15.1034,13.159,-26.9519|-15.1034,13.0249,-42.3153|0.2,0.2677,1.5|-15.1034,13.0921,-34.6086|0.2677,0.2,13.9141|-15.0695,12.8921,-34.6069|0.5,180,-90|0.2,0.2,13.9141|-11.6'
- ..'114,19.3901,-40.753|12.6899,180,180|0.2,1.0735,1.2102|-11.6114,18.7335,-43.6695|-12.69,0,-180|0.2,1.0735,4.7687|-12.8034,14.9763,-42.7254|4.8677,4.1097,0.5142|-25.0156,14.0533,-28.1574|3.6878,0.2,2.0097|-12.8034,13.2466,-34.66|-11.6114,19.4375,-28.6565|12.81,0,-180|0.2,0.9897,1.998|-11.6114,18.7335,-25.5599|-12.8101,-180,180|0.2,0.9897,4.3533|-23.1214,9.867,-34.6306|0.5,180,41.24|9.7082,0.2,12.4141|-23.1214,9.9246,-28.0237|41'
- ..'.24,89.5599,89.3399|0.2,0.8,9.7082|-23.1214,9.8098,-41.1873|-0.5,0,48.7599|0.2,9.7082,0.6999|-19.2189,13.1806,-42.2185|89.4599,0.0299,-10.58|8.1394,0.2,0.5097|-0.311,19.6396,-34.8949|10.8483,22.8435,1.2991|-11.5321,15.754,-25.1088|0.3584,5.9589,5.3665|-22.7034,13.2465,-34.66|8.2677,0.5097,12.4141|-21.4577,18.5351,-40.9405|29.37,-93.75,135.5599|0.2,1.3448,4.6359|-19.1035,13.3412,-41.5681|0.49,-169.8801,-89.9101|0.2,8.1391,1.45'
- ..'29|-19.2373,13.3346,-42.3181|-0.4901,10.1199,89.91|0.2,0.2,0.2|1,40.6959,0.3537|-19.7152,20.2277,-29.2755|29.18,-83.3001,-53.1301|1,0.999,0.0449|-21.5369,18.3021,-28.3919|30.02,-84.59,-146.5701|0.2,2.1886,5.2075|-25.0632,16.2555,-28.0578|-30.0201,95.41,146.57|0.2,2.1886,2.9742|-23.2652,18.2313,-28.8582|-29.1801,96.6999,53.13|1,0.999,40.8969|-17.3873,9.7487,-42.1894|0,90,-13.69|0.2,6.5734,4.3|-13.2534,9.7487,-42.1894|0,-90,13.'
- ..'6899|0.2,6.5734,3.9677|-17.369,9.7365,-42.1889|-59.96,-90.8601,13.22|0.2,7.0864,3.3885|-19.219,12.9363,-42.2169|59.9599,89.1399,-13.2201|0.2,7.0864,4.004|-12.8034,12.942,-42.9673|56.2799,68.5899,-25.24|0.2,4.1674,2.5154|-10.8195,9.7487,-42.1894|-56.28,-111.4101,25.2399|0.2,4.1674,5.1626|-10.8195,9.8796,-27.021|-56.8401,-71.2901,-22.0301|0.2,4.1636,5.1375|-12.8034,13.0856,-26.3489|56.84,108.7099,22.03|0.2,4.1636,2.5216|-15.403'
- ..'4,6.8473,-34.5541|8.2677,0.5097,13.9141|-19.1034,13.247,-34.61|-17.5109,18.7612,-27.7671|7.8099,-101.27,30.4099|0.2,4.3213,4.5602|-21.4937,18.2042,-28.5608|-7.81,78.73,-30.41|0.2,4.3213,3.6379|-19.237,16.6006,-26.9836|-0.0901,80.0699,9.81|0.2,1.118,8.1215|-15.294,16.946,-43.0497|-30.83,-59.2901,-106.46|1,0.4483,0.2216|-21.4714,18.5462,-40.9289|0.09,100.62,29.9899|0.2,3.597,3.2188|-17.4714,18.5396,-41.6789|-0.0901,-79.38,-29.9'
- ..'9|0.2,3.597,4.9205|-17.5441,18.5077,-41.7132|30.8299,120.7099,106.4599|1,0.4483,30.254|-11.5321,15.754,-43.9087|12.1398,11.8575,-23.4441|-3.6501,-171.6001,-175.68|1,0.7632,3.5236|11.7914,12.0097,-25.8037|3.65,8.3999,175.6799|1,0.7632,20.3766|12.1378,9.5433,-25.7444|-45.53,0,15.14|0.2,0.4425,5.9882|12.1378,11.8833,-23.4477|-11.722,19.3901,-43.6523|0,90,-102.6901|1,34.3368,0.1068|9.529,19.3902,-43.6523|-12.69,0,-90|0.2,3.1637,6'
- ..'.8673|-1.8821,19.3901,-43.6523|0,-90,-167.31|6.8673,0.2,19.6584|-11.7221,19.4375,-25.9732|0,90,102.8099|1,36.1556,0.1068|9.529,19.4376,-25.9732|-12.8101,-180,90|0.2,3.1637,7.2311|-1.8821,19.4376,-25.9732|0,-90,167.19|7.2311,0.2,19.6584|-15.4034,6.6523,-27.6951|-28.13,-90.27,-179.43|0.2,3.8988,7.2907|-21.3873,9.8521,-27.7231|28.1299,89.73,179.4299|0.2,3.8988,6.2808|-19.2209,13.0888,-27.045|28.1299,89.73,19.79|0.2,4.024,7.0545|'
- ..'-13.237,9.889,-27.0171|-28.13,-90.27,-19.7901|0.2,4.024,6.5169|-19.2201,14.5629,-27.0627|8.1215,0.2,3.0097|-15.6034,19.9445,-34.9185|8.2677,0.5097,11.0141|-26.7034,15.9964,-34.6843|0.2677,0.4097,12.4141|9.0336,18.601,-26.0702|-11.7201,155.8399,-145.1901|0.2,2.0423,7.3292|10.6154,19.4026,-29.5958|11.72,-24.16,145.19|0.2,2.0423,0.5636|10.5112,19.4588,-29.5219|-50.5801,76.0599,-0.32|0.2,0.2,2.1092|11.1857,19.4493,-32.1901|-0.200'
- ..'1,-14.19,-39.42|0.2,2.1092,5.3044|9.6038,19.4716,-25.9318|0.2,165.8099,39.4199|0.2,2.1092,7.6058|-25.0158,13.0609,-28.1479|41.02,83.3099,8.84|0.2,2.4419,2.7635|-21.3658,9.8646,-27.72|-41.0201,-96.6901,-8.8401|0.2,2.4419,6.9776|-21.3683,9.7434,-41.4392|-41.16,-84.96,9.0299|0.2,2.426,6.9831|-19.2189,14.9805,-42.2342|8.1394,0.2,4.1097|-12.8034,15.1176,-26.5261|-10.9196,18.5265,-41.6368|50.5099,180,90|0.2,1.0999,4.046|-17.4873,18'
- ..'.5265,-41.6368|0,90,-140.51|0.2,4.046,4.5|-13.3534,18.5265,-41.6368|0,-90,-129.4901|4.046,0.2,3.7677|-26.6034,14.2465,-34.6689|0.4677,2.5097,12.4141|-24.7534,14.3965,-34.6702|4.1677,2.8097,12.4141|-10.9195,18.6397,-27.9204|44.5,0,-90|0.2,1.0999,4.384|-17.4873,18.6397,-27.9205|0,90,134.5|0.2,4.384,4.5|-13.3534,18.6397,-27.9205|0,-90,135.5|4.384,0.2,3.7677|-24.8801,14.4484,-28.1606|-0.12,76.5,179.5099|0.2,2.7999,3.4269|-26.5462'
- ..',16.1546,-28.5755|3.22,76.47,179.5099|1,0.9984,0.0582|-24.8801,16.0581,-28.1746|-3.2201,-103.53,-179.51|1,0.9984,17.1055|-24.8801,15.9532,-28.1737|-89.4701,-179.9701,166.46|3.4269,0.2,0.2097|-11.6314,20.2394,-29.4567|89.4599,0.0299,-155.06|1,0.2538,0.9731|-11.6314,19.2898,-29.4484|-89.46,-179.9701,155.0599|1,0.2538,8.5227|-11.6221,18.5842,-28.627|-39.16,-180,-179.0501|0.2,1.283,1.1063|-11.6221,19.2882,-29.4915|39.1599,0,179.0'
- ..'5|0.2,1.283,1.1233|11.8678,12.1321,-23.2926|49.27,172.72,47.8499|0.2,0.6329,0.9088|12.1585,9.4674,-25.5689|-49.2701,-7.2801,-47.85|0.2,0.6329,6.1245|11.7506,12.0989,-23.3568|0,180,125.29|0.2,0.7123,0.848|11.7506,12.0989,-25.7886|0,0,-125.2901|0.2,0.7123,4.0155|12.1753,11.6982,-23.0325|-8.57,-174.0201,39.04|0.2,0.2534,1.57|11.8846,12.1182,-25.8061|8.5699,5.98,-39.0401|0.2,0.2534,4.0703|11.9075,9.6359,-27.5617|-42.7701,0,7.5599'
- ..'|0.2,4.4215,3.3904|11.9075,11.9759,-25.0317|42.77,180,-7.56|0.2,4.4215,3.5019|-11.6328,20.1438,-40.3476|89.4599,0.0299,-26.83|1,0.2365,0.9774|9.601,19.421,-43.6932|0.2,14.5799,-41.8801|0.2,2.0599,7.275|11.1828,19.3989,-37.6124|-0.2001,-165.42,41.88|0.2,2.0599,5.2915|11.2108,19.4657,-37.5934|0.2,1.6,5.4483|-11.6221,19.1934,-40.2924|-23.07,178.6699,0.8|0.2,1.5784,0.6429|-11.6114,19.3888,-40.7512|23.0699,-1.3301,-0.8001|0.2,1.57'
- ..'84,0.3546|-11.6328,19.1942,-40.3393|-89.4701,-179.9701,26.8299|1,0.2365,8.5184|-23.2382,18.1639,-28.9958|0.5,180,60.5999|0.2,8.1492,0.7997|-23.2382,18.0621,-40.6594|29.3899,-89.7201,90.5699|0.2,0.5002,8.1492|0.6999|-23.2383,18.1123,-34.9025|-0.5,0,-150.6001|8.1492,0.2,11.0141|11.5942,12.0248,-25.7735|11.9447,9.5067,-25.7071|11.9427,11.8725,-23.414|HoverSeatV2|1312|-21.0551,13.9491,-31.5023|0,87.5,0|2,1,2|20|300|HoverSeat|Hove'
- ..'rSeatGUI|Buttons|0.5,0,0.6999,0|0.1,0,0.1,0|0.7058,0.7019,0.7137|UpButton|-1.5,0,0,0|1,0,1,0|0.5|Up|1,0.6,0|DownButton|0.5,0,0,0|Down|HoverButton|-0.5,0,0,0|1,0,0.5,0|Hover|AllStopButton|-0.5,0,0.5,0|All Stop|VMode|CanFly|Yes|Electrical Box 1|20.3691,16.2821,-34.5815|89.47,0.0299,-179.9701|6.4999,14.9999,4.7|10|electric bye michaelh0042|20.556,13.8454,-25.3213|0,180,-87|4.1999,1.0079,4.1999|0,-0.504,0,1,0,0,0,0,-1,0,1,0|0,0.5'
- ..'04,0,1,-0,0,0,0,-1.0001,-0,1,0|0,0.5039,0,-1,0,0,0,0,1,0,1,-0|-0.0001,-0.5041,0,-1.0001,-0,0,0,0,1,0,1,0|19.5493,13.8981,-25.3213|0,-0.5041,0,-1.0001,-0,0,0,0,1,0,1,0|18.5427,13.9509,-25.3213|-0.0001,-0.504,0,-1.0001,-0,0,0,0,1,0,1,0|17.5361,14.0036,-25.3213|16.5295,14.0564,-25.3213|22.5692,13.7399,-25.3213|-0.0001,0.5039,0,1,-0,0,0,0,-1.0001,-0,1,0|21.5626,13.7926,-25.3213|23.5758,13.6871,-25.3213|0,0.5039,0,1,-0,0,0,0,-1.00'
- ..'01,-0,1,0|24.5824,13.6344,-25.3213|20.556,13.8454,-43.9208|19.5494,13.8981,-43.9208|18.5427,13.9509,-43.9208|17.5361,14.0036,-43.9208|16.5295,14.0564,-43.9208|22.5692,13.7399,-43.9208|21.5626,13.7926,-43.9208|23.5758,13.6871,-43.9208|24.5824,13.6344,-43.9208|Light|0.9921,0.9176,0.5529|272|3.9016,19.0379,-34.8154|2,0.2,2|1,1.0099,1|40|2.4,0.2,2.4|SCP Electrical|17.7475,11.5145,-37.1472|0,-90,0.0099|0.6,1,0.3999|18.0476,11.0144'
- ..',-37.3472|0.2,1.2,1|18.2475,10.8143,-38.0473|1.9999,2.8,0.2|Part-to-Part Strong Joint|-1,-1.4001,0.1,1,0,0,0,1,0,0,0,1|-1.0001,-1.4001,-0.3001,1,0,0,0,1,-0.0001,0,-0.0001,0.9999|0.9607,0.8039,0.1882|17.8677,11.6143,-38.5474|0.5999,0.8,1|http://www.roblox.com/asset/?id=84065275|17.8477,12.2043,-38.4474|0.7999,0.2,0.6|0.3999,-0.1001,-0.3001,-1,0,0,0,1,0,0,0,-1|0,1.29,0.0999,-1,0,-0.0001,-0.0001,1,0,-0.0001,-0.0001,-1|17.8475,10'
- ..'.8143,-38.0471|1.8599,2.8,0.6|-25.0183,12.9463,-41.1171|41.1599,95.04,-9.03|0.2,2.426,2.7502|-25.0182,14.1901,-41.1274|3.6674,0.2,2.5097|-19.7605,15.326,-31.4683|0,0,72.5|4,1,2|Alarm Control Console [V3]|Borders|0.2705,0.2705,0.2705|n 1 0.0881,0.1762,0.5286 -23.627,16.3094,-35.1651 26.7,89,0 = 1 1.1453,0.1762,0.0881 -23.8145,16.4083,-35.697 26.7,89,0 = 1 0.0881,0.1762,0.5286 -23.6086,16.3094,-36.2221 26.7,89,0 = 1 1.1453,0.17'
- ..'62,0.0881 -23.421,16.2104,-35.6902 26.7,89,0 = p n 1 1.1453,0.1762,0.0881 -23.8529,16.4083,-33.495 26.7,89,0 = 1 1.1453,0.1762,0.0881 -23.0659,16.0124,-33.4812 26.7,89,0 = 1 0.0881,0.1762,0.9691 -23.4502,16.2103,-34.0166 26.7,89,0 = 1 0.0881,0.1762,0.9691 -23.4686,16.2103,-32.9596 26.7,89,0 = p n 1 1.1453,0.1762,0.0881 -22.8699,15.9332,-35.6806 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.5852,15.7947,-36.2043 26.7,89,0 = 1 0.0881,'
- ..'0.1762,0.7048 -22.6037,15.7947,-35.1473 26.7,89,0 = 1 1.1453,0.1762,0.0881 -22.319,15.6561,-35.671 26.7,89,0 = p n 1 0.0881,0.1762,1.762 -23.079,16.0322,-34.9794 26.7,89,0 = 1 0.0881,0.1762,1.762 -23.0913,16.0322,-34.2747 26.7,89,0 = 1 0.7929,0.1762,0.0881 -22.3376,15.6562,-34.614 26.7,89,0 = 1 0.7929,0.1762,0.0881 -23.8328,16.4083,-34.6401 26.7,89,0 = p n 1 1.1453,0.1762,0.0881 -22.9084,15.9333,-33.4784 26.7,89,0 = 1 1.1453,'
- ..'0.1762,0.0881 -22.3575,15.6562,-33.4688 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.6422,15.7947,-32.945 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.6237,15.7947,-34.0021 26.7,89,0 = p|Console|0.3647,0.3647,0.3647|- 1 1.1453,0.1762,0.5286 -23.6175,16.3094,-35.6937 26.7,89,0 = - 1 1.1453,0.1762,0.9691 -23.4591,16.2104,-33.4881 26.7,89,0 = - 1 1.1453,0.1762,0.7048 -22.633,15.7948,-33.4736 26.7,89,0 = - 1 0.7929,0.1762,1.762 -23.0851,16.0'
- ..'322,-34.627 26.7,89,0 = 1 3.524,0.1762,2.4668 -23.4256,15.5593,-34.6269 0,-91,0 = 1 3.524,0.881,0.7048 -24.3062,16.0879,-34.6423 0,-91,0 = 2 3.524,0.881,1.762 -23.0729,16.0879,-34.6208 0,-91,0 = - 1 1.1453,0.1762,0.7048 -22.5945,15.7948,-35.6758 26.7,89,0 =|Screens|1 0.9691,0.1762,0.5286 -22.5944,15.7947,-35.6758 26.7,89,0 = 1 0.9691,0.1762,0.3524 -23.6178,16.3094,-35.6936 26.7,89,0 = 1 0.9691,0.1762,0.5286 -22.6328,15.7947,-'
- ..'33.4736 26.7,89,0 = 1 0.6167,0.1762,1.5858 -23.0852,16.0322,-34.627 26.7,89,0 = 1 0.9691,0.1762,0.7929 -23.4594,16.2104,-33.488 26.7,89,0 =|Alarm|0.6392,0.2941,0.2941|288|- 1 0.2424,0.3637,0.3637 -23.0414,16.2927,-35.4381 -0.01,-1.03,63.29 + 3 1,1,1 0,0,0 1 0.2424,0.2424,0.2424 -23.1231,16.1302,-35.4394 -0.01,-1.03,63.29 =|rbxassetid://755557537|Part.|0.1882,0.1882,0.1882|-23.1376,16.073,-35.4393|-0.01,-1.03,63.29|0.2173,0.43'
- ..'46,0.4346|Sign|-23.5919,16.3582,-35.8973|-0.02,-1.01,64.9899|0.0828,0.3656,1.3932|330,60|0,6,0.5,0|0.725,-12,1,-12|0,0.5|1,1,1|12|WARNING|0.3333,0,0|30|Notification|rbxassetid://2816484277|2|-23.1272,16.0729,-36.0262|n 1 0.0881,0.1762,0.5286 -23.5634,16.3094,-38.8145 26.7,89,0 = 1 1.1453,0.1762,0.0881 -23.7509,16.4083,-39.3465 26.7,89,0 = 1 0.0881,0.1762,0.5286 -23.545,16.3094,-39.8716 26.7,89,0 = 1 1.1453,0.1762,0.0881 -23.3'
- ..'574,16.2104,-39.3396 26.7,89,0 = p n 1 1.1453,0.1762,0.0881 -23.7892,16.4083,-37.1444 26.7,89,0 = 1 1.1453,0.1762,0.0881 -23.0023,16.0124,-37.1307 26.7,89,0 = 1 0.0881,0.1762,0.9691 -23.3865,16.2103,-37.6661 26.7,89,0 = 1 0.0881,0.1762,0.9691 -23.405,16.2103,-36.609 26.7,89,0 = p n 1 1.1453,0.1762,0.0881 -22.8063,15.9332,-39.3301 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.5216,15.7947,-39.8538 26.7,89,0 = 1 0.0881,0.1762,0.7048 -'
- ..'22.54,15.7947,-38.7967 26.7,89,0 = 1 1.1453,0.1762,0.0881 -22.2554,15.6561,-39.3205 26.7,89,0 = p n 1 0.0881,0.1762,1.762 -23.0154,16.0322,-38.6288 26.7,89,0 = 1 0.0881,0.1762,1.762 -23.0277,16.0322,-37.9241 26.7,89,0 = 1 0.7929,0.1762,0.0881 -22.2739,15.6562,-38.2634 26.7,89,0 = 1 0.7929,0.1762,0.0881 -23.7692,16.4083,-38.2895 26.7,89,0 = p n 1 1.1453,0.1762,0.0881 -22.8448,15.9333,-37.1278 26.7,89,0 = 1 1.1453,0.1762,0.0881'
- ..' -22.2939,15.6562,-37.1182 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.5785,15.7947,-36.5945 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.5601,15.7947,-37.6516 26.7,89,0 = p|- 1 1.1453,0.1762,0.5286 -23.554,16.3094,-39.3431 26.7,89,0 = - 1 1.1453,0.1762,0.9691 -23.3957,16.2104,-37.1374 26.7,89,0 = - 1 1.1453,0.1762,0.7048 -22.5695,15.7948,-37.1229 26.7,89,0 = - 1 0.7929,0.1762,1.762 -23.0216,16.0322,-38.2764 26.7,89,0 = 1 3.524,0.1762,2'
- ..'.4668 -23.3621,15.5593,-38.2763 0,-91,0 = 1 3.524,0.881,0.7048 -24.2427,16.0879,-38.2916 0,-91,0 = 2 3.524,0.881,1.762 -23.0094,16.0879,-38.2701 0,-91,0 = - 1 1.1453,0.1762,0.7048 -22.531,15.7948,-39.3252 26.7,89,0 =|1 0.9691,0.1762,0.5286 -22.5308,15.7947,-39.3253 26.7,89,0 = 1 0.9691,0.1762,0.3524 -23.5541,16.3094,-39.343 26.7,89,0 = 1 0.9691,0.1762,0.5286 -22.5692,15.7947,-37.123 26.7,89,0 = 1 0.6167,0.1762,1.5858 -23.0215'
- ..',16.0322,-38.2765 26.7,89,0 = 1 0.9691,0.1762,0.7929 -23.3957,16.2104,-37.1375 26.7,89,0 =|- 1 0.2424,0.3637,0.3637 -22.9777,16.2927,-39.0875 -0.01,-1.03,63.29 + 3 1,1,1 0,0,0 1 0.2424,0.2424,0.2424 -23.0594,16.1302,-39.0889 -0.01,-1.03,63.29 =|0.92|rbxassetid://143978587|0.1|-23.0739,16.073,-39.0888|-23.0634,16.0729,-39.6755|-23.5282,16.3582,-39.5462|EVACUATION|n 1 0.0881,0.1762,0.5286 -23.6908,16.3094,-31.5159 26.7,89,0 = 1'
- ..' 1.1453,0.1762,0.0881 -23.8783,16.4083,-32.0478 26.7,89,0 = 1 0.0881,0.1762,0.5286 -23.6723,16.3094,-32.5729 26.7,89,0 = 1 1.1453,0.1762,0.0881 -23.4847,16.2104,-32.0409 26.7,89,0 = p n 1 1.1453,0.1762,0.0881 -23.9166,16.4083,-29.8457 26.7,89,0 = 1 1.1453,0.1762,0.0881 -23.1297,16.0124,-29.832 26.7,89,0 = 1 0.0881,0.1762,0.9691 -23.5139,16.2103,-30.3674 26.7,89,0 = 1 0.0881,0.1762,0.9691 -23.5323,16.2103,-29.3103 26.7,89,0 = '
- ..'p n 1 1.1453,0.1762,0.0881 -22.9336,15.9332,-32.0314 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.649,15.7947,-32.5551 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.6674,15.7947,-31.4981 26.7,89,0 = 1 1.1453,0.1762,0.0881 -22.3828,15.6561,-32.0218 26.7,89,0 = p n 1 0.0881,0.1762,1.762 -23.1428,16.0322,-31.3302 26.7,89,0 = 1 0.0881,0.1762,1.762 -23.1551,16.0322,-30.6254 26.7,89,0 = 1 0.7929,0.1762,0.0881 -22.4013,15.6562,-30.9647 26.7,89,0'
- ..' = 1 0.7929,0.1762,0.0881 -23.8965,16.4083,-30.9908 26.7,89,0 = p n 1 1.1453,0.1762,0.0881 -22.9722,15.9333,-29.8292 26.7,89,0 = 1 1.1453,0.1762,0.0881 -22.4212,15.6561,-29.8196 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.7059,15.7947,-29.2958 26.7,89,0 = 1 0.0881,0.1762,0.7048 -22.6875,15.7947,-30.3529 26.7,89,0 = p|- 1 1.1453,0.1762,0.5286 -23.6813,16.3094,-32.0446 26.7,89,0 = - 1 1.1453,0.1762,0.9691 -23.5229,16.2104,-29.839 26'
- ..'.7,89,0 = - 1 1.1453,0.1762,0.7048 -22.6968,15.7948,-29.8245 26.7,89,0 = - 1 0.7929,0.1762,1.762 -23.1489,16.0322,-30.9779 26.7,89,0 = 1 3.524,0.1762,2.4668 -23.4894,15.5593,-30.9778 0,-91,0 = 1 3.524,0.881,0.7048 -24.37,16.0879,-30.9932 0,-91,0 = 2 3.524,0.881,1.762 -23.1366,16.0879,-30.9717 0,-91,0 = - 1 1.1453,0.1762,0.7048 -22.6583,15.7948,-32.0267 26.7,89,0 =|1 0.9691,0.1762,0.5286 -22.6581,15.7947,-32.0266 26.7,89,0 = 1'
- ..' 0.9691,0.1762,0.3524 -23.6815,16.3094,-32.0443 26.7,89,0 = 1 0.9691,0.1762,0.5286 -22.6966,15.7947,-29.8243 26.7,89,0 = 1 0.6167,0.1762,1.5858 -23.1489,16.0322,-30.9778 26.7,89,0 = 1 0.9691,0.1762,0.7929 -23.5231,16.2104,-29.8388 26.7,89,0 =|- 1 0.2424,0.3637,0.3637 -23.1051,16.2927,-31.789 -0.01,-1.03,63.29 + 3 1,1,1 0,0,0 1 0.2424,0.2424,0.2424 -23.1868,16.1302,-31.7904 -0.01,-1.03,63.29 =|1.1|rbxassetid://141279377|-23.20'
- ..'13,16.073,-31.7901|Change|- 1 0.2424,0.3637,0.3637 -23.0948,16.2926,-32.3754 -0.01,-1.03,63.29 + 3 1,1,1 0,0,0 1 0.2424,0.2424,0.2424 -23.1765,16.1301,-32.3768 -0.01,-1.03,63.29 =|-23.1909,16.0729,-32.3767|-23.6556,16.3582,-32.2478|BREACH ALARM|-19.7605,15.326,-38.0683|WeldScript;0,5>10>3,5>11>13,9>10>7,9>11>13,12>10>10,12>11>13,703>10>700,703>11>725,704>10>700,704>11>705,708>10>705,708>11>709,712>10>709,712>11>713,716>10>713'
- ..',716>11>717,723>10>720,723>11>725,724>10>720,724>11>728,731>10>728,731>11>732,739>10>736,739>11>761,740>10>736,740>11>741,744>10>741,744>11>745,748>10>745,748>11>749,752>10>749,752>11>753,759>10>756,759>11>761,760>10>756,760>11>764,767>10>764,767>11>768,781>10>780,781>11>786,785>10>784,785>11>780;2;n;2|1:2;n;1|1:2|2:3|3:4|4:5|5:6|6:7|3:4|3:4;n;3|7:8;4|8:9|9:10;p;2|1:11;n;1|2:3|4:12|5:6|12:13|6:14;n;3|7:8;4|8:9|9:15;p;1|2:3|4:'
- ..'16|5:6|12:17|6:14;n;3|7:8;4|8:9|9:18;p;1|2:3|4:19|5:6|12:20|6:21;n;3|7:8;p;p;1|1:22|2:3|3:23|4:24|5:25|6:26|13:27|14:27|3:23|3:23;n;5;6;p;1|1:28|2:3|3:23|4:29|5:30|6:26|13:27|14:27|3:23|3:23;n;5;6;p;1|1:31|2:3|3:32|4:33|5:34|6:26|13:27|14:27|3:32|3:32;n;5;6;p;1|1:35|2:3|3:32|4:36|5:30|6:26|13:27|14:27|3:32|3:32;n;5;6;p;p;1|2:3|3:37|15:38|4:39|5:40|6:41|13:27|14:27|3:37|3:37;7|2:3|3:37|15:38|4:42|5:43|6:44|13:27|3:37|3:37;7|2:'
- ..'3|3:37|15:38|4:45|5:46|6:47|13:27|3:37|3:37;1|2:3|3:37|15:38|4:48|5:49|6:50|13:27|14:27|3:37|3:37;7|2:3|3:37|15:38|4:51|5:52|6:53|13:27|3:37|3:37;7|2:3|3:54|15:55|16:56|4:57|5:58|6:59|13:27|3:54|3:54;2;n;7|2:3|3:60|15:38|4:61|5:62|6:63|13:27|3:60|3:60;7|2:3|3:60|15:38|4:64|5:65|6:66|13:27|3:60|3:60;1|2:3|3:60|15:38|4:67|6:68|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:69|6:68|13:27|14:27|3:60|3:60;2;n;2;n;2;n;1|2:3|3:60|17:70|4:'
- ..'71|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:75|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:77|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:78|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:79|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:80|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:81|5:72|6:73|13:27|14:27|3:'
- ..'60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:82|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:83|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:84|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:85|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:86|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:87|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1'
- ..'|2:3|3:60|17:70|4:88|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:89|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:90|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;p;2;n;2;n;1|2:3|3:60|17:70|4:91|5:92|6:93|13:27|14:27|3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:95|5:92|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:99|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;2;n;1|2'
- ..':3|3:60|17:70|4:102|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:104|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:106|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:107|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:108|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:109|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:'
- ..'105;p;p;2;n;1|2:3|3:60|17:70|4:110|5:92|6:93|13:27|14:27|3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:111|5:92|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:112|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;p;p;2;n;2;n;2;n;1|2:3|3:60|17:70|4:113|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:115|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:116|5:114|6:73|13:27|14:27|3:6'
- ..'0|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:117|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:118|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:119|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:120|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:121|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:122|5:114|6:73|13:27|14:27|3:60|3:60;n;'
- ..'8|18:74;p;1|2:3|3:60|17:70|4:123|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:124|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:125|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:126|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:127|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:128|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3'
- ..'|3:60|17:70|4:129|5:114|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;p;2;n;2;n;1|2:3|3:60|17:70|4:130|5:131|6:93|13:27|14:27|3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:132|5:131|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:133|5:131|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;2;n;1|2:3|3:60|17:70|4:134|5:135|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:136|5:131|6:96|13:27|14:27|3:60|3:60;n;8|7:1'
- ..'00|18:105;p;p;2;n;1|2:3|3:60|17:70|4:137|5:135|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:138|5:131|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:139|5:135|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:140|5:131|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:141|5:131|6:93|13:27|14:27|3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:142|5:131|6:96|13:27|14:27'
- ..'|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:143|5:131|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;p;p;2;n;2;n;2;n;1|2:3|3:60|17:70|4:144|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:146|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:147|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:148|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:149|5:145|'
- ..'6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:150|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:151|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:152|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:153|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:154|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:155|5:145|6:73|13:27|14:2'
- ..'7|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:156|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:157|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:158|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:159|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:160|5:145|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;p;2;n;2;n;1|2:3|3:60|17:70|4:161|5:162|6:93|13:27|14:27|3'
- ..':60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:163|5:162|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:164|5:162|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;2;n;1|2:3|3:60|17:70|4:165|5:166|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:167|5:162|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:168|5:166|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:169|5:162|6:96|13'
- ..':27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:170|5:166|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:171|5:162|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:172|5:162|6:93|13:27|14:27|3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:173|5:162|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:174|5:162|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;p;p;2;n;1|2:3|3:'
- ..'60|4:175|5:92|6:176|3:60|3:60;n;8;p;1|2:3|3:60|4:177|5:92|6:176|3:60|3:60;n;8;p;1|2:3|3:60|4:178|5:92|6:176|3:60|3:60;n;8;p;10|2:3|3:60|3:60|3:60|20:179;1|2:3|3:60|4:180|5:92|6:176|3:60|3:60;n;8;p;10|2:3|3:60|3:60|3:60|20:181;10|2:3|3:60|3:60|3:60|20:182;10|2:3|3:60|3:60|3:60|20:183;10|2:3|3:60|3:60|3:60|20:184;p;2;n;1|2:3|3:60|15:185|4:186|5:187|6:188|14:27|3:60|3:60;2;n;1|2:3|3:60|15:185|4:189|5:187|6:190|14:27|3:60|3:60;1|'
- ..'2:3|3:60|15:185|4:191|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:192|5:187|6:188|14:27|3:60|3:60;p;2;n;1|2:3|3:60|15:185|4:193|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:194|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:195|5:187|6:188|14:27|3:60|3:60;p;2;n;1|2:3|3:60|15:185|4:196|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:197|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:198|5:187|6:188|14:27|3:60|3:60;p;2'
- ..';n;1|2:3|3:60|15:185|4:199|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:200|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:201|5:187|6:188|14:27|3:60|3:60;p;2;n;1|2:3|3:60|15:185|4:202|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:203|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:204|5:187|6:188|14:27|3:60|3:60;p;2;n;1|2:3|3:60|15:185|4:205|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:206|5:187|6:190|14:27|3:60|3:6'
- ..'0;1|2:3|3:60|15:185|4:207|5:187|6:188|14:27|3:60|3:60;p;2;n;1|2:3|3:60|15:185|4:208|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:209|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:210|5:187|6:188|14:27|3:60|3:60;p;2;n;1|2:3|3:60|15:185|4:211|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:212|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:213|5:187|6:188|14:27|3:60|3:60;p;2;n;1|2:3|3:60|15:185|4:214|5:187|6:190|14:27|3:6'
- ..'0|3:60;1|2:3|3:60|15:185|4:215|5:187|6:190|14:27|3:60|3:60;1|2:3|3:60|15:185|4:216|5:187|6:188|14:27|3:60|3:60;p;p;7|2:3|3:60|15:38|4:217|5:218|6:219|13:27|3:60|3:60;1|2:3|3:60|15:38|4:220|6:221|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:222|6:223|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:224|5:225|6:226|13:27|14:27|3:60|3:60;1|2:3|3:60|15:185|4:227|6:228|13:27|14:27|3:60|3:60;2|1:229;n;1|1:230|2:3|3:60|16:3|4:231|5:232|6:233|21'
- ..':234|13:27|14:27|3:60|3:60;n;11|3:235|16:236|6:237|22:238|23:3|3:235|24:239|25:70|3:235|26:240|27:241|28:242;p;p;1|2:3|3:60|15:38|4:243|5:244|6:245|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:246|6:223|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:247|6:248|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:249|6:248|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:250|5:251|6:252|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:253|6:223|13:27|14:27|3:60|3:6'
- ..'0;1|2:3|3:60|15:38|4:254|6:255|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:256|6:223|13:27|14:27|3:60|3:60;1|2:3|3:60|15:185|4:257|5:258|6:259|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:260|6:223|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:261|6:262|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:263|6:264|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:265|5:266|6:245|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:267|5:268|6:269|13:27|14:27|3:60|3:60;'
- ..'1|2:3|3:60|15:38|4:270|5:271|6:223|13:27|14:27|3:60|3:60;2|1:229;n;1|1:230|2:3|3:60|16:3|4:272|5:232|6:233|21:234|13:27|14:27|3:60|3:60;n;11|3:235|16:236|6:237|22:238|23:3|3:235|24:239|25:70|3:235|26:240|27:241|28:242;p;p;1|2:3|3:60|15:38|4:273|6:274|13:27|14:27|3:60|3:60;1|2:3|3:60|15:185|4:275|6:276|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:277|5:278|6:279|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:280|5:278|6:281|13:27|14:27|'
- ..'3:60|3:60;1|2:3|3:60|15:38|4:282|6:283|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:284|5:278|6:281|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:285|5:286|6:287|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:288|5:289|6:290|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:291|5:289|6:292|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:288|5:289|6:290|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:293|5:286|6:294|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:295|5:2'
- ..'78|6:279|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:296|6:297|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:298|5:299|6:300|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:301|6:302|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:303|5:278|6:304|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:305|5:306|6:307|13:27|3:60|3:60;7|2:3|3:60|15:38|4:308|5:309|6:310|13:27|3:60|3:60;7|2:3|3:60|15:38|4:311|5:312|6:313|13:27|3:60|3:60;1|2:3|3:60|15:38|4:314|5:286|'
- ..'6:315|13:27|14:27|3:60|3:60;1|3:60|15:38|4:316|6:317|29:318|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:319|6:223|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:320|6:321|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:322|6:321|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:323|5:324|6:325|13:27|3:60|3:60;1|2:3|3:60|15:38|4:326|5:327|6:328|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:329|5:330|6:331|13:27|3:60|3:60;1|2:3|3:60|15:38|4:332|5:333|6:334|'
- ..'13:27|14:27|3:60|3:60;1|3:60|15:38|4:335|6:317|29:318|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:336|5:337|6:338|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:339|5:289|6:294|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:340|5:278|6:304|13:27|14:27|3:60|3:60;7|2:3|3:60|4:341|5:342|6:343|13:27|3:60|3:60;n;9|18:344|19:318;p;7|2:3|3:60|15:38|4:345|5:346|6:347|13:27|3:60|3:60;7|2:3|3:60|15:38|4:348|5:349|6:350|13:27|3:60|3:60;7|2:3|3:60|15:3'
- ..'8|4:351|5:352|6:353|13:27|3:60|3:60;7|2:3|3:60|15:38|4:354|5:355|6:343|13:27|3:60|3:60;n;9|18:356|19:318;p;7|2:3|3:60|15:38|4:357|5:358|6:359|13:27|3:60|3:60;7|2:3|3:60|15:38|4:360|5:361|6:362|13:27|3:60|3:60;7|2:3|3:60|15:185|4:363|5:364|6:365|13:27|3:60|3:60;7|2:3|3:60|15:38|4:366|5:367|6:368|13:27|3:60|3:60;7|2:3|3:60|15:38|4:369|5:370|6:371|13:27|3:60|3:60;7|2:3|3:60|15:38|4:372|5:373|6:374|13:27|3:60|3:60;7|2:3|3:60|15:3'
- ..'8|4:375|5:376|6:377|13:27|3:60|3:60;7|2:3|3:60|15:38|4:378|5:379|6:380|13:27|3:60|3:60;7|2:3|3:60|15:38|4:381|5:382|6:383|13:27|3:60|3:60;7|2:3|3:60|15:38|4:384|5:385|6:386|13:27|3:60|3:60;7|2:3|3:60|15:38|4:387|5:388|6:389|13:27|3:60|3:60;7|2:3|3:60|15:38|4:390|5:391|6:392|13:27|3:60|3:60;7|2:3|3:60|15:38|4:393|5:394|6:395|13:27|3:60|3:60;7|2:3|3:60|15:38|4:396|5:397|6:398|13:27|3:60|3:60;7|2:3|3:60|15:38|4:399|5:400|6:401|1'
- ..'3:27|3:60|3:60;n;9|18:402|19:318;p;7|2:3|3:60|15:185|4:403|5:404|6:405|13:27|3:60|3:60;7|2:3|3:60|15:38|4:406|5:407|6:408|13:27|3:60|3:60;7|2:3|3:60|15:38|4:409|5:410|6:411|13:27|3:60|3:60;7|2:3|3:60|15:38|4:412|5:413|6:414|13:27|3:60|3:60;7|2:3|3:60|15:38|4:415|5:416|6:417|13:27|3:60|3:60;7|2:3|3:60|15:38|4:418|5:419|6:420|13:27|3:60|3:60;1|2:3|3:60|15:38|4:421|6:68|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:422|5:423|6:424|13'
- ..':27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:425|5:426|6:427|13:27|3:60|3:60;1|2:3|3:60|15:38|4:428|5:429|6:430|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:431|5:432|6:433|13:27|14:27|3:60|3:60;1|2:3|3:60|15:185|4:434|6:435|13:27|14:27|3:60|3:60;1|2:3|3:60|15:185|4:436|6:437|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:438|5:439|6:440|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:441|6:68|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:442|5:443|6:44'
- ..'4|13:27|3:60|3:60;7|2:3|3:60|15:38|4:445|5:446|6:447|13:27|3:60|3:60;7|2:3|3:60|15:38|4:448|5:449|6:450|13:27|3:60|3:60;7|2:3|3:60|15:38|4:451|5:452|6:453|13:27|3:60|3:60;7|2:3|3:60|15:38|4:454|5:455|6:401|13:27|3:60|3:60;n;9|18:456|19:318;p;7|2:3|3:60|15:38|4:457|5:458|6:401|13:27|3:60|3:60;n;9|18:459|19:318;p;1|2:3|3:60|15:38|4:460|5:439|6:461|13:27|14:27|3:60|3:60;1|2:3|3:60|15:185|4:462|6:435|13:27|14:27|3:60|3:60;1|2:3|3'
- ..':60|15:38|4:463|5:439|6:464|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:465|5:466|6:467|13:27|3:60|3:60;7|2:3|3:60|15:38|4:468|5:469|6:470|13:27|3:60|3:60;7|2:3|3:60|15:38|4:471|5:472|6:473|13:27|3:60|3:60;7|2:3|3:60|15:38|4:474|5:475|6:476|13:27|3:60|3:60;1|2:3|3:60|15:38|4:477|5:278|6:478|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:479|5:480|6:481|13:27|3:60|3:60;1|2:3|3:60|15:38|4:482|5:483|6:484|13:27|14:27|3:60|3:60;7|2:3|3:60'
- ..'|15:38|4:485|5:466|6:486|13:27|3:60|3:60;7|2:3|3:60|15:38|4:485|5:487|6:488|13:27|3:60|3:60;7|2:3|3:60|15:38|4:489|5:490|6:491|13:27|3:60|3:60;7|2:3|3:60|15:38|4:492|5:493|6:494|13:27|3:60|3:60;7|2:3|3:60|15:38|4:495|5:496|6:497|13:27|3:60|3:60;7|2:3|3:60|15:38|4:498|5:499|6:500|13:27|3:60|3:60;7|2:3|3:60|15:38|4:501|5:502|6:503|13:27|3:60|3:60;1|2:3|3:60|15:38|4:504|5:505|6:506|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:507|5:'
- ..'508|6:509|13:27|3:60|3:60;7|2:3|3:60|15:38|4:510|5:511|6:512|13:27|3:60|3:60;7|2:3|3:60|15:38|4:513|5:514|6:515|13:27|3:60|3:60;2;n;2;n;2;n;1|2:3|3:60|17:70|4:516|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:517|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:518|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:519|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:7'
- ..'0|4:520|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:521|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:522|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:523|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:524|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:525|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:526|5:72|6:73|13:'
- ..'27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:527|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:528|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:529|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:530|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:531|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;p;2;n;2;n;1|2:3|3:60|17:70|4:532|5:92|6:93|13:27|14:27|'
- ..'3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:533|5:92|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:534|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;2;n;1|2:3|3:60|17:70|4:535|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:536|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:537|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:538|5:92|6:96|13:27'
- ..'|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:539|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:540|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:541|5:92|6:93|13:27|14:27|3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:542|5:92|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:543|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;p;p;2;n;2;n;2;n;1|2:3|3'
- ..':60|17:70|4:544|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:545|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:546|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:547|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:548|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:549|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:550|5:72|'
- ..'6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:551|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:552|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:553|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:554|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:555|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;2;n;1|2:3|3:60|17:70|4:556|5:72|6:73|13:27|14:2'
- ..'7|3:60|3:60;n;8|18:74;p;1|2:3|3:60|17:70|4:557|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:558|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:559|5:72|6:73|13:27|14:27|3:60|3:60;n;8|18:76;p;p;p;2;n;2;n;1|2:3|3:60|17:70|4:560|5:92|6:93|13:27|14:27|3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:561|5:92|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:562|5:92|6:96|13:27|14:27|3:60|3:'
- ..'60;n;8|7:100|18:101;p;p;2;n;1|2:3|3:60|17:70|4:563|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:564|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:565|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:566|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:567|5:103|6:93|13:27|14:27|3:60|3:60;n;8|18:76;p;1|2:3|3:60|17:70|4:568|5:92|6:96|13:2'
- ..'7|14:27|3:60|3:60;n;8|7:100|18:105;p;p;2;n;1|2:3|3:60|17:70|4:569|5:92|6:93|13:27|14:27|3:60|3:60;n;8|18:94;p;1|2:3|3:60|17:70|4:570|5:92|6:96|13:27|14:27|3:60|3:60;n;9|18:97|19:98;p;1|2:3|3:60|17:70|4:571|5:92|6:96|13:27|14:27|3:60|3:60;n;8|7:100|18:101;p;p;p;p;7|2:3|3:60|15:38|4:572|5:573|6:574|13:27|3:60|3:60;7|2:3|3:60|15:38|4:575|5:576|6:577|13:27|3:60|3:60;7|2:3|3:60|15:38|4:578|5:579|6:580|13:27|3:60|3:60;7|2:3|3:60|15'
- ..':38|4:581|5:582|6:583|13:27|3:60|3:60;7|2:3|3:60|15:38|4:584|5:585|6:586|13:27|3:60|3:60;7|2:3|3:60|15:38|4:587|5:588|6:401|13:27|3:60|3:60;n;9|18:589|19:318;p;7|2:3|3:60|15:38|4:590|5:469|6:470|13:27|3:60|3:60;7|2:3|3:60|15:38|4:591|5:480|6:592|13:27|3:60|3:60;1|2:3|3:60|15:38|4:593|5:483|6:594|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:595|5:596|6:597|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:598|5:599|6:600|13:27|3:60|3:60;7|'
- ..'2:3|3:60|15:38|4:601|5:602|6:603|13:27|3:60|3:60;1|2:3|3:60|15:38|4:604|5:278|6:605|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:606|5:429|6:607|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:608|5:278|6:478|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:609|5:610|6:611|13:27|3:60|3:60;7|2:3|3:60|15:38|4:612|5:613|6:614|13:27|3:60|3:60;1|2:3|3:60|15:38|4:615|5:616|6:617|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:618|5:619|6:620|13:27|3:60|3:60'
- ..';7|2:3|3:60|15:38|4:621|5:622|6:623|13:27|3:60|3:60;1|2:3|3:60|15:38|4:624|5:625|6:626|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:627|5:439|6:628|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:629|6:630|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:631|5:278|6:632|13:27|30:318|14:27|3:60|3:60;7|2:3|3:60|15:55|16:56|4:633|5:634|6:635|13:27|3:60|3:60;7|2:3|3:60|15:38|4:636|5:637|6:638|13:27|3:60|3:60;7|2:3|3:60|15:38|4:639|5:640|6:641|13:27'
- ..'|3:60|3:60;n;9|18:642|19:318;p;7|2:3|3:60|15:55|16:56|4:643|5:644|6:641|13:27|3:60|3:60;n;9|18:645|19:318;p;7|2:3|3:60|15:55|16:56|4:646|5:647|6:648|13:27|3:60|3:60;7|2:3|3:60|15:55|16:56|4:649|5:650|6:651|13:27|3:60|3:60;7|2:3|3:60|15:55|16:56|4:652|5:653|6:641|13:27|3:60|3:60;n;9|18:654|19:318;p;7|2:3|3:60|15:38|4:655|5:656|6:657|13:27|3:60|3:60;7|2:3|3:60|15:38|4:658|5:659|6:660|13:27|3:60|3:60;7|2:3|3:60|15:38|4:661|5:662'
- ..'|6:663|13:27|3:60|3:60;7|2:3|3:60|15:38|4:664|5:665|6:666|13:27|3:60|3:60;7|2:3|3:60|15:38|4:667|5:668|6:669|13:27|3:60|3:60;7|2:3|3:60|15:38|4:670|5:671|6:672|13:27|3:60|3:60;7|2:3|3:60|15:38|4:673|5:674|6:675|13:27|3:60|3:60;7|2:3|3:60|15:38|4:676|5:677|6:678|13:27|3:60|3:60;1|2:3|3:60|15:38|4:679|5:278|6:680|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:681|5:278|6:680|13:27|14:318|3:60|3:60;7|2:3|3:60|15:38|4:682|5:683|6:684|1'
- ..'3:27|3:60|3:60;7|2:3|3:60|15:38|4:685|5:686|6:687|13:27|3:60|3:60;7|2:3|3:60|15:38|4:688|5:689|6:690|13:27|3:60|3:60;7|2:3|3:60|15:38|4:691|5:692|6:641|13:27|3:60|3:60;n;9|18:693|19:318;p;7|2:3|3:60|15:38|4:694|5:695|6:696|13:27|3:60|3:60;7|2:3|3:60|15:38|4:697|5:698|6:699|13:27|3:60|3:60;7|2:3|3:60|15:38|4:700|5:701|6:641|13:27|3:60|3:60;n;9|18:702|19:318;p;1|2:3|3:60|15:38|4:703|6:630|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|'
- ..'4:704|5:705|6:641|13:27|3:60|3:60;n;9|18:706|19:318;p;7|2:3|3:60|15:38|4:707|5:708|6:641|13:27|3:60|3:60;n;9|18:709|19:318;p;7|2:3|3:60|15:38|4:710|5:711|6:712|13:27|3:60|3:60;7|2:3|3:60|15:38|4:713|5:218|6:219|13:27|3:60|3:60;7|2:3|3:60|15:38|4:714|5:715|6:641|13:27|3:60|3:60;n;9|18:716|19:318;p;7|2:3|3:60|15:38|4:717|5:718|6:719|13:27|3:60|3:60;1|2:3|3:60|15:38|4:720|5:721|6:722|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:723|'
- ..'5:724|6:641|13:27|3:60|3:60;n;9|18:725|19:318;p;7|2:3|3:60|15:38|4:726|5:727|6:728|13:27|3:60|3:60;1|2:3|3:60|15:38|4:729|5:730|6:731|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:732|5:733|6:734|13:27|3:60|3:60;7|2:3|3:60|15:38|4:735|5:736|6:737|13:27|3:60|3:60;7|2:3|3:60|15:38|4:738|5:739|6:740|13:27|3:60|3:60;7|2:3|3:60|15:38|4:741|5:742|6:743|13:27|3:60|3:60;1|2:3|3:60|15:38|4:744|5:432|6:745|13:27|14:27|3:60|3:60;1|2:3|3:60|1'
- ..'5:38|4:746|5:278|6:747|13:27|14:27|3:60|3:60;1|2:3|3:60|15:55|16:56|4:748|5:278|6:749|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:750|5:751|6:752|13:27|3:60|3:60;7|2:3|3:60|15:38|4:753|5:754|6:755|13:27|3:60|3:60;7|2:3|3:60|15:38|4:756|5:757|6:758|13:27|3:60|3:60;7|2:3|3:60|15:38|4:759|5:760|6:761|13:27|3:60|3:60;7|2:3|3:60|15:38|4:762|5:763|6:764|13:27|3:60|3:60;7|2:3|3:60|15:38|4:765|5:766|6:767|13:27|3:60|3:60;7|2:3|3:60|15:3'
- ..'8|4:768|5:769|6:770|13:27|3:60|3:60;7|2:3|3:60|15:38|4:771|5:772|6:773|13:27|3:60|3:60;1|2:3|3:60|15:38|4:774|5:625|6:775|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:776|5:278|6:605|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:777|5:778|6:779|13:27|3:60|3:60;7|2:3|3:60|15:38|4:780|5:781|6:782|13:27|3:60|3:60;1|2:3|3:60|15:38|4:783|5:784|6:785|13:27|14:27|3:60|3:60;1|2:3|3:60|15:38|4:786|5:278|6:787|13:27|14:27|3:60|3:60;1|2:3|3:60|1'
- ..'5:38|4:788|5:278|6:789|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:790|5:791|6:792|13:27|3:60|3:60;7|2:3|3:60|15:38|4:793|5:794|6:795|13:27|3:60|3:60;1|2:3|3:60|15:38|4:796|5:797|6:798|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:799|5:800|6:801|13:27|3:60|3:60;7|2:3|3:60|15:38|4:802|5:803|6:641|13:27|3:60|3:60;n;9|18:804|19:318;p;7|2:3|3:60|15:38|4:805|5:806|6:641|13:27|3:60|3:60;n;9|18:807|19:318;p;1|2:3|3:60|15:38|4:808|5:809|6:8'
- ..'10|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:811|5:812|6:641|13:27|3:60|3:60;n;9|18:813|19:318;p;7|2:3|3:60|15:38|4:814|5:815|6:641|13:27|3:60|3:60;n;9|18:816|19:318;p;7|2:3|3:60|15:38|4:817|5:818|6:819|13:27|3:60|3:60;7|2:3|3:60|15:38|4:820|5:821|6:822|13:27|3:60|3:60;7|2:3|3:60|15:38|4:823|5:824|6:825|13:27|3:60|3:60;7|2:3|3:60|15:38|4:826|5:827|6:828|13:27|3:60|3:60;7|2:3|3:60|15:38|4:829|5:830|6:831|13:27|3:60|3:60;7|2:3|3'
- ..':60|15:38|4:832|5:833|6:834|13:27|3:60|3:60;7|2:3|3:60|15:38|4:835|5:836|6:837|13:27|3:60|3:60;7|2:3|3:60|15:38|4:838|5:839|6:840|13:27|3:60|3:60;7|2:3|3:60|15:38|4:841|5:842|6:843|13:27|3:60|3:60;7|2:3|3:60|15:38|4:844|5:845|6:846|13:27|3:60|3:60;7|2:3|3:60|15:38|4:847|5:848|6:641|13:27|3:60|3:60;n;9|18:849|19:318;p;7|2:3|3:60|15:38|4:850|5:851|6:852|13:27|3:60|3:60;7|2:3|3:60|15:38|4:853|5:854|6:855|13:27|3:60|3:60;7|2:3|3:'
- ..'60|15:38|4:856|5:483|6:857|13:27|3:60|3:60;7|2:3|3:60|15:38|4:858|5:859|6:860|13:27|3:60|3:60;7|2:3|3:60|15:38|4:861|5:862|6:863|13:27|3:60|3:60;7|2:3|3:60|15:38|4:864|5:865|6:641|13:27|3:60|3:60;n;9|18:866|19:318;p;7|2:3|3:60|15:55|16:56|4:867|5:868|6:869|13:27|3:60|3:60;7|2:3|3:60|15:55|16:56|4:870|5:871|6:872|13:27|3:60|3:60;1|2:3|3:60|15:55|16:873|4:874|5:875|6:876|13:27|14:27|3:60|3:60;7|2:3|3:60|15:38|4:877|5:708|6:641|'
- ..'13:27|3:60|3:60;n;9|18:709|19:318;p;7|2:3|3:60|15:38|4:878|5:711|6:712|13:27|3:60|3:60;7|2:3|3:60|15:38|4:879|5:705|6:641|13:27|3:60|3:60;n;9|18:706|19:318;p;p;12|1:880|3:4|15:881|4:882|5:883|6:884|31:318|13:318|14:318|3:4|32:885|3:4|33:886;n;5|1:887;5|1:888;n;13|1:887;n;14|1:889|4:890|6:891|34:892|35:3|36:234|37:318;n;15|1:893|4:894|6:895|34:641|35:896|37:318|38:897|39:898;15|1:899|4:900|6:895|34:641|35:896|37:318|38:901|39:'
- ..'898;15|1:902|4:903|6:904|34:641|35:896|37:318|38:905|39:898;15|1:906|4:907|6:904|34:641|35:896|37:318|38:908|39:898;p;p;p;16|1:909|40:905;16|1:910|40:911;3;p;17|1:912|2:3|3:4|15:38|4:913|5:914|6:915|31:916|13:916|41:916|42:916|30:916|14:916|3:4|3:4;2;n;1|1:917|2:3|3:4|17:896|4:918|5:919|6:920|3:4|3:4;n;5;9;4|8:921|9:922;4|8:923|9:924;p;1|1:917|2:3|3:4|17:896|4:925|5:919|6:920|3:4|3:4;n;5;9;4|8:923|9:926;p;1|1:917|2:3|3:4|17:8'
- ..'96|4:927|5:919|6:920|3:4|3:4;n;5;9;4|8:923|9:928;p;1|1:917|2:3|3:4|17:896|4:929|5:919|6:920|3:4|3:4;n;5;9;4|8:923|9:924;p;1|1:917|2:3|3:4|17:896|4:930|5:919|6:920|3:4|3:4;n;5;9;p;1|1:917|2:3|3:4|17:896|4:931|5:919|6:920|3:4|3:4;n;5;9;4|8:923|9:928;4|8:921|9:932;p;1|1:917|2:3|3:4|17:896|4:933|5:919|6:920|3:4|3:4;n;5;9;p;1|1:917|2:3|3:4|17:896|4:934|5:919|6:920|3:4|3:4;n;5;9;4|8:921|9:935;p;1|1:917|2:3|3:4|17:896|4:936|5:919|6:'
- ..'920|3:4|3:4;n;5;9;p;p;2;n;1|1:917|2:3|3:4|17:896|4:937|5:919|6:920|3:4|3:4;n;5;9;4|8:921|9:922;4|8:923|9:924;p;1|1:917|2:3|3:4|17:896|4:938|5:919|6:920|3:4|3:4;n;5;9;4|8:923|9:926;p;1|1:917|2:3|3:4|17:896|4:939|5:919|6:920|3:4|3:4;n;5;9;4|8:923|9:928;p;1|1:917|2:3|3:4|17:896|4:940|5:919|6:920|3:4|3:4;n;5;9;4|8:923|9:924;p;1|1:917|2:3|3:4|17:896|4:941|5:919|6:920|3:4|3:4;n;5;9;p;1|1:917|2:3|3:4|17:896|4:942|5:919|6:920|3:4|3:4'
- ..';n;5;9;4|8:923|9:928;4|8:921|9:932;p;1|1:917|2:3|3:4|17:896|4:943|5:919|6:920|3:4|3:4;n;5;9;p;1|1:917|2:3|3:4|17:896|4:944|5:919|6:920|3:4|3:4;n;5;9;4|8:921|9:935;p;1|1:917|2:3|3:4|17:896|4:945|5:919|6:920|3:4|3:4;n;5;9;p;p;2|1:946;n;1|1:946|2:3|3:947|15:948|17:56|4:949|6:950|13:27|14:27|3:947|3:947;n;8|18:951;18|43:952;p;1|2:3|3:4|15:948|4:949|6:953|13:27|14:27|3:4|3:4;n;8;p;2|1:954;n;1|2:3|15:948|4:955|5:956|6:957|31:916|13'
- ..':916|41:916|42:916|30:916|14:916;1|2:3|15:948|4:958|5:956|6:959|31:916|13:916|41:916|42:916|30:916|14:916;1|2:3|15:948|4:960|5:956|6:961|31:916|13:916|41:916|42:916|30:916|14:916;n;19|1:962|8:963|9:964;p;1|2:3|3:965|15:948|4:966|5:956|6:967|31:916|13:916|41:916|42:916|30:916|14:916|3:965|3:965;n;20|22:968;p;1|2:3|15:948|4:969|5:956|6:970|31:916|13:916|41:916|42:916|30:916|14:916;n;19|1:962|8:971|9:972;p;1|2:3|15:948|4:973|5:9'
- ..'56|6:974|31:916|13:916|41:916|42:916|30:916|14:916;p;p;7|2:3|3:37|15:38|4:975|5:976|6:977|13:27|3:37|3:37;1|2:3|3:37|15:38|4:978|5:49|6:979|13:27|14:27|3:37|3:37;1|3:60|15:881|4:980|5:981|6:982|13:27|14:27|3:60|3:60;2|1:983;n;10|1:984|3:985|15:948|3:985|3:985|20:986;10|1:987|3:988|15:948|3:988|3:988|20:989;10|1:990|3:60|15:55|3:60|3:60|20:991;2|1:992;n;10|1:1|3:993|15:994|44:3|3:993|3:993|20:995;n;5;6;p;21|45:3|46:996|47:56;n'
- ..';22;p;1|1:997|3:998|15:948|4:999|5:1000|6:1001|13:27|14:27|3:998|3:998;p;1|1:1002|3:4|15:38|16:3|4:1003|5:1004|6:1005|31:916|13:916|41:916|42:916|30:916|14:916|3:4|3:4;n;23|48:27|23:3|49:1006;n;24|4:1007|6:1008|50:3|51:1009|34:1010|35:3|52:1010|36:234|53:1011|38:1012|39:1013|54:3|55:1014|56:3|57:3|58:27;p;p;2|1:1015;n;21|46:1016|47:1017;1|1:997|3:998|15:948|4:1018|5:1000|6:1001|13:27|14:27|3:998|3:998;p;p;2|1:983;n;10|1:984|3'
- ..':985|15:948|3:985|3:985|20:1019;10|1:987|3:988|15:948|3:988|3:988|20:1020;10|1:990|3:60|15:55|3:60|3:60|20:1021;2|1:992;n;10|1:1|3:993|15:994|44:3|3:993|3:993|20:1022;n;5;6;p;21|45:3|59:1023|46:1024|47:1025;n;22;p;1|1:997|3:998|15:948|4:1026|5:1000|6:1001|13:27|14:27|3:998|3:998;p;2|1:1015;n;21|46:1016|47:1017;1|1:997|3:998|15:948|4:1027|5:1000|6:1001|13:27|14:27|3:998|3:998;p;1|1:1002|3:4|15:38|16:3|4:1028|5:1004|6:1005|31:9'
- ..'16|13:916|41:916|42:916|30:916|14:916|3:4|3:4;n;23|48:27|23:3|49:1006;n;24|4:1007|6:1008|50:3|51:1009|34:1010|35:3|52:1010|36:234|53:1011|38:1029|39:1013|54:3|55:1014|56:3|57:3|58:27;p;p;p;2|1:983;n;10|1:984|3:985|15:948|3:985|3:985|20:1030;10|1:987|3:988|15:948|3:988|3:988|20:1031;10|1:990|3:60|15:55|3:60|3:60|20:1032;2|1:992;n;10|1:1|3:993|15:994|44:3|3:993|3:993|20:1033;n;5;6;p;21|45:3|59:1034|46:1035|47:873;n;22;p;1|1:997'
- ..'|3:998|15:948|4:1036|5:1000|6:1001|13:27|14:27|3:998|3:998;p;2|1:1015;n;10|1:1037|3:993|15:994|44:3|3:993|3:993|20:1038;n;5;6;p;21|46:1016|47:1017;1|1:997|3:998|15:948|4:1039|5:1000|6:1001|13:27|14:27|3:998|3:998;p;1|1:1002|3:4|15:38|16:3|4:1040|5:1004|6:1005|31:916|13:916|41:916|42:916|30:916|14:916|3:4|3:4;n;23|48:27|23:3|49:1006;n;24|4:1007|6:1008|50:3|51:1009|34:1010|35:3|52:1010|36:234|53:1011|38:1041|39:1013|54:3|55:101'
- ..'4|56:3|57:3|58:27;p;p;p;1|3:60|15:881|4:1042|5:981|6:982|13:27|14:27|3:60|3:60;5|1:1043;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