Advertisement
lafur

Untitled

May 19th, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 176.01 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 64440
  3. local genv={}
  4. local Scripts = {
  5. function() function myfunction()
  6.  
  7. 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
  8. 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.)
  9. --For example: You have a brick in Workspace, Then Workspace is the parent,(cus the brick is in the "Model" called Workspace.
  10. -- So the 2 times Parent means: The Parent, Of the Parent.
  11. end
  12.  
  13. script.Parent.ClickDetector.MouseClick:connect(myfunction) end;
  14. function() function myfunction()
  15.  
  16. 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
  17. 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.)
  18. --For example: You have a brick in Workspace, Then Workspace is the parent,(cus the brick is in the "Model" called Workspace.
  19. -- So the 2 times Parent means: The Parent, Of the Parent.
  20. end
  21.  
  22. script.Parent.ClickDetector.MouseClick:connect(myfunction) end;
  23. function() function myfunction()
  24.  
  25. 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
  26. 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.)
  27. --For example: You have a brick in Workspace, Then Workspace is the parent,(cus the brick is in the "Model" called Workspace.
  28. -- So the 2 times Parent means: The Parent, Of the Parent.
  29. end
  30.  
  31. script.Parent.ClickDetector.MouseClick:connect(myfunction) end;
  32. function() function myfunction()
  33.  
  34. 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
  35. 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.)
  36. --For example: You have a brick in Workspace, Then Workspace is the parent,(cus the brick is in the "Model" called Workspace.
  37. -- So the 2 times Parent means: The Parent, Of the Parent.
  38. end
  39.  
  40. script.Parent.ClickDetector.MouseClick:connect(myfunction) end;
  41. function() -- HoverSeat script by TankLeadfoot
  42.  
  43. local SavedYPosition = script.Parent.Position.Y
  44. local Speed = 0
  45.  
  46. while (script.Parent:findFirstChild("CanFly") == nil) do wait(0.1) end
  47. while (script.Parent:findFirstChild("VMode") == nil) do wait(0.1) end
  48.  
  49. script.Parent.CanFly.Value = "Yes"
  50. script.Parent.VMode.Value = "Hover"
  51.  
  52. if (script.Parent:findFirstChild("BodyPosition") == nil) then
  53. p = Instance.new("BodyPosition")
  54. p.Name = "BodyPosition"
  55. p.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  56. p.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  57. p.Parent = script.Parent
  58. end
  59. if (script.Parent:findFirstChild("BodyGyro") == nil) then
  60. g = Instance.new("BodyGyro")
  61. g.Name = "BodyGyro"
  62. g.maxTorque = Vector3.new(math.huge,math.huge,math.huge)
  63. g.cframe = script.Parent.CFrame
  64. g.Parent = script.Parent
  65. end
  66.  
  67. while true do
  68. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  69. if (script.Parent.CanFly.Value == "Yes") then
  70. if (script.Parent.Throttle ~= 0) then
  71. if (script.Parent.Throttle > 0) then
  72. if (Speed < script.Parent.MaxSpeed) then
  73. Speed = Speed + 1
  74. end
  75. elseif (script.Parent.Throttle < 0) then
  76. if (-Speed < script.Parent.MaxSpeed) then
  77. Speed = Speed - 1
  78. end
  79. end
  80. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * Speed/4
  81. elseif (script.Parent.Throttle == 0) then
  82. if (Speed ~= 0) then
  83. if (Speed > 0) then
  84. Speed = Speed - 1
  85. elseif (Speed < 0) then
  86. Speed = Speed + 1
  87. end
  88. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z) + (script.Parent.CFrame.lookVector).unit * Speed/4
  89. elseif (Speed == 0) then
  90. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  91. end
  92. end
  93.  
  94. if (script.Parent.Steer > 0) then
  95. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe * CFrame.fromEulerAnglesXYZ(0,-0.05, 0)
  96. elseif (script.Parent.Steer < 0) then
  97. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe * CFrame.fromEulerAnglesXYZ(0,0.05, 0)
  98. elseif (script.Parent.Steer == 0) then
  99. script.Parent.BodyGyro.cframe = script.Parent.BodyGyro.cframe
  100. end
  101.  
  102. if (script.Parent:findFirstChild("VMode") ~= nil) then
  103. if (script.Parent.VMode.Value == "Up") then
  104. SavedYPosition = SavedYPosition + 1
  105. elseif (script.Parent.VMode.Value == "Down") then
  106. SavedYPosition = SavedYPosition - 1
  107. end
  108. end
  109. elseif (script.Parent.CanFly.Value == "No") then
  110. if (Speed ~= 0) then
  111. Speed = 0
  112. script.Parent.BodyPosition.position = Vector3.new(script.Parent.Position.X, SavedYPosition, script.Parent.Position.Z)
  113. end
  114. end
  115. end
  116. wait(0.1)
  117. end
  118. end;
  119. function() -- HoverSeatGUI script by TankLeadfoot
  120.  
  121. local Lock = nil
  122.  
  123. while (script.Parent:findFirstChild("CanFly") == nil) do wait(0.1) end
  124. while (script.Parent:findFirstChild("VMode") == nil) do wait(0.1) end
  125.  
  126. script.Parent.CanFly.Value = "Yes"
  127. script.Parent.VMode.Value = "Hover"
  128.  
  129. function SelectedButton(hit)
  130. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  131. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  132. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  133. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.BackgroundColor3 = Color3.new(0.5,0.5,0.5)
  134.  
  135. if (script.Parent.VMode.Value == "Up") then
  136. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.BackgroundColor3 = Color3.new(1,1,0.8)
  137. elseif (script.Parent.VMode.Value == "Down") then
  138. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.BackgroundColor3 = Color3.new(1,1,0.8)
  139. elseif (script.Parent.VMode.Value == "Hover") then
  140. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.BackgroundColor3 = Color3.new(1,1,0.8)
  141. elseif (script.Parent.VMode.Value == "AllStop") then
  142. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.BackgroundColor3 = Color3.new(1,1,0.8)
  143. end
  144. end
  145.  
  146. function Pilot(hit)
  147. if (Lock == nil) then
  148. Lock = true
  149.  
  150. if (hit == nil) then Lock = nil; return end
  151. if (hit.Parent:findFirstChild("Humanoid") == nil) then Lock = nil; return end
  152. if (game.Players:findFirstChild(hit.Parent.Name) == nil) then Lock = nil; return end
  153. wait(2)
  154. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  155. script.Parent.CanFly.Value = "Yes"
  156. end
  157. if (script.Parent:findFirstChild("VMode") ~= nil) then
  158. script.Parent.VMode.Value = "Hover"
  159. end
  160.  
  161. if (game.Players:findFirstChild(hit.Parent.Name).PlayerGui:findFirstChild("HoverSeat") == nil) then
  162. script.HoverSeat:Clone().Parent = game.Players:findFirstChild(hit.Parent.Name).PlayerGui
  163. SelectedButton(hit)
  164. end
  165.  
  166. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.UpButton.MouseButton1Click:connect(function()
  167. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  168. if (script.Parent.CanFly.Value == "Yes") then
  169. script.Parent.VMode.Value = "Up"
  170. SelectedButton(hit)
  171. end
  172. end
  173. end)
  174. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.DownButton.MouseButton1Click:connect(function()
  175. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  176. if (script.Parent.CanFly.Value == "Yes") then
  177. script.Parent.VMode.Value = "Down"
  178. SelectedButton(hit)
  179. end
  180. end
  181. end)
  182. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.HoverButton.MouseButton1Click:connect(function()
  183. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  184. script.Parent.VMode.Value = "Hover"
  185. script.Parent.CanFly.Value = "Yes"
  186. SelectedButton(hit)
  187. end
  188. end)
  189. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat.Buttons.AllStopButton.MouseButton1Click:connect(function()
  190. if (script.Parent:findFirstChild("VMode") ~= nil) and (script.Parent:findFirstChild("CanFly") ~= nil) then
  191. script.Parent.VMode.Value = "AllStop"
  192. script.Parent.CanFly.Value = "No"
  193. SelectedButton(hit)
  194. end
  195. end)
  196.  
  197. while (hit.Parent.Humanoid.Health > 0) and (hit.Parent.Humanoid.Sit == true) do wait(0.1) end
  198. if (game.Players:findFirstChild(hit.Parent.Name).PlayerGui:findFirstChild("HoverSeat") ~= nil) then
  199. game.Players:findFirstChild(hit.Parent.Name).PlayerGui.HoverSeat:Remove()
  200. end
  201.  
  202. if (script.Parent:findFirstChild("CanFly") ~= nil) then
  203. script.Parent.CanFly.Value = "No"
  204. end
  205. Lock = nil
  206. end
  207. end
  208.  
  209. script.Parent.Touched:connect(Pilot)
  210. end;
  211. function() function stick(x, y)
  212.  
  213. weld = Instance.new("Weld")
  214.  
  215.  
  216.  
  217. weld.Part0 = x
  218.  
  219. weld.Part1 = y
  220.  
  221.  
  222.  
  223. local HitPos = x.Position
  224.  
  225.  
  226.  
  227. local CJ = CFrame.new(HitPos)
  228.  
  229. local C0 = x.CFrame:inverse() *CJ
  230.  
  231. local C1 = y.CFrame:inverse() * CJ
  232.  
  233.  
  234.  
  235. weld.C0 = C0
  236.  
  237. weld.C1 = C1
  238.  
  239.  
  240.  
  241. weld.Parent = x
  242.  
  243. end
  244.  
  245.  
  246.  
  247. function onTouched(part)
  248.  
  249. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  250.  
  251. if h~=nil then
  252.  
  253. wait(0.001)
  254. h.Health = 0
  255. children = h.Parent:children()
  256. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  257. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  258. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  259. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  260. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  261. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  262. part.Parent:findFirstChild("Head").Anchored = true
  263. part.Parent:findFirstChild("Torso").Anchored = true
  264. part.Parent:findFirstChild("Left Arm").Anchored = true
  265. part.Parent:findFirstChild("Right Arm").Anchored = true
  266. part.Parent:findFirstChild("Left Leg").Anchored = true
  267. part.Parent:findFirstChild("Right Leg").Anchored = true
  268.  
  269. part.Parent:findFirstChild("Head").Reflectance = 1
  270. part.Parent:findFirstChild("Torso").Reflectance = 1
  271. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  272. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  273. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  274. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  275.  
  276. wait(0.1)
  277.  
  278. part.Parent:findFirstChild("Head").Reflectance = 0
  279. part.Parent:findFirstChild("Torso").Reflectance = 0
  280. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  281. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  282. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  283. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  284.  
  285. wait(0.1)
  286.  
  287. part.Parent:findFirstChild("Head").Reflectance = 1
  288. part.Parent:findFirstChild("Torso").Reflectance = 1
  289. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  290. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  291. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  292. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  293.  
  294. wait(0.1)
  295.  
  296. part.Parent:findFirstChild("Head").Reflectance = 0
  297. part.Parent:findFirstChild("Torso").Reflectance = 0
  298. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  299. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  300. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  301. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  302.  
  303. wait(0.1)
  304.  
  305. part.Parent:findFirstChild("Head").Reflectance = 1
  306. part.Parent:findFirstChild("Torso").Reflectance = 1
  307. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  308. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  309. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  310. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  311.  
  312. wait(0.1)
  313.  
  314. part.Parent:findFirstChild("Head").Reflectance = 0
  315. part.Parent:findFirstChild("Torso").Reflectance = 0
  316. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  317. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  318. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  319. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  320.  
  321. wait(0.1)
  322.  
  323. part.Parent:findFirstChild("Head").Reflectance = 1
  324. part.Parent:findFirstChild("Torso").Reflectance = 1
  325. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  326. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  327. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  328. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  329.  
  330. wait(0.1)
  331.  
  332. part.Parent:findFirstChild("Head").Reflectance = 0
  333. part.Parent:findFirstChild("Torso").Reflectance = 0
  334. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  335. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  336. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  337. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  338.  
  339. wait(0.1)
  340.  
  341. part.Parent:findFirstChild("Head").Reflectance = 1
  342. part.Parent:findFirstChild("Torso").Reflectance = 1
  343. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  344. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  345. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  346. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  347.  
  348. wait(0.1)
  349.  
  350. part.Parent:findFirstChild("Head").Reflectance = 0
  351. part.Parent:findFirstChild("Torso").Reflectance = 0
  352. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  353. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  354. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  355. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  356.  
  357. wait(0.1)
  358.  
  359. part.Parent:findFirstChild("Head").Anchored = false
  360. part.Parent:findFirstChild("Torso").Anchored = false
  361. part.Parent:findFirstChild("Left Arm").Anchored = false
  362. part.Parent:findFirstChild("Right Arm").Anchored = false
  363. part.Parent:findFirstChild("Left Leg").Anchored = false
  364. part.Parent:findFirstChild("Right Leg").Anchored = false
  365.  
  366. for i=1,#children do
  367.  
  368. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  369.  
  370. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  371.  
  372. end
  373.  
  374. end
  375.  
  376.  
  377. end
  378.  
  379.  
  380.  
  381. script.Parent.Touched:connect(onTouched)
  382. end;
  383. function() function stick(x, y)
  384.  
  385. weld = Instance.new("Weld")
  386.  
  387.  
  388.  
  389. weld.Part0 = x
  390.  
  391. weld.Part1 = y
  392.  
  393.  
  394.  
  395. local HitPos = x.Position
  396.  
  397.  
  398.  
  399. local CJ = CFrame.new(HitPos)
  400.  
  401. local C0 = x.CFrame:inverse() *CJ
  402.  
  403. local C1 = y.CFrame:inverse() * CJ
  404.  
  405.  
  406.  
  407. weld.C0 = C0
  408.  
  409. weld.C1 = C1
  410.  
  411.  
  412.  
  413. weld.Parent = x
  414.  
  415. end
  416.  
  417.  
  418.  
  419. function onTouched(part)
  420.  
  421. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  422.  
  423. if h~=nil then
  424.  
  425. wait(0.001)
  426. h.Health = 0
  427. children = h.Parent:children()
  428. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  429. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  430. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  431. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  432. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  433. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  434. part.Parent:findFirstChild("Head").Anchored = true
  435. part.Parent:findFirstChild("Torso").Anchored = true
  436. part.Parent:findFirstChild("Left Arm").Anchored = true
  437. part.Parent:findFirstChild("Right Arm").Anchored = true
  438. part.Parent:findFirstChild("Left Leg").Anchored = true
  439. part.Parent:findFirstChild("Right Leg").Anchored = true
  440.  
  441. part.Parent:findFirstChild("Head").Reflectance = 1
  442. part.Parent:findFirstChild("Torso").Reflectance = 1
  443. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  444. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  445. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  446. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  447.  
  448. wait(0.1)
  449.  
  450. part.Parent:findFirstChild("Head").Reflectance = 0
  451. part.Parent:findFirstChild("Torso").Reflectance = 0
  452. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  453. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  454. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  455. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  456.  
  457. wait(0.1)
  458.  
  459. part.Parent:findFirstChild("Head").Reflectance = 1
  460. part.Parent:findFirstChild("Torso").Reflectance = 1
  461. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  462. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  463. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  464. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  465.  
  466. wait(0.1)
  467.  
  468. part.Parent:findFirstChild("Head").Reflectance = 0
  469. part.Parent:findFirstChild("Torso").Reflectance = 0
  470. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  471. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  472. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  473. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  474.  
  475. wait(0.1)
  476.  
  477. part.Parent:findFirstChild("Head").Reflectance = 1
  478. part.Parent:findFirstChild("Torso").Reflectance = 1
  479. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  480. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  481. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  482. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  483.  
  484. wait(0.1)
  485.  
  486. part.Parent:findFirstChild("Head").Reflectance = 0
  487. part.Parent:findFirstChild("Torso").Reflectance = 0
  488. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  489. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  490. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  491. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  492.  
  493. wait(0.1)
  494.  
  495. part.Parent:findFirstChild("Head").Reflectance = 1
  496. part.Parent:findFirstChild("Torso").Reflectance = 1
  497. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  498. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  499. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  500. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  501.  
  502. wait(0.1)
  503.  
  504. part.Parent:findFirstChild("Head").Reflectance = 0
  505. part.Parent:findFirstChild("Torso").Reflectance = 0
  506. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  507. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  508. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  509. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  510.  
  511. wait(0.1)
  512.  
  513. part.Parent:findFirstChild("Head").Reflectance = 1
  514. part.Parent:findFirstChild("Torso").Reflectance = 1
  515. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  516. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  517. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  518. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  519.  
  520. wait(0.1)
  521.  
  522. part.Parent:findFirstChild("Head").Reflectance = 0
  523. part.Parent:findFirstChild("Torso").Reflectance = 0
  524. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  525. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  526. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  527. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  528.  
  529. wait(0.1)
  530.  
  531. part.Parent:findFirstChild("Head").Anchored = false
  532. part.Parent:findFirstChild("Torso").Anchored = false
  533. part.Parent:findFirstChild("Left Arm").Anchored = false
  534. part.Parent:findFirstChild("Right Arm").Anchored = false
  535. part.Parent:findFirstChild("Left Leg").Anchored = false
  536. part.Parent:findFirstChild("Right Leg").Anchored = false
  537.  
  538. for i=1,#children do
  539.  
  540. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  541.  
  542. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  543.  
  544. end
  545.  
  546. end
  547.  
  548.  
  549. end
  550.  
  551.  
  552.  
  553. script.Parent.Touched:connect(onTouched)
  554. end;
  555. function() function stick(x, y)
  556.  
  557. weld = Instance.new("Weld")
  558.  
  559.  
  560.  
  561. weld.Part0 = x
  562.  
  563. weld.Part1 = y
  564.  
  565.  
  566.  
  567. local HitPos = x.Position
  568.  
  569.  
  570.  
  571. local CJ = CFrame.new(HitPos)
  572.  
  573. local C0 = x.CFrame:inverse() *CJ
  574.  
  575. local C1 = y.CFrame:inverse() * CJ
  576.  
  577.  
  578.  
  579. weld.C0 = C0
  580.  
  581. weld.C1 = C1
  582.  
  583.  
  584.  
  585. weld.Parent = x
  586.  
  587. end
  588.  
  589.  
  590.  
  591. function onTouched(part)
  592.  
  593. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  594.  
  595. if h~=nil then
  596.  
  597. wait(0.001)
  598. h.Health = 0
  599. children = h.Parent:children()
  600. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  601. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  602. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  603. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  604. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  605. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  606. part.Parent:findFirstChild("Head").Anchored = true
  607. part.Parent:findFirstChild("Torso").Anchored = true
  608. part.Parent:findFirstChild("Left Arm").Anchored = true
  609. part.Parent:findFirstChild("Right Arm").Anchored = true
  610. part.Parent:findFirstChild("Left Leg").Anchored = true
  611. part.Parent:findFirstChild("Right Leg").Anchored = true
  612.  
  613. part.Parent:findFirstChild("Head").Reflectance = 1
  614. part.Parent:findFirstChild("Torso").Reflectance = 1
  615. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  616. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  617. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  618. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  619.  
  620. wait(0.1)
  621.  
  622. part.Parent:findFirstChild("Head").Reflectance = 0
  623. part.Parent:findFirstChild("Torso").Reflectance = 0
  624. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  625. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  626. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  627. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  628.  
  629. wait(0.1)
  630.  
  631. part.Parent:findFirstChild("Head").Reflectance = 1
  632. part.Parent:findFirstChild("Torso").Reflectance = 1
  633. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  634. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  635. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  636. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  637.  
  638. wait(0.1)
  639.  
  640. part.Parent:findFirstChild("Head").Reflectance = 0
  641. part.Parent:findFirstChild("Torso").Reflectance = 0
  642. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  643. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  644. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  645. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  646.  
  647. wait(0.1)
  648.  
  649. part.Parent:findFirstChild("Head").Reflectance = 1
  650. part.Parent:findFirstChild("Torso").Reflectance = 1
  651. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  652. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  653. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  654. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  655.  
  656. wait(0.1)
  657.  
  658. part.Parent:findFirstChild("Head").Reflectance = 0
  659. part.Parent:findFirstChild("Torso").Reflectance = 0
  660. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  661. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  662. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  663. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  664.  
  665. wait(0.1)
  666.  
  667. part.Parent:findFirstChild("Head").Reflectance = 1
  668. part.Parent:findFirstChild("Torso").Reflectance = 1
  669. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  670. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  671. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  672. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  673.  
  674. wait(0.1)
  675.  
  676. part.Parent:findFirstChild("Head").Reflectance = 0
  677. part.Parent:findFirstChild("Torso").Reflectance = 0
  678. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  679. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  680. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  681. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  682.  
  683. wait(0.1)
  684.  
  685. part.Parent:findFirstChild("Head").Reflectance = 1
  686. part.Parent:findFirstChild("Torso").Reflectance = 1
  687. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  688. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  689. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  690. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  691.  
  692. wait(0.1)
  693.  
  694. part.Parent:findFirstChild("Head").Reflectance = 0
  695. part.Parent:findFirstChild("Torso").Reflectance = 0
  696. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  697. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  698. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  699. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  700.  
  701. wait(0.1)
  702.  
  703. part.Parent:findFirstChild("Head").Anchored = false
  704. part.Parent:findFirstChild("Torso").Anchored = false
  705. part.Parent:findFirstChild("Left Arm").Anchored = false
  706. part.Parent:findFirstChild("Right Arm").Anchored = false
  707. part.Parent:findFirstChild("Left Leg").Anchored = false
  708. part.Parent:findFirstChild("Right Leg").Anchored = false
  709.  
  710. for i=1,#children do
  711.  
  712. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  713.  
  714. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  715.  
  716. end
  717.  
  718. end
  719.  
  720.  
  721. end
  722.  
  723.  
  724.  
  725. script.Parent.Touched:connect(onTouched)
  726. end;
  727. function() function stick(x, y)
  728.  
  729. weld = Instance.new("Weld")
  730.  
  731.  
  732.  
  733. weld.Part0 = x
  734.  
  735. weld.Part1 = y
  736.  
  737.  
  738.  
  739. local HitPos = x.Position
  740.  
  741.  
  742.  
  743. local CJ = CFrame.new(HitPos)
  744.  
  745. local C0 = x.CFrame:inverse() *CJ
  746.  
  747. local C1 = y.CFrame:inverse() * CJ
  748.  
  749.  
  750.  
  751. weld.C0 = C0
  752.  
  753. weld.C1 = C1
  754.  
  755.  
  756.  
  757. weld.Parent = x
  758.  
  759. end
  760.  
  761.  
  762.  
  763. function onTouched(part)
  764.  
  765. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  766.  
  767. if h~=nil then
  768.  
  769. wait(0.001)
  770. h.Health = 0
  771. children = h.Parent:children()
  772. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  773. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  774. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  775. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  776. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  777. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  778. part.Parent:findFirstChild("Head").Anchored = true
  779. part.Parent:findFirstChild("Torso").Anchored = true
  780. part.Parent:findFirstChild("Left Arm").Anchored = true
  781. part.Parent:findFirstChild("Right Arm").Anchored = true
  782. part.Parent:findFirstChild("Left Leg").Anchored = true
  783. part.Parent:findFirstChild("Right Leg").Anchored = true
  784.  
  785. part.Parent:findFirstChild("Head").Reflectance = 1
  786. part.Parent:findFirstChild("Torso").Reflectance = 1
  787. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  788. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  789. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  790. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  791.  
  792. wait(0.1)
  793.  
  794. part.Parent:findFirstChild("Head").Reflectance = 0
  795. part.Parent:findFirstChild("Torso").Reflectance = 0
  796. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  797. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  798. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  799. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  800.  
  801. wait(0.1)
  802.  
  803. part.Parent:findFirstChild("Head").Reflectance = 1
  804. part.Parent:findFirstChild("Torso").Reflectance = 1
  805. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  806. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  807. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  808. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  809.  
  810. wait(0.1)
  811.  
  812. part.Parent:findFirstChild("Head").Reflectance = 0
  813. part.Parent:findFirstChild("Torso").Reflectance = 0
  814. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  815. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  816. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  817. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  818.  
  819. wait(0.1)
  820.  
  821. part.Parent:findFirstChild("Head").Reflectance = 1
  822. part.Parent:findFirstChild("Torso").Reflectance = 1
  823. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  824. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  825. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  826. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  827.  
  828. wait(0.1)
  829.  
  830. part.Parent:findFirstChild("Head").Reflectance = 0
  831. part.Parent:findFirstChild("Torso").Reflectance = 0
  832. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  833. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  834. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  835. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  836.  
  837. wait(0.1)
  838.  
  839. part.Parent:findFirstChild("Head").Reflectance = 1
  840. part.Parent:findFirstChild("Torso").Reflectance = 1
  841. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  842. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  843. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  844. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  845.  
  846. wait(0.1)
  847.  
  848. part.Parent:findFirstChild("Head").Reflectance = 0
  849. part.Parent:findFirstChild("Torso").Reflectance = 0
  850. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  851. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  852. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  853. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  854.  
  855. wait(0.1)
  856.  
  857. part.Parent:findFirstChild("Head").Reflectance = 1
  858. part.Parent:findFirstChild("Torso").Reflectance = 1
  859. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  860. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  861. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  862. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  863.  
  864. wait(0.1)
  865.  
  866. part.Parent:findFirstChild("Head").Reflectance = 0
  867. part.Parent:findFirstChild("Torso").Reflectance = 0
  868. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  869. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  870. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  871. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  872.  
  873. wait(0.1)
  874.  
  875. part.Parent:findFirstChild("Head").Anchored = false
  876. part.Parent:findFirstChild("Torso").Anchored = false
  877. part.Parent:findFirstChild("Left Arm").Anchored = false
  878. part.Parent:findFirstChild("Right Arm").Anchored = false
  879. part.Parent:findFirstChild("Left Leg").Anchored = false
  880. part.Parent:findFirstChild("Right Leg").Anchored = false
  881.  
  882. for i=1,#children do
  883.  
  884. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  885.  
  886. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  887.  
  888. end
  889.  
  890. end
  891.  
  892.  
  893. end
  894.  
  895.  
  896.  
  897. script.Parent.Touched:connect(onTouched)
  898. end;
  899. function() function stick(x, y)
  900.  
  901. weld = Instance.new("Weld")
  902.  
  903.  
  904.  
  905. weld.Part0 = x
  906.  
  907. weld.Part1 = y
  908.  
  909.  
  910.  
  911. local HitPos = x.Position
  912.  
  913.  
  914.  
  915. local CJ = CFrame.new(HitPos)
  916.  
  917. local C0 = x.CFrame:inverse() *CJ
  918.  
  919. local C1 = y.CFrame:inverse() * CJ
  920.  
  921.  
  922.  
  923. weld.C0 = C0
  924.  
  925. weld.C1 = C1
  926.  
  927.  
  928.  
  929. weld.Parent = x
  930.  
  931. end
  932.  
  933.  
  934.  
  935. function onTouched(part)
  936.  
  937. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  938.  
  939. if h~=nil then
  940.  
  941. wait(0.001)
  942. h.Health = 0
  943. children = h.Parent:children()
  944. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  945. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  946. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  947. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  948. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  949. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  950. part.Parent:findFirstChild("Head").Anchored = true
  951. part.Parent:findFirstChild("Torso").Anchored = true
  952. part.Parent:findFirstChild("Left Arm").Anchored = true
  953. part.Parent:findFirstChild("Right Arm").Anchored = true
  954. part.Parent:findFirstChild("Left Leg").Anchored = true
  955. part.Parent:findFirstChild("Right Leg").Anchored = true
  956.  
  957. part.Parent:findFirstChild("Head").Reflectance = 1
  958. part.Parent:findFirstChild("Torso").Reflectance = 1
  959. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  960. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  961. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  962. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  963.  
  964. wait(0.1)
  965.  
  966. part.Parent:findFirstChild("Head").Reflectance = 0
  967. part.Parent:findFirstChild("Torso").Reflectance = 0
  968. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  969. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  970. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  971. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  972.  
  973. wait(0.1)
  974.  
  975. part.Parent:findFirstChild("Head").Reflectance = 1
  976. part.Parent:findFirstChild("Torso").Reflectance = 1
  977. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  978. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  979. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  980. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  981.  
  982. wait(0.1)
  983.  
  984. part.Parent:findFirstChild("Head").Reflectance = 0
  985. part.Parent:findFirstChild("Torso").Reflectance = 0
  986. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  987. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  988. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  989. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  990.  
  991. wait(0.1)
  992.  
  993. part.Parent:findFirstChild("Head").Reflectance = 1
  994. part.Parent:findFirstChild("Torso").Reflectance = 1
  995. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  996. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  997. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  998. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  999.  
  1000. wait(0.1)
  1001.  
  1002. part.Parent:findFirstChild("Head").Reflectance = 0
  1003. part.Parent:findFirstChild("Torso").Reflectance = 0
  1004. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1005. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1006. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1007. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1008.  
  1009. wait(0.1)
  1010.  
  1011. part.Parent:findFirstChild("Head").Reflectance = 1
  1012. part.Parent:findFirstChild("Torso").Reflectance = 1
  1013. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1014. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1015. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1016. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1017.  
  1018. wait(0.1)
  1019.  
  1020. part.Parent:findFirstChild("Head").Reflectance = 0
  1021. part.Parent:findFirstChild("Torso").Reflectance = 0
  1022. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1023. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1024. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1025. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1026.  
  1027. wait(0.1)
  1028.  
  1029. part.Parent:findFirstChild("Head").Reflectance = 1
  1030. part.Parent:findFirstChild("Torso").Reflectance = 1
  1031. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1032. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1033. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1034. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1035.  
  1036. wait(0.1)
  1037.  
  1038. part.Parent:findFirstChild("Head").Reflectance = 0
  1039. part.Parent:findFirstChild("Torso").Reflectance = 0
  1040. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1041. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1042. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1043. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1044.  
  1045. wait(0.1)
  1046.  
  1047. part.Parent:findFirstChild("Head").Anchored = false
  1048. part.Parent:findFirstChild("Torso").Anchored = false
  1049. part.Parent:findFirstChild("Left Arm").Anchored = false
  1050. part.Parent:findFirstChild("Right Arm").Anchored = false
  1051. part.Parent:findFirstChild("Left Leg").Anchored = false
  1052. part.Parent:findFirstChild("Right Leg").Anchored = false
  1053.  
  1054. for i=1,#children do
  1055.  
  1056. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  1057.  
  1058. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  1059.  
  1060. end
  1061.  
  1062. end
  1063.  
  1064.  
  1065. end
  1066.  
  1067.  
  1068.  
  1069. script.Parent.Touched:connect(onTouched)
  1070. end;
  1071. function() function stick(x, y)
  1072.  
  1073. weld = Instance.new("Weld")
  1074.  
  1075.  
  1076.  
  1077. weld.Part0 = x
  1078.  
  1079. weld.Part1 = y
  1080.  
  1081.  
  1082.  
  1083. local HitPos = x.Position
  1084.  
  1085.  
  1086.  
  1087. local CJ = CFrame.new(HitPos)
  1088.  
  1089. local C0 = x.CFrame:inverse() *CJ
  1090.  
  1091. local C1 = y.CFrame:inverse() * CJ
  1092.  
  1093.  
  1094.  
  1095. weld.C0 = C0
  1096.  
  1097. weld.C1 = C1
  1098.  
  1099.  
  1100.  
  1101. weld.Parent = x
  1102.  
  1103. end
  1104.  
  1105.  
  1106.  
  1107. function onTouched(part)
  1108.  
  1109. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  1110.  
  1111. if h~=nil then
  1112.  
  1113. wait(0.001)
  1114. h.Health = 0
  1115. children = h.Parent:children()
  1116. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  1117. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  1118. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  1119. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  1120. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  1121. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  1122. part.Parent:findFirstChild("Head").Anchored = true
  1123. part.Parent:findFirstChild("Torso").Anchored = true
  1124. part.Parent:findFirstChild("Left Arm").Anchored = true
  1125. part.Parent:findFirstChild("Right Arm").Anchored = true
  1126. part.Parent:findFirstChild("Left Leg").Anchored = true
  1127. part.Parent:findFirstChild("Right Leg").Anchored = true
  1128.  
  1129. part.Parent:findFirstChild("Head").Reflectance = 1
  1130. part.Parent:findFirstChild("Torso").Reflectance = 1
  1131. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1132. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1133. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1134. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1135.  
  1136. wait(0.1)
  1137.  
  1138. part.Parent:findFirstChild("Head").Reflectance = 0
  1139. part.Parent:findFirstChild("Torso").Reflectance = 0
  1140. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1141. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1142. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1143. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1144.  
  1145. wait(0.1)
  1146.  
  1147. part.Parent:findFirstChild("Head").Reflectance = 1
  1148. part.Parent:findFirstChild("Torso").Reflectance = 1
  1149. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1150. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1151. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1152. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1153.  
  1154. wait(0.1)
  1155.  
  1156. part.Parent:findFirstChild("Head").Reflectance = 0
  1157. part.Parent:findFirstChild("Torso").Reflectance = 0
  1158. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1159. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1160. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1161. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1162.  
  1163. wait(0.1)
  1164.  
  1165. part.Parent:findFirstChild("Head").Reflectance = 1
  1166. part.Parent:findFirstChild("Torso").Reflectance = 1
  1167. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1168. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1169. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1170. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1171.  
  1172. wait(0.1)
  1173.  
  1174. part.Parent:findFirstChild("Head").Reflectance = 0
  1175. part.Parent:findFirstChild("Torso").Reflectance = 0
  1176. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1177. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1178. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1179. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1180.  
  1181. wait(0.1)
  1182.  
  1183. part.Parent:findFirstChild("Head").Reflectance = 1
  1184. part.Parent:findFirstChild("Torso").Reflectance = 1
  1185. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1186. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1187. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1188. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1189.  
  1190. wait(0.1)
  1191.  
  1192. part.Parent:findFirstChild("Head").Reflectance = 0
  1193. part.Parent:findFirstChild("Torso").Reflectance = 0
  1194. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1195. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1196. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1197. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1198.  
  1199. wait(0.1)
  1200.  
  1201. part.Parent:findFirstChild("Head").Reflectance = 1
  1202. part.Parent:findFirstChild("Torso").Reflectance = 1
  1203. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1204. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1205. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1206. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1207.  
  1208. wait(0.1)
  1209.  
  1210. part.Parent:findFirstChild("Head").Reflectance = 0
  1211. part.Parent:findFirstChild("Torso").Reflectance = 0
  1212. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1213. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1214. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1215. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1216.  
  1217. wait(0.1)
  1218.  
  1219. part.Parent:findFirstChild("Head").Anchored = false
  1220. part.Parent:findFirstChild("Torso").Anchored = false
  1221. part.Parent:findFirstChild("Left Arm").Anchored = false
  1222. part.Parent:findFirstChild("Right Arm").Anchored = false
  1223. part.Parent:findFirstChild("Left Leg").Anchored = false
  1224. part.Parent:findFirstChild("Right Leg").Anchored = false
  1225.  
  1226. for i=1,#children do
  1227.  
  1228. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  1229.  
  1230. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  1231.  
  1232. end
  1233.  
  1234. end
  1235.  
  1236.  
  1237. end
  1238.  
  1239.  
  1240.  
  1241. script.Parent.Touched:connect(onTouched)
  1242. end;
  1243. function() function stick(x, y)
  1244.  
  1245. weld = Instance.new("Weld")
  1246.  
  1247.  
  1248.  
  1249. weld.Part0 = x
  1250.  
  1251. weld.Part1 = y
  1252.  
  1253.  
  1254.  
  1255. local HitPos = x.Position
  1256.  
  1257.  
  1258.  
  1259. local CJ = CFrame.new(HitPos)
  1260.  
  1261. local C0 = x.CFrame:inverse() *CJ
  1262.  
  1263. local C1 = y.CFrame:inverse() * CJ
  1264.  
  1265.  
  1266.  
  1267. weld.C0 = C0
  1268.  
  1269. weld.C1 = C1
  1270.  
  1271.  
  1272.  
  1273. weld.Parent = x
  1274.  
  1275. end
  1276.  
  1277.  
  1278.  
  1279. function onTouched(part)
  1280.  
  1281. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  1282.  
  1283. if h~=nil then
  1284.  
  1285. wait(0.001)
  1286. h.Health = 0
  1287. children = h.Parent:children()
  1288. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  1289. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  1290. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  1291. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  1292. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  1293. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  1294. part.Parent:findFirstChild("Head").Anchored = true
  1295. part.Parent:findFirstChild("Torso").Anchored = true
  1296. part.Parent:findFirstChild("Left Arm").Anchored = true
  1297. part.Parent:findFirstChild("Right Arm").Anchored = true
  1298. part.Parent:findFirstChild("Left Leg").Anchored = true
  1299. part.Parent:findFirstChild("Right Leg").Anchored = true
  1300.  
  1301. part.Parent:findFirstChild("Head").Reflectance = 1
  1302. part.Parent:findFirstChild("Torso").Reflectance = 1
  1303. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1304. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1305. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1306. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1307.  
  1308. wait(0.1)
  1309.  
  1310. part.Parent:findFirstChild("Head").Reflectance = 0
  1311. part.Parent:findFirstChild("Torso").Reflectance = 0
  1312. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1313. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1314. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1315. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1316.  
  1317. wait(0.1)
  1318.  
  1319. part.Parent:findFirstChild("Head").Reflectance = 1
  1320. part.Parent:findFirstChild("Torso").Reflectance = 1
  1321. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1322. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1323. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1324. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1325.  
  1326. wait(0.1)
  1327.  
  1328. part.Parent:findFirstChild("Head").Reflectance = 0
  1329. part.Parent:findFirstChild("Torso").Reflectance = 0
  1330. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1331. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1332. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1333. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1334.  
  1335. wait(0.1)
  1336.  
  1337. part.Parent:findFirstChild("Head").Reflectance = 1
  1338. part.Parent:findFirstChild("Torso").Reflectance = 1
  1339. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1340. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1341. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1342. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1343.  
  1344. wait(0.1)
  1345.  
  1346. part.Parent:findFirstChild("Head").Reflectance = 0
  1347. part.Parent:findFirstChild("Torso").Reflectance = 0
  1348. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1349. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1350. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1351. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1352.  
  1353. wait(0.1)
  1354.  
  1355. part.Parent:findFirstChild("Head").Reflectance = 1
  1356. part.Parent:findFirstChild("Torso").Reflectance = 1
  1357. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1358. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1359. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1360. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1361.  
  1362. wait(0.1)
  1363.  
  1364. part.Parent:findFirstChild("Head").Reflectance = 0
  1365. part.Parent:findFirstChild("Torso").Reflectance = 0
  1366. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1367. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1368. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1369. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1370.  
  1371. wait(0.1)
  1372.  
  1373. part.Parent:findFirstChild("Head").Reflectance = 1
  1374. part.Parent:findFirstChild("Torso").Reflectance = 1
  1375. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1376. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1377. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1378. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1379.  
  1380. wait(0.1)
  1381.  
  1382. part.Parent:findFirstChild("Head").Reflectance = 0
  1383. part.Parent:findFirstChild("Torso").Reflectance = 0
  1384. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1385. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1386. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1387. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1388.  
  1389. wait(0.1)
  1390.  
  1391. part.Parent:findFirstChild("Head").Anchored = false
  1392. part.Parent:findFirstChild("Torso").Anchored = false
  1393. part.Parent:findFirstChild("Left Arm").Anchored = false
  1394. part.Parent:findFirstChild("Right Arm").Anchored = false
  1395. part.Parent:findFirstChild("Left Leg").Anchored = false
  1396. part.Parent:findFirstChild("Right Leg").Anchored = false
  1397.  
  1398. for i=1,#children do
  1399.  
  1400. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  1401.  
  1402. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  1403.  
  1404. end
  1405.  
  1406. end
  1407.  
  1408.  
  1409. end
  1410.  
  1411.  
  1412.  
  1413. script.Parent.Touched:connect(onTouched)
  1414. end;
  1415. function() function stick(x, y)
  1416.  
  1417. weld = Instance.new("Weld")
  1418.  
  1419.  
  1420.  
  1421. weld.Part0 = x
  1422.  
  1423. weld.Part1 = y
  1424.  
  1425.  
  1426.  
  1427. local HitPos = x.Position
  1428.  
  1429.  
  1430.  
  1431. local CJ = CFrame.new(HitPos)
  1432.  
  1433. local C0 = x.CFrame:inverse() *CJ
  1434.  
  1435. local C1 = y.CFrame:inverse() * CJ
  1436.  
  1437.  
  1438.  
  1439. weld.C0 = C0
  1440.  
  1441. weld.C1 = C1
  1442.  
  1443.  
  1444.  
  1445. weld.Parent = x
  1446.  
  1447. end
  1448.  
  1449.  
  1450.  
  1451. function onTouched(part)
  1452.  
  1453. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  1454.  
  1455. if h~=nil then
  1456.  
  1457. wait(0.001)
  1458. h.Health = 0
  1459. children = h.Parent:children()
  1460. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  1461. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  1462. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  1463. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  1464. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  1465. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  1466. part.Parent:findFirstChild("Head").Anchored = true
  1467. part.Parent:findFirstChild("Torso").Anchored = true
  1468. part.Parent:findFirstChild("Left Arm").Anchored = true
  1469. part.Parent:findFirstChild("Right Arm").Anchored = true
  1470. part.Parent:findFirstChild("Left Leg").Anchored = true
  1471. part.Parent:findFirstChild("Right Leg").Anchored = true
  1472.  
  1473. part.Parent:findFirstChild("Head").Reflectance = 1
  1474. part.Parent:findFirstChild("Torso").Reflectance = 1
  1475. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1476. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1477. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1478. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1479.  
  1480. wait(0.1)
  1481.  
  1482. part.Parent:findFirstChild("Head").Reflectance = 0
  1483. part.Parent:findFirstChild("Torso").Reflectance = 0
  1484. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1485. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1486. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1487. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1488.  
  1489. wait(0.1)
  1490.  
  1491. part.Parent:findFirstChild("Head").Reflectance = 1
  1492. part.Parent:findFirstChild("Torso").Reflectance = 1
  1493. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1494. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1495. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1496. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1497.  
  1498. wait(0.1)
  1499.  
  1500. part.Parent:findFirstChild("Head").Reflectance = 0
  1501. part.Parent:findFirstChild("Torso").Reflectance = 0
  1502. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1503. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1504. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1505. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1506.  
  1507. wait(0.1)
  1508.  
  1509. part.Parent:findFirstChild("Head").Reflectance = 1
  1510. part.Parent:findFirstChild("Torso").Reflectance = 1
  1511. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1512. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1513. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1514. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1515.  
  1516. wait(0.1)
  1517.  
  1518. part.Parent:findFirstChild("Head").Reflectance = 0
  1519. part.Parent:findFirstChild("Torso").Reflectance = 0
  1520. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1521. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1522. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1523. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1524.  
  1525. wait(0.1)
  1526.  
  1527. part.Parent:findFirstChild("Head").Reflectance = 1
  1528. part.Parent:findFirstChild("Torso").Reflectance = 1
  1529. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1530. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1531. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1532. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1533.  
  1534. wait(0.1)
  1535.  
  1536. part.Parent:findFirstChild("Head").Reflectance = 0
  1537. part.Parent:findFirstChild("Torso").Reflectance = 0
  1538. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1539. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1540. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1541. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1542.  
  1543. wait(0.1)
  1544.  
  1545. part.Parent:findFirstChild("Head").Reflectance = 1
  1546. part.Parent:findFirstChild("Torso").Reflectance = 1
  1547. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1548. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1549. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1550. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1551.  
  1552. wait(0.1)
  1553.  
  1554. part.Parent:findFirstChild("Head").Reflectance = 0
  1555. part.Parent:findFirstChild("Torso").Reflectance = 0
  1556. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1557. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1558. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1559. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1560.  
  1561. wait(0.1)
  1562.  
  1563. part.Parent:findFirstChild("Head").Anchored = false
  1564. part.Parent:findFirstChild("Torso").Anchored = false
  1565. part.Parent:findFirstChild("Left Arm").Anchored = false
  1566. part.Parent:findFirstChild("Right Arm").Anchored = false
  1567. part.Parent:findFirstChild("Left Leg").Anchored = false
  1568. part.Parent:findFirstChild("Right Leg").Anchored = false
  1569.  
  1570. for i=1,#children do
  1571.  
  1572. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  1573.  
  1574. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  1575.  
  1576. end
  1577.  
  1578. end
  1579.  
  1580.  
  1581. end
  1582.  
  1583.  
  1584.  
  1585. script.Parent.Touched:connect(onTouched)
  1586. end;
  1587. function() function stick(x, y)
  1588.  
  1589. weld = Instance.new("Weld")
  1590.  
  1591.  
  1592.  
  1593. weld.Part0 = x
  1594.  
  1595. weld.Part1 = y
  1596.  
  1597.  
  1598.  
  1599. local HitPos = x.Position
  1600.  
  1601.  
  1602.  
  1603. local CJ = CFrame.new(HitPos)
  1604.  
  1605. local C0 = x.CFrame:inverse() *CJ
  1606.  
  1607. local C1 = y.CFrame:inverse() * CJ
  1608.  
  1609.  
  1610.  
  1611. weld.C0 = C0
  1612.  
  1613. weld.C1 = C1
  1614.  
  1615.  
  1616.  
  1617. weld.Parent = x
  1618.  
  1619. end
  1620.  
  1621.  
  1622.  
  1623. function onTouched(part)
  1624.  
  1625. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  1626.  
  1627. if h~=nil then
  1628.  
  1629. wait(0.001)
  1630. h.Health = 0
  1631. children = h.Parent:children()
  1632. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  1633. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  1634. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  1635. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  1636. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  1637. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  1638. part.Parent:findFirstChild("Head").Anchored = true
  1639. part.Parent:findFirstChild("Torso").Anchored = true
  1640. part.Parent:findFirstChild("Left Arm").Anchored = true
  1641. part.Parent:findFirstChild("Right Arm").Anchored = true
  1642. part.Parent:findFirstChild("Left Leg").Anchored = true
  1643. part.Parent:findFirstChild("Right Leg").Anchored = true
  1644.  
  1645. part.Parent:findFirstChild("Head").Reflectance = 1
  1646. part.Parent:findFirstChild("Torso").Reflectance = 1
  1647. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1648. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1649. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1650. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1651.  
  1652. wait(0.1)
  1653.  
  1654. part.Parent:findFirstChild("Head").Reflectance = 0
  1655. part.Parent:findFirstChild("Torso").Reflectance = 0
  1656. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1657. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1658. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1659. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1660.  
  1661. wait(0.1)
  1662.  
  1663. part.Parent:findFirstChild("Head").Reflectance = 1
  1664. part.Parent:findFirstChild("Torso").Reflectance = 1
  1665. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1666. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1667. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1668. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1669.  
  1670. wait(0.1)
  1671.  
  1672. part.Parent:findFirstChild("Head").Reflectance = 0
  1673. part.Parent:findFirstChild("Torso").Reflectance = 0
  1674. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1675. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1676. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1677. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1678.  
  1679. wait(0.1)
  1680.  
  1681. part.Parent:findFirstChild("Head").Reflectance = 1
  1682. part.Parent:findFirstChild("Torso").Reflectance = 1
  1683. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1684. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1685. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1686. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1687.  
  1688. wait(0.1)
  1689.  
  1690. part.Parent:findFirstChild("Head").Reflectance = 0
  1691. part.Parent:findFirstChild("Torso").Reflectance = 0
  1692. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1693. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1694. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1695. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1696.  
  1697. wait(0.1)
  1698.  
  1699. part.Parent:findFirstChild("Head").Reflectance = 1
  1700. part.Parent:findFirstChild("Torso").Reflectance = 1
  1701. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1702. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1703. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1704. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1705.  
  1706. wait(0.1)
  1707.  
  1708. part.Parent:findFirstChild("Head").Reflectance = 0
  1709. part.Parent:findFirstChild("Torso").Reflectance = 0
  1710. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1711. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1712. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1713. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1714.  
  1715. wait(0.1)
  1716.  
  1717. part.Parent:findFirstChild("Head").Reflectance = 1
  1718. part.Parent:findFirstChild("Torso").Reflectance = 1
  1719. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1720. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1721. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1722. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1723.  
  1724. wait(0.1)
  1725.  
  1726. part.Parent:findFirstChild("Head").Reflectance = 0
  1727. part.Parent:findFirstChild("Torso").Reflectance = 0
  1728. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1729. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1730. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1731. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1732.  
  1733. wait(0.1)
  1734.  
  1735. part.Parent:findFirstChild("Head").Anchored = false
  1736. part.Parent:findFirstChild("Torso").Anchored = false
  1737. part.Parent:findFirstChild("Left Arm").Anchored = false
  1738. part.Parent:findFirstChild("Right Arm").Anchored = false
  1739. part.Parent:findFirstChild("Left Leg").Anchored = false
  1740. part.Parent:findFirstChild("Right Leg").Anchored = false
  1741.  
  1742. for i=1,#children do
  1743.  
  1744. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  1745.  
  1746. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  1747.  
  1748. end
  1749.  
  1750. end
  1751.  
  1752.  
  1753. end
  1754.  
  1755.  
  1756.  
  1757. script.Parent.Touched:connect(onTouched)
  1758. end;
  1759. function() function stick(x, y)
  1760.  
  1761. weld = Instance.new("Weld")
  1762.  
  1763.  
  1764.  
  1765. weld.Part0 = x
  1766.  
  1767. weld.Part1 = y
  1768.  
  1769.  
  1770.  
  1771. local HitPos = x.Position
  1772.  
  1773.  
  1774.  
  1775. local CJ = CFrame.new(HitPos)
  1776.  
  1777. local C0 = x.CFrame:inverse() *CJ
  1778.  
  1779. local C1 = y.CFrame:inverse() * CJ
  1780.  
  1781.  
  1782.  
  1783. weld.C0 = C0
  1784.  
  1785. weld.C1 = C1
  1786.  
  1787.  
  1788.  
  1789. weld.Parent = x
  1790.  
  1791. end
  1792.  
  1793.  
  1794.  
  1795. function onTouched(part)
  1796.  
  1797. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  1798.  
  1799. if h~=nil then
  1800.  
  1801. wait(0.001)
  1802. h.Health = 0
  1803. children = h.Parent:children()
  1804. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  1805. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  1806. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  1807. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  1808. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  1809. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  1810. part.Parent:findFirstChild("Head").Anchored = true
  1811. part.Parent:findFirstChild("Torso").Anchored = true
  1812. part.Parent:findFirstChild("Left Arm").Anchored = true
  1813. part.Parent:findFirstChild("Right Arm").Anchored = true
  1814. part.Parent:findFirstChild("Left Leg").Anchored = true
  1815. part.Parent:findFirstChild("Right Leg").Anchored = true
  1816.  
  1817. part.Parent:findFirstChild("Head").Reflectance = 1
  1818. part.Parent:findFirstChild("Torso").Reflectance = 1
  1819. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1820. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1821. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1822. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1823.  
  1824. wait(0.1)
  1825.  
  1826. part.Parent:findFirstChild("Head").Reflectance = 0
  1827. part.Parent:findFirstChild("Torso").Reflectance = 0
  1828. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1829. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1830. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1831. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1832.  
  1833. wait(0.1)
  1834.  
  1835. part.Parent:findFirstChild("Head").Reflectance = 1
  1836. part.Parent:findFirstChild("Torso").Reflectance = 1
  1837. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1838. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1839. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1840. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1841.  
  1842. wait(0.1)
  1843.  
  1844. part.Parent:findFirstChild("Head").Reflectance = 0
  1845. part.Parent:findFirstChild("Torso").Reflectance = 0
  1846. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1847. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1848. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1849. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1850.  
  1851. wait(0.1)
  1852.  
  1853. part.Parent:findFirstChild("Head").Reflectance = 1
  1854. part.Parent:findFirstChild("Torso").Reflectance = 1
  1855. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1856. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1857. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1858. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1859.  
  1860. wait(0.1)
  1861.  
  1862. part.Parent:findFirstChild("Head").Reflectance = 0
  1863. part.Parent:findFirstChild("Torso").Reflectance = 0
  1864. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1865. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1866. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1867. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1868.  
  1869. wait(0.1)
  1870.  
  1871. part.Parent:findFirstChild("Head").Reflectance = 1
  1872. part.Parent:findFirstChild("Torso").Reflectance = 1
  1873. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1874. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1875. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1876. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1877.  
  1878. wait(0.1)
  1879.  
  1880. part.Parent:findFirstChild("Head").Reflectance = 0
  1881. part.Parent:findFirstChild("Torso").Reflectance = 0
  1882. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1883. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1884. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1885. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1886.  
  1887. wait(0.1)
  1888.  
  1889. part.Parent:findFirstChild("Head").Reflectance = 1
  1890. part.Parent:findFirstChild("Torso").Reflectance = 1
  1891. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1892. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1893. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1894. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1895.  
  1896. wait(0.1)
  1897.  
  1898. part.Parent:findFirstChild("Head").Reflectance = 0
  1899. part.Parent:findFirstChild("Torso").Reflectance = 0
  1900. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  1901. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  1902. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  1903. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  1904.  
  1905. wait(0.1)
  1906.  
  1907. part.Parent:findFirstChild("Head").Anchored = false
  1908. part.Parent:findFirstChild("Torso").Anchored = false
  1909. part.Parent:findFirstChild("Left Arm").Anchored = false
  1910. part.Parent:findFirstChild("Right Arm").Anchored = false
  1911. part.Parent:findFirstChild("Left Leg").Anchored = false
  1912. part.Parent:findFirstChild("Right Leg").Anchored = false
  1913.  
  1914. for i=1,#children do
  1915.  
  1916. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  1917.  
  1918. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  1919.  
  1920. end
  1921.  
  1922. end
  1923.  
  1924.  
  1925. end
  1926.  
  1927.  
  1928.  
  1929. script.Parent.Touched:connect(onTouched)
  1930. end;
  1931. function() function stick(x, y)
  1932.  
  1933. weld = Instance.new("Weld")
  1934.  
  1935.  
  1936.  
  1937. weld.Part0 = x
  1938.  
  1939. weld.Part1 = y
  1940.  
  1941.  
  1942.  
  1943. local HitPos = x.Position
  1944.  
  1945.  
  1946.  
  1947. local CJ = CFrame.new(HitPos)
  1948.  
  1949. local C0 = x.CFrame:inverse() *CJ
  1950.  
  1951. local C1 = y.CFrame:inverse() * CJ
  1952.  
  1953.  
  1954.  
  1955. weld.C0 = C0
  1956.  
  1957. weld.C1 = C1
  1958.  
  1959.  
  1960.  
  1961. weld.Parent = x
  1962.  
  1963. end
  1964.  
  1965.  
  1966.  
  1967. function onTouched(part)
  1968.  
  1969. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  1970.  
  1971. if h~=nil then
  1972.  
  1973. wait(0.001)
  1974. h.Health = 0
  1975. children = h.Parent:children()
  1976. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  1977. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  1978. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  1979. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  1980. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  1981. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  1982. part.Parent:findFirstChild("Head").Anchored = true
  1983. part.Parent:findFirstChild("Torso").Anchored = true
  1984. part.Parent:findFirstChild("Left Arm").Anchored = true
  1985. part.Parent:findFirstChild("Right Arm").Anchored = true
  1986. part.Parent:findFirstChild("Left Leg").Anchored = true
  1987. part.Parent:findFirstChild("Right Leg").Anchored = true
  1988.  
  1989. part.Parent:findFirstChild("Head").Reflectance = 1
  1990. part.Parent:findFirstChild("Torso").Reflectance = 1
  1991. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  1992. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  1993. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  1994. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  1995.  
  1996. wait(0.1)
  1997.  
  1998. part.Parent:findFirstChild("Head").Reflectance = 0
  1999. part.Parent:findFirstChild("Torso").Reflectance = 0
  2000. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2001. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2002. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2003. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2004.  
  2005. wait(0.1)
  2006.  
  2007. part.Parent:findFirstChild("Head").Reflectance = 1
  2008. part.Parent:findFirstChild("Torso").Reflectance = 1
  2009. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2010. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2011. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2012. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2013.  
  2014. wait(0.1)
  2015.  
  2016. part.Parent:findFirstChild("Head").Reflectance = 0
  2017. part.Parent:findFirstChild("Torso").Reflectance = 0
  2018. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2019. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2020. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2021. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2022.  
  2023. wait(0.1)
  2024.  
  2025. part.Parent:findFirstChild("Head").Reflectance = 1
  2026. part.Parent:findFirstChild("Torso").Reflectance = 1
  2027. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2028. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2029. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2030. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2031.  
  2032. wait(0.1)
  2033.  
  2034. part.Parent:findFirstChild("Head").Reflectance = 0
  2035. part.Parent:findFirstChild("Torso").Reflectance = 0
  2036. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2037. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2038. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2039. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2040.  
  2041. wait(0.1)
  2042.  
  2043. part.Parent:findFirstChild("Head").Reflectance = 1
  2044. part.Parent:findFirstChild("Torso").Reflectance = 1
  2045. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2046. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2047. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2048. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2049.  
  2050. wait(0.1)
  2051.  
  2052. part.Parent:findFirstChild("Head").Reflectance = 0
  2053. part.Parent:findFirstChild("Torso").Reflectance = 0
  2054. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2055. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2056. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2057. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2058.  
  2059. wait(0.1)
  2060.  
  2061. part.Parent:findFirstChild("Head").Reflectance = 1
  2062. part.Parent:findFirstChild("Torso").Reflectance = 1
  2063. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2064. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2065. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2066. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2067.  
  2068. wait(0.1)
  2069.  
  2070. part.Parent:findFirstChild("Head").Reflectance = 0
  2071. part.Parent:findFirstChild("Torso").Reflectance = 0
  2072. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2073. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2074. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2075. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2076.  
  2077. wait(0.1)
  2078.  
  2079. part.Parent:findFirstChild("Head").Anchored = false
  2080. part.Parent:findFirstChild("Torso").Anchored = false
  2081. part.Parent:findFirstChild("Left Arm").Anchored = false
  2082. part.Parent:findFirstChild("Right Arm").Anchored = false
  2083. part.Parent:findFirstChild("Left Leg").Anchored = false
  2084. part.Parent:findFirstChild("Right Leg").Anchored = false
  2085.  
  2086. for i=1,#children do
  2087.  
  2088. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  2089.  
  2090. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  2091.  
  2092. end
  2093.  
  2094. end
  2095.  
  2096.  
  2097. end
  2098.  
  2099.  
  2100.  
  2101. script.Parent.Touched:connect(onTouched)
  2102. end;
  2103. function() function stick(x, y)
  2104.  
  2105. weld = Instance.new("Weld")
  2106.  
  2107.  
  2108.  
  2109. weld.Part0 = x
  2110.  
  2111. weld.Part1 = y
  2112.  
  2113.  
  2114.  
  2115. local HitPos = x.Position
  2116.  
  2117.  
  2118.  
  2119. local CJ = CFrame.new(HitPos)
  2120.  
  2121. local C0 = x.CFrame:inverse() *CJ
  2122.  
  2123. local C1 = y.CFrame:inverse() * CJ
  2124.  
  2125.  
  2126.  
  2127. weld.C0 = C0
  2128.  
  2129. weld.C1 = C1
  2130.  
  2131.  
  2132.  
  2133. weld.Parent = x
  2134.  
  2135. end
  2136.  
  2137.  
  2138.  
  2139. function onTouched(part)
  2140.  
  2141. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  2142.  
  2143. if h~=nil then
  2144.  
  2145. wait(0.001)
  2146. h.Health = 0
  2147. children = h.Parent:children()
  2148. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  2149. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  2150. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  2151. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  2152. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  2153. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  2154. part.Parent:findFirstChild("Head").Anchored = true
  2155. part.Parent:findFirstChild("Torso").Anchored = true
  2156. part.Parent:findFirstChild("Left Arm").Anchored = true
  2157. part.Parent:findFirstChild("Right Arm").Anchored = true
  2158. part.Parent:findFirstChild("Left Leg").Anchored = true
  2159. part.Parent:findFirstChild("Right Leg").Anchored = true
  2160.  
  2161. part.Parent:findFirstChild("Head").Reflectance = 1
  2162. part.Parent:findFirstChild("Torso").Reflectance = 1
  2163. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2164. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2165. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2166. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2167.  
  2168. wait(0.1)
  2169.  
  2170. part.Parent:findFirstChild("Head").Reflectance = 0
  2171. part.Parent:findFirstChild("Torso").Reflectance = 0
  2172. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2173. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2174. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2175. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2176.  
  2177. wait(0.1)
  2178.  
  2179. part.Parent:findFirstChild("Head").Reflectance = 1
  2180. part.Parent:findFirstChild("Torso").Reflectance = 1
  2181. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2182. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2183. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2184. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2185.  
  2186. wait(0.1)
  2187.  
  2188. part.Parent:findFirstChild("Head").Reflectance = 0
  2189. part.Parent:findFirstChild("Torso").Reflectance = 0
  2190. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2191. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2192. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2193. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2194.  
  2195. wait(0.1)
  2196.  
  2197. part.Parent:findFirstChild("Head").Reflectance = 1
  2198. part.Parent:findFirstChild("Torso").Reflectance = 1
  2199. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2200. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2201. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2202. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2203.  
  2204. wait(0.1)
  2205.  
  2206. part.Parent:findFirstChild("Head").Reflectance = 0
  2207. part.Parent:findFirstChild("Torso").Reflectance = 0
  2208. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2209. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2210. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2211. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2212.  
  2213. wait(0.1)
  2214.  
  2215. part.Parent:findFirstChild("Head").Reflectance = 1
  2216. part.Parent:findFirstChild("Torso").Reflectance = 1
  2217. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2218. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2219. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2220. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2221.  
  2222. wait(0.1)
  2223.  
  2224. part.Parent:findFirstChild("Head").Reflectance = 0
  2225. part.Parent:findFirstChild("Torso").Reflectance = 0
  2226. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2227. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2228. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2229. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2230.  
  2231. wait(0.1)
  2232.  
  2233. part.Parent:findFirstChild("Head").Reflectance = 1
  2234. part.Parent:findFirstChild("Torso").Reflectance = 1
  2235. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2236. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2237. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2238. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2239.  
  2240. wait(0.1)
  2241.  
  2242. part.Parent:findFirstChild("Head").Reflectance = 0
  2243. part.Parent:findFirstChild("Torso").Reflectance = 0
  2244. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2245. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2246. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2247. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2248.  
  2249. wait(0.1)
  2250.  
  2251. part.Parent:findFirstChild("Head").Anchored = false
  2252. part.Parent:findFirstChild("Torso").Anchored = false
  2253. part.Parent:findFirstChild("Left Arm").Anchored = false
  2254. part.Parent:findFirstChild("Right Arm").Anchored = false
  2255. part.Parent:findFirstChild("Left Leg").Anchored = false
  2256. part.Parent:findFirstChild("Right Leg").Anchored = false
  2257.  
  2258. for i=1,#children do
  2259.  
  2260. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  2261.  
  2262. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  2263.  
  2264. end
  2265.  
  2266. end
  2267.  
  2268.  
  2269. end
  2270.  
  2271.  
  2272.  
  2273. script.Parent.Touched:connect(onTouched)
  2274. end;
  2275. function() function stick(x, y)
  2276.  
  2277. weld = Instance.new("Weld")
  2278.  
  2279.  
  2280.  
  2281. weld.Part0 = x
  2282.  
  2283. weld.Part1 = y
  2284.  
  2285.  
  2286.  
  2287. local HitPos = x.Position
  2288.  
  2289.  
  2290.  
  2291. local CJ = CFrame.new(HitPos)
  2292.  
  2293. local C0 = x.CFrame:inverse() *CJ
  2294.  
  2295. local C1 = y.CFrame:inverse() * CJ
  2296.  
  2297.  
  2298.  
  2299. weld.C0 = C0
  2300.  
  2301. weld.C1 = C1
  2302.  
  2303.  
  2304.  
  2305. weld.Parent = x
  2306.  
  2307. end
  2308.  
  2309.  
  2310.  
  2311. function onTouched(part)
  2312.  
  2313. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  2314.  
  2315. if h~=nil then
  2316.  
  2317. wait(0.001)
  2318. h.Health = 0
  2319. children = h.Parent:children()
  2320. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  2321. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  2322. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  2323. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  2324. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  2325. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  2326. part.Parent:findFirstChild("Head").Anchored = true
  2327. part.Parent:findFirstChild("Torso").Anchored = true
  2328. part.Parent:findFirstChild("Left Arm").Anchored = true
  2329. part.Parent:findFirstChild("Right Arm").Anchored = true
  2330. part.Parent:findFirstChild("Left Leg").Anchored = true
  2331. part.Parent:findFirstChild("Right Leg").Anchored = true
  2332.  
  2333. part.Parent:findFirstChild("Head").Reflectance = 1
  2334. part.Parent:findFirstChild("Torso").Reflectance = 1
  2335. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2336. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2337. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2338. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2339.  
  2340. wait(0.1)
  2341.  
  2342. part.Parent:findFirstChild("Head").Reflectance = 0
  2343. part.Parent:findFirstChild("Torso").Reflectance = 0
  2344. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2345. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2346. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2347. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2348.  
  2349. wait(0.1)
  2350.  
  2351. part.Parent:findFirstChild("Head").Reflectance = 1
  2352. part.Parent:findFirstChild("Torso").Reflectance = 1
  2353. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2354. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2355. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2356. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2357.  
  2358. wait(0.1)
  2359.  
  2360. part.Parent:findFirstChild("Head").Reflectance = 0
  2361. part.Parent:findFirstChild("Torso").Reflectance = 0
  2362. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2363. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2364. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2365. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2366.  
  2367. wait(0.1)
  2368.  
  2369. part.Parent:findFirstChild("Head").Reflectance = 1
  2370. part.Parent:findFirstChild("Torso").Reflectance = 1
  2371. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2372. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2373. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2374. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2375.  
  2376. wait(0.1)
  2377.  
  2378. part.Parent:findFirstChild("Head").Reflectance = 0
  2379. part.Parent:findFirstChild("Torso").Reflectance = 0
  2380. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2381. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2382. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2383. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2384.  
  2385. wait(0.1)
  2386.  
  2387. part.Parent:findFirstChild("Head").Reflectance = 1
  2388. part.Parent:findFirstChild("Torso").Reflectance = 1
  2389. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2390. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2391. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2392. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2393.  
  2394. wait(0.1)
  2395.  
  2396. part.Parent:findFirstChild("Head").Reflectance = 0
  2397. part.Parent:findFirstChild("Torso").Reflectance = 0
  2398. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2399. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2400. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2401. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2402.  
  2403. wait(0.1)
  2404.  
  2405. part.Parent:findFirstChild("Head").Reflectance = 1
  2406. part.Parent:findFirstChild("Torso").Reflectance = 1
  2407. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2408. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2409. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2410. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2411.  
  2412. wait(0.1)
  2413.  
  2414. part.Parent:findFirstChild("Head").Reflectance = 0
  2415. part.Parent:findFirstChild("Torso").Reflectance = 0
  2416. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2417. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2418. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2419. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2420.  
  2421. wait(0.1)
  2422.  
  2423. part.Parent:findFirstChild("Head").Anchored = false
  2424. part.Parent:findFirstChild("Torso").Anchored = false
  2425. part.Parent:findFirstChild("Left Arm").Anchored = false
  2426. part.Parent:findFirstChild("Right Arm").Anchored = false
  2427. part.Parent:findFirstChild("Left Leg").Anchored = false
  2428. part.Parent:findFirstChild("Right Leg").Anchored = false
  2429.  
  2430. for i=1,#children do
  2431.  
  2432. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  2433.  
  2434. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  2435.  
  2436. end
  2437.  
  2438. end
  2439.  
  2440.  
  2441. end
  2442.  
  2443.  
  2444.  
  2445. script.Parent.Touched:connect(onTouched)
  2446. end;
  2447. function() function stick(x, y)
  2448.  
  2449. weld = Instance.new("Weld")
  2450.  
  2451.  
  2452.  
  2453. weld.Part0 = x
  2454.  
  2455. weld.Part1 = y
  2456.  
  2457.  
  2458.  
  2459. local HitPos = x.Position
  2460.  
  2461.  
  2462.  
  2463. local CJ = CFrame.new(HitPos)
  2464.  
  2465. local C0 = x.CFrame:inverse() *CJ
  2466.  
  2467. local C1 = y.CFrame:inverse() * CJ
  2468.  
  2469.  
  2470.  
  2471. weld.C0 = C0
  2472.  
  2473. weld.C1 = C1
  2474.  
  2475.  
  2476.  
  2477. weld.Parent = x
  2478.  
  2479. end
  2480.  
  2481.  
  2482.  
  2483. function onTouched(part)
  2484.  
  2485. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  2486.  
  2487. if h~=nil then
  2488.  
  2489. wait(0.001)
  2490. h.Health = 0
  2491. children = h.Parent:children()
  2492. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  2493. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  2494. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  2495. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  2496. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  2497. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  2498. part.Parent:findFirstChild("Head").Anchored = true
  2499. part.Parent:findFirstChild("Torso").Anchored = true
  2500. part.Parent:findFirstChild("Left Arm").Anchored = true
  2501. part.Parent:findFirstChild("Right Arm").Anchored = true
  2502. part.Parent:findFirstChild("Left Leg").Anchored = true
  2503. part.Parent:findFirstChild("Right Leg").Anchored = true
  2504.  
  2505. part.Parent:findFirstChild("Head").Reflectance = 1
  2506. part.Parent:findFirstChild("Torso").Reflectance = 1
  2507. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2508. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2509. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2510. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2511.  
  2512. wait(0.1)
  2513.  
  2514. part.Parent:findFirstChild("Head").Reflectance = 0
  2515. part.Parent:findFirstChild("Torso").Reflectance = 0
  2516. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2517. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2518. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2519. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2520.  
  2521. wait(0.1)
  2522.  
  2523. part.Parent:findFirstChild("Head").Reflectance = 1
  2524. part.Parent:findFirstChild("Torso").Reflectance = 1
  2525. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2526. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2527. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2528. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2529.  
  2530. wait(0.1)
  2531.  
  2532. part.Parent:findFirstChild("Head").Reflectance = 0
  2533. part.Parent:findFirstChild("Torso").Reflectance = 0
  2534. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2535. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2536. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2537. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2538.  
  2539. wait(0.1)
  2540.  
  2541. part.Parent:findFirstChild("Head").Reflectance = 1
  2542. part.Parent:findFirstChild("Torso").Reflectance = 1
  2543. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2544. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2545. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2546. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2547.  
  2548. wait(0.1)
  2549.  
  2550. part.Parent:findFirstChild("Head").Reflectance = 0
  2551. part.Parent:findFirstChild("Torso").Reflectance = 0
  2552. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2553. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2554. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2555. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2556.  
  2557. wait(0.1)
  2558.  
  2559. part.Parent:findFirstChild("Head").Reflectance = 1
  2560. part.Parent:findFirstChild("Torso").Reflectance = 1
  2561. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2562. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2563. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2564. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2565.  
  2566. wait(0.1)
  2567.  
  2568. part.Parent:findFirstChild("Head").Reflectance = 0
  2569. part.Parent:findFirstChild("Torso").Reflectance = 0
  2570. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2571. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2572. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2573. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2574.  
  2575. wait(0.1)
  2576.  
  2577. part.Parent:findFirstChild("Head").Reflectance = 1
  2578. part.Parent:findFirstChild("Torso").Reflectance = 1
  2579. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2580. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2581. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2582. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2583.  
  2584. wait(0.1)
  2585.  
  2586. part.Parent:findFirstChild("Head").Reflectance = 0
  2587. part.Parent:findFirstChild("Torso").Reflectance = 0
  2588. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2589. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2590. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2591. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2592.  
  2593. wait(0.1)
  2594.  
  2595. part.Parent:findFirstChild("Head").Anchored = false
  2596. part.Parent:findFirstChild("Torso").Anchored = false
  2597. part.Parent:findFirstChild("Left Arm").Anchored = false
  2598. part.Parent:findFirstChild("Right Arm").Anchored = false
  2599. part.Parent:findFirstChild("Left Leg").Anchored = false
  2600. part.Parent:findFirstChild("Right Leg").Anchored = false
  2601.  
  2602. for i=1,#children do
  2603.  
  2604. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  2605.  
  2606. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  2607.  
  2608. end
  2609.  
  2610. end
  2611.  
  2612.  
  2613. end
  2614.  
  2615.  
  2616.  
  2617. script.Parent.Touched:connect(onTouched)
  2618. end;
  2619. function() function stick(x, y)
  2620.  
  2621. weld = Instance.new("Weld")
  2622.  
  2623.  
  2624.  
  2625. weld.Part0 = x
  2626.  
  2627. weld.Part1 = y
  2628.  
  2629.  
  2630.  
  2631. local HitPos = x.Position
  2632.  
  2633.  
  2634.  
  2635. local CJ = CFrame.new(HitPos)
  2636.  
  2637. local C0 = x.CFrame:inverse() *CJ
  2638.  
  2639. local C1 = y.CFrame:inverse() * CJ
  2640.  
  2641.  
  2642.  
  2643. weld.C0 = C0
  2644.  
  2645. weld.C1 = C1
  2646.  
  2647.  
  2648.  
  2649. weld.Parent = x
  2650.  
  2651. end
  2652.  
  2653.  
  2654.  
  2655. function onTouched(part)
  2656.  
  2657. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  2658.  
  2659. if h~=nil then
  2660.  
  2661. wait(0.001)
  2662. h.Health = 0
  2663. children = h.Parent:children()
  2664. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  2665. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  2666. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  2667. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  2668. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  2669. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  2670. part.Parent:findFirstChild("Head").Anchored = true
  2671. part.Parent:findFirstChild("Torso").Anchored = true
  2672. part.Parent:findFirstChild("Left Arm").Anchored = true
  2673. part.Parent:findFirstChild("Right Arm").Anchored = true
  2674. part.Parent:findFirstChild("Left Leg").Anchored = true
  2675. part.Parent:findFirstChild("Right Leg").Anchored = true
  2676.  
  2677. part.Parent:findFirstChild("Head").Reflectance = 1
  2678. part.Parent:findFirstChild("Torso").Reflectance = 1
  2679. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2680. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2681. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2682. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2683.  
  2684. wait(0.1)
  2685.  
  2686. part.Parent:findFirstChild("Head").Reflectance = 0
  2687. part.Parent:findFirstChild("Torso").Reflectance = 0
  2688. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2689. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2690. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2691. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2692.  
  2693. wait(0.1)
  2694.  
  2695. part.Parent:findFirstChild("Head").Reflectance = 1
  2696. part.Parent:findFirstChild("Torso").Reflectance = 1
  2697. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2698. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2699. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2700. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2701.  
  2702. wait(0.1)
  2703.  
  2704. part.Parent:findFirstChild("Head").Reflectance = 0
  2705. part.Parent:findFirstChild("Torso").Reflectance = 0
  2706. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2707. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2708. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2709. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2710.  
  2711. wait(0.1)
  2712.  
  2713. part.Parent:findFirstChild("Head").Reflectance = 1
  2714. part.Parent:findFirstChild("Torso").Reflectance = 1
  2715. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2716. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2717. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2718. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2719.  
  2720. wait(0.1)
  2721.  
  2722. part.Parent:findFirstChild("Head").Reflectance = 0
  2723. part.Parent:findFirstChild("Torso").Reflectance = 0
  2724. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2725. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2726. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2727. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2728.  
  2729. wait(0.1)
  2730.  
  2731. part.Parent:findFirstChild("Head").Reflectance = 1
  2732. part.Parent:findFirstChild("Torso").Reflectance = 1
  2733. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2734. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2735. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2736. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2737.  
  2738. wait(0.1)
  2739.  
  2740. part.Parent:findFirstChild("Head").Reflectance = 0
  2741. part.Parent:findFirstChild("Torso").Reflectance = 0
  2742. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2743. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2744. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2745. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2746.  
  2747. wait(0.1)
  2748.  
  2749. part.Parent:findFirstChild("Head").Reflectance = 1
  2750. part.Parent:findFirstChild("Torso").Reflectance = 1
  2751. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2752. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2753. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2754. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2755.  
  2756. wait(0.1)
  2757.  
  2758. part.Parent:findFirstChild("Head").Reflectance = 0
  2759. part.Parent:findFirstChild("Torso").Reflectance = 0
  2760. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2761. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2762. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2763. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2764.  
  2765. wait(0.1)
  2766.  
  2767. part.Parent:findFirstChild("Head").Anchored = false
  2768. part.Parent:findFirstChild("Torso").Anchored = false
  2769. part.Parent:findFirstChild("Left Arm").Anchored = false
  2770. part.Parent:findFirstChild("Right Arm").Anchored = false
  2771. part.Parent:findFirstChild("Left Leg").Anchored = false
  2772. part.Parent:findFirstChild("Right Leg").Anchored = false
  2773.  
  2774. for i=1,#children do
  2775.  
  2776. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  2777.  
  2778. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  2779.  
  2780. end
  2781.  
  2782. end
  2783.  
  2784.  
  2785. end
  2786.  
  2787.  
  2788.  
  2789. script.Parent.Touched:connect(onTouched)
  2790. end;
  2791. function() function stick(x, y)
  2792.  
  2793. weld = Instance.new("Weld")
  2794.  
  2795.  
  2796.  
  2797. weld.Part0 = x
  2798.  
  2799. weld.Part1 = y
  2800.  
  2801.  
  2802.  
  2803. local HitPos = x.Position
  2804.  
  2805.  
  2806.  
  2807. local CJ = CFrame.new(HitPos)
  2808.  
  2809. local C0 = x.CFrame:inverse() *CJ
  2810.  
  2811. local C1 = y.CFrame:inverse() * CJ
  2812.  
  2813.  
  2814.  
  2815. weld.C0 = C0
  2816.  
  2817. weld.C1 = C1
  2818.  
  2819.  
  2820.  
  2821. weld.Parent = x
  2822.  
  2823. end
  2824.  
  2825.  
  2826.  
  2827. function onTouched(part)
  2828.  
  2829. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  2830.  
  2831. if h~=nil then
  2832.  
  2833. wait(0.001)
  2834. h.Health = 0
  2835. children = h.Parent:children()
  2836. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  2837. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  2838. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  2839. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  2840. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  2841. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  2842. part.Parent:findFirstChild("Head").Anchored = true
  2843. part.Parent:findFirstChild("Torso").Anchored = true
  2844. part.Parent:findFirstChild("Left Arm").Anchored = true
  2845. part.Parent:findFirstChild("Right Arm").Anchored = true
  2846. part.Parent:findFirstChild("Left Leg").Anchored = true
  2847. part.Parent:findFirstChild("Right Leg").Anchored = true
  2848.  
  2849. part.Parent:findFirstChild("Head").Reflectance = 1
  2850. part.Parent:findFirstChild("Torso").Reflectance = 1
  2851. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2852. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2853. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2854. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2855.  
  2856. wait(0.1)
  2857.  
  2858. part.Parent:findFirstChild("Head").Reflectance = 0
  2859. part.Parent:findFirstChild("Torso").Reflectance = 0
  2860. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2861. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2862. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2863. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2864.  
  2865. wait(0.1)
  2866.  
  2867. part.Parent:findFirstChild("Head").Reflectance = 1
  2868. part.Parent:findFirstChild("Torso").Reflectance = 1
  2869. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2870. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2871. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2872. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2873.  
  2874. wait(0.1)
  2875.  
  2876. part.Parent:findFirstChild("Head").Reflectance = 0
  2877. part.Parent:findFirstChild("Torso").Reflectance = 0
  2878. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2879. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2880. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2881. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2882.  
  2883. wait(0.1)
  2884.  
  2885. part.Parent:findFirstChild("Head").Reflectance = 1
  2886. part.Parent:findFirstChild("Torso").Reflectance = 1
  2887. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2888. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2889. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2890. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2891.  
  2892. wait(0.1)
  2893.  
  2894. part.Parent:findFirstChild("Head").Reflectance = 0
  2895. part.Parent:findFirstChild("Torso").Reflectance = 0
  2896. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2897. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2898. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2899. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2900.  
  2901. wait(0.1)
  2902.  
  2903. part.Parent:findFirstChild("Head").Reflectance = 1
  2904. part.Parent:findFirstChild("Torso").Reflectance = 1
  2905. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2906. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2907. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2908. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2909.  
  2910. wait(0.1)
  2911.  
  2912. part.Parent:findFirstChild("Head").Reflectance = 0
  2913. part.Parent:findFirstChild("Torso").Reflectance = 0
  2914. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2915. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2916. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2917. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2918.  
  2919. wait(0.1)
  2920.  
  2921. part.Parent:findFirstChild("Head").Reflectance = 1
  2922. part.Parent:findFirstChild("Torso").Reflectance = 1
  2923. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  2924. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  2925. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  2926. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  2927.  
  2928. wait(0.1)
  2929.  
  2930. part.Parent:findFirstChild("Head").Reflectance = 0
  2931. part.Parent:findFirstChild("Torso").Reflectance = 0
  2932. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  2933. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  2934. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  2935. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  2936.  
  2937. wait(0.1)
  2938.  
  2939. part.Parent:findFirstChild("Head").Anchored = false
  2940. part.Parent:findFirstChild("Torso").Anchored = false
  2941. part.Parent:findFirstChild("Left Arm").Anchored = false
  2942. part.Parent:findFirstChild("Right Arm").Anchored = false
  2943. part.Parent:findFirstChild("Left Leg").Anchored = false
  2944. part.Parent:findFirstChild("Right Leg").Anchored = false
  2945.  
  2946. for i=1,#children do
  2947.  
  2948. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  2949.  
  2950. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  2951.  
  2952. end
  2953.  
  2954. end
  2955.  
  2956.  
  2957. end
  2958.  
  2959.  
  2960.  
  2961. script.Parent.Touched:connect(onTouched)
  2962. end;
  2963. function() function stick(x, y)
  2964.  
  2965. weld = Instance.new("Weld")
  2966.  
  2967.  
  2968.  
  2969. weld.Part0 = x
  2970.  
  2971. weld.Part1 = y
  2972.  
  2973.  
  2974.  
  2975. local HitPos = x.Position
  2976.  
  2977.  
  2978.  
  2979. local CJ = CFrame.new(HitPos)
  2980.  
  2981. local C0 = x.CFrame:inverse() *CJ
  2982.  
  2983. local C1 = y.CFrame:inverse() * CJ
  2984.  
  2985.  
  2986.  
  2987. weld.C0 = C0
  2988.  
  2989. weld.C1 = C1
  2990.  
  2991.  
  2992.  
  2993. weld.Parent = x
  2994.  
  2995. end
  2996.  
  2997.  
  2998.  
  2999. function onTouched(part)
  3000.  
  3001. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  3002.  
  3003. if h~=nil then
  3004.  
  3005. wait(0.001)
  3006. h.Health = 0
  3007. children = h.Parent:children()
  3008. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  3009. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  3010. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  3011. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  3012. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  3013. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  3014. part.Parent:findFirstChild("Head").Anchored = true
  3015. part.Parent:findFirstChild("Torso").Anchored = true
  3016. part.Parent:findFirstChild("Left Arm").Anchored = true
  3017. part.Parent:findFirstChild("Right Arm").Anchored = true
  3018. part.Parent:findFirstChild("Left Leg").Anchored = true
  3019. part.Parent:findFirstChild("Right Leg").Anchored = true
  3020.  
  3021. part.Parent:findFirstChild("Head").Reflectance = 1
  3022. part.Parent:findFirstChild("Torso").Reflectance = 1
  3023. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3024. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3025. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3026. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3027.  
  3028. wait(0.1)
  3029.  
  3030. part.Parent:findFirstChild("Head").Reflectance = 0
  3031. part.Parent:findFirstChild("Torso").Reflectance = 0
  3032. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3033. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3034. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3035. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3036.  
  3037. wait(0.1)
  3038.  
  3039. part.Parent:findFirstChild("Head").Reflectance = 1
  3040. part.Parent:findFirstChild("Torso").Reflectance = 1
  3041. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3042. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3043. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3044. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3045.  
  3046. wait(0.1)
  3047.  
  3048. part.Parent:findFirstChild("Head").Reflectance = 0
  3049. part.Parent:findFirstChild("Torso").Reflectance = 0
  3050. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3051. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3052. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3053. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3054.  
  3055. wait(0.1)
  3056.  
  3057. part.Parent:findFirstChild("Head").Reflectance = 1
  3058. part.Parent:findFirstChild("Torso").Reflectance = 1
  3059. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3060. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3061. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3062. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3063.  
  3064. wait(0.1)
  3065.  
  3066. part.Parent:findFirstChild("Head").Reflectance = 0
  3067. part.Parent:findFirstChild("Torso").Reflectance = 0
  3068. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3069. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3070. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3071. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3072.  
  3073. wait(0.1)
  3074.  
  3075. part.Parent:findFirstChild("Head").Reflectance = 1
  3076. part.Parent:findFirstChild("Torso").Reflectance = 1
  3077. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3078. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3079. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3080. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3081.  
  3082. wait(0.1)
  3083.  
  3084. part.Parent:findFirstChild("Head").Reflectance = 0
  3085. part.Parent:findFirstChild("Torso").Reflectance = 0
  3086. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3087. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3088. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3089. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3090.  
  3091. wait(0.1)
  3092.  
  3093. part.Parent:findFirstChild("Head").Reflectance = 1
  3094. part.Parent:findFirstChild("Torso").Reflectance = 1
  3095. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3096. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3097. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3098. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3099.  
  3100. wait(0.1)
  3101.  
  3102. part.Parent:findFirstChild("Head").Reflectance = 0
  3103. part.Parent:findFirstChild("Torso").Reflectance = 0
  3104. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3105. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3106. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3107. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3108.  
  3109. wait(0.1)
  3110.  
  3111. part.Parent:findFirstChild("Head").Anchored = false
  3112. part.Parent:findFirstChild("Torso").Anchored = false
  3113. part.Parent:findFirstChild("Left Arm").Anchored = false
  3114. part.Parent:findFirstChild("Right Arm").Anchored = false
  3115. part.Parent:findFirstChild("Left Leg").Anchored = false
  3116. part.Parent:findFirstChild("Right Leg").Anchored = false
  3117.  
  3118. for i=1,#children do
  3119.  
  3120. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  3121.  
  3122. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  3123.  
  3124. end
  3125.  
  3126. end
  3127.  
  3128.  
  3129. end
  3130.  
  3131.  
  3132.  
  3133. script.Parent.Touched:connect(onTouched)
  3134. end;
  3135. function() function stick(x, y)
  3136.  
  3137. weld = Instance.new("Weld")
  3138.  
  3139.  
  3140.  
  3141. weld.Part0 = x
  3142.  
  3143. weld.Part1 = y
  3144.  
  3145.  
  3146.  
  3147. local HitPos = x.Position
  3148.  
  3149.  
  3150.  
  3151. local CJ = CFrame.new(HitPos)
  3152.  
  3153. local C0 = x.CFrame:inverse() *CJ
  3154.  
  3155. local C1 = y.CFrame:inverse() * CJ
  3156.  
  3157.  
  3158.  
  3159. weld.C0 = C0
  3160.  
  3161. weld.C1 = C1
  3162.  
  3163.  
  3164.  
  3165. weld.Parent = x
  3166.  
  3167. end
  3168.  
  3169.  
  3170.  
  3171. function onTouched(part)
  3172.  
  3173. local h = part.Parent:findFirstChild("Humanoid") or part.Parent:findFirstChild("Zombie")
  3174.  
  3175. if h~=nil then
  3176.  
  3177. wait(0.001)
  3178. h.Health = 0
  3179. children = h.Parent:children()
  3180. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(26)
  3181. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(26)
  3182. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(26)
  3183. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(26)
  3184. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(26)
  3185. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(26)
  3186. part.Parent:findFirstChild("Head").Anchored = true
  3187. part.Parent:findFirstChild("Torso").Anchored = true
  3188. part.Parent:findFirstChild("Left Arm").Anchored = true
  3189. part.Parent:findFirstChild("Right Arm").Anchored = true
  3190. part.Parent:findFirstChild("Left Leg").Anchored = true
  3191. part.Parent:findFirstChild("Right Leg").Anchored = true
  3192.  
  3193. part.Parent:findFirstChild("Head").Reflectance = 1
  3194. part.Parent:findFirstChild("Torso").Reflectance = 1
  3195. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3196. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3197. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3198. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3199.  
  3200. wait(0.1)
  3201.  
  3202. part.Parent:findFirstChild("Head").Reflectance = 0
  3203. part.Parent:findFirstChild("Torso").Reflectance = 0
  3204. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3205. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3206. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3207. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3208.  
  3209. wait(0.1)
  3210.  
  3211. part.Parent:findFirstChild("Head").Reflectance = 1
  3212. part.Parent:findFirstChild("Torso").Reflectance = 1
  3213. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3214. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3215. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3216. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3217.  
  3218. wait(0.1)
  3219.  
  3220. part.Parent:findFirstChild("Head").Reflectance = 0
  3221. part.Parent:findFirstChild("Torso").Reflectance = 0
  3222. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3223. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3224. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3225. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3226.  
  3227. wait(0.1)
  3228.  
  3229. part.Parent:findFirstChild("Head").Reflectance = 1
  3230. part.Parent:findFirstChild("Torso").Reflectance = 1
  3231. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3232. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3233. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3234. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3235.  
  3236. wait(0.1)
  3237.  
  3238. part.Parent:findFirstChild("Head").Reflectance = 0
  3239. part.Parent:findFirstChild("Torso").Reflectance = 0
  3240. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3241. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3242. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3243. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3244.  
  3245. wait(0.1)
  3246.  
  3247. part.Parent:findFirstChild("Head").Reflectance = 1
  3248. part.Parent:findFirstChild("Torso").Reflectance = 1
  3249. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3250. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3251. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3252. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3253.  
  3254. wait(0.1)
  3255.  
  3256. part.Parent:findFirstChild("Head").Reflectance = 0
  3257. part.Parent:findFirstChild("Torso").Reflectance = 0
  3258. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3259. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3260. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3261. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3262.  
  3263. wait(0.1)
  3264.  
  3265. part.Parent:findFirstChild("Head").Reflectance = 1
  3266. part.Parent:findFirstChild("Torso").Reflectance = 1
  3267. part.Parent:findFirstChild("Left Arm").Reflectance = 1
  3268. part.Parent:findFirstChild("Right Arm").Reflectance = 1
  3269. part.Parent:findFirstChild("Left Leg").Reflectance = 1
  3270. part.Parent:findFirstChild("Right Leg").Reflectance = 1
  3271.  
  3272. wait(0.1)
  3273.  
  3274. part.Parent:findFirstChild("Head").Reflectance = 0
  3275. part.Parent:findFirstChild("Torso").Reflectance = 0
  3276. part.Parent:findFirstChild("Left Arm").Reflectance = 0
  3277. part.Parent:findFirstChild("Right Arm").Reflectance = 0
  3278. part.Parent:findFirstChild("Left Leg").Reflectance = 0
  3279. part.Parent:findFirstChild("Right Leg").Reflectance = 0
  3280.  
  3281. wait(0.1)
  3282.  
  3283. part.Parent:findFirstChild("Head").Anchored = false
  3284. part.Parent:findFirstChild("Torso").Anchored = false
  3285. part.Parent:findFirstChild("Left Arm").Anchored = false
  3286. part.Parent:findFirstChild("Right Arm").Anchored = false
  3287. part.Parent:findFirstChild("Left Leg").Anchored = false
  3288. part.Parent:findFirstChild("Right Leg").Anchored = false
  3289.  
  3290. for i=1,#children do
  3291.  
  3292. if(children[i].className == "Part" and children[i].Name ~= "Torso") then stick(children[i], h.Parent.Torso) end
  3293.  
  3294. if(children[i].className == "Hat") then stick(children[i].Handle, h.Parent.Torso) end
  3295.  
  3296. end
  3297.  
  3298. end
  3299.  
  3300.  
  3301. end
  3302.  
  3303.  
  3304.  
  3305. script.Parent.Touched:connect(onTouched)
  3306. end;
  3307. function() -- Server scripts can NOT be decompiled
  3308. end;
  3309. function() -- Server scripts can NOT be decompiled
  3310. end;
  3311. function() -- Server scripts can NOT be decompiled
  3312. end;
  3313. function() -- Server scripts can NOT be decompiled
  3314. end;
  3315. function() local BrickTable = {}
  3316.  
  3317. function RecursiveGeneric(Parent, Func, ClassLimit)
  3318. for _, Child in pairs(Parent:GetChildren()) do
  3319. if not ClassLimit or Child:IsA(ClassLimit) then
  3320. Func(Child)
  3321. end
  3322. RecursiveGeneric(Child, Func, ClassLimit)
  3323. end
  3324. end
  3325.  
  3326. RecursiveGeneric(
  3327. script.Parent,
  3328. function(Brick) table.insert(BrickTable, Brick) end,
  3329. "BasePart"
  3330. )
  3331.  
  3332. local Base = BrickTable[1]
  3333. table.remove(BrickTable, 1)
  3334.  
  3335. for _, Part in pairs(BrickTable) do
  3336. local Weld = Instance.new("Weld")
  3337. Weld.Part0 = Base
  3338. Weld.Part1 = Part
  3339. Weld.C1 = Part.CFrame:inverse() * Base.CFrame
  3340. Weld.Parent = Base
  3341. Part.Anchored = false
  3342. end
  3343.  
  3344. Base.Anchored = false end;}local ActualScripts = {}
  3345. function s(var)
  3346. local func = table.remove(Scripts,1)
  3347. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  3348. __index = getfenv(func),
  3349. }))
  3350. table.insert(ActualScripts,coroutine.wrap(func))
  3351. end
  3352.  
  3353. local Part_Classes = {"Part","WedgePart","CornerWedgePart"}
  3354. local Part_Shapes = {"Brick","Cylinder","Sphere","Torso","Wedge"}
  3355. function DecodeUnion(t)
  3356. local r = function()return table.remove(t,1) end
  3357. local split = function(str,sep)
  3358. local fields = {}
  3359. str:gsub(("([^%s]+)"):format(sep or ','),function(c)fields[#fields+1]=c end)
  3360. return fields
  3361. end
  3362. local m = Instance.new("Folder")
  3363. m.Name = "UnionCache ["..tostring(math.random(1,9999)).."]"
  3364. m.Archivable = false
  3365. m.Parent = game:GetService("ServerStorage")
  3366. local Union,Subtract = {},{}
  3367. repeat
  3368. local isNegate = false
  3369. local class = r()
  3370. if class=='-' then
  3371. isNegate = true
  3372. class = r()
  3373. end
  3374. if class=='n' then
  3375. local d = {}
  3376. local a = r()
  3377. repeat
  3378. table.insert(d,a)
  3379. a = r()
  3380. until a=='p'
  3381. local u = DecodeUnion(d)
  3382. if u then
  3383. table.insert(isNegate and Subtract or Union,u)
  3384. end
  3385. else
  3386. local size,pos,rot = Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  3387. local part = Instance.new(Part_Classes[tonumber(class)])
  3388. part.Size = size
  3389. part.Position = pos
  3390. part.Orientation = rot
  3391. if r()=="+" then
  3392. local m,ms,of = r(),Vector3.new(unpack(split(r()))),Vector3.new(unpack(split(r())))
  3393. if tonumber(m)==6 then
  3394. part.Shape = Enum.PartType.Cylinder
  3395. elseif tonumber(m)==7 then
  3396. part.Shape = Enum.PartType.Ball
  3397. else
  3398. local mesh = Instance.new(tonumber(m)==8 and "CylinderMesh" or "SpecialMesh")
  3399. if tonumber(m)~=8 then
  3400. mesh.MeshType = Enum.MeshType[Part_Shapes[tonumber(m)]]
  3401. end
  3402. mesh.Scale = ms
  3403. mesh.Offset = of
  3404. mesh.Parent = part
  3405. end
  3406. end
  3407. table.insert(isNegate and Subtract or Union,part)
  3408. end
  3409. until #t<=0
  3410. local first = Union[1]
  3411. first.Parent = m
  3412. if #Union>1 then
  3413. first = first:UnionAsync(Union)
  3414. first.Parent = m
  3415. end
  3416. if #Subtract>0 then
  3417. first = first:SubtractAsync(Subtract)
  3418. first.Parent = m
  3419. end
  3420. first.Parent = nil
  3421. m:Destroy()
  3422. return first
  3423. end
  3424. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  3425. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  3426. function(t,f)
  3427. for a,b in pairs(t) do
  3428. f(a,b)
  3429. end
  3430. end
  3431. local Types = {
  3432. Color3 = Color3.new,
  3433. Vector3 = Vector3.new,
  3434. Vector2 = Vector2.new,
  3435. UDim = UDim.new,
  3436. UDim2 = UDim2.new,
  3437. CFrame = CFrame.new,
  3438. Rect = Rect.new,
  3439. NumberRange = NumberRange.new,
  3440. BrickColor = BrickColor.new,
  3441. PhysicalProperties = PhysicalProperties.new,
  3442. NumberSequence = function(...)
  3443. local a = {...}
  3444. local t = {}
  3445. repeat
  3446. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  3447. until #a==0
  3448. return NumberSequence.new(t)
  3449. end,
  3450. ColorSequence = function(...)
  3451. local a = {...}
  3452. local t = {}
  3453. repeat
  3454. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  3455. until #a==0
  3456. return ColorSequence.new(t)
  3457. end,
  3458. number = tonumber,
  3459. boolean = function(a)
  3460. return a=="1"
  3461. end
  3462. }
  3463. split = function(str,sep)
  3464. if not str then return end
  3465. local fields = {}
  3466. local ConcatNext = false
  3467. str:gsub(("([^%s]+)"):format(sep),function(c)
  3468. if ConcatNext == true then
  3469. fields[#fields] = fields[#fields]..sep..c
  3470. ConcatNext = false
  3471. else
  3472. fields[#fields+1] = c
  3473. end
  3474. if c:sub(#c)=="\\" then
  3475. c = fields[#fields]
  3476. fields[#fields] = c:sub(1,#c-1)
  3477. ConcatNext = true
  3478. end
  3479. end)
  3480. return fields
  3481. end
  3482. RemoveAndSplit = function(t)
  3483. return split(table_remove(t,1),comma)
  3484. end
  3485. t = split(str,";")
  3486. props = RemoveAndSplit(t)
  3487. classes = RemoveAndSplit(t)
  3488. values = split(table_remove(t,1),'|')
  3489. ICList = RemoveAndSplit(t)
  3490. InstanceList = {}
  3491. Model = inst"Model"
  3492. CurPar = Model
  3493. table_foreach(t,function(ct,c)
  3494. if c=="n" or c=="p" then
  3495. CurPar = c=="n" and LastIns or CurPar[parnt]
  3496. else
  3497. ct = split(c,"|")
  3498. local class = classes[tonum(table_remove(ct,1))]
  3499. if class=="UnionOperation" then
  3500. LastIns = {UsePartColor="1"}
  3501. else
  3502. LastIns = inst(class)
  3503. if LastIns:IsA"Script" then
  3504. s(LastIns)
  3505. elseif LastIns:IsA("ModuleScript") then
  3506. ms(LastIns)
  3507. end
  3508. end
  3509.  
  3510. local function SetProperty(LastIns,p,str,s)
  3511. s = Types[typeof(LastIns[p])]
  3512. if p=="CustomPhysicalProperties" then
  3513. s = PhysicalProperties.new
  3514. end
  3515. if s then
  3516. LastIns[p] = s(unpack(split(str,comma)))
  3517. else
  3518. LastIns[p] = str
  3519. end
  3520. end
  3521.  
  3522. local UnionData
  3523. table_foreach(ct,function(s,p,a,str)
  3524. a = p:find":"
  3525. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  3526. if p=="UnionData" then
  3527. UnionData = split(str," ")
  3528. return
  3529. end
  3530. if class=="UnionOperation" then
  3531. LastIns[p] = str
  3532. return
  3533. end
  3534. SetProperty(LastIns,p,str)
  3535. end)
  3536.  
  3537. if UnionData then
  3538. local LI_Data = LastIns
  3539. LastIns = DecodeUnion(UnionData)
  3540. table_foreach(LI_Data,function(p,str)
  3541. SetProperty(LastIns,p,str)
  3542. end)
  3543. end
  3544. table.insert(InstanceList,LastIns)
  3545. LastIns[parnt] = CurPar
  3546. end
  3547. end)
  3548. table_remove(ICList,1)
  3549. table_foreach(ICList,function(a,b)
  3550. b = split(b,">")
  3551. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  3552. end)
  3553.  
  3554. return Model:GetChildren()
  3555. end
  3556.  
  3557. 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'
  3558. ..'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'
  3559. ..'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'
  3560. ..'.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'
  3561. ..'.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'
  3562. ..',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'
  3563. ..'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'
  3564. ..',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,'
  3565. ..'-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'
  3566. ..'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'
  3567. ..'.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'
  3568. ..'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 '
  3569. ..'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'
  3570. ..' 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'
  3571. ..' 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'
  3572. ..'.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 +'
  3573. ..' 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.'
  3574. ..'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'
  3575. ..' 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'
  3576. ..' 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'
  3577. ..',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 '
  3578. ..'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 '
  3579. ..'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'
  3580. ..'|-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'
  3581. ..',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'
  3582. ..'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,'
  3583. ..'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'
  3584. ..'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.'
  3585. ..'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'
  3586. ..'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,'
  3587. ..'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,-'
  3588. ..'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'
  3589. ..'.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'
  3590. ..'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,-'
  3591. ..'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,'
  3592. ..'-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,'
  3593. ..'-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'
  3594. ..',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'
  3595. ..'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.'
  3596. ..'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,'
  3597. ..'-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'
  3598. ..'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'
  3599. ..'.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'
  3600. ..'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'
  3601. ..'.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'
  3602. ..'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.'
  3603. ..'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'
  3604. ..'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'
  3605. ..'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'
  3606. ..'.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|'
  3607. ..'-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'
  3608. ..'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'
  3609. ..'.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'
  3610. ..',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'
  3611. ..'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'
  3612. ..'|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'
  3613. ..'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'
  3614. ..'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'
  3615. ..'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'
  3616. ..'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'
  3617. ..',-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'
  3618. ..'.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'
  3619. ..'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,'
  3620. ..'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,'
  3621. ..'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'
  3622. ..'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,-'
  3623. ..'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'
  3624. ..'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'
  3625. ..'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 -'
  3626. ..'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'
  3627. ..' -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'
  3628. ..'.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'
  3629. ..',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'
  3630. ..' 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 = '
  3631. ..'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'
  3632. ..' = 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'
  3633. ..'.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'
  3634. ..' 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'
  3635. ..'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'
  3636. ..',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:'
  3637. ..'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:'
  3638. ..'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:'
  3639. ..'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:'
  3640. ..'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'
  3641. ..'|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'
  3642. ..':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:'
  3643. ..'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'
  3644. ..'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;'
  3645. ..'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'
  3646. ..'|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'
  3647. ..'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'
  3648. ..'|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|'
  3649. ..'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'
  3650. ..'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'
  3651. ..':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'
  3652. ..':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:'
  3653. ..'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|'
  3654. ..'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'
  3655. ..';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'
  3656. ..'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'
  3657. ..'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'
  3658. ..':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'
  3659. ..'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;'
  3660. ..'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|'
  3661. ..'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'
  3662. ..'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|'
  3663. ..'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|'
  3664. ..'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'
  3665. ..'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'
  3666. ..'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'
  3667. ..'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'
  3668. ..':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'
  3669. ..'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'
  3670. ..':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'
  3671. ..'|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:'
  3672. ..'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'
  3673. ..'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:'
  3674. ..'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|'
  3675. ..'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'
  3676. ..'|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'
  3677. ..':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|'
  3678. ..'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'
  3679. ..'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:'
  3680. ..'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'
  3681. ..'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'
  3682. ..':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|'
  3683. ..'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'
  3684. ..';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'
  3685. ..'|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'
  3686. ..'|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'
  3687. ..'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|'
  3688. ..'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|'
  3689. ..'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'
  3690. ..'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'
  3691. ..'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'
  3692. ..'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'
  3693. ..'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'
  3694. ..':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:'
  3695. ..'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|'
  3696. ..'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:'
  3697. ..'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'
  3698. ..'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:'
  3699. ..'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'
  3700. ..';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'
  3701. ..':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'
  3702. ..'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'
  3703. ..';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'
  3704. ..':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'
  3705. ..'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'
  3706. ..'|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'
  3707. ..'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;')
  3708. for _,Object in pairs(Objects) do
  3709. Object.Parent = script and script.Parent==workspace and script or workspace
  3710. end
  3711. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement