Advertisement
Hoshi_star

bomber

Jun 10th, 2018
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 178.09 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2. Character = Player.Character
  3. local txt = Instance.new("BillboardGui", Character)
  4. txt.Adornee = Character.Head
  5. txt.Name = "_status"
  6. txt.Size = UDim2.new(2, 0, 1.2, 0)
  7. txt.StudsOffset = Vector3.new(-9, 8, 0)
  8. local text = Instance.new("TextLabel", txt)
  9. text.Size = UDim2.new(10, 0, 7, 0)
  10. text.FontSize = "Size24"
  11. text.TextScaled = true
  12. text.TextTransparency = 0
  13. text.BackgroundTransparency = 1
  14. text.TextTransparency = 0
  15. text.TextStrokeTransparency = 0
  16. text.Font = "Fantasy"
  17. text.TextStrokeColor3 = Color3.new(50,50,50)
  18. text.Text = "Ultra Bomber"
  19.  
  20. local Player = game.Players.localPlayer
  21. local Character = Player.Character
  22. local char = Character
  23. local plr = Player
  24.  
  25. repeat wait() until plr and char
  26.  
  27. char.Archivable = true
  28. local BaseClone = char:Clone()
  29.  
  30.  
  31. local Humanoid = Character.Humanoid
  32. local Mouse = Player:GetMouse()
  33. local LeftArm = Character["Left Arm"]
  34. local RightArm = Character["Right Arm"]
  35. local LeftLeg = Character["Left Leg"]
  36. local RightLeg = Character["Right Leg"]
  37. local Head = Character.Head
  38. local Torso = Character.Torso
  39. local Camera = game.Workspace.CurrentCamera
  40. local RootPart = Character.HumanoidRootPart
  41. local RootJoint = RootPart.RootJoint
  42. local Pause = false
  43. local attack = false
  44. local LOL = false
  45. local Anim = 'Idle'
  46. local attacktype = 1
  47. local delays = false
  48. local play = true
  49. local targetted = nil
  50. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  51. local velocity = RootPart.Velocity.y
  52. local sine = 0
  53. local change = 1
  54. local doe = 0
  55. local Create = LoadLibrary("RbxUtility").Create
  56. Humanoid.WalkSpeed = 60
  57.  
  58. -- IDK VARIABLES
  59.  
  60. local mr = math.rad
  61. local mra = math.random
  62.  
  63. ---------------------
  64.  
  65.  
  66. local CS = function(id, name, parent, volume, md)
  67. local s = Instance.new("Sound", parent)
  68. s.Name = name
  69. s.Volume = volume
  70. s.MaxDistance = md
  71. s.SoundId = "rbxassetid://".. id
  72. return s
  73. end
  74.  
  75. local Theme = CS(0, "NightOfFire", plr.PlayerGui, 1, 90);Theme.Looped = true;Theme:Play()
  76.  
  77.  
  78. local Pulse = CS(779130169, "Pulse", RightArm, 2, 90)
  79. local FSnap = CS(670796769, "FingerSnap", RightArm, 2, 90)
  80.  
  81. local Explosion1 = CS(843182803, "SFX1", RootPart, 1, 90)
  82.  
  83. local Mouse = plr:GetMouse()
  84.  
  85. Humanoid.Animator.Parent = nil
  86. Character.Animate.Parent = nil
  87.  
  88. local attackDB = false
  89.  
  90. local RS = game:GetService("RunService").RenderStepped
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97. function Damage(dmg, human)
  98.  
  99. local ik = Instance.new("Part", char)
  100. ik.Anchored = true
  101. ik.CanCollide = false
  102. ik.Transparency = 1
  103.  
  104. local x = mra(-2, 2)
  105. local y = mra(-2, 2)
  106. local z = mra(-2, 2)
  107.  
  108. ik.Position = human.Parent.Head.Position + Vector3.new(x, y, z)
  109.  
  110. human:TakeDamage(dmg)
  111.  
  112. local txt2 = Instance.new("BillboardGui", ik)
  113. txt2.Adornee = ik
  114. txt2.Name = "Damage"
  115. txt2.AlwaysOnTop = true
  116. txt2.Size = UDim2.new(2, 0, 1.2, 0)
  117. txt2.StudsOffset = Vector3.new(-14, 3, 0)
  118. local text2 = Instance.new("TextLabel", txt2)
  119. text2.Size = UDim2.new(15, 0,2, 0)
  120. text2.FontSize = "Size24"
  121. text2.TextScaled = true
  122. text2.TextTransparency = 0
  123. text2.BackgroundTransparency = 1
  124. text2.TextTransparency = 0
  125. text2.TextStrokeTransparency = 0
  126. text2.Font = Enum.Font.Fantasy
  127. text2.TextStrokeColor3 = Color3.new(0,0,0)
  128. text2.TextColor3 = Color3.new(26, 234, 33)
  129. text2.Text = dmg
  130. spawn(function()
  131. for i = 1, 500 do
  132. RS:wait()
  133.  
  134. ik.Position = ik.Position + Vector3.new(0,0.1,0)
  135. text2.TextTransparency = text2.TextTransparency + 0.01
  136. text2.TextStrokeTransparency = text2.TextStrokeTransparency + 0.01
  137. end
  138. end)
  139. end
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148. --Converted with ttyyuu12345's model to script plugin v4
  149. function sandbox(var,func)
  150. local env = getfenv(func)
  151. local newenv = setmetatable({},{
  152. __index = function(self,k)
  153. if k=="script" then
  154. return var
  155. else
  156. return env[k]
  157. end
  158. end,
  159. })
  160. setfenv(func,newenv)
  161. return func
  162. end
  163. cors = {}
  164. mas = Instance.new("Model",game:GetService("Lighting"))
  165. Model0 = Instance.new("Model")
  166. Part1 = Instance.new("Part")
  167. SpecialMesh2 = Instance.new("SpecialMesh")
  168. Part3 = Instance.new("Part")
  169. Part4 = Instance.new("Part")
  170. SpecialMesh5 = Instance.new("SpecialMesh")
  171. Part6 = Instance.new("Part")
  172. SpecialMesh7 = Instance.new("SpecialMesh")
  173. Part8 = Instance.new("Part")
  174. Part9 = Instance.new("Part")
  175. Part10 = Instance.new("Part")
  176. Part11 = Instance.new("Part")
  177. Part12 = Instance.new("Part")
  178. Part13 = Instance.new("Part")
  179. Part14 = Instance.new("Part")
  180. SpecialMesh15 = Instance.new("SpecialMesh")
  181. Part16 = Instance.new("Part")
  182. Part17 = Instance.new("Part")
  183. Part18 = Instance.new("Part")
  184. Part19 = Instance.new("Part")
  185. Part20 = Instance.new("Part")
  186. Part21 = Instance.new("Part")
  187. Part22 = Instance.new("Part")
  188. BlockMesh23 = Instance.new("BlockMesh")
  189. Part24 = Instance.new("Part")
  190. Part25 = Instance.new("Part")
  191. Part26 = Instance.new("Part")
  192. BlockMesh27 = Instance.new("BlockMesh")
  193. Part28 = Instance.new("Part")
  194. Part29 = Instance.new("Part")
  195. Part30 = Instance.new("Part")
  196. Part31 = Instance.new("Part")
  197. Part32 = Instance.new("Part")
  198. Part33 = Instance.new("Part")
  199. Part34 = Instance.new("Part")
  200. Part35 = Instance.new("Part")
  201. Part36 = Instance.new("Part")
  202. Part37 = Instance.new("Part")
  203. Part38 = Instance.new("Part")
  204. Part39 = Instance.new("Part")
  205. BlockMesh40 = Instance.new("BlockMesh")
  206. Part41 = Instance.new("Part")
  207. Part42 = Instance.new("Part")
  208. Part43 = Instance.new("Part")
  209. Part44 = Instance.new("Part")
  210. Part45 = Instance.new("Part")
  211. Part46 = Instance.new("Part")
  212. Part47 = Instance.new("Part")
  213. Part48 = Instance.new("Part")
  214. Part49 = Instance.new("Part")
  215. BlockMesh50 = Instance.new("BlockMesh")
  216. Part51 = Instance.new("Part")
  217. Part52 = Instance.new("Part")
  218. SpecialMesh53 = Instance.new("SpecialMesh")
  219. Part54 = Instance.new("Part")
  220. SpecialMesh55 = Instance.new("SpecialMesh")
  221. Part56 = Instance.new("Part")
  222. Part57 = Instance.new("Part")
  223. Part58 = Instance.new("Part")
  224. Part59 = Instance.new("Part")
  225. Part60 = Instance.new("Part")
  226. Part61 = Instance.new("Part")
  227. Part62 = Instance.new("Part")
  228. Part63 = Instance.new("Part")
  229. Part64 = Instance.new("Part")
  230. Part65 = Instance.new("Part")
  231. Part66 = Instance.new("Part")
  232. BlockMesh67 = Instance.new("BlockMesh")
  233. Part68 = Instance.new("Part")
  234. Part69 = Instance.new("Part")
  235. Part70 = Instance.new("Part")
  236. Weld71 = Instance.new("Weld")
  237. Weld72 = Instance.new("Weld")
  238. Weld73 = Instance.new("Weld")
  239. Weld74 = Instance.new("Weld")
  240. Weld75 = Instance.new("Weld")
  241. Weld76 = Instance.new("Weld")
  242. Weld77 = Instance.new("Weld")
  243. Weld78 = Instance.new("Weld")
  244. Weld79 = Instance.new("Weld")
  245. Weld80 = Instance.new("Weld")
  246. Weld81 = Instance.new("Weld")
  247. Weld82 = Instance.new("Weld")
  248. Weld83 = Instance.new("Weld")
  249. Weld84 = Instance.new("Weld")
  250. Weld85 = Instance.new("Weld")
  251. Weld86 = Instance.new("Weld")
  252. Weld87 = Instance.new("Weld")
  253. Weld88 = Instance.new("Weld")
  254. Weld89 = Instance.new("Weld")
  255. Weld90 = Instance.new("Weld")
  256. Weld91 = Instance.new("Weld")
  257. Weld92 = Instance.new("Weld")
  258. Weld93 = Instance.new("Weld")
  259. Weld94 = Instance.new("Weld")
  260. Weld95 = Instance.new("Weld")
  261. Weld96 = Instance.new("Weld")
  262. Weld97 = Instance.new("Weld")
  263. Weld98 = Instance.new("Weld")
  264. Weld99 = Instance.new("Weld")
  265. Weld100 = Instance.new("Weld")
  266. Weld101 = Instance.new("Weld")
  267. Weld102 = Instance.new("Weld")
  268. Weld103 = Instance.new("Weld")
  269. Weld104 = Instance.new("Weld")
  270. Weld105 = Instance.new("Weld")
  271. Weld106 = Instance.new("Weld")
  272. Weld107 = Instance.new("Weld")
  273. Weld108 = Instance.new("Weld")
  274. Weld109 = Instance.new("Weld")
  275. Weld110 = Instance.new("Weld")
  276. Weld111 = Instance.new("Weld")
  277. Weld112 = Instance.new("Weld")
  278. Weld113 = Instance.new("Weld")
  279. Weld114 = Instance.new("Weld")
  280. Weld115 = Instance.new("Weld")
  281. Weld116 = Instance.new("Weld")
  282. Weld117 = Instance.new("Weld")
  283. Weld118 = Instance.new("Weld")
  284. Weld119 = Instance.new("Weld")
  285. Weld120 = Instance.new("Weld")
  286. Weld121 = Instance.new("Weld")
  287. Weld122 = Instance.new("Weld")
  288. Weld123 = Instance.new("Weld")
  289. Weld124 = Instance.new("Weld")
  290. Weld125 = Instance.new("Weld")
  291. Weld126 = Instance.new("Weld")
  292. Weld127 = Instance.new("Weld")
  293. Weld128 = Instance.new("Weld")
  294. Weld129 = Instance.new("Weld")
  295. Weld130 = Instance.new("Weld")
  296. Weld131 = Instance.new("Weld")
  297. Weld132 = Instance.new("Weld")
  298. Weld133 = Instance.new("Weld")
  299. Weld134 = Instance.new("Weld")
  300. Weld135 = Instance.new("Weld")
  301. Part136 = Instance.new("Part")
  302. Part137 = Instance.new("Part")
  303. Part138 = Instance.new("Part")
  304. SpecialMesh139 = Instance.new("SpecialMesh")
  305. Part140 = Instance.new("Part")
  306. Part141 = Instance.new("Part")
  307. Part142 = Instance.new("Part")
  308. Part143 = Instance.new("Part")
  309. Model144 = Instance.new("Model")
  310. Part145 = Instance.new("Part")
  311. Part146 = Instance.new("Part")
  312. Part147 = Instance.new("Part")
  313. SpecialMesh148 = Instance.new("SpecialMesh")
  314. Part149 = Instance.new("Part")
  315. Part150 = Instance.new("Part")
  316. Part151 = Instance.new("Part")
  317. Part152 = Instance.new("Part")
  318. Part153 = Instance.new("Part")
  319. Part154 = Instance.new("Part")
  320. Part155 = Instance.new("Part")
  321. Part156 = Instance.new("Part")
  322. Part157 = Instance.new("Part")
  323. Part158 = Instance.new("Part")
  324. Part159 = Instance.new("Part")
  325. Part160 = Instance.new("Part")
  326. Part161 = Instance.new("Part")
  327. Part162 = Instance.new("Part")
  328. Part163 = Instance.new("Part")
  329. Part164 = Instance.new("Part")
  330. BlockMesh165 = Instance.new("BlockMesh")
  331. Part166 = Instance.new("Part")
  332. BlockMesh167 = Instance.new("BlockMesh")
  333. Part168 = Instance.new("Part")
  334. Part169 = Instance.new("Part")
  335. Part170 = Instance.new("Part")
  336. Part171 = Instance.new("Part")
  337. SpecialMesh172 = Instance.new("SpecialMesh")
  338. Part173 = Instance.new("Part")
  339. Part174 = Instance.new("Part")
  340. Part175 = Instance.new("Part")
  341. Part176 = Instance.new("Part")
  342. Part177 = Instance.new("Part")
  343. Part178 = Instance.new("Part")
  344. Part179 = Instance.new("Part")
  345. Part180 = Instance.new("Part")
  346. Part181 = Instance.new("Part")
  347. BlockMesh182 = Instance.new("BlockMesh")
  348. Part183 = Instance.new("Part")
  349. Part184 = Instance.new("Part")
  350. Part185 = Instance.new("Part")
  351. Part186 = Instance.new("Part")
  352. Part187 = Instance.new("Part")
  353. Weld188 = Instance.new("Weld")
  354. Weld189 = Instance.new("Weld")
  355. Weld190 = Instance.new("Weld")
  356. Weld191 = Instance.new("Weld")
  357. Weld192 = Instance.new("Weld")
  358. Weld193 = Instance.new("Weld")
  359. Weld194 = Instance.new("Weld")
  360. Weld195 = Instance.new("Weld")
  361. Weld196 = Instance.new("Weld")
  362. Weld197 = Instance.new("Weld")
  363. Weld198 = Instance.new("Weld")
  364. Weld199 = Instance.new("Weld")
  365. Weld200 = Instance.new("Weld")
  366. Weld201 = Instance.new("Weld")
  367. Weld202 = Instance.new("Weld")
  368. Weld203 = Instance.new("Weld")
  369. Weld204 = Instance.new("Weld")
  370. Weld205 = Instance.new("Weld")
  371. Weld206 = Instance.new("Weld")
  372. Weld207 = Instance.new("Weld")
  373. Weld208 = Instance.new("Weld")
  374. Weld209 = Instance.new("Weld")
  375. Weld210 = Instance.new("Weld")
  376. Weld211 = Instance.new("Weld")
  377. Weld212 = Instance.new("Weld")
  378. Weld213 = Instance.new("Weld")
  379. Weld214 = Instance.new("Weld")
  380. Weld215 = Instance.new("Weld")
  381. Weld216 = Instance.new("Weld")
  382. Weld217 = Instance.new("Weld")
  383. Weld218 = Instance.new("Weld")
  384. Weld219 = Instance.new("Weld")
  385. Weld220 = Instance.new("Weld")
  386. Weld221 = Instance.new("Weld")
  387. Weld222 = Instance.new("Weld")
  388. Weld223 = Instance.new("Weld")
  389. Weld224 = Instance.new("Weld")
  390. Weld225 = Instance.new("Weld")
  391. Weld226 = Instance.new("Weld")
  392. Weld227 = Instance.new("Weld")
  393. Weld228 = Instance.new("Weld")
  394. Weld229 = Instance.new("Weld")
  395. Weld230 = Instance.new("Weld")
  396. Weld231 = Instance.new("Weld")
  397. Weld232 = Instance.new("Weld")
  398. Weld233 = Instance.new("Weld")
  399. Weld234 = Instance.new("Weld")
  400. Weld235 = Instance.new("Weld")
  401. Weld236 = Instance.new("Weld")
  402. Weld237 = Instance.new("Weld")
  403. Weld238 = Instance.new("Weld")
  404. Weld239 = Instance.new("Weld")
  405. Weld240 = Instance.new("Weld")
  406. Weld241 = Instance.new("Weld")
  407. Weld242 = Instance.new("Weld")
  408. Weld243 = Instance.new("Weld")
  409. Weld244 = Instance.new("Weld")
  410. Weld245 = Instance.new("Weld")
  411. Weld246 = Instance.new("Weld")
  412. Weld247 = Instance.new("Weld")
  413. Weld248 = Instance.new("Weld")
  414. Weld249 = Instance.new("Weld")
  415. Weld250 = Instance.new("Weld")
  416. Weld251 = Instance.new("Weld")
  417. Weld252 = Instance.new("Weld")
  418. Part253 = Instance.new("Part")
  419. SpecialMesh254 = Instance.new("SpecialMesh")
  420. Part255 = Instance.new("Part")
  421. Part256 = Instance.new("Part")
  422. Part257 = Instance.new("Part")
  423. Part258 = Instance.new("Part")
  424. Part259 = Instance.new("Part")
  425. SpecialMesh260 = Instance.new("SpecialMesh")
  426. Part261 = Instance.new("Part")
  427. Part262 = Instance.new("Part")
  428. SpecialMesh263 = Instance.new("SpecialMesh")
  429. Part264 = Instance.new("Part")
  430. Part265 = Instance.new("Part")
  431. Part266 = Instance.new("Part")
  432. Part267 = Instance.new("Part")
  433. SpecialMesh268 = Instance.new("SpecialMesh")
  434. Part269 = Instance.new("Part")
  435. Part270 = Instance.new("Part")
  436. Part271 = Instance.new("Part")
  437. Part272 = Instance.new("Part")
  438. Part273 = Instance.new("Part")
  439. Part274 = Instance.new("Part")
  440. Part275 = Instance.new("Part")
  441. Part276 = Instance.new("Part")
  442. Part277 = Instance.new("Part")
  443. SpecialMesh278 = Instance.new("SpecialMesh")
  444. Part279 = Instance.new("Part")
  445. Part280 = Instance.new("Part")
  446. Part281 = Instance.new("Part")
  447. Part282 = Instance.new("Part")
  448. BlockMesh283 = Instance.new("BlockMesh")
  449. Part284 = Instance.new("Part")
  450. Part285 = Instance.new("Part")
  451. Part286 = Instance.new("Part")
  452. BlockMesh287 = Instance.new("BlockMesh")
  453. Model0.Name = "ALeftArm"
  454. Model0.Parent = mas
  455. Part1.Parent = Model0
  456. Part1.Material = Enum.Material.Metal
  457. Part1.BrickColor = BrickColor.new("Pearl")
  458. Part1.Rotation = Vector3.new(0, 0, -20)
  459. Part1.CanCollide = false
  460. Part1.Shape = Enum.PartType.Cylinder
  461. Part1.Size = Vector3.new(0.0585458241, 0.821707308, 1.02462256)
  462. Part1.CFrame = CFrame.new(-38.8056679, 4.18999386, -69.3819656, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1)
  463. Part1.BottomSurface = Enum.SurfaceType.Smooth
  464. Part1.TopSurface = Enum.SurfaceType.Smooth
  465. Part1.Color = Color3.new(0.905882, 0.905882, 0.92549)
  466. Part1.Position = Vector3.new(-38.8056679, 4.18999386, -69.3819656)
  467. Part1.Orientation = Vector3.new(0, 0, -20)
  468. Part1.Color = Color3.new(0.905882, 0.905882, 0.92549)
  469. SpecialMesh2.Parent = Part1
  470. SpecialMesh2.Scale = Vector3.new(0.720637798, 1, 1)
  471. SpecialMesh2.MeshType = Enum.MeshType.Cylinder
  472. SpecialMesh2.Scale = Vector3.new(0.720637798, 1, 1)
  473. Part3.Parent = Model0
  474. Part3.Material = Enum.Material.Neon
  475. Part3.BrickColor = BrickColor.new("Teal")
  476. Part3.CanCollide = false
  477. Part3.Size = Vector3.new(0.912115455, 0.803625882, 0.0823717415)
  478. Part3.CFrame = CFrame.new(-38.7048264, 2.97767377, -69.3869705, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  479. Part3.BottomSurface = Enum.SurfaceType.Smooth
  480. Part3.TopSurface = Enum.SurfaceType.Smooth
  481. Part3.Color = Color3.new(1, 1, 0)
  482. Part3.Position = Vector3.new(-38.7048264, 2.97767377, -69.3869705)
  483. Part3.Color = Color3.new(1, 1, 0)
  484. Part4.Parent = Model0
  485. Part4.Material = Enum.Material.Metal
  486. Part4.BrickColor = BrickColor.new("Pearl")
  487. Part4.Rotation = Vector3.new(0, 0, -20)
  488. Part4.CanCollide = false
  489. Part4.Shape = Enum.PartType.Cylinder
  490. Part4.Size = Vector3.new(0.0585458241, 0.879970253, 1.02462256)
  491. Part4.CFrame = CFrame.new(-38.7052917, 4.21736908, -69.3819656, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1)
  492. Part4.BottomSurface = Enum.SurfaceType.Smooth
  493. Part4.TopSurface = Enum.SurfaceType.Smooth
  494. Part4.Color = Color3.new(0.905882, 0.905882, 0.92549)
  495. Part4.Position = Vector3.new(-38.7052917, 4.21736908, -69.3819656)
  496. Part4.Orientation = Vector3.new(0, 0, -20)
  497. Part4.Color = Color3.new(0.905882, 0.905882, 0.92549)
  498. SpecialMesh5.Parent = Part4
  499. SpecialMesh5.Scale = Vector3.new(0.720637798, 1, 1)
  500. SpecialMesh5.MeshType = Enum.MeshType.Cylinder
  501. SpecialMesh5.Scale = Vector3.new(0.720637798, 1, 1)
  502. Part6.Parent = Model0
  503. Part6.Material = Enum.Material.Metal
  504. Part6.BrickColor = BrickColor.new("Pearl")
  505. Part6.Rotation = Vector3.new(0, 0, -25)
  506. Part6.CanCollide = false
  507. Part6.Shape = Enum.PartType.Cylinder
  508. Part6.Size = Vector3.new(0.0585458241, 0.958324492, 1.02462256)
  509. Part6.CFrame = CFrame.new(-38.5822372, 4.252882, -69.3819656, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  510. Part6.BottomSurface = Enum.SurfaceType.Smooth
  511. Part6.TopSurface = Enum.SurfaceType.Smooth
  512. Part6.Color = Color3.new(0.905882, 0.905882, 0.92549)
  513. Part6.Position = Vector3.new(-38.5822372, 4.252882, -69.3819656)
  514. Part6.Orientation = Vector3.new(0, 0, -25)
  515. Part6.Color = Color3.new(0.905882, 0.905882, 0.92549)
  516. SpecialMesh7.Parent = Part6
  517. SpecialMesh7.Scale = Vector3.new(0.720637798, 1, 1)
  518. SpecialMesh7.MeshType = Enum.MeshType.Cylinder
  519. SpecialMesh7.Scale = Vector3.new(0.720637798, 1, 1)
  520. Part8.Parent = Model0
  521. Part8.Material = Enum.Material.Neon
  522. Part8.BrickColor = BrickColor.new("Teal")
  523. Part8.CanCollide = false
  524. Part8.Size = Vector3.new(0.888006091, 0.803625882, 0.0823717415)
  525. Part8.CFrame = CFrame.new(-38.7168655, 2.97767377, -69.1097412, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  526. Part8.BottomSurface = Enum.SurfaceType.Smooth
  527. Part8.TopSurface = Enum.SurfaceType.Smooth
  528. Part8.Color = Color3.new(1, 1, 0)
  529. Part8.Position = Vector3.new(-38.7168655, 2.97767377, -69.1097412)
  530. Part8.Color = Color3.new(1, 1, 0)
  531. Part9.Parent = Model0
  532. Part9.Material = Enum.Material.Neon
  533. Part9.BrickColor = BrickColor.new("Teal")
  534. Part9.CanCollide = false
  535. Part9.Size = Vector3.new(0.928188324, 0.803625882, 0.0823717415)
  536. Part9.CFrame = CFrame.new(-38.6967812, 2.97767377, -69.6722488, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  537. Part9.BottomSurface = Enum.SurfaceType.Smooth
  538. Part9.TopSurface = Enum.SurfaceType.Smooth
  539. Part9.Color = Color3.new(1, 1, 0)
  540. Part9.Position = Vector3.new(-38.6967812, 2.97767377, -69.6722488)
  541. Part9.Color = Color3.new(1, 1, 0)
  542. Part10.Parent = Model0
  543. Part10.Material = Enum.Material.Neon
  544. Part10.BrickColor = BrickColor.new("Teal")
  545. Part10.CanCollide = false
  546. Part10.Shape = Enum.PartType.Cylinder
  547. Part10.Size = Vector3.new(0.351586491, 0.79157114, 1.02462256)
  548. Part10.CFrame = CFrame.new(-38.5170097, 4.14720774, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  549. Part10.BottomSurface = Enum.SurfaceType.Smooth
  550. Part10.TopSurface = Enum.SurfaceType.Smooth
  551. Part10.Color = Color3.new(1, 1, 0)
  552. Part10.Position = Vector3.new(-38.5170097, 4.14720774, -69.3819656)
  553. Part10.Color = Color3.new(1, 1, 0)
  554. Part11.Parent = Model0
  555. Part11.Material = Enum.Material.Metal
  556. Part11.BrickColor = BrickColor.new("Ghost grey")
  557. Part11.CanCollide = false
  558. Part11.Shape = Enum.PartType.Cylinder
  559. Part11.Size = Vector3.new(0.140634596, 0.4419927, 1.02462256)
  560. Part11.CFrame = CFrame.new(-39.1307487, 3.32725286, -69.5908966, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  561. Part11.BottomSurface = Enum.SurfaceType.Smooth
  562. Part11.TopSurface = Enum.SurfaceType.Smooth
  563. Part11.Color = Color3.new(0.792157, 0.796079, 0.819608)
  564. Part11.Position = Vector3.new(-39.1307487, 3.32725286, -69.5908966)
  565. Part11.Color = Color3.new(0.792157, 0.796079, 0.819608)
  566. Part12.Parent = Model0
  567. Part12.Material = Enum.Material.Metal
  568. Part12.BrickColor = BrickColor.new("Ghost grey")
  569. Part12.CanCollide = false
  570. Part12.Shape = Enum.PartType.Cylinder
  571. Part12.Size = Vector3.new(0.140634596, 0.4419927, 1.02462256)
  572. Part12.CFrame = CFrame.new(-39.1307487, 3.32725286, -69.1829987, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  573. Part12.BottomSurface = Enum.SurfaceType.Smooth
  574. Part12.TopSurface = Enum.SurfaceType.Smooth
  575. Part12.Color = Color3.new(0.792157, 0.796079, 0.819608)
  576. Part12.Position = Vector3.new(-39.1307487, 3.32725286, -69.1829987)
  577. Part12.Color = Color3.new(0.792157, 0.796079, 0.819608)
  578. Part13.Parent = Model0
  579. Part13.Material = Enum.Material.Metal
  580. Part13.BrickColor = BrickColor.new("Institutional white")
  581. Part13.CanCollide = false
  582. Part13.Shape = Enum.PartType.Cylinder
  583. Part13.Size = Vector3.new(0.140634596, 0.4419927, 1.02462256)
  584. Part13.CFrame = CFrame.new(-39.1227226, 3.11228156, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  585. Part13.BottomSurface = Enum.SurfaceType.Smooth
  586. Part13.TopSurface = Enum.SurfaceType.Smooth
  587. Part13.Color = Color3.new(0.972549, 0.972549, 0.972549)
  588. Part13.Position = Vector3.new(-39.1227226, 3.11228156, -69.3819656)
  589. Part13.Color = Color3.new(0.972549, 0.972549, 0.972549)
  590. Part14.Parent = Model0
  591. Part14.Material = Enum.Material.Metal
  592. Part14.BrickColor = BrickColor.new("Pearl")
  593. Part14.Rotation = Vector3.new(0, 0, -15)
  594. Part14.CanCollide = false
  595. Part14.Shape = Enum.PartType.Cylinder
  596. Part14.Size = Vector3.new(0.0585458241, 0.63888222, 1.02462256)
  597. Part14.CFrame = CFrame.new(-39.0101585, 4.10170078, -69.3819656, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872, 0, 0, 0, 1)
  598. Part14.BottomSurface = Enum.SurfaceType.Smooth
  599. Part14.TopSurface = Enum.SurfaceType.Smooth
  600. Part14.Color = Color3.new(0.905882, 0.905882, 0.92549)
  601. Part14.Position = Vector3.new(-39.0101585, 4.10170078, -69.3819656)
  602. Part14.Orientation = Vector3.new(0, 0, -15)
  603. Part14.Color = Color3.new(0.905882, 0.905882, 0.92549)
  604. SpecialMesh15.Parent = Part14
  605. SpecialMesh15.Scale = Vector3.new(0.720637798, 1, 1)
  606. SpecialMesh15.MeshType = Enum.MeshType.Cylinder
  607. SpecialMesh15.Scale = Vector3.new(0.720637798, 1, 1)
  608. Part16.Parent = Model0
  609. Part16.Material = Enum.Material.Neon
  610. Part16.BrickColor = BrickColor.new("Teal")
  611. Part16.Rotation = Vector3.new(175, 0, -175)
  612. Part16.CanCollide = false
  613. Part16.Shape = Enum.PartType.Cylinder
  614. Part16.Size = Vector3.new(0.184117824, 0.109762669, 0.329287499)
  615. Part16.CFrame = CFrame.new(-38.5871696, 1.89406002, -68.9739456, -0.99619478, 0.0871556178, -1.0595604e-07, 0.0868239775, 0.992403924, -0.0871556401, -0.00759599824, -0.0868239924, -0.99619478)
  616. Part16.BottomSurface = Enum.SurfaceType.Smooth
  617. Part16.TopSurface = Enum.SurfaceType.Smooth
  618. Part16.Color = Color3.new(0.972549, 1, 0.376471)
  619. Part16.Position = Vector3.new(-38.5871696, 1.89406002, -68.9739456)
  620. Part16.Orientation = Vector3.new(5, -180, 5)
  621. Part16.Color = Color3.new(0.972549, 1, 0.376471)
  622. Part17.Parent = Model0
  623. Part17.Material = Enum.Material.Metal
  624. Part17.BrickColor = BrickColor.new("Oyster")
  625. Part17.Rotation = Vector3.new(85, 85, -90)
  626. Part17.CanCollide = false
  627. Part17.Size = Vector3.new(0.184117824, 0.154021695, 0.329287499)
  628. Part17.CFrame = CFrame.new(-38.6656876, 1.90878439, -68.975174, 0, 0.0871559903, 0.99619472, -0.087155968, 0.992403865, -0.0868243352, -0.996194661, -0.0868243203, 0.00759616494)
  629. Part17.BottomSurface = Enum.SurfaceType.Smooth
  630. Part17.TopSurface = Enum.SurfaceType.Smooth
  631. Part17.Color = Color3.new(0.690196, 0.694118, 0.713726)
  632. Part17.Position = Vector3.new(-38.6656876, 1.90878439, -68.975174)
  633. Part17.Orientation = Vector3.new(4.98000002, 89.5599976, -5.01999998)
  634. Part17.Color = Color3.new(0.690196, 0.694118, 0.713726)
  635. Part18.Parent = Model0
  636. Part18.Material = Enum.Material.Metal
  637. Part18.BrickColor = BrickColor.new("Oyster")
  638. Part18.Rotation = Vector3.new(85, 75, -90)
  639. Part18.CanCollide = false
  640. Part18.Size = Vector3.new(0.184117824, 0.154021695, 0.329287499)
  641. Part18.CFrame = CFrame.new(-39.0067482, 1.96354556, -68.9799881, 0, 0.258819073, 0.965925813, -0.087155968, 0.962250233, -0.257834166, -0.996194661, -0.0841862038, 0.0225576237)
  642. Part18.BottomSurface = Enum.SurfaceType.Smooth
  643. Part18.TopSurface = Enum.SurfaceType.Smooth
  644. Part18.Color = Color3.new(0.690196, 0.694118, 0.713726)
  645. Part18.Position = Vector3.new(-39.0067482, 1.96354556, -68.9799881)
  646. Part18.Orientation = Vector3.new(14.9399996, 88.659996, -5.17999983)
  647. Part18.Color = Color3.new(0.690196, 0.694118, 0.713726)
  648. Part19.Parent = Model0
  649. Part19.Material = Enum.Material.Metal
  650. Part19.BrickColor = BrickColor.new("Oyster")
  651. Part19.Rotation = Vector3.new(85, 85, -90)
  652. Part19.CanCollide = false
  653. Part19.Shape = Enum.PartType.Cylinder
  654. Part19.Size = Vector3.new(0.184117824, 0.154021695, 0.329287499)
  655. Part19.CFrame = CFrame.new(-38.8494797, 1.92127657, -68.976326, 0, 0.0871559903, 0.99619472, -0.087155968, 0.992403865, -0.0868243352, -0.996194661, -0.0868243203, 0.00759616494)
  656. Part19.BottomSurface = Enum.SurfaceType.Smooth
  657. Part19.TopSurface = Enum.SurfaceType.Smooth
  658. Part19.Color = Color3.new(0.690196, 0.694118, 0.713726)
  659. Part19.Position = Vector3.new(-38.8494797, 1.92127657, -68.976326)
  660. Part19.Orientation = Vector3.new(4.98000002, 89.5599976, -5.01999998)
  661. Part19.Color = Color3.new(0.690196, 0.694118, 0.713726)
  662. Part20.Parent = Model0
  663. Part20.Material = Enum.Material.Metal
  664. Part20.BrickColor = BrickColor.new("Oyster")
  665. Part20.Rotation = Vector3.new(85, 75, -90)
  666. Part20.CanCollide = false
  667. Part20.Shape = Enum.PartType.Cylinder
  668. Part20.Size = Vector3.new(0.184117824, 0.154021695, 0.329287499)
  669. Part20.CFrame = CFrame.new(-39.1855469, 2.00763535, -68.9839096, 0, 0.258819073, 0.965925813, -0.087155968, 0.962250233, -0.257834166, -0.996194661, -0.0841862038, 0.0225576237)
  670. Part20.BottomSurface = Enum.SurfaceType.Smooth
  671. Part20.TopSurface = Enum.SurfaceType.Smooth
  672. Part20.Color = Color3.new(0.690196, 0.694118, 0.713726)
  673. Part20.Position = Vector3.new(-39.1855469, 2.00763535, -68.9839096)
  674. Part20.Orientation = Vector3.new(14.9399996, 88.659996, -5.17999983)
  675. Part20.Color = Color3.new(0.690196, 0.694118, 0.713726)
  676. Part21.Parent = Model0
  677. Part21.Material = Enum.Material.Metal
  678. Part21.BrickColor = BrickColor.new("Oyster")
  679. Part21.Rotation = Vector3.new(85, 75, -90)
  680. Part21.CanCollide = false
  681. Part21.Size = Vector3.new(0.189465478, 0.606654346, 0.300594002)
  682. Part21.CFrame = CFrame.new(-39.0425415, 2.26165748, -69.0060959, 0, 0.258819073, 0.965925813, -0.087155968, 0.962250233, -0.257834166, -0.996194661, -0.0841862038, 0.0225576237)
  683. Part21.BottomSurface = Enum.SurfaceType.Smooth
  684. Part21.TopSurface = Enum.SurfaceType.Smooth
  685. Part21.Color = Color3.new(0.690196, 0.694118, 0.713726)
  686. Part21.Position = Vector3.new(-39.0425415, 2.26165748, -69.0060959)
  687. Part21.Orientation = Vector3.new(14.9399996, 88.659996, -5.17999983)
  688. Part21.Color = Color3.new(0.690196, 0.694118, 0.713726)
  689. Part22.Parent = Model0
  690. Part22.Material = Enum.Material.Metal
  691. Part22.BrickColor = BrickColor.new("Ghost grey")
  692. Part22.Rotation = Vector3.new(85, 70, -90)
  693. Part22.CanCollide = false
  694. Part22.Size = Vector3.new(0.161103114, 0.589531481, 0.0585457757)
  695. Part22.CFrame = CFrame.new(-39.1819611, 2.31221414, -69.0096512, 0, 0.342019975, 0.939692736, -0.087155968, 0.936116874, -0.340718478, -0.996194661, -0.0818998367, 0.0298090819)
  696. Part22.BottomSurface = Enum.SurfaceType.Smooth
  697. Part22.TopSurface = Enum.SurfaceType.Smooth
  698. Part22.Color = Color3.new(0.792157, 0.796079, 0.819608)
  699. Part22.Position = Vector3.new(-39.1819611, 2.31221414, -69.0096512)
  700. Part22.Orientation = Vector3.new(19.9200001, 88.1800003, -5.31999969)
  701. Part22.Color = Color3.new(0.792157, 0.796079, 0.819608)
  702. BlockMesh23.Parent = Part22
  703. BlockMesh23.Scale = Vector3.new(1, 1, 0.876931548)
  704. BlockMesh23.Scale = Vector3.new(1, 1, 0.876931548)
  705. Part24.Parent = Model0
  706. Part24.Material = Enum.Material.Metal
  707. Part24.BrickColor = BrickColor.new("Pearl")
  708. Part24.Rotation = Vector3.new(85, 65, -90)
  709. Part24.CanCollide = false
  710. Part24.Size = Vector3.new(0.122155122, 0.497472882, 0.0672738478)
  711. Part24.CFrame = CFrame.new(-39.1697426, 2.35743499, -69.0100403, 0, 0.422618091, 0.906307936, -0.087155968, 0.902859211, -0.421009868, -0.996194661, -0.078990154, 0.0368336849)
  712. Part24.BottomSurface = Enum.SurfaceType.Smooth
  713. Part24.TopSurface = Enum.SurfaceType.Smooth
  714. Part24.Color = Color3.new(0.905882, 0.905882, 0.92549)
  715. Part24.Position = Vector3.new(-39.1697426, 2.35743499, -69.0100403)
  716. Part24.Orientation = Vector3.new(24.8999996, 87.6699982, -5.50999975)
  717. Part24.Color = Color3.new(0.905882, 0.905882, 0.92549)
  718. Part25.Parent = Model0
  719. Part25.Material = Enum.Material.Metal
  720. Part25.BrickColor = BrickColor.new("Oyster")
  721. Part25.Rotation = Vector3.new(15.0499992, -4.82999992, 1.29999995)
  722. Part25.CanCollide = false
  723. Part25.Shape = Enum.PartType.Cylinder
  724. Part25.Size = Vector3.new(0.203045323, 0.169855386, 0.363138705)
  725. Part25.CFrame = CFrame.new(-38.4499283, 1.87203217, -69.98172, 0.996194661, -0.022557525, -0.0841862261, 0, 0.96592623, -0.258817881, 0.087155968, 0.257833004, 0.962250531)
  726. Part25.BottomSurface = Enum.SurfaceType.Smooth
  727. Part25.TopSurface = Enum.SurfaceType.Smooth
  728. Part25.Color = Color3.new(0.690196, 0.694118, 0.713726)
  729. Part25.Position = Vector3.new(-38.4499283, 1.87203217, -69.98172)
  730. Part25.Orientation = Vector3.new(15, -5, 0)
  731. Part25.Color = Color3.new(0.690196, 0.694118, 0.713726)
  732. Part26.Parent = Model0
  733. Part26.Material = Enum.Material.Metal
  734. Part26.BrickColor = BrickColor.new("Ghost grey")
  735. Part26.Rotation = Vector3.new(20.0699997, -4.69999981, 1.70999992)
  736. Part26.CanCollide = false
  737. Part26.Size = Vector3.new(0.177664682, 0.650135756, 0.0585457757)
  738. Part26.CFrame = CFrame.new(-38.4512444, 2.20911837, -69.9778442, 0.996194661, -0.0298092179, -0.0818997845, 0, 0.93969214, -0.342021465, 0.087155968, 0.340719998, 0.936116338)
  739. Part26.BottomSurface = Enum.SurfaceType.Smooth
  740. Part26.TopSurface = Enum.SurfaceType.Smooth
  741. Part26.Color = Color3.new(0.792157, 0.796079, 0.819608)
  742. Part26.Position = Vector3.new(-38.4512444, 2.20911837, -69.9778442)
  743. Part26.Orientation = Vector3.new(20, -5, 0)
  744. Part26.Color = Color3.new(0.792157, 0.796079, 0.819608)
  745. BlockMesh27.Parent = Part26
  746. BlockMesh27.Scale = Vector3.new(1, 1, 0.967080653)
  747. BlockMesh27.Scale = Vector3.new(1, 1, 0.967080653)
  748. Part28.Parent = Model0
  749. Part28.Material = Enum.Material.Metal
  750. Part28.BrickColor = BrickColor.new("Oyster")
  751. Part28.Rotation = Vector3.new(15.0499992, -4.82999992, 1.29999995)
  752. Part28.CanCollide = false
  753. Part28.Size = Vector3.new(0.203045323, 0.169855386, 0.363138705)
  754. Part28.CFrame = CFrame.new(-38.4671211, 1.82322133, -69.7853622, 0.996194661, -0.022557525, -0.0841862261, 0, 0.96592623, -0.258817881, 0.087155968, 0.257833004, 0.962250531)
  755. Part28.BottomSurface = Enum.SurfaceType.Smooth
  756. Part28.TopSurface = Enum.SurfaceType.Smooth
  757. Part28.Color = Color3.new(0.690196, 0.694118, 0.713726)
  758. Part28.Position = Vector3.new(-38.4671211, 1.82322133, -69.7853622)
  759. Part28.Orientation = Vector3.new(15, -5, 0)
  760. Part28.Color = Color3.new(0.690196, 0.694118, 0.713726)
  761. Part29.Parent = Model0
  762. Part29.Material = Enum.Material.Metal
  763. Part29.BrickColor = BrickColor.new("Oyster")
  764. Part29.Rotation = Vector3.new(15.0499992, -4.82999992, 1.29999995)
  765. Part29.CanCollide = false
  766. Part29.Size = Vector3.new(0.208942682, 0.669018865, 0.331495464)
  767. Part29.CFrame = CFrame.new(-38.4636955, 2.15323949, -69.824585, 0.996194661, -0.022557525, -0.0841862261, 0, 0.96592623, -0.258817881, 0.087155968, 0.257833004, 0.962250531)
  768. Part29.BottomSurface = Enum.SurfaceType.Smooth
  769. Part29.TopSurface = Enum.SurfaceType.Smooth
  770. Part29.Color = Color3.new(0.690196, 0.694118, 0.713726)
  771. Part29.Position = Vector3.new(-38.4636955, 2.15323949, -69.824585)
  772. Part29.Orientation = Vector3.new(15, -5, 0)
  773. Part29.Color = Color3.new(0.690196, 0.694118, 0.713726)
  774. Part30.Parent = Model0
  775. Part30.Material = Enum.Material.Metal
  776. Part30.BrickColor = BrickColor.new("Oyster")
  777. Part30.Rotation = Vector3.new(5.01999998, -4.98000002, 0.439999998)
  778. Part30.CanCollide = false
  779. Part30.Shape = Enum.PartType.Cylinder
  780. Part30.Size = Vector3.new(0.203045323, 0.169855386, 0.363138705)
  781. Part30.CFrame = CFrame.new(-38.4822464, 1.77642953, -69.6125259, 0.996194661, -0.00759613281, -0.0868243203, 0, 0.99619478, -0.0871556103, 0.087155968, 0.0868239626, 0.992403865)
  782. Part30.BottomSurface = Enum.SurfaceType.Smooth
  783. Part30.TopSurface = Enum.SurfaceType.Smooth
  784. Part30.Color = Color3.new(0.690196, 0.694118, 0.713726)
  785. Part30.Position = Vector3.new(-38.4822464, 1.77642953, -69.6125259)
  786. Part30.Orientation = Vector3.new(5, -5, 0)
  787. Part30.Color = Color3.new(0.690196, 0.694118, 0.713726)
  788. Part31.Parent = Model0
  789. Part31.Material = Enum.Material.Neon
  790. Part31.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  791. Part31.Rotation = Vector3.new(0, 85, 5)
  792. Part31.CanCollide = false
  793. Part31.Shape = Enum.PartType.Cylinder
  794. Part31.Size = Vector3.new(0.203045323, 0.121046357, 0.363138705)
  795. Part31.CFrame = CFrame.new(-38.5074348, 1.74630392, -69.324379, 0.0868239924, -0.00759603037, 0.99619478, 0.0871559903, 0.99619472, -1.0660527e-07, -0.992403865, 0.0868243501, 0.0871556476)
  796. Part31.BottomSurface = Enum.SurfaceType.Smooth
  797. Part31.TopSurface = Enum.SurfaceType.Smooth
  798. Part31.Color = Color3.new(0.972549, 1, 0.376471)
  799. Part31.Position = Vector3.new(-38.5074348, 1.74630392, -69.324379)
  800. Part31.Orientation = Vector3.new(0, 85, 5)
  801. Part31.Color = Color3.new(0.972549, 1, 0.376471)
  802. Part32.Parent = Model0
  803. Part32.Material = Enum.Material.Metal
  804. Part32.BrickColor = BrickColor.new("Oyster")
  805. Part32.Rotation = Vector3.new(5.01999998, -4.98000002, 0.439999998)
  806. Part32.CanCollide = false
  807. Part32.Size = Vector3.new(0.203045323, 0.169855386, 0.363138705)
  808. Part32.CFrame = CFrame.new(-38.499897, 1.76260531, -69.4106064, 0.996194661, -0.00759613281, -0.0868243203, 0, 0.99619478, -0.0871556103, 0.087155968, 0.0868239626, 0.992403865)
  809. Part32.BottomSurface = Enum.SurfaceType.Smooth
  810. Part32.TopSurface = Enum.SurfaceType.Smooth
  811. Part32.Color = Color3.new(0.690196, 0.694118, 0.713726)
  812. Part32.Position = Vector3.new(-38.499897, 1.76260531, -69.4106064)
  813. Part32.Orientation = Vector3.new(5, -5, 0)
  814. Part32.Color = Color3.new(0.690196, 0.694118, 0.713726)
  815. Part33.Parent = Model0
  816. Part33.Material = Enum.Material.Metal
  817. Part33.BrickColor = BrickColor.new("Pearl")
  818. Part33.Rotation = Vector3.new(25.0799999, -4.52999973, 2.11999989)
  819. Part33.CanCollide = false
  820. Part33.Size = Vector3.new(0.134712741, 0.548613548, 0.0741896555)
  821. Part33.CFrame = CFrame.new(-38.4563217, 2.25883579, -69.9647751, 0.996194661, -0.0368336178, -0.0789901689, 0, 0.906308234, -0.422617316, 0.087155968, 0.421009123, 0.902859449)
  822. Part33.BottomSurface = Enum.SurfaceType.Smooth
  823. Part33.TopSurface = Enum.SurfaceType.Smooth
  824. Part33.Color = Color3.new(0.905882, 0.905882, 0.92549)
  825. Part33.Position = Vector3.new(-38.4563217, 2.25883579, -69.9647751)
  826. Part33.Orientation = Vector3.new(25, -5, 0)
  827. Part33.Color = Color3.new(0.905882, 0.905882, 0.92549)
  828. Part34.Parent = Model0
  829. Part34.Material = Enum.Material.Neon
  830. Part34.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  831. Part34.Rotation = Vector3.new(-180, 0, -175)
  832. Part34.CanCollide = false
  833. Part34.Shape = Enum.PartType.Cylinder
  834. Part34.Size = Vector3.new(0.207303926, 0.123585194, 0.370755196)
  835. Part34.CFrame = CFrame.new(-38.544281, 1.86258292, -69.4999466, -0.996194661, 0.087155968, 0, 0.087155968, 0.996194661, 0, 0, 0, -1)
  836. Part34.BottomSurface = Enum.SurfaceType.Smooth
  837. Part34.TopSurface = Enum.SurfaceType.Smooth
  838. Part34.Color = Color3.new(0.972549, 1, 0.376471)
  839. Part34.Position = Vector3.new(-38.544281, 1.86258292, -69.4999466)
  840. Part34.Orientation = Vector3.new(0, 180, 5)
  841. Part34.Color = Color3.new(0.972549, 1, 0.376471)
  842. Part35.Parent = Model0
  843. Part35.Material = Enum.Material.Metal
  844. Part35.BrickColor = BrickColor.new("Oyster")
  845. Part35.Rotation = Vector3.new(90, 85, -90)
  846. Part35.CanCollide = false
  847. Part35.Size = Vector3.new(0.207303926, 0.173417926, 0.370755196)
  848. Part35.CFrame = CFrame.new(-38.6327057, 1.87922716, -69.499939, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0)
  849. Part35.BottomSurface = Enum.SurfaceType.Smooth
  850. Part35.TopSurface = Enum.SurfaceType.Smooth
  851. Part35.Color = Color3.new(0.690196, 0.694118, 0.713726)
  852. Part35.Position = Vector3.new(-38.6327057, 1.87922716, -69.499939)
  853. Part35.Orientation = Vector3.new(5, 90, 0)
  854. Part35.Color = Color3.new(0.690196, 0.694118, 0.713726)
  855. Part36.Parent = Model0
  856. Part36.Material = Enum.Material.Metal
  857. Part36.BrickColor = BrickColor.new("Oyster")
  858. Part36.Rotation = Vector3.new(90, 75, -90)
  859. Part36.CanCollide = false
  860. Part36.Size = Vector3.new(0.207303926, 0.173417926, 0.370755196)
  861. Part36.CFrame = CFrame.new(-39.0167084, 1.9411211, -69.499939, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  862. Part36.BottomSurface = Enum.SurfaceType.Smooth
  863. Part36.TopSurface = Enum.SurfaceType.Smooth
  864. Part36.Color = Color3.new(0.690196, 0.694118, 0.713726)
  865. Part36.Position = Vector3.new(-39.0167084, 1.9411211, -69.499939)
  866. Part36.Orientation = Vector3.new(15, 90, 0)
  867. Part36.Color = Color3.new(0.690196, 0.694118, 0.713726)
  868. Part37.Parent = Model0
  869. Part37.Material = Enum.Material.Metal
  870. Part37.BrickColor = BrickColor.new("Oyster")
  871. Part37.Rotation = Vector3.new(90, 85, -90)
  872. Part37.CanCollide = false
  873. Part37.Shape = Enum.PartType.Cylinder
  874. Part37.Size = Vector3.new(0.207303926, 0.173417926, 0.370755196)
  875. Part37.CFrame = CFrame.new(-38.8396492, 1.8933444, -69.499939, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0)
  876. Part37.BottomSurface = Enum.SurfaceType.Smooth
  877. Part37.TopSurface = Enum.SurfaceType.Smooth
  878. Part37.Color = Color3.new(0.690196, 0.694118, 0.713726)
  879. Part37.Position = Vector3.new(-38.8396492, 1.8933444, -69.499939)
  880. Part37.Orientation = Vector3.new(5, 90, 0)
  881. Part37.Color = Color3.new(0.690196, 0.694118, 0.713726)
  882. Part38.Parent = Model0
  883. Part38.Material = Enum.Material.Metal
  884. Part38.BrickColor = BrickColor.new("Pearl")
  885. Part38.Rotation = Vector3.new(90, 65, -90)
  886. Part38.CanCollide = false
  887. Part38.Size = Vector3.new(0.13753821, 0.560120106, 0.0757457316)
  888. Part38.CFrame = CFrame.new(-39.2002068, 2.38586926, -69.4949722, 0, 0.422617942, 0.906307876, 0, 0.906307876, -0.422617942, -1, 0, 0)
  889. Part38.BottomSurface = Enum.SurfaceType.Smooth
  890. Part38.TopSurface = Enum.SurfaceType.Smooth
  891. Part38.Color = Color3.new(0.905882, 0.905882, 0.92549)
  892. Part38.Position = Vector3.new(-39.2002068, 2.38586926, -69.4949722)
  893. Part38.Orientation = Vector3.new(25, 90, 0)
  894. Part38.Color = Color3.new(0.905882, 0.905882, 0.92549)
  895. Part39.Parent = Model0
  896. Part39.Material = Enum.Material.Metal
  897. Part39.BrickColor = BrickColor.new("Ghost grey")
  898. Part39.Rotation = Vector3.new(90, 70, -90)
  899. Part39.CanCollide = false
  900. Part39.Size = Vector3.new(0.181390986, 0.663772106, 0.0585457757)
  901. Part39.CFrame = CFrame.new(-39.2140083, 2.33511019, -69.49897, 0, 0.342020214, 0.939692616, 0, 0.939692557, -0.342020243, -1, 0, 0)
  902. Part39.BottomSurface = Enum.SurfaceType.Smooth
  903. Part39.TopSurface = Enum.SurfaceType.Smooth
  904. Part39.Color = Color3.new(0.792157, 0.796079, 0.819608)
  905. Part39.Position = Vector3.new(-39.2140083, 2.33511019, -69.49897)
  906. Part39.Orientation = Vector3.new(20, 90, 0)
  907. Part39.Color = Color3.new(0.792157, 0.796079, 0.819608)
  908. BlockMesh40.Parent = Part39
  909. BlockMesh40.Scale = Vector3.new(1, 1, 0.987364352)
  910. BlockMesh40.Scale = Vector3.new(1, 1, 0.987364352)
  911. Part41.Parent = Model0
  912. Part41.Material = Enum.Material.Metal
  913. Part41.BrickColor = BrickColor.new("Oyster")
  914. Part41.Rotation = Vector3.new(90, 75, -90)
  915. Part41.CanCollide = false
  916. Part41.Shape = Enum.PartType.Cylinder
  917. Part41.Size = Vector3.new(0.207303926, 0.173417926, 0.370755196)
  918. Part41.CFrame = CFrame.new(-39.2180481, 1.99095297, -69.499939, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  919. Part41.BottomSurface = Enum.SurfaceType.Smooth
  920. Part41.TopSurface = Enum.SurfaceType.Smooth
  921. Part41.Color = Color3.new(0.690196, 0.694118, 0.713726)
  922. Part41.Position = Vector3.new(-39.2180481, 1.99095297, -69.499939)
  923. Part41.Orientation = Vector3.new(15, 90, 0)
  924. Part41.Color = Color3.new(0.690196, 0.694118, 0.713726)
  925. Part42.Parent = Model0
  926. Part42.Material = Enum.Material.Metal
  927. Part42.BrickColor = BrickColor.new("Oyster")
  928. Part42.Rotation = Vector3.new(90, 75, -90)
  929. Part42.CanCollide = false
  930. Part42.Size = Vector3.new(0.213324994, 0.68305099, 0.338448107)
  931. Part42.CFrame = CFrame.new(-39.0570145, 2.2780571, -69.499939, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  932. Part42.BottomSurface = Enum.SurfaceType.Smooth
  933. Part42.TopSurface = Enum.SurfaceType.Smooth
  934. Part42.Color = Color3.new(0.690196, 0.694118, 0.713726)
  935. Part42.Position = Vector3.new(-39.0570145, 2.2780571, -69.499939)
  936. Part42.Orientation = Vector3.new(15, 90, 0)
  937. Part42.Color = Color3.new(0.690196, 0.694118, 0.713726)
  938. Part43.Parent = Model0
  939. Part43.Material = Enum.Material.Neon
  940. Part43.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  941. Part43.Rotation = Vector3.new(-180, 0, -175)
  942. Part43.CanCollide = false
  943. Part43.Shape = Enum.PartType.Cylinder
  944. Part43.Size = Vector3.new(0.198313519, 0.118225448, 0.354675889)
  945. Part43.CFrame = CFrame.new(-38.5609283, 1.89703143, -69.2337952, -0.996194661, 0.087155968, 0, 0.087155968, 0.996194661, 0, 0, 0, -1)
  946. Part43.BottomSurface = Enum.SurfaceType.Smooth
  947. Part43.TopSurface = Enum.SurfaceType.Smooth
  948. Part43.Color = Color3.new(0.972549, 1, 0.376471)
  949. Part43.Position = Vector3.new(-38.5609283, 1.89703143, -69.2337952)
  950. Part43.Orientation = Vector3.new(0, 180, 5)
  951. Part43.Color = Color3.new(0.972549, 1, 0.376471)
  952. Part44.Parent = Model0
  953. Part44.Material = Enum.Material.Metal
  954. Part44.BrickColor = BrickColor.new("Oyster")
  955. Part44.Rotation = Vector3.new(90, 85, -90)
  956. Part44.CanCollide = false
  957. Part44.Size = Vector3.new(0.198313519, 0.165896922, 0.354675889)
  958. Part44.CFrame = CFrame.new(-38.6454887, 1.9129529, -69.2337875, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0)
  959. Part44.BottomSurface = Enum.SurfaceType.Smooth
  960. Part44.TopSurface = Enum.SurfaceType.Smooth
  961. Part44.Color = Color3.new(0.690196, 0.694118, 0.713726)
  962. Part44.Position = Vector3.new(-38.6454887, 1.9129529, -69.2337875)
  963. Part44.Orientation = Vector3.new(5, 90, 0)
  964. Part44.Color = Color3.new(0.690196, 0.694118, 0.713726)
  965. Part45.Parent = Model0
  966. Part45.Material = Enum.Material.Metal
  967. Part45.BrickColor = BrickColor.new("Oyster")
  968. Part45.Rotation = Vector3.new(90, 75, -90)
  969. Part45.CanCollide = false
  970. Part45.Size = Vector3.new(0.198313519, 0.165896922, 0.354675889)
  971. Part45.CFrame = CFrame.new(-39.0128593, 1.97215939, -69.2337875, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  972. Part45.BottomSurface = Enum.SurfaceType.Smooth
  973. Part45.TopSurface = Enum.SurfaceType.Smooth
  974. Part45.Color = Color3.new(0.690196, 0.694118, 0.713726)
  975. Part45.Position = Vector3.new(-39.0128593, 1.97215939, -69.2337875)
  976. Part45.Orientation = Vector3.new(15, 90, 0)
  977. Part45.Color = Color3.new(0.690196, 0.694118, 0.713726)
  978. Part46.Parent = Model0
  979. Part46.Material = Enum.Material.Metal
  980. Part46.BrickColor = BrickColor.new("Oyster")
  981. Part46.Rotation = Vector3.new(90, 85, -90)
  982. Part46.CanCollide = false
  983. Part46.Shape = Enum.PartType.Cylinder
  984. Part46.Size = Vector3.new(0.198313519, 0.165896922, 0.354675889)
  985. Part46.CFrame = CFrame.new(-38.8434486, 1.92645657, -69.2337875, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0)
  986. Part46.BottomSurface = Enum.SurfaceType.Smooth
  987. Part46.TopSurface = Enum.SurfaceType.Smooth
  988. Part46.Color = Color3.new(0.690196, 0.694118, 0.713726)
  989. Part46.Position = Vector3.new(-38.8434486, 1.92645657, -69.2337875)
  990. Part46.Orientation = Vector3.new(5, 90, 0)
  991. Part46.Color = Color3.new(0.690196, 0.694118, 0.713726)
  992. Part47.Parent = Model0
  993. Part47.Material = Enum.Material.Metal
  994. Part47.BrickColor = BrickColor.new("Oyster")
  995. Part47.Rotation = Vector3.new(90, 75, -90)
  996. Part47.CanCollide = false
  997. Part47.Shape = Enum.PartType.Cylinder
  998. Part47.Size = Vector3.new(0.198313519, 0.165896922, 0.354675889)
  999. Part47.CFrame = CFrame.new(-39.2054558, 2.01983094, -69.2337875, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  1000. Part47.BottomSurface = Enum.SurfaceType.Smooth
  1001. Part47.TopSurface = Enum.SurfaceType.Smooth
  1002. Part47.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1003. Part47.Position = Vector3.new(-39.2054558, 2.01983094, -69.2337875)
  1004. Part47.Orientation = Vector3.new(15, 90, 0)
  1005. Part47.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1006. Part48.Parent = Model0
  1007. Part48.Material = Enum.Material.Metal
  1008. Part48.BrickColor = BrickColor.new("Oyster")
  1009. Part48.Rotation = Vector3.new(90, 75, -90)
  1010. Part48.CanCollide = false
  1011. Part48.Size = Vector3.new(0.204073399, 0.65342778, 0.323770165)
  1012. Part48.CFrame = CFrame.new(-39.0514145, 2.29448462, -69.2337875, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  1013. Part48.BottomSurface = Enum.SurfaceType.Smooth
  1014. Part48.TopSurface = Enum.SurfaceType.Smooth
  1015. Part48.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1016. Part48.Position = Vector3.new(-39.0514145, 2.29448462, -69.2337875)
  1017. Part48.Orientation = Vector3.new(15, 90, 0)
  1018. Part48.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1019. Part49.Parent = Model0
  1020. Part49.Material = Enum.Material.Metal
  1021. Part49.BrickColor = BrickColor.new("Ghost grey")
  1022. Part49.Rotation = Vector3.new(90, 70, -90)
  1023. Part49.CanCollide = false
  1024. Part49.Size = Vector3.new(0.17352429, 0.63498503, 0.0585457757)
  1025. Part49.CFrame = CFrame.new(-39.2015839, 2.3490634, -69.2329102, 0, 0.342020214, 0.939692616, 0, 0.939692557, -0.342020243, -1, 0, 0)
  1026. Part49.BottomSurface = Enum.SurfaceType.Smooth
  1027. Part49.TopSurface = Enum.SurfaceType.Smooth
  1028. Part49.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1029. Part49.Position = Vector3.new(-39.2015839, 2.3490634, -69.2329102)
  1030. Part49.Orientation = Vector3.new(20, 90, 0)
  1031. Part49.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1032. BlockMesh50.Parent = Part49
  1033. BlockMesh50.Scale = Vector3.new(1, 1, 0.94454354)
  1034. BlockMesh50.Scale = Vector3.new(1, 1, 0.94454354)
  1035. Part51.Parent = Model0
  1036. Part51.Material = Enum.Material.Metal
  1037. Part51.BrickColor = BrickColor.new("Pearl")
  1038. Part51.Rotation = Vector3.new(90, 65, -90)
  1039. Part51.CanCollide = false
  1040. Part51.Size = Vector3.new(0.131573364, 0.535828233, 0.0724607483)
  1041. Part51.CFrame = CFrame.new(-39.1883965, 2.39762139, -69.2290268, 0, 0.422617942, 0.906307876, 0, 0.906307876, -0.422617942, -1, 0, 0)
  1042. Part51.BottomSurface = Enum.SurfaceType.Smooth
  1043. Part51.TopSurface = Enum.SurfaceType.Smooth
  1044. Part51.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1045. Part51.Position = Vector3.new(-39.1883965, 2.39762139, -69.2290268)
  1046. Part51.Orientation = Vector3.new(25, 90, 0)
  1047. Part51.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1048. Part52.Parent = Model0
  1049. Part52.Material = Enum.Material.Metal
  1050. Part52.BrickColor = BrickColor.new("Pearl")
  1051. Part52.Rotation = Vector3.new(0, 0, -15)
  1052. Part52.CanCollide = false
  1053. Part52.Shape = Enum.PartType.Cylinder
  1054. Part52.Size = Vector3.new(0.0585458241, 0.75540781, 1.02462256)
  1055. Part52.CFrame = CFrame.new(-38.920742, 4.15797377, -69.3819656, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872, 0, 0, 0, 1)
  1056. Part52.BottomSurface = Enum.SurfaceType.Smooth
  1057. Part52.TopSurface = Enum.SurfaceType.Smooth
  1058. Part52.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1059. Part52.Position = Vector3.new(-38.920742, 4.15797377, -69.3819656)
  1060. Part52.Orientation = Vector3.new(0, 0, -15)
  1061. Part52.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1062. SpecialMesh53.Parent = Part52
  1063. SpecialMesh53.Scale = Vector3.new(0.720637798, 1, 1)
  1064. SpecialMesh53.MeshType = Enum.MeshType.Cylinder
  1065. SpecialMesh53.Scale = Vector3.new(0.720637798, 1, 1)
  1066. Part54.Parent = Model0
  1067. Part54.Material = Enum.Material.Metal
  1068. Part54.BrickColor = BrickColor.new("Pearl")
  1069. Part54.Rotation = Vector3.new(0, 0, -25)
  1070. Part54.CanCollide = false
  1071. Part54.Shape = Enum.PartType.Cylinder
  1072. Part54.Size = Vector3.new(0.0585458241, 1.00855112, 1.02462256)
  1073. Part54.CFrame = CFrame.new(-38.4671745, 4.27564144, -69.3819656, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1074. Part54.BottomSurface = Enum.SurfaceType.Smooth
  1075. Part54.TopSurface = Enum.SurfaceType.Smooth
  1076. Part54.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1077. Part54.Position = Vector3.new(-38.4671745, 4.27564144, -69.3819656)
  1078. Part54.Orientation = Vector3.new(0, 0, -25)
  1079. Part54.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1080. SpecialMesh55.Parent = Part54
  1081. SpecialMesh55.Scale = Vector3.new(0.720637798, 1, 1)
  1082. SpecialMesh55.MeshType = Enum.MeshType.Cylinder
  1083. SpecialMesh55.Scale = Vector3.new(0.720637798, 1, 1)
  1084. Part56.Parent = Model0
  1085. Part56.Material = Enum.Material.Metal
  1086. Part56.BrickColor = BrickColor.new("Fossil")
  1087. Part56.Rotation = Vector3.new(0, 0, -25)
  1088. Part56.CanCollide = false
  1089. Part56.Shape = Enum.PartType.Cylinder
  1090. Part56.Size = Vector3.new(0.16273427, 0.883988261, 1.02462256)
  1091. Part56.CFrame = CFrame.new(-38.4261284, 4.18777847, -69.3819656, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1092. Part56.BottomSurface = Enum.SurfaceType.Smooth
  1093. Part56.TopSurface = Enum.SurfaceType.Smooth
  1094. Part56.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1095. Part56.Position = Vector3.new(-38.4261284, 4.18777847, -69.3819656)
  1096. Part56.Orientation = Vector3.new(0, 0, -25)
  1097. Part56.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1098. Part57.Parent = Model0
  1099. Part57.Material = Enum.Material.Metal
  1100. Part57.BrickColor = BrickColor.new("Oyster")
  1101. Part57.Rotation = Vector3.new(90, 85, -90)
  1102. Part57.CanCollide = false
  1103. Part57.Shape = Enum.PartType.Cylinder
  1104. Part57.Size = Vector3.new(0.195947528, 0.163917795, 0.350444436)
  1105. Part57.CFrame = CFrame.new(-38.8444557, 1.93517423, -69.7622452, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0)
  1106. Part57.BottomSurface = Enum.SurfaceType.Smooth
  1107. Part57.TopSurface = Enum.SurfaceType.Smooth
  1108. Part57.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1109. Part57.Position = Vector3.new(-38.8444557, 1.93517423, -69.7622452)
  1110. Part57.Orientation = Vector3.new(5, 90, 0)
  1111. Part57.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1112. Part58.Parent = Model0
  1113. Part58.Material = Enum.Material.Metal
  1114. Part58.BrickColor = BrickColor.new("Oyster")
  1115. Part58.Rotation = Vector3.new(90, 85, -90)
  1116. Part58.CanCollide = false
  1117. Part58.Size = Vector3.new(0.195947528, 0.163917795, 0.350444436)
  1118. Part58.CFrame = CFrame.new(-38.6488571, 1.92183149, -69.7622452, 0, 0.087155968, 0.996194661, 0, 0.996194661, -0.087155968, -1, 0, 0)
  1119. Part58.BottomSurface = Enum.SurfaceType.Smooth
  1120. Part58.TopSurface = Enum.SurfaceType.Smooth
  1121. Part58.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1122. Part58.Position = Vector3.new(-38.6488571, 1.92183149, -69.7622452)
  1123. Part58.Orientation = Vector3.new(5, 90, 0)
  1124. Part58.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1125. Part59.Parent = Model0
  1126. Part59.Material = Enum.Material.Neon
  1127. Part59.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  1128. Part59.Rotation = Vector3.new(-180, 0, -175)
  1129. Part59.CanCollide = false
  1130. Part59.Shape = Enum.PartType.Cylinder
  1131. Part59.Size = Vector3.new(0.195947528, 0.116814971, 0.350444436)
  1132. Part59.CFrame = CFrame.new(-38.5652924, 1.90609682, -69.7622528, -0.996194661, 0.087155968, 0, 0.087155968, 0.996194661, 0, 0, 0, -1)
  1133. Part59.BottomSurface = Enum.SurfaceType.Smooth
  1134. Part59.TopSurface = Enum.SurfaceType.Smooth
  1135. Part59.Color = Color3.new(0.972549, 1, 0.376471)
  1136. Part59.Position = Vector3.new(-38.5652924, 1.90609682, -69.7622528)
  1137. Part59.Orientation = Vector3.new(0, 180, 5)
  1138. Part59.Color = Color3.new(0.972549, 1, 0.376471)
  1139. Part60.Parent = Model0
  1140. Part60.Material = Enum.Material.Metal
  1141. Part60.BrickColor = BrickColor.new("Fossil")
  1142. Part60.Rotation = Vector3.new(0, 0, -25)
  1143. Part60.CanCollide = false
  1144. Part60.Shape = Enum.PartType.Cylinder
  1145. Part60.Size = Vector3.new(0.257160395, 0.769471407, 1.02462256)
  1146. Part60.CFrame = CFrame.new(-38.4038887, 4.11423254, -69.3819656, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1147. Part60.BottomSurface = Enum.SurfaceType.Smooth
  1148. Part60.TopSurface = Enum.SurfaceType.Smooth
  1149. Part60.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1150. Part60.Position = Vector3.new(-38.4038887, 4.11423254, -69.3819656)
  1151. Part60.Orientation = Vector3.new(0, 0, -25)
  1152. Part60.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1153. Part61.Parent = Model0
  1154. Part61.Material = Enum.Material.Metal
  1155. Part61.BrickColor = BrickColor.new("Fossil")
  1156. Part61.Rotation = Vector3.new(0, 0, -25)
  1157. Part61.CanCollide = false
  1158. Part61.Shape = Enum.PartType.Cylinder
  1159. Part61.Size = Vector3.new(0.337522894, 0.65495497, 1.02462256)
  1160. Part61.CFrame = CFrame.new(-38.3971291, 4.04790592, -69.3819656, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1161. Part61.BottomSurface = Enum.SurfaceType.Smooth
  1162. Part61.TopSurface = Enum.SurfaceType.Smooth
  1163. Part61.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1164. Part61.Position = Vector3.new(-38.3971291, 4.04790592, -69.3819656)
  1165. Part61.Orientation = Vector3.new(0, 0, -25)
  1166. Part61.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1167. Part62.Parent = Model0
  1168. Part62.Material = Enum.Material.Neon
  1169. Part62.BrickColor = BrickColor.new("New Yeller")
  1170. Part62.CanCollide = false
  1171. Part62.Shape = Enum.PartType.Cylinder
  1172. Part62.Size = Vector3.new(0.727281272, 0.526374698, 1.02462256)
  1173. Part62.CFrame = CFrame.new(-38.7048683, 4.01461172, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1174. Part62.BottomSurface = Enum.SurfaceType.Smooth
  1175. Part62.TopSurface = Enum.SurfaceType.Smooth
  1176. Part62.Color = Color3.new(1, 1, 0)
  1177. Part62.Position = Vector3.new(-38.7048683, 4.01461172, -69.3819656)
  1178. Part62.Color = Color3.new(1, 1, 0)
  1179. Part63.Parent = Model0
  1180. Part63.Material = Enum.Material.Metal
  1181. Part63.BrickColor = BrickColor.new("Fossil")
  1182. Part63.Rotation = Vector3.new(0, 0, -25)
  1183. Part63.CanCollide = false
  1184. Part63.Shape = Enum.PartType.Cylinder
  1185. Part63.Size = Vector3.new(0.458066761, 0.604727924, 1.02462256)
  1186. Part63.CFrame = CFrame.new(-38.3549309, 4.00052214, -69.3819656, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1187. Part63.BottomSurface = Enum.SurfaceType.Smooth
  1188. Part63.TopSurface = Enum.SurfaceType.Smooth
  1189. Part63.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1190. Part63.Position = Vector3.new(-38.3549309, 4.00052214, -69.3819656)
  1191. Part63.Orientation = Vector3.new(0, 0, -25)
  1192. Part63.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1193. Part64.Parent = Model0
  1194. Part64.Material = Enum.Material.Metal
  1195. Part64.BrickColor = BrickColor.new("Oyster")
  1196. Part64.Rotation = Vector3.new(90, 75, -90)
  1197. Part64.CanCollide = false
  1198. Part64.Size = Vector3.new(0.195947528, 0.163917795, 0.350444436)
  1199. Part64.CFrame = CFrame.new(-39.0118408, 1.98032784, -69.7622452, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  1200. Part64.BottomSurface = Enum.SurfaceType.Smooth
  1201. Part64.TopSurface = Enum.SurfaceType.Smooth
  1202. Part64.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1203. Part64.Position = Vector3.new(-39.0118408, 1.98032784, -69.7622452)
  1204. Part64.Orientation = Vector3.new(15, 90, 0)
  1205. Part64.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1206. Part65.Parent = Model0
  1207. Part65.Material = Enum.Material.Metal
  1208. Part65.BrickColor = BrickColor.new("Oyster")
  1209. Part65.Rotation = Vector3.new(90, 75, -90)
  1210. Part65.CanCollide = false
  1211. Part65.Shape = Enum.PartType.Cylinder
  1212. Part65.Size = Vector3.new(0.195947528, 0.163917795, 0.350444436)
  1213. Part65.CFrame = CFrame.new(-39.2021484, 2.02743149, -69.7622452, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  1214. Part65.BottomSurface = Enum.SurfaceType.Smooth
  1215. Part65.TopSurface = Enum.SurfaceType.Smooth
  1216. Part65.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1217. Part65.Position = Vector3.new(-39.2021484, 2.02743149, -69.7622452)
  1218. Part65.Orientation = Vector3.new(15, 90, 0)
  1219. Part65.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1220. Part66.Parent = Model0
  1221. Part66.Material = Enum.Material.Metal
  1222. Part66.BrickColor = BrickColor.new("Ghost grey")
  1223. Part66.Rotation = Vector3.new(90, 70, -90)
  1224. Part66.CanCollide = false
  1225. Part66.Size = Vector3.new(0.171454117, 0.627409458, 0.0585457757)
  1226. Part66.CFrame = CFrame.new(-39.1983299, 2.352736, -69.7612534, 0, 0.342020214, 0.939692616, 0, 0.939692557, -0.342020243, -1, 0, 0)
  1227. Part66.BottomSurface = Enum.SurfaceType.Smooth
  1228. Part66.TopSurface = Enum.SurfaceType.Smooth
  1229. Part66.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1230. Part66.Position = Vector3.new(-39.1983299, 2.352736, -69.7612534)
  1231. Part66.Orientation = Vector3.new(20, 90, 0)
  1232. Part66.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1233. BlockMesh67.Parent = Part66
  1234. BlockMesh67.Scale = Vector3.new(1, 1, 0.933274686)
  1235. BlockMesh67.Scale = Vector3.new(1, 1, 0.933274686)
  1236. Part68.Parent = Model0
  1237. Part68.Material = Enum.Material.Metal
  1238. Part68.BrickColor = BrickColor.new("Pearl")
  1239. Part68.Rotation = Vector3.new(90, 65, -90)
  1240. Part68.CanCollide = false
  1241. Part68.Size = Vector3.new(0.130003676, 0.529435694, 0.0715962872)
  1242. Part68.CFrame = CFrame.new(-39.1852798, 2.40071321, -69.7575455, 0, 0.422617942, 0.906307876, 0, 0.906307876, -0.422617942, -1, 0, 0)
  1243. Part68.BottomSurface = Enum.SurfaceType.Smooth
  1244. Part68.TopSurface = Enum.SurfaceType.Smooth
  1245. Part68.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1246. Part68.Position = Vector3.new(-39.1852798, 2.40071321, -69.7575455)
  1247. Part68.Orientation = Vector3.new(25, 90, 0)
  1248. Part68.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1249. Part69.Parent = Model0
  1250. Part69.Material = Enum.Material.Metal
  1251. Part69.BrickColor = BrickColor.new("Oyster")
  1252. Part69.Rotation = Vector3.new(90, 75, -90)
  1253. Part69.CanCollide = false
  1254. Part69.Size = Vector3.new(0.201638713, 0.64563185, 0.319907278)
  1255. Part69.CFrame = CFrame.new(-39.0499306, 2.29880953, -69.7622452, 0, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, -1, 0, 0)
  1256. Part69.BottomSurface = Enum.SurfaceType.Smooth
  1257. Part69.TopSurface = Enum.SurfaceType.Smooth
  1258. Part69.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1259. Part69.Position = Vector3.new(-39.0499306, 2.29880953, -69.7622452)
  1260. Part69.Orientation = Vector3.new(15, 90, 0)
  1261. Part69.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1262. Part70.Name = "Base"
  1263. Part70.Parent = Model0
  1264. Part70.Material = Enum.Material.Metal
  1265. Part70.BrickColor = BrickColor.new("Ghost grey")
  1266. Part70.CanCollide = false
  1267. Part70.Size = Vector3.new(1.02462339, 1.3802278, 1.02462256)
  1268. Part70.CFrame = CFrame.new(-38.6405487, 3.3423183, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1269. Part70.BottomSurface = Enum.SurfaceType.Smooth
  1270. Part70.TopSurface = Enum.SurfaceType.Smooth
  1271. Part70.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1272. Part70.Position = Vector3.new(-38.6405487, 3.3423183, -69.3819656)
  1273. Part70.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1274. Weld71.Parent = Part70
  1275. Weld71.C0 = CFrame.new(-0.541412354, -1.03010416, 0.372314453, -0, 0.342019975, 0.939692736, -0.087155968, 0.936116874, -0.340718478, -0.996194661, -0.0818998367, 0.0298090819)
  1276. Weld71.Part0 = Part70
  1277. Weld71.Part1 = Part22
  1278. Weld72.Parent = Part70
  1279. Weld72.C0 = CFrame.new(-0.416465759, -1.0642612, -0.117973328, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1280. Weld72.Part0 = Part70
  1281. Weld72.Part1 = Part42
  1282. Weld73.Parent = Part70
  1283. Weld73.C0 = CFrame.new(0.00784301758, -1.46309114, -0.117973328, -0, 0.087155968, 0.996194661, -0, 0.996194661, -0.087155968, -1, 0, 0)
  1284. Weld73.Part0 = Part70
  1285. Weld73.Part1 = Part35
  1286. Weld74.Parent = Part70
  1287. Weld74.C0 = CFrame.new(-0.199100494, -1.44897389, -0.117973328, -0, 0.087155968, 0.996194661, -0, 0.996194661, -0.087155968, -1, 0, 0)
  1288. Weld74.Part0 = Part70
  1289. Weld74.Part1 = Part37
  1290. Weld75.Parent = Part70
  1291. Weld75.C0 = CFrame.new(-0.559658051, -0.956449032, -0.113006592, -0, 0.422617942, 0.906307876, -0, 0.906307876, -0.422617942, -1, 0, 0)
  1292. Weld75.Part0 = Part70
  1293. Weld75.Part1 = Part38
  1294. Weld76.Parent = Part70
  1295. Weld76.C0 = CFrame.new(0.133113861, -1.59601438, 0.0575866699, 0.0868239924, -0.00759603037, 0.99619478, 0.0871559903, 0.99619472, -1.0660527e-07, -0.992403865, 0.0868243501, 0.0871556476)
  1296. Weld76.Part0 = Part70
  1297. Weld76.Part1 = Part31
  1298. Weld77.Parent = Part70
  1299. Weld77.C0 = CFrame.new(-0.57749939, -1.35136533, -0.117973328, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1300. Weld77.Part0 = Part70
  1301. Weld77.Part1 = Part41
  1302. Weld78.Parent = Part70
  1303. Weld78.C0 = CFrame.new(0.0796203613, -1.44528687, 0.148170471, -0.996194661, 0.087155968, 0, 0.087155968, 0.996194661, 0, 0, 0, -1)
  1304. Weld78.Part0 = Part70
  1305. Weld78.Part1 = Part43
  1306. Weld79.Parent = Part70
  1307. Weld79.C0 = CFrame.new(0.140651703, -1.57971299, -0.0286407471, 0.996194661, -0.00759613281, -0.0868243203, 0, 0.99619478, -0.0871556103, 0.087155968, 0.0868239626, 0.992403865)
  1308. Weld79.Part0 = Part70
  1309. Weld79.Part1 = Part32
  1310. Weld80.Parent = Part70
  1311. Weld80.C0 = CFrame.new(0.17685318, -1.18907881, -0.442619324, 0.996194661, -0.022557525, -0.0841862261, 0, 0.96592623, -0.258817881, 0.087155968, 0.257833004, 0.962250531)
  1312. Weld80.Part0 = Part70
  1313. Weld80.Part1 = Part29
  1314. Weld81.Parent = Part70
  1315. Weld81.C0 = CFrame.new(-0.529193878, -0.984883308, 0.371925354, -0, 0.422618091, 0.906307936, -0.087155968, 0.902859211, -0.421009868, -0.996194661, -0.078990154, 0.0368336849)
  1316. Weld81.Part0 = Part70
  1317. Weld81.Part1 = Part24
  1318. Weld82.Parent = Part70
  1319. Weld82.C0 = CFrame.new(0.190620422, -1.47028613, -0.599754333, 0.996194661, -0.022557525, -0.0841862261, 0, 0.96592623, -0.258817881, 0.087155968, 0.257833004, 0.962250531)
  1320. Weld82.Part0 = Part70
  1321. Weld82.Part1 = Part25
  1322. Weld83.Parent = Part70
  1323. Weld83.C0 = CFrame.new(0.158302307, -1.56588876, -0.230560303, 0.996194661, -0.00759613281, -0.0868243203, 0, 0.99619478, -0.0871556103, 0.087155968, 0.0868239626, 0.992403865)
  1324. Weld83.Part0 = Part70
  1325. Weld83.Part1 = Part30
  1326. Weld84.Parent = Part70
  1327. Weld84.C0 = CFrame.new(0.18422699, -1.0834825, -0.582809448, 0.996194661, -0.0368336178, -0.0789901689, 0, 0.906308234, -0.422617316, 0.087155968, 0.421009123, 0.902859449)
  1328. Weld84.Part0 = Part70
  1329. Weld84.Part1 = Part33
  1330. Weld85.Parent = Part70
  1331. Weld85.C0 = CFrame.new(0.173427582, -1.51909697, -0.403396606, 0.996194661, -0.022557525, -0.0841862261, 0, 0.96592623, -0.258817881, 0.087155968, 0.257833004, 0.962250531)
  1332. Weld85.Part0 = Part70
  1333. Weld85.Part1 = Part28
  1334. Weld86.Parent = Part70
  1335. Weld86.C0 = CFrame.new(0.0962677002, -1.47973537, -0.117980957, -0.996194661, 0.087155968, 0, 0.087155968, 0.996194661, 0, 0, 0, -1)
  1336. Weld86.Part0 = Part70
  1337. Weld86.Part1 = Part34
  1338. Weld87.Parent = Part70
  1339. Weld87.C0 = CFrame.new(-0.376159668, -1.4011972, -0.117973328, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1340. Weld87.Part0 = Part70
  1341. Weld87.Part1 = Part36
  1342. Weld88.Parent = Part70
  1343. Weld88.C0 = CFrame.new(0.189304352, -1.13319993, -0.595878601, 0.996194661, -0.0298092179, -0.0818997845, 0, 0.93969214, -0.342021465, 0.087155968, 0.340719998, 0.936116338)
  1344. Weld88.Part0 = Part70
  1345. Weld88.Part1 = Part26
  1346. Weld89.Parent = Part70
  1347. Weld89.C0 = CFrame.new(-0.573459625, -1.00720811, -0.117004395, -0, 0.342020214, 0.939692616, -0, 0.939692557, -0.342020243, -1, 0, 0)
  1348. Weld89.Part0 = Part70
  1349. Weld89.Part1 = Part39
  1350. Weld90.Parent = Part70
  1351. Weld90.C0 = CFrame.new(-0.280193329, 0.81565547, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872, 0, 0, 0, 1)
  1352. Weld90.Part0 = Part70
  1353. Weld90.Part1 = Part52
  1354. Weld91.Parent = Part70
  1355. Weld91.C0 = CFrame.new(-0.409381866, -1.04350877, -0.380279541, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1356. Weld91.Part0 = Part70
  1357. Weld91.Part1 = Part69
  1358. Weld92.Parent = Part70
  1359. Weld92.C0 = CFrame.new(0.0431632996, 0.768726587, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1360. Weld92.Part0 = Part70
  1361. Weld92.Part1 = Part140
  1362. Weld93.Parent = Part70
  1363. Weld93.C0 = CFrame.new(0.285617828, 0.65820384, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1364. Weld93.Part0 = Part70
  1365. Weld93.Part1 = Part63
  1366. Weld94.Parent = Part70
  1367. Weld94.C0 = CFrame.new(-0.561035156, -0.9932549, 0.149055481, -0, 0.342020214, 0.939692616, -0, 0.939692557, -0.342020243, -1, 0, 0)
  1368. Weld94.Part0 = Part70
  1369. Weld94.Part1 = Part49
  1370. Weld95.Parent = Part70
  1371. Weld95.C0 = CFrame.new(0.173374176, 0.933323145, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1372. Weld95.Part0 = Part70
  1373. Weld95.Part1 = Part54
  1374. Weld96.Parent = Part70
  1375. Weld96.C0 = CFrame.new(-0.00706100464, 0.713476896, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1376. Weld96.Part0 = Part70
  1377. Weld96.Part1 = Part142
  1378. Weld97.Parent = Part70
  1379. Weld97.C0 = CFrame.new(-0.547847748, -0.944696903, 0.152938843, -0, 0.422617942, 0.906307876, -0, 0.906307876, -0.422617942, -1, 0, 0)
  1380. Weld97.Part0 = Part70
  1381. Weld97.Part1 = Part51
  1382. Weld98.Parent = Part70
  1383. Weld98.C0 = CFrame.new(-0.481147766, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1384. Weld98.Part0 = Part70
  1385. Weld98.Part1 = Part143
  1386. Weld99.Parent = Part70
  1387. Weld99.C0 = CFrame.new(0.186824799, 0.81694293, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1388. Weld99.Part0 = Part70
  1389. Weld99.Part1 = Part137
  1390. Weld100.Parent = Part70
  1391. Weld100.C0 = CFrame.new(-0.203907013, -1.40714407, -0.380279541, -0, 0.087155968, 0.996194661, -0, 0.996194661, -0.087155968, -1, 0, 0)
  1392. Weld100.Part0 = Part70
  1393. Weld100.Part1 = Part57
  1394. Weld101.Parent = Part70
  1395. Weld101.C0 = CFrame.new(-0.561599731, -1.31488681, -0.380279541, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1396. Weld101.Part0 = Part70
  1397. Weld101.Part1 = Part65
  1398. Weld102.Parent = Part70
  1399. Weld102.C0 = CFrame.new(-0.447666168, 0.703988791, 0, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0, 0, 0, 1)
  1400. Weld102.Part0 = Part70
  1401. Weld102.Part1 = Part138
  1402. Weld103.Parent = Part70
  1403. Weld103.C0 = CFrame.new(-0.557781219, -0.9895823, -0.37928772, -0, 0.342020214, 0.939692616, -0, 0.939692557, -0.342020243, -1, 0, 0)
  1404. Weld103.Part0 = Part70
  1405. Weld103.Part1 = Part66
  1406. Weld104.Parent = Part70
  1407. Weld104.C0 = CFrame.new(-0.00830841064, -1.42048681, -0.380279541, -0, 0.087155968, 0.996194661, -0, 0.996194661, -0.087155968, -1, 0, 0)
  1408. Weld104.Part0 = Part70
  1409. Weld104.Part1 = Part58
  1410. Weld105.Parent = Part70
  1411. Weld105.C0 = CFrame.new(-0.371292114, -1.36199045, -0.380279541, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1412. Weld105.Part0 = Part70
  1413. Weld105.Part1 = Part64
  1414. Weld106.Parent = Part70
  1415. Weld106.C0 = CFrame.new(-0.410865784, -1.04783368, 0.148178101, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1416. Weld106.Part0 = Part70
  1417. Weld106.Part1 = Part48
  1418. Weld107.Parent = Part70
  1419. Weld107.C0 = CFrame.new(0, -1.01357007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1420. Weld107.Part0 = Part70
  1421. Weld107.Part1 = Part136
  1422. Weld108.Parent = Part70
  1423. Weld108.C0 = CFrame.new(-0.54473114, -0.941605091, -0.375579834, -0, 0.422617942, 0.906307876, -0, 0.906307876, -0.422617942, -1, 0, 0)
  1424. Weld108.Part0 = Part70
  1425. Weld108.Part1 = Part68
  1426. Weld109.Parent = Part70
  1427. Weld109.C0 = CFrame.new(-0.470115662, 0.274234533, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1428. Weld109.Part0 = Part70
  1429. Weld109.Part1 = Part141
  1430. Weld110.Parent = Part70
  1431. Weld110.C0 = CFrame.new(-0.564907074, -1.32248735, 0.148178101, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1432. Weld110.Part0 = Part70
  1433. Weld110.Part1 = Part47
  1434. Weld111.Parent = Part70
  1435. Weld111.C0 = CFrame.new(-0.00494003296, -1.4293654, 0.148178101, -0, 0.087155968, 0.996194661, -0, 0.996194661, -0.087155968, -1, 0, 0)
  1436. Weld111.Part0 = Part70
  1437. Weld111.Part1 = Part44
  1438. Weld112.Parent = Part70
  1439. Weld112.C0 = CFrame.new(0.236660004, 0.771914244, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1440. Weld112.Part0 = Part70
  1441. Weld112.Part1 = Part60
  1442. Weld113.Parent = Part70
  1443. Weld113.C0 = CFrame.new(0.214420319, 0.845460176, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1444. Weld113.Part0 = Part70
  1445. Weld113.Part1 = Part56
  1446. Weld114.Parent = Part70
  1447. Weld114.C0 = CFrame.new(0.0752563477, -1.43622148, -0.38028717, -0.996194661, 0.087155968, 0, 0.087155968, 0.996194661, 0, 0, 0, -1)
  1448. Weld114.Part0 = Part70
  1449. Weld114.Part1 = Part59
  1450. Weld115.Parent = Part70
  1451. Weld115.C0 = CFrame.new(-0.202899933, -1.41586173, 0.148178101, -0, 0.087155968, 0.996194661, -0, 0.996194661, -0.087155968, -1, 0, 0)
  1452. Weld115.Part0 = Part70
  1453. Weld115.Part1 = Part46
  1454. Weld116.Parent = Part70
  1455. Weld116.C0 = CFrame.new(0.243419647, 0.705587626, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1456. Weld116.Part0 = Part70
  1457. Weld116.Part1 = Part61
  1458. Weld117.Parent = Part70
  1459. Weld117.C0 = CFrame.new(-0.0643196106, 0.672293425, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1460. Weld117.Part0 = Part70
  1461. Weld117.Part1 = Part62
  1462. Weld118.Parent = Part70
  1463. Weld118.C0 = CFrame.new(-0.372310638, -1.37015891, 0.148178101, -0, 0.258818984, 0.965925872, -0, 0.965925872, -0.258818984, -1, 0, 0)
  1464. Weld118.Part0 = Part70
  1465. Weld118.Part1 = Part45
  1466. Weld119.Parent = Part70
  1467. Weld119.C0 = CFrame.new(-0.544998169, -1.33468294, 0.39805603, -0, 0.258819073, 0.965925813, -0.087155968, 0.962250233, -0.257834166, -0.996194661, -0.0841862038, 0.0225576237)
  1468. Weld119.Part0 = Part70
  1469. Weld119.Part1 = Part20
  1470. Weld120.Parent = Part70
  1471. Weld120.C0 = CFrame.new(0.0583114624, 0.910563707, 0, 0.906307876, 0.422617942, 0, -0.422617942, 0.906307876, 0, 0, 0, 1)
  1472. Weld120.Part0 = Part70
  1473. Weld120.Part1 = Part6
  1474. Weld121.Parent = Part70
  1475. Weld121.C0 = CFrame.new(0.0533790588, -1.44825828, 0.40802002, -0.99619478, 0.0871556178, -1.0595604e-07, 0.0868239775, 0.992403924, -0.0871556401, -0.00759599824, -0.0868239924, -0.99619478)
  1476. Weld121.Part0 = Part70
  1477. Weld121.Part1 = Part16
  1478. Weld122.Parent = Part70
  1479. Weld122.C0 = CFrame.new(-0.165119171, 0.847675562, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1)
  1480. Weld122.Part0 = Part70
  1481. Weld122.Part1 = Part1
  1482. Weld123.Parent = Part70
  1483. Weld123.C0 = CFrame.new(-0.0562324524, -0.364644527, -0.290283203, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1484. Weld123.Part0 = Part70
  1485. Weld123.Part1 = Part9
  1486. Weld124.Parent = Part70
  1487. Weld124.C0 = CFrame.new(-0.48217392, -0.230036736, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1488. Weld124.Part0 = Part70
  1489. Weld124.Part1 = Part13
  1490. Weld125.Parent = Part70
  1491. Weld125.C0 = CFrame.new(-0.025138855, -1.43353391, 0.406791687, -0, 0.0871559903, 0.99619472, -0.087155968, 0.992403865, -0.0868243352, -0.996194661, -0.0868243203, 0.00759616494)
  1492. Weld125.Part0 = Part70
  1493. Weld125.Part1 = Part17
  1494. Weld126.Parent = Part70
  1495. Weld126.C0 = CFrame.new(-0.208930969, -1.42104173, 0.405639648, -0, 0.0871559903, 0.99619472, -0.087155968, 0.992403865, -0.0868243352, -0.996194661, -0.0868243203, 0.00759616494)
  1496. Weld126.Part0 = Part70
  1497. Weld126.Part1 = Part19
  1498. Weld127.Parent = Part70
  1499. Weld127.C0 = CFrame.new(-0.064743042, 0.875050783, 0, 0.939692736, 0.342019886, 0, -0.342019916, 0.939692736, 0, 0, 0, 1)
  1500. Weld127.Part0 = Part70
  1501. Weld127.Part1 = Part4
  1502. Weld128.Parent = Part70
  1503. Weld128.C0 = CFrame.new(0.123538971, 0.804889441, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1504. Weld128.Part0 = Part70
  1505. Weld128.Part1 = Part10
  1506. Weld129.Parent = Part70
  1507. Weld129.C0 = CFrame.new(-0.0642776489, -0.364644527, -0.00500488281, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1508. Weld129.Part0 = Part70
  1509. Weld129.Part1 = Part3
  1510. Weld130.Parent = Part70
  1511. Weld130.C0 = CFrame.new(-0.369609833, 0.759382486, 0, 0.965925872, 0.258818984, 0, -0.258818984, 0.965925872, 0, 0, 0, 1)
  1512. Weld130.Part0 = Part70
  1513. Weld130.Part1 = Part14
  1514. Weld131.Parent = Part70
  1515. Weld131.C0 = CFrame.new(-0.401992798, -1.08066082, 0.375869751, -0, 0.258819073, 0.965925813, -0.087155968, 0.962250233, -0.257834166, -0.996194661, -0.0841862038, 0.0225576237)
  1516. Weld131.Part0 = Part70
  1517. Weld131.Part1 = Part21
  1518. Weld132.Parent = Part70
  1519. Weld132.C0 = CFrame.new(-0.0763168335, -0.364644527, 0.272224426, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1520. Weld132.Part0 = Part70
  1521. Weld132.Part1 = Part8
  1522. Weld133.Parent = Part70
  1523. Weld133.C0 = CFrame.new(-0.490200043, -0.0150654316, -0.208930969, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1524. Weld133.Part0 = Part70
  1525. Weld133.Part1 = Part11
  1526. Weld134.Parent = Part70
  1527. Weld134.C0 = CFrame.new(-0.490200043, -0.0150654316, 0.19896698, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1528. Weld134.Part0 = Part70
  1529. Weld134.Part1 = Part12
  1530. Weld135.Parent = Part70
  1531. Weld135.C0 = CFrame.new(-0.366199493, -1.37877274, 0.401977539, -0, 0.258819073, 0.965925813, -0.087155968, 0.962250233, -0.257834166, -0.996194661, -0.0841862038, 0.0225576237)
  1532. Weld135.Part0 = Part70
  1533. Weld135.Part1 = Part18
  1534. Part136.Parent = Model0
  1535. Part136.Material = Enum.Material.Metal
  1536. Part136.BrickColor = BrickColor.new("Fossil")
  1537. Part136.CanCollide = false
  1538. Part136.Size = Vector3.new(1.04471385, 0.66700983, 1.0447129)
  1539. Part136.CFrame = CFrame.new(-38.6405487, 2.32874823, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1540. Part136.BottomSurface = Enum.SurfaceType.Smooth
  1541. Part136.TopSurface = Enum.SurfaceType.Smooth
  1542. Part136.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1543. Part136.Position = Vector3.new(-38.6405487, 2.32874823, -69.3819656)
  1544. Part136.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1545. Part137.Parent = Model0
  1546. Part137.Material = Enum.Material.Neon
  1547. Part137.BrickColor = BrickColor.new("New Yeller")
  1548. Part137.CanCollide = false
  1549. Part137.Shape = Enum.PartType.Cylinder
  1550. Part137.Size = Vector3.new(0.225015596, 0.815679789, 1.02462256)
  1551. Part137.CFrame = CFrame.new(-38.4537239, 4.15926123, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1552. Part137.BottomSurface = Enum.SurfaceType.Smooth
  1553. Part137.TopSurface = Enum.SurfaceType.Smooth
  1554. Part137.Color = Color3.new(1, 1, 0)
  1555. Part137.Position = Vector3.new(-38.4537239, 4.15926123, -69.3819656)
  1556. Part137.Color = Color3.new(1, 1, 0)
  1557. Part138.Parent = Model0
  1558. Part138.Material = Enum.Material.Metal
  1559. Part138.BrickColor = BrickColor.new("Pearl")
  1560. Part138.Rotation = Vector3.new(0, 0, -10)
  1561. Part138.CanCollide = false
  1562. Part138.Shape = Enum.PartType.Cylinder
  1563. Part138.Size = Vector3.new(0.0585458241, 0.526374698, 1.02462256)
  1564. Part138.CFrame = CFrame.new(-39.0882149, 4.04630709, -69.3819656, 0.984807849, 0.173647985, 0, -0.173647985, 0.984807849, 0, 0, 0, 1)
  1565. Part138.BottomSurface = Enum.SurfaceType.Smooth
  1566. Part138.TopSurface = Enum.SurfaceType.Smooth
  1567. Part138.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1568. Part138.Position = Vector3.new(-39.0882149, 4.04630709, -69.3819656)
  1569. Part138.Orientation = Vector3.new(0, 0, -10)
  1570. Part138.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1571. SpecialMesh139.Parent = Part138
  1572. SpecialMesh139.Scale = Vector3.new(0.720637798, 1, 1)
  1573. SpecialMesh139.MeshType = Enum.MeshType.Cylinder
  1574. SpecialMesh139.Scale = Vector3.new(0.720637798, 1, 1)
  1575. Part140.Parent = Model0
  1576. Part140.Material = Enum.Material.Neon
  1577. Part140.BrickColor = BrickColor.new("New Yeller")
  1578. Part140.CanCollide = false
  1579. Part140.Shape = Enum.PartType.Cylinder
  1580. Part140.Size = Vector3.new(0.512311697, 0.719244838, 1.02462256)
  1581. Part140.CFrame = CFrame.new(-38.5973854, 4.11104488, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1582. Part140.BottomSurface = Enum.SurfaceType.Smooth
  1583. Part140.TopSurface = Enum.SurfaceType.Smooth
  1584. Part140.Color = Color3.new(1, 1, 0)
  1585. Part140.Position = Vector3.new(-38.5973854, 4.11104488, -69.3819656)
  1586. Part140.Color = Color3.new(1, 1, 0)
  1587. Part141.Parent = Model0
  1588. Part141.Material = Enum.Material.Metal
  1589. Part141.BrickColor = BrickColor.new("Fossil")
  1590. Part141.CanCollide = false
  1591. Part141.Shape = Enum.PartType.Cylinder
  1592. Part141.Size = Vector3.new(0.116525784, 0.831751645, 1.02462256)
  1593. Part141.CFrame = CFrame.new(-39.1106644, 3.61655283, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1594. Part141.BottomSurface = Enum.SurfaceType.Smooth
  1595. Part141.TopSurface = Enum.SurfaceType.Smooth
  1596. Part141.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1597. Part141.Position = Vector3.new(-39.1106644, 3.61655283, -69.3819656)
  1598. Part141.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1599. Part142.Parent = Model0
  1600. Part142.Material = Enum.Material.Neon
  1601. Part142.BrickColor = BrickColor.new("New Yeller")
  1602. Part142.CanCollide = false
  1603. Part142.Shape = Enum.PartType.Cylinder
  1604. Part142.Size = Vector3.new(0.612764835, 0.608746409, 1.02462256)
  1605. Part142.CFrame = CFrame.new(-38.6476097, 4.05579519, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1606. Part142.BottomSurface = Enum.SurfaceType.Smooth
  1607. Part142.TopSurface = Enum.SurfaceType.Smooth
  1608. Part142.Color = Color3.new(1, 1, 0)
  1609. Part142.Position = Vector3.new(-38.6476097, 4.05579519, -69.3819656)
  1610. Part142.Color = Color3.new(1, 1, 0)
  1611. Part143.Parent = Model0
  1612. Part143.Material = Enum.Material.Metal
  1613. Part143.BrickColor = BrickColor.new("Pearl")
  1614. Part143.CanCollide = false
  1615. Part143.Shape = Enum.PartType.Cylinder
  1616. Part143.Size = Vector3.new(0.138625503, 1.3802278, 1.02462256)
  1617. Part143.CFrame = CFrame.new(-39.1216965, 3.3423183, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1618. Part143.BottomSurface = Enum.SurfaceType.Smooth
  1619. Part143.TopSurface = Enum.SurfaceType.Smooth
  1620. Part143.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1621. Part143.Position = Vector3.new(-39.1216965, 3.3423183, -69.3819656)
  1622. Part143.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1623. Model144.Name = "ARightArm"
  1624. Model144.Parent = mas
  1625. Part145.Parent = Model144
  1626. Part145.Material = Enum.Material.Metal
  1627. Part145.BrickColor = BrickColor.new("Pearl")
  1628. Part145.Rotation = Vector3.new(90, -65, 90)
  1629. Part145.CanCollide = false
  1630. Part145.Size = Vector3.new(0.131573364, 0.535828233, 0.0724607483)
  1631. Part145.CFrame = CFrame.new(-35.0981178, 2.39762139, -69.2290268, 0, -0.422617942, -0.906307876, 0, 0.906307876, -0.422617942, 1, 0, 0)
  1632. Part145.BottomSurface = Enum.SurfaceType.Smooth
  1633. Part145.TopSurface = Enum.SurfaceType.Smooth
  1634. Part145.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1635. Part145.Position = Vector3.new(-35.0981178, 2.39762139, -69.2290268)
  1636. Part145.Orientation = Vector3.new(25, -90, 0)
  1637. Part145.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1638. Part146.Parent = Model144
  1639. Part146.Material = Enum.Material.Metal
  1640. Part146.BrickColor = BrickColor.new("Oyster")
  1641. Part146.Rotation = Vector3.new(90, -75, 90)
  1642. Part146.CanCollide = false
  1643. Part146.Size = Vector3.new(0.204073399, 0.65342778, 0.323770165)
  1644. Part146.CFrame = CFrame.new(-35.2350998, 2.29448462, -69.2337875, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  1645. Part146.BottomSurface = Enum.SurfaceType.Smooth
  1646. Part146.TopSurface = Enum.SurfaceType.Smooth
  1647. Part146.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1648. Part146.Position = Vector3.new(-35.2350998, 2.29448462, -69.2337875)
  1649. Part146.Orientation = Vector3.new(15, -90, 0)
  1650. Part146.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1651. Part147.Parent = Model144
  1652. Part147.Material = Enum.Material.Metal
  1653. Part147.BrickColor = BrickColor.new("Pearl")
  1654. Part147.Rotation = Vector3.new(0, 0, 15)
  1655. Part147.CanCollide = false
  1656. Part147.Shape = Enum.PartType.Cylinder
  1657. Part147.Size = Vector3.new(0.0585458241, 0.75540781, 1.02462256)
  1658. Part147.CFrame = CFrame.new(-35.3657722, 4.15797377, -69.3819656, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
  1659. Part147.BottomSurface = Enum.SurfaceType.Smooth
  1660. Part147.TopSurface = Enum.SurfaceType.Smooth
  1661. Part147.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1662. Part147.Position = Vector3.new(-35.3657722, 4.15797377, -69.3819656)
  1663. Part147.Orientation = Vector3.new(0, 0, 15)
  1664. Part147.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1665. SpecialMesh148.Parent = Part147
  1666. SpecialMesh148.Scale = Vector3.new(0.720637798, 1, 1)
  1667. SpecialMesh148.MeshType = Enum.MeshType.Cylinder
  1668. SpecialMesh148.Scale = Vector3.new(0.720637798, 1, 1)
  1669. Part149.Parent = Model144
  1670. Part149.Material = Enum.Material.Metal
  1671. Part149.BrickColor = BrickColor.new("Oyster")
  1672. Part149.Rotation = Vector3.new(90, -75, 90)
  1673. Part149.CanCollide = false
  1674. Part149.Size = Vector3.new(0.207303926, 0.173417926, 0.370755196)
  1675. Part149.CFrame = CFrame.new(-35.2698059, 1.9411211, -69.499939, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  1676. Part149.BottomSurface = Enum.SurfaceType.Smooth
  1677. Part149.TopSurface = Enum.SurfaceType.Smooth
  1678. Part149.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1679. Part149.Position = Vector3.new(-35.2698059, 1.9411211, -69.499939)
  1680. Part149.Orientation = Vector3.new(15, -90, 0)
  1681. Part149.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1682. Part150.Parent = Model144
  1683. Part150.Material = Enum.Material.Neon
  1684. Part150.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  1685. Part150.Rotation = Vector3.new(0, -85, -5)
  1686. Part150.CanCollide = false
  1687. Part150.Shape = Enum.PartType.Cylinder
  1688. Part150.Size = Vector3.new(0.203045323, 0.121046357, 0.363138705)
  1689. Part150.CFrame = CFrame.new(-35.7790794, 1.74630392, -69.324379, 0.0868239924, 0.00759603037, -0.99619478, -0.0871559903, 0.99619472, -1.0660527e-07, 0.992403865, 0.0868243501, 0.0871556476)
  1690. Part150.BottomSurface = Enum.SurfaceType.Smooth
  1691. Part150.TopSurface = Enum.SurfaceType.Smooth
  1692. Part150.Color = Color3.new(0.972549, 1, 0.376471)
  1693. Part150.Position = Vector3.new(-35.7790794, 1.74630392, -69.324379)
  1694. Part150.Orientation = Vector3.new(0, -85, -5)
  1695. Part150.Color = Color3.new(0.972549, 1, 0.376471)
  1696. Part151.Parent = Model144
  1697. Part151.Material = Enum.Material.Metal
  1698. Part151.BrickColor = BrickColor.new("Oyster")
  1699. Part151.Rotation = Vector3.new(5.01999998, 4.98000002, -0.439999998)
  1700. Part151.CanCollide = false
  1701. Part151.Size = Vector3.new(0.203045323, 0.169855386, 0.363138705)
  1702. Part151.CFrame = CFrame.new(-35.7866173, 1.76260531, -69.4106064, 0.996194661, 0.00759613281, 0.0868243203, 0, 0.99619478, -0.0871556103, -0.087155968, 0.0868239626, 0.992403865)
  1703. Part151.BottomSurface = Enum.SurfaceType.Smooth
  1704. Part151.TopSurface = Enum.SurfaceType.Smooth
  1705. Part151.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1706. Part151.Position = Vector3.new(-35.7866173, 1.76260531, -69.4106064)
  1707. Part151.Orientation = Vector3.new(5, 5, 0)
  1708. Part151.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1709. Part152.Parent = Model144
  1710. Part152.Material = Enum.Material.Metal
  1711. Part152.BrickColor = BrickColor.new("Pearl")
  1712. Part152.Rotation = Vector3.new(90, -65, 90)
  1713. Part152.CanCollide = false
  1714. Part152.Size = Vector3.new(0.13753821, 0.560120106, 0.0757457316)
  1715. Part152.CFrame = CFrame.new(-35.0863075, 2.38586926, -69.4949722, 0, -0.422617942, -0.906307876, 0, 0.906307876, -0.422617942, 1, 0, 0)
  1716. Part152.BottomSurface = Enum.SurfaceType.Smooth
  1717. Part152.TopSurface = Enum.SurfaceType.Smooth
  1718. Part152.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1719. Part152.Position = Vector3.new(-35.0863075, 2.38586926, -69.4949722)
  1720. Part152.Orientation = Vector3.new(25, -90, 0)
  1721. Part152.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1722. Part153.Parent = Model144
  1723. Part153.Material = Enum.Material.Metal
  1724. Part153.BrickColor = BrickColor.new("Oyster")
  1725. Part153.Rotation = Vector3.new(90, -75, 90)
  1726. Part153.CanCollide = false
  1727. Part153.Size = Vector3.new(0.213324994, 0.68305099, 0.338448107)
  1728. Part153.CFrame = CFrame.new(-35.2294998, 2.2780571, -69.499939, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  1729. Part153.BottomSurface = Enum.SurfaceType.Smooth
  1730. Part153.TopSurface = Enum.SurfaceType.Smooth
  1731. Part153.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1732. Part153.Position = Vector3.new(-35.2294998, 2.2780571, -69.499939)
  1733. Part153.Orientation = Vector3.new(15, -90, 0)
  1734. Part153.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1735. Part154.Parent = Model144
  1736. Part154.Material = Enum.Material.Neon
  1737. Part154.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  1738. Part154.Rotation = Vector3.new(-180, 0, 175)
  1739. Part154.CanCollide = false
  1740. Part154.Shape = Enum.PartType.Cylinder
  1741. Part154.Size = Vector3.new(0.207303926, 0.123585194, 0.370755196)
  1742. Part154.CFrame = CFrame.new(-35.7422333, 1.86258292, -69.4999466, -0.996194661, -0.087155968, 0, -0.087155968, 0.996194661, 0, 0, 0, -1)
  1743. Part154.BottomSurface = Enum.SurfaceType.Smooth
  1744. Part154.TopSurface = Enum.SurfaceType.Smooth
  1745. Part154.Color = Color3.new(0.972549, 1, 0.376471)
  1746. Part154.Position = Vector3.new(-35.7422333, 1.86258292, -69.4999466)
  1747. Part154.Orientation = Vector3.new(0, 180, -5)
  1748. Part154.Color = Color3.new(0.972549, 1, 0.376471)
  1749. Part155.Parent = Model144
  1750. Part155.Material = Enum.Material.Metal
  1751. Part155.BrickColor = BrickColor.new("Oyster")
  1752. Part155.Rotation = Vector3.new(5.01999998, 4.98000002, -0.439999998)
  1753. Part155.CanCollide = false
  1754. Part155.Shape = Enum.PartType.Cylinder
  1755. Part155.Size = Vector3.new(0.203045323, 0.169855386, 0.363138705)
  1756. Part155.CFrame = CFrame.new(-35.8042679, 1.77642953, -69.6125259, 0.996194661, 0.00759613281, 0.0868243203, 0, 0.99619478, -0.0871556103, -0.087155968, 0.0868239626, 0.992403865)
  1757. Part155.BottomSurface = Enum.SurfaceType.Smooth
  1758. Part155.TopSurface = Enum.SurfaceType.Smooth
  1759. Part155.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1760. Part155.Position = Vector3.new(-35.8042679, 1.77642953, -69.6125259)
  1761. Part155.Orientation = Vector3.new(5, 5, 0)
  1762. Part155.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1763. Part156.Parent = Model144
  1764. Part156.Material = Enum.Material.Metal
  1765. Part156.BrickColor = BrickColor.new("Oyster")
  1766. Part156.Rotation = Vector3.new(90, -85, 90)
  1767. Part156.CanCollide = false
  1768. Part156.Shape = Enum.PartType.Cylinder
  1769. Part156.Size = Vector3.new(0.207303926, 0.173417926, 0.370755196)
  1770. Part156.CFrame = CFrame.new(-35.4468651, 1.8933444, -69.499939, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  1771. Part156.BottomSurface = Enum.SurfaceType.Smooth
  1772. Part156.TopSurface = Enum.SurfaceType.Smooth
  1773. Part156.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1774. Part156.Position = Vector3.new(-35.4468651, 1.8933444, -69.499939)
  1775. Part156.Orientation = Vector3.new(5, -90, 0)
  1776. Part156.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1777. Part157.Parent = Model144
  1778. Part157.Material = Enum.Material.Metal
  1779. Part157.BrickColor = BrickColor.new("Oyster")
  1780. Part157.Rotation = Vector3.new(90, -85, 90)
  1781. Part157.CanCollide = false
  1782. Part157.Size = Vector3.new(0.207303926, 0.173417926, 0.370755196)
  1783. Part157.CFrame = CFrame.new(-35.6538086, 1.87922716, -69.499939, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  1784. Part157.BottomSurface = Enum.SurfaceType.Smooth
  1785. Part157.TopSurface = Enum.SurfaceType.Smooth
  1786. Part157.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1787. Part157.Position = Vector3.new(-35.6538086, 1.87922716, -69.499939)
  1788. Part157.Orientation = Vector3.new(5, -90, 0)
  1789. Part157.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1790. Part158.Parent = Model144
  1791. Part158.Material = Enum.Material.Metal
  1792. Part158.BrickColor = BrickColor.new("Oyster")
  1793. Part158.Rotation = Vector3.new(90, -85, 90)
  1794. Part158.CanCollide = false
  1795. Part158.Size = Vector3.new(0.198313519, 0.165896922, 0.354675889)
  1796. Part158.CFrame = CFrame.new(-35.6410255, 1.9129529, -69.2337875, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  1797. Part158.BottomSurface = Enum.SurfaceType.Smooth
  1798. Part158.TopSurface = Enum.SurfaceType.Smooth
  1799. Part158.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1800. Part158.Position = Vector3.new(-35.6410255, 1.9129529, -69.2337875)
  1801. Part158.Orientation = Vector3.new(5, -90, 0)
  1802. Part158.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1803. Part159.Parent = Model144
  1804. Part159.Material = Enum.Material.Metal
  1805. Part159.BrickColor = BrickColor.new("Oyster")
  1806. Part159.Rotation = Vector3.new(90, -75, 90)
  1807. Part159.CanCollide = false
  1808. Part159.Size = Vector3.new(0.198313519, 0.165896922, 0.354675889)
  1809. Part159.CFrame = CFrame.new(-35.2736549, 1.97215939, -69.2337875, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  1810. Part159.BottomSurface = Enum.SurfaceType.Smooth
  1811. Part159.TopSurface = Enum.SurfaceType.Smooth
  1812. Part159.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1813. Part159.Position = Vector3.new(-35.2736549, 1.97215939, -69.2337875)
  1814. Part159.Orientation = Vector3.new(15, -90, 0)
  1815. Part159.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1816. Part160.Parent = Model144
  1817. Part160.Material = Enum.Material.Metal
  1818. Part160.BrickColor = BrickColor.new("Oyster")
  1819. Part160.Rotation = Vector3.new(90, -85, 90)
  1820. Part160.CanCollide = false
  1821. Part160.Shape = Enum.PartType.Cylinder
  1822. Part160.Size = Vector3.new(0.198313519, 0.165896922, 0.354675889)
  1823. Part160.CFrame = CFrame.new(-35.4430656, 1.92645657, -69.2337875, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  1824. Part160.BottomSurface = Enum.SurfaceType.Smooth
  1825. Part160.TopSurface = Enum.SurfaceType.Smooth
  1826. Part160.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1827. Part160.Position = Vector3.new(-35.4430656, 1.92645657, -69.2337875)
  1828. Part160.Orientation = Vector3.new(5, -90, 0)
  1829. Part160.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1830. Part161.Parent = Model144
  1831. Part161.Material = Enum.Material.Metal
  1832. Part161.BrickColor = BrickColor.new("Oyster")
  1833. Part161.Rotation = Vector3.new(90, -75, 90)
  1834. Part161.CanCollide = false
  1835. Part161.Shape = Enum.PartType.Cylinder
  1836. Part161.Size = Vector3.new(0.198313519, 0.165896922, 0.354675889)
  1837. Part161.CFrame = CFrame.new(-35.0810585, 2.01983094, -69.2337875, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  1838. Part161.BottomSurface = Enum.SurfaceType.Smooth
  1839. Part161.TopSurface = Enum.SurfaceType.Smooth
  1840. Part161.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1841. Part161.Position = Vector3.new(-35.0810585, 2.01983094, -69.2337875)
  1842. Part161.Orientation = Vector3.new(15, -90, 0)
  1843. Part161.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1844. Part162.Parent = Model144
  1845. Part162.Material = Enum.Material.Neon
  1846. Part162.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  1847. Part162.Rotation = Vector3.new(-180, 0, 175)
  1848. Part162.CanCollide = false
  1849. Part162.Shape = Enum.PartType.Cylinder
  1850. Part162.Size = Vector3.new(0.198313519, 0.118225448, 0.354675889)
  1851. Part162.CFrame = CFrame.new(-35.7255859, 1.89703143, -69.2337952, -0.996194661, -0.087155968, 0, -0.087155968, 0.996194661, 0, 0, 0, -1)
  1852. Part162.BottomSurface = Enum.SurfaceType.Smooth
  1853. Part162.TopSurface = Enum.SurfaceType.Smooth
  1854. Part162.Color = Color3.new(0.972549, 1, 0.376471)
  1855. Part162.Position = Vector3.new(-35.7255859, 1.89703143, -69.2337952)
  1856. Part162.Orientation = Vector3.new(0, 180, -5)
  1857. Part162.Color = Color3.new(0.972549, 1, 0.376471)
  1858. Part163.Parent = Model144
  1859. Part163.Material = Enum.Material.Metal
  1860. Part163.BrickColor = BrickColor.new("Oyster")
  1861. Part163.Rotation = Vector3.new(90, -75, 90)
  1862. Part163.CanCollide = false
  1863. Part163.Shape = Enum.PartType.Cylinder
  1864. Part163.Size = Vector3.new(0.207303926, 0.173417926, 0.370755196)
  1865. Part163.CFrame = CFrame.new(-35.0684662, 1.99095297, -69.499939, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  1866. Part163.BottomSurface = Enum.SurfaceType.Smooth
  1867. Part163.TopSurface = Enum.SurfaceType.Smooth
  1868. Part163.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1869. Part163.Position = Vector3.new(-35.0684662, 1.99095297, -69.499939)
  1870. Part163.Orientation = Vector3.new(15, -90, 0)
  1871. Part163.Color = Color3.new(0.690196, 0.694118, 0.713726)
  1872. Part164.Parent = Model144
  1873. Part164.Material = Enum.Material.Metal
  1874. Part164.BrickColor = BrickColor.new("Ghost grey")
  1875. Part164.Rotation = Vector3.new(90, -70, 90)
  1876. Part164.CanCollide = false
  1877. Part164.Size = Vector3.new(0.17352429, 0.63498503, 0.0585457757)
  1878. Part164.CFrame = CFrame.new(-35.0849304, 2.3490634, -69.2329102, 0, -0.342020214, -0.939692616, 0, 0.939692557, -0.342020243, 1, 0, 0)
  1879. Part164.BottomSurface = Enum.SurfaceType.Smooth
  1880. Part164.TopSurface = Enum.SurfaceType.Smooth
  1881. Part164.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1882. Part164.Position = Vector3.new(-35.0849304, 2.3490634, -69.2329102)
  1883. Part164.Orientation = Vector3.new(20, -90, 0)
  1884. Part164.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1885. BlockMesh165.Parent = Part164
  1886. BlockMesh165.Scale = Vector3.new(1, 1, 0.94454354)
  1887. BlockMesh165.Scale = Vector3.new(1, 1, 0.94454354)
  1888. Part166.Parent = Model144
  1889. Part166.Material = Enum.Material.Metal
  1890. Part166.BrickColor = BrickColor.new("Ghost grey")
  1891. Part166.Rotation = Vector3.new(90, -70, 90)
  1892. Part166.CanCollide = false
  1893. Part166.Size = Vector3.new(0.181390986, 0.663772106, 0.0585457757)
  1894. Part166.CFrame = CFrame.new(-35.072506, 2.33511019, -69.49897, 0, -0.342020214, -0.939692616, 0, 0.939692557, -0.342020243, 1, 0, 0)
  1895. Part166.BottomSurface = Enum.SurfaceType.Smooth
  1896. Part166.TopSurface = Enum.SurfaceType.Smooth
  1897. Part166.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1898. Part166.Position = Vector3.new(-35.072506, 2.33511019, -69.49897)
  1899. Part166.Orientation = Vector3.new(20, -90, 0)
  1900. Part166.Color = Color3.new(0.792157, 0.796079, 0.819608)
  1901. BlockMesh167.Parent = Part166
  1902. BlockMesh167.Scale = Vector3.new(1, 1, 0.987364352)
  1903. BlockMesh167.Scale = Vector3.new(1, 1, 0.987364352)
  1904. Part168.Parent = Model144
  1905. Part168.Material = Enum.Material.Metal
  1906. Part168.BrickColor = BrickColor.new("Pearl")
  1907. Part168.Rotation = Vector3.new(25.0799999, 4.52999973, -2.11999989)
  1908. Part168.CanCollide = false
  1909. Part168.Size = Vector3.new(0.134712741, 0.548613548, 0.0741896555)
  1910. Part168.CFrame = CFrame.new(-35.8301926, 2.25883579, -69.9647751, 0.996194661, 0.0368336178, 0.0789901689, 0, 0.906308234, -0.422617316, -0.087155968, 0.421009123, 0.902859449)
  1911. Part168.BottomSurface = Enum.SurfaceType.Smooth
  1912. Part168.TopSurface = Enum.SurfaceType.Smooth
  1913. Part168.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1914. Part168.Position = Vector3.new(-35.8301926, 2.25883579, -69.9647751)
  1915. Part168.Orientation = Vector3.new(25, 5, 0)
  1916. Part168.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1917. Part169.Parent = Model144
  1918. Part169.Material = Enum.Material.Neon
  1919. Part169.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  1920. Part169.Rotation = Vector3.new(-180, 0, 175)
  1921. Part169.CanCollide = false
  1922. Part169.Shape = Enum.PartType.Cylinder
  1923. Part169.Size = Vector3.new(0.195947528, 0.116814971, 0.350444436)
  1924. Part169.CFrame = CFrame.new(-35.7212219, 1.90609682, -69.7622528, -0.996194661, -0.087155968, 0, -0.087155968, 0.996194661, 0, 0, 0, -1)
  1925. Part169.BottomSurface = Enum.SurfaceType.Smooth
  1926. Part169.TopSurface = Enum.SurfaceType.Smooth
  1927. Part169.Color = Color3.new(0.972549, 1, 0.376471)
  1928. Part169.Position = Vector3.new(-35.7212219, 1.90609682, -69.7622528)
  1929. Part169.Orientation = Vector3.new(0, 180, -5)
  1930. Part169.Color = Color3.new(0.972549, 1, 0.376471)
  1931. Part170.Parent = Model144
  1932. Part170.Material = Enum.Material.Metal
  1933. Part170.BrickColor = BrickColor.new("Fossil")
  1934. Part170.Rotation = Vector3.new(0, 0, 25)
  1935. Part170.CanCollide = false
  1936. Part170.Shape = Enum.PartType.Cylinder
  1937. Part170.Size = Vector3.new(0.337522894, 0.65495497, 1.02462256)
  1938. Part170.CFrame = CFrame.new(-35.8893852, 4.04790592, -69.3819656, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  1939. Part170.BottomSurface = Enum.SurfaceType.Smooth
  1940. Part170.TopSurface = Enum.SurfaceType.Smooth
  1941. Part170.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1942. Part170.Position = Vector3.new(-35.8893852, 4.04790592, -69.3819656)
  1943. Part170.Orientation = Vector3.new(0, 0, 25)
  1944. Part170.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1945. Part171.Parent = Model144
  1946. Part171.Material = Enum.Material.Metal
  1947. Part171.BrickColor = BrickColor.new("Pearl")
  1948. Part171.Rotation = Vector3.new(0, 0, 25)
  1949. Part171.CanCollide = false
  1950. Part171.Shape = Enum.PartType.Cylinder
  1951. Part171.Size = Vector3.new(0.0585458241, 1.00855112, 1.02462256)
  1952. Part171.CFrame = CFrame.new(-35.8193398, 4.27564144, -69.3819656, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  1953. Part171.BottomSurface = Enum.SurfaceType.Smooth
  1954. Part171.TopSurface = Enum.SurfaceType.Smooth
  1955. Part171.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1956. Part171.Position = Vector3.new(-35.8193398, 4.27564144, -69.3819656)
  1957. Part171.Orientation = Vector3.new(0, 0, 25)
  1958. Part171.Color = Color3.new(0.905882, 0.905882, 0.92549)
  1959. SpecialMesh172.Parent = Part171
  1960. SpecialMesh172.Scale = Vector3.new(0.720637798, 1, 1)
  1961. SpecialMesh172.MeshType = Enum.MeshType.Cylinder
  1962. SpecialMesh172.Scale = Vector3.new(0.720637798, 1, 1)
  1963. Part173.Parent = Model144
  1964. Part173.Material = Enum.Material.Metal
  1965. Part173.BrickColor = BrickColor.new("Fossil")
  1966. Part173.Rotation = Vector3.new(0, 0, 25)
  1967. Part173.CanCollide = false
  1968. Part173.Shape = Enum.PartType.Cylinder
  1969. Part173.Size = Vector3.new(0.458066761, 0.604727924, 1.02462256)
  1970. Part173.CFrame = CFrame.new(-35.9315834, 4.00052214, -69.3819656, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  1971. Part173.BottomSurface = Enum.SurfaceType.Smooth
  1972. Part173.TopSurface = Enum.SurfaceType.Smooth
  1973. Part173.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1974. Part173.Position = Vector3.new(-35.9315834, 4.00052214, -69.3819656)
  1975. Part173.Orientation = Vector3.new(0, 0, 25)
  1976. Part173.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1977. Part174.Parent = Model144
  1978. Part174.Material = Enum.Material.Metal
  1979. Part174.BrickColor = BrickColor.new("Fossil")
  1980. Part174.Rotation = Vector3.new(0, 0, 25)
  1981. Part174.CanCollide = false
  1982. Part174.Shape = Enum.PartType.Cylinder
  1983. Part174.Size = Vector3.new(0.16273427, 0.883988261, 1.02462256)
  1984. Part174.CFrame = CFrame.new(-35.8603859, 4.18777847, -69.3819656, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  1985. Part174.BottomSurface = Enum.SurfaceType.Smooth
  1986. Part174.TopSurface = Enum.SurfaceType.Smooth
  1987. Part174.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1988. Part174.Position = Vector3.new(-35.8603859, 4.18777847, -69.3819656)
  1989. Part174.Orientation = Vector3.new(0, 0, 25)
  1990. Part174.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1991. Part175.Parent = Model144
  1992. Part175.Material = Enum.Material.Metal
  1993. Part175.BrickColor = BrickColor.new("Oyster")
  1994. Part175.Rotation = Vector3.new(90, -85, 90)
  1995. Part175.CanCollide = false
  1996. Part175.Size = Vector3.new(0.195947528, 0.163917795, 0.350444436)
  1997. Part175.CFrame = CFrame.new(-35.6376572, 1.92183149, -69.7622452, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  1998. Part175.BottomSurface = Enum.SurfaceType.Smooth
  1999. Part175.TopSurface = Enum.SurfaceType.Smooth
  2000. Part175.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2001. Part175.Position = Vector3.new(-35.6376572, 1.92183149, -69.7622452)
  2002. Part175.Orientation = Vector3.new(5, -90, 0)
  2003. Part175.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2004. Part176.Parent = Model144
  2005. Part176.Material = Enum.Material.Metal
  2006. Part176.BrickColor = BrickColor.new("Fossil")
  2007. Part176.Rotation = Vector3.new(0, 0, 25)
  2008. Part176.CanCollide = false
  2009. Part176.Shape = Enum.PartType.Cylinder
  2010. Part176.Size = Vector3.new(0.257160395, 0.769471407, 1.02462256)
  2011. Part176.CFrame = CFrame.new(-35.8826256, 4.11423254, -69.3819656, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  2012. Part176.BottomSurface = Enum.SurfaceType.Smooth
  2013. Part176.TopSurface = Enum.SurfaceType.Smooth
  2014. Part176.Color = Color3.new(0.623529, 0.631373, 0.67451)
  2015. Part176.Position = Vector3.new(-35.8826256, 4.11423254, -69.3819656)
  2016. Part176.Orientation = Vector3.new(0, 0, 25)
  2017. Part176.Color = Color3.new(0.623529, 0.631373, 0.67451)
  2018. Part177.Parent = Model144
  2019. Part177.Material = Enum.Material.Neon
  2020. Part177.BrickColor = BrickColor.new("New Yeller")
  2021. Part177.CanCollide = false
  2022. Part177.Shape = Enum.PartType.Cylinder
  2023. Part177.Size = Vector3.new(0.727281272, 0.526374698, 1.02462256)
  2024. Part177.CFrame = CFrame.new(-35.581646, 4.01461172, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2025. Part177.BottomSurface = Enum.SurfaceType.Smooth
  2026. Part177.TopSurface = Enum.SurfaceType.Smooth
  2027. Part177.Color = Color3.new(1, 1, 0)
  2028. Part177.Position = Vector3.new(-35.581646, 4.01461172, -69.3819656)
  2029. Part177.Color = Color3.new(1, 1, 0)
  2030. Part178.Parent = Model144
  2031. Part178.Material = Enum.Material.Metal
  2032. Part178.BrickColor = BrickColor.new("Oyster")
  2033. Part178.Rotation = Vector3.new(90, -75, 90)
  2034. Part178.CanCollide = false
  2035. Part178.Size = Vector3.new(0.195947528, 0.163917795, 0.350444436)
  2036. Part178.CFrame = CFrame.new(-35.2746735, 1.98032784, -69.7622452, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2037. Part178.BottomSurface = Enum.SurfaceType.Smooth
  2038. Part178.TopSurface = Enum.SurfaceType.Smooth
  2039. Part178.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2040. Part178.Position = Vector3.new(-35.2746735, 1.98032784, -69.7622452)
  2041. Part178.Orientation = Vector3.new(15, -90, 0)
  2042. Part178.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2043. Part179.Parent = Model144
  2044. Part179.Material = Enum.Material.Metal
  2045. Part179.BrickColor = BrickColor.new("Oyster")
  2046. Part179.Rotation = Vector3.new(90, -85, 90)
  2047. Part179.CanCollide = false
  2048. Part179.Shape = Enum.PartType.Cylinder
  2049. Part179.Size = Vector3.new(0.195947528, 0.163917795, 0.350444436)
  2050. Part179.CFrame = CFrame.new(-35.4420586, 1.93517423, -69.7622452, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  2051. Part179.BottomSurface = Enum.SurfaceType.Smooth
  2052. Part179.TopSurface = Enum.SurfaceType.Smooth
  2053. Part179.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2054. Part179.Position = Vector3.new(-35.4420586, 1.93517423, -69.7622452)
  2055. Part179.Orientation = Vector3.new(5, -90, 0)
  2056. Part179.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2057. Part180.Parent = Model144
  2058. Part180.Material = Enum.Material.Metal
  2059. Part180.BrickColor = BrickColor.new("Oyster")
  2060. Part180.Rotation = Vector3.new(90, -75, 90)
  2061. Part180.CanCollide = false
  2062. Part180.Shape = Enum.PartType.Cylinder
  2063. Part180.Size = Vector3.new(0.195947528, 0.163917795, 0.350444436)
  2064. Part180.CFrame = CFrame.new(-35.0843658, 2.02743149, -69.7622452, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2065. Part180.BottomSurface = Enum.SurfaceType.Smooth
  2066. Part180.TopSurface = Enum.SurfaceType.Smooth
  2067. Part180.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2068. Part180.Position = Vector3.new(-35.0843658, 2.02743149, -69.7622452)
  2069. Part180.Orientation = Vector3.new(15, -90, 0)
  2070. Part180.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2071. Part181.Parent = Model144
  2072. Part181.Material = Enum.Material.Metal
  2073. Part181.BrickColor = BrickColor.new("Ghost grey")
  2074. Part181.Rotation = Vector3.new(90, -70, 90)
  2075. Part181.CanCollide = false
  2076. Part181.Size = Vector3.new(0.171454117, 0.627409458, 0.0585457757)
  2077. Part181.CFrame = CFrame.new(-35.0881844, 2.352736, -69.7612534, 0, -0.342020214, -0.939692616, 0, 0.939692557, -0.342020243, 1, 0, 0)
  2078. Part181.BottomSurface = Enum.SurfaceType.Smooth
  2079. Part181.TopSurface = Enum.SurfaceType.Smooth
  2080. Part181.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2081. Part181.Position = Vector3.new(-35.0881844, 2.352736, -69.7612534)
  2082. Part181.Orientation = Vector3.new(20, -90, 0)
  2083. Part181.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2084. BlockMesh182.Parent = Part181
  2085. BlockMesh182.Scale = Vector3.new(1, 1, 0.933274686)
  2086. BlockMesh182.Scale = Vector3.new(1, 1, 0.933274686)
  2087. Part183.Parent = Model144
  2088. Part183.Material = Enum.Material.Metal
  2089. Part183.BrickColor = BrickColor.new("Pearl")
  2090. Part183.Rotation = Vector3.new(90, -65, 90)
  2091. Part183.CanCollide = false
  2092. Part183.Size = Vector3.new(0.130003676, 0.529435694, 0.0715962872)
  2093. Part183.CFrame = CFrame.new(-35.1012344, 2.40071321, -69.7575455, 0, -0.422617942, -0.906307876, 0, 0.906307876, -0.422617942, 1, 0, 0)
  2094. Part183.BottomSurface = Enum.SurfaceType.Smooth
  2095. Part183.TopSurface = Enum.SurfaceType.Smooth
  2096. Part183.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2097. Part183.Position = Vector3.new(-35.1012344, 2.40071321, -69.7575455)
  2098. Part183.Orientation = Vector3.new(25, -90, 0)
  2099. Part183.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2100. Part184.Parent = Model144
  2101. Part184.Material = Enum.Material.Metal
  2102. Part184.BrickColor = BrickColor.new("Oyster")
  2103. Part184.Rotation = Vector3.new(90, -75, 90)
  2104. Part184.CanCollide = false
  2105. Part184.Size = Vector3.new(0.201638713, 0.64563185, 0.319907278)
  2106. Part184.CFrame = CFrame.new(-35.2365837, 2.29880953, -69.7622452, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2107. Part184.BottomSurface = Enum.SurfaceType.Smooth
  2108. Part184.TopSurface = Enum.SurfaceType.Smooth
  2109. Part184.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2110. Part184.Position = Vector3.new(-35.2365837, 2.29880953, -69.7622452)
  2111. Part184.Orientation = Vector3.new(15, -90, 0)
  2112. Part184.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2113. Part185.Parent = Model144
  2114. Part185.Material = Enum.Material.Metal
  2115. Part185.BrickColor = BrickColor.new("Fossil")
  2116. Part185.CanCollide = false
  2117. Part185.Size = Vector3.new(1.04471385, 0.66700983, 1.0447129)
  2118. Part185.CFrame = CFrame.new(-35.6459656, 2.32874823, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2119. Part185.BottomSurface = Enum.SurfaceType.Smooth
  2120. Part185.TopSurface = Enum.SurfaceType.Smooth
  2121. Part185.Color = Color3.new(0.623529, 0.631373, 0.67451)
  2122. Part185.Position = Vector3.new(-35.6459656, 2.32874823, -69.3819656)
  2123. Part185.Color = Color3.new(0.623529, 0.631373, 0.67451)
  2124. Part186.Parent = Model144
  2125. Part186.Material = Enum.Material.Neon
  2126. Part186.BrickColor = BrickColor.new("New Yeller")
  2127. Part186.CanCollide = false
  2128. Part186.Shape = Enum.PartType.Cylinder
  2129. Part186.Size = Vector3.new(0.225015596, 0.815679789, 1.02462256)
  2130. Part186.CFrame = CFrame.new(-35.8327904, 4.15926123, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2131. Part186.BottomSurface = Enum.SurfaceType.Smooth
  2132. Part186.TopSurface = Enum.SurfaceType.Smooth
  2133. Part186.Color = Color3.new(1, 1, 0)
  2134. Part186.Position = Vector3.new(-35.8327904, 4.15926123, -69.3819656)
  2135. Part186.Color = Color3.new(1, 1, 0)
  2136. Part187.Name = "Base"
  2137. Part187.Parent = Model144
  2138. Part187.Material = Enum.Material.Metal
  2139. Part187.BrickColor = BrickColor.new("Ghost grey")
  2140. Part187.CanCollide = false
  2141. Part187.Size = Vector3.new(1.02462339, 1.3802278, 1.02462256)
  2142. Part187.CFrame = CFrame.new(-35.6459656, 3.3423183, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2143. Part187.BottomSurface = Enum.SurfaceType.Smooth
  2144. Part187.TopSurface = Enum.SurfaceType.Smooth
  2145. Part187.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2146. Part187.Position = Vector3.new(-35.6459656, 3.3423183, -69.3819656)
  2147. Part187.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2148. Weld188.Parent = Part187
  2149. Weld188.C0 = CFrame.new(0.547847748, -0.944696903, 0.152938843, 0, -0.422617942, -0.906307876, 0, 0.906307876, -0.422617942, 1, 0, 0)
  2150. Weld188.Part0 = Part187
  2151. Weld188.Part1 = Part145
  2152. Weld189.Parent = Part187
  2153. Weld189.C0 = CFrame.new(0.410865784, -1.04783368, 0.148178101, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2154. Weld189.Part0 = Part187
  2155. Weld189.Part1 = Part146
  2156. Weld190.Parent = Part187
  2157. Weld190.C0 = CFrame.new(0.280193329, 0.81565547, 0, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
  2158. Weld190.Part0 = Part187
  2159. Weld190.Part1 = Part147
  2160. Weld191.Parent = Part187
  2161. Weld191.C0 = CFrame.new(0.376159668, -1.4011972, -0.117973328, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2162. Weld191.Part0 = Part187
  2163. Weld191.Part1 = Part149
  2164. Weld192.Parent = Part187
  2165. Weld192.C0 = CFrame.new(-0.133113861, -1.59601438, 0.0575866699, 0.0868239924, 0.00759603037, -0.99619478, -0.0871559903, 0.99619472, -1.0660527e-07, 0.992403865, 0.0868243501, 0.0871556476)
  2166. Weld192.Part0 = Part187
  2167. Weld192.Part1 = Part150
  2168. Weld193.Parent = Part187
  2169. Weld193.C0 = CFrame.new(-0.140651703, -1.57971299, -0.0286407471, 0.996194661, 0.00759613281, 0.0868243203, 0, 0.99619478, -0.0871556103, -0.087155968, 0.0868239626, 0.992403865)
  2170. Weld193.Part0 = Part187
  2171. Weld193.Part1 = Part151
  2172. Weld194.Parent = Part187
  2173. Weld194.C0 = CFrame.new(0.559658051, -0.956449032, -0.113006592, 0, -0.422617942, -0.906307876, 0, 0.906307876, -0.422617942, 1, 0, 0)
  2174. Weld194.Part0 = Part187
  2175. Weld194.Part1 = Part152
  2176. Weld195.Parent = Part187
  2177. Weld195.C0 = CFrame.new(0.416465759, -1.0642612, -0.117973328, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2178. Weld195.Part0 = Part187
  2179. Weld195.Part1 = Part153
  2180. Weld196.Parent = Part187
  2181. Weld196.C0 = CFrame.new(-0.0962677002, -1.47973537, -0.117980957, -0.996194661, -0.087155968, 0, -0.087155968, 0.996194661, 0, -0, 0, -1)
  2182. Weld196.Part0 = Part187
  2183. Weld196.Part1 = Part154
  2184. Weld197.Parent = Part187
  2185. Weld197.C0 = CFrame.new(-0.158302307, -1.56588876, -0.230560303, 0.996194661, 0.00759613281, 0.0868243203, 0, 0.99619478, -0.0871556103, -0.087155968, 0.0868239626, 0.992403865)
  2186. Weld197.Part0 = Part187
  2187. Weld197.Part1 = Part155
  2188. Weld198.Parent = Part187
  2189. Weld198.C0 = CFrame.new(0.199100494, -1.44897389, -0.117973328, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  2190. Weld198.Part0 = Part187
  2191. Weld198.Part1 = Part156
  2192. Weld199.Parent = Part187
  2193. Weld199.C0 = CFrame.new(-0.00784301758, -1.46309114, -0.117973328, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  2194. Weld199.Part0 = Part187
  2195. Weld199.Part1 = Part157
  2196. Weld200.Parent = Part187
  2197. Weld200.C0 = CFrame.new(0.00494003296, -1.4293654, 0.148178101, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  2198. Weld200.Part0 = Part187
  2199. Weld200.Part1 = Part158
  2200. Weld201.Parent = Part187
  2201. Weld201.C0 = CFrame.new(0.372310638, -1.37015891, 0.148178101, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2202. Weld201.Part0 = Part187
  2203. Weld201.Part1 = Part159
  2204. Weld202.Parent = Part187
  2205. Weld202.C0 = CFrame.new(0.202899933, -1.41586173, 0.148178101, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  2206. Weld202.Part0 = Part187
  2207. Weld202.Part1 = Part160
  2208. Weld203.Parent = Part187
  2209. Weld203.C0 = CFrame.new(0.564907074, -1.32248735, 0.148178101, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2210. Weld203.Part0 = Part187
  2211. Weld203.Part1 = Part161
  2212. Weld204.Parent = Part187
  2213. Weld204.C0 = CFrame.new(-0.0796203613, -1.44528687, 0.148170471, -0.996194661, -0.087155968, 0, -0.087155968, 0.996194661, 0, -0, 0, -1)
  2214. Weld204.Part0 = Part187
  2215. Weld204.Part1 = Part162
  2216. Weld205.Parent = Part187
  2217. Weld205.C0 = CFrame.new(0.57749939, -1.35136533, -0.117973328, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2218. Weld205.Part0 = Part187
  2219. Weld205.Part1 = Part163
  2220. Weld206.Parent = Part187
  2221. Weld206.C0 = CFrame.new(0.561035156, -0.9932549, 0.149055481, 0, -0.342020214, -0.939692616, 0, 0.939692557, -0.342020243, 1, 0, 0)
  2222. Weld206.Part0 = Part187
  2223. Weld206.Part1 = Part164
  2224. Weld207.Parent = Part187
  2225. Weld207.C0 = CFrame.new(0.573459625, -1.00720811, -0.117004395, 0, -0.342020214, -0.939692616, 0, 0.939692557, -0.342020243, 1, 0, 0)
  2226. Weld207.Part0 = Part187
  2227. Weld207.Part1 = Part166
  2228. Weld208.Parent = Part187
  2229. Weld208.C0 = CFrame.new(-0.18422699, -1.0834825, -0.582809448, 0.996194661, 0.0368336178, 0.0789901689, 0, 0.906308234, -0.422617316, -0.087155968, 0.421009123, 0.902859449)
  2230. Weld208.Part0 = Part187
  2231. Weld208.Part1 = Part168
  2232. Weld209.Parent = Part187
  2233. Weld209.C0 = CFrame.new(-0.0752563477, -1.43622148, -0.38028717, -0.996194661, -0.087155968, 0, -0.087155968, 0.996194661, 0, -0, 0, -1)
  2234. Weld209.Part0 = Part187
  2235. Weld209.Part1 = Part169
  2236. Weld210.Parent = Part187
  2237. Weld210.C0 = CFrame.new(-0.243419647, 0.705587626, 0, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  2238. Weld210.Part0 = Part187
  2239. Weld210.Part1 = Part170
  2240. Weld211.Parent = Part187
  2241. Weld211.C0 = CFrame.new(-0.173374176, 0.933323145, 0, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  2242. Weld211.Part0 = Part187
  2243. Weld211.Part1 = Part171
  2244. Weld212.Parent = Part187
  2245. Weld212.C0 = CFrame.new(-0.285617828, 0.65820384, 0, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  2246. Weld212.Part0 = Part187
  2247. Weld212.Part1 = Part173
  2248. Weld213.Parent = Part187
  2249. Weld213.C0 = CFrame.new(-0.214420319, 0.845460176, 0, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  2250. Weld213.Part0 = Part187
  2251. Weld213.Part1 = Part174
  2252. Weld214.Parent = Part187
  2253. Weld214.C0 = CFrame.new(0.00830841064, -1.42048681, -0.380279541, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  2254. Weld214.Part0 = Part187
  2255. Weld214.Part1 = Part175
  2256. Weld215.Parent = Part187
  2257. Weld215.C0 = CFrame.new(-0.236660004, 0.771914244, 0, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  2258. Weld215.Part0 = Part187
  2259. Weld215.Part1 = Part176
  2260. Weld216.Parent = Part187
  2261. Weld216.C0 = CFrame.new(0.0643196106, 0.672293425, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2262. Weld216.Part0 = Part187
  2263. Weld216.Part1 = Part177
  2264. Weld217.Parent = Part187
  2265. Weld217.C0 = CFrame.new(0.371292114, -1.36199045, -0.380279541, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2266. Weld217.Part0 = Part187
  2267. Weld217.Part1 = Part178
  2268. Weld218.Parent = Part187
  2269. Weld218.C0 = CFrame.new(0.203907013, -1.40714407, -0.380279541, 0, -0.087155968, -0.996194661, 0, 0.996194661, -0.087155968, 1, 0, 0)
  2270. Weld218.Part0 = Part187
  2271. Weld218.Part1 = Part179
  2272. Weld219.Parent = Part187
  2273. Weld219.C0 = CFrame.new(0.561599731, -1.31488681, -0.380279541, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2274. Weld219.Part0 = Part187
  2275. Weld219.Part1 = Part180
  2276. Weld220.Parent = Part187
  2277. Weld220.C0 = CFrame.new(0.557781219, -0.9895823, -0.37928772, 0, -0.342020214, -0.939692616, 0, 0.939692557, -0.342020243, 1, 0, 0)
  2278. Weld220.Part0 = Part187
  2279. Weld220.Part1 = Part181
  2280. Weld221.Parent = Part187
  2281. Weld221.C0 = CFrame.new(0.54473114, -0.941605091, -0.375579834, 0, -0.422617942, -0.906307876, 0, 0.906307876, -0.422617942, 1, 0, 0)
  2282. Weld221.Part0 = Part187
  2283. Weld221.Part1 = Part183
  2284. Weld222.Parent = Part187
  2285. Weld222.C0 = CFrame.new(0.409381866, -1.04350877, -0.380279541, 0, -0.258818984, -0.965925872, 0, 0.965925872, -0.258818984, 1, 0, 0)
  2286. Weld222.Part0 = Part187
  2287. Weld222.Part1 = Part184
  2288. Weld223.Parent = Part187
  2289. Weld223.C0 = CFrame.new(0, -1.01357007, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2290. Weld223.Part0 = Part187
  2291. Weld223.Part1 = Part185
  2292. Weld224.Parent = Part187
  2293. Weld224.C0 = CFrame.new(-0.186824799, 0.81694293, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2294. Weld224.Part0 = Part187
  2295. Weld224.Part1 = Part186
  2296. Weld225.Parent = Part187
  2297. Weld225.C0 = CFrame.new(0.447666168, 0.703988791, 0, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, 1)
  2298. Weld225.Part0 = Part187
  2299. Weld225.Part1 = Part253
  2300. Weld226.Parent = Part187
  2301. Weld226.C0 = CFrame.new(-0.0431632996, 0.768726587, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2302. Weld226.Part0 = Part187
  2303. Weld226.Part1 = Part255
  2304. Weld227.Parent = Part187
  2305. Weld227.C0 = CFrame.new(0.470115662, 0.274234533, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2306. Weld227.Part0 = Part187
  2307. Weld227.Part1 = Part256
  2308. Weld228.Parent = Part187
  2309. Weld228.C0 = CFrame.new(0.481147766, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2310. Weld228.Part0 = Part187
  2311. Weld228.Part1 = Part257
  2312. Weld229.Parent = Part187
  2313. Weld229.C0 = CFrame.new(0.00706100464, 0.713476896, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2314. Weld229.Part0 = Part187
  2315. Weld229.Part1 = Part258
  2316. Weld230.Parent = Part187
  2317. Weld230.C0 = CFrame.new(0.165119171, 0.847675562, 0, 0.939692736, -0.342019886, 0, 0.342019916, 0.939692736, 0, 0, 0, 1)
  2318. Weld230.Part0 = Part187
  2319. Weld230.Part1 = Part259
  2320. Weld231.Parent = Part187
  2321. Weld231.C0 = CFrame.new(0.0642776489, -0.364644527, -0.00500488281, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2322. Weld231.Part0 = Part187
  2323. Weld231.Part1 = Part261
  2324. Weld232.Parent = Part187
  2325. Weld232.C0 = CFrame.new(0.064743042, 0.875050783, 0, 0.939692736, -0.342019886, 0, 0.342019916, 0.939692736, 0, 0, 0, 1)
  2326. Weld232.Part0 = Part187
  2327. Weld232.Part1 = Part262
  2328. Weld233.Parent = Part187
  2329. Weld233.C0 = CFrame.new(0.0763168335, -0.364644527, 0.272224426, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2330. Weld233.Part0 = Part187
  2331. Weld233.Part1 = Part264
  2332. Weld234.Parent = Part187
  2333. Weld234.C0 = CFrame.new(0.0562324524, -0.364644527, -0.290283203, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2334. Weld234.Part0 = Part187
  2335. Weld234.Part1 = Part265
  2336. Weld235.Parent = Part187
  2337. Weld235.C0 = CFrame.new(-0.123538971, 0.804889441, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2338. Weld235.Part0 = Part187
  2339. Weld235.Part1 = Part266
  2340. Weld236.Parent = Part187
  2341. Weld236.C0 = CFrame.new(-0.0583114624, 0.910563707, 0, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  2342. Weld236.Part0 = Part187
  2343. Weld236.Part1 = Part267
  2344. Weld237.Parent = Part187
  2345. Weld237.C0 = CFrame.new(-0.0533790588, -1.44825828, 0.40802002, -0.99619478, -0.0871556178, 1.0595604e-07, -0.0868239775, 0.992403924, -0.0871556401, 0.00759599824, -0.0868239924, -0.99619478)
  2346. Weld237.Part0 = Part187
  2347. Weld237.Part1 = Part269
  2348. Weld238.Parent = Part187
  2349. Weld238.C0 = CFrame.new(0.490200043, -0.0150654316, 0.19896698, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2350. Weld238.Part0 = Part187
  2351. Weld238.Part1 = Part270
  2352. Weld239.Parent = Part187
  2353. Weld239.C0 = CFrame.new(-0.173427582, -1.51909697, -0.403396606, 0.996194661, 0.022557525, 0.0841862261, 0, 0.96592623, -0.258817881, -0.087155968, 0.257833004, 0.962250531)
  2354. Weld239.Part0 = Part187
  2355. Weld239.Part1 = Part271
  2356. Weld240.Parent = Part187
  2357. Weld240.C0 = CFrame.new(-0.17685318, -1.18907881, -0.442619324, 0.996194661, 0.022557525, 0.0841862261, 0, 0.96592623, -0.258817881, -0.087155968, 0.257833004, 0.962250531)
  2358. Weld240.Part0 = Part187
  2359. Weld240.Part1 = Part272
  2360. Weld241.Parent = Part187
  2361. Weld241.C0 = CFrame.new(0.490200043, -0.0150654316, -0.208930969, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2362. Weld241.Part0 = Part187
  2363. Weld241.Part1 = Part273
  2364. Weld242.Parent = Part187
  2365. Weld242.C0 = CFrame.new(0.544998169, -1.33468294, 0.39805603, 0, -0.258819073, -0.965925813, 0.087155968, 0.962250233, -0.257834166, 0.996194661, -0.0841862038, 0.0225576237)
  2366. Weld242.Part0 = Part187
  2367. Weld242.Part1 = Part274
  2368. Weld243.Parent = Part187
  2369. Weld243.C0 = CFrame.new(0.025138855, -1.43353391, 0.406791687, 0, -0.0871559903, -0.99619472, 0.087155968, 0.992403865, -0.0868243352, 0.996194661, -0.0868243203, 0.00759616494)
  2370. Weld243.Part0 = Part187
  2371. Weld243.Part1 = Part275
  2372. Weld244.Parent = Part187
  2373. Weld244.C0 = CFrame.new(0.48217392, -0.230036736, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2374. Weld244.Part0 = Part187
  2375. Weld244.Part1 = Part276
  2376. Weld245.Parent = Part187
  2377. Weld245.C0 = CFrame.new(0.369609833, 0.759382486, 0, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
  2378. Weld245.Part0 = Part187
  2379. Weld245.Part1 = Part277
  2380. Weld246.Parent = Part187
  2381. Weld246.C0 = CFrame.new(0.208930969, -1.42104173, 0.405639648, 0, -0.0871559903, -0.99619472, 0.087155968, 0.992403865, -0.0868243352, 0.996194661, -0.0868243203, 0.00759616494)
  2382. Weld246.Part0 = Part187
  2383. Weld246.Part1 = Part279
  2384. Weld247.Parent = Part187
  2385. Weld247.C0 = CFrame.new(0.529193878, -0.984883308, 0.371925354, 0, -0.422618091, -0.906307936, 0.087155968, 0.902859211, -0.421009868, 0.996194661, -0.078990154, 0.0368336849)
  2386. Weld247.Part0 = Part187
  2387. Weld247.Part1 = Part280
  2388. Weld248.Parent = Part187
  2389. Weld248.C0 = CFrame.new(0.366199493, -1.37877274, 0.401977539, 0, -0.258819073, -0.965925813, 0.087155968, 0.962250233, -0.257834166, 0.996194661, -0.0841862038, 0.0225576237)
  2390. Weld248.Part0 = Part187
  2391. Weld248.Part1 = Part281
  2392. Weld249.Parent = Part187
  2393. Weld249.C0 = CFrame.new(0.541412354, -1.03010416, 0.372314453, 0, -0.342019975, -0.939692736, 0.087155968, 0.936116874, -0.340718478, 0.996194661, -0.0818998367, 0.0298090819)
  2394. Weld249.Part0 = Part187
  2395. Weld249.Part1 = Part282
  2396. Weld250.Parent = Part187
  2397. Weld250.C0 = CFrame.new(0.401992798, -1.08066082, 0.375869751, 0, -0.258819073, -0.965925813, 0.087155968, 0.962250233, -0.257834166, 0.996194661, -0.0841862038, 0.0225576237)
  2398. Weld250.Part0 = Part187
  2399. Weld250.Part1 = Part284
  2400. Weld251.Parent = Part187
  2401. Weld251.C0 = CFrame.new(-0.190620422, -1.47028613, -0.599754333, 0.996194661, 0.022557525, 0.0841862261, 0, 0.96592623, -0.258817881, -0.087155968, 0.257833004, 0.962250531)
  2402. Weld251.Part0 = Part187
  2403. Weld251.Part1 = Part285
  2404. Weld252.Parent = Part187
  2405. Weld252.C0 = CFrame.new(-0.189304352, -1.13319993, -0.595878601, 0.996194661, 0.0298092179, 0.0818997845, 0, 0.93969214, -0.342021465, -0.087155968, 0.340719998, 0.936116338)
  2406. Weld252.Part0 = Part187
  2407. Weld252.Part1 = Part286
  2408. Part253.Parent = Model144
  2409. Part253.Material = Enum.Material.Metal
  2410. Part253.BrickColor = BrickColor.new("Pearl")
  2411. Part253.Rotation = Vector3.new(0, 0, 10)
  2412. Part253.CanCollide = false
  2413. Part253.Shape = Enum.PartType.Cylinder
  2414. Part253.Size = Vector3.new(0.0585458241, 0.526374698, 1.02462256)
  2415. Part253.CFrame = CFrame.new(-35.1982994, 4.04630709, -69.3819656, 0.984807849, -0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, 1)
  2416. Part253.BottomSurface = Enum.SurfaceType.Smooth
  2417. Part253.TopSurface = Enum.SurfaceType.Smooth
  2418. Part253.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2419. Part253.Position = Vector3.new(-35.1982994, 4.04630709, -69.3819656)
  2420. Part253.Orientation = Vector3.new(0, 0, 10)
  2421. Part253.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2422. SpecialMesh254.Parent = Part253
  2423. SpecialMesh254.Scale = Vector3.new(0.720637798, 1, 1)
  2424. SpecialMesh254.MeshType = Enum.MeshType.Cylinder
  2425. SpecialMesh254.Scale = Vector3.new(0.720637798, 1, 1)
  2426. Part255.Parent = Model144
  2427. Part255.Material = Enum.Material.Neon
  2428. Part255.BrickColor = BrickColor.new("New Yeller")
  2429. Part255.CanCollide = false
  2430. Part255.Shape = Enum.PartType.Cylinder
  2431. Part255.Size = Vector3.new(0.512311697, 0.719244838, 1.02462256)
  2432. Part255.CFrame = CFrame.new(-35.6891289, 4.11104488, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2433. Part255.BottomSurface = Enum.SurfaceType.Smooth
  2434. Part255.TopSurface = Enum.SurfaceType.Smooth
  2435. Part255.Color = Color3.new(1, 1, 0)
  2436. Part255.Position = Vector3.new(-35.6891289, 4.11104488, -69.3819656)
  2437. Part255.Color = Color3.new(1, 1, 0)
  2438. Part256.Parent = Model144
  2439. Part256.Material = Enum.Material.Metal
  2440. Part256.BrickColor = BrickColor.new("Fossil")
  2441. Part256.CanCollide = false
  2442. Part256.Shape = Enum.PartType.Cylinder
  2443. Part256.Size = Vector3.new(0.116525784, 0.831751645, 1.02462256)
  2444. Part256.CFrame = CFrame.new(-35.1758499, 3.61655283, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2445. Part256.BottomSurface = Enum.SurfaceType.Smooth
  2446. Part256.TopSurface = Enum.SurfaceType.Smooth
  2447. Part256.Color = Color3.new(0.623529, 0.631373, 0.67451)
  2448. Part256.Position = Vector3.new(-35.1758499, 3.61655283, -69.3819656)
  2449. Part256.Color = Color3.new(0.623529, 0.631373, 0.67451)
  2450. Part257.Parent = Model144
  2451. Part257.Material = Enum.Material.Metal
  2452. Part257.BrickColor = BrickColor.new("Pearl")
  2453. Part257.CanCollide = false
  2454. Part257.Shape = Enum.PartType.Cylinder
  2455. Part257.Size = Vector3.new(0.138625503, 1.3802278, 1.02462256)
  2456. Part257.CFrame = CFrame.new(-35.1648178, 3.3423183, -69.3819656, 1, 0, 0, -0, 1, 0, -0, 0, 1)
  2457. Part257.BottomSurface = Enum.SurfaceType.Smooth
  2458. Part257.TopSurface = Enum.SurfaceType.Smooth
  2459. Part257.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2460. Part257.Position = Vector3.new(-35.1648178, 3.3423183, -69.3819656)
  2461. Part257.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2462. Part258.Parent = Model144
  2463. Part258.Material = Enum.Material.Neon
  2464. Part258.BrickColor = BrickColor.new("New Yeller")
  2465. Part258.CanCollide = false
  2466. Part258.Shape = Enum.PartType.Cylinder
  2467. Part258.Size = Vector3.new(0.612764835, 0.608746409, 1.02462256)
  2468. Part258.CFrame = CFrame.new(-35.6389046, 4.05579519, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2469. Part258.BottomSurface = Enum.SurfaceType.Smooth
  2470. Part258.TopSurface = Enum.SurfaceType.Smooth
  2471. Part258.Color = Color3.new(1, 1, 0)
  2472. Part258.Position = Vector3.new(-35.6389046, 4.05579519, -69.3819656)
  2473. Part258.Color = Color3.new(1, 1, 0)
  2474. Part259.Parent = Model144
  2475. Part259.Material = Enum.Material.Metal
  2476. Part259.BrickColor = BrickColor.new("Pearl")
  2477. Part259.Rotation = Vector3.new(0, 0, 20)
  2478. Part259.CanCollide = false
  2479. Part259.Shape = Enum.PartType.Cylinder
  2480. Part259.Size = Vector3.new(0.0585458241, 0.821707308, 1.02462256)
  2481. Part259.CFrame = CFrame.new(-35.4808464, 4.18999386, -69.3819656, 0.939692736, -0.342019886, 0, 0.342019916, 0.939692736, 0, 0, 0, 1)
  2482. Part259.BottomSurface = Enum.SurfaceType.Smooth
  2483. Part259.TopSurface = Enum.SurfaceType.Smooth
  2484. Part259.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2485. Part259.Position = Vector3.new(-35.4808464, 4.18999386, -69.3819656)
  2486. Part259.Orientation = Vector3.new(0, 0, 20)
  2487. Part259.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2488. SpecialMesh260.Parent = Part259
  2489. SpecialMesh260.Scale = Vector3.new(0.720637798, 1, 1)
  2490. SpecialMesh260.MeshType = Enum.MeshType.Cylinder
  2491. SpecialMesh260.Scale = Vector3.new(0.720637798, 1, 1)
  2492. Part261.Parent = Model144
  2493. Part261.Material = Enum.Material.Neon
  2494. Part261.BrickColor = BrickColor.new("New Yeller")
  2495. Part261.CanCollide = false
  2496. Part261.Size = Vector3.new(0.912115455, 0.803625882, 0.0823717415)
  2497. Part261.CFrame = CFrame.new(-35.5816879, 2.97767377, -69.3869705, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2498. Part261.BottomSurface = Enum.SurfaceType.Smooth
  2499. Part261.TopSurface = Enum.SurfaceType.Smooth
  2500. Part261.Color = Color3.new(1, 1, 0)
  2501. Part261.Position = Vector3.new(-35.5816879, 2.97767377, -69.3869705)
  2502. Part261.Color = Color3.new(1, 1, 0)
  2503. Part262.Parent = Model144
  2504. Part262.Material = Enum.Material.Metal
  2505. Part262.BrickColor = BrickColor.new("Pearl")
  2506. Part262.Rotation = Vector3.new(0, 0, 20)
  2507. Part262.CanCollide = false
  2508. Part262.Shape = Enum.PartType.Cylinder
  2509. Part262.Size = Vector3.new(0.0585458241, 0.879970253, 1.02462256)
  2510. Part262.CFrame = CFrame.new(-35.5812225, 4.21736908, -69.3819656, 0.939692736, -0.342019886, 0, 0.342019916, 0.939692736, 0, 0, 0, 1)
  2511. Part262.BottomSurface = Enum.SurfaceType.Smooth
  2512. Part262.TopSurface = Enum.SurfaceType.Smooth
  2513. Part262.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2514. Part262.Position = Vector3.new(-35.5812225, 4.21736908, -69.3819656)
  2515. Part262.Orientation = Vector3.new(0, 0, 20)
  2516. Part262.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2517. SpecialMesh263.Parent = Part262
  2518. SpecialMesh263.Scale = Vector3.new(0.720637798, 1, 1)
  2519. SpecialMesh263.MeshType = Enum.MeshType.Cylinder
  2520. SpecialMesh263.Scale = Vector3.new(0.720637798, 1, 1)
  2521. Part264.Parent = Model144
  2522. Part264.Material = Enum.Material.Neon
  2523. Part264.BrickColor = BrickColor.new("New Yeller")
  2524. Part264.CanCollide = false
  2525. Part264.Size = Vector3.new(0.888006091, 0.803625882, 0.0823717415)
  2526. Part264.CFrame = CFrame.new(-35.5696487, 2.97767377, -69.1097412, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2527. Part264.BottomSurface = Enum.SurfaceType.Smooth
  2528. Part264.TopSurface = Enum.SurfaceType.Smooth
  2529. Part264.Color = Color3.new(1, 1, 0)
  2530. Part264.Position = Vector3.new(-35.5696487, 2.97767377, -69.1097412)
  2531. Part264.Color = Color3.new(1, 1, 0)
  2532. Part265.Parent = Model144
  2533. Part265.Material = Enum.Material.Neon
  2534. Part265.BrickColor = BrickColor.new("New Yeller")
  2535. Part265.CanCollide = false
  2536. Part265.Size = Vector3.new(0.928188324, 0.803625882, 0.0823717415)
  2537. Part265.CFrame = CFrame.new(-35.5897331, 2.97767377, -69.6722488, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2538. Part265.BottomSurface = Enum.SurfaceType.Smooth
  2539. Part265.TopSurface = Enum.SurfaceType.Smooth
  2540. Part265.Color = Color3.new(1, 1, 0)
  2541. Part265.Position = Vector3.new(-35.5897331, 2.97767377, -69.6722488)
  2542. Part265.Color = Color3.new(1, 1, 0)
  2543. Part266.Parent = Model144
  2544. Part266.Material = Enum.Material.Neon
  2545. Part266.BrickColor = BrickColor.new("New Yeller")
  2546. Part266.CanCollide = false
  2547. Part266.Shape = Enum.PartType.Cylinder
  2548. Part266.Size = Vector3.new(0.351586491, 0.79157114, 1.02462256)
  2549. Part266.CFrame = CFrame.new(-35.7695045, 4.14720774, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2550. Part266.BottomSurface = Enum.SurfaceType.Smooth
  2551. Part266.TopSurface = Enum.SurfaceType.Smooth
  2552. Part266.Color = Color3.new(1, 1, 0)
  2553. Part266.Position = Vector3.new(-35.7695045, 4.14720774, -69.3819656)
  2554. Part266.Color = Color3.new(1, 1, 0)
  2555. Part267.Parent = Model144
  2556. Part267.Material = Enum.Material.Metal
  2557. Part267.BrickColor = BrickColor.new("Pearl")
  2558. Part267.Rotation = Vector3.new(0, 0, 25)
  2559. Part267.CanCollide = false
  2560. Part267.Shape = Enum.PartType.Cylinder
  2561. Part267.Size = Vector3.new(0.0585458241, 0.958324492, 1.02462256)
  2562. Part267.CFrame = CFrame.new(-35.704277, 4.252882, -69.3819656, 0.906307876, -0.422617942, 0, 0.422617942, 0.906307876, 0, 0, 0, 1)
  2563. Part267.BottomSurface = Enum.SurfaceType.Smooth
  2564. Part267.TopSurface = Enum.SurfaceType.Smooth
  2565. Part267.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2566. Part267.Position = Vector3.new(-35.704277, 4.252882, -69.3819656)
  2567. Part267.Orientation = Vector3.new(0, 0, 25)
  2568. Part267.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2569. SpecialMesh268.Parent = Part267
  2570. SpecialMesh268.Scale = Vector3.new(0.720637798, 1, 1)
  2571. SpecialMesh268.MeshType = Enum.MeshType.Cylinder
  2572. SpecialMesh268.Scale = Vector3.new(0.720637798, 1, 1)
  2573. Part269.Parent = Model144
  2574. Part269.Material = Enum.Material.Neon
  2575. Part269.BrickColor = BrickColor.new("Tr. Flu. Yellow")
  2576. Part269.Rotation = Vector3.new(175, 0, 175)
  2577. Part269.CanCollide = false
  2578. Part269.Shape = Enum.PartType.Cylinder
  2579. Part269.Size = Vector3.new(0.184117824, 0.109762669, 0.329287499)
  2580. Part269.CFrame = CFrame.new(-35.6993446, 1.89406002, -68.9739456, -0.99619478, -0.0871556178, 1.0595604e-07, -0.0868239775, 0.992403924, -0.0871556401, 0.00759599824, -0.0868239924, -0.99619478)
  2581. Part269.BottomSurface = Enum.SurfaceType.Smooth
  2582. Part269.TopSurface = Enum.SurfaceType.Smooth
  2583. Part269.Color = Color3.new(0.972549, 1, 0.376471)
  2584. Part269.Position = Vector3.new(-35.6993446, 1.89406002, -68.9739456)
  2585. Part269.Orientation = Vector3.new(5, 180, -5)
  2586. Part269.Color = Color3.new(0.972549, 1, 0.376471)
  2587. Part270.Parent = Model144
  2588. Part270.Material = Enum.Material.Metal
  2589. Part270.BrickColor = BrickColor.new("Ghost grey")
  2590. Part270.CanCollide = false
  2591. Part270.Shape = Enum.PartType.Cylinder
  2592. Part270.Size = Vector3.new(0.140634596, 0.4419927, 1.02462256)
  2593. Part270.CFrame = CFrame.new(-35.1557655, 3.32725286, -69.1829987, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2594. Part270.BottomSurface = Enum.SurfaceType.Smooth
  2595. Part270.TopSurface = Enum.SurfaceType.Smooth
  2596. Part270.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2597. Part270.Position = Vector3.new(-35.1557655, 3.32725286, -69.1829987)
  2598. Part270.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2599. Part271.Parent = Model144
  2600. Part271.Material = Enum.Material.Metal
  2601. Part271.BrickColor = BrickColor.new("Oyster")
  2602. Part271.Rotation = Vector3.new(15.0499992, 4.82999992, -1.29999995)
  2603. Part271.CanCollide = false
  2604. Part271.Size = Vector3.new(0.203045323, 0.169855386, 0.363138705)
  2605. Part271.CFrame = CFrame.new(-35.8193932, 1.82322133, -69.7853622, 0.996194661, 0.022557525, 0.0841862261, 0, 0.96592623, -0.258817881, -0.087155968, 0.257833004, 0.962250531)
  2606. Part271.BottomSurface = Enum.SurfaceType.Smooth
  2607. Part271.TopSurface = Enum.SurfaceType.Smooth
  2608. Part271.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2609. Part271.Position = Vector3.new(-35.8193932, 1.82322133, -69.7853622)
  2610. Part271.Orientation = Vector3.new(15, 5, 0)
  2611. Part271.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2612. Part272.Parent = Model144
  2613. Part272.Material = Enum.Material.Metal
  2614. Part272.BrickColor = BrickColor.new("Oyster")
  2615. Part272.Rotation = Vector3.new(15.0499992, 4.82999992, -1.29999995)
  2616. Part272.CanCollide = false
  2617. Part272.Size = Vector3.new(0.208942682, 0.669018865, 0.331495464)
  2618. Part272.CFrame = CFrame.new(-35.8228188, 2.15323949, -69.824585, 0.996194661, 0.022557525, 0.0841862261, 0, 0.96592623, -0.258817881, -0.087155968, 0.257833004, 0.962250531)
  2619. Part272.BottomSurface = Enum.SurfaceType.Smooth
  2620. Part272.TopSurface = Enum.SurfaceType.Smooth
  2621. Part272.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2622. Part272.Position = Vector3.new(-35.8228188, 2.15323949, -69.824585)
  2623. Part272.Orientation = Vector3.new(15, 5, 0)
  2624. Part272.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2625. Part273.Parent = Model144
  2626. Part273.Material = Enum.Material.Metal
  2627. Part273.BrickColor = BrickColor.new("Ghost grey")
  2628. Part273.CanCollide = false
  2629. Part273.Shape = Enum.PartType.Cylinder
  2630. Part273.Size = Vector3.new(0.140634596, 0.4419927, 1.02462256)
  2631. Part273.CFrame = CFrame.new(-35.1557655, 3.32725286, -69.5908966, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2632. Part273.BottomSurface = Enum.SurfaceType.Smooth
  2633. Part273.TopSurface = Enum.SurfaceType.Smooth
  2634. Part273.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2635. Part273.Position = Vector3.new(-35.1557655, 3.32725286, -69.5908966)
  2636. Part273.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2637. Part274.Parent = Model144
  2638. Part274.Material = Enum.Material.Metal
  2639. Part274.BrickColor = BrickColor.new("Oyster")
  2640. Part274.Rotation = Vector3.new(85, -75, 90)
  2641. Part274.CanCollide = false
  2642. Part274.Shape = Enum.PartType.Cylinder
  2643. Part274.Size = Vector3.new(0.184117824, 0.154021695, 0.329287499)
  2644. Part274.CFrame = CFrame.new(-35.1009674, 2.00763535, -68.9839096, 0, -0.258819073, -0.965925813, 0.087155968, 0.962250233, -0.257834166, 0.996194661, -0.0841862038, 0.0225576237)
  2645. Part274.BottomSurface = Enum.SurfaceType.Smooth
  2646. Part274.TopSurface = Enum.SurfaceType.Smooth
  2647. Part274.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2648. Part274.Position = Vector3.new(-35.1009674, 2.00763535, -68.9839096)
  2649. Part274.Orientation = Vector3.new(14.9399996, -88.659996, 5.17999983)
  2650. Part274.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2651. Part275.Parent = Model144
  2652. Part275.Material = Enum.Material.Metal
  2653. Part275.BrickColor = BrickColor.new("Oyster")
  2654. Part275.Rotation = Vector3.new(85, -85, 90)
  2655. Part275.CanCollide = false
  2656. Part275.Size = Vector3.new(0.184117824, 0.154021695, 0.329287499)
  2657. Part275.CFrame = CFrame.new(-35.6208267, 1.90878439, -68.975174, 0, -0.0871559903, -0.99619472, 0.087155968, 0.992403865, -0.0868243352, 0.996194661, -0.0868243203, 0.00759616494)
  2658. Part275.BottomSurface = Enum.SurfaceType.Smooth
  2659. Part275.TopSurface = Enum.SurfaceType.Smooth
  2660. Part275.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2661. Part275.Position = Vector3.new(-35.6208267, 1.90878439, -68.975174)
  2662. Part275.Orientation = Vector3.new(4.98000002, -89.5599976, 5.01999998)
  2663. Part275.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2664. Part276.Parent = Model144
  2665. Part276.Material = Enum.Material.Metal
  2666. Part276.BrickColor = BrickColor.new("Institutional white")
  2667. Part276.CanCollide = false
  2668. Part276.Shape = Enum.PartType.Cylinder
  2669. Part276.Size = Vector3.new(0.140634596, 0.4419927, 1.02462256)
  2670. Part276.CFrame = CFrame.new(-35.1637917, 3.11228156, -69.3819656, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2671. Part276.BottomSurface = Enum.SurfaceType.Smooth
  2672. Part276.TopSurface = Enum.SurfaceType.Smooth
  2673. Part276.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2674. Part276.Position = Vector3.new(-35.1637917, 3.11228156, -69.3819656)
  2675. Part276.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2676. Part277.Parent = Model144
  2677. Part277.Material = Enum.Material.Metal
  2678. Part277.BrickColor = BrickColor.new("Pearl")
  2679. Part277.Rotation = Vector3.new(0, 0, 15)
  2680. Part277.CanCollide = false
  2681. Part277.Shape = Enum.PartType.Cylinder
  2682. Part277.Size = Vector3.new(0.0585458241, 0.63888222, 1.02462256)
  2683. Part277.CFrame = CFrame.new(-35.2763557, 4.10170078, -69.3819656, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
  2684. Part277.BottomSurface = Enum.SurfaceType.Smooth
  2685. Part277.TopSurface = Enum.SurfaceType.Smooth
  2686. Part277.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2687. Part277.Position = Vector3.new(-35.2763557, 4.10170078, -69.3819656)
  2688. Part277.Orientation = Vector3.new(0, 0, 15)
  2689. Part277.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2690. SpecialMesh278.Parent = Part277
  2691. SpecialMesh278.Scale = Vector3.new(0.720637798, 1, 1)
  2692. SpecialMesh278.MeshType = Enum.MeshType.Cylinder
  2693. SpecialMesh278.Scale = Vector3.new(0.720637798, 1, 1)
  2694. Part279.Parent = Model144
  2695. Part279.Material = Enum.Material.Metal
  2696. Part279.BrickColor = BrickColor.new("Oyster")
  2697. Part279.Rotation = Vector3.new(85, -85, 90)
  2698. Part279.CanCollide = false
  2699. Part279.Shape = Enum.PartType.Cylinder
  2700. Part279.Size = Vector3.new(0.184117824, 0.154021695, 0.329287499)
  2701. Part279.CFrame = CFrame.new(-35.4370346, 1.92127657, -68.976326, 0, -0.0871559903, -0.99619472, 0.087155968, 0.992403865, -0.0868243352, 0.996194661, -0.0868243203, 0.00759616494)
  2702. Part279.BottomSurface = Enum.SurfaceType.Smooth
  2703. Part279.TopSurface = Enum.SurfaceType.Smooth
  2704. Part279.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2705. Part279.Position = Vector3.new(-35.4370346, 1.92127657, -68.976326)
  2706. Part279.Orientation = Vector3.new(4.98000002, -89.5599976, 5.01999998)
  2707. Part279.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2708. Part280.Parent = Model144
  2709. Part280.Material = Enum.Material.Metal
  2710. Part280.BrickColor = BrickColor.new("Pearl")
  2711. Part280.Rotation = Vector3.new(85, -65, 90)
  2712. Part280.CanCollide = false
  2713. Part280.Size = Vector3.new(0.122155122, 0.497472882, 0.0672738478)
  2714. Part280.CFrame = CFrame.new(-35.1167717, 2.35743499, -69.0100403, 0, -0.422618091, -0.906307936, 0.087155968, 0.902859211, -0.421009868, 0.996194661, -0.078990154, 0.0368336849)
  2715. Part280.BottomSurface = Enum.SurfaceType.Smooth
  2716. Part280.TopSurface = Enum.SurfaceType.Smooth
  2717. Part280.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2718. Part280.Position = Vector3.new(-35.1167717, 2.35743499, -69.0100403)
  2719. Part280.Orientation = Vector3.new(24.8999996, -87.6699982, 5.50999975)
  2720. Part280.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2721. Part281.Parent = Model144
  2722. Part281.Material = Enum.Material.Metal
  2723. Part281.BrickColor = BrickColor.new("Oyster")
  2724. Part281.Rotation = Vector3.new(85, -75, 90)
  2725. Part281.CanCollide = false
  2726. Part281.Size = Vector3.new(0.184117824, 0.154021695, 0.329287499)
  2727. Part281.CFrame = CFrame.new(-35.2797661, 1.96354556, -68.9799881, 0, -0.258819073, -0.965925813, 0.087155968, 0.962250233, -0.257834166, 0.996194661, -0.0841862038, 0.0225576237)
  2728. Part281.BottomSurface = Enum.SurfaceType.Smooth
  2729. Part281.TopSurface = Enum.SurfaceType.Smooth
  2730. Part281.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2731. Part281.Position = Vector3.new(-35.2797661, 1.96354556, -68.9799881)
  2732. Part281.Orientation = Vector3.new(14.9399996, -88.659996, 5.17999983)
  2733. Part281.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2734. Part282.Parent = Model144
  2735. Part282.Material = Enum.Material.Metal
  2736. Part282.BrickColor = BrickColor.new("Ghost grey")
  2737. Part282.Rotation = Vector3.new(85, -70, 90)
  2738. Part282.CanCollide = false
  2739. Part282.Size = Vector3.new(0.161103114, 0.589531481, 0.0585457757)
  2740. Part282.CFrame = CFrame.new(-35.1045532, 2.31221414, -69.0096512, 0, -0.342019975, -0.939692736, 0.087155968, 0.936116874, -0.340718478, 0.996194661, -0.0818998367, 0.0298090819)
  2741. Part282.BottomSurface = Enum.SurfaceType.Smooth
  2742. Part282.TopSurface = Enum.SurfaceType.Smooth
  2743. Part282.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2744. Part282.Position = Vector3.new(-35.1045532, 2.31221414, -69.0096512)
  2745. Part282.Orientation = Vector3.new(19.9200001, -88.1800003, 5.31999969)
  2746. Part282.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2747. BlockMesh283.Parent = Part282
  2748. BlockMesh283.Scale = Vector3.new(1, 1, 0.876931548)
  2749. BlockMesh283.Scale = Vector3.new(1, 1, 0.876931548)
  2750. Part284.Parent = Model144
  2751. Part284.Material = Enum.Material.Metal
  2752. Part284.BrickColor = BrickColor.new("Oyster")
  2753. Part284.Rotation = Vector3.new(85, -75, 90)
  2754. Part284.CanCollide = false
  2755. Part284.Size = Vector3.new(0.189465478, 0.606654346, 0.300594002)
  2756. Part284.CFrame = CFrame.new(-35.2439728, 2.26165748, -69.0060959, 0, -0.258819073, -0.965925813, 0.087155968, 0.962250233, -0.257834166, 0.996194661, -0.0841862038, 0.0225576237)
  2757. Part284.BottomSurface = Enum.SurfaceType.Smooth
  2758. Part284.TopSurface = Enum.SurfaceType.Smooth
  2759. Part284.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2760. Part284.Position = Vector3.new(-35.2439728, 2.26165748, -69.0060959)
  2761. Part284.Orientation = Vector3.new(14.9399996, -88.659996, 5.17999983)
  2762. Part284.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2763. Part285.Parent = Model144
  2764. Part285.Material = Enum.Material.Metal
  2765. Part285.BrickColor = BrickColor.new("Oyster")
  2766. Part285.Rotation = Vector3.new(15.0499992, 4.82999992, -1.29999995)
  2767. Part285.CanCollide = false
  2768. Part285.Shape = Enum.PartType.Cylinder
  2769. Part285.Size = Vector3.new(0.203045323, 0.169855386, 0.363138705)
  2770. Part285.CFrame = CFrame.new(-35.836586, 1.87203217, -69.98172, 0.996194661, 0.022557525, 0.0841862261, 0, 0.96592623, -0.258817881, -0.087155968, 0.257833004, 0.962250531)
  2771. Part285.BottomSurface = Enum.SurfaceType.Smooth
  2772. Part285.TopSurface = Enum.SurfaceType.Smooth
  2773. Part285.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2774. Part285.Position = Vector3.new(-35.836586, 1.87203217, -69.98172)
  2775. Part285.Orientation = Vector3.new(15, 5, 0)
  2776. Part285.Color = Color3.new(0.690196, 0.694118, 0.713726)
  2777. Part286.Parent = Model144
  2778. Part286.Material = Enum.Material.Metal
  2779. Part286.BrickColor = BrickColor.new("Ghost grey")
  2780. Part286.Rotation = Vector3.new(20.0699997, 4.69999981, -1.70999992)
  2781. Part286.CanCollide = false
  2782. Part286.Size = Vector3.new(0.177664682, 0.650135756, 0.0585457757)
  2783. Part286.CFrame = CFrame.new(-35.8352699, 2.20911837, -69.9778442, 0.996194661, 0.0298092179, 0.0818997845, 0, 0.93969214, -0.342021465, -0.087155968, 0.340719998, 0.936116338)
  2784. Part286.BottomSurface = Enum.SurfaceType.Smooth
  2785. Part286.TopSurface = Enum.SurfaceType.Smooth
  2786. Part286.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2787. Part286.Position = Vector3.new(-35.8352699, 2.20911837, -69.9778442)
  2788. Part286.Orientation = Vector3.new(20, 5, 0)
  2789. Part286.Color = Color3.new(0.792157, 0.796079, 0.819608)
  2790. BlockMesh287.Parent = Part286
  2791. BlockMesh287.Scale = Vector3.new(1, 1, 0.967080653)
  2792. BlockMesh287.Scale = Vector3.new(1, 1, 0.967080653)
  2793. for i,v in pairs(mas:GetChildren()) do
  2794. v.Parent = char
  2795. pcall(function() v:MakeJoints() end)
  2796. end
  2797. mas:Destroy()
  2798. for i,v in pairs(cors) do
  2799. spawn(function()
  2800. pcall(v)
  2801. end)
  2802. end
  2803.  
  2804.  
  2805.  
  2806.  
  2807.  
  2808.  
  2809.  
  2810.  
  2811.  
  2812.  
  2813.  
  2814.  
  2815.  
  2816.  
  2817.  
  2818. local RAArmWeld = Instance.new("Weld", Part187)
  2819. RAArmWeld.Part0 = Part187
  2820. RAArmWeld.Part1 = RightArm
  2821. RAArmWeld.C0 = CFrame.new(0,-0.32,0)
  2822.  
  2823. local LAArmWeld = Instance.new("Weld", Part70)
  2824. LAArmWeld.Part0 = Part70
  2825. LAArmWeld.Part1 = LeftArm
  2826. LAArmWeld.C0 = CFrame.new(0,-0.32,0)
  2827.  
  2828.  
  2829.  
  2830.  
  2831.  
  2832. function ThrowBomb()
  2833. if attackDB == false then
  2834. attackDB = true
  2835. Pause = true
  2836. -- Lean Back Anim.
  2837.  
  2838. for i = 1, 50 do
  2839. RS:wait()
  2840.  
  2841. PlayAnimationFromTable({
  2842. CFrame.new(0,0,0) * CFrame.new(0, -0.3, 0.5) * CFrame.Angles(mr(25), mr(-15), 0), -- Torso,
  2843. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-25), mr(15), 0), ----- Head
  2844. CFrame.new(1.5,0,0) * CFrame.new(0, 1, 0) * CFrame.Angles(mr(-200), mr(-15), mr(15)), --- RightArm
  2845. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), 0, mr(-15)),--LeftArm
  2846. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0.5) * CFrame.Angles(mr(-35), 0, mr(5)), --RightLeg
  2847. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), 0, mr(5)), --LeftLeg
  2848. }, .3, false)
  2849. end
  2850.  
  2851. -- Bomb Spawns And Grows.
  2852.  
  2853. local Bomb = Instance.new("Part")
  2854. Bomb.Parent = char
  2855. Bomb.Anchored = true
  2856. Bomb.Locked = true
  2857. Bomb.Material = "Neon"
  2858. Bomb.Color = Color3.fromRGB(255, 145, 67)
  2859. Bomb.Shape = "Ball"
  2860. Bomb.Size = Vector3.new(0.1,0.1,0.1)
  2861. Bomb.CanCollide = false
  2862. Bomb.CFrame = RightArm.CFrame * CFrame.new(0,-2,0)
  2863.  
  2864. local grow = 1
  2865.  
  2866. for i = 1, 5 do
  2867. wait(1)
  2868. grow = grow + 5
  2869.  
  2870. Pulse:Play()
  2871.  
  2872. spawn(function()
  2873. for i = 1, 50 do
  2874. RS:wait()
  2875. Bomb.CFrame = Bomb.CFrame:lerp(Bomb.CFrame * CFrame.new(0,-0.07,0), 0.9)
  2876. Bomb.Size = Bomb.Size:lerp(Vector3.new(grow,grow,grow), 0.5)
  2877. end
  2878. end)
  2879. end
  2880.  
  2881. -- Throw Anim.
  2882. wait(1)
  2883. spawn(function()
  2884. for i = 1, 30 do
  2885. RS:wait()
  2886.  
  2887. PlayAnimationFromTable({
  2888. CFrame.new(0,0,0) * CFrame.new(0, -0.3, -0.6) * CFrame.Angles(mr(-25), mr(15), 0), -- Torso,
  2889. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(25), mr(-15), 0), ----- Head
  2890. CFrame.new(1.5,0,0) * CFrame.new(0, 0.5, -0.5) * CFrame.Angles(mr(80), mr(15), mr(15)), --- RightArm
  2891. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), 0, mr(15)),--LeftArm
  2892. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0.5) * CFrame.Angles(mr(-35), 0, mr(5)), --RightLeg
  2893. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, -0.5) * CFrame.Angles(mr(20), 0, mr(5)), --LeftLeg
  2894. }, .3, false)
  2895. end
  2896. end)
  2897.  
  2898. Bomb.Anchored = false
  2899. local Fly = Instance.new("BodyVelocity", Bomb)
  2900. Fly.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  2901. Fly.Velocity = RootPart.CFrame.lookVector * 190
  2902.  
  2903. -- Bomb Explosion.
  2904.  
  2905. Bomb.Touched:Connect(function(h)
  2906. if not h:IsDescendantOf(char) then
  2907. local Spawn = Bomb.CFrame
  2908. Bomb:Destroy()
  2909.  
  2910. local Eff = Instance.new("Part")
  2911. Eff.Parent = char
  2912. Eff.Anchored = true
  2913. Eff.Locked = true
  2914. Eff.Material = "Neon"
  2915. Eff.Color = Color3.fromRGB(255, 145, 67)
  2916. Eff.Shape = "Ball"
  2917. Eff.Size = Vector3.new(0.1,0.1,0.1)
  2918. Eff.CanCollide = false
  2919. Eff.CFrame = Spawn
  2920.  
  2921. spawn(function()
  2922. for i = 1, 500 do
  2923. RS:wait()
  2924. Eff.Size = Eff.Size + Vector3.new(1,1,1)
  2925. Eff.Transparency = Eff.Transparency + 0.003
  2926. if Eff.Transparency >= 1 then
  2927. Eff:Destroy()
  2928. end
  2929. end
  2930. end)
  2931.  
  2932. spawn(function()
  2933. for i = 1, 10 do
  2934. wait()
  2935.  
  2936.  
  2937. local ring = Instance.new("Part", char)
  2938. ring.CanCollide = false
  2939. ring.Anchored = true
  2940. ring.Locked = true
  2941. ring.Material = "Neon"
  2942. ring.Size = Vector3.new(0, 0, 0)
  2943. ring.Shape = "Block"
  2944. ring.Color = Color3.fromRGB(163, 162, 165)
  2945. ring.CFrame = Spawn * CFrame.Angles(mr(math.random(-360, 360)), mr(math.random(-360, 360)), mr(math.random(-360, 360)))
  2946. local m = Instance.new("SpecialMesh", ring)
  2947. m.Scale = Vector3.new(0,0,0)
  2948. m.MeshId = "rbxassetid://471124075"
  2949.  
  2950. spawn(function()
  2951. for i = 1, 500 do
  2952. RS:wait()
  2953.  
  2954. m.Scale = m.Scale + Vector3.new(0.1,0,0.1)
  2955. ring.Transparency = ring.Transparency + 0.005
  2956. if ring.Transparency >= 1 then
  2957. ring:Destroy()
  2958. end
  2959. end
  2960. end)
  2961. end
  2962. end)
  2963.  
  2964. Eff.Touched:Connect(function(hit)
  2965. if hit.Name ~= "Base" and not hit:IsDescendantOf(char) then
  2966. local clo = hit:Clone()
  2967. clo.CFrame = hit.CFrame
  2968. clo.Name = "BUURRRN"
  2969. hit:Destroy()
  2970. clo.Parent = char
  2971. clo.Anchored = true
  2972. clo.BrickColor = BrickColor.Black()
  2973. spawn(function()
  2974. wait(2)
  2975.  
  2976. for i = 1, 500 do
  2977. RS:wait()
  2978. clo.Transparency = clo.Transparency + 0.01
  2979. end
  2980. clo:Destroy()
  2981. end)
  2982. end
  2983. end)
  2984.  
  2985. end
  2986. end)
  2987. spawn(function()
  2988. wait(1)
  2989. Pause = false
  2990. end)
  2991. wait(1)
  2992. attackDB = false
  2993. end
  2994. end
  2995.  
  2996. local PlantedHuman = nil
  2997.  
  2998. function PlantBomb()
  2999. if attackDB == false then
  3000. attackDB = true
  3001. Pause = true
  3002. -- Lean Back Anim.
  3003.  
  3004. for i = 1, 30 do
  3005. RS:wait()
  3006.  
  3007. PlayAnimationFromTable({
  3008. CFrame.new(0,0,0) * CFrame.new(0, -0.3, 0.5) * CFrame.Angles(mr(25), mr(-15), 0), -- Torso,
  3009. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-25), mr(15), 0), ----- Head
  3010. CFrame.new(1.5,0,0) * CFrame.new(0, 1, 0) * CFrame.Angles(mr(-200), mr(-15), mr(15)), --- RightArm
  3011. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), 0, mr(-15)),--LeftArm
  3012. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0.5) * CFrame.Angles(mr(-35), 0, mr(5)), --RightLeg
  3013. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), 0, mr(5)), --LeftLeg
  3014. }, .3, false)
  3015. end
  3016.  
  3017. -- Bomb Spawns And Grows.
  3018.  
  3019. local Bomb = Instance.new("Part")
  3020. Bomb.Parent = char
  3021. Bomb.Anchored = false
  3022. Bomb.Locked = true
  3023. Bomb.Material = "Neon"
  3024. Bomb.Color = Color3.fromRGB(255, 52, 52)
  3025. Bomb.Shape = "Ball"
  3026. Bomb.Size = Vector3.new(0.4,0.4,0.4)
  3027. Bomb.CanCollide = false
  3028. Bomb.CFrame = RightArm.CFrame * CFrame.new(0,-2,0)
  3029.  
  3030. local BW = Instance.new("Weld", Bomb)
  3031. BW.Part0 = RightArm
  3032. BW.Part1 = Bomb
  3033. BW.C0 = CFrame.new(0,-1,0)
  3034.  
  3035. Pulse:Play()
  3036.  
  3037. -- Throw Anim.
  3038. wait(0.3)
  3039. spawn(function()
  3040. for i = 1, 30 do
  3041. RS:wait()
  3042.  
  3043. PlayAnimationFromTable({
  3044. CFrame.new(0,0,0) * CFrame.new(0, -0.3, -0.6) * CFrame.Angles(mr(-25), mr(15), 0), -- Torso,
  3045. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(25), mr(-15), 0), ----- Head
  3046. CFrame.new(1.5,0,0) * CFrame.new(0, 0.5, -0.5) * CFrame.Angles(mr(80), mr(15), mr(15)), --- RightArm
  3047. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), 0, mr(15)),--LeftArm
  3048. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0.5) * CFrame.Angles(mr(-35), 0, mr(5)), --RightLeg
  3049. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, -0.5) * CFrame.Angles(mr(20), 0, mr(5)), --LeftLeg
  3050. }, .6, false)
  3051. end
  3052. end)
  3053.  
  3054. -- Bomb Explosion.
  3055.  
  3056. Bomb.Touched:Connect(function(h)
  3057. if not h:IsDescendantOf(char) and h.Parent:FindFirstChildOfClass("Humanoid") ~= nil then
  3058. local Spawn = Bomb.CFrame
  3059. Bomb:Destroy()
  3060. PlantedHuman = h.Parent
  3061.  
  3062.  
  3063. end
  3064. end)
  3065. spawn(function()
  3066. wait(1)
  3067. Pause = false
  3068. Bomb:Destroy()
  3069. end)
  3070. wait(1)
  3071. attackDB = false
  3072. end
  3073. end
  3074.  
  3075.  
  3076. function ExplodePlantedBomb()
  3077. if PlantedHuman ~= nil and workspace:FindFirstChild(PlantedHuman.Name) ~= nil then
  3078. Pause = true
  3079. local hu = PlantedHuman
  3080.  
  3081.  
  3082. for i = 1, 50 do
  3083. RS:wait()
  3084.  
  3085. PlayAnimationFromTable({
  3086. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), -- Torso,
  3087. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), ----- Head
  3088. CFrame.new(1.5,0,0) * CFrame.new(-1, 0.7, -0.3) * CFrame.Angles(mr(90),0,mr(-70)), --- RightArm
  3089. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),--LeftArm
  3090. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  3091. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  3092. }, .3, false)
  3093. end
  3094.  
  3095. FSnap:Play()
  3096.  
  3097. for i = 1, 20 do
  3098. RS:wait()
  3099.  
  3100. PlayAnimationFromTable({
  3101. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), -- Torso,
  3102. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), ----- Head
  3103. CFrame.new(1.5,0,0) * CFrame.new(0, 0.7, -0.3) * CFrame.Angles(mr(90),0,mr(70)), --- RightArm
  3104. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),--LeftArm
  3105. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  3106. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  3107. }, .7, false)
  3108. end
  3109.  
  3110.  
  3111. wait(0.5)
  3112. Pause = false
  3113. local Eff = Instance.new("Part")
  3114. Eff.Parent = char
  3115. Eff.Anchored = true
  3116. Eff.Locked = true
  3117. Eff.Material = "SmoothPlastic"
  3118. Eff.Shape = "Ball"
  3119. Eff.Size = Vector3.new(0.4,0.4,0.4)
  3120. Eff.CanCollide = false
  3121. Eff.CFrame = hu.HumanoidRootPart.CFrame
  3122.  
  3123. local Sound = Instance.new("Part")
  3124. Sound.Parent = char
  3125. Sound.Transparency = 1
  3126. Sound.Anchored = true
  3127. Sound.Locked = true
  3128. Sound.CanCollide = false
  3129. Sound.CFrame = hu.HumanoidRootPart.CFrame
  3130. CS(249329549, "Explode", Sound, 2, 130):Play()
  3131.  
  3132. Damage("inf", hu:FindFirstChildOfClass("Humanoid"))
  3133.  
  3134. if hu:FindFirstChildOfClass("Humanoid").RigType == Enum.HumanoidRigType.R6 then
  3135. Eff.Color = hu.Torso.Color
  3136.  
  3137. hu.Torso:Destroy()
  3138.  
  3139. elseif hu:FindFirstChildOfClass("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  3140.  
  3141. Eff.Color = hu.UpperTorso.Color
  3142.  
  3143. hu.UpperTorso:Destroy()
  3144.  
  3145. end
  3146. hu:BreakJoints()
  3147.  
  3148. for _, o in pairs(hu:children()) do
  3149. if o:IsA("Part") or o:IsA("MeshPart") or o:IsA("UnionOperation") then
  3150. o.Anchored = false
  3151.  
  3152. local Blood = Instance.new("ParticleEmitter")
  3153. Blood.Parent = o
  3154. Blood.Rotation = NumberRange.new(-500, 500)
  3155. Blood.Size = NumberSequence.new(2,2)
  3156. Blood.Texture = "http://www.roblox.com/asset/?id=176677966"
  3157. Blood.Acceleration = Vector3.new(0, -10, 0)
  3158. Blood.Lifetime = NumberRange.new(1, 2)
  3159. Blood.Rate = 500
  3160. Blood.RotSpeed = NumberRange.new(260, 260)
  3161. Blood.Speed = NumberRange.new(10, 10)
  3162. Blood.VelocitySpread = 360
  3163.  
  3164. local Fly = Instance.new("BodyVelocity", o)
  3165. Fly.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  3166. Fly.Velocity = Vector3.new(mra(-100, 100), mra(-100, 100), mra(-100, 100))
  3167. spawn(function()
  3168. wait()
  3169. Fly:Destroy()
  3170. wait(7)
  3171. Blood.Enabled = false
  3172. wait(2)
  3173. for i = 1, 50 do
  3174. RS:wait()
  3175.  
  3176. o.Transparency = o.Transparency + 0.05
  3177. end
  3178. o:Destroy()
  3179. end)
  3180. end
  3181. end
  3182.  
  3183. for i = 1, 10 do
  3184. RS:wait()
  3185. Eff.Size = Eff.Size + Vector3.new(2,2,2)
  3186. end
  3187. Eff:Destroy()
  3188. PlantedHuman = nil
  3189. spawn(function()
  3190. wait(5)
  3191. Sound:Destroy()
  3192. end)
  3193.  
  3194. else
  3195. PlantedHuman = nil
  3196. end
  3197. end
  3198.  
  3199. local XPlanted = false
  3200.  
  3201. function PlantUltraXBomb()
  3202. if attackDB == false then
  3203. attackDB = true
  3204. Pause = true
  3205. -- Lean Back Anim.
  3206.  
  3207. for i = 1, 50 do
  3208. RS:wait()
  3209.  
  3210. PlayAnimationFromTable({
  3211. CFrame.new(0,0,0) * CFrame.new(0, -0.3, 0.5) * CFrame.Angles(mr(25), mr(-15), 0), -- Torso,
  3212. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-25), mr(15), 0), ----- Head
  3213. CFrame.new(1.5,0,0) * CFrame.new(0, 1, 0) * CFrame.Angles(mr(-200), mr(-15), mr(15)), --- RightArm
  3214. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), 0, mr(-15)),--LeftArm
  3215. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0.5) * CFrame.Angles(mr(-35), 0, mr(5)), --RightLeg
  3216. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), 0, mr(5)), --LeftLeg
  3217. }, .3, false)
  3218. end
  3219.  
  3220. -- Bomb Spawns And Grows.
  3221.  
  3222. local Bomb = Instance.new("Part")
  3223. Bomb.Parent = char
  3224. Bomb.Anchored = true
  3225. Bomb.Name = "UltraXBomb"
  3226. Bomb.Locked = true
  3227. Bomb.Material = "Neon"
  3228. Bomb.Color = Color3.fromRGB(120, 253, 255)
  3229. Bomb.Shape = "Ball"
  3230. Bomb.Size = Vector3.new(0.1,0.1,0.1)
  3231. Bomb.CanCollide = false
  3232. Bomb.CFrame = RightArm.CFrame * CFrame.new(0,-2,0)
  3233.  
  3234. local grow = 20
  3235.  
  3236.  
  3237.  
  3238. Pulse:Play()
  3239.  
  3240. spawn(function()
  3241. for i = 1, 150 do
  3242. RS:wait()
  3243. Bomb.Size = Bomb.Size + Vector3.new(0.3,0.3,0.3)
  3244. Bomb.CFrame = Bomb.CFrame * CFrame.new(0,-0.15,0)
  3245. end
  3246. end)
  3247.  
  3248.  
  3249.  
  3250. spawn(function()
  3251. wait(3)
  3252. XPlanted = true
  3253. Pause = false
  3254. end)
  3255. wait(1)
  3256. attackDB = false
  3257. end
  3258. end
  3259.  
  3260.  
  3261. function ExplodeUltraX()
  3262. if XPlanted == true and char:FindFirstChild("UltraXBomb") then
  3263. Pause = true
  3264.  
  3265.  
  3266. for i = 1, 50 do
  3267. RS:wait()
  3268.  
  3269. PlayAnimationFromTable({
  3270. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), -- Torso,
  3271. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), ----- Head
  3272. CFrame.new(1.5,0,0) * CFrame.new(-1, 0.7, -0.3) * CFrame.Angles(mr(90),0,mr(-70)), --- RightArm
  3273. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),--LeftArm
  3274. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  3275. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  3276. }, .3, false)
  3277. end
  3278.  
  3279. FSnap:Play()
  3280.  
  3281. for i = 1, 20 do
  3282. RS:wait()
  3283.  
  3284. PlayAnimationFromTable({
  3285. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), -- Torso,
  3286. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), ----- Head
  3287. CFrame.new(1.5,0,0) * CFrame.new(0, 0.7, -0.3) * CFrame.Angles(mr(90),0,mr(70)), --- RightArm
  3288. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),--LeftArm
  3289. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  3290. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  3291. }, .7, false)
  3292. end
  3293.  
  3294.  
  3295. wait(0.5)
  3296. Pause = false
  3297.  
  3298.  
  3299. for _, o in pairs(char:children()) do
  3300. if o:IsA("Part") and o.Name == "UltraXBomb" then
  3301. o.Anchored = true
  3302.  
  3303. local Eff = Instance.new("Part")
  3304. Eff.Parent = char
  3305. Eff.Anchored = true
  3306. Eff.Locked = true
  3307. Eff.Material = "Neon"
  3308. Eff.Shape = "Ball"
  3309. Eff.Size = Vector3.new(0.4,0.4,0.4)
  3310. Eff.CanCollide = false
  3311. Eff.CFrame = o.CFrame
  3312. Eff.Color = o.Color
  3313.  
  3314. local Eff2 = Instance.new("Part")
  3315. Eff2.Parent = char
  3316. Eff2.Anchored = true
  3317. Eff2.Locked = true
  3318. Eff2.Material = "Neon"
  3319. Eff2.Shape = "Cylinder"
  3320. Eff2.Size = Vector3.new(0.4,0.4,0.4)
  3321. Eff2.CanCollide = false
  3322. Eff2.Position = o.Position
  3323. Eff2.CFrame = Eff2.CFrame * CFrame.Angles(mr(0),mr(0),mr(90))
  3324. Eff2.Color = o.Color
  3325.  
  3326. spawn(function()
  3327. for i = 1, 10 do
  3328. local Eff3 = Instance.new("Part")
  3329. Eff3.Parent = char
  3330. Eff3.Anchored = true
  3331. Eff3.Locked = true
  3332. Eff3.Material = "Neon"
  3333. Eff3.Shape = "Cylinder"
  3334. Eff3.Size = Vector3.new(0.4,0.4,0.4)
  3335. Eff3.CanCollide = false
  3336. Eff3.CFrame = o.CFrame * CFrame.Angles(mra(-360, 360), mra(-360, 360), mra(-360, 360))
  3337. Eff3.Color = o.Color
  3338.  
  3339. local tx = mra(-5, 5)
  3340. local ty = mra(-5, 5)
  3341. local tz = mra(-5, 5)
  3342.  
  3343. spawn(function()
  3344. for i = 1, 50 do
  3345. RS:wait()
  3346.  
  3347. Eff3.Size = Eff3.Size + Vector3.new(9, 0.1, 0.1)
  3348. end
  3349. end)
  3350.  
  3351. spawn(function()
  3352. for i = 1, 500 do
  3353. RS:wait()
  3354. Eff3.Transparency = Eff3.Transparency + 0.005
  3355. Eff3.CFrame = Eff3.CFrame * CFrame.Angles(mr(tx), mr(ty), mr(tz))
  3356. if Eff3.Transparency >= 1 then
  3357. Eff3:Destroy()
  3358. end
  3359. end
  3360. end)
  3361. end
  3362. end)
  3363.  
  3364. spawn(function()
  3365. for i = 1, 150 do
  3366. RS:wait()
  3367. Eff.Size = Eff.Size + Vector3.new(1.8,1.8,1.8)
  3368. Eff2.Size = Eff2.Size + Vector3.new(10,0.5,0.5)
  3369. end
  3370. end)
  3371.  
  3372. local Sound = Instance.new("Part")
  3373. Sound.Parent = char
  3374. Sound.Transparency = 1
  3375. Sound.Anchored = true
  3376. Sound.Locked = true
  3377. Sound.CanCollide = false
  3378. Sound.CFrame = o.CFrame
  3379. CS(249329549, "Explode", Sound, 1, 400):Play()
  3380. o:Destroy()
  3381.  
  3382.  
  3383. spawn(function()
  3384. wait(5)
  3385. for i = 1, 500 do
  3386. RS:wait()
  3387.  
  3388. Eff.Size = Eff.Size - Vector3.new(1,1,1)
  3389. Eff.Transparency = Eff.Transparency + 0.01
  3390. if Eff.Transparency >= 1 then
  3391. Eff:Destroy()
  3392. end
  3393. Eff2.Size = Eff2.Size - Vector3.new(1,1,1)
  3394. Eff2.Transparency = Eff2.Transparency + 0.01
  3395. if Eff2.Transparency >= 1 then
  3396. Eff2:Destroy()
  3397. end
  3398. end
  3399. end)
  3400.  
  3401. Eff.Touched:Connect(function(h)
  3402. if h.Parent ~= nil and not h:IsDescendantOf(char) and h.Parent:FindFirstChild("Humanoid") and h.Parent:FindFirstChild("Hitto1") == nil then
  3403. local val = Instance.new("IntValue", h.Parent)
  3404. val.Name = "Hitto1"
  3405. Damage("inf", h.Parent:FindFirstChildOfClass("Humanoid"))
  3406. h.Parent:BreakJoints()
  3407. for _, i in pairs(h.Parent:children()) do
  3408. if i:IsA("Part") then
  3409. i.Anchored = false
  3410. local Blood = Instance.new("ParticleEmitter")
  3411. Blood.Parent = i
  3412. Blood.Rotation = NumberRange.new(-500, 500)
  3413. Blood.Size = NumberSequence.new(2,2)
  3414. Blood.Texture = "http://www.roblox.com/asset/?id=176677966"
  3415. Blood.Acceleration = Vector3.new(0, -10, 0)
  3416. Blood.Lifetime = NumberRange.new(1, 2)
  3417. Blood.Rate = 500
  3418. Blood.RotSpeed = NumberRange.new(260, 260)
  3419. Blood.Speed = NumberRange.new(10, 10)
  3420. Blood.VelocitySpread = 360
  3421.  
  3422. local Fly = Instance.new("BodyVelocity", i)
  3423. Fly.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  3424. Fly.Velocity = Vector3.new(mra(-100, 100), mra(-100, 100), mra(-100, 100))
  3425. spawn(function()
  3426. wait()
  3427. Fly:Destroy()
  3428. wait(7)
  3429. Blood.Enabled = false
  3430. wait(2)
  3431. for p = 1, 50 do
  3432. RS:wait()
  3433.  
  3434. i.Transparency = i.Transparency + 0.05
  3435. end
  3436. i:Destroy()
  3437. end)
  3438. end
  3439. end
  3440.  
  3441. end
  3442. end)
  3443. end
  3444. end
  3445.  
  3446.  
  3447. XPlanted = false
  3448.  
  3449.  
  3450. else
  3451. XPlanted = false
  3452. end
  3453. end
  3454.  
  3455.  
  3456. function findNearestTorso(pos, oof)
  3457. local list = game.Workspace:children()
  3458. local torso = nil
  3459. local dist = 50
  3460. local temp = nil
  3461. local human = nil
  3462. local temp2 = nil
  3463. for x = 1, #list do
  3464. temp2 = list[x]
  3465. if (temp2.className == "Model") and (temp2 ~= char) then
  3466. if temp2.Name ~= plr.Name.."'s Clone" then
  3467. temp = temp2:FindFirstChild("Head")
  3468. h = temp2:FindFirstChildOfClass("Humanoid")
  3469. if (temp ~= nil) and (h ~= nil) and (h.Health > 0) then
  3470. if (temp.Position - pos).magnitude < dist then
  3471. torso = temp
  3472. dist = (temp.Position - pos).magnitude
  3473. end
  3474. end
  3475. end
  3476. end
  3477. end
  3478. return torso
  3479. end
  3480.  
  3481. function findNearestTorso2(pos, oof)
  3482. local list = game.Workspace:children()
  3483. local torso = nil
  3484. local dist = 10
  3485. local temp = nil
  3486. local human = nil
  3487. local temp2 = nil
  3488. for x = 1, #list do
  3489. temp2 = list[x]
  3490. if (temp2.className == "Model") and (temp2 ~= char) then
  3491. if temp2.Name ~= plr.Name.."'s Clone" then
  3492. temp = temp2:FindFirstChild("Head")
  3493. h = temp2:FindFirstChildOfClass("Humanoid")
  3494.  
  3495. if (temp ~= nil) and (h ~= nil) and (h.Health > 0) then
  3496.  
  3497. if (temp.Position - pos).magnitude < dist then
  3498.  
  3499. torso = temp
  3500. dist = (temp.Position - pos).magnitude
  3501. end
  3502. end
  3503. end
  3504. end
  3505. end
  3506. return torso
  3507. end
  3508.  
  3509.  
  3510. function Clone()
  3511. local Clone = BaseClone:Clone()
  3512. Clone.Name = plr.Name.."'s Clone"
  3513. Clone.Humanoid.MaxHealth = 999999
  3514. Clone.Humanoid.Health = 999999
  3515. Clone.HumanoidRootPart.CFrame = RootPart.CFrame * CFrame.new(0,0,-2)
  3516.  
  3517. spawn(function()
  3518. for i = 1, 10 do
  3519. wait()
  3520.  
  3521.  
  3522. local Eff = Instance.new("Part")
  3523. Eff.Parent = Clone
  3524. Eff.Anchored = true
  3525. Eff.Locked = true
  3526. Eff.Material = "Neon"
  3527. Eff.Color = Color3.fromRGB(255, 52, 52)
  3528. Eff.Shape = "Block"
  3529. Eff.Size = Vector3.new(5,5,5)
  3530. Eff.CanCollide = false
  3531. Eff.CFrame = Clone.HumanoidRootPart.CFrame * CFrame.Angles(mr(math.random(-360, 360)), mr(math.random(-360, 360)), mr(math.random(-360, 360)))
  3532.  
  3533. spawn(function()
  3534. for i = 1, 500 do
  3535. RS:wait()
  3536. Eff.CFrame = Eff.CFrame * CFrame.Angles(mr(math.random(-5, 5)), mr(math.random(-5, 5)), mr(math.random(-5, 5)))
  3537. Eff.Transparency = Eff.Transparency + 0.05
  3538.  
  3539. if Eff.Transparency >= 1 then
  3540. Eff:Destroy()
  3541. end
  3542. end
  3543. end)
  3544.  
  3545.  
  3546. end
  3547. end)
  3548.  
  3549.  
  3550. local Bomb = Instance.new("Part")
  3551. Bomb.Parent = Clone
  3552. Bomb.Anchored = false
  3553. Bomb.Locked = true
  3554. Bomb.Material = "Neon"
  3555. Bomb.Color = Color3.fromRGB(255, 52, 52)
  3556. Bomb.Shape = "Ball"
  3557. Bomb.Size = Vector3.new(1,1,1)
  3558. Bomb.CanCollide = false
  3559. local BWeld = Instance.new("Weld", Bomb)
  3560. BWeld.Part0 = Bomb
  3561. BWeld.Part1 = Clone.HumanoidRootPart
  3562. BWeld.C0 = CFrame.new(0,0,0.3)
  3563.  
  3564.  
  3565. local Bomb = Instance.new("Part")
  3566. Bomb.Parent = Clone
  3567. Bomb.Anchored = false
  3568. Bomb.Locked = true
  3569. Bomb.Material = "Neon"
  3570. Bomb.Color = Color3.fromRGB(255, 52, 52)
  3571. Bomb.Shape = "Ball"
  3572. Bomb.Size = Vector3.new(1,1,1)
  3573. Bomb.CanCollide = false
  3574. local BWeld = Instance.new("Weld", Bomb)
  3575. BWeld.Part0 = Bomb
  3576. BWeld.Part1 = Clone.HumanoidRootPart
  3577. BWeld.C0 = CFrame.new(0,0,0.3)
  3578.  
  3579. Clone.Parent = workspace
  3580.  
  3581. local CHum = Clone.Humanoid
  3582.  
  3583. -- NPC Handler
  3584. -------------------------------
  3585. spawn(function()
  3586. -- Clone's Lifetime Before They Explode.
  3587. wait(5)
  3588.  
  3589. local Eff = Instance.new("Part")
  3590. Eff.Parent = Clone
  3591. Eff.Anchored = true
  3592. Eff.Locked = true
  3593. Eff.Material = "SmoothPlastic"
  3594. Eff.Shape = "Ball"
  3595. Eff.Size = Vector3.new(0.4,0.4,0.4)
  3596. Eff.CanCollide = false
  3597. Eff.CFrame = Clone.HumanoidRootPart.CFrame
  3598.  
  3599. local Sound = Instance.new("Part")
  3600. Sound.Parent = Clone
  3601. Sound.Transparency = 1
  3602. Sound.Anchored = true
  3603. Sound.Locked = true
  3604. Sound.CanCollide = false
  3605. Sound.CFrame = Clone.HumanoidRootPart.CFrame
  3606. CS(249329549, "Explode", Sound, 0.5, 130):Play()
  3607.  
  3608. if findNearestTorso2(Clone.Torso.Position, Clone) ~= nil then
  3609. Damage(50, findNearestTorso2(Clone.Torso.Position, Clone).Parent:FindFirstChildOfClass("Humanoid"))
  3610. end
  3611.  
  3612. Eff.Color = Clone.Torso.Color
  3613.  
  3614. Clone.Torso:Destroy()
  3615.  
  3616.  
  3617. Clone:BreakJoints()
  3618.  
  3619. for _, o in pairs(Clone:children()) do
  3620. if o:IsA("Part") or o:IsA("MeshPart") or o:IsA("UnionOperation") then
  3621. o.Anchored = false
  3622.  
  3623. local Blood = Instance.new("ParticleEmitter")
  3624. Blood.Parent = o
  3625. Blood.Rotation = NumberRange.new(-500, 500)
  3626. Blood.Size = NumberSequence.new(2,2)
  3627. Blood.Texture = "rbxassetid://304113188"
  3628. Blood.Acceleration = Vector3.new(0, -10, 0)
  3629. Blood.Lifetime = NumberRange.new(1, 2)
  3630. Blood.Rate = 500
  3631. Blood.RotSpeed = NumberRange.new(260, 260)
  3632. Blood.Speed = NumberRange.new(10, 10)
  3633. Blood.Color = ColorSequence.new(Color3.fromRGB(255, 79, 247))
  3634. Blood.VelocitySpread = 360
  3635.  
  3636. local Fly = Instance.new("BodyVelocity", o)
  3637. Fly.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  3638. Fly.Velocity = Vector3.new(mra(-100, 100), mra(-100, 100), mra(-100, 100))
  3639. spawn(function()
  3640. wait()
  3641. Fly:Destroy()
  3642. wait(7)
  3643. Blood.Enabled = false
  3644. wait(2)
  3645. for i = 1, 50 do
  3646. RS:wait()
  3647.  
  3648. o.Transparency = o.Transparency + 0.05
  3649. end
  3650. o:Destroy()
  3651. end)
  3652. end
  3653. end
  3654.  
  3655. for i = 1, 10 do
  3656. RS:wait()
  3657. Eff.Size = Eff.Size + Vector3.new(2,2,2)
  3658. end
  3659. Eff:Destroy()
  3660. spawn(function()
  3661. wait(5)
  3662. Sound:Destroy()
  3663. end)
  3664. end)
  3665.  
  3666. spawn(function()
  3667. while wait() do
  3668. if findNearestTorso(Clone.Torso.Position, Clone) ~= nil then
  3669. local target = findNearestTorso(Clone.Torso.Position, Clone).Parent
  3670. CHum.WalkToPoint = findNearestTorso(Clone.Torso.Position, Clone).Position
  3671. end
  3672.  
  3673. end
  3674. end)
  3675. end
  3676.  
  3677. local Combo = 1
  3678.  
  3679. function Combo1()
  3680. Pause = true
  3681. local Punched = false
  3682.  
  3683. spawn(function()
  3684. for i = 1, 10 do
  3685. RS:wait()
  3686.  
  3687. PlayAnimationFromTable({
  3688. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(10), mr(-60), 0), -- Torso,
  3689. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), mr(60), 0), ----- Head
  3690. CFrame.new(1.5,0,0) * CFrame.new(0, 0.4, 0) * CFrame.Angles(mr(90),mr(40),mr(0)), --- RightArm
  3691. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),--LeftArm
  3692. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), 0, 0), --RightLeg
  3693. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), mr(60), 0), --LeftLeg
  3694. }, .6, false)
  3695. end
  3696. end)
  3697.  
  3698.  
  3699. spawn(function()
  3700. for i = 1, 20 do
  3701. wait()
  3702.  
  3703.  
  3704. local Eff = Instance.new("Part")
  3705. Eff.Parent = char
  3706. Eff.Anchored = true
  3707. Eff.Locked = true
  3708. Eff.Material = "Neon"
  3709. Eff.Color = Color3.fromRGB(248, 255, 96)
  3710. Eff.Shape = "Block"
  3711. Eff.Size = Vector3.new(1,1,1)
  3712. Eff.CanCollide = false
  3713. Eff.CFrame = RightArm.CFrame * CFrame.Angles(mr(math.random(-360, 360)), mr(math.random(-360, 360)), mr(math.random(-360, 360)))
  3714.  
  3715. spawn(function()
  3716. for i = 1, 500 do
  3717. RS:wait()
  3718. Eff.CFrame = Eff.CFrame * CFrame.Angles(mr(math.random(-5, 5)), mr(math.random(-5, 5)), mr(math.random(-5, 5)))
  3719. Eff.Transparency = Eff.Transparency + 0.05
  3720.  
  3721. if Eff.Transparency >= 1 then
  3722. Eff:Destroy()
  3723. end
  3724. end
  3725. end)
  3726. end
  3727. end)
  3728.  
  3729.  
  3730. wait(0.3)
  3731. Punched = true
  3732.  
  3733.  
  3734. spawn(function()
  3735. for i = 1, 10 do
  3736. RS:wait()
  3737.  
  3738. PlayAnimationFromTable({
  3739. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), mr(60), 0), -- Torso,
  3740. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(20), mr(-60), 0), ----- Head
  3741. CFrame.new(1.5,0,0) * CFrame.new(0, 0.4, -1) * CFrame.Angles(mr(130), mr(90),mr(-60)), --- RightArm
  3742. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),--LeftArm
  3743. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), 0, 0), --RightLeg
  3744. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), mr(60), 0), --LeftLeg
  3745. }, .6, false)
  3746. end
  3747. end)
  3748.  
  3749. RightArm.Touched:Connect(function(h)
  3750. if Punched == true and not h:IsDescendantOf(char) and h.Parent ~= nil and h.Parent:FindFirstChildOfClass("Humanoid") and h.Parent.Name ~= plr.Name.."'s Clone" and h.Parent:FindFirstChild("Hitto4") == nil then
  3751. local val = Instance.new("IntValue", h.Parent)
  3752. val.Name = "Hitto4"
  3753. spawn(function()
  3754. wait(0.3)
  3755. val:Destroy()
  3756. end)
  3757. Damage(10, h.Parent:FindFirstChildOfClass("Humanoid"))
  3758.  
  3759. end
  3760. end)
  3761.  
  3762. wait(0.2)
  3763. Punched = false
  3764. Pause = false
  3765. end
  3766.  
  3767.  
  3768. function Combo2()
  3769. Pause = true
  3770. local Punched = false
  3771. spawn(function()
  3772. for i = 1, 10 do
  3773. RS:wait()
  3774.  
  3775. PlayAnimationFromTable({
  3776. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(10), mr(60), 0), -- Torso,
  3777. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), mr(-60), 0), ----- Head
  3778. CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(0),mr(0),mr(0)), --- RightArm
  3779. CFrame.new(-1.5,0,0) * CFrame.new(0, 0.4, 0) * CFrame.Angles(mr(90), mr(-40), 0),--LeftArm
  3780. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), 0, 0), --RightLeg
  3781. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), mr(60), 0), --LeftLeg
  3782. }, .6, false)
  3783. end
  3784. end)
  3785.  
  3786.  
  3787. spawn(function()
  3788. for i = 1, 20 do
  3789. wait()
  3790.  
  3791.  
  3792. local Eff = Instance.new("Part")
  3793. Eff.Parent = char
  3794. Eff.Anchored = true
  3795. Eff.Locked = true
  3796. Eff.Material = "Neon"
  3797. Eff.Color = Color3.fromRGB(248, 255, 96)
  3798. Eff.Shape = "Block"
  3799. Eff.Size = Vector3.new(1,1,1)
  3800. Eff.CanCollide = false
  3801. Eff.CFrame = LeftArm.CFrame * CFrame.Angles(mr(math.random(-360, 360)), mr(math.random(-360, 360)), mr(math.random(-360, 360)))
  3802.  
  3803. spawn(function()
  3804. for i = 1, 500 do
  3805. RS:wait()
  3806. Eff.CFrame = Eff.CFrame * CFrame.Angles(mr(math.random(-5, 5)), mr(math.random(-5, 5)), mr(math.random(-5, 5)))
  3807. Eff.Transparency = Eff.Transparency + 0.05
  3808.  
  3809. if Eff.Transparency >= 1 then
  3810. Eff:Destroy()
  3811. end
  3812. end
  3813. end)
  3814. end
  3815. end)
  3816.  
  3817.  
  3818. wait(0.3)
  3819. Punched = true
  3820.  
  3821. spawn(function()
  3822. for i = 1, 10 do
  3823. RS:wait()
  3824.  
  3825. PlayAnimationFromTable({
  3826. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-20), mr(-60), 0), -- Torso,
  3827. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(20), mr(60), 0), ----- Head
  3828. CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(0), mr(0),mr(0)), --- RightArm
  3829. CFrame.new(-1.5,0,0) * CFrame.new(0, 0.4, -1) * CFrame.Angles(mr(130), mr(-90), mr(60)),--LeftArm
  3830. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), 0, 0), --RightLeg
  3831. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), mr(60), 0), --LeftLeg
  3832. }, .6, false)
  3833. end
  3834. end)
  3835.  
  3836. LeftArm.Touched:Connect(function(h)
  3837. if Punched == true and not h:IsDescendantOf(char) and h.Parent ~= nil and h.Parent:FindFirstChildOfClass("Humanoid") and h.Parent.Name ~= plr.Name.."'s Clone" and h.Parent:FindFirstChild("Hitto4") == nil then
  3838. local val = Instance.new("IntValue", h.Parent)
  3839. val.Name = "Hitto4"
  3840. spawn(function()
  3841. wait(0.3)
  3842. val:Destroy()
  3843. end)
  3844. Damage(10, h.Parent:FindFirstChildOfClass("Humanoid"))
  3845.  
  3846. end
  3847. end)
  3848.  
  3849. wait(0.2)
  3850. Punched = false
  3851. Pause = false
  3852. end
  3853.  
  3854.  
  3855. function Combo3()
  3856. Pause = true
  3857.  
  3858. spawn(function()
  3859. for i = 1, 20 do
  3860. RS:wait()
  3861.  
  3862. PlayAnimationFromTable({
  3863. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), -- Torso,
  3864. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), ----- Head
  3865. CFrame.new(1.5,0,0) * CFrame.new(0, 0.5, -0.5) * CFrame.Angles(mr(90),mr(90),0), --- RightArm
  3866. CFrame.new(-1.5,0,0) * CFrame.new(0, 0.5, -0.5) * CFrame.Angles(mr(90), mr(-90), 0),--LeftArm
  3867. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  3868. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  3869. }, .5, false)
  3870. end
  3871. end)
  3872.  
  3873. wait(0.1)
  3874.  
  3875. Explosion1:Play()
  3876.  
  3877. spawn(function()
  3878. for i = 1, 20 do
  3879. wait()
  3880.  
  3881.  
  3882. local Eff = Instance.new("Part")
  3883. Eff.Parent = char
  3884. Eff.Anchored = true
  3885. Eff.Locked = true
  3886. Eff.Material = "Neon"
  3887. Eff.Color = Color3.fromRGB(248, 255, 96)
  3888. Eff.Shape = "Block"
  3889. Eff.Size = Vector3.new(math.random(5, 20),math.random(5, 20),math.random(5, 20))
  3890. Eff.CanCollide = false
  3891. Eff.CFrame = RootPart.CFrame * CFrame.new(0,0,-i*3) * CFrame.Angles(mr(math.random(-360, 360)), mr(math.random(-360, 360)), mr(math.random(-360, 360)))
  3892.  
  3893. Eff.Touched:Connect(function(h)
  3894. if not h:IsDescendantOf(char) and h.Parent ~= nil and h.Parent:FindFirstChildOfClass("Humanoid") and h.Parent.Name ~= plr.Name.."'s Clone" and h.Parent:FindFirstChild("Hitto3") == nil then
  3895. local val = Instance.new("IntValue", h.Parent)
  3896. val.Name = "Hitto3"
  3897. spawn(function()
  3898. wait(0.1)
  3899. val:Destroy()
  3900. end)
  3901. Damage(15, h.Parent:FindFirstChildOfClass("Humanoid"))
  3902.  
  3903. end
  3904. end)
  3905.  
  3906. spawn(function()
  3907. for i = 1, 500 do
  3908. RS:wait()
  3909. Eff.CFrame = Eff.CFrame * CFrame.Angles(mr(math.random(-5, 5)), mr(math.random(-5, 5)), mr(math.random(-5, 5)))
  3910. Eff.Transparency = Eff.Transparency + 0.05
  3911.  
  3912. if Eff.Transparency >= 1 then
  3913. Eff:Destroy()
  3914. end
  3915. end
  3916. end)
  3917. end
  3918. end)
  3919.  
  3920. wait(0.2)
  3921.  
  3922. Pause = false
  3923. end
  3924.  
  3925.  
  3926. function Combo4()
  3927. Pause = true
  3928.  
  3929. local Jum = Instance.new("BodyPosition", RootPart)
  3930. Jum.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  3931. Jum.D = 600
  3932. Jum.P = 10000
  3933. Jum.Position = RootPart.CFrame.p + Vector3.new(0,50,0)
  3934.  
  3935. spawn(function()
  3936. for i = 1, 20 do
  3937. RS:wait()
  3938.  
  3939. PlayAnimationFromTable({
  3940. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(10), 0, 0), -- Torso,
  3941. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(10), 0, 0), ----- Head
  3942. CFrame.new(1.5,0,0) * CFrame.new(0, 0.5, -0.5) * CFrame.Angles(mr(90),mr(0),mr(-20)), --- RightArm
  3943. CFrame.new(-1.5,0,0) * CFrame.new(0, 0.5, -0.5) * CFrame.Angles(mr(90), mr(0), mr(20)),--LeftArm
  3944. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-30), 0, 0), --RightLeg
  3945. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-30), 0, 0), --LeftLeg
  3946. }, .5, false)
  3947. end
  3948. end)
  3949.  
  3950. wait(0.2)
  3951.  
  3952. Jum:Destroy()
  3953.  
  3954. local Jum2 = Instance.new("BodyPosition", RootPart)
  3955. Jum2.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
  3956. Jum2.D = 600
  3957. Jum2.P = 10000
  3958. Jum2.Position = RootPart.CFrame.p + Vector3.new(0,-50,0)
  3959.  
  3960. wait(0.1)
  3961. Jum2:Destroy()
  3962.  
  3963. Explosion1:Play()
  3964.  
  3965.  
  3966. spawn(function()
  3967. for i = 1, 20 do
  3968. RS:wait()
  3969.  
  3970. PlayAnimationFromTable({
  3971. CFrame.new(0,0,0) * CFrame.new(0, -1, 0) * CFrame.Angles(mr(-10), 0, 0), -- Torso,
  3972. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(-10), 0, 0), ----- Head
  3973. CFrame.new(1.5,0,0) * CFrame.new(-0.4, -0.2, -0.5) * CFrame.Angles(mr(30),mr(0),mr(-20)), --- RightArm
  3974. CFrame.new(-1.5,0,0) * CFrame.new(0.4, -0.2, -0.5) * CFrame.Angles(mr(30), mr(0), mr(20)),--LeftArm
  3975. CFrame.new(0.5,-2,0) * CFrame.new(0, 0.4, 0) * CFrame.Angles(mr(-80), 0, 0), --RightLeg
  3976. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0.4, 0) * CFrame.Angles(mr(-80), 0, 0), --LeftLeg
  3977. }, .5, false)
  3978. end
  3979. end)
  3980.  
  3981. spawn(function()
  3982. for i = 1, 3 do
  3983. wait()
  3984.  
  3985.  
  3986. local Eff = Instance.new("Part")
  3987. Eff.Parent = char
  3988. Eff.Anchored = true
  3989. Eff.Locked = true
  3990. Eff.Material = "Neon"
  3991. Eff.Color = Color3.fromRGB(248, 255, 96)
  3992. Eff.Shape = "Block"
  3993. Eff.Size = Vector3.new(math.random(5, 20),math.random(5, 20),math.random(5, 20))
  3994. Eff.CanCollide = false
  3995. Eff.CFrame = RootPart.CFrame * CFrame.Angles(mr(math.random(-360, 360)), mr(math.random(-360, 360)), mr(math.random(-360, 360)))
  3996.  
  3997. Eff.Touched:Connect(function(h)
  3998. if not h:IsDescendantOf(char) and h.Parent ~= nil and h.Parent:FindFirstChildOfClass("Humanoid") and h.Parent.Name ~= plr.Name.."'s Clone" and h.Parent:FindFirstChild("Hitto3") == nil then
  3999. local val = Instance.new("IntValue", h.Parent)
  4000. val.Name = "Hitto3"
  4001. spawn(function()
  4002. wait(0.1)
  4003. val:Destroy()
  4004. end)
  4005. Damage(50, h.Parent:FindFirstChildOfClass("Humanoid"))
  4006.  
  4007. end
  4008. end)
  4009.  
  4010. spawn(function()
  4011. for i = 1, 500 do
  4012. RS:wait()
  4013. Eff.CFrame = Eff.CFrame * CFrame.Angles(mr(math.random(-5, 5)), mr(math.random(-5, 5)), mr(math.random(-5, 5)))
  4014. Eff.Transparency = Eff.Transparency + 0.07
  4015. Eff.Size = Eff.Size + Vector3.new(4,4,4)
  4016. if Eff.Transparency >= 1 then
  4017. Eff:Destroy()
  4018. end
  4019. end
  4020. end)
  4021. end
  4022. end)
  4023.  
  4024. wait(1)
  4025.  
  4026. Pause = false
  4027. end
  4028.  
  4029. local ComDb = false
  4030.  
  4031. Mouse.Button1Down:Connect(function()
  4032. if Combo == 1 and ComDb == false then
  4033. ComDb = true
  4034. Combo = 2
  4035.  
  4036. Combo1()
  4037.  
  4038. wait(0.3)
  4039. ComDb = false
  4040.  
  4041. elseif Combo == 2 and ComDb == false then
  4042. ComDb = true
  4043. Combo = 3
  4044.  
  4045. Combo2()
  4046.  
  4047. wait(0.3)
  4048. ComDb = false
  4049.  
  4050. elseif Combo == 3 and ComDb == false then
  4051. ComDb = true
  4052. Combo = 4
  4053.  
  4054. Combo3()
  4055.  
  4056. wait(0.3)
  4057. ComDb = false
  4058.  
  4059. elseif Combo == 4 and ComDb == false then
  4060. ComDb = true
  4061. Combo = 1
  4062.  
  4063. Combo4()
  4064.  
  4065. wait(0.3)
  4066. ComDb = false
  4067. end
  4068. end)
  4069.  
  4070.  
  4071. Mouse.KeyDown:Connect(function(k)
  4072. if k == "e" then
  4073. ThrowBomb()
  4074. end
  4075.  
  4076. if k == "r" then
  4077. PlantBomb()
  4078. end
  4079.  
  4080. if k == "q" then
  4081. ExplodePlantedBomb()
  4082. end
  4083.  
  4084. if k == "f" then
  4085. PlantUltraXBomb()
  4086. end
  4087.  
  4088. if k == "t" then
  4089. ExplodeUltraX()
  4090. end
  4091.  
  4092. if k == "x" then
  4093. Clone()
  4094. end
  4095. end)
  4096.  
  4097.  
  4098.  
  4099.  
  4100. --for i = 1, 50 do
  4101. -- RS:wait()
  4102. --
  4103. -- PlayAnimationFromTable({
  4104. -- CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), -- Torso,
  4105. -- CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), ----- Head
  4106. -- CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0,0,0), --- RightArm
  4107. -- CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),--LeftArm
  4108. -- CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  4109. -- CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  4110. -- }, .3, false)
  4111. --end
  4112.  
  4113.  
  4114.  
  4115. local newMotor = function(part0, part1, c0, c1)
  4116. local w = Create('Motor'){
  4117. Parent = part0,
  4118. Part0 = part0,
  4119. Part1 = part1,
  4120. C0 = c0,
  4121. C1 = c1,
  4122. }
  4123. return w
  4124. end
  4125. function clerp(a, b, t)
  4126. return a:lerp(b, t)
  4127. end
  4128.  
  4129. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  4130. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  4131.  
  4132. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  4133. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  4134. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  4135. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  4136. RootJoint.C1 = CFrame.new(0, 0, 0)
  4137. RootJoint.C0 = CFrame.new(0, 0, 0)
  4138. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  4139. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  4140.  
  4141. local rarmc1 = RW.C1
  4142. local larmc1 = LW.C1
  4143. local rlegc1 = RH.C1
  4144. local llegc1 = LH.C1
  4145.  
  4146. local resetc1 = false
  4147.  
  4148. function PlayAnimationFromTable(table, speed, bool)
  4149. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  4150. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  4151. RW.C0 = clerp(RW.C0, table[3], speed)
  4152. LW.C0 = clerp(LW.C0, table[4], speed)
  4153. RH.C0 = clerp(RH.C0, table[5], speed)
  4154. LH.C0 = clerp(LH.C0, table[6], speed)
  4155. if bool == true then
  4156. if resetc1 == false then
  4157. resetc1 = true
  4158. RootJoint.C1 = RootJoint.C1
  4159. Torso.Neck.C1 = Torso.Neck.C1
  4160. RW.C1 = rarmc1
  4161. LW.C1 = larmc1
  4162. RH.C1 = rlegc1
  4163. LH.C1 = llegc1
  4164. end
  4165. end
  4166. end
  4167.  
  4168. ArtificialHB = Create("BindableEvent", script){
  4169. Parent = script,
  4170. Name = "Heartbeat",
  4171. }
  4172.  
  4173. script:WaitForChild("Heartbeat")
  4174.  
  4175. frame = 1 / 30
  4176. tf = 0
  4177. allowframeloss = false
  4178. tossremainder = false
  4179. lastframe = tick()
  4180. script.Heartbeat:Fire()
  4181.  
  4182. game:GetService("RunService").Heartbeat:connect(function(s, p)
  4183. tf = tf + s
  4184. if tf >= frame then
  4185. if allowframeloss then
  4186. script.Heartbeat:Fire()
  4187. lastframe = tick()
  4188. else
  4189. for i = 1, math.floor(tf / frame) do
  4190. script.Heartbeat:Fire()
  4191. end
  4192. lastframe = tick()
  4193. end
  4194. if tossremainder then
  4195. tf = 0
  4196. else
  4197. tf = tf - frame * math.floor(tf / frame)
  4198. end
  4199. end
  4200. end)
  4201.  
  4202. function swait(num)
  4203. if num == 0 or num == nil then
  4204. ArtificialHB.Event:wait()
  4205. else
  4206. for i = 0, num do
  4207. ArtificialHB.Event:wait()
  4208. end
  4209. end
  4210. end
  4211.  
  4212.  
  4213.  
  4214.  
  4215.  
  4216. New = function(Object, Parent, Name, Data)
  4217. local Object = Instance.new(Object)
  4218. for Index, Value in pairs(Data or {}) do
  4219. Object[Index] = Value
  4220. end
  4221. Object.Parent = Parent
  4222. Object.Name = Name
  4223. return Object
  4224. end
  4225. function rayCast(Position, Direction, Range, Ignore)
  4226. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  4227. end
  4228.  
  4229.  
  4230.  
  4231.  
  4232. coroutine.wrap(function()
  4233. while 1 do
  4234. swait()
  4235. if doe <= 360 then
  4236. doe = doe + 2
  4237. else
  4238. doe = 0
  4239. end
  4240. end
  4241. end)()
  4242. while true do
  4243. swait()
  4244.  
  4245. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  4246. velocity = RootPart.Velocity.y
  4247. sine = sine + change
  4248. local hit, pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  4249. if RootPart.Velocity.y > 1 and hit == nil then
  4250. Anim = "Jump"
  4251. if Pause == false then
  4252. PlayAnimationFromTable({
  4253. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(15), 0, 0), -- Torso,
  4254. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(mr(20), 0, 0), ----- Head
  4255. CFrame.new(1.5,0,0) * CFrame.new(0, 0.8, -0.5) * CFrame.Angles(mr(120),0,mr(10)), --- RightArm
  4256. CFrame.new(-1.5,0,0) * CFrame.new(0, 0.8, -0.5) * CFrame.Angles(mr(120), 0, mr(-10)),--LeftArm
  4257. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  4258. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  4259. }, .3, false)
  4260. end
  4261. elseif RootPart.Velocity.y < -1 and hit == nil then
  4262. Anim = "Fall"
  4263. if Pause == false then
  4264. PlayAnimationFromTable({
  4265. CFrame.new(0,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), -- Torso,
  4266. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), ----- Head
  4267. CFrame.new(1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0,0,0), --- RightArm
  4268. CFrame.new(-1.5,0,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),--LeftArm
  4269. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  4270. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  4271. }, .3, false)
  4272. end
  4273. elseif Torsovelocity < 1 and hit ~= nil then
  4274. Anim = "Idle"
  4275. if Pause == false then
  4276. change = 1
  4277. PlayAnimationFromTable({
  4278. CFrame.new(0,0,0) * CFrame.new(0, 0-.1*math.sin(tick()*20), 0) * CFrame.Angles(0-.05*math.sin(tick()*20), mr(-15), 0), -- Torso,
  4279. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0-.5*math.sin(tick()*20), mr(15), 0), ----- Head
  4280. CFrame.new(1.5,0,0) * CFrame.new(-0.4, 1, -1) * CFrame.Angles(mr(110), 0, mr(-25)), --- RightArm
  4281. CFrame.new(-1.5,0,0) * CFrame.new(0.2, 1, 0) * CFrame.Angles(mr(170), mr(0), mr(15)),--LeftArm
  4282. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --RightLeg
  4283. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), --LeftLeg
  4284. }, .3, false)
  4285. end
  4286. elseif Torsovelocity > 2 and hit ~= nil then
  4287. Anim = "Walk"
  4288. if Pause == false then
  4289. PlayAnimationFromTable({
  4290. CFrame.new(0,0,0) * CFrame.new(0, 0-.1*math.sin(tick()*20), 0) * CFrame.Angles(0-.1*math.sin(tick()*20), mr(-15), 0), -- Torso,
  4291. CFrame.new(0,1.5,0) * CFrame.new(0, 0, 0) * CFrame.Angles(0-.2*math.sin(tick()*20), 0, 0), ----- Head
  4292. CFrame.new(1.5,0,0) * CFrame.new(-0.4, 1, -1) * CFrame.Angles(mr(110), 0, mr(-25)), --- RightArm
  4293. CFrame.new(-1.5,0,0) * CFrame.new(0.4, 1, -1) * CFrame.Angles(mr(115), mr(15), mr(25)),--LeftArm
  4294. CFrame.new(0.5,-2,0) * CFrame.new(0, 0, 0- 0.6 * math.cos((sine) / 3)) * CFrame.Angles(math.rad(0 + 50 * math.cos((sine) / 3)), 0, 0), --RightLeg
  4295. CFrame.new(-0.5,-2,0) * CFrame.new(0, 0, 0+ 0.6 * math.cos((sine) / 3)) * CFrame.Angles(math.rad(0 - 50 * math.cos((sine) / 3)), 0, 0), --LeftLeg
  4296. }, .3, false)
  4297. end
  4298. end
  4299. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement