Advertisement
lafur

Untitled

May 19th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 82.48 KB | None | 0 0
  1. -- Converted using Mokiros's Model to Script plugin
  2. -- Converted string size: 43782
  3. local genv={}
  4. local Scripts = {
  5. function() --player
  6. player = nil
  7. --save shoulders
  8. RSH, LSH = nil, nil
  9. --grip
  10. GRP = nil
  11. --welds
  12. RW, LW = Instance.new("Weld"), Instance.new("Weld")
  13. --what anim
  14. anim = "none"
  15. --homerun variables
  16. damage = 0
  17. walkspeed = 16
  18. ban = false
  19.  
  20. --onselected, save shoulders and get player
  21. script.Parent.Equipped:connect(function()
  22. player = game.Players:playerFromCharacter(script.Parent.Parent)
  23. local ch = script.Parent.Parent
  24. if ch.Torso:FindFirstChild("Right Shoulder") ~= nil then
  25. RSH = ch.Torso:FindFirstChild("Right Shoulder")
  26. end
  27. if ch.Torso:FindFirstChild("Left Shoulder") ~= nil then
  28. LSH = ch.Torso:FindFirstChild("Left Shoulder")
  29. end
  30. GRP = ch["Right Arm"].RightGrip
  31. --
  32. if RSH ~= nil then
  33. RSH.Parent = nil
  34. end
  35. if LSH ~= nil then
  36. LSH.Parent = nil
  37. end
  38. --
  39. RW.Part0 = ch.Torso
  40. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  41. RW.C1 = CFrame.new(0, 0.5, 0)
  42. RW.Part1 = ch["Right Arm"]
  43. RW.Parent = ch.Torso
  44. _G.R = RW
  45. --
  46. LW.Part0 = ch.Torso
  47. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  48. LW.C1 = CFrame.new(0, 0.5, 0)
  49. LW.Part1 = ch["Left Arm"]
  50. LW.Parent = ch.Torso
  51. _G.L = LW
  52. --
  53. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-1, 0, 0)
  54. --Bring_Arm_Up animation
  55. for i = 0, 1, 0.05 do
  56. wait()
  57. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3*i, 0, -0.5*i)
  58. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7*i, 0, 0.8*i)
  59. LW.C1 = CFrame.new(-0.3*i, 0.5+1.2*i, 0)
  60. end
  61. end)
  62.  
  63. --griptcf = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-math.pi/2+0.5, 0, 0)
  64.  
  65. script.Parent.Unequipped:connect(function()
  66. --Bring_Arm_Down animation
  67. for i = 1, 0, -0.05 do
  68. wait()
  69. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3*i, 0, -0.5*i)
  70. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7*i, 0, 0.8*i)
  71. LW.C1 = CFrame.new(-0.3*i, 0.5+1.2*i, 0)
  72. end
  73. RW.Parent = nil
  74. LW.Parent = nil
  75. RSH.Parent = player.Character.Torso
  76. LSH.Parent = player.Character.Torso
  77. end)
  78.  
  79. function HomeRunHit(part)
  80. local h = part.Parent:FindFirstChild("Humanoid")
  81. if h ~= nil then
  82. script.Parent.Handle.Hit:Play()
  83. h.Sit = true
  84. wait()
  85. h.Jump = true
  86. h.Parent.Torso.Velocity = (CFrame.new(script.Parent.Handle.Position, h.Parent.Torso.Position).lookVector * 100) + Vector3.new(0, 30, 0)
  87. h.Parent.Torso.RotVelocity = Vector3.new(math.random(-100, 100), math.random(-100, 100), math.random(-100, 100))
  88. h.Health = h.Health - damage
  89. h.WalkSpeed = walkspeed
  90. if (game.Players:FindFirstChild(h.Parent.Name) ~= nil) and (ban == true) then
  91. wait(5)
  92. game.Players:FindFirstChild(h.Parent.Name).SuperSafeChat = true
  93. wait(25)
  94. game.Players:FindFirstChild(h.Parent.Name):Remove()
  95. end
  96. elseif h == nil then
  97. if part.Anchored == false then
  98. script.Parent.Handle.Hit:Play()
  99. part:BreakJoints()
  100. part.Velocity = (CFrame.new(script.Parent.Handle.Position, part.Position).lookVector * 100) + Vector3.new(0, 30, 0)
  101. part.RotVelocity = Vector3.new(math.random(-100, 100), math.random(-100, 100), math.random(-100, 100))
  102. end
  103. end
  104. end
  105.  
  106. function HomeRun()
  107. for i = 0, 1, 0.1 do
  108. if anim ~= "homerun" then return end
  109. wait()
  110. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3+1.2*i, -0.5*i, -0.5+i)
  111. --R.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5, -0.5, 0.5)
  112. LW.C0 = CFrame.new(-1.5+0.5*i, 0.5, -0.5*i) * CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  113. --L.C0 = CFrame.new(-1.0, 0.5, -0.5) * CFrame.fromEulerAnglesXYZ(1.7, 0, 1)
  114. end
  115. --start homerunhit connection--
  116. local con = script.Parent.Handle.Touched:connect(HomeRunHit)
  117. ----------------------------------------
  118. for i = 0, 1, 0.2 do
  119. wait()
  120. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5, -0.5-1.7*i, 0.5+0.5*i)
  121. --R.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5, -2.2, 1)
  122. LW.C0 = CFrame.new(-1-0.5*i, 0.5, -0.5+0.5*i) * CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8-1.2*i)
  123. LW.C1 = CFrame.new(0, 0.5-i, 0)
  124. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-1-2*i, 0, 0)
  125. end
  126. script.Parent.Handle.Swoosh:Play()
  127. for i = 0, 1, 0.2 do
  128. wait()
  129. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5, -2.2-0.6*i, 1)
  130. end
  131. wait(0.1)
  132. ----end homerun connection---
  133. con:disconnect()
  134. script.Parent.Handle.Swoosh:Play()
  135. --------------------------------------
  136. for i = 0, 1, 0.1 do
  137. wait()
  138. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5-1.2*i, -2.8+2.8*i, 1-1.5*i)
  139. --RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  140. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7, 0, -0.4+1.2*i)
  141. LW.C1 = CFrame.new(0, -0.5+i*2, 0)
  142. --LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  143. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-3+2*i, 0, 0)
  144. end
  145. end
  146.  
  147. function Whack()
  148. for i = 0, 1, 0.2 do
  149. if anim ~= "norm" then return end
  150. wait()
  151. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3+i, 0, -0.5+0.5*i)
  152. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7-0.25*i, 0, 0.8-0.6*i)
  153. end
  154. for i = 0, 1, 0.25 do
  155. if anim ~= "norm" then return end
  156. wait()
  157. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.3-2.5*i, 0, 0)
  158. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.45-0.25*i, 0, 0.2)
  159. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-1-0.5*i, 0, 0)
  160. end
  161. --insert camshake and hit nearby people
  162. script.Parent.Handle.Boom:Play()
  163. for _, p in pairs(game.Players:GetChildren()) do
  164. if p.Character:FindFirstChild("Torso") then
  165. if (p.Character.Torso.Position - (script.Parent.Handle.CFrame*CFrame.new(0, -3, 0)).p).magnitude < 10 then
  166. if p.Character ~= script.Parent.Parent then
  167. local s = script.Parent._CamShake:clone()
  168. s.Disabled = false
  169. s.Parent = p.Backpack
  170. if p ~= player then
  171. p.Character.Humanoid.Sit = true
  172. delay(0.1, function() p.Character.Humanoid.Jump = true end)
  173. p.Character.Torso.RotVelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  174. end
  175. end
  176. end
  177. end
  178. end
  179. ------
  180. for i = 0, 1, 0.2 do
  181. if anim ~= "norm" then return end
  182. wait()
  183. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(-0.2+1.5*i, 0, -0.5*i)
  184. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.2+0.5*i, 0, 0.2+0.6*i)
  185. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-1.5+0.5*i, 0, 0)
  186. end
  187. end
  188.  
  189. local a = false
  190. local co = nil
  191. --OMGHAX mouseclick
  192. local last_click = 0
  193. script.Parent.MouseClick.Changed:connect(function()
  194. if time() - last_click < 0.3 then
  195. anim = "homerun"
  196. last_click = time()
  197. HomeRun()
  198. else
  199. anim = "norm"
  200. last_click = time()
  201. Whack()
  202. end
  203. end)
  204. end;
  205. function() function Weldnow()
  206. local w1 = Instance.new("Weld")
  207. w1.Parent = script.Parent.Handle
  208. w1.Part0 = w1.Parent
  209. w1.Part1 = script.Parent.Handle1
  210. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0.6, -1, 0)
  211.  
  212. local w2 = Instance.new("Weld")
  213. w2.Parent = script.Parent.Handle
  214. w2.Part0 = w1.Parent
  215. w2.Part1 = script.Parent.Handle2
  216. w2.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(-0.5, -1, 0)
  217.  
  218. local w3 = Instance.new("Weld")
  219. w3.Parent = script.Parent.Handle
  220. w3.Part0 = w1.Parent
  221. w3.Part1 = script.Parent.Handle3
  222. w3.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(1.5, 0, 0)
  223.  
  224.  
  225. end
  226. script.Parent.Equipped:connect(Weldnow)
  227. script.Parent.Unequipped:connect(Weldnow)
  228. end;
  229. function() local p=script.Parent:GetChildren()
  230. for i=1,#p do
  231. if p[i].className=="Part" then
  232.  
  233. local weld = Instance.new("Weld")
  234. weld.Name="Hold"
  235. weld.Part0 = p[i]
  236. weld.Part1 = script.Parent.Parent.Torso
  237.  
  238. local HitPos = p[i].Position + (p[i].CFrame.lookVector * .5)
  239.  
  240. local CJ = CFrame.new(HitPos)
  241. local C0 = p[i].CFrame:inverse() *CJ
  242. local C1 = script.Parent.Parent.Torso.CFrame:inverse() * CJ
  243.  
  244. weld.C0 = C0
  245. weld.C1 = C1
  246.  
  247. weld.Parent = p[i]
  248. end
  249. end end;
  250. function() --3000cLOnEs
  251. --All the bricks must have a diffront name. If you need more the copy from local to the green tipeing.
  252.  
  253. local w1 = Instance.new("Weld")
  254.  
  255. w1.Parent = script.Parent.Handle
  256. w1.Part0 = w1.Parent
  257. w1.Part1 = script.Parent.Handle2 --Chaing this to the name of the brick
  258. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  259.  
  260. local w1 = Instance.new("Weld")
  261.  
  262. w1.Parent = script.Parent.Handle
  263. w1.Part0 = w1.Parent
  264. w1.Part1 = script.Parent.Handle3 --Chaing this to the name of the brick
  265. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, -0, 0) --Chaing this to put the brick in a diffront place
  266.  
  267. local w1 = Instance.new("Weld")
  268.  
  269. w1.Parent = script.Parent.Handle
  270. w1.Part0 = w1.Parent
  271. w1.Part1 = script.Parent.Handle4 --Chaing this to the name of the brick
  272. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  273.  
  274. local w1 = Instance.new("Weld")
  275.  
  276. w1.Parent = script.Parent.Handle
  277. w1.Part0 = w1.Parent
  278. w1.Part1 = script.Parent.Handle5 --Chaing this to the name of the brick
  279. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  280.  
  281. local w1 = Instance.new("Weld")
  282.  
  283. w1.Parent = script.Parent.Handle
  284. w1.Part0 = w1.Parent
  285. w1.Part1 = script.Parent.Handle6 --Chaing this to the name of the brick
  286. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  287.  
  288. local w1 = Instance.new("Weld")
  289.  
  290. w1.Parent = script.Parent.Handle
  291. w1.Part0 = w1.Parent
  292. w1.Part1 = script.Parent.Handle7 --Chaing this to the name of the brick
  293. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  294.  
  295. local w1 = Instance.new("Weld")
  296.  
  297. w1.Parent = script.Parent.Handle
  298. w1.Part0 = w1.Parent
  299. w1.Part1 = script.Parent.Handle8 --Chaing this to the name of the brick
  300. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, -0, 0) --Chaing this to put the brick in a diffront place
  301.  
  302. local w1 = Instance.new("Weld")
  303.  
  304. w1.Parent = script.Parent.Handle
  305. w1.Part0 = w1.Parent
  306. w1.Part1 = script.Parent.Handle9 --Chaing this to the name of the brick
  307. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  308.  
  309. local w1 = Instance.new("Weld")
  310.  
  311. w1.Parent = script.Parent.Handle
  312. w1.Part0 = w1.Parent
  313. w1.Part1 = script.Parent.Handle10 --Chaing this to the name of the brick
  314. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  315.  
  316. local w1 = Instance.new("Weld")
  317.  
  318. w1.Parent = script.Parent.Handle
  319. w1.Part0 = w1.Parent
  320. w1.Part1 = script.Parent.Handle11 --Chaing this to the name of the brick
  321. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  322. end;
  323. function() function onChanged()
  324. local w1 = Instance.new("Weld")
  325. w1.Parent = script.Parent.Handle
  326. w1.Part0 = w1.Parent
  327. w1.Part1 = script.Parent.Handle2
  328. w1.C1 = CFrame.new(-0, 4, -0.1)
  329.  
  330. script.Parent.Handle2.Transparency = 0.5
  331. end
  332. script.Parent.AncestryChanged:connect(onChanged) end;
  333. function() local w1 = Instance.new("Weld")
  334.  
  335.  
  336.  
  337.  
  338.  
  339. w1.Parent = script.Parent.Handle
  340.  
  341.  
  342. w1.Part0 = w1.Parent
  343.  
  344.  
  345. w1.Part1 = script.Parent.Handle2
  346.  
  347.  
  348. w1.C1 = CFrame.new(3, 0, 0)
  349. end;
  350. function() local tool = script.Parent
  351. local c = tool:GetChildren()
  352. local parts = {}
  353. for i = 1, #c do
  354. if c[i].className == "Part" and c[i].Name ~= "Handle" then
  355. table.insert(parts, c[i])
  356. end
  357. end
  358.  
  359. function onWeld()
  360. local c = tool.Handle:GetChildren()
  361. for i = 1, #c do
  362. if c[i].className == "Weld" then
  363. c[i]:Remove()
  364. end
  365. end
  366.  
  367. for i = 1, #parts do
  368. parts[i].Parent = tool
  369. local w = Instance.new("Weld")
  370. w.Parent = tool.Handle
  371. w.Part0 = w.Parent
  372. w.Part1 = parts[i]
  373. w.C0 = script[parts[i].Name].Value
  374. end
  375.  
  376. local human = script.Parent.Parent
  377. local rarm = human:FindFirstChild("Right Arm")
  378.  
  379. if rarm == nil then
  380. return
  381. end
  382.  
  383. local rgrip = rarm:FindFirstChild("RightGrip")
  384.  
  385. if rgrip == nil then
  386. return
  387. end
  388.  
  389. local rrgrip = Instance.new("Motor")
  390. rrgrip.Name = "MGrip"
  391. rrgrip.Parent = rarm
  392. rrgrip.Part0 = rarm
  393. rrgrip.Part1 = tool.Handle
  394. rrgrip.MaxVelocity = 0.5
  395. rrgrip.C0 = CFrame.new(0,-2.25,-0.75) * CFrame.fromEulerAnglesXYZ(-1.57,1.57,0)
  396. rrgrip.C1 = CFrame.fromEulerAnglesXYZ(0,1.57,0)
  397. rgrip:Remove()
  398. end
  399.  
  400. script.Parent.Equipped:connect(onWeld)
  401. script.Parent.Unequipped:connect(onWeld) end;
  402. function() function onChanged()
  403. local w1 = Instance.new("Weld")
  404. w1.Parent = script.Parent.Handle
  405. w1.Part0 = w1.Parent
  406. w1.Part1 = script.Parent.Handle2
  407. w1.C1 = CFrame.new(-0, 4, -0.1)
  408.  
  409. script.Parent.Handle2.Transparency = 0.5
  410. end
  411. script.Parent.AncestryChanged:connect(onChanged) end;
  412. function() _G["weld"] = function(p, ...)
  413. other = {...}
  414. for i, h in pairs(other) do
  415. HitPos = p.Position
  416. CJ = CFrame.new(HitPos)
  417. C0 = p.CFrame:inverse() *CJ
  418. C1 = h.CFrame:inverse() * CJ
  419. w = Instance.new("Weld")
  420. w.Parent = p
  421. w.Part0 = p
  422. w.Part1 = h
  423. w.C0 = C0
  424. w.C1 = C1
  425. h.Locked = true
  426. end
  427. end end;
  428. function() --player
  429. player = nil
  430. --save shoulders
  431. RSH, LSH = nil, nil
  432. --grip
  433. GRP = nil
  434. --welds
  435. RW, LW = Instance.new("Weld"), Instance.new("Weld")
  436. --what anim
  437. anim = "none"
  438. --homerun variables
  439. damage = 0
  440. walkspeed = 16
  441. ban = false
  442.  
  443. --onselected, save shoulders and get player
  444. script.Parent.Equipped:connect(function()
  445. player = game.Players:playerFromCharacter(script.Parent.Parent)
  446. local ch = script.Parent.Parent
  447. if ch.Torso:FindFirstChild("Right Shoulder") ~= nil then
  448. RSH = ch.Torso:FindFirstChild("Right Shoulder")
  449. end
  450. if ch.Torso:FindFirstChild("Left Shoulder") ~= nil then
  451. LSH = ch.Torso:FindFirstChild("Left Shoulder")
  452. end
  453. GRP = ch["Right Arm"].RightGrip
  454. --
  455. if RSH ~= nil then
  456. RSH.Parent = nil
  457. end
  458. if LSH ~= nil then
  459. LSH.Parent = nil
  460. end
  461. --
  462. RW.Part0 = ch.Torso
  463. RW.C0 = CFrame.new(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  464. RW.C1 = CFrame.new(0, 0.5, 0)
  465. RW.Part1 = ch["Right Arm"]
  466. RW.Parent = ch.Torso
  467. _G.R = RW
  468. --
  469. LW.Part0 = ch.Torso
  470. LW.C0 = CFrame.new(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  471. LW.C1 = CFrame.new(0, 0.5, 0)
  472. LW.Part1 = ch["Left Arm"]
  473. LW.Parent = ch.Torso
  474. _G.L = LW
  475. --
  476. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-1, 0, 0)
  477. --Bring_Arm_Up animation
  478. for i = 0, 1, 0.05 do
  479. wait()
  480. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3*i, 0, -0.5*i)
  481. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7*i, 0, 0.8*i)
  482. LW.C1 = CFrame.new(-0.3*i, 0.5+1.2*i, 0)
  483. end
  484. end)
  485.  
  486. --griptcf = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-math.pi/2+0.5, 0, 0)
  487.  
  488. script.Parent.Unequipped:connect(function()
  489. --Bring_Arm_Down animation
  490. for i = 1, 0, -0.05 do
  491. wait()
  492. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3*i, 0, -0.5*i)
  493. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7*i, 0, 0.8*i)
  494. LW.C1 = CFrame.new(-0.3*i, 0.5+1.2*i, 0)
  495. end
  496. RW.Parent = nil
  497. LW.Parent = nil
  498. RSH.Parent = player.Character.Torso
  499. LSH.Parent = player.Character.Torso
  500. end)
  501.  
  502. function HomeRunHit(part)
  503. local h = part.Parent:FindFirstChild("Humanoid")
  504. if h ~= nil then
  505. script.Parent.Handle.Hit:Play()
  506. h.Sit = true
  507. wait()
  508. h.Jump = true
  509. h.Parent.Torso.Velocity = (CFrame.new(script.Parent.Handle.Position, h.Parent.Torso.Position).lookVector * 100) + Vector3.new(0, 30, 0)
  510. h.Parent.Torso.RotVelocity = Vector3.new(math.random(-100, 100), math.random(-100, 100), math.random(-100, 100))
  511. h.Health = h.Health - damage
  512. h.WalkSpeed = walkspeed
  513. if (game.Players:FindFirstChild(h.Parent.Name) ~= nil) and (ban == true) then
  514. wait(5)
  515. game.Players:FindFirstChild(h.Parent.Name).SuperSafeChat = true
  516. wait(25)
  517. game.Players:FindFirstChild(h.Parent.Name):Remove()
  518. end
  519. elseif h == nil then
  520. if part.Anchored == false then
  521. script.Parent.Handle.Hit:Play()
  522. part:BreakJoints()
  523. part.Velocity = (CFrame.new(script.Parent.Handle.Position, part.Position).lookVector * 100) + Vector3.new(0, 30, 0)
  524. part.RotVelocity = Vector3.new(math.random(-100, 100), math.random(-100, 100), math.random(-100, 100))
  525. end
  526. end
  527. end
  528.  
  529. function HomeRun()
  530. for i = 0, 1, 0.1 do
  531. if anim ~= "homerun" then return end
  532. wait()
  533. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3+1.2*i, -0.5*i, -0.5+i)
  534. --R.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5, -0.5, 0.5)
  535. LW.C0 = CFrame.new(-1.5+0.5*i, 0.5, -0.5*i) * CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  536. --L.C0 = CFrame.new(-1.0, 0.5, -0.5) * CFrame.fromEulerAnglesXYZ(1.7, 0, 1)
  537. end
  538. --start homerunhit connection--
  539. local con = script.Parent.Handle.Touched:connect(HomeRunHit)
  540. ----------------------------------------
  541. for i = 0, 1, 0.2 do
  542. wait()
  543. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5, -0.5-1.7*i, 0.5+0.5*i)
  544. --R.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5, -2.2, 1)
  545. LW.C0 = CFrame.new(-1-0.5*i, 0.5, -0.5+0.5*i) * CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8-1.2*i)
  546. LW.C1 = CFrame.new(0, 0.5-i, 0)
  547. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-1-2*i, 0, 0)
  548. end
  549. script.Parent.Handle.Swoosh:Play()
  550. for i = 0, 1, 0.2 do
  551. wait()
  552. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5, -2.2-0.6*i, 1)
  553. end
  554. wait(0.1)
  555. ----end homerun connection---
  556. con:disconnect()
  557. script.Parent.Handle.Swoosh:Play()
  558. --------------------------------------
  559. for i = 0, 1, 0.1 do
  560. wait()
  561. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.5-1.2*i, -2.8+2.8*i, 1-1.5*i)
  562. --RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  563. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7, 0, -0.4+1.2*i)
  564. LW.C1 = CFrame.new(0, -0.5+i*2, 0)
  565. --LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  566. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-3+2*i, 0, 0)
  567. end
  568. end
  569.  
  570. function Whack()
  571. for i = 0, 1, 0.2 do
  572. if anim ~= "norm" then return end
  573. wait()
  574. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.3+i, 0, -0.5+0.5*i)
  575. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.7-0.25*i, 0, 0.8-0.6*i)
  576. end
  577. for i = 0, 1, 0.25 do
  578. if anim ~= "norm" then return end
  579. wait()
  580. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(2.3-2.5*i, 0, 0)
  581. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.45-0.25*i, 0, 0.2)
  582. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-1-0.5*i, 0, 0)
  583. end
  584. --insert camshake and hit nearby people
  585. script.Parent.Handle.Boom:Play()
  586. for _, p in pairs(game.Players:GetChildren()) do
  587. if p.Character:FindFirstChild("Torso") then
  588. if (p.Character.Torso.Position - (script.Parent.Handle.CFrame*CFrame.new(0, -3, 0)).p).magnitude < 10 then
  589. if p.Character ~= script.Parent.Parent then
  590. local s = script.Parent._CamShake:clone()
  591. s.Disabled = false
  592. s.Parent = p.Backpack
  593. if p ~= player then
  594. p.Character.Humanoid.Sit = true
  595. delay(0.1, function() p.Character.Humanoid.Jump = true end)
  596. p.Character.Torso.RotVelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  597. end
  598. end
  599. end
  600. end
  601. end
  602. ------
  603. for i = 0, 1, 0.2 do
  604. if anim ~= "norm" then return end
  605. wait()
  606. RW.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(-0.2+1.5*i, 0, -0.5*i)
  607. LW.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(1.2+0.5*i, 0, 0.2+0.6*i)
  608. GRP.C0 = CFrame.new(0, -1, 0) * CFrame.fromEulerAnglesXYZ(-1.5+0.5*i, 0, 0)
  609. end
  610. end
  611.  
  612. local a = false
  613. local co = nil
  614. --OMGHAX mouseclick
  615. local last_click = 0
  616. script.Parent.MouseClick.Changed:connect(function()
  617. if time() - last_click < 0.3 then
  618. anim = "homerun"
  619. last_click = time()
  620. HomeRun()
  621. else
  622. anim = "norm"
  623. last_click = time()
  624. Whack()
  625. end
  626. end)
  627. end;
  628. function() function Weldnow()
  629. local w1 = Instance.new("Weld")
  630. w1.Parent = script.Parent.Handle
  631. w1.Part0 = w1.Parent
  632. w1.Part1 = script.Parent.Handle1
  633. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0.6, -1, 0)
  634.  
  635. local w2 = Instance.new("Weld")
  636. w2.Parent = script.Parent.Handle
  637. w2.Part0 = w1.Parent
  638. w2.Part1 = script.Parent.Handle2
  639. w2.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(-0.5, -1, 0)
  640.  
  641. local w3 = Instance.new("Weld")
  642. w3.Parent = script.Parent.Handle
  643. w3.Part0 = w1.Parent
  644. w3.Part1 = script.Parent.Handle3
  645. w3.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(1.5, 0, 0)
  646.  
  647.  
  648. end
  649. script.Parent.Equipped:connect(Weldnow)
  650. script.Parent.Unequipped:connect(Weldnow)
  651. end;
  652. function() local p=script.Parent:GetChildren()
  653. for i=1,#p do
  654. if p[i].className=="Part" then
  655.  
  656. local weld = Instance.new("Weld")
  657. weld.Name="Hold"
  658. weld.Part0 = p[i]
  659. weld.Part1 = script.Parent.Parent.Torso
  660.  
  661. local HitPos = p[i].Position + (p[i].CFrame.lookVector * .5)
  662.  
  663. local CJ = CFrame.new(HitPos)
  664. local C0 = p[i].CFrame:inverse() *CJ
  665. local C1 = script.Parent.Parent.Torso.CFrame:inverse() * CJ
  666.  
  667. weld.C0 = C0
  668. weld.C1 = C1
  669.  
  670. weld.Parent = p[i]
  671. end
  672. end end;
  673. function() --3000cLOnEs
  674. --All the bricks must have a diffront name. If you need more the copy from local to the green tipeing.
  675.  
  676. local w1 = Instance.new("Weld")
  677.  
  678. w1.Parent = script.Parent.Handle
  679. w1.Part0 = w1.Parent
  680. w1.Part1 = script.Parent.Handle2 --Chaing this to the name of the brick
  681. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  682.  
  683. local w1 = Instance.new("Weld")
  684.  
  685. w1.Parent = script.Parent.Handle
  686. w1.Part0 = w1.Parent
  687. w1.Part1 = script.Parent.Handle3 --Chaing this to the name of the brick
  688. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, -0, 0) --Chaing this to put the brick in a diffront place
  689.  
  690. local w1 = Instance.new("Weld")
  691.  
  692. w1.Parent = script.Parent.Handle
  693. w1.Part0 = w1.Parent
  694. w1.Part1 = script.Parent.Handle4 --Chaing this to the name of the brick
  695. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  696.  
  697. local w1 = Instance.new("Weld")
  698.  
  699. w1.Parent = script.Parent.Handle
  700. w1.Part0 = w1.Parent
  701. w1.Part1 = script.Parent.Handle5 --Chaing this to the name of the brick
  702. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  703.  
  704. local w1 = Instance.new("Weld")
  705.  
  706. w1.Parent = script.Parent.Handle
  707. w1.Part0 = w1.Parent
  708. w1.Part1 = script.Parent.Handle6 --Chaing this to the name of the brick
  709. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  710.  
  711. local w1 = Instance.new("Weld")
  712.  
  713. w1.Parent = script.Parent.Handle
  714. w1.Part0 = w1.Parent
  715. w1.Part1 = script.Parent.Handle7 --Chaing this to the name of the brick
  716. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  717.  
  718. local w1 = Instance.new("Weld")
  719.  
  720. w1.Parent = script.Parent.Handle
  721. w1.Part0 = w1.Parent
  722. w1.Part1 = script.Parent.Handle8 --Chaing this to the name of the brick
  723. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, -0, 0) --Chaing this to put the brick in a diffront place
  724.  
  725. local w1 = Instance.new("Weld")
  726.  
  727. w1.Parent = script.Parent.Handle
  728. w1.Part0 = w1.Parent
  729. w1.Part1 = script.Parent.Handle9 --Chaing this to the name of the brick
  730. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  731.  
  732. local w1 = Instance.new("Weld")
  733.  
  734. w1.Parent = script.Parent.Handle
  735. w1.Part0 = w1.Parent
  736. w1.Part1 = script.Parent.Handle10 --Chaing this to the name of the brick
  737. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  738.  
  739. local w1 = Instance.new("Weld")
  740.  
  741. w1.Parent = script.Parent.Handle
  742. w1.Part0 = w1.Parent
  743. w1.Part1 = script.Parent.Handle11 --Chaing this to the name of the brick
  744. w1.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0) * CFrame.new(0, 0, 0) --Chaing this to put the brick in a diffront place
  745. end;
  746. function() function onChanged()
  747. local w1 = Instance.new("Weld")
  748. w1.Parent = script.Parent.Handle
  749. w1.Part0 = w1.Parent
  750. w1.Part1 = script.Parent.Handle2
  751. w1.C1 = CFrame.new(-0, 4, -0.1)
  752.  
  753. script.Parent.Handle2.Transparency = 0.5
  754. end
  755. script.Parent.AncestryChanged:connect(onChanged) end;
  756. function() local w1 = Instance.new("Weld")
  757.  
  758.  
  759.  
  760.  
  761.  
  762. w1.Parent = script.Parent.Handle
  763.  
  764.  
  765. w1.Part0 = w1.Parent
  766.  
  767.  
  768. w1.Part1 = script.Parent.Handle2
  769.  
  770.  
  771. w1.C1 = CFrame.new(3, 0, 0)
  772. end;
  773. function() local tool = script.Parent
  774. local c = tool:GetChildren()
  775. local parts = {}
  776. for i = 1, #c do
  777. if c[i].className == "Part" and c[i].Name ~= "Handle" then
  778. table.insert(parts, c[i])
  779. end
  780. end
  781.  
  782. function onWeld()
  783. local c = tool.Handle:GetChildren()
  784. for i = 1, #c do
  785. if c[i].className == "Weld" then
  786. c[i]:Remove()
  787. end
  788. end
  789.  
  790. for i = 1, #parts do
  791. parts[i].Parent = tool
  792. local w = Instance.new("Weld")
  793. w.Parent = tool.Handle
  794. w.Part0 = w.Parent
  795. w.Part1 = parts[i]
  796. w.C0 = script[parts[i].Name].Value
  797. end
  798.  
  799. local human = script.Parent.Parent
  800. local rarm = human:FindFirstChild("Right Arm")
  801.  
  802. if rarm == nil then
  803. return
  804. end
  805.  
  806. local rgrip = rarm:FindFirstChild("RightGrip")
  807.  
  808. if rgrip == nil then
  809. return
  810. end
  811.  
  812. local rrgrip = Instance.new("Motor")
  813. rrgrip.Name = "MGrip"
  814. rrgrip.Parent = rarm
  815. rrgrip.Part0 = rarm
  816. rrgrip.Part1 = tool.Handle
  817. rrgrip.MaxVelocity = 0.5
  818. rrgrip.C0 = CFrame.new(0,-2.25,-0.75) * CFrame.fromEulerAnglesXYZ(-1.57,1.57,0)
  819. rrgrip.C1 = CFrame.fromEulerAnglesXYZ(0,1.57,0)
  820. rgrip:Remove()
  821. end
  822.  
  823. script.Parent.Equipped:connect(onWeld)
  824. script.Parent.Unequipped:connect(onWeld) end;
  825. function() function onChanged()
  826. local w1 = Instance.new("Weld")
  827. w1.Parent = script.Parent.Handle
  828. w1.Part0 = w1.Parent
  829. w1.Part1 = script.Parent.Handle2
  830. w1.C1 = CFrame.new(-0, 4, -0.1)
  831.  
  832. script.Parent.Handle2.Transparency = 0.5
  833. end
  834. script.Parent.AncestryChanged:connect(onChanged) end;
  835. function() _G["weld"] = function(p, ...)
  836. other = {...}
  837. for i, h in pairs(other) do
  838. HitPos = p.Position
  839. CJ = CFrame.new(HitPos)
  840. C0 = p.CFrame:inverse() *CJ
  841. C1 = h.CFrame:inverse() * CJ
  842. w = Instance.new("Weld")
  843. w.Parent = p
  844. w.Part0 = p
  845. w.Part1 = h
  846. w.C0 = C0
  847. w.C1 = C1
  848. h.Locked = true
  849. end
  850. end end;
  851. function() enabled = true
  852.  
  853. function onClicked()
  854. if not enabled then return end
  855. enabled = false
  856. script.Parent.Transparency = .5
  857. script.Parent.CanCollide = false
  858. wait(2)
  859. script.Parent.Transparency = 0
  860. script.Parent.CanCollide = true
  861. enabled = true
  862. end
  863.  
  864. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  865.  
  866.  
  867.  
  868. end;
  869. function() bottom = script.Parent.Parent.ShipBottom
  870. right = script.Parent
  871. left = script.Parent.Parent.Left
  872.  
  873. local debounce = false
  874.  
  875. function onClicked()
  876. if left.Value.Value == 0 and debounce == false and right.Value.Value == 0 then
  877. debounce = true
  878. right.Value.Value = 1
  879. right.BrickColor = BrickColor.new(26)
  880. local rightscript = script.Parent.Parent.RightScript:clone()
  881. rightscript.Disabled = false
  882. rightscript.Parent = bottom
  883. wait(0.5)
  884. debounce = false
  885.  
  886. else
  887.  
  888. if right.Value.Value == 1 and debounce == false then
  889. debounce = true
  890. right.Value.Value = 0
  891. right.BrickColor = BrickColor.new(24)
  892. bottom.RightScript:Remove()
  893. end
  894. wait(0.5)
  895. debounce = false
  896. end
  897. end
  898. script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
  899. function() bottom = script.Parent.Parent.ShipBottom
  900. left = script.Parent
  901. right = script.Parent.Parent.Right
  902.  
  903. local debounce = false
  904.  
  905. function onClicked()
  906. if left.Value.Value == 0 and debounce == false and right.Value.Value == 0 then
  907. debounce = true
  908. left.Value.Value = 1
  909. left.BrickColor = BrickColor.new(26)
  910. local leftscript = script.Parent.Parent.LeftScript:clone()
  911. leftscript.Disabled = false
  912. leftscript.Parent = bottom
  913. wait(0.5)
  914. debounce = false
  915.  
  916. else
  917.  
  918. if left.Value.Value == 1 and debounce == false then
  919. debounce = true
  920. left.Value.Value = 0
  921. left.BrickColor = BrickColor.new(24)
  922. bottom.LeftScript:Remove()
  923. end
  924. wait(0.5)
  925. debounce = false
  926. end
  927. end
  928. script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
  929. function() bottom = script.Parent.Parent.ShipBottom
  930.  
  931. function onClicked()
  932. script.Parent.BrickColor = BrickColor.new(26)
  933. local gas = script.Parent.Parent.GasScript:clone()
  934. gas.Disabled = false
  935. gas.Parent = bottom
  936. end
  937. script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
  938. function() bottom = script.Parent.Parent.ShipBottom
  939. down = script.Parent
  940. up = script.Parent.Parent.Down
  941.  
  942. local debounce = false
  943.  
  944. function onClicked()
  945. if up.Value.Value == 0 and debounce == false and down.Value.Value == 0 then
  946. debounce = true
  947. down.Value.Value = 1
  948. down.BrickColor = BrickColor.new(26)
  949. local downscript = script.Parent.Parent.FallScript:clone()
  950. downscript.Disabled = false
  951. downscript.Parent = bottom
  952. wait(0.5)
  953. debounce = false
  954.  
  955. else
  956.  
  957. if down.Value.Value == 1 and debounce == false then
  958. debounce = true
  959. down.Value.Value = 0
  960. down.BrickColor = BrickColor.new(104)
  961. bottom.FallScript:Remove()
  962. end
  963. wait(0.5)
  964. debounce = false
  965. end
  966. end
  967. script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
  968. function() bottom = script.Parent.Parent.ShipBottom
  969. up = script.Parent
  970. down = script.Parent.Parent.Down
  971.  
  972. local debounce = false
  973.  
  974. function onClicked()
  975. if up.Value.Value == 0 and debounce == false and down.Value.Value == 0 then
  976. debounce = true
  977. up.Value.Value = 1
  978. up.BrickColor = BrickColor.new(26)
  979. local upscript = script.Parent.Parent.RiseScript:clone()
  980. upscript.Disabled = false
  981. upscript.Parent = bottom
  982. wait(0.5)
  983. debounce = false
  984.  
  985. else
  986.  
  987. if up.Value.Value == 1 and debounce == false then
  988. debounce = true
  989. up.Value.Value = 0
  990. up.BrickColor = BrickColor.new(23)
  991. bottom.RiseScript:Remove()
  992. end
  993. wait(0.5)
  994. debounce = false
  995. end
  996. end
  997. script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
  998. function() while true do
  999. wait(0.1)
  1000. script.Parent.BodyPosition.position = Vector3.new(0, script.Parent.BodyPosition.position.y -0.2, 0)
  1001. end
  1002. end;
  1003. function() while true do
  1004. script.Parent.RotVelocity = Vector3.new(0, -0.3, 0)
  1005. wait(.5)
  1006. end
  1007. end;
  1008. function() while true do
  1009. wait(0.1)
  1010. script.Parent.BodyPosition.position = Vector3.new(0, script.Parent.BodyPosition.position.y +0.2, 0)
  1011. end
  1012. end;
  1013. function() ship = script.Parent
  1014. position = ship.Position
  1015.  
  1016. while true do
  1017. wait(0.3)
  1018. direction = ship.CFrame.lookVector
  1019. position = position +2 * direction
  1020. error = position - ship.Position
  1021. ship.Velocity = 3*error
  1022. end
  1023. end;
  1024. function() while true do
  1025. script.Parent.RotVelocity = Vector3.new(0, 0.3, 0)
  1026. wait()
  1027. end
  1028. end;
  1029. function() bottom = script.Parent.Parent.ShipBottom
  1030.  
  1031. function onClicked()
  1032. bottom.GasScript:Remove()
  1033. bottom.Velocity = Vector3.new(0,0,0)
  1034. script.Parent.Parent.Go.BrickColor = BrickColor.new(28)
  1035. end
  1036. script.Parent.ClickDetector.MouseClick:connect(onClicked) end;
  1037. function() ship = script.Parent.Parent.Parent
  1038.  
  1039. while true do
  1040. wait(1)
  1041.  
  1042. local position = script.Parent.Position
  1043.  
  1044. if position.y < -40 then
  1045. ship:remove()
  1046. break end
  1047.  
  1048. end end;
  1049. function() ball = script.Parent
  1050. damage = 100
  1051.  
  1052. function onTouched(hit)
  1053.  
  1054.  
  1055. local humanoid = hit.Parent:findFirstChild("Humanoid")
  1056. if humanoid~=nil then
  1057. tagHumanoid(humanoid)
  1058. humanoid.Health = humanoid.Health - damage
  1059. wait(0.00000001)
  1060. untagHumanoid(humanoid)
  1061. connection:disconnect()
  1062. else
  1063. damage = damage / 2
  1064. if damage < 2 then
  1065. connection:disconnect()
  1066. ball.Parent = nil
  1067. end
  1068. end
  1069.  
  1070. if math.random(1,1) == 1 then
  1071. explosion = Instance.new("Explosion")
  1072. explosion.BlastRadius = 15
  1073. explosion.BlastPressure = 600000 -- these are really wussy units
  1074. explosion.Position = script.Parent.Position
  1075. explosion.Parent = game.Workspace
  1076. connection:disconnect()
  1077. ball.Parent = nil
  1078. cancollide = true
  1079. end
  1080.  
  1081. end
  1082.  
  1083. function tagHumanoid(humanoid)
  1084. -- todo: make tag expire
  1085. local tag = ball:findFirstChild("creator")
  1086. if tag ~= nil then
  1087. local new_tag = tag:clone()
  1088. new_tag.Parent = humanoid
  1089. end
  1090. end
  1091.  
  1092.  
  1093. function untagHumanoid(humanoid)
  1094. if humanoid ~= nil then
  1095. local tag = humanoid:findFirstChild("creator")
  1096. if tag ~= nil then
  1097. tag.Parent = nil
  1098. end
  1099. end
  1100. end
  1101.  
  1102. connection = ball.Touched:connect(onTouched)
  1103.  
  1104. r = game:service("RunService")
  1105. t, s = r.Stepped:wait()
  1106. d = t + 5.0 - s
  1107. while t < d do
  1108. t = r.Stepped:wait()
  1109. end
  1110.  
  1111. ball.Parent = nil end;
  1112. function() local switch = script.Parent
  1113. local gunBarrelOne = script.Parent.Parent.GunBarrel.One
  1114.  
  1115. local debounce = false
  1116. local gunOne = true
  1117.  
  1118. local cannonBall = Instance.new("Part")
  1119. cannonBall.Size = Vector3.new(1,1,1)
  1120. cannonBall.BrickColor = BrickColor.new(1) -- medium blue
  1121. cannonBall.Shape = 0
  1122. cannonBall.BottomSurface = 0
  1123. cannonBall.TopSurface = 0
  1124. cannonBall.Name = "Cannon Shot"
  1125. cannonBall.Elasticity = .1
  1126. cannonBall.Reflectance = 0
  1127. cannonBall.Friction = 0
  1128.  
  1129. function fire(player)
  1130.  
  1131. local sound = script.Parent:findFirstChild("GunSound")
  1132. if sound == nil then
  1133. sound = Instance.new("Sound")
  1134. sound.Name = "GunSound"
  1135. sound.SoundId = "http://www.roblox.com/asset?id=2101148"
  1136. sound.Volume = 1
  1137. sound.Parent = script.Parent
  1138. end
  1139. sound:play()
  1140.  
  1141.  
  1142.  
  1143.  
  1144. local missile = Instance.new("Part")
  1145.  
  1146.  
  1147. local barrel
  1148.  
  1149. if gunOne == true then
  1150. barrel = gunBarrelOne
  1151. gunOne = true
  1152.  
  1153. end
  1154.  
  1155. local spawnPos = barrel.CFrame * Vector3.new(6, 0, 0)
  1156.  
  1157. local dx = math.random(50,50)
  1158. local dy = math.random(0,0)
  1159. local dz = math.random(0,0)
  1160. local mag = math.random(750,750)
  1161.  
  1162. local v = barrel.CFrame:vectorToWorldSpace(Vector3.new(mag + dx,dy,dz))
  1163.  
  1164. local missile = cannonBall:clone()
  1165.  
  1166. missile.Position = spawnPos
  1167. missile.Velocity = v
  1168.  
  1169.  
  1170.  
  1171. local new_script = script.Parent.CannonBall:clone()
  1172. new_script.Disabled = false
  1173. new_script.Parent = missile
  1174.  
  1175. local creator_tag = Instance.new("ObjectValue")
  1176. creator_tag.Value = player
  1177. creator_tag.Name = "creator"
  1178. creator_tag.Parent = missile
  1179.  
  1180.  
  1181.  
  1182. missile.Parent = game.Workspace
  1183.  
  1184. end
  1185.  
  1186. function onClicked()
  1187. if debounce == false then
  1188. debounce = true
  1189. switch.BrickColor = BrickColor.new(21)
  1190. -- let slip the dogs of war
  1191. fire(player)
  1192. wait(.5)
  1193.  
  1194. wait(1)
  1195. debounce = false
  1196. switch.BrickColor = BrickColor.new(37)
  1197. end
  1198. end
  1199.  
  1200.  
  1201. script.Parent.ClickDetector.MouseClick:connect(onClicked)
  1202.  
  1203.  
  1204. end;
  1205. function() function onChatted(msg, recipient, speaker)
  1206.  
  1207. local source = string.lower(speaker.Name)
  1208. msg = string.lower(msg)
  1209. local pos1 = script.Parent.Position
  1210. local pos2 = speaker.Character.Head.Position
  1211. dist=(pos1-pos2).magnitude
  1212. dist=dist-math.max(math.max(speaker.Character.Head.Size.x, speaker.Character.Head.Size.z), speaker.Character.Head.Size.y)
  1213. if (dist <= 5 and script.Parent.On.Value == true) then
  1214. local m = Instance.new("Message")
  1215. m.Parent = game.Workspace
  1216. m.Text = msg
  1217. wait(3)
  1218. m:remove()
  1219. end
  1220.  
  1221. end
  1222.  
  1223. function onPlayerEntered(newPlayer)
  1224. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  1225. end
  1226.  
  1227. game.Players.ChildAdded:connect(onPlayerEntered) end;}local ActualScripts = {}
  1228. function s(var)
  1229. local func = table.remove(Scripts,1)
  1230. setfenv(func,setmetatable({script=var,require=fake_require or require,global=genv},{
  1231. __index = getfenv(func),
  1232. }))
  1233. table.insert(ActualScripts,coroutine.wrap(func))
  1234. end
  1235. Decode = function(str,t,props,classes,values,ICList,Model,CurPar,LastIns,split,RemoveAndSplit,InstanceList)
  1236. local tonum,table_remove,inst,parnt,comma,table_foreach = tonumber,table.remove,Instance.new,"Parent",",",
  1237. function(t,f)
  1238. for a,b in pairs(t) do
  1239. f(a,b)
  1240. end
  1241. end
  1242. local Types = {
  1243. Color3 = Color3.new,
  1244. Vector3 = Vector3.new,
  1245. Vector2 = Vector2.new,
  1246. UDim = UDim.new,
  1247. UDim2 = UDim2.new,
  1248. CFrame = CFrame.new,
  1249. Rect = Rect.new,
  1250. NumberRange = NumberRange.new,
  1251. BrickColor = BrickColor.new,
  1252. PhysicalProperties = PhysicalProperties.new,
  1253. NumberSequence = function(...)
  1254. local a = {...}
  1255. local t = {}
  1256. repeat
  1257. t[#t+1] = NumberSequenceKeypoint.new(table_remove(a,1),table_remove(a,1),table_remove(a,1))
  1258. until #a==0
  1259. return NumberSequence.new(t)
  1260. end,
  1261. ColorSequence = function(...)
  1262. local a = {...}
  1263. local t = {}
  1264. repeat
  1265. t[#t+1] = ColorSequenceKeypoint.new(table_remove(a,1),Color3.new(table_remove(a,1),table_remove(a,1),table_remove(a,1)))
  1266. until #a==0
  1267. return ColorSequence.new(t)
  1268. end,
  1269. number = tonumber,
  1270. boolean = function(a)
  1271. return a=="1"
  1272. end
  1273. }
  1274. split = function(str,sep)
  1275. if not str then return end
  1276. local fields = {}
  1277. local ConcatNext = false
  1278. str:gsub(("([^%s]+)"):format(sep),function(c)
  1279. if ConcatNext == true then
  1280. fields[#fields] = fields[#fields]..sep..c
  1281. ConcatNext = false
  1282. else
  1283. fields[#fields+1] = c
  1284. end
  1285. if c:sub(#c)=="\\" then
  1286. c = fields[#fields]
  1287. fields[#fields] = c:sub(1,#c-1)
  1288. ConcatNext = true
  1289. end
  1290. end)
  1291. return fields
  1292. end
  1293. RemoveAndSplit = function(t)
  1294. return split(table_remove(t,1),comma)
  1295. end
  1296. t = split(str,";")
  1297. props = RemoveAndSplit(t)
  1298. classes = RemoveAndSplit(t)
  1299. values = split(table_remove(t,1),'|')
  1300. ICList = RemoveAndSplit(t)
  1301. InstanceList = {}
  1302. Model = inst"Model"
  1303. CurPar = Model
  1304. table_foreach(t,function(ct,c)
  1305. if c=="n" or c=="p" then
  1306. CurPar = c=="n" and LastIns or CurPar[parnt]
  1307. else
  1308. ct = split(c,"|")
  1309. local class = classes[tonum(table_remove(ct,1))]
  1310. if class=="UnionOperation" then
  1311. LastIns = {UsePartColor="1"}
  1312. else
  1313. LastIns = inst(class)
  1314. if LastIns:IsA"Script" then
  1315. s(LastIns)
  1316. elseif LastIns:IsA("ModuleScript") then
  1317. ms(LastIns)
  1318. end
  1319. end
  1320.  
  1321. local function SetProperty(LastIns,p,str,s)
  1322. s = Types[typeof(LastIns[p])]
  1323. if p=="CustomPhysicalProperties" then
  1324. s = PhysicalProperties.new
  1325. end
  1326. if s then
  1327. LastIns[p] = s(unpack(split(str,comma)))
  1328. else
  1329. LastIns[p] = str
  1330. end
  1331. end
  1332.  
  1333. local UnionData
  1334. table_foreach(ct,function(s,p,a,str)
  1335. a = p:find":"
  1336. p,str = props[tonum(p:sub(1,a-1))],values[tonum(p:sub(a+1))]
  1337. if p=="UnionData" then
  1338. UnionData = split(str," ")
  1339. return
  1340. end
  1341. if class=="UnionOperation" then
  1342. LastIns[p] = str
  1343. return
  1344. end
  1345. SetProperty(LastIns,p,str)
  1346. end)
  1347.  
  1348. if UnionData then
  1349. local LI_Data = LastIns
  1350. LastIns = DecodeUnion(UnionData)
  1351. table_foreach(LI_Data,function(p,str)
  1352. SetProperty(LastIns,p,str)
  1353. end)
  1354. end
  1355. table.insert(InstanceList,LastIns)
  1356. LastIns[parnt] = CurPar
  1357. end
  1358. end)
  1359. table_remove(ICList,1)
  1360. table_foreach(ICList,function(a,b)
  1361. b = split(b,">")
  1362. InstanceList[tonum(b[1])][props[tonum(b[2])]] = InstanceList[tonum(b[3])]
  1363. end)
  1364.  
  1365. return Model:GetChildren()
  1366. end
  1367.  
  1368. local Objects = Decode('Name,Value,Color,Position,Orientation,Velocity,Size,BackSurface,BottomSurface,RightSurface,TopSurface,MeshType,C0,C1,Part0,Part1,LeftSurface,FrontSurface,Reflectance,Scale,Transparency,CanCollide,MaxTorque,MaxForce,MaxActivationDistance,SoundId,Volume,Shape;Part,Model,IntValue,SpecialMesh,W'
  1369. ..'eld,Script,CFrameValue,Seat,ClickDetector,BoolValue,BodyGyro,BodyPosition,Sound;Part|Spaceship Ardula|tech transport ship|VitalParts|Speed|30|0.3882,0.3725,0.3843|-88.3161,26.1118,-91.1673|0,-180,0|0,-0.0149,0|10,10,2|2|0|6|0,5,0,-1,-0,-0,0,0,1,0,1,0|17.9996,-0.5,56.999,-1,0,0,0,-0.0001,1,0'
  1370. ..',1,0|0,0,1,1,0,0,0,1,0,0,0,1|0.4999,0,17.9989,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5004,1.5,56.9984,0,-0.0001,1,0,1,0,-1,0,0|-0.5004,-3.5,56.9984,0,-0.0001,1,0,1,0,-1,0,0|0.5009,-1.5,17.9993,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|0.5003,4,17.9996,0,-0'
  1371. ..'.0001,-1,-0.0001,1,-0.0001,1,0,0|-0.5004,3.5,56.9984,0,-0.0001,1,0,1,0,-1,0,0|secret|Weld Script|WeldScript|Weld|0,-1,0,1,0,-0,0,0,1,0,-1,-0|-48.8169,21.1118,-63.1674|3,2,30|-1.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.4999,-1,14.4989,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|-47.8169,23.6118,-63'
  1372. ..'.1674|1,3,30|0,-1.5,0,1,0,0,-0,-0,-1,0,1,0|-1.0001,1,-0.0001,0.9999,0,-0.0001,-0.0001,-0.0001,-1,-0.0001,0.9999,-0.0001|-70.3165,23.6118,-153.6661|-90,0,0|6,19,17|0,-9.5,0,1,0,0,-0,-0,-1,0,1,0|0,-2.5001,24.9985,-1,-0.0001,0,0,1,0,-0.0001,-0.0001,-1|0.0666,0.0666,0.0666|-45.8169,26.1118,-49.'
  1373. ..'1674|1,12,90|Welding|0,0,0,0,0,-1,0,1,0,1,0,0|55,0.3,0,1,0,0,0,0,1,0,-1,0|-26.5,-26.28,14.5,0,0,-1,-0.0001,1,0,0.9999,0,0|0,0,45,1,0,0,0,1,0,0,0,1|-24.5,0,-25.0001,0.9999,-0.0001,0,-0.0001,1,-0.0001,0,-0.0001,0.9999|0.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5002,-3.5,0.4988,-0.0001,-0.0001,1,0,1,0,-1'
  1374. ..',0,-0.0001|-24,-5.5,14.9987,-0.0001,-0.0001,0.9999,0,1,-0.0001,-1,-0.0001,-0.0001|-0.5001,4,0.499,-0.0001,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,-0.0001|0.0509,0.4117,0.6745|1|-46.8174,24.6118,-48.6674|1,1,89|0,-0.5,0,1,0,0,-0,-0,-1,0,1,0|0.0002,2,-0.0005,1,-0.0001,-0.0001,-0.0001,0,-1,0,1,0'
  1375. ..'|-0.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.5005,-1.5001,-0.5001,-0.0001,-0.0001,-1,0,1,-0.0001,0.9999,-0.0001,-0.0001|-46.817,27.6118,-48.6686|0,0.5,0,-1,-0,-0,0,0,1,0,1,0|0,-1.5,0,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|0.5001,1.4999,-0.4989,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,0.9999,0,-0.0001|-46.817'
  1376. ..',22.1118,-48.6684|1,4,89|-46.8179,26.1118,-48.6684|1,2,89|43.9991,0,-22.9996,1,-0.0001,0,0,1,0,0,-0.0001,1|0,-1,0,1,0,0,-0,-0,-1,0,1,0|0.0008,0.5,0.0016,1,0,0,0,-0.0001,-1,0,1,-0.0001|0,0,44.5,1,0,0,0,1,0,0,0,1|-23.4992,-0.5,-0.4992,1,0,0,-0.0001,1,0,0,-0.0001,1|0,1,0,-1,-0,-0,0,0,1,0,1,0|0'
  1377. ..'.001,-0.5,0.0009,-1,0,-0.0001,0,-0.0001,1,0,0.9999,-0.0001|0.501,-0.0001,-0.4991,-0.0001,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,-0.0001|-46.8174,29.6118,-48.6683|1,3,89|0,1.5,0,-1,-0,-0,0,0,1,0,1,0|-23.4994,-0.5,14.4996,-1,0,0,0,0,1,0,0.9999,-0.0001|-53.8169,17.6118,-59.1674|0,-90,180|170,5,'
  1378. ..'17|0,0,0,1,0,0,0,-1,0,0,0,-1|-18.5,-34.78,24.5,0,0,-1,-0.0001,1,0,0.9999,0,0|0,-2.5,0,1,0,0,-0,-0,-1,0,1,0|-7,-2,-79,-0.0001,-1,0,-0.0001,-0.0001,1,-1,0,0|-16.5,-6,-60,0,0.9999,-0.0001,-0.0001,-0.0001,1,0.9999,0,-0.0001|4.9999,-1,-4.0001,0,0.9999,-0.0001,-0.0001,-0.0001,1,0.9999,-0.0001,-0.'
  1379. ..'0001|7.9999,-6,79.9999,0,0.9999,-0.0001,-0.0001,-0.0001,1,0.9999,0,-0.0001|33.4986,-2,-16.5004,-1,0,0,0,-0.0001,1,0,1,0|64.9999,-7.7,6,0.9999,0,-0.0001,0,-1,0,0,0,-1|6.9999,-2,10.4991,0,0.9999,0,0,-0.0001,1,0.9999,-0.0001,-0.0001|7.9999,-6,10,0,0.9999,-0.0001,-0.0001,-0.0001,1,0.9999,0,-0.0'
  1380. ..'001|-53.8169,37.1118,-54.1674|0,-90,0|160,10,17|0,0,0,-1,0,0,0,1,0,0,0,-1|-18.5,-15.28,19.5,0,0,-1,-0.0001,1,0,0.9999,0,0|0,-5,0,1,0,0,-0,-0,-1,0,1,0|-16.5004,0.5,19.999,-0.0001,0.9999,0,0,-0.0001,-1,-1,-0.0001,0|-16.5,6,-65,0,0.9999,0,0,-0.0001,-1,-1,0,0|59.9999,-7.7,-6,-1,0,0,0,-1,-0.0001'
  1381. ..',-0.0001,0,1|7.9999,6,5,0,0.9999,0,0,-0.0001,-1,-1,0,0|0,0,8.5,1,0,0,0,1,0,0,0,1|-7.9998,0,-14.4987,-0.0001,0,0.9999,0,1,-0.0001,-1,0,-0.0001|7.9999,6,74.9999,0,0.9999,0,0,-0.0001,-1,-1,0,0|-48.8169,21.1118,-27.1675|-32,-2.5,-5,0,0.9999,0,0,0,1,0.9999,-0.0001,0|0.5,-1,-21.5,-0.0001,-0.0001,'
  1382. ..'-1,-0.0001,1,0,0.9999,-0.0001,-0.0001|5.9999,-0.2001,0.4999,0,0.9999,-0.0001,0,-0.0001,1,0.9999,0,0|0,-0.2001,0.4999,0,0.9999,-0.0001,0,-0.0001,1,0.9999,0,0|-12,-0.2001,0.4999,0,0.9999,-0.0001,0,-0.0001,1,0.9999,0,0|-47.8169,23.6118,-27.1675|11.9999,1.2999,0.9999,-1,-0.0001,0,0,1,-0.0001,0,'
  1383. ..'0,-1|5.9999,1.2999,0.9999,-1,-0.0001,0,0,1,-0.0001,0,0,-1|0,1.2999,0.9999,-1,-0.0001,0,0,1,-0.0001,0,0,-1|-12,1.2999,0.9999,-1,-0.0001,0,0,1,-0.0001,0,0,-1|-1.0001,1,-0.0001,0.9999,0,0,-0.0001,-0.0001,-1,0,0.9999,0|-70.3169,26.1118,-119.1674|50,12,50|-2,-26.28,84.5,0,0,-1,-0.0001,1,0,0.9999'
  1384. ..',0,0|0,0,-25,-1,-0,-0,0,1,0,-0,-0,-1|-24.4997,0,59.9979,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|0.7686,0.1568,0.1098|0.2|-52.3166,42.1118,-173.1658|20,2,20|0.8,3,0.8|3|0,0,-10,-1,-0,-0,0,1,0,-0,-0,-1|-5,10,0,0.9999,0,0,-0.0001,-0.0001,-1,0,0.9999,0|0,0,9,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-52.31'
  1385. ..'69,42.0917,-144.1674|20,20,20|1.25,3,1.25|0,-10,0,1,0,0,-0,-0,-1,0,1,0|-80,4.9799,-1.5,0,0,0.9999,-0.0001,1,-0.0001,-1,-0.0001,0|0,10,0,-1,-0,-0,0,0,1,0,1,0|0,-0.0201,-9.0001,0.9999,-0.0001,-0.0001,0,1,0,0,-0.0001,0.9999|-57.3169,22.1118,-154.1674|84.9999,-4.5,3.5,-0.0001,-0.0001,-1,-0.0001'
  1386. ..',-1,-0.0001,-1,-0.0001,0|-13,-4.0001,24.9999,-1,-0.0001,0,0,1,0,-0.0001,-0.0001,-1|-13,4.5,84.9999,-1,-0.0001,0,0,1,0,-0.0001,-0.0001,-1|0,0,10,1,0,0,0,1,0,0,0,1|5,-10.0001,-9,-1,-0.0001,-0.0001,0,-0.0001,1,-0.0001,0.9999,-0.0001|0,0,-9,0.9999,-0.0001,-0.0001,-0.0001,1,-0.0001,0,-0.0001,0.9'
  1387. ..'999|-57.3165,22.1118,-173.1658|20,20,18|4.9999,-10.0001,9.9999,-1,0,-0.0001,0,-0.0001,1,0,0.9999,-0.0001|0,0,9,1,0,0,0,1,0,0,0,1|0,-1.0001,0,-1,0,-0.0001,-0.0001,-0.0001,0.9999,-0.0001,1,-0.0001|-57.3165,22.1118,-183.1657|-52.3166,42.1118,-163.1659|-49.3169,22.3118,-51.1675|0,90,0|2,0.4,2|0'
  1388. ..'.5,-1.3,-12,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0,-0.2001,0,1,0,0,-0,-0,-1,0,1,0|0.4999,1,-12,0,-1,0,-0.0001,0,-1,0.9999,0,0|-49.3169,22.3118,-55.1675|0.5,-1.3,-8,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0.4999,1,-8.0001,0,-1,0,-0.0001,0,-1,0.9999,0,0|-49.3169,22.3118,-59.1675|0.5,-1'
  1389. ..'.3,-4,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0.4999,1,-4,0,-1,0,-0.0001,0,-1,0.9999,0,0|-49.3169,22.3118,-63.1675|0.5,-1.3,0,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0.4999,1,0,0,-1,0,-0.0001,0,-1,0.9999,0,0|-49.3169,22.3118,-67.1674|0.5,-1.3,4,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|'
  1390. ..'0.4999,1,3.9999,0,-1,0,-0.0001,0,-1,0.9999,0,0|-49.3169,22.3118,-71.1673|0.4999,-1.3,7.9999,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0.4999,1,7.9999,0,-1,-0.0001,-0.0001,0,-1,1,0,-0.0001|-49.3169,22.3118,-75.1674|0.5,-1.3,12,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0.4999,1,11.9999,0,-1,0'
  1391. ..',-0.0001,0,-1,0.9999,0,0|-49.3169,22.3118,-27.1675|-49.3169,22.3118,-33.1675|0.5,-1.3,5.9999,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0.4999,1,5.9999,0,-1,0,-0.0001,0,-1,0.9999,0,0|-49.3169,22.3118,-39.1674|-49.3169,22.3118,-21.1675|-49.3169,22.3118,-15.1675|-53.816,26.1118,45.8304|0,-180,'
  1392. ..'90|12,17,40|0,0,20,1,0,0,0,1,0,0,0,1|7.9992,-0.0001,-4.9995,-0.0001,-1,-0.0001,1,-0.0001,0,-0.0001,-0.0001,1|0,-8.5,0,1,0,0,-0,-0,-1,0,1,0|-0.4999,0,-0.5,0,0,0.9999,1,-0.0001,-0.0001,-0.0001,0.9999,0|-62.8157,26.1118,45.3304|1,10,39|-46.8169,24.6118,19.8326|1,1,8|0.4999,-1.5001,0.9988,-0.00'
  1393. ..'01,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|-46.8169,22.1118,19.8325|1,4,8|0,2,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,-0.5,-0.0001,-1,-0.0001,0,-0.0001,0,1,-0.0001,0.9999,0|0.4999,-4.0001,0.9999,-0.0001,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,-0.0001|-54.8162,26.1118,24.3319|1,2,17|-54.8169,24.6118,2'
  1394. ..'4.3305|1,1,17|0,0,-8.5,-1,-0,-0,0,1,0,-0,-0,-1|0.5001,-1.5001,-3.4991,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|-0.0014,-1,0.0007,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|-54.8162,27.6118,24.3319|0.4998,1.4999,-3.4998,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|0,-1.5,0,-1,0,-0.0001'
  1395. ..',-0.0001,-0.0001,1,0,1,0|0,1,0,1,0,0,0,-0.0001,-1,0,1,-0.0001|-54.8169,26.6118,25.3305|17,11,1|0,5.5,0,-1,-0,-0,0,0,1,0,1,0|79.4996,-5.0001,1.0004,0,-1,0,0,0,1,-1,-0.0001,0|0,0,0.5,1,0,0,0,1,0,0,0,1|-15.4999,-5,-58.9999,0.9999,0,0,-0.0001,1,-0.0001,-0.0001,-0.0001,0.9999|0,0,-0.5,-1,-0,-0,0'
  1396. ..',1,0,-0,-0,-1|0.5,-1.0008,20.0013,0,1,-0.0001,1,-0.0001,-0.0001,-0.0001,-0.0001,-1|0.4985,-3,0.0007,0,0,-1,-0.0001,1,0,1,0,0|-15.4998,-5.0001,-93.9981,-1,0,0,0,-0.0001,1,0,1,0|-8.5,0,0,-0,-0,-1,0,1,0,1,0,0|0.5008,0.4999,-4.4986,-0.0001,0,-1,-0.0001,1,0,1,0,-0.0001|0.4999,2,0,-0.0001,0,-1,-0'
  1397. ..'.0001,1,0,1,0,-0.0001|0.4985,-1,0.0007,0,0,-1,-0.0001,1,0,1,0,0|0.4985,0.5,0.0007,0,0,-1,-0.0001,1,0,1,0,0|-7.9993,0.5,19.5013,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|-15.4993,-6.5001,14.0005,-1,0,0,0,1,-0.0001,0,-0.0001,-1|-54.8169,22.6118,24.3305|1,3,17|0.5,-3.5001,-3.5001,-0.0001,-0.0001,-'
  1398. ..'1,-0.0001,1,0,0.9999,-0.0001,-0.0001|0,-0.5,0,-1,-0.0001,0,-0.0001,-0.0001,1,-0.0001,0.9999,-0.0001|0,-4,0.5,-1,-0.0001,0,0,1,0,-0.0001,-0.0001,-1|-45.8169,26.1118,20.8314|1,12,10|-15,0.3,0,1,0,0,0,0,1,0,-1,0|-3.5005,0,-8.4992,1,-0.0001,0,0,1,0,-0.0001,-0.0001,1|-46.8175,27.6118,19.8302|-0.'
  1399. ..'0007,1,-0.0013,0.9999,0,-0.0001,0,0,-1,0,0.9999,-0.0001|0.5006,1.4999,1.0012,-0.0001,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,-0.0001|-46.8168,29.6118,19.8307|1,3,8|-23.5,-0.5,-54,0.9999,0,-0.0001,-0.0001,0,1,0,-1,-0.0001|-0.0001,0.5,-0.0001,0.9999,0,-0.0001,0,0,-1,0,0.9999,-0.0001|0.5,3.4999,'
  1400. ..'1,-0.0001,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,-0.0001|-46.8172,26.1118,19.8314|1,2,8|0,0,4,1,0,0,0,1,0,0,0,1|-0.4999,0,-7.9996,0,0,1,0,1,-0.0001,-1,0,0|-0.0004,0.5,-0.0002,1,0,0,0,-0.0001,-1,0,1,-0.0001|0.5002,-0.0001,0.9999,-0.0001,0,-1,0,1,0,1,-0.0001,-0.0001|-70.3164,26.6118,-93.6666|4'
  1401. ..'8,11,1|-39.4996,-5.0001,16.5002,0,-1,0,0,-0.0001,1,-1,-0.0001,-0.0001|-0.0002,-5,58.9983,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|0.0002,0.4999,-25.0015,0.9999,0,-0.0001,-0.0001,1,0,0,-0.0001,0.9999|23.4999,2,44.4989,-1,0,0,0,1,0,-0.0001,0,-1|23.5,-1,44.4981,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,'
  1402. ..'-1|-24,0,0,-0,-0,-1,0,1,0,1,0,0|0.5004,0.4999,44.4985,-0.0001,0,-1,0,1,0,0.9999,-0.0001,-0.0001|23.5002,4.5,44.4985,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|-0.4994,0.5,-0.0006,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-23.4998,2,58.9977,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|-23.4998,-3,58.9977,-1,'
  1403. ..'0,0,0,1,-0.0001,-0.0001,-0.0001,-1|24,0,0,0,0,1,0,1,0,-1,-0,-0|-0.5002,0.5,59.4975,0,0,0.9999,0,1,-0.0001,-1,-0.0001,0|-0.4984,-1,-0.0002,0,0,1,0,1,-0.0001,-1,0,0|23.5002,-3,44.4985,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|0.0001,-5.0001,25.0003,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-0.499,4.5,'
  1404. ..'-0.0003,0,0,1,0,1,-0.0001,-1,0,0|-23.4998,4,58.9977,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|-70.3166,29.6118,-92.6683|1,3,46|0,-0.5,58.4999,0,0.9999,-0.0001,-0.0001,-0.0001,1,0.9999,0,-0.0001|0,0.5,0,0.9999,0,-0.0001,0,-0.0001,-1,0,0.9999,0|0,3,-0.5001,0.9999,-0.0001,0,-0.0001,1,-0.0001,0,-0.'
  1405. ..'0001,0.9999|-18,3.5,0.9999,-1,-0.0001,0,0,1,0,0,-0.0001,-1|-70.317,26.1118,-92.6673|1,2,46|0.001,-0.5,0.0003,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-70.3166,27.6118,-92.6683|1,1,46|-70.3163,24.6118,-92.6666|0,2,0,0.9999,0,-0.0001,0,-0.0001,-1,0,0.9999,0|-0.0002,-2,-0.5,0.9999,-0.0001,0,-0.000'
  1406. ..'1,1,-0.0001,0,-0.0001,0.9999|-0.0001,-1,0,-1,0,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|-18,-1.5,1,-1,0,0,0,1,-0.0001,0,-0.0001,-1|-70.3172,22.1118,-92.6661|1,4,46|0,-2,0,1,0,0,-0,-0,-1,0,1,0|-33.4987,-2.5,16.4996,0.9999,-0.0001,0,-0.0001,-0.0001,1,-0.0001,-1,-0.0001|-54.8166,29.6118,24.3304|0.'
  1407. ..'4997,3.4999,-3.499,-0.0001,-0.0001,-1,-0.0001,1,-0.0001,1,0,-0.0001|Door|0.1|-46.1169,26.1118,5.8318|90,90,0|20,0.4,12|0.5019,0.7333,0.8588|0.7699|-88.3165,26.1118,-63.1686|0,-90,-90|10,54,10|1,1.1,1|-5,0,0,-0,-0,-1,0,1,0,1,0,0|18,-0.5,29,0.9999,0,-0.0001,-0.0001,0,1,0,-1,-0.0001|0,0,5,1,0,'
  1408. ..'0,0,1,0,0,0,1|-0.5001,0,28.9999,0,0,0.9999,-1,0,-0.0001,0,-1,0|-0.5001,1.5,28.9999,0,0,0.9999,-1,0,-0.0001,0,-1,0|-0.5001,-1.5,28.9999,0,0,0.9999,-1,0,-0.0001,0,-1,0|-0.5001,-3.5,28.9999,0,0,0.9999,-1,0,-0.0001,0,-1,0|0,27,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,0,2,-0.0001,0.9999,0,1,-0.0001,0,-0.0'
  1409. ..'001,0,-1|-0.5001,3.5,28.9999,0,0,0.9999,-1,0,-0.0001,0,-1,0|0,-27,0,1,0,0,-0,-0,-1,0,1,0|0,0,-1.0001,0,0.9999,0,-1,-0.0001,-0.0001,0,0,0.9999|-86.8169,17.6118,-59.1674|0,90,-180|0,0,0,-1,0,0,0,-1,0,0,0,1|14.4999,-34.78,24.5,0,0,-1,-0.0001,1,0,0.9999,0,0|16.5,-6,-60,0,-1,-0.0001,0,0,1,-1,0,-'
  1410. ..'0.0001|-8.0002,-6,24.999,-0.0001,-1,0,0,0,1,-1,0,0|1,-6,84.4963,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-83.4984,-2,1.5002,0.9999,-0.0001,-0.0001,0,0,1,-0.0001,-1,0|Controls|Right|0.9607,0.8039,0.1882|-71.8158,23.7917,61.3308|1,1.2,1|0,0,-0.0001,0.9999,0,0,-0.0001,1,0,-0.0001,-0.0001,0.9999|1'
  1411. ..'.5,1.6798,-1.5,0,0,-1,0,1,0,1,0,0|Left|-68.8159,23.7917,61.3308|-1.5,1.6798,-1.5,0,0,-1,0,1,0,1,0,0|Go|0.1568,0.498,0.2784|-70.3159,23.7917,61.3308|1,1.2,2|-0.0001,0,0,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|0,1.6798,-1.5,0,0,-1,0,1,0,1,0,0|Down|0.4196,0.196,0.4862|-67.8159,23.7917,58.3309|0,'
  1412. ..'180,0|0,0,0,0,0,-1,-0.0001,1,0,0.9999,0,0|-2.5,1.6799,1.5,0,0,-1,0,1,0,1,0,0|Up|-72.8158,23.7917,58.3309|2.5,1.6798,1.5,0,0,-1,0,1,0,1,0,0|FallScript|RightScript|RiseScript|10|GasScript|LeftScript|Stop|-70.3159,23.7917,60.3308|0,1.6798,-0.5,0,0,-1,0,1,0,1,0,0|ShipBottom|-72.3169,52.3917,-34'
  1413. ..'.6674|74,1.2,195|0|SunkScript|9.8999999222963e+30,0,0|0,52.8,0|0,9.9000000485662e+36,0|-0.0001,0,0,0,0,-1,-0.0001,1,0,0.9999,0,0|-20,-109.5,10.3,-0.0001,-0.0001,0.9999,0.9999,0,0,-0.0001,1,0|Captains Chair|-70.3159,26.6118,52.031|0,90,90|1,0.4,2|-0.3001,1.5,0,-0.0001,0.9999,-0.0001,0,0,-1,-'
  1414. ..'1,-0.0001,0|0.898,0.8941,0.8745|-68.8163,24.3118,53.8311|-71.8158,24.3118,53.831|0.5,-0.2,0,0,0,-1,0,-1,0,-1,0,0|-71.8158,23.6118,53.631|0,-90,90|1,2.4,1|-70.3159,26.6118,52.431|0.0999,1.5,0,-0.0001,0.9999,-0.0001,0,0,-1,-1,-0.0001,0|0,0.2,0,1,0,-0.0001,0,0,-1,0,0.9999,0|-70.3159,24.6118,52'
  1415. ..'.331|1,3,2|-68.8159,23.6118,53.631|0.0004,-0.2001,-0.2002,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-70.3159,23.3118,53.831|-1,0,0,-0,-0,-1,0,1,0,1,0,0|-0.3,-0.2,0.5,-0.0001,1,0,0.9999,-0.0001,0,0,-0.0001,-1|0.5,-1.3,0,0,0,-1,-0.0001,1,-0.0001,0.9999,-0.0001,0|1,0,0,0,0,1,0,1,0,-1,-0,-0|-0.3,-0.'
  1416. ..'2,-0.5,0,1,-0.0001,-1,-0.0001,0,0,-0.0001,0.9999|-71.8158,23.6118,55.0309|90,0,0|1,0.4,1|0,-1.2,0,0,-1,-0.0001,0,0,0.9999,-1,0,0|-70.3159,22.6118,53.331|3,1,2|0,-0.2001,0.5,0,0.9999,-0.0001,-0.0001,-0.0001,1,0.9999,0,-0.0001|1,-1.5,0,-1,0,0,-0.0001,-0.0001,1,0,0.9999,-0.0001|-71.8158,22.611'
  1417. ..'8,53.831|2,1,1|1.3999,1,1|-0.5,-0.2,0,-0.0001,-0.0001,1,0.9999,0,-0.0001,0,0.9999,-0.0001|-68.8163,22.6118,53.8311|-0.5,-0.2002,0.0004,-0.0001,-0.0001,1,1,0,0,0,1,0|-68.8159,23.6118,55.0309|-70.3159,21.6118,53.331|1,2,1|-70.3159,23.1118,65.3293|16,4,1|8,0,0,0,0,1,0,1,0,-1,-0,-0|3,-8.4998,-1'
  1418. ..'9.4993,-0.0001,-1,-0.0001,0,-0.0001,1,-1,0,0|-8,0,0,-0,-0,-1,0,1,0,1,0,0|-3,-8.5002,-19.4993,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-70.3159,22.1118,59.8308|6,2,4|0.5004,-0.4,1.4997,1,0,-0.0001,0,-0.0001,1,0,-1,-0.0001|-70.3169,17.6118,45.8325|0,-180,180|16,5,40|-70.3159,20.6118,45.8311|16,1,4'
  1419. ..'0|5.5,-8.5,0,-0.0001,-1,0,-0.0001,-0.0001,0.9999,-1,-0.0001,-0.0001|7.5003,-5,-0.5008,-1,-0.0001,0,0,-0.0001,1,-0.0001,1,0|-7.5,-0.5,0,0,-1,0,0,-0.0001,1,-1,0,-0.0001|0,-2,19.4999,-1,0,-0.0001,0,-0.0001,1,0,0.9999,-0.0001|0,0,-20,-1,-0,-0,0,1,0,-0,-0,-1|-0.5001,0,-2.5,0,0,0.9999,0,1,0,-1,-0'
  1420. ..'.0001,0|0,-1,14,-1,0,-0.0001,0,-0.0001,1,0,0.9999,-0.0001|-15.5001,-5.5,-0.5026,0.9999,-0.0001,0,0,1,-0.0001,-0.0001,0,0.9999|-5.5,-8.5002,-0.0008,-0.0001,1,-0.0001,0,0,1,1,0,-0.0001|-7.5005,-5,-0.5,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|0.0004,-2.5001,-0.0001,-1,0,0,0,0,1,0,1,-0.0001|0.6|-70'
  1421. ..'.3169,28.6118,65.3325|16,7,1|-0.0001,0,-0.0001,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|-2.0001,-23.78,-100,0,0,-1,-0.0001,1,0,0.9999,0,0|-2.5001,-8.5,-19.5,-0.0001,-1,0,-0.0001,-0.0001,0.9999,-1,-0.0001,-0.0001|0,3.5,0,-1,-0,-0,0,0,1,0,1,0|0,-1.5,-5.5,-1,0,-0.0001,0,-0.0001,1,0,0.9999,-0.'
  1422. ..'0001|2.5,-8.5,-19.5,-0.0001,1,0,-0.0001,0,0.9999,0.9999,-0.0001,0|0,-3.5,0,1,0,0,-0,-0,-1,0,1,0|0,2,0,0.9999,0,0,-0.0001,-0.0001,-1,-0.0001,0.9999,0|-70.3162,33.6118,59.8318|16,3,12|0,0,6,1,0,0,0,1,0,0,0,1|0.0002,0.5,-14.0009,1,0,-0.0001,-0.0001,1,0,0,-0.0001,1|-70.3164,31.6118,25.3305|14,1'
  1423. ..',1|0,-5.0001,-94,-1,0,-0.0001,0,-0.0001,1,0,0.9999,-0.0001|-0.0002,0,-58.9999,0.9999,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,0.9999|-7,0,0,-0,-0,-1,0,1,0,1,0,0|8.5001,5,0.001,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|0,-1.5001,14.001,-1,0,0,0,1,-0.0001,0,-0.0001,-1|7,0,0,0,0,1,0,1,0,-1,-0,-0'
  1424. ..'|-8.5002,5.5,0.0004,0,-0.0001,1,0,1,0,-1,0,0|-70.3169,38.6118,39.8325|16,7,28|-0.0001,0,0,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|-2.0001,-13.78,-74.5,0,0,-1,-0.0001,1,0,0.9999,0,0|-70.3159,33.1118,39.8311|16,4,28|7.4999,5,5.5003,1,-0.0001,-0.0001,-0.0001,-0.0001,-1,0,1,-0.0001|-7.5003,5,'
  1425. ..'5.501,1,-0.0001,0,0,-0.0001,-1,0,1,-0.0001|0,0,14,1,0,0,0,1,0,0,0,1|-15.5004,7,-0.5019,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|-0.0006,-3.5,0.0011,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,0.9999,0|-88.3169,42.1118,-144.1674|-0.0001,0,0,0,0,0.9999,0.9999,-0.0001,0,-0.0001,1,0|16,-10.28,109.4'
  1426. ..'999,0,0,-1,-0.0001,1,0,0.9999,0,0|79.9999,5,-1.5,0,-0.0001,-1,0,1,0,0.9999,0,0|17.9999,6,24.9999,0.9999,0,0,-0.0001,-0.0001,-1,-0.0001,0.9999,0|-0.0001,0,-9,0.9999,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,0.9999|-88.3161,42.1118,-163.1661|-70.3166,31.6118,-34.1688|48,1,118|-0.5007,5.5,0.'
  1427. ..'0003,0,0,0.9999,0,1,-0.0001,-1,0,0|40.0012,-0.2,-5.5,0.9999,-0.0001,-0.0001,0,0,0.9999,0,-1,-0.0001|0.4999,5.4999,55.0012,-0.0001,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,-0.0001|0,0,-59,-1,-0,-0,0,1,0,-0,-0,-1|-15.4997,5.5,0.4987,-1,0,-0.0001,0,1,0,0,0,-1|-58.4997,1.5,15.5001,-0.0001,-1,0,-0.'
  1428. ..'0001,-0.0001,-1,1,-0.0001,-0.0001|-23.4996,1.5,0.0004,1,0,0,0,0,-1,0,1,0|-70.3169,17.6118,-59.1675|16,5,170|0,2.5,0,-1,-0,-0,0,0,1,0,1,0|-0.0001,-6.0001,-60,-1,-0.0001,-0.0001,0,-0.0001,1,-0.0001,0.9999,-0.0001|-0.0001,0,8.5,0.9999,0,-0.0001,-0.0001,-1,0,-0.0001,0,-1|-15.5002,-6.0001,84.497'
  1429. ..'6,-1,-0.0001,-0.0001,-0.0001,-0.0001,1,-0.0001,0.9999,0|-83.4986,-2.0001,-14.9999,0,-1,-0.0001,0,-0.0001,1,-1,-0.0001,0|0,0,8.5,0.9999,-0.0001,-0.0001,0,-1,-0.0001,-0.0001,-0.0001,-1|33.4992,-2.0001,-0.0005,0,-1,0,0,0,1,-1,0,0|0,0,85,1,0,0,0,1,0,0,0,1|12.9999,-10,-4.5001,-1,0,0,0,-0.0001,0.'
  1430. ..'9999,-0.0001,1,-0.0001|0,0,-85,-1,-0,-0,0,1,0,-0,-0,-1|0,0,20.0001,0.9999,0,-0.0001,-0.0001,-1,-0.0001,-0.0001,-0.0001,-1|0,-9.5,-6.0001,-1,0,0,0,-0.0001,0.9999,-0.0001,1,-0.0001|-70.3162,37.1118,-68.6656|16,10,189|-0.0003,6,-50.5015,0.9999,-0.0001,0,0,0,-1,0,0.9999,0|9.9997,-5,-94.5012,-0.'
  1431. ..'0001,-0.0001,-1,0,1,-0.0001,1,-0.0001,-0.0001|-15.5004,6,93.9958,1,0,0,0,0,-1,0,1,0|0,0,-94.5,-1,-0,-0,0,1,0,-0,-0,-1|0.0002,4,13.9977,-1,0,0,0,1,-0.0001,-0.0001,-0.0001,-1|-0.0003,-1.5,13.9994,-1,-0.0001,0,-0.0001,1,-0.0001,-0.0001,-0.0001,-1|0.0002,-85.0013,8.5,-1,0,-0.0001,0,1,0,0,0,-1|-'
  1432. ..'0.0005,0.5,34.4971,1,-0.0001,0,0,0,-1,0,1,0|-10.0001,-5,-94.5014,0,-0.0001,1,-0.0001,1,0,-1,-0.0001,0|-83.3168,22.1118,-173.1673|-5,-10.0001,10,-1,0,-0.0001,0,-0.0001,1,0,0.9999,-0.0001|0,0,-9,-1,-0,-0,0,1,0,-0,-0,-1|-0.0001,10,0,0.9999,0,0,0,-0.0001,-1,0,1,0|-0.0001,-1.0001,0,-1,0,0,0,-0.0'
  1433. ..'001,0.9999,-0.0001,1,-0.0001|-83.3168,22.1118,-183.1672|-83.3168,22.1118,-154.1674|12.9998,-4.0001,24.9999,-1,-0.0001,0,0,1,0,-0.0001,-0.0001,-1|-85,-4.5,3.5001,0,0,0.9999,-0.0001,-1,-0.0001,0.9999,0,-0.0001|-5,-10.0001,-9,-1,0,0,0,-0.0001,1,0,1,0|-88.3161,42.1118,-173.166|5,10,0,0.9999,0,0'
  1434. ..',-0.0001,-0.0001,-1,0,0.9999,0|-77.817,26.1118,45.3311|0,0,19.5,1,0,0,0,1,0,0,0,1|-7.9991,0,-0.5022,1,-0.0001,0,0,1,0,-0.0001,-0.0001,1|-86.8161,26.1118,45.8304|0,-180,-90|0.4992,0,-0.4994,0,-0.0001,-1,-1,-0.0001,-0.0001,-0.0001,0.9999,-0.0001|-8.0011,0,-60.0004,0,0.9999,-0.0001,-1,0,-0.000'
  1435. ..'1,-0.0001,0,0.9999|0.9995,0,-0.5025,0,0.9999,-0.0001,-1,0,-0.0001,-0.0001,0,0.9999|-88.316,26.1118,22.8297|17.9995,-0.5,-56.9991,-1,0,0,0,-0.0001,1,0,1,0|0,0,-1,-1,-0,-0,0,1,0,-0,-0,-1|-0.5023,1.5,2.9998,0,0,0.9999,0,1,0,-1,-0.0001,0|-0.5023,-3.5,2.9998,0,0,0.9999,0,1,0,-1,-0.0001,0|-0.5023'
  1436. ..',-1.5,2.9998,0,0,0.9999,0,1,0,-1,-0.0001,0|-0.5023,0,2.9998,0,0,0.9999,0,1,0,-1,-0.0001,0|-0.5005,0,-56.9981,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|-0.5005,1.5,-56.9981,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|-0.5005,-3.5,-56.9981,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|-0.5023,4,2.9998,0,0,0.9999,'
  1437. ..'0,1,0,-1,-0.0001,0|-0.5005,3.5,-56.9981,-0.0001,-0.0001,1,0,1,0,-1,0,-0.0001|0,26.9987,-0.0004,0,-1,0,0,0,-1,1,0,0|-94.817,26.1118,-34.1684|1,12,120|-93.816,29.6118,-34.1683|1,3,118|-0.5011,3.5,-0.0002,0,-0.0001,1,0,1,0,-1,0,0|7.9998,3.5,0.4982,-1,0,-0.0001,0,1,0,0,0,-1|-93.8171,27.6118,-34'
  1438. ..'.1685|1,1,118|5,1.5,57,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|-1.5,-29.0001,5,0,-1,-0.0001,-1,0,0,0,-0.0001,-1|4.9999,1.5,0,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|0,1,0,0.9999,0,0,-0.0001,-0.0001,-1,0,0.9999,0|0,-1.5,0,-1,0,-0.0001,0,-0.0001,1,0,0.9999,-0.0001|-0.5,1.5,0,0,-0.0001,0.9'
  1439. ..'999,0,1,-0.0001,-1,-0.0001,0|8,1.5,0.5001,-1,-0.0001,0,0,1,0,0,-0.0001,-1|0,0,59,1,0,0,0,1,0,0,0,1|23.4999,1,-0.5001,0.9999,-0.0001,0,-0.0001,1,-0.0001,0,-0.0001,0.9999|5,1.5,-56.9998,0,-0.0001,-1,-0.0001,1,0,0.9999,-0.0001,0|-93.8171,26.1118,-34.1678|1,2,118|-58.4998,0,8,-1,-0.0001,0,-0.00'
  1440. ..'01,1,-0.0001,-0.0001,-0.0001,-1|0,-28.9998,5,0,-1,-0.0001,-1,-0.0001,0,-0.0001,0,-1|4.9998,0,-0.0005,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-0.0001,0.5,-0.0006,1,0,0,0,-0.0001,-1,0,1,-0.0001|-0.5,0,-0.0007,0,-0.0001,0.9999,0,1,-0.0001,-1,0,0|8,0,0.4984,-1,-0.0001,0,-0.0001,1,0,-0.0001,0,-1|23'
  1441. ..'.4998,-0.5,-0.4999,1,-0.0001,0,0,1,-0.0001,-0.0001,0,1|58.4994,0,22.9995,-1,-0.0001,0,-0.0001,1,-0.0001,0,-0.0001,-1|4.9998,0,-56.9994,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-93.8164,24.6118,-34.1683|-0.5007,-1.5,-0.0002,0,0,1,0,1,-0.0001,-1,0,0|8.0002,-1.5,0.4988,-1,0,-0.0001,0,1,0,0,0,-1|-9'
  1442. ..'3.8164,22.6118,-34.1683|0,-0.5,0,-1,0,0,0,-0.0001,1,0,1,0|-0.5007,-3.5,-0.0002,0,0,1,0,1,-0.0001,-1,0,0|8.0002,-3.5,0.4988,-1,0,-0.0001,0,1,0,0,0,-1|-85.316,27.6118,24.3319|1,1,16|-0.5002,1.5,0.4975,-1,0,-0.0001,0,1,0,0,0,-1|-85.3159,29.6118,24.3309|1,3,16|14.9994,-0.5,-58.5002,0,1,0,-0.000'
  1443. ..'1,-0.0001,1,1,-0.0001,0|-0.5005,3.5,0.4985,-1,0,-0.0001,0,1,0,0,0,-1|-0.0011,0.5,-0.0003,1,0,0,0,-0.0001,-1,0,1,-0.0001|-85.3172,26.1118,24.3304|1,2,16|-0.0011,0.5,0.0001,1,0,0,0,-0.0001,-1,0,1,-0.0001|-0.5,0,0.4985,-1,0,-0.0001,0,1,0,0,0,-1|-0.0011,-0.5,0.0001,-1,0,-0.0001,-0.0001,-0.0001,'
  1444. ..'1,0,1,0|-85.3162,24.6118,24.3319|-0.5,-1.5,0.4975,-1,0,-0.0001,0,1,-0.0001,0,-0.0001,-1|-85.8161,26.1118,25.3294|17,12,1|8.5,0,0,0,0,1,0,1,0,-1,-0,-0|-0.501,0,-59.4968,0,-0.0001,1,0,1,0,-1,0,0|-85.3167,22.1118,24.3309|1,4,16|-0.0011,-0.5,0.0004,-1,0,-0.0001,-0.0001,-0.0001,1,0,1,0|-0.4998,-'
  1445. ..'4,0.4985,-1,-0.0001,-0.0001,-0.0001,1,0,0,0,-1|-88.316,26.1118,-5.1694|17.9995,-0.5,-28.9998,1,-0.0001,-0.0001,0,0,1,-0.0001,-1,0|-0.5005,1.5,-28.9993,0,-0.0001,1,-1,-0.0001,0,0,-1,-0.0001|-0.5005,-3.5,-28.9993,0,-0.0001,1,-1,-0.0001,0,0,-1,-0.0001|-0.5005,3.5,-28.9993,0,-0.0001,1,-1,-0.000'
  1446. ..'1,0,0,-1,-0.0001|-0.0005,0,-1.9997,0,1,0,-1,0,0,0,-0.0001,1|-88.3162,26.1118,-34.1688|10,10,4|17.9996,-0.5,-0.0001,-1,0,0,0,-0.0001,1,0,1,0|-0.5004,1.5,0.0004,0,0,1,0,1,0,-1,0,0|-0.5004,-3.5,0.0004,0,0,1,0,1,0,-1,0,0|-0.5004,3.5,0.0004,0,0,1,0,1,0,-1,0,0|-86.8169,37.1118,-54.1674|14.4999,-1'
  1447. ..'5.28,19.5,0,0,-1,-0.0001,1,0,0.9999,0,0|16.4996,0.5,19.9994,0,-1,0,-0.0001,0,-1,0.9999,0,0|16.5,6,-65,0,-1,0,-0.0001,0,-1,0.9999,0,0|7.9995,0,-14.4995,0,-0.0001,-1,-0.0001,1,-0.0001,1,0,0|-8.0002,6,19.999,0,-1,-0.0001,-0.0001,0,-1,1,0,-0.0001|0.9998,6,79.4976,0,-1,0,-0.0001,-0.0001,-1,1,0,-'
  1448. ..'0.0001|16.4998,5.5,-39.4998,0,-1,0,-0.0001,0,-1,0.9999,0,0|-42.0909,9.6008,5.3025|0,90.0299,0|21,19.2,4|-32.5968,4.4012,5.311|0,90.0199,0|21,8.8,5|-27.0683,2.0007,5.2812|0,89.9499,0|21,4,6|-37.597,7.2,5.3067|21,14.4,5|Cannon|Switch|0.2941,0.5921,0.2941|-71.8158,23.6917,60.3308|CannonBall|Fi'
  1449. ..'reGun|GunSound|rbxasset://sounds/Rocket shot.wav|0.5,-0.1001,0,-0.0001,0,-1,-0.0001,1,-0.0001,0.9999,-0.0001,-0.0001|GunBarrel|One|-69.8159,22.6118,66.3293|1,1,1|-0.5,-0.5,-0.5,0.9999,-0.0001,0,-0.0001,1,-0.0001,0,-0.0001,0.9999|-72.8158,20.6118,66.3308|-66.816,20.6118,66.3307|-3.5,0,-20,0.'
  1450. ..'9999,-0.0001,0,-0.0001,1,-0.0001,0,-0.0001,0.9999|mic|-70.8163,23.5118,58.3311|1,0.8,1|On;0,7>15>5,7>16>431,8>15>5,8>16>259,9>15>5,9>16>525,10>15>5,10>16>499,11>15>5,11>16>262,12>15>5,12>16>270,13>15>5,13>16>529,38>15>36,38>16>61,41>15>39,41>16>36,44>15>42,44>16>107,47>15>45,47>16>276,48>15'
  1451. ..'>45,48>16>332,49>15>45,49>16>107,50>15>45,50>16>70,51>15>45,51>16>431,52>15>45,52>16>61,55>15>53,55>16>61,56>15>53,56>16>45,59>15>57,59>16>70,60>15>57,60>16>45,65>15>63,65>16>259,66>15>63,66>16>53,67>15>63,67>16>235,68>15>63,68>16>57,69>15>63,69>16>45,72>15>70,72>16>431,75>15>73,75>16>332,7'
  1452. ..'6>15>73,76>16>184,77>15>73,77>16>107,78>15>73,78>16>36,79>15>73,79>16>217,80>15>73,80>16>270,81>15>73,81>16>276,82>15>73,82>16>61,83>15>73,83>16>45,86>15>84,86>16>332,87>15>84,87>16>431,88>15>84,88>16>107,89>15>84,89>16>276,90>15>84,90>16>45,91>15>84,91>16>450,92>15>84,92>16>217,95>15>93,95'
  1453. ..'>16>73,96>15>93,96>16>61,97>15>93,97>16>170,98>15>93,98>16>162,99>15>93,99>16>168,102>15>100,102>16>172,103>15>100,103>16>170,104>15>100,104>16>162,105>15>100,105>16>168,106>15>100,106>16>93,109>15>107,109>16>332,110>15>107,110>16>497,113>15>111,113>16>126,114>15>111,114>16>132,117>15>115,1'
  1454. ..'17>16>84,118>15>115,118>16>132,121>15>119,121>16>73,122>15>119,122>16>107,123>15>119,123>16>439,124>15>119,124>16>132,125>15>119,125>16>126,128>15>126,128>16>132,129>15>126,129>16>130,136>15>134,136>16>39,137>15>134,137>16>36,140>15>138,140>16>39,141>15>138,141>16>36,144>15>142,144>16>39,14'
  1455. ..'5>15>142,145>16>36,148>15>146,148>16>39,149>15>146,149>16>36,152>15>150,152>16>39,153>15>150,153>16>36,156>15>154,156>16>39,157>15>154,157>16>36,160>15>158,160>16>39,161>15>158,161>16>36,166>15>164,166>16>100,167>15>164,167>16>93,174>15>172,174>16>93,177>15>175,177>16>217,178>15>175,178>16>'
  1456. ..'179,183>15>181,183>16>217,186>15>184,186>16>181,187>15>184,187>16>217,192>15>190,192>16>217,193>15>190,193>16>188,196>15>194,196>16>217,197>15>194,197>16>273,198>15>194,198>16>188,201>15>199,201>16>84,202>15>199,202>16>431,203>15>199,203>16>175,204>15>199,204>16>273,205>15>199,205>16>450,20'
  1457. ..'6>15>199,206>16>217,207>15>199,207>16>190,208>15>199,208>16>194,209>15>199,209>16>188,210>15>199,210>16>179,211>15>199,211>16>417,214>15>212,214>16>217,215>15>212,215>16>190,216>15>212,216>16>199,219>15>217,219>16>276,220>15>217,220>16>188,223>15>221,223>16>230,224>15>221,224>16>217,227>15>'
  1458. ..'225,227>16>431,228>15>225,228>16>221,229>15>225,229>16>217,232>15>230,232>16>188,233>15>230,233>16>181,234>15>230,234>16>217,237>15>235,237>16>84,238>15>235,238>16>431,239>15>235,239>16>107,240>15>235,240>16>53,241>15>235,241>16>57,242>15>235,242>16>45,243>15>235,243>16>61,244>15>235,244>16'
  1459. ..'>259,245>15>235,245>16>525,246>15>235,246>16>499,247>15>235,247>16>497,248>15>235,248>16>262,249>15>235,249>16>70,250>15>235,250>16>450,251>15>235,251>16>270,252>15>235,252>16>529,255>15>253,255>16>431,256>15>253,256>16>262,257>15>253,257>16>235,258>15>253,258>16>5,261>15>259,261>16>262,266'
  1460. ..'>15>264,266>16>270,267>15>264,267>16>235,268>15>264,268>16>259,269>15>264,269>16>5,272>15>270,272>16>289,275>15>273,275>16>217,281>15>279,281>16>431,282>15>279,282>16>514,283>15>279,283>16>525,284>15>279,284>16>503,285>15>279,285>16>499,286>15>279,286>16>564,287>15>279,287>16>529,288>15>279'
  1461. ..',288>16>5,291>15>289,291>16>332,292>15>289,292>16>107,293>15>289,293>16>497,294>15>289,294>16>550,295>15>289,295>16>553,301>15>297,301>16>381,306>15>302,306>16>381,311>15>307,311>16>381,316>15>312,316>16>381,321>15>317,321>16>381,331>15>328,331>16>381,336>15>332,336>16>115,340>15>338,340>16'
  1462. ..'>348,343>15>342,343>16>344,346>15>345,346>16>348,347>15>345,347>16>338,352>15>350,352>16>341,355>15>353,355>16>350,356>15>353,356>16>348,357>15>353,357>16>344,360>15>358,360>16>344,363>15>361,363>16>353,364>15>361,364>16>348,365>15>361,365>16>375,368>15>366,368>16>344,371>15>369,371>16>350,'
  1463. ..'374>15>372,374>16>350,379>15>377,379>16>479,380>15>377,380>16>175,382>15>381,382>16>599,387>15>385,387>16>479,388>15>385,388>16>179,389>15>385,389>16>375,390>15>385,390>16>377,391>15>385,391>16>595,392>15>385,392>16>381,393>15>385,393>16>550,394>15>385,394>16>175,395>15>385,395>16>476,396>1'
  1464. ..'5>385,396>16>383,399>15>397,399>16>332,400>15>397,400>16>479,401>15>397,401>16>404,402>15>397,402>16>175,403>15>397,403>16>377,406>15>404,406>16>417,409>15>407,409>16>450,410>15>407,410>16>431,411>15>407,411>16>199,412>15>407,412>16>417,413>15>407,413>16>550,416>15>414,416>16>332,419>15>417'
  1465. ..',419>16>179,420>15>417,420>16>476,421>15>417,421>16>550,422>15>417,422>16>414,425>15>423,425>16>332,426>15>423,426>16>570,427>15>423,427>16>107,428>15>423,428>16>429,433>15>431,433>16>497,434>15>431,434>16>276,435>15>431,435>16>217,436>15>431,436>16>550,437>15>431,437>16>273,438>15>431,438>'
  1466. ..'16>499,441>15>439,441>16>107,442>15>439,442>16>289,443>15>439,443>16>550,444>15>439,444>16>553,445>15>439,445>16>73,446>15>439,446>16>270,447>15>439,447>16>467,448>15>439,448>16>383,449>15>439,449>16>42,452>15>450,452>16>107,453>15>450,453>16>132,454>15>450,454>16>550,455>15>450,455>16>417,'
  1467. ..'456>15>450,456>16>414,457>15>450,457>16>42,458>15>450,458>16>431,459>15>450,459>16>429,462>15>460,462>16>429,463>15>460,463>16>467,464>15>460,464>16>465,469>15>467,469>16>107,470>15>467,470>16>289,471>15>467,471>16>429,474>15>472,474>16>460,475>15>472,475>16>429,478>15>476,478>16>550,481>15'
  1468. ..'>479,481>16>476,482>15>479,482>16>497,483>15>479,483>16>550,486>15>484,486>16>431,487>15>484,487>16>547,488>15>484,488>16>537,489>15>484,489>16>534,490>15>484,490>16>542,491>15>484,491>16>514,492>15>484,492>16>525,493>15>484,493>16>499,494>15>484,494>16>553,495>15>484,495>16>529,496>15>484,'
  1469. ..'496>16>557,501>15>499,501>16>497,502>15>499,502>16>550,505>15>503,505>16>484,506>15>503,506>16>557,507>15>503,507>16>564,508>15>503,508>16>514,509>15>503,509>16>499,510>15>503,510>16>497,511>15>503,511>16>550,512>15>503,512>16>235,513>15>503,513>16>5,516>15>514,516>16>542,517>15>514,517>16>'
  1470. ..'557,518>15>514,518>16>564,519>15>514,519>16>525,520>15>514,520>16>497,521>15>514,521>16>550,522>15>514,522>16>235,523>15>514,523>16>259,524>15>514,524>16>5,527>15>525,527>16>497,528>15>525,528>16>550,531>15>529,531>16>525,532>15>529,532>16>497,533>15>529,533>16>550,536>15>534,536>16>550,539'
  1471. ..'>15>537,539>16>431,540>15>537,540>16>550,541>15>537,541>16>534,544>15>542,544>16>547,545>15>542,545>16>550,546>15>542,546>16>534,549>15>547,549>16>550,552>15>550,552>16>497,555>15>553,555>16>547,556>15>553,556>16>550,559>15>557,559>16>431,560>15>557,560>16>525,561>15>557,561>16>499,562>15>5'
  1472. ..'57,562>16>529,563>15>557,563>16>564,566>15>564,566>16>431,567>15>564,567>16>525,568>15>564,568>16>499,569>15>564,569>16>529,572>15>570,572>16>332,573>15>570,573>16>431,574>15>570,574>16>107,575>15>570,575>16>450,576>15>570,576>16>497,577>15>570,577>16>550,578>15>570,578>16>235,590>15>585,59'
  1473. ..'0>16>297,593>15>592,593>16>377,598>15>597,598>16>385;2|1:2;n;2|1:3;n;2|1:4;n;3|1:5|2:6;p;1|3:7|4:8|5:9|6:10|7:11|8:12|9:12|10:12|11:13|3:7|3:7;n;4|12:14;5|13:15|14:16;5|13:17|14:18;5|13:19|14:20;5|13:19|14:21;5|13:17|14:22;5|13:17|14:23;5|13:19|14:24;p;2|1:25;n;6|1:26;6|1:26;6|1:26;6|1:26;6'
  1474. ..'|1:27;6|1:27;6|1:27;n;7|1:28|2:29;p;6|1:27;6;p;2|1:25;n;6|1:26;6|1:26;6|1:26;6|1:26;6|1:27;6|1:27;6|1:27;n;7|1:28|2:29;p;6|1:27;6;p;1|3:7|4:30|5:9|6:10|7:31|9:12|17:12|11:13|3:7|3:7;n;4|12:14;5|13:32|14:33;p;1|3:7|4:34|5:9|6:10|7:35|9:12|11:13|3:7|3:7;n;4|12:14;5|13:36|14:37;p;1|4:38|5:39|6'
  1475. ..':10|7:40|8:12|9:12|11:13;n;4|12:12;5|13:41|14:42;p;1|3:43|4:44|5:9|6:10|7:45|9:12|18:12|10:12|11:12|3:43|3:43;n;4|12:14;5|1:46|13:47|14:48;5|1:46|13:47|14:49;5|13:50|14:51;5|13:52|14:53;5|13:52|14:54;5|13:52|14:55;p;1|3:56|19:57|4:58|5:9|6:10|7:59|9:12|11:12|3:56|3:56;n;4|12:14;5|13:60|14:6'
  1476. ..'1;5|13:62|14:63;p;1|3:56|19:57|4:64|5:9|6:10|7:59|9:12|11:12|3:56|3:56;n;4|12:14;5|13:65|14:66;5|13:62|14:67;p;1|4:68|5:9|6:10|7:69|9:12|11:12;n;4|12:14;p;1|3:7|4:70|5:9|6:10|7:71|8:12|9:12|18:12|17:12|10:12|11:12|3:7|3:7;n;4|12:14;5|13:52|14:72;5|13:73|14:74;5|13:75|14:76;5|13:77|14:78;5|1'
  1477. ..'3:62|14:79;p;1|4:80|5:9|6:10|7:81|9:12|11:12;n;4|12:14;5|13:82|14:83;p;1|3:43|4:84|5:85|6:10|7:86|8:12|9:12|11:13|3:43|3:43;n;4|12:12;5|1:46|13:87|14:88;5|13:89|14:90;5|13:89|14:91;5|13:89|14:92;5|13:89|14:93;5|13:89|14:94;5|13:89|14:95;5|13:89|14:96;5|13:89|14:97;p;1|3:43|4:98|5:99|6:10|7:'
  1478. ..'100|8:12|9:12|11:13|3:43|3:43;n;4|12:12;5|1:46|13:101|14:102;5|13:103|14:104;5|13:103|14:105;5|13:103|14:106;5|13:103|14:107;5|13:108|14:109;5|13:103|14:110;p;1|3:7|4:111|5:9|6:10|7:31|9:12|17:12|11:13|3:7|3:7;n;4|12:14;5|13:73|14:112;5|13:32|14:113;5|13:77|14:114;5|13:77|14:115;5|13:77|14:'
  1479. ..'116;p;1|3:7|4:117|5:9|6:10|7:35|9:12|11:13|3:7|3:7;n;4|12:14;5|13:52|14:118;5|13:52|14:119;5|13:52|14:120;5|13:52|14:121;5|13:36|14:122;p;1|3:43|4:123|5:9|6:10|7:124|9:12|18:12|11:12|3:43|3:43;n;4|12:14;5|1:46|13:47|14:125;5|13:126|14:127;p;1|3:128|19:129|4:130|5:39|6:10|7:131|9:12|11:13|3:'
  1480. ..'128|3:128;n;4|20:132|12:133;5|13:134|14:135;5|13:73|14:136;p;1|3:43|4:137|5:39|6:10|7:138|9:12|11:12|3:43|3:43;n;4|20:139;5|13:140|14:141;5|13:142|14:143;p;1|3:43|4:144|5:39|6:10|7:138|9:12|11:12|3:43|3:43;n;4|20:139;5|13:140|14:145;5|13:140|14:146;5|13:140|14:147;5|13:148|14:149;5|13:142|1'
  1481. ..'4:150;p;1|21:57|4:151|5:9|6:10|7:152|8:12|9:12|18:12|17:12|10:12|11:12;n;4|12:14;5|13:142|14:153;5|13:154|14:155;p;1|3:128|19:129|4:156|5:39|6:10|7:131|9:12|11:13|3:128|3:128;n;4|20:132|12:133;p;1|3:43|21:57|4:157|5:9|6:10|7:152|8:12|9:12|18:12|17:12|10:12|11:12|3:43|3:43;n;4|12:14;p;8|4:15'
  1482. ..'8|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:17|14:161;5|13:162|14:163;p;8|4:164|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:17|14:165;5|13:162|14:166;p;8|4:167|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:17|14:168;5|13:162|14:169;p;8|4:170|5'
  1483. ..':159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:17|14:171;5|13:162|14:172;p;8|4:173|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:17|14:174;5|13:162|14:175;p;8|4:176|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:17|14:177;5|13:162|14:178;p;8|4:179|5:15'
  1484. ..'9|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:17|14:180;5|13:162|14:181;p;8|4:182|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;p;8|4:183|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:17|14:184;5|13:162|14:185;p;8|4:186|5:159|6:10|7:160|8:12|9:12|17:12|10:12'
  1485. ..'|11:12;n;4|12:14;p;8|4:187|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;p;8|4:188|5:159|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:162|14:163;p;1|3:43|4:189|5:190|6:10|7:191|8:12|9:13|11:13|3:43|3:43;n;4|12:12;5|13:192|14:193;5|13:194|14:195;p;1|4:196|5:9|6:10|7:197|8:1'
  1486. ..'2|9:12|17:12|11:13;n;4|12:14;p;1|3:56|19:57|4:198|6:10|7:199|9:12|11:12|3:56|3:56;n;4|12:14;5|13:52|14:200;p;1|4:201|6:10|7:202|9:12|11:12;n;4|12:14;5|13:203|14:204;5|13:52|14:205;p;1|3:7|4:206|5:99|6:10|7:207|8:12|9:12|18:12|17:12|10:12|11:12|3:7|3:7;n;4|12:14;p;1|3:56|19:57|4:208|5:99|6:1'
  1487. ..'0|7:209|9:12|11:12|3:56|3:56;n;4|12:14;5|13:210|14:211;5|13:65|14:212;p;1|3:56|19:57|4:213|5:99|6:10|7:209|9:12|11:12|3:56|3:56;n;4|12:14;5|13:210|14:214;5|13:65|14:215;5|13:60|14:216;p;1|4:217|5:9|6:10|7:218|8:12|9:12|18:12|17:12|11:12;n;4|12:14;5|13:219|14:220;5|13:221|14:222;5|13:223|14:'
  1488. ..'224;5|13:221|14:225;5|13:219|14:226;5|13:227|14:228;5|13:221|14:229;5|13:221|14:230;5|13:221|14:231;5|13:223|14:232;5|13:223|14:233;p;1|4:234|5:99|6:10|7:235|9:12|11:12;n;4|12:14;5|13:210|14:236;5|13:82|14:237;5|13:52|14:238;p;1|3:43|4:239|5:9|6:10|7:240|8:12|9:12|18:12|10:12|11:12|3:43|3:4'
  1489. ..'3;n;4|12:14;5|1:46|13:47|14:241;5|13:52|14:242;p;1|3:56|19:57|4:243|6:10|7:199|9:12|11:12|3:56|3:56;n;4|12:14;5|13:60|14:244;5|13:52|14:245;p;1|4:246|6:10|7:247|9:12|11:12;n;4|12:14;5|13:82|14:248;5|13:36|14:249;5|13:52|14:250;p;1|3:7|4:251|6:10|7:252|8:12|9:12|18:12|17:12|10:12|11:12|3:7|3'
  1490. ..':7;n;4|12:14;5|13:253|14:254;5|13:73|14:255;5|13:52|14:256;p;1|4:257|5:9|6:10|7:258|9:12|18:12|17:12|10:12|11:12;n;4|12:14;5|13:219|14:259;5|13:223|14:260;5|13:221|14:261;5|13:223|14:262;5|13:223|14:263;5|13:264|14:265;5|13:223|14:266;5|13:223|14:267;5|13:223|14:268;5|13:223|14:269;5|13:270'
  1491. ..'|14:271;5|13:223|14:272;5|13:223|14:273;5|13:219|14:274;5|13:223|14:275;5|13:223|14:276;p;1|4:277|5:99|6:10|7:278|9:12|11:12;n;4|12:14;5|13:82|14:279;5|13:36|14:280;5|13:62|14:281;5|13:52|14:282;p;1|3:7|4:283|5:99|6:10|7:284|8:12|9:12|18:12|17:12|10:12|11:12|3:7|3:7;n;4|12:14;5|13:77|14:285'
  1492. ..';p;1|3:56|19:57|4:286|5:99|6:10|7:287|9:12|11:12|3:56|3:56;n;4|12:14;p;1|3:56|19:57|4:288|5:99|6:10|7:287|9:12|11:12|3:56|3:56;n;4|12:14;5|13:60|14:289;5|13:62|14:290;5|13:65|14:291;5|13:52|14:292;p;1|4:293|5:99|6:10|7:294|9:12|11:12;n;4|12:14;5|13:295|14:296;p;1|4:297|5:99|6:10|7:235|9:12|'
  1493. ..'11:12;n;4|12:14;5|13:210|14:298;p;1|1:299|19:300|4:301|5:302|6:10|7:303|9:12|11:13;n;9;6;p;1|3:304|19:305|4:306|5:307|6:10|7:308|8:12|9:12|18:12|17:12|10:12|11:12|3:304|3:304;n;4|20:309;5|13:310|14:311;5|13:312|14:313;5|13:312|14:314;5|13:312|14:315;5|13:312|14:316;5|13:317|14:318;5|13:312|'
  1494. ..'14:319;5|13:320|14:321;p;1|3:43|4:322|5:323|6:10|7:86|8:12|9:12|11:13|3:43|3:43;n;4|12:12;5|1:46|13:324|14:325;5|13:89|14:326;5|13:89|14:327;5|13:89|14:328;5|13:89|14:329;p;2|1:330;n;1|1:331|3:332|4:333|5:159|6:10|7:334|11:13|3:332|3:332;n;3;9;6;5|1:46|13:335|14:336;p;1|1:337|3:332|4:338|5:'
  1495. ..'159|6:10|7:334|11:13|3:332|3:332;n;3;9;6;5|1:46|13:335|14:339;p;1|1:340|3:341|4:342|5:99|6:10|7:343|11:13|3:341|3:341;n;9;6;10;5|1:46|13:344|14:345;p;1|1:346|3:347|4:348|5:349|6:10|7:334|11:13|3:347|3:347;n;3;9;6;5|1:46|13:350|14:351;p;1|1:352|3:56|4:353|5:349|6:10|7:334|11:13|3:56|3:56;n;3'
  1496. ..';9;6;5|1:46|13:350|14:354;p;6|1:355;6|1:356;6|1:357;3|1:5|2:358;6|1:359;6|1:360;1|1:361|3:128|4:362|5:99|6:10|7:343|11:13|3:128|3:128;n;9;6;5|1:46|13:344|14:363;p;1|1:364|3:43|21:57|4:365|5:349|6:10|7:366|22:367|9:13|18:12|3:43|3:43;n;6|1:368;11|23:369;12|4:370|24:371;5|1:46|13:372|14:373;p'
  1497. ..';p;2|1:374;n;1|4:375|5:376|6:10|7:377|22:367|9:13|17:12|11:13;n;4|12:14;5|13:62|14:378;p;1|3:379|4:380|6:10|7:377|22:367|9:12|11:13|3:379|3:379;1|3:379|4:381|6:10|7:377|22:367|9:12|11:13|3:379|3:379;n;5|13:162|14:382;p;1|4:383|5:384|6:10|7:385|22:367|9:12|17:12|11:13;1|3:379|4:386|5:376|6:1'
  1498. ..'0|7:377|22:367|9:12|17:12|11:13|3:379|3:379;n;5|13:62|14:387;5|13:162|14:388;p;1|4:389|5:99|6:10|7:390|22:367|9:12|11:13;n;4|12:14;p;1|4:391|5:384|6:10|7:385|22:367|9:12|17:12|11:13;n;4|12:14;5|13:52|14:392;p;8|4:393|5:9|6:10|7:160|8:12|9:12|17:12|10:12|11:12;n;4|12:14;5|13:394|14:395;5|13:'
  1499. ..'17|14:396;5|13:397|14:398;p;1|4:399|5:400|6:10|7:401|22:367|8:12|9:12|11:13;n;4|12:12;5|13:162|14:402;p;1|4:403|5:99|6:10|7:404|22:367|9:13|11:12;n;4|12:14;5|13:65|14:405;5|13:65|14:406;5|13:60|14:280;p;1|4:407|5:99|6:10|7:408|22:367|9:13|11:12;n;4|20:409|12:14;5|13:65|14:410;p;1|4:411|5:99'
  1500. ..'|6:10|7:408|22:367|9:13|11:12;n;4|20:409|12:14;5|13:65|14:412;p;1|4:413|5:400|6:10|7:401|22:367|8:12|9:12|11:13;n;4|12:12;5|13:162|14:402;p;1|4:414|5:99|6:10|7:404|22:367|9:12|11:12;n;4|20:415;p;p;1|3:43|4:416|5:9|6:10|7:417|9:12|18:12|17:12|10:12|11:13|3:43|3:43;n;4|12:14;5|13:418|14:419;5'
  1501. ..'|13:420|14:421;p;1|4:422|5:9|6:10|7:423|9:12|11:12;n;5|13:77|14:424;p;1|3:43|4:425|5:426|6:10|7:427|8:12|9:12|11:13|3:43|3:43;n;4|12:12;p;1|4:428|5:9|6:10|7:429|8:12|9:12|18:12|17:12|10:12|11:12;n;4|12:14;5|13:418|14:430;5|13:65|14:431;5|13:65|14:432;5|13:65|14:433;5|13:434|14:435;5|13:65|1'
  1502. ..'4:436;5|13:192|14:437;5|13:420|14:438;5|13:65|14:439;5|13:60|14:440;p;1|3:43|21:441|4:442|5:9|6:10|7:443|9:12|17:12|10:12|11:13|3:43|3:43;n;4|12:14;5|1:46|13:444|14:445;5|13:418|14:446;5|13:447|14:448;5|13:420|14:449;5|13:450|14:451;p;1|3:43|21:441|4:452|5:9|6:10|7:453|8:12|9:12|11:13|3:43|'
  1503. ..'3:43;n;4|12:12;5|13:454|14:455;p;1|4:456|5:9|6:10|7:457|8:12|9:13|18:12|17:12|10:12|11:12;n;4|12:14;5|13:65|14:458;5|13:221|14:459;5|13:460|14:461;5|13:223|14:462;5|13:463|14:464;p;1|3:43|4:465|5:9|6:10|7:466|8:12|9:12|11:13|3:43|3:43;n;4|12:12;5|1:46|13:467|14:468;p;1|3:43|4:469|5:9|6:10|7'
  1504. ..':470|8:12|9:12|11:12|3:43|3:43;n;4|12:14;5|13:295|14:471;5|13:295|14:472;5|13:473|14:474;5|13:203|14:475;p;1|3:43|4:476|5:39|6:10|7:138|9:12|11:12|3:43|3:43;n;4|20:139;5|1:46|13:477|14:478;5|13:140|14:479;5|13:134|14:480;5|13:142|14:481;p;1|21:57|4:482|5:9|6:10|7:152|8:12|9:12|18:12|17:12|1'
  1505. ..'0:12|11:12;n;4|12:14;p;1|4:483|5:9|6:10|7:484|8:12|9:12|18:12|17:12|10:12|11:12;n;4|12:14;5|13:270|14:485;5|13:264|14:486;5|13:264|14:487;5|13:488|14:489;5|13:60|14:490;5|13:60|14:491;p;1|3:43|4:492|5:9|6:10|7:493|9:13|18:12|17:12|10:12|11:12|3:43|3:43;n;4|12:14;5|13:494|14:495;5|13:418|14:'
  1506. ..'496;5|13:494|14:497;5|13:494|14:498;5|13:420|14:499;5|13:494|14:500;5|13:501|14:502;5|13:503|14:504;5|13:501|14:505;p;1|3:43|4:506|5:9|6:10|7:507|9:13|18:12|11:13|3:43|3:43;n;4|12:14;5|13:103|14:508;5|13:420|14:509;5|13:103|14:510;5|13:511|14:512;5|13:511|14:513;5|13:103|14:514;5|13:103|14:'
  1507. ..'515;5|13:418|14:516;p;1|21:57|4:517|5:9|6:10|7:152|8:12|9:12|18:12|17:12|10:12|11:12;n;4|12:14;5|13:142|14:518;5|13:519|14:520;5|13:154|14:521;p;1|3:128|19:129|4:522|5:39|6:10|7:131|9:12|11:13|3:128|3:128;n;4|20:132|12:133;p;1|3:43|4:523|5:39|6:10|7:138|9:12|11:12|3:43|3:43;n;4|20:139;5|13:'
  1508. ..'140|14:524;5|13:140|14:525;5|13:148|14:526;p;1|3:128|19:129|4:527|5:39|6:10|7:131|9:12|11:13|3:128|3:128;n;4|20:132|12:133;5|13:134|14:528;5|13:73|14:136;p;1|4:529|5:9|6:10|7:197|8:12|9:12|10:12|11:13;n;4|12:14;5|13:530|14:531;p;1|3:43|4:532|5:533|6:10|7:191|8:12|9:13|11:13|3:43|3:43;n;4|12'
  1509. ..':12;5|13:194|14:534;5|13:192|14:535;5|13:192|14:536;p;1|3:7|4:537|5:9|6:10|7:11|9:12|18:12|10:12|11:13|3:7|3:7;n;4|12:14;5|13:15|14:538;5|13:539|14:540;5|13:539|14:541;5|13:539|14:542;5|13:539|14:543;5|13:19|14:544;5|13:19|14:545;5|13:19|14:546;5|13:539|14:547;5|13:19|14:548;5|13:17|14:549;'
  1510. ..'p;1|3:43|4:550|5:9|6:10|7:551|9:12|18:12|17:12|11:12|3:43|3:43;n;4|12:14;p;1|4:552|5:9|6:10|7:553|9:12|11:12;n;4|12:14;5|13:52|14:554;5|13:488|14:555;p;1|3:56|19:57|4:556|5:9|6:10|7:557|9:12|11:12|3:56|3:56;n;4|12:14;5|13:62|14:558;5|13:62|14:559;5|13:62|14:560;5|13:60|14:561;5|13:65|14:562'
  1511. ..';5|13:52|14:563;5|13:488|14:564;5|13:565|14:566;5|13:62|14:567;p;1|3:7|4:568|5:9|6:10|7:569|8:12|9:12|18:12|17:12|10:12|11:12|3:7|3:7;n;4|12:14;5|13:62|14:570;5|13:62|14:571;5|13:62|14:572;5|13:73|14:573;5|13:52|14:574;5|13:488|14:575;5|13:565|14:576;5|13:62|14:577;5|13:62|14:578;p;1|3:56|1'
  1512. ..'9:57|4:579|5:9|6:10|7:557|9:12|11:12|3:56|3:56;n;4|12:14;5|13:52|14:580;5|13:488|14:581;p;1|4:582|5:9|6:10|7:553|9:12|11:12;n;4|12:14;5|13:82|14:583;5|13:52|14:584;5|13:488|14:585;p;1|3:56|19:57|4:586|5:99|6:10|7:587|9:12|11:12|3:56|3:56;n;4|12:14;5|13:52|14:588;p;1|4:589|5:99|6:10|7:590|9:'
  1513. ..'12|11:12;n;4|12:14;5|13:82|14:591;5|13:52|14:592;5|13:36|14:593;p;1|3:7|4:594|5:99|6:10|7:595|8:12|9:12|18:12|17:12|10:12|11:12|3:7|3:7;n;4|12:14;5|13:73|14:596;5|13:52|14:597;5|13:77|14:598;p;1|3:56|19:57|4:599|5:99|6:10|7:587|9:12|11:12|3:56|3:56;n;4|12:14;5|13:52|14:600;p;1|4:601|5:9|6:1'
  1514. ..'0|7:602|8:12|9:12|18:12|10:12|11:12;n;4|12:14;5|13:603|14:604;p;1|4:605|5:99|6:10|7:606|9:12|11:12;n;4|12:14;5|13:203|14:607;5|13:52|14:608;p;1|3:304|19:305|4:609|5:307|6:10|7:308|8:12|9:12|18:12|17:12|10:12|11:12|3:304|3:304;n;4|20:309;5|13:310|14:610;5|13:312|14:611;5|13:312|14:612;5|13:3'
  1515. ..'12|14:613;5|13:320|14:614;p;1|3:7|4:615|5:9|6:10|7:616|9:12|10:12|11:13|3:7|3:7;n;4|12:14;5|13:15|14:617;5|13:19|14:618;5|13:19|14:619;5|13:19|14:620;p;1|3:43|4:621|5:159|6:10|7:100|8:12|9:12|11:13|3:43|3:43;n;4|12:12;5|1:46|14:622;5|13:103|14:623;5|13:103|14:624;5|13:108|14:625;5|13:103|14'
  1516. ..':626;5|13:103|14:627;5|13:103|14:628;p;p;1|3:43|4:629|5:630|7:631|3:43|3:43;1|3:43|4:632|5:633|7:634|3:43|3:43;1|3:43|4:635|5:636|7:637|3:43|3:43;1|3:43|4:638|5:630|7:639|3:43|3:43;2;n;2|1:640;n;1|1:641|3:642|4:643|5:99|6:10|7:334|8:12|9:12|17:12|10:12|11:13|3:642|3:642;n;6|1:644;9|25:358;6'
  1517. ..'|1:645;13|1:646|26:647|27:57;5|13:52|14:648;p;2|1:649;n;1|1:650|3:128|4:651|5:99|6:10|7:652|28:12|9:13|17:12|10:12|11:13|3:128|3:128;n;5|13:62|14:653;p;p;2|1:649;n;1|1:650|3:128|4:654|5:99|6:10|7:652|28:12|9:13|17:12|10:12|11:13|3:128|3:128;p;2|1:649;n;1|1:650|3:128|4:655|5:99|6:10|7:652|28'
  1518. ..':12|9:13|17:12|10:12|11:13|3:128|3:128;n;5|13:62|14:656;p;p;p;p;1|1:657|3:7|4:658|6:10|7:659|3:7|3:7;n;4|20:415;6;10|1:660|2:57;p;p;')
  1519. for _,Object in pairs(Objects) do
  1520. Object.Parent = script and script.Parent==workspace and script or workspace
  1521. end
  1522. for _,f in pairs(ActualScripts) do f() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement