Advertisement
awzp

Swordlight test edit 4

May 18th, 2018
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Edit by awzp
  2. Player=game:GetService("Players").LocalPlayer
  3. -----------------------------------------------------------------
  4. local p = game.Players.LocalPlayer
  5. local char = p.Character
  6. local mouse = p:GetMouse()
  7. local larm = char["Left Arm"]
  8. local rarm = char["Right Arm"]
  9. local lleg = char["Left Leg"]
  10. local rleg = char["Right Leg"]
  11. local hed = char.Head
  12. local torso = char.Torso
  13. z = Instance.new("Sound", torso)
  14. z.SoundId = "rbxassetid://655029578" -- Put Music ID Here.
  15. z.Looped = true
  16. z.Pitch = 1
  17. z.Volume = 1
  18. wait(.1)
  19. z:Play()
  20. local hum = char.Humanoid
  21. local cam = game.Workspace.CurrentCamera
  22. local root = char.HumanoidRootPart
  23. local deb = false
  24. local shot = 0
  25. local stanceToggle = "Normal"
  26. local l = game:GetService("Lighting")
  27. local runs = game:GetService("RunService")
  28. local debris=game:service"Debris"
  29. local rs = runs.RenderStepped
  30. local hb = runs.Heartbeat
  31. local step = runs.Stepped
  32. local stanceToggle = "Normal"
  33. math.randomseed(os.time())
  34. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  35. ptz = {0.75, 0.8, 0.85, 0.9, 0.95, 1}
  36. idz = {"231917856", "231917863"}
  37. ----------------------------------------------------
  38. --[[for i,v in pairs(char:children()) do
  39. if v:IsA("Hat") then
  40. v:Destroy()
  41. end
  42. end]]--
  43. for i,v in pairs (hed:GetChildren()) do
  44. if v:IsA("Sound") then
  45. v:Destroy()
  46. end
  47. end
  48. ----------------------------------------------------
  49. Debounces = {
  50. CanAttack = true;
  51. CanJoke = true;
  52. NoIdl = false;
  53. Slashing = false;
  54. Slashed = false;
  55. ks = false;
  56. RKick = false;
  57. RKicked = false;
  58. }
  59. ----------------------------------------------------
  60. function weld5(part0, part1, c0, c1)
  61. weeld=Instance.new("Weld", part0)
  62. weeld.Part0=part0
  63. weeld.Part1=part1
  64. weeld.C0=c0
  65. weeld.C1=c1
  66. return weeld
  67. end
  68. ----------------------------------------------------
  69. function lerp(a, b, t) -- Linear interpolation
  70. return a + (b - a)*t
  71. end
  72.  
  73. function slerp(a, b, t) --Spherical interpolation
  74. dot = a:Dot(b)
  75. if dot > 0.99999 or dot < -0.99999 then
  76. return t <= 0.5 and a or b
  77. else
  78. r = math.acos(dot)
  79. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  80. end
  81. end
  82.  
  83. function matrixInterpolate(a, b, t)
  84. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  85. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  86. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  87. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  88. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  89. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  90. local t = v1:Dot(v2)
  91. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  92. return CFrame.new()
  93. end
  94. return CFrame.new(
  95. v0.x, v0.y, v0.z,
  96. v1.x, v1.y, v1.z,
  97. v2.x, v2.y, v2.z,
  98. v3.x, v3.y, v3.z)
  99. end
  100. ----------------------------------------------------
  101. function genWeld(a,b)
  102. local w = Instance.new("Weld",a)
  103. w.Part0 = a
  104. w.Part1 = b
  105. return w
  106. end
  107. function weld(a, b)
  108. local weld = Instance.new("Weld")
  109. weld.Name = "W"
  110. weld.Part0 = a
  111. weld.Part1 = b
  112. weld.C0 = a.CFrame:inverse() * b.CFrame
  113. weld.Parent = a
  114. return weld;
  115. end
  116. ----------------------------------------------------
  117. function Lerp(c1,c2,al)
  118. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  119. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  120. for i,v in pairs(com1) do
  121. com1[i] = v+(com2[i]-v)*al
  122. end
  123. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  124. end
  125. ----------------------------------------------------
  126. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  127. local wld = Instance.new("Weld", wp1)
  128. wld.Part0 = wp0
  129. wld.Part1 = wp1
  130. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  131. end
  132. ----------------------------------------------------
  133. function Tween(a,b,c)
  134. return a+(b-a)*c
  135. end
  136. ----------------------------------------------------
  137. function NewPart(prnt,siz,cf,col,mat)
  138. local prt=Instance.new("Part")
  139. prt.Parent=prnt
  140. prt.FormFactor=3
  141. prt.Name="Part"
  142. prt.Size=siz
  143. prt.CanCollide=false
  144. prt.Anchored=true
  145. prt.Locked=true
  146. prt.TopSurface=10
  147. prt.BottomSurface=10
  148. prt.FrontSurface=10
  149. prt.BackSurface=10
  150. prt.LeftSurface=10
  151. prt.RightSurface=10
  152. prt:BreakJoints()
  153. prt.CFrame=cf or CFrame.new(30,10,30)
  154. prt.Material=mat
  155. prt.BrickColor=BrickColor.new(col)
  156. m=Instance.new("SpecialMesh",prt)
  157. m.MeshType=6
  158. return prt
  159. end
  160. ----------------------------------------------------
  161. newWeld(torso, larm, -1.5, 0.5, 0)
  162. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  163. newWeld(torso, rarm, 1.5, 0.5, 0)
  164. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  165. newWeld(torso, hed, 0, 1.5, 0)
  166. newWeld(torso, lleg, -0.5, -1, 0)
  167. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  168. newWeld(torso, rleg, 0.5, -1, 0)
  169. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  170. newWeld(root, torso, 0, -1, 0)
  171. torso.Weld.C1 = CFrame.new(0, -1, 0)
  172. ----------------------------------------------------
  173. z = Instance.new("Sound",char)
  174. z.SoundId = "rbxassetid://526719128"
  175. z.Looped = true
  176. z.Volume = 1
  177. z.Pitch = 1
  178. wait(1)
  179. --z:Play()
  180. ----------------------------------------------------
  181. local m = Instance.new("Model")
  182. m.Name = "Sword"
  183. p1 = Instance.new("Part", m)
  184. p1.BrickColor = BrickColor.new("Toothpaste")
  185. p1.Material = Enum.Material.SmoothPlastic
  186. p1.Reflectance = 0.30000001192093
  187. p1.CFrame = CFrame.new(0.0817779973, 16.9978428, 24.1231575, 4.35829861e-008, -3.15302451e-010, -1, -1.2260136e-008, 1.00000417, -2.07065101e-010, 1.00000417, 1.22591297e-008, 4.31318767e-008)
  188. p1.CanCollide = false
  189. p1.Locked = true
  190. p1.FormFactor = Enum.FormFactor.Custom
  191. p1.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  192. p1.BottomSurface = Enum.SurfaceType.Smooth
  193. p1.TopSurface = Enum.SurfaceType.Smooth
  194. b1 = Instance.new("SpecialMesh", p1)
  195. b1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  196. b1.TextureId = ""
  197. b1.MeshType = Enum.MeshType.FileMesh
  198. b1.Name = "Mesh"
  199. b1.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  200. p2 = Instance.new("Part", m)
  201. p2.BrickColor = BrickColor.new("Toothpaste")
  202. p2.Material = Enum.Material.SmoothPlastic
  203. p2.Reflectance = 0.30000001192093
  204. p2.CFrame = CFrame.new(-0.091170989, 17.6237793, 24.1108494, 4.40342767e-008, -4.2354209e-010, -1, -1.22612445e-008, 1.00001252, -9.88276266e-011, 1.00001252, 1.22582255e-008, 4.2680945e-008)
  205. p2.CanCollide = false
  206. p2.Locked = true
  207. p2.FormFactor = Enum.FormFactor.Custom
  208. p2.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  209. p2.BottomSurface = Enum.SurfaceType.Smooth
  210. p2.TopSurface = Enum.SurfaceType.Smooth
  211. b2 = Instance.new("SpecialMesh", p2)
  212. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  213. b2.TextureId = ""
  214. b2.MeshType = Enum.MeshType.FileMesh
  215. b2.Name = "Mesh"
  216. b2.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  217. p3 = Instance.new("Part", m)
  218. p3.BrickColor = BrickColor.new("Toothpaste")
  219. p3.Material = Enum.Material.SmoothPlastic
  220. p3.Reflectance = 0.30000001192093
  221. p3.CFrame = CFrame.new(-0.001290977, 17.3269539, 23.416975, -1, -5.31782618e-010, -7.71617437e-010, 9.4117214e-012, 1.00002086, 1.22623529e-008, -1.49195145e-009, 1.22573214e-008, -1.00002086)
  222. p3.CanCollide = false
  223. p3.Locked = true
  224. p3.FormFactor = Enum.FormFactor.Custom
  225. p3.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  226. p3.BottomSurface = Enum.SurfaceType.Smooth
  227. p3.TopSurface = Enum.SurfaceType.Smooth
  228. b3 = Instance.new("SpecialMesh", p3)
  229. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  230. b3.TextureId = ""
  231. b3.MeshType = Enum.MeshType.FileMesh
  232. b3.Name = "Mesh"
  233. b3.Scale = Vector3.new(0.204801083, 0.204801321, 0.136534423)
  234. p4 = Instance.new("Part", m)
  235. p4.BrickColor = BrickColor.new("Toothpaste")
  236. p4.CFrame = CFrame.new(-0.00478596753, 17.3274307, 23.980545, 1, -1.23001165e-009, -6.40024533e-010, -1.1765143e-010, 1.22634614e-008, 1.00002921, 1.95034877e-009, -1.00002921, 1.22564172e-008)
  237. p4.CanCollide = false
  238. p4.Locked = true
  239. p4.FormFactor = Enum.FormFactor.Custom
  240. p4.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  241. p4.TopSurface = Enum.SurfaceType.Weld
  242. b4 = Instance.new("SpecialMesh", p4)
  243. b4.MeshId = "http://www.roblox.com/asset/?id=1033714"
  244. b4.TextureId = ""
  245. b4.MeshType = Enum.MeshType.FileMesh
  246. b4.Name = "Mesh"
  247. b4.VertexColor = Vector3.new(0, 0.899999976, 0.699999988)
  248. b4.Scale = Vector3.new(0.0455113538, 0.455114096, 0.0455114767)
  249. p5 = Instance.new("Part", m)
  250. p5.BrickColor = BrickColor.new("Really black")
  251. p5.Material = Enum.Material.Neon
  252. p5.Reflectance = 0.5
  253. p5.Transparency = 0.0099999997764826
  254. p5.CFrame = CFrame.new(-0.00582695846, 17.0333862, 24.0054722, -1, -3.17473727e-008, 8.22757613e-008, -8.72001635e-008, 0.342033029, -0.939727962, -2.40875098e-009, -0.939727962, -0.342033029)
  255. p5.CanCollide = false
  256. p5.Locked = true
  257. p5.FormFactor = Enum.FormFactor.Custom
  258. p5.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  259. b5 = Instance.new("SpecialMesh", p5)
  260. b5.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  261. b5.TextureId = ""
  262. b5.MeshType = Enum.MeshType.FileMesh
  263. b5.Name = "Mesh"
  264. b5.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  265. p6 = Instance.new("Part", m)
  266. p6.BrickColor = BrickColor.new("Toothpaste")
  267. p6.Material = Enum.Material.SmoothPlastic
  268. p6.Reflectance = 0.30000001192093
  269. p6.CFrame = CFrame.new(-0.0911659524, 17.3251324, 24.1947174, 4.58651641e-008, -8.57646398e-010, -1, 0, 1.00004601, 3.3526959e-010, 1.00004601, 0, 4.08515106e-008)
  270. p6.CanCollide = false
  271. p6.Locked = true
  272. p6.FormFactor = Enum.FormFactor.Custom
  273. p6.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  274. p6.BottomSurface = Enum.SurfaceType.Smooth
  275. p6.TopSurface = Enum.SurfaceType.Smooth
  276. b6 = Instance.new("SpecialMesh", p6)
  277. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  278. b6.TextureId = ""
  279. b6.MeshType = Enum.MeshType.FileMesh
  280. b6.Name = "Mesh"
  281. b6.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  282. p7 = Instance.new("Part", m)
  283. p7.BrickColor = BrickColor.new("Toothpaste")
  284. p7.Material = Enum.Material.SmoothPlastic
  285. p7.Reflectance = 0.30000001192093
  286. p7.CFrame = CFrame.new(-0.00128895044, 17.3275337, 23.4541702, -1, -9.6589059e-010, -2.60252264e-009, 4.43512033e-010, 1.00005436, 1.00633792e-012, -3.32286376e-009, -1.006348e-012, -1.00005436)
  287. p7.CanCollide = false
  288. p7.Locked = true
  289. p7.FormFactor = Enum.FormFactor.Custom
  290. p7.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  291. p7.BottomSurface = Enum.SurfaceType.Smooth
  292. p7.TopSurface = Enum.SurfaceType.Smooth
  293. b7 = Instance.new("SpecialMesh", p7)
  294. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  295. b7.TextureId = ""
  296. b7.MeshType = Enum.MeshType.FileMesh
  297. b7.Name = "Mesh"
  298. b7.Scale = Vector3.new(0.141085163, 0.150187641, 0.0728183538)
  299. p8 = Instance.new("Part", m)
  300. p8.BrickColor = BrickColor.new("Toothpaste")
  301. p8.Material = Enum.Material.SmoothPlastic
  302. p8.Reflectance = 0.30000001192093
  303. p8.CFrame = CFrame.new(-0.0911709517, 16.9988403, 24.124567, 4.67748862e-008, -1.07413611e-009, -1, -2.01272679e-012, 1.0000627, 5.5175492e-010, 1.0000627, -2.01271768e-012, 3.99425133e-008)
  304. p8.CanCollide = false
  305. p8.Locked = true
  306. p8.FormFactor = Enum.FormFactor.Custom
  307. p8.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  308. p8.BottomSurface = Enum.SurfaceType.Smooth
  309. p8.TopSurface = Enum.SurfaceType.Smooth
  310. b8 = Instance.new("SpecialMesh", p8)
  311. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  312. b8.TextureId = ""
  313. b8.MeshType = Enum.MeshType.FileMesh
  314. b8.Name = "Mesh"
  315. b8.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  316. p9 = Instance.new("Part", m)
  317. p9.BrickColor = BrickColor.new("Toothpaste")
  318. p9.Material = Enum.Material.SmoothPlastic
  319. p9.Reflectance = 0.30000001192093
  320. p9.CFrame = CFrame.new(0.0817780346, 17.0240288, 24.112257, 4.72262052e-008, -1.18238208e-009, -1, -3.01911295e-012, 1.00007105, 6.59998722e-010, 1.00007105, -3.01909929e-012, 3.94915567e-008)
  321. p9.CanCollide = false
  322. p9.Locked = true
  323. p9.FormFactor = Enum.FormFactor.Custom
  324. p9.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  325. p9.BottomSurface = Enum.SurfaceType.Smooth
  326. p9.TopSurface = Enum.SurfaceType.Smooth
  327. b9 = Instance.new("SpecialMesh", p9)
  328. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  329. b9.TextureId = ""
  330. b9.MeshType = Enum.MeshType.FileMesh
  331. b9.Name = "Mesh"
  332. b9.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  333. p10 = Instance.new("Part", m)
  334. p10.BrickColor = BrickColor.new("Toothpaste")
  335. p10.Material = Enum.Material.SmoothPlastic
  336. p10.Reflectance = 0.30000001192093
  337. p10.CFrame = CFrame.new(-0.00128594786, 17.3279648, 23.4923096, -1, -1.29062894e-009, -3.96357436e-009, 7.68243857e-010, 1.00007939, 4.02548698e-012, -4.68392258e-009, -4.02549782e-012, -1.00007939)
  338. p10.CanCollide = false
  339. p10.Locked = true
  340. p10.FormFactor = Enum.FormFactor.Custom
  341. p10.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  342. p10.BottomSurface = Enum.SurfaceType.Smooth
  343. p10.TopSurface = Enum.SurfaceType.Smooth
  344. b10 = Instance.new("SpecialMesh", p10)
  345. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  346. b10.TextureId = ""
  347. b10.MeshType = Enum.MeshType.FileMesh
  348. b10.Name = "Mesh"
  349. b10.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  350. p11 = Instance.new("Part", m)
  351. p11.BrickColor = BrickColor.new("Toothpaste")
  352. p11.Material = Enum.Material.Neon
  353. p11.Reflectance = 0.5
  354. p11.Transparency = 0.30000001192093
  355. p11.CFrame = CFrame.new(-0.00582293561, 17.1578236, 24.0415058, -1, -3.45386226e-008, 8.19521944e-008, -8.65539533e-008, 0.342050195, -0.939775169, -5.14234655e-009, -0.939775169, -0.342050195)
  356. p11.CanCollide = false
  357. p11.Locked = true
  358. p11.FormFactor = Enum.FormFactor.Custom
  359. p11.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  360. b11 = Instance.new("SpecialMesh", p11)
  361. b11.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  362. b11.TextureId = ""
  363. b11.MeshType = Enum.MeshType.FileMesh
  364. b11.Name = "Mesh"
  365. b11.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  366. p12 = Instance.new("Part", m)
  367. p12.BrickColor = BrickColor.new("Toothpaste")
  368. p12.Material = Enum.Material.SmoothPlastic
  369. p12.Reflectance = 0.30000001192093
  370. p12.CFrame = CFrame.new(0.081781067, 17.6252537, 24.1378975, 4.85987641e-008, -1.50826196e-009, -1, 0, 1.00009632, 9.8587094e-010, 1.00009632, 0, 3.81200884e-008)
  371. p12.CanCollide = false
  372. p12.Locked = true
  373. p12.FormFactor = Enum.FormFactor.Custom
  374. p12.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  375. p12.BottomSurface = Enum.SurfaceType.Smooth
  376. p12.TopSurface = Enum.SurfaceType.Smooth
  377. b12 = Instance.new("SpecialMesh", p12)
  378. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  379. b12.TextureId = ""
  380. b12.MeshType = Enum.MeshType.FileMesh
  381. b12.Name = "Mesh"
  382. b12.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  383. p13 = Instance.new("Part", m)
  384. p13.BrickColor = BrickColor.new("Toothpaste")
  385. p13.Material = Enum.Material.SmoothPlastic
  386. p13.Reflectance = 0.30000001192093
  387. p13.CFrame = CFrame.new(-0.0911709294, 17.6003609, 24.1255779, 4.90500973e-008, -1.61651148e-009, -1, -1.00640351e-012, 1.00010467, 1.09411835e-009, 1.00010467, -1.00639896e-012, 3.76691176e-008)
  388. p13.CanCollide = false
  389. p13.Locked = true
  390. p13.FormFactor = Enum.FormFactor.Custom
  391. p13.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  392. p13.BottomSurface = Enum.SurfaceType.Smooth
  393. p13.TopSurface = Enum.SurfaceType.Smooth
  394. b13 = Instance.new("SpecialMesh", p13)
  395. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  396. b13.TextureId = ""
  397. b13.MeshType = Enum.MeshType.FileMesh
  398. b13.Name = "Mesh"
  399. b13.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  400. p14 = Instance.new("Part", m)
  401. p14.BrickColor = BrickColor.new("Really black")
  402. p14.Material = Enum.Material.Neon
  403. p14.Reflectance = 0.5
  404. p14.Transparency = 0.0099999997764826
  405. p14.CFrame = CFrame.new(-0.00582291186, 17.1595592, 24.0385437, -1, -3.59332226e-008, 8.17913985e-008, -8.62302869e-008, 0.342058837, -0.939798892, -6.50784671e-009, -0.939798892, -0.342058837)
  406. p14.CanCollide = false
  407. p14.Locked = true
  408. p14.FormFactor = Enum.FormFactor.Custom
  409. p14.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  410. b14 = Instance.new("SpecialMesh", p14)
  411. b14.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  412. b14.TextureId = ""
  413. b14.MeshType = Enum.MeshType.FileMesh
  414. b14.Name = "Mesh"
  415. b14.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  416. p15 = Instance.new("Part", m)
  417. p15.BrickColor = BrickColor.new("Toothpaste")
  418. p15.Material = Enum.Material.SmoothPlastic
  419. p15.Reflectance = 0.30000001192093
  420. p15.CFrame = CFrame.new(0.0817780942, 17.6473274, 24.125988, 4.99642638e-008, -1.83414528e-009, -1, 0, 1.00012159, 1.31174716e-009, 1.00012159, 0, 3.67556794e-008)
  421. p15.CanCollide = false
  422. p15.Locked = true
  423. p15.FormFactor = Enum.FormFactor.Custom
  424. p15.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  425. p15.BottomSurface = Enum.SurfaceType.Smooth
  426. p15.TopSurface = Enum.SurfaceType.Smooth
  427. b15 = Instance.new("SpecialMesh", p15)
  428. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  429. b15.TextureId = ""
  430. b15.MeshType = Enum.MeshType.FileMesh
  431. b15.Name = "Mesh"
  432. b15.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  433. p16 = Instance.new("Part", m)
  434. p16.BrickColor = BrickColor.new("Really black")
  435. p16.Material = Enum.Material.Neon
  436. p16.Reflectance = 0.5
  437. p16.Transparency = 0.0099999997764826
  438. p16.CFrame = CFrame.new(-0.00581388921, 17.3299732, 23.85042, 1, -6.70165434e-009, -1.94239758e-009, -1.41999779e-009, 1.00637185e-012, 1.00012994, 7.42203454e-009, -1.00012994, -1.00642454e-012)
  439. p16.CanCollide = false
  440. p16.Locked = true
  441. p16.FormFactor = Enum.FormFactor.Custom
  442. p16.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  443. b16 = Instance.new("SpecialMesh", p16)
  444. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  445. b16.TextureId = ""
  446. b16.MeshType = Enum.MeshType.FileMesh
  447. b16.Name = "Mesh"
  448. b16.Scale = Vector3.new(0.115295447, 0.288239002, 0.115295798)
  449. p17 = Instance.new("Part", m)
  450. p17.BrickColor = BrickColor.new("Toothpaste")
  451. p17.Material = Enum.Material.Neon
  452. p17.Reflectance = 0.5
  453. p17.Transparency = 0.30000001192093
  454. p17.CFrame = CFrame.new(-0.00582687836, 17.033802, 24.0114479, -1, -3.73345159e-008, 8.16281727e-008, -8.59066134e-008, 0.34206748, -0.939822674, -7.88048204e-009, -0.939822674, -0.34206748)
  455. p17.CanCollide = false
  456. p17.Locked = true
  457. p17.FormFactor = Enum.FormFactor.Custom
  458. p17.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  459. b17 = Instance.new("SpecialMesh", p17)
  460. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  461. b17.TextureId = ""
  462. b17.MeshType = Enum.MeshType.FileMesh
  463. b17.Name = "Mesh"
  464. b17.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  465. p18 = Instance.new("Part", m)
  466. p18.BrickColor = BrickColor.new("Really black")
  467. p18.Material = Enum.Material.Neon
  468. p18.Reflectance = 0.5
  469. p18.Transparency = 0.0099999997764826
  470. p18.CFrame = CFrame.new(-0.00582286948, 17.506052, 24.0348091, 1, -6.42979714e-009, -4.6364903e-009, -1.63763048e-009, -0.342070431, 0.939830661, 8.34332603e-009, -0.939830661, -0.342070431)
  471. p18.CanCollide = false
  472. p18.Locked = true
  473. p18.FormFactor = Enum.FormFactor.Custom
  474. p18.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  475. b18 = Instance.new("SpecialMesh", p18)
  476. b18.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  477. b18.TextureId = ""
  478. b18.MeshType = Enum.MeshType.FileMesh
  479. b18.Name = "Mesh"
  480. b18.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  481. p19 = Instance.new("Part", m)
  482. p19.BrickColor = BrickColor.new("Toothpaste")
  483. p19.Material = Enum.Material.SmoothPlastic
  484. p19.Reflectance = 0.30000001192093
  485. p19.CFrame = CFrame.new(-0.091168873, 17.626297, 24.1393166, 5.18002103e-008, -2.26601116e-009, -1, 2.98023224e-008, 1.00015533, 1.74360792e-009, 1.00015533, -2.98023224e-008, 3.49211859e-008)
  486. p19.CanCollide = false
  487. p19.Locked = true
  488. p19.FormFactor = Enum.FormFactor.Custom
  489. p19.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  490. p19.BottomSurface = Enum.SurfaceType.Smooth
  491. p19.TopSurface = Enum.SurfaceType.Smooth
  492. b19 = Instance.new("SpecialMesh", p19)
  493. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  494. b19.TextureId = ""
  495. b19.MeshType = Enum.MeshType.FileMesh
  496. b19.Name = "Mesh"
  497. b19.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  498. p20 = Instance.new("Part", m)
  499. p20.BrickColor = BrickColor.new("Toothpaste")
  500. p20.Material = Enum.Material.Neon
  501. p20.Reflectance = 0.5
  502. p20.Transparency = 0.30000001192093
  503. p20.CFrame = CFrame.new(-0.00582686067, 17.6325226, 24.0075035, 1, -7.21604465e-009, -5.15064613e-009, -1.85186089e-009, -0.342076212, 0.939846516, 9.25801658e-009, -0.939846516, -0.342076212)
  504. p20.CanCollide = false
  505. p20.Locked = true
  506. p20.FormFactor = Enum.FormFactor.Custom
  507. p20.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  508. b20 = Instance.new("SpecialMesh", p20)
  509. b20.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  510. b20.TextureId = ""
  511. b20.MeshType = Enum.MeshType.FileMesh
  512. b20.Name = "Mesh"
  513. b20.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  514. p21 = Instance.new("Part", m)
  515. p21.BrickColor = BrickColor.new("Really black")
  516. p21.Material = Enum.Material.Neon
  517. p21.Reflectance = 0.5
  518. p21.Transparency = 0.0099999997764826
  519. p21.CFrame = CFrame.new(-0.00582685182, 17.6313725, 24.0041409, 1, -7.61518404e-009, -5.40870415e-009, -1.95783967e-009, -0.342079103, 0.939854443, 9.72134995e-009, -0.939854443, -0.342079103)
  520. p21.CanCollide = false
  521. p21.Locked = true
  522. p21.FormFactor = Enum.FormFactor.Custom
  523. p21.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  524. b21 = Instance.new("SpecialMesh", p21)
  525. b21.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  526. b21.TextureId = ""
  527. b21.MeshType = Enum.MeshType.FileMesh
  528. b21.Name = "Mesh"
  529. b21.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  530. p22 = Instance.new("Part", m)
  531. p22.BrickColor = BrickColor.new("Toothpaste")
  532. p22.Material = Enum.Material.Neon
  533. p22.Reflectance = 0.5
  534. p22.Transparency = 0.30000001192093
  535. p22.CFrame = CFrame.new(-0.00581384357, 17.3308601, 23.8497276, 1, -9.4642818e-009, -2.58623145e-009, -2.06381934e-009, -5.96046448e-008, 1.00018072, 1.0184686e-008, -1.00018072, -5.96046448e-008)
  536. p22.CanCollide = false
  537. p22.Locked = true
  538. p22.FormFactor = Enum.FormFactor.Custom
  539. p22.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  540. b22 = Instance.new("SpecialMesh", p22)
  541. b22.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  542. b22.TextureId = ""
  543. b22.MeshType = Enum.MeshType.FileMesh
  544. b22.Name = "Mesh"
  545. b22.Scale = Vector3.new(0.182045415, 0.455114096, 0.182045907)
  546. p23 = Instance.new("Part", m)
  547. p23.BrickColor = BrickColor.new("Toothpaste")
  548. p23.Material = Enum.Material.SmoothPlastic
  549. p23.Reflectance = 0.30000001192093
  550. p23.CFrame = CFrame.new(0.0817781463, 17.6018543, 24.1276073, 5.3636704e-008, -2.69449041e-009, -1, 5.96041367e-008, 1.00018907, 2.17207852e-009, 1.00018907, -5.96061511e-008, 3.30861596e-008)
  551. p23.CanCollide = false
  552. p23.Locked = true
  553. p23.FormFactor = Enum.FormFactor.Custom
  554. p23.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  555. p23.BottomSurface = Enum.SurfaceType.Smooth
  556. p23.TopSurface = Enum.SurfaceType.Smooth
  557. b23 = Instance.new("SpecialMesh", p23)
  558. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  559. b23.TextureId = ""
  560. b23.MeshType = Enum.MeshType.FileMesh
  561. b23.Name = "Mesh"
  562. b23.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  563. p24 = Instance.new("Part", m)
  564. p24.BrickColor = BrickColor.new("Toothpaste")
  565. p24.Material = Enum.Material.SmoothPlastic
  566. p24.Reflectance = 0.30000001192093
  567. p24.CFrame = CFrame.new(0.0817811489, 17.0261841, 24.1403275, 5.40880798e-008, -2.80274981e-009, -1, 5.96036287e-008, 1.00019741, 2.28033592e-009, 1.00019741, -5.96076575e-008, 3.26351461e-008)
  568. p24.CanCollide = false
  569. p24.Locked = true
  570. p24.FormFactor = Enum.FormFactor.Custom
  571. p24.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  572. p24.BottomSurface = Enum.SurfaceType.Smooth
  573. p24.TopSurface = Enum.SurfaceType.Smooth
  574. b24 = Instance.new("SpecialMesh", p24)
  575. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  576. b24.TextureId = ""
  577. b24.MeshType = Enum.MeshType.FileMesh
  578. b24.Name = "Mesh"
  579. b24.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  580. p25 = Instance.new("Part", m)
  581. p25.BrickColor = BrickColor.new("Toothpaste")
  582. p25.Material = Enum.Material.SmoothPlastic
  583. p25.Reflectance = 0.30000001192093
  584. p25.CFrame = CFrame.new(-0.0911658406, 17.3279057, 24.1985741, 5.45394592e-008, -2.9110101e-009, -1, 5.96031207e-008, 1.00020576, 2.38859421e-009, 1.00020576, -5.96091638e-008, 3.21841291e-008)
  585. p25.CanCollide = false
  586. p25.Locked = true
  587. p25.FormFactor = Enum.FormFactor.Custom
  588. p25.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  589. p25.BottomSurface = Enum.SurfaceType.Smooth
  590. p25.TopSurface = Enum.SurfaceType.Smooth
  591. b25 = Instance.new("SpecialMesh", p25)
  592. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  593. b25.TextureId = ""
  594. b25.MeshType = Enum.MeshType.FileMesh
  595. b25.Name = "Mesh"
  596. b25.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  597. p26 = Instance.new("Part", m)
  598. p26.BrickColor = BrickColor.new("Toothpaste")
  599. p26.Material = Enum.Material.SmoothPlastic
  600. p26.Reflectance = 0.30000001192093
  601. p26.CFrame = CFrame.new(0.0817781538, 17.0480747, 24.1282158, 5.49908421e-008, -3.01927128e-009, -1, 5.96026126e-008, 1.0002141, 2.49685339e-009, 1.0002141, -5.96106702e-008, 3.17331086e-008)
  602. p26.CanCollide = false
  603. p26.Locked = true
  604. p26.FormFactor = Enum.FormFactor.Custom
  605. p26.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  606. p26.BottomSurface = Enum.SurfaceType.Smooth
  607. p26.TopSurface = Enum.SurfaceType.Smooth
  608. b26 = Instance.new("SpecialMesh", p26)
  609. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  610. b26.TextureId = ""
  611. b26.MeshType = Enum.MeshType.FileMesh
  612. b26.Name = "Mesh"
  613. b26.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  614. p27 = Instance.new("Part", m)
  615. p27.BrickColor = BrickColor.new("Toothpaste")
  616. p27.Material = Enum.Material.Neon
  617. p27.Reflectance = 0.5
  618. p27.Transparency = 0.30000001192093
  619. p27.CFrame = CFrame.new(-0.0058228299, 17.5086784, 24.0401821, 1, -9.95665062e-009, -6.94975455e-009, -2.60511146e-009, -0.342096329, 0.93990171, 1.2448691e-008, -0.93990171, -0.342096329)
  620. p27.CanCollide = false
  621. p27.Locked = true
  622. p27.FormFactor = Enum.FormFactor.Custom
  623. p27.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  624. b27 = Instance.new("SpecialMesh", p27)
  625. b27.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  626. b27.TextureId = ""
  627. b27.MeshType = Enum.MeshType.FileMesh
  628. b27.Name = "Mesh"
  629. b27.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  630. p28 = Instance.new("Part", m)
  631. p28.BrickColor = BrickColor.new("Toothpaste")
  632. p28.Material = Enum.Material.SmoothPlastic
  633. p28.Reflectance = 0.30000001192093
  634. p28.CFrame = CFrame.new(-0.0911708325, 17.0483608, 24.128624, 5.59055877e-008, -3.23352145e-009, -1, 5.96046448e-008, 1.00023103, 2.71109712e-009, 1.00023103, -5.96046448e-008, 3.08190948e-008)
  635. p28.CanCollide = false
  636. p28.Locked = true
  637. p28.FormFactor = Enum.FormFactor.Custom
  638. p28.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  639. p28.BottomSurface = Enum.SurfaceType.Smooth
  640. p28.TopSurface = Enum.SurfaceType.Smooth
  641. b28 = Instance.new("SpecialMesh", p28)
  642. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  643. b28.TextureId = ""
  644. b28.MeshType = Enum.MeshType.FileMesh
  645. b28.Name = "Mesh"
  646. b28.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  647. p29 = Instance.new("Part", m)
  648. p29.BrickColor = BrickColor.new("Toothpaste")
  649. p29.Material = Enum.Material.SmoothPlastic
  650. p29.Reflectance = 0.30000001192093
  651. p29.CFrame = CFrame.new(-0.0911708325, 17.0268955, 24.1163101, 5.63569813e-008, -3.34178551e-009, -1, 5.96041367e-008, 1.00023937, 2.81935919e-009, 1.00023937, -5.96061511e-008, 3.03680636e-008)
  652. p29.CanCollide = false
  653. p29.Locked = true
  654. p29.FormFactor = Enum.FormFactor.Custom
  655. p29.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  656. p29.BottomSurface = Enum.SurfaceType.Smooth
  657. p29.TopSurface = Enum.SurfaceType.Smooth
  658. b29 = Instance.new("SpecialMesh", p29)
  659. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  660. b29.TextureId = ""
  661. b29.MeshType = Enum.MeshType.FileMesh
  662. b29.Name = "Mesh"
  663. b29.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  664. p30 = Instance.new("Part", m)
  665. p30.BrickColor = BrickColor.new("Toothpaste")
  666. p30.Material = Enum.Material.SmoothPlastic
  667. p30.Reflectance = 0.30000001192093
  668. p30.CFrame = CFrame.new(-0.0911708325, 17.6495552, 24.1290302, 5.68083784e-008, -3.45005047e-009, -1, 5.96036287e-008, 1.00024772, 2.92762214e-009, 1.00024772, -5.96076575e-008, 2.99170289e-008)
  669. p30.CanCollide = false
  670. p30.Locked = true
  671. p30.FormFactor = Enum.FormFactor.Custom
  672. p30.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  673. p30.BottomSurface = Enum.SurfaceType.Smooth
  674. p30.TopSurface = Enum.SurfaceType.Smooth
  675. b30 = Instance.new("SpecialMesh", p30)
  676. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  677. b30.TextureId = ""
  678. b30.MeshType = Enum.MeshType.FileMesh
  679. b30.Name = "Mesh"
  680. b30.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  681. p31 = Instance.new("Part", m)
  682. p31.BrickColor = BrickColor.new("Toothpaste")
  683. p31.Material = Enum.Material.SmoothPlastic
  684. p31.Reflectance = 0.30000001192093
  685. p31.CFrame = CFrame.new(0.0817831606, 17.3287735, 24.199791, 5.72597791e-008, -3.55831631e-009, -1, 5.96031207e-008, 1.00025606, 3.03588599e-009, 1.00025606, -5.96091638e-008, 2.94659888e-008)
  686. p31.CanCollide = false
  687. p31.Locked = true
  688. p31.FormFactor = Enum.FormFactor.Custom
  689. p31.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  690. p31.BottomSurface = Enum.SurfaceType.Smooth
  691. p31.TopSurface = Enum.SurfaceType.Smooth
  692. b31 = Instance.new("SpecialMesh", p31)
  693. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  694. b31.TextureId = ""
  695. b31.MeshType = Enum.MeshType.FileMesh
  696. b31.Name = "Mesh"
  697. b31.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  698. p32 = Instance.new("Part", m)
  699. p32.BrickColor = BrickColor.new("Toothpaste")
  700. p32.Material = Enum.Material.SmoothPlastic
  701. p32.Reflectance = 0.30000001192093
  702. p32.CFrame = CFrame.new(0.0817781538, 17.6282234, 24.1169167, 5.77111834e-008, -3.66658304e-009, -1, 5.96026126e-008, 1.00026441, 3.14415072e-009, 1.00026441, -5.96106702e-008, 2.90149451e-008)
  703. p32.CanCollide = false
  704. p32.Locked = true
  705. p32.FormFactor = Enum.FormFactor.Custom
  706. p32.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  707. p32.BottomSurface = Enum.SurfaceType.Smooth
  708. p32.TopSurface = Enum.SurfaceType.Smooth
  709. b32 = Instance.new("SpecialMesh", p32)
  710. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  711. b32.TextureId = ""
  712. b32.MeshType = Enum.MeshType.FileMesh
  713. b32.Name = "Mesh"
  714. b32.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  715. p33 = Instance.new("Part", m)
  716. p33.BrickColor = BrickColor.new("Toothpaste")
  717. p33.Material = Enum.Material.SmoothPlastic
  718. p33.Reflectance = 0.30000001192093
  719. p33.CFrame = CFrame.new(0.081783168, 17.3290653, 24.2001972, 5.81625947e-008, -3.77485065e-009, -1, 5.96021046e-008, 1.00027275, 3.25241634e-009, 1.00027275, -5.96121765e-008, 2.85638979e-008)
  720. p33.CanCollide = false
  721. p33.Locked = true
  722. p33.FormFactor = Enum.FormFactor.Custom
  723. p33.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  724. p33.BottomSurface = Enum.SurfaceType.Smooth
  725. p33.TopSurface = Enum.SurfaceType.Smooth
  726. b33 = Instance.new("SpecialMesh", p33)
  727. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  728. b33.TextureId = ""
  729. b33.MeshType = Enum.MeshType.FileMesh
  730. b33.Name = "Mesh"
  731. b33.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  732. p34 = Instance.new("Part", m)
  733. p34.BrickColor = BrickColor.new("Toothpaste")
  734. p34.Material = Enum.Material.SmoothPlastic
  735. p34.Reflectance = 0.30000001192093
  736. p34.CFrame = CFrame.new(-0.0911688283, 17.027607, 24.1423588, 5.86140096e-008, -3.88311916e-009, -1, 5.96015965e-008, 1.0002811, 3.36068284e-009, 1.0002811, -5.96136829e-008, 2.81128472e-008)
  737. p34.CanCollide = false
  738. p34.Locked = true
  739. p34.FormFactor = Enum.FormFactor.Custom
  740. p34.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  741. p34.BottomSurface = Enum.SurfaceType.Smooth
  742. p34.TopSurface = Enum.SurfaceType.Smooth
  743. b34 = Instance.new("SpecialMesh", p34)
  744. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  745. b34.TextureId = ""
  746. b34.MeshType = Enum.MeshType.FileMesh
  747. b34.Name = "Mesh"
  748. b34.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  749. p35 = Instance.new("Part", m)
  750. p35.BrickColor = BrickColor.new("Toothpaste")
  751. p35.Material = Enum.Material.Neon
  752. p35.CFrame = CFrame.new(0.00079318881, 16.6618919, 24.1201324, 1.48590857e-007, 7.99790578e-005, -1, -0.996490002, 0.0871035904, 6.82584687e-006, 0.0871035904, 0.996490002, 7.96798267e-005)
  753. p35.CanCollide = false
  754. p35.Locked = true
  755. p35.FormFactor = Enum.FormFactor.Custom
  756. p35.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  757. p35.BottomSurface = Enum.SurfaceType.Smooth
  758. p35.TopSurface = Enum.SurfaceType.Smooth
  759. b35 = Instance.new("SpecialMesh", p35)
  760. b35.MeshType = Enum.MeshType.Sphere
  761. b35.Name = "Mesh"
  762. b35.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  763. p36 = Instance.new("Part", m)
  764. p36.BrickColor = BrickColor.new("Toothpaste")
  765. p36.Material = Enum.Material.Neon
  766. p36.CFrame = CFrame.new(0.000820193964, 17.8605766, 24.1365757, -6.68205757e-008, -7.99445916e-005, 1, 0.966234148, -0.25882116, -2.06344412e-005, 0.25882116, 0.966234148, 7.72948988e-005)
  767. p36.CanCollide = false
  768. p36.Locked = true
  769. p36.FormFactor = Enum.FormFactor.Custom
  770. p36.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  771. p36.BottomSurface = Enum.SurfaceType.Smooth
  772. p36.TopSurface = Enum.SurfaceType.Smooth
  773. b36 = Instance.new("SpecialMesh", p36)
  774. b36.MeshType = Enum.MeshType.Sphere
  775. b36.Name = "Mesh"
  776. b36.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  777. p37 = Instance.new("Part", m)
  778. p37.BrickColor = BrickColor.new("Toothpaste")
  779. p37.Material = Enum.Material.Neon
  780. p37.CFrame = CFrame.new(0.000820202637, 18.0012093, 24.120554, -5.89434421e-008, -7.99551053e-005, 1, 0.996507406, -0.087105006, -6.91361038e-006, 0.087105006, 0.996507406, 7.97143366e-005)
  781. p37.CanCollide = false
  782. p37.Locked = true
  783. p37.FormFactor = Enum.FormFactor.Custom
  784. p37.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  785. p37.BottomSurface = Enum.SurfaceType.Smooth
  786. p37.TopSurface = Enum.SurfaceType.Smooth
  787. b37 = Instance.new("SpecialMesh", p37)
  788. b37.MeshType = Enum.MeshType.Sphere
  789. b37.Name = "Mesh"
  790. b37.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  791. p38 = Instance.new("Part", m)
  792. p38.BrickColor = BrickColor.new("Toothpaste")
  793. p38.Material = Enum.Material.Neon
  794. p38.CFrame = CFrame.new(0.000820217829, 16.8028069, 24.1370029, 1.59892807e-007, 7.99534173e-005, -1, -0.966251016, 0.258825779, 2.05475681e-005, 0.258825779, 0.966251016, 7.72621788e-005)
  795. p38.CanCollide = false
  796. p38.Locked = true
  797. p38.FormFactor = Enum.FormFactor.Custom
  798. p38.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  799. p38.BottomSurface = Enum.SurfaceType.Smooth
  800. p38.TopSurface = Enum.SurfaceType.Smooth
  801. b38 = Instance.new("SpecialMesh", p38)
  802. b38.MeshType = Enum.MeshType.Sphere
  803. b38.Name = "Mesh"
  804. b38.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  805. p39 = Instance.new("Part", m)
  806. p39.BrickColor = BrickColor.new("Toothpaste")
  807. p39.Material = Enum.Material.SmoothPlastic
  808. p39.Reflectance = 0.20000000298023
  809. p39.Name = "Circle"
  810. p39.CFrame = CFrame.new(-0.00478575425, 17.3325539, 25.3061905, 1, -1.65309757e-008, -4.80958988e-008, 3.98413249e-008, -1.20796713e-007, 1.00032449, 1.86919351e-008, -1.00032449, -1.17619138e-007)
  811. p39.CanCollide = false
  812. p39.Locked = true
  813. p39.FormFactor = Enum.FormFactor.Custom
  814. p39.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  815. p39.BottomSurface = Enum.SurfaceType.Smooth
  816. p39.TopSurface = Enum.SurfaceType.Smooth
  817. b39 = Instance.new("CylinderMesh", p39)
  818. b39.Name = "Mesh"
  819. b39.Scale = Vector3.new(0.400286943, 0.423637152, 0.467001528)
  820. p40 = Instance.new("Part", m)
  821. p40.BrickColor = BrickColor.new("Really black")
  822. p40.Material = Enum.Material.SmoothPlastic
  823. p40.Name = "Block"
  824. p40.CFrame = CFrame.new(-0.00477576628, 17.2029457, 24.1130314, -1, -1.92565636e-007, 9.19236101e-008, -8.34673628e-008, -1.63873466e-007, -1.00033283, 1.56490643e-007, -1.00033283, 1.60694682e-007)
  825. p40.CanCollide = false
  826. p40.Locked = true
  827. p40.FormFactor = Enum.FormFactor.Custom
  828. p40.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  829. p40.BottomSurface = Enum.SurfaceType.Smooth
  830. p40.TopSurface = Enum.SurfaceType.Smooth
  831. b40 = Instance.new("SpecialMesh", p40)
  832. b40.MeshType = Enum.MeshType.Wedge
  833. b40.Name = "WedgeMesh"
  834. b40.Scale = Vector3.new(0.533715904, 0.200143531, 0.773888171)
  835. p41 = Instance.new("Part", m)
  836. p41.BrickColor = BrickColor.new("Really black")
  837. p41.Material = Enum.Material.SmoothPlastic
  838. p41.Name = "Block"
  839. p41.CFrame = CFrame.new(-0.0047757579, 17.4648685, 24.1132374, 1, 1.56679448e-007, -4.60911309e-009, -4.09274037e-009, -7.64161499e-008, 1.00034118, 1.93782128e-007, -1.00034118, -7.32396686e-008)
  840. p41.CanCollide = false
  841. p41.Locked = true
  842. p41.FormFactor = Enum.FormFactor.Custom
  843. p41.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  844. p41.BottomSurface = Enum.SurfaceType.Smooth
  845. p41.TopSurface = Enum.SurfaceType.Smooth
  846. b41 = Instance.new("SpecialMesh", p41)
  847. b41.MeshType = Enum.MeshType.Wedge
  848. b41.Name = "WedgeMesh"
  849. b41.Scale = Vector3.new(0.533715904, 0.200143531, 0.760545254)
  850. p42 = Instance.new("Part", m)
  851. p42.BrickColor = BrickColor.new("Really black")
  852. p42.Material = Enum.Material.SmoothPlastic
  853. p42.Name = "Circle"
  854. p42.CFrame = CFrame.new(-0.00477172295, 17.3329887, 25.4724331, -6.16132638e-008, -1, -5.37222489e-009, -7.64230563e-008, 3.54596352e-009, 1.00034952, -1.00034952, 2.36759945e-008, -7.32485077e-008)
  855. p42.CanCollide = false
  856. p42.Locked = true
  857. p42.FormFactor = Enum.FormFactor.Custom
  858. p42.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  859. p42.BottomSurface = Enum.SurfaceType.Smooth
  860. p42.TopSurface = Enum.SurfaceType.Smooth
  861. b42 = Instance.new("CylinderMesh", p42)
  862. b42.Name = "Mesh"
  863. b42.Scale = Vector3.new(0.667144895, 0.400287062, 0.667144954)
  864. p43 = Instance.new("Part", m)
  865. p43.BrickColor = BrickColor.new("Really black")
  866. p43.Material = Enum.Material.SmoothPlastic
  867. p43.Name = "Circle"
  868. p43.CFrame = CFrame.new(-0.00478171511, 17.3331299, 25.3588276, 1, -1.83507538e-008, -4.85290101e-008, 3.94096844e-008, -1.20799953e-007, 1.00035787, 2.05117843e-008, -1.00035787, -1.17623841e-007)
  869. p43.CanCollide = false
  870. p43.Locked = true
  871. p43.FormFactor = Enum.FormFactor.Custom
  872. p43.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  873. p43.BottomSurface = Enum.SurfaceType.Smooth
  874. p43.TopSurface = Enum.SurfaceType.Smooth
  875. b43 = Instance.new("CylinderMesh", p43)
  876. b43.Name = "Mesh"
  877. b43.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  878. p44 = Instance.new("Part", m)
  879. p44.BrickColor = BrickColor.new("Toothpaste")
  880. p44.Material = Enum.Material.Neon
  881. p44.CFrame = CFrame.new(0.0008072583, 17.5270195, 23.6464233, -9.34702626e-008, -7.99179834e-005, 1, 0.940010309, 0.342218608, 2.74279228e-005, -0.342218608, 0.940010309, 7.51314947e-005)
  882. p44.CanCollide = false
  883. p44.Locked = true
  884. p44.FormFactor = Enum.FormFactor.Custom
  885. p44.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  886. p44.BottomSurface = Enum.SurfaceType.Smooth
  887. p44.TopSurface = Enum.SurfaceType.Smooth
  888. b44 = Instance.new("SpecialMesh", p44)
  889. b44.MeshType = Enum.MeshType.Sphere
  890. b44.Name = "Mesh"
  891. b44.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  892. p45 = Instance.new("Part", m)
  893. p45.BrickColor = BrickColor.new("Toothpaste")
  894. p45.Material = Enum.Material.Neon
  895. p45.CFrame = CFrame.new(0.00080726546, 17.6835766, 23.6418419, -8.36607796e-008, -7.99489135e-005, 1, 0.766281724, 0.6430884, 5.14687308e-005, -0.6430884, 0.766281724, 6.12501899e-005)
  896. p45.CanCollide = false
  897. p45.Locked = true
  898. p45.FormFactor = Enum.FormFactor.Custom
  899. p45.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  900. p45.BottomSurface = Enum.SurfaceType.Smooth
  901. p45.TopSurface = Enum.SurfaceType.Smooth
  902. b45 = Instance.new("SpecialMesh", p45)
  903. b45.MeshType = Enum.MeshType.Sphere
  904. b45.Name = "Mesh"
  905. b45.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  906. p46 = Instance.new("Part", m)
  907. p46.BrickColor = BrickColor.new("Toothpaste")
  908. p46.Material = Enum.Material.Neon
  909. p46.CFrame = CFrame.new(0.000824270712, 17.7363682, 23.5002213, -7.51324478e-008, -7.99625777e-005, 1, 0.642974615, 0.766388476, 6.13208758e-005, -0.766388476, 0.642974615, 5.13978084e-005)
  910. p46.CanCollide = false
  911. p46.Locked = true
  912. p46.FormFactor = Enum.FormFactor.Custom
  913. p46.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  914. p46.BottomSurface = Enum.SurfaceType.Smooth
  915. p46.TopSurface = Enum.SurfaceType.Smooth
  916. b46 = Instance.new("SpecialMesh", p46)
  917. b46.MeshType = Enum.MeshType.Sphere
  918. b46.Name = "Mesh"
  919. b46.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  920. p47 = Instance.new("Part", m)
  921. p47.BrickColor = BrickColor.new("Really black")
  922. p47.Material = Enum.Material.SmoothPlastic
  923. p47.Name = "Handle"
  924. p47.CFrame = CFrame.new(-0.00476768985, 17.3337212, 24.8452072, 1, -2.01071089e-008, -4.89962986e-008, 3.89482011e-008, -1.52160879e-007, 1.0003922, 2.22717063e-008, -1.0003922, -1.45863055e-007)
  925. p47.CanCollide = false
  926. p47.Locked = true
  927. p47.FormFactor = Enum.FormFactor.Custom
  928. p47.Size = Vector3.new(0.341090173, 1.06951797, 0.341090739)
  929. p47.BottomSurface = Enum.SurfaceType.Smooth
  930. p47.TopSurface = Enum.SurfaceType.Smooth
  931. b47 = Instance.new("CylinderMesh", p47)
  932. b47.Name = "Mesh"
  933. b47.Scale = Vector3.new(0.333572447, 1, 0.467001528)
  934. p48 = Instance.new("Part", m)
  935. p48.BrickColor = BrickColor.new("Really black")
  936. p48.Material = Enum.Material.SmoothPlastic
  937. p48.Name = "Block"
  938. p48.CFrame = CFrame.new(-0.00476769311, 17.1517487, 24.2165375, 1, 5.40123679e-009, -2.12932623e-008, -4.88056529e-009, -1.00040054, -1.51509539e-007, 2.20023999e-008, 1.45210194e-007, -1.00040054)
  939. p48.CanCollide = false
  940. p48.Locked = true
  941. p48.FormFactor = Enum.FormFactor.Custom
  942. p48.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  943. p48.BottomSurface = Enum.SurfaceType.Smooth
  944. p48.TopSurface = Enum.SurfaceType.Smooth
  945. b48 = Instance.new("SpecialMesh", p48)
  946. b48.MeshType = Enum.MeshType.Wedge
  947. b48.Name = "WedgeMesh"
  948. b48.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  949. p49 = Instance.new("Part", m)
  950. p49.BrickColor = BrickColor.new("Really black")
  951. p49.Material = Enum.Material.SmoothPlastic
  952. p49.Name = "Block"
  953. p49.CFrame = CFrame.new(-0.00476768566, 17.5161419, 24.2167358, -1, -9.29322965e-008, -2.1751827e-008, -8.24696684e-008, 1.00040889, -1.51509795e-007, -2.24609593e-008, -1.45212695e-007, -1.00040889)
  954. p49.CanCollide = false
  955. p49.Locked = true
  956. p49.FormFactor = Enum.FormFactor.Custom
  957. p49.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  958. p49.BottomSurface = Enum.SurfaceType.Smooth
  959. p49.TopSurface = Enum.SurfaceType.Smooth
  960. b49 = Instance.new("SpecialMesh", p49)
  961. b49.MeshType = Enum.MeshType.Wedge
  962. b49.Name = "WedgeMesh"
  963. b49.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  964. p50 = Instance.new("Part", m)
  965. p50.BrickColor = BrickColor.new("Really black")
  966. p50.Material = Enum.Material.SmoothPlastic
  967. p50.Name = "Block"
  968. p50.CFrame = CFrame.new(-0.00477567874, 17.6471729, 24.1264477, 1, -2.22103953e-008, -5.61780666e-009, -5.09713516e-009, -1.51509767e-007, 1.00041723, 2.29195471e-008, -1.00041723, -1.45214912e-007)
  969. p50.CanCollide = false
  970. p50.Locked = true
  971. p50.FormFactor = Enum.FormFactor.Custom
  972. p50.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  973. p50.BottomSurface = Enum.SurfaceType.Smooth
  974. p50.TopSurface = Enum.SurfaceType.Smooth
  975. b50 = Instance.new("BlockMesh", p50)
  976. b50.Name = "Mesh"
  977. b50.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  978. p51 = Instance.new("Part", m)
  979. p51.BrickColor = BrickColor.new("Really black")
  980. p51.Material = Enum.Material.SmoothPlastic
  981. p51.Name = "Block"
  982. p51.CFrame = CFrame.new(-0.0047756657, 17.0212688, 24.126646, 1, -2.26689671e-008, -5.72609116e-009, -5.20541787e-009, -1.51510022e-007, 1.00042558, 2.33781261e-008, -1.00042558, -1.45217129e-007)
  983. p51.CanCollide = false
  984. p51.Locked = true
  985. p51.FormFactor = Enum.FormFactor.Custom
  986. p51.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  987. p51.BottomSurface = Enum.SurfaceType.Smooth
  988. p51.TopSurface = Enum.SurfaceType.Smooth
  989. b51 = Instance.new("BlockMesh", p51)
  990. b51.Name = "Mesh"
  991. b51.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  992. p52 = Instance.new("Part", m)
  993. p52.BrickColor = BrickColor.new("Really black")
  994. p52.Material = Enum.Material.SmoothPlastic
  995. p52.Name = "Block"
  996. p52.CFrame = CFrame.new(-0.00477165729, 17.334446, 24.1609974, 1, -2.31275425e-008, -5.83437654e-009, -5.31370148e-009, -1.51510278e-007, 1.00043392, 2.38367086e-008, -1.00043392, -1.45219346e-007)
  997. p52.CanCollide = false
  998. p52.Locked = true
  999. p52.FormFactor = Enum.FormFactor.Custom
  1000. p52.Size = Vector3.new(0.341090173, 0.341090739, 0.523380995)
  1001. p52.BottomSurface = Enum.SurfaceType.Smooth
  1002. p52.TopSurface = Enum.SurfaceType.Smooth
  1003. b52 = Instance.new("BlockMesh", p52)
  1004. b52.Name = "Mesh"
  1005. b52.Scale = Vector3.new(0.533715785, 0.0667145103, 1)
  1006. p53 = Instance.new("Part", m)
  1007. p53.BrickColor = BrickColor.new("Deep orange")
  1008. p53.Material = Enum.Material.Neon
  1009. p53.Name = "Circle"
  1010. p53.CFrame = CFrame.new(-0.00477161724, 17.3345947, 25.4747982, -6.65724826e-008, -1, -6.5974981e-009, -1.07784714e-007, 4.76686246e-009, 1.00044227, -1.00044227, 1.87171736e-008, -1.01495679e-007)
  1011. p53.CanCollide = false
  1012. p53.Locked = true
  1013. p53.FormFactor = Enum.FormFactor.Custom
  1014. p53.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1015. p53.BottomSurface = Enum.SurfaceType.Smooth
  1016. p53.TopSurface = Enum.SurfaceType.Smooth
  1017. b53 = Instance.new("CylinderMesh", p53)
  1018. b53.Name = "Mesh"
  1019. b53.Scale = Vector3.new(0.533715785, 0.467001498, 0.42771104)
  1020. p54 = Instance.new("Part", m)
  1021. p54.BrickColor = BrickColor.new("Really black")
  1022. p54.Material = Enum.Material.Neon
  1023. p54.Name = "Circle"
  1024. p54.CFrame = CFrame.new(-0.00477160793, 17.3347397, 25.4750118, -6.70239686e-008, -1, -6.7057826e-009, -1.07784665e-007, 4.87513985e-009, 1.00045061, -1.00045061, 1.82660429e-008, -1.01497477e-007)
  1025. p54.CanCollide = false
  1026. p54.Locked = true
  1027. p54.FormFactor = Enum.FormFactor.Custom
  1028. p54.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1029. p54.BottomSurface = Enum.SurfaceType.Smooth
  1030. p54.TopSurface = Enum.SurfaceType.Smooth
  1031. b54 = Instance.new("CylinderMesh", p54)
  1032. b54.Name = "Mesh"
  1033. b54.Scale = Vector3.new(0.533715785, 0.490944952, 0.188277081)
  1034. p55 = Instance.new("Part", m)
  1035. p55.BrickColor = BrickColor.new("Toothpaste")
  1036. p55.Material = Enum.Material.Neon
  1037. p55.CFrame = CFrame.new(-0.00487261312, 17.3358631, 24.8431625, 1.57569445e-007, 7.99628251e-005, -1, -1.00045907, -7.75639055e-005, -1.52042574e-007, -7.75701919e-005, 1.00045907, 7.99498011e-005)
  1038. p55.CanCollide = false
  1039. p55.Locked = true
  1040. p55.FormFactor = Enum.FormFactor.Custom
  1041. p55.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1042. p55.BottomSurface = Enum.SurfaceType.Smooth
  1043. p55.TopSurface = Enum.SurfaceType.Smooth
  1044. b55 = Instance.new("SpecialMesh", p55)
  1045. b55.MeshType = Enum.MeshType.Sphere
  1046. b55.Name = "Mesh"
  1047. b55.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1048. p56 = Instance.new("Part", m)
  1049. p56.BrickColor = BrickColor.new("Toothpaste")
  1050. p56.Material = Enum.Material.Neon
  1051. p56.CFrame = CFrame.new(-0.00489160931, 17.3360176, 24.6020527, 1.57678528e-007, 7.9963298e-005, -1, -1.00046766, -7.75645822e-005, -1.51934799e-007, -7.75708468e-005, 1.00046766, 7.99500122e-005)
  1052. p56.CanCollide = false
  1053. p56.Locked = true
  1054. p56.FormFactor = Enum.FormFactor.Custom
  1055. p56.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1056. p56.BottomSurface = Enum.SurfaceType.Smooth
  1057. p56.TopSurface = Enum.SurfaceType.Smooth
  1058. b56 = Instance.new("SpecialMesh", p56)
  1059. b56.MeshType = Enum.MeshType.Sphere
  1060. b56.Name = "Mesh"
  1061. b56.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1062. p57 = Instance.new("Part", m)
  1063. p57.BrickColor = BrickColor.new("Toothpaste")
  1064. p57.Material = Enum.Material.Neon
  1065. p57.CFrame = CFrame.new(-0.00487858616, 17.3361664, 25.1031246, 1.57787611e-007, 7.9963771e-005, -1, -1.00047624, -7.75652588e-005, -1.51827024e-007, -7.75715016e-005, 1.00047624, 7.99502232e-005)
  1066. p57.CanCollide = false
  1067. p57.Locked = true
  1068. p57.FormFactor = Enum.FormFactor.Custom
  1069. p57.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1070. p57.BottomSurface = Enum.SurfaceType.Smooth
  1071. p57.TopSurface = Enum.SurfaceType.Smooth
  1072. b57 = Instance.new("SpecialMesh", p57)
  1073. b57.MeshType = Enum.MeshType.Sphere
  1074. b57.Name = "Mesh"
  1075. b57.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1076. p58 = Instance.new("Part", m)
  1077. p58.BrickColor = BrickColor.new("Really black")
  1078. p58.Material = Enum.Material.SmoothPlastic
  1079. p58.Name = "Block"
  1080. p58.CFrame = CFrame.new(-0.00478160288, 16.9596806, 24.0546551, 1, 1.48938852e-007, -1.81332169e-007, 1.68964405e-007, -1.07752044e-007, 1.0004847, 2.01558578e-007, -1.0004847, -1.01534603e-007)
  1081. p58.CanCollide = false
  1082. p58.Locked = true
  1083. p58.FormFactor = Enum.FormFactor.Custom
  1084. p58.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1085. p58.BottomSurface = Enum.SurfaceType.Smooth
  1086. p58.TopSurface = Enum.SurfaceType.Smooth
  1087. b58 = Instance.new("SpecialMesh", p58)
  1088. b58.MeshType = Enum.MeshType.Wedge
  1089. b58.Name = "WedgeMesh"
  1090. b58.Scale = Vector3.new(0.533715785, 0.43030858, 0.0667144954)
  1091. p59 = Instance.new("Part", m)
  1092. p59.BrickColor = BrickColor.new("Really black")
  1093. p59.Material = Enum.Material.SmoothPlastic
  1094. p59.Name = "Block"
  1095. p59.CFrame = CFrame.new(-0.00478159869, 17.711134, 24.0548553, -1, -2.01216096e-007, 9.40176719e-008, -8.1391633e-008, -1.95222029e-007, -1.00049305, 1.47857392e-007, -1.00049305, 1.89007366e-007)
  1096. p59.CanCollide = false
  1097. p59.Locked = true
  1098. p59.FormFactor = Enum.FormFactor.Custom
  1099. p59.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1100. p59.BottomSurface = Enum.SurfaceType.Smooth
  1101. p59.TopSurface = Enum.SurfaceType.Smooth
  1102. b59 = Instance.new("SpecialMesh", p59)
  1103. b59.MeshType = Enum.MeshType.Wedge
  1104. b59.Name = "WedgeMesh"
  1105. b59.Scale = Vector3.new(0.533715785, 0.430308461, 0.066714488)
  1106. p60 = Instance.new("Part", m)
  1107. p60.BrickColor = BrickColor.new("Really black")
  1108. p60.Material = Enum.Material.SmoothPlastic
  1109. p60.Name = "Block"
  1110. p60.CFrame = CFrame.new(-0.00477158185, 16.9599533, 24.151247, -1, -6.06010246e-008, -6.70318911e-009, 6.18247498e-009, 1.95222356e-007, 1.00050139, -1.15000091e-007, 1.00050139, -1.89009967e-007)
  1111. p60.CanCollide = false
  1112. p60.Locked = true
  1113. p60.FormFactor = Enum.FormFactor.Custom
  1114. p60.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1115. p60.BottomSurface = Enum.SurfaceType.Smooth
  1116. p60.TopSurface = Enum.SurfaceType.Smooth
  1117. b60 = Instance.new("SpecialMesh", p60)
  1118. b60.MeshType = Enum.MeshType.Wedge
  1119. b60.Name = "WedgeMesh"
  1120. b60.Scale = Vector3.new(0.533715785, 0.133429006, 0.0667144954)
  1121. p61 = Instance.new("Part", m)
  1122. p61.BrickColor = BrickColor.new("Really black")
  1123. p61.Material = Enum.Material.SmoothPlastic
  1124. p61.Name = "Block"
  1125. p61.CFrame = CFrame.new(-0.00477157859, 17.7114239, 24.1514492, 1, 1.14698487e-007, -8.06112936e-008, -9.3758139e-008, 1.07750871e-007, -1.00050974, -5.9477852e-008, 1.00050974, 1.01540152e-007)
  1126. p61.CanCollide = false
  1127. p61.Locked = true
  1128. p61.FormFactor = Enum.FormFactor.Custom
  1129. p61.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1130. p61.BottomSurface = Enum.SurfaceType.Smooth
  1131. p61.TopSurface = Enum.SurfaceType.Smooth
  1132. b61 = Instance.new("SpecialMesh", p61)
  1133. b61.MeshType = Enum.MeshType.Wedge
  1134. b61.Name = "WedgeMesh"
  1135. b61.Scale = Vector3.new(0.533715785, 0.133429006, 0.066714488)
  1136. p62 = Instance.new("Part", m)
  1137. p62.BrickColor = BrickColor.new("Toothpaste")
  1138. p62.Material = Enum.Material.Neon
  1139. p62.CFrame = CFrame.new(0.00079741748, 16.927433, 23.5033798, -1.67933258e-008, 7.99278641e-005, -1, -0.643061221, -0.766491234, -6.12398726e-005, -0.766491234, 0.643061221, 5.13551895e-005)
  1140. p62.CanCollide = false
  1141. p62.Locked = true
  1142. p62.FormFactor = Enum.FormFactor.Custom
  1143. p62.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1144. p62.BottomSurface = Enum.SurfaceType.Smooth
  1145. p62.TopSurface = Enum.SurfaceType.Smooth
  1146. b62 = Instance.new("SpecialMesh", p62)
  1147. b62.MeshType = Enum.MeshType.Sphere
  1148. b62.Name = "Mesh"
  1149. b62.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1150. p63 = Instance.new("Part", m)
  1151. p63.BrickColor = BrickColor.new("Toothpaste")
  1152. p63.Material = Enum.Material.Neon
  1153. p63.CFrame = CFrame.new(0.000782429241, 17.1366653, 23.6502075, -3.03043635e-009, 7.99336412e-005, -1, -0.940160811, -0.342273146, -2.7342714e-005, -0.342273146, 0.940160811, 7.50943873e-005)
  1154. p63.CanCollide = false
  1155. p63.Locked = true
  1156. p63.FormFactor = Enum.FormFactor.Custom
  1157. p63.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1158. p63.BottomSurface = Enum.SurfaceType.Smooth
  1159. p63.TopSurface = Enum.SurfaceType.Smooth
  1160. b63 = Instance.new("SpecialMesh", p63)
  1161. b63.MeshType = Enum.MeshType.Sphere
  1162. b63.Name = "Mesh"
  1163. b63.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1164. p64 = Instance.new("Part", m)
  1165. p64.BrickColor = BrickColor.new("Toothpaste")
  1166. p64.Material = Enum.Material.Neon
  1167. p64.Name = "Blade"
  1168. p64.CFrame = CFrame.new(0.000641356688, 17.335743, 20.9020824, 7.15408532e-009, 7.99334157e-005, -1, -1.00053501, -7.74263026e-005, 4.5656634e-010, -7.74243817e-005, 1.00053501, 7.99181071e-005)
  1169. p64.CanCollide = false
  1170. p64.Locked = true
  1171. p64.FormFactor = Enum.FormFactor.Custom
  1172. p64.Size = Vector3.new(0.341090173, 5.01877022, 0.341090739)
  1173. p64.BottomSurface = Enum.SurfaceType.Smooth
  1174. p64.TopSurface = Enum.SurfaceType.Smooth
  1175. b64 = Instance.new("SpecialMesh", p64)
  1176. b64.MeshType = Enum.MeshType.Sphere
  1177. b64.Name = "Mesh"
  1178. b64.Scale = Vector3.new(0.787231028, 1, 0.333572537)
  1179. p65 = Instance.new("Part", m)
  1180. p65.BrickColor = BrickColor.new("Toothpaste")
  1181. p65.Material = Enum.Material.Neon
  1182. p65.CFrame = CFrame.new(0.00080744864, 16.980526, 23.6458302, -1.31658453e-008, 7.99317349e-005, -1, -0.766410947, -0.643196464, -5.13876876e-005, -0.643196464, 0.766410947, 6.12100048e-005)
  1183. p65.CanCollide = false
  1184. p65.Locked = true
  1185. p65.FormFactor = Enum.FormFactor.Custom
  1186. p65.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  1187. p65.BottomSurface = Enum.SurfaceType.Smooth
  1188. p65.TopSurface = Enum.SurfaceType.Smooth
  1189. b65 = Instance.new("SpecialMesh", p65)
  1190. b65.MeshType = Enum.MeshType.Sphere
  1191. b65.Name = "Mesh"
  1192. b65.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  1193. p66 = Instance.new("Part", m)
  1194. p66.BrickColor = BrickColor.new("Toothpaste")
  1195. p66.Material = Enum.Material.Neon
  1196. p66.CFrame = CFrame.new(0.000547376403, 17.3361092, 21.0322189, 7.37782102e-009, 7.99343616e-005, -1, -1.00055218, -7.74254731e-005, 6.87577995e-010, -7.74232903e-005, 1.00055218, 7.99185291e-005)
  1197. p66.CanCollide = false
  1198. p66.Locked = true
  1199. p66.FormFactor = Enum.FormFactor.Custom
  1200. p66.Size = Vector3.new(0.341090173, 3.76720667, 0.341090739)
  1201. p66.BottomSurface = Enum.SurfaceType.Smooth
  1202. p66.TopSurface = Enum.SurfaceType.Smooth
  1203. b66 = Instance.new("SpecialMesh", p66)
  1204. b66.MeshType = Enum.MeshType.Sphere
  1205. b66.Name = "Mesh"
  1206. b66.Scale = Vector3.new(0.920660138, 1, 0.333572537)
  1207. p67 = Instance.new("Part", m)
  1208. p67.BrickColor = BrickColor.new("Toothpaste")
  1209. p67.Material = Enum.Material.SmoothPlastic
  1210. p67.Reflectance = 0.30000001192093
  1211. p67.Name = "Circle"
  1212. p67.CFrame = CFrame.new(-0.00478551397, 17.336647, 24.348484, 1, 3.08064045e-008, -3.62128816e-008, -5.07114386e-008, 2.21291032e-007, -1.00056064, 3.00788088e-008, 1.00056064, 2.23485017e-007)
  1213. p67.CanCollide = false
  1214. p67.Locked = true
  1215. p67.FormFactor = Enum.FormFactor.Custom
  1216. p67.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1217. p67.BottomSurface = Enum.SurfaceType.Smooth
  1218. p67.TopSurface = Enum.SurfaceType.Smooth
  1219. b67 = Instance.new("CylinderMesh", p67)
  1220. b67.Name = "Mesh"
  1221. b67.Scale = Vector3.new(0.400286883, 0.533716023, 0.467001468)
  1222. p68 = Instance.new("Part", m)
  1223. p68.BrickColor = BrickColor.new("Toothpaste")
  1224. p68.Material = Enum.Material.SmoothPlastic
  1225. p68.Reflectance = 0.30000001192093
  1226. p68.Name = "Circle"
  1227. p68.CFrame = CFrame.new(-0.00478850631, 17.3367958, 24.2894917, 1, 3.12650421e-008, -3.61045807e-008, -5.08201019e-008, 2.21288374e-007, -1.00056899, 3.05374463e-008, 1.00056899, 2.23491384e-007)
  1228. p68.CanCollide = false
  1229. p68.Locked = true
  1230. p68.FormFactor = Enum.FormFactor.Custom
  1231. p68.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1232. p68.BottomSurface = Enum.SurfaceType.Smooth
  1233. p68.TopSurface = Enum.SurfaceType.Smooth
  1234. b68 = Instance.new("CylinderMesh", p68)
  1235. b68.Name = "Mesh"
  1236. b68.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  1237. p69 = Instance.new("Part", m)
  1238. p69.BrickColor = BrickColor.new("Really black")
  1239. p69.Material = Enum.Material.SmoothPlastic
  1240. p69.Name = "Block"
  1241. p69.CFrame = CFrame.new(-0.00478150323, 17.0238495, 24.0341129, -1, -2.05844628e-007, 9.51298489e-008, -8.02730185e-008, -1.76898766e-007, -1.00057733, 1.43231958e-007, -1.00057733, 1.79107602e-007)
  1242. p69.CanCollide = false
  1243. p69.Locked = true
  1244. p69.FormFactor = Enum.FormFactor.Custom
  1245. p69.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1246. p69.BottomSurface = Enum.SurfaceType.Smooth
  1247. p69.TopSurface = Enum.SurfaceType.Smooth
  1248. b69 = Instance.new("SpecialMesh", p69)
  1249. b69.MeshType = Enum.MeshType.Wedge
  1250. b69.Name = "WedgeMesh"
  1251. b69.Scale = Vector3.new(0.533715904, 0.29687953, 0.300215244)
  1252. p70 = Instance.new("Part", m)
  1253. p70.BrickColor = BrickColor.new("Really black")
  1254. p70.Material = Enum.Material.SmoothPlastic
  1255. p70.Name = "Block"
  1256. p70.CFrame = CFrame.new(-0.00478149857, 17.6501446, 24.0343189, 1, 1.43400342e-007, -7.81537324e-009, -7.30847916e-009, -8.94201833e-008, 1.00058568, 2.07126419e-007, -1.00058568, -9.16313638e-008)
  1257. p70.CanCollide = false
  1258. p70.Locked = true
  1259. p70.FormFactor = Enum.FormFactor.Custom
  1260. p70.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1261. p70.BottomSurface = Enum.SurfaceType.Smooth
  1262. p70.TopSurface = Enum.SurfaceType.Smooth
  1263. b70 = Instance.new("SpecialMesh", p70)
  1264. b70.MeshType = Enum.MeshType.Wedge
  1265. b70.Name = "WedgeMesh"
  1266. b70.Scale = Vector3.new(0.533715785, 0.29687953, 0.300215244)
  1267. w1 = Instance.new("Weld", p1)
  1268. w1.Name = "Part_Weld"
  1269. w1.Part0 = p1
  1270. w1.C0 = CFrame.new(-24.1230564, -16.9977722, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1271. w1.Part1 = p2
  1272. w1.C1 = CFrame.new(-24.1105461, -17.623558, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1273. w2 = Instance.new("Weld", p2)
  1274. w2.Name = "Part_Weld"
  1275. w2.Part0 = p2
  1276. w2.C0 = CFrame.new(-24.1105461, -17.623558, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1277. w2.Part1 = p3
  1278. w2.C1 = CFrame.new(-0.00129098259, -17.3265915, 23.4164867, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1279. w3 = Instance.new("Weld", p3)
  1280. w3.Name = "Part_Weld"
  1281. w3.Part0 = p3
  1282. w3.C0 = CFrame.new(-0.00129098259, -17.3265915, 23.4164867, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1283. w3.Part1 = p4
  1284. w3.C1 = CFrame.new(0.00478598243, 23.979847, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1285. w4 = Instance.new("Weld", p4)
  1286. w4.Name = "Part_Weld"
  1287. w4.Part0 = p4
  1288. w4.C0 = CFrame.new(0.00478598243, 23.979847, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1289. w4.Part1 = p5
  1290. w4.C1 = CFrame.new(-0.00582549348, 16.7313747, 24.2155914, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1291. w5 = Instance.new("Weld", p5)
  1292. w5.Name = "Part_Weld"
  1293. w5.Part0 = p5
  1294. w5.C0 = CFrame.new(-0.00582549348, 16.7313747, 24.2155914, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1295. w5.Part1 = p6
  1296. w5.C1 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1297. w6 = Instance.new("Weld", p6)
  1298. w6.Name = "Part_Weld"
  1299. w6.Part0 = p6
  1300. w6.C0 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1301. w6.Part1 = p7
  1302. w6.C1 = CFrame.new(-0.00128898257, -17.3265896, 23.452898, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1303. w7 = Instance.new("Weld", p7)
  1304. w7.Name = "Part_Weld"
  1305. w7.Part0 = p7
  1306. w7.C0 = CFrame.new(-0.00128898257, -17.3265896, 23.452898, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1307. w7.Part1 = p8
  1308. w7.C1 = CFrame.new(-24.1230564, -16.9977722, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1309. w8 = Instance.new("Weld", p8)
  1310. w8.Name = "Part_Weld"
  1311. w8.Part0 = p8
  1312. w8.C0 = CFrame.new(-24.1230564, -16.9977722, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1313. w8.Part1 = p9
  1314. w8.C1 = CFrame.new(-24.1105442, -17.0228176, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1315. w9 = Instance.new("Weld", p9)
  1316. w9.Name = "Part_Weld"
  1317. w9.Part0 = p9
  1318. w9.C0 = CFrame.new(-24.1105442, -17.0228176, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1319. w9.Part1 = p10
  1320. w9.C1 = CFrame.new(-0.00128598255, -17.3265877, 23.4904461, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1321. w10 = Instance.new("Weld", p10)
  1322. w10.Name = "Part_Weld"
  1323. w10.Part0 = p10
  1324. w10.C0 = CFrame.new(-0.00128598255, -17.3265877, 23.4904461, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1325. w10.Part1 = p11
  1326. w10.C1 = CFrame.new(-0.00582148228, 16.721838, 24.3436203, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1327. w11 = Instance.new("Weld", p11)
  1328. w11.Name = "Part_Weld"
  1329. w11.Part0 = p11
  1330. w11.C0 = CFrame.new(-0.00582148228, 16.721838, 24.3436203, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1331. w11.Part1 = p12
  1332. w11.C1 = CFrame.new(-24.1355762, -17.6235542, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1333. w12 = Instance.new("Weld", p12)
  1334. w12.Name = "Part_Weld"
  1335. w12.Part0 = p12
  1336. w12.C0 = CFrame.new(-24.1355762, -17.6235542, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1337. w12.Part1 = p13
  1338. w12.C1 = CFrame.new(-24.1230564, -17.5985184, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1339. w13 = Instance.new("Weld", p13)
  1340. w13.Name = "Part_Weld"
  1341. w13.Part0 = p13
  1342. w13.C0 = CFrame.new(-24.1230564, -17.5985184, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1343. w13.Part1 = p14
  1344. w13.C1 = CFrame.new(-0.00582148228, 16.7180405, 24.3436241, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1345. w14 = Instance.new("Weld", p14)
  1346. w14.Name = "Part_Weld"
  1347. w14.Part0 = p14
  1348. w14.C0 = CFrame.new(-0.00582148228, 16.7180405, 24.3436241, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1349. w14.Part1 = p15
  1350. w14.C1 = CFrame.new(-24.1230602, -17.6451797, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1351. w15 = Instance.new("Weld", p15)
  1352. w15.Name = "Part_Weld"
  1353. w15.Part0 = p15
  1354. w15.C0 = CFrame.new(-24.1230602, -17.6451797, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1355. w15.Part1 = p16
  1356. w15.C1 = CFrame.new(0.00581398234, 23.8473282, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1357. w16 = Instance.new("Weld", p16)
  1358. w16.Name = "Part_Weld"
  1359. w16.Part0 = p16
  1360. w16.C0 = CFrame.new(0.00581398234, 23.8473282, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1361. w16.Part1 = p17
  1362. w16.C1 = CFrame.new(-0.00582549348, 16.7351685, 24.2155857, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1363. w17 = Instance.new("Weld", p17)
  1364. w17.Name = "Part_Weld"
  1365. w17.Part0 = p17
  1366. w17.C0 = CFrame.new(-0.00582549348, 16.7351685, 24.2155857, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1367. w17.Part1 = p18
  1368. w17.C1 = CFrame.new(0.00582298217, 28.5685654, -8.22870255, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1369. w18 = Instance.new("Weld", p18)
  1370. w18.Name = "Part_Weld"
  1371. w18.Part0 = p18
  1372. w18.C0 = CFrame.new(0.00582298217, 28.5685654, -8.22870255, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1373. w18.Part1 = p19
  1374. w18.C1 = CFrame.new(-24.1355762, -17.6235542, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1375. w19 = Instance.new("Weld", p19)
  1376. w19.Name = "Part_Weld"
  1377. w19.Part0 = p19
  1378. w19.C0 = CFrame.new(-24.1355762, -17.6235542, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1379. w19.Part1 = p20
  1380. w19.C1 = CFrame.new(0.0058269822, 28.5856762, -8.35672283, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1381. w20 = Instance.new("Weld", p20)
  1382. w20.Name = "Part_Weld"
  1383. w20.Part0 = p20
  1384. w20.C0 = CFrame.new(0.0058269822, 28.5856762, -8.35672283, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1385. w20.Part1 = p21
  1386. w20.C1 = CFrame.new(0.0058269822, 28.5818806, -8.35671997, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1387. w21 = Instance.new("Weld", p21)
  1388. w21.Name = "Part_Weld"
  1389. w21.Part0 = p21
  1390. w21.C0 = CFrame.new(0.0058269822, 28.5818806, -8.35671997, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1391. w21.Part1 = p22
  1392. w21.C1 = CFrame.new(0.00581398234, 23.8454285, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1393. w22 = Instance.new("Weld", p22)
  1394. w22.Name = "Part_Weld"
  1395. w22.Part0 = p22
  1396. w22.C0 = CFrame.new(0.00581398234, 23.8454285, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1397. w22.Part1 = p23
  1398. w22.C1 = CFrame.new(-24.1230564, -17.5985184, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1399. w23 = Instance.new("Weld", p23)
  1400. w23.Name = "Part_Weld"
  1401. w23.Part0 = p23
  1402. w23.C0 = CFrame.new(-24.1230564, -17.5985184, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1403. w23.Part1 = p24
  1404. w23.C1 = CFrame.new(-24.1355724, -17.0228157, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1405. w24 = Instance.new("Weld", p24)
  1406. w24.Name = "Part_Weld"
  1407. w24.Part0 = p24
  1408. w24.C0 = CFrame.new(-24.1355724, -17.0228157, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1409. w24.Part1 = p25
  1410. w24.C1 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1411. w25 = Instance.new("Weld", p25)
  1412. w25.Name = "Part_Weld"
  1413. w25.Part0 = p25
  1414. w25.C0 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1415. w25.Part1 = p26
  1416. w25.C1 = CFrame.new(-24.1230602, -17.0444183, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1417. w26 = Instance.new("Weld", p26)
  1418. w26.Name = "Part_Weld"
  1419. w26.Part0 = p26
  1420. w26.C0 = CFrame.new(-24.1230602, -17.0444183, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1421. w26.Part1 = p27
  1422. w26.C1 = CFrame.new(0.00582298217, 28.5723495, -8.22870922, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1423. w27 = Instance.new("Weld", p27)
  1424. w27.Name = "Part_Weld"
  1425. w27.Part0 = p27
  1426. w27.C0 = CFrame.new(0.00582298217, 28.5723495, -8.22870922, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1427. w27.Part1 = p28
  1428. w27.C1 = CFrame.new(-24.1230602, -17.0444183, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1429. w28 = Instance.new("Weld", p28)
  1430. w28.Name = "Part_Weld"
  1431. w28.Part0 = p28
  1432. w28.C0 = CFrame.new(-24.1230602, -17.0444183, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1433. w28.Part1 = p29
  1434. w28.C1 = CFrame.new(-24.1105461, -17.0228176, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1435. w29 = Instance.new("Weld", p29)
  1436. w29.Name = "Part_Weld"
  1437. w29.Part0 = p29
  1438. w29.C0 = CFrame.new(-24.1105461, -17.0228176, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1439. w29.Part1 = p30
  1440. w29.C1 = CFrame.new(-24.1230602, -17.6451797, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1441. w30 = Instance.new("Weld", p30)
  1442. w30.Name = "Part_Weld"
  1443. w30.Part0 = p30
  1444. w30.C0 = CFrame.new(-24.1230602, -17.6451797, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1445. w30.Part1 = p31
  1446. w30.C1 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1447. w31 = Instance.new("Weld", p31)
  1448. w31.Name = "Part_Weld"
  1449. w31.Part0 = p31
  1450. w31.C0 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1451. w31.Part1 = p32
  1452. w31.C1 = CFrame.new(-24.1105461, -17.623558, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1453. w32 = Instance.new("Weld", p32)
  1454. w32.Name = "Part_Weld"
  1455. w32.Part0 = p32
  1456. w32.C0 = CFrame.new(-24.1105461, -17.623558, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1457. w32.Part1 = p33
  1458. w32.C1 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1459. w33 = Instance.new("Weld", p33)
  1460. w33.Name = "Part_Weld"
  1461. w33.Part0 = p33
  1462. w33.C0 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1463. w33.Part1 = p34
  1464. w33.C1 = CFrame.new(-24.1355762, -17.0228157, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1465. w34 = Instance.new("Weld", p34)
  1466. w34.Name = "Part_Weld"
  1467. w34.Part0 = p34
  1468. w34.C0 = CFrame.new(-24.1355762, -17.0228157, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1469. w34.Part1 = p35
  1470. w34.C1 = CFrame.new(14.4940586, -25.472023, -0.00124175288, 1.43580564e-007, -0.996205807, 0.0870786756, 7.99639602e-005, 0.0870786756, 0.996205807, -1, 6.82021982e-006, 7.96725799e-005)
  1471. w35 = Instance.new("Weld", p35)
  1472. w35.Name = "Part_Weld"
  1473. w35.Part0 = p35
  1474. w35.C0 = CFrame.new(14.4940586, -25.472023, -0.00124175288, 1.43580564e-007, -0.996205807, 0.0870786756, 7.99639602e-005, 0.0870786756, 0.996205807, -1, 6.82021982e-006, 7.96725799e-005)
  1475. w35.Part1 = p36
  1476. w35.C1 = CFrame.new(-23.4905338, -18.6877365, -0.00231588027, -6.73044269e-008, 0.965950191, 0.258745164, -7.9960977e-005, -0.258745164, 0.965950191, 1, -2.06246077e-005, 7.72562125e-005)
  1477. w36 = Instance.new("Weld", p36)
  1478. w36.Name = "Part_Weld"
  1479. w36.Part0 = p36
  1480. w36.C0 = CFrame.new(-23.4905338, -18.6877365, -0.00231588027, -6.73044269e-008, 0.965950191, 0.258745164, -7.9960977e-005, -0.258745164, 0.965950191, 1, -2.06246077e-005, 7.72562125e-005)
  1481. w36.Part1 = p37
  1482. w36.C1 = CFrame.new(-20.0270557, -22.4545212, -0.00261686975, -5.65146365e-008, 0.996205807, 0.0870787427, -7.99718109e-005, -0.0870787427, 0.996205807, 1, -6.90764546e-006, 7.96737659e-005)
  1483. w37 = Instance.new("Weld", p37)
  1484. w37.Name = "Part_Weld"
  1485. w37.Part0 = p37
  1486. w37.C0 = CFrame.new(-20.0270557, -22.4545212, -0.00261686975, -5.65146365e-008, 0.996205807, 0.0870787427, -7.99718109e-005, -0.0870787427, 0.996205807, 1, -6.90764546e-006, 7.96737659e-005)
  1487. w37.Part1 = p38
  1488. w37.C1 = CFrame.new(9.9821434, -27.6539307, -0.00138907926, 1.51681888e-007, -0.965950251, 0.258745104, 7.99381232e-005, 0.258745104, 0.965950251, -1, 2.05371834e-005, 7.7255012e-005)
  1489. w38 = Instance.new("Weld", p38)
  1490. w38.Name = "Circle_Weld"
  1491. w38.Part0 = p38
  1492. w38.C0 = CFrame.new(9.9821434, -27.6539307, -0.00138907926, 1.51681888e-007, -0.965950251, 0.258745104, 7.99381232e-005, 0.258745104, 0.965950251, -1, 2.05371834e-005, 7.7255012e-005)
  1493. w38.Part1 = p39
  1494. w38.C1 = CFrame.new(0.0047852057, 25.2979832, -17.3269272, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1495. w39 = Instance.new("Weld", p39)
  1496. w39.Name = "Block_Weld"
  1497. w39.Part0 = p39
  1498. w39.C0 = CFrame.new(0.0047852057, 25.2979832, -17.3269272, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1499. w39.Part1 = p40
  1500. w39.C1 = CFrame.new(-0.0047786939, 24.1050091, 17.197216, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1501. w40 = Instance.new("Weld", p40)
  1502. w40.Name = "Block_Weld"
  1503. w40.Part0 = p40
  1504. w40.C0 = CFrame.new(-0.0047786939, 24.1050091, 17.197216, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1505. w40.Part1 = p41
  1506. w40.C1 = CFrame.new(0.00477176718, 24.105011, -17.4589081, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  1507. w41 = Instance.new("Weld", p41)
  1508. w41.Name = "Circle_Weld"
  1509. w41.Part0 = p41
  1510. w41.C0 = CFrame.new(0.00477176718, 24.105011, -17.4589081, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  1511. w41.Part1 = p42
  1512. w41.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1513. w42 = Instance.new("Weld", p42)
  1514. w42.Name = "Circle_Weld"
  1515. w42.Part0 = p42
  1516. w42.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1517. w42.Part1 = p43
  1518. w42.C1 = CFrame.new(0.00478120567, 25.3497562, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1519. w43 = Instance.new("Weld", p43)
  1520. w43.Name = "Part_Weld"
  1521. w43.Part0 = p43
  1522. w43.C0 = CFrame.new(0.00478120567, 25.3497562, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1523. w43.Part1 = p44
  1524. w43.C1 = CFrame.new(-8.3771925, -28.2052784, -0.00306228409, -8.2402039e-008, 0.939670146, -0.34209463, -7.99348854e-005, 0.34209463, 0.939670146, 1, 2.74226113e-005, 7.50846593e-005)
  1525. w44 = Instance.new("Weld", p44)
  1526. w44.Name = "Part_Weld"
  1527. w44.Part0 = p44
  1528. w44.C0 = CFrame.new(-8.3771925, -28.2052784, -0.00306228409, -8.2402039e-008, 0.939670146, -0.34209463, -7.99348854e-005, 0.34209463, 0.939670146, 1, 2.74226113e-005, 7.50846593e-005)
  1529. w44.Part1 = p45
  1530. w44.C1 = CFrame.new(1.65195179, -29.4663048, -0.00316305994, -6.7120709e-008, 0.765997827, -0.642849922, -7.99612535e-005, 0.642849922, 0.765997827, 1, 5.14543863e-005, 6.12074291e-005)
  1531. w45 = Instance.new("Weld", p45)
  1532. w45.Name = "Part_Weld"
  1533. w45.Part0 = p45
  1534. w45.C0 = CFrame.new(1.65195179, -29.4663048, -0.00316305994, -6.7120709e-008, 0.765997827, -0.642849922, -7.99612535e-005, 0.642849922, 0.765997827, 1, 5.14543863e-005, 6.12074291e-005)
  1535. w45.Part1 = p46
  1536. w45.C1 = CFrame.new(6.60119534, -28.6809769, -0.00311731314, -5.62940841e-008, 0.642730832, -0.766097665, -7.99720437e-005, 0.766097665, 0.642730832, 1, 6.13024604e-005, 5.13578198e-005)
  1537. w46 = Instance.new("Weld", p46)
  1538. w46.Name = "Handle_Weld"
  1539. w46.Part0 = p46
  1540. w46.C0 = CFrame.new(6.60119534, -28.6809769, -0.00311731314, -5.62940841e-008, 0.642730832, -0.766097665, -7.99720437e-005, 0.766097665, 0.642730832, 1, 6.13024604e-005, 5.13578198e-005)
  1541. w46.Part1 = p47
  1542. w46.C1 = CFrame.new(0.0047672065, 24.8354683, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1543. w47 = Instance.new("Weld", p47)
  1544. w47.Name = "Block_Weld"
  1545. w47.Part0 = p47
  1546. w47.C0 = CFrame.new(0.0047672065, 24.8354683, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1547. w47.Part1 = p48
  1548. w47.C1 = CFrame.new(0.00476798182, 17.1448765, 24.2068424, 1, 2.0706413e-010, 5.89352567e-010, 3.15302451e-010, -1.00000417, -1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1549. w48 = Instance.new("Weld", p48)
  1550. w48.Name = "Block_Weld"
  1551. w48.Part0 = p48
  1552. w48.C0 = CFrame.new(0.00476798182, 17.1448765, 24.2068424, 1, 2.0706413e-010, 5.89352567e-010, 3.15302451e-010, -1.00000417, -1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1553. w48.Part1 = p49
  1554. w48.C1 = CFrame.new(-0.00476645119, -17.5089798, 24.2068386, -1, -8.76302053e-008, -5.89353621e-010, -8.77380799e-008, 1.00000417, 1.22588393e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1555. w49 = Instance.new("Weld", p49)
  1556. w49.Name = "Block_Weld"
  1557. w49.Part0 = p49
  1558. w49.C0 = CFrame.new(-0.00476645119, -17.5089798, 24.2068386, -1, -8.76302053e-008, -5.89353621e-010, -8.77380799e-008, 1.00000417, 1.22588393e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1559. w49.Part1 = p50
  1560. w49.C1 = CFrame.new(0.00477598188, 24.1163845, -17.6398087, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1561. w50 = Instance.new("Weld", p50)
  1562. w50.Name = "Block_Weld"
  1563. w50.Part0 = p50
  1564. w50.C0 = CFrame.new(0.00477598188, 24.1163845, -17.6398087, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1565. w50.Part1 = p51
  1566. w50.C1 = CFrame.new(0.00477598188, 24.1163807, -17.0140247, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1567. w51 = Instance.new("Weld", p51)
  1568. w51.Name = "Block_Weld"
  1569. w51.Part0 = p51
  1570. w51.C0 = CFrame.new(0.00477598188, 24.1163807, -17.0140247, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1571. w51.Part1 = p52
  1572. w51.C1 = CFrame.new(0.00477198185, 24.1505146, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1573. w52 = Instance.new("Weld", p52)
  1574. w52.Name = "Circle_Weld"
  1575. w52.Part0 = p52
  1576. w52.C0 = CFrame.new(0.00477198185, 24.1505146, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1577. w52.Part1 = p53
  1578. w52.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1579. w53 = Instance.new("Weld", p53)
  1580. w53.Name = "Circle_Weld"
  1581. w53.Part0 = p53
  1582. w53.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1583. w53.Part1 = p54
  1584. w53.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1585. w54 = Instance.new("Weld", p54)
  1586. w54.Name = "Part_Weld"
  1587. w54.Part0 = p54
  1588. w54.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1589. w54.Part1 = p55
  1590. w54.C1 = CFrame.new(17.3298321, -24.83041, -0.00685525918, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1591. w55 = Instance.new("Weld", p55)
  1592. w55.Name = "Part_Weld"
  1593. w55.Part0 = p55
  1594. w55.C0 = CFrame.new(17.3298321, -24.83041, -0.00685525918, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1595. w55.Part1 = p56
  1596. w55.C1 = CFrame.new(17.3298187, -24.589201, -0.00685497746, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1597. w56 = Instance.new("Weld", p56)
  1598. w56.Name = "Part_Weld"
  1599. w56.Part0 = p56
  1600. w56.C0 = CFrame.new(17.3298187, -24.589201, -0.00685497746, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1601. w56.Part1 = p57
  1602. w56.C1 = CFrame.new(17.3298569, -25.0898247, -0.00688199606, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1603. w57 = Instance.new("Weld", p57)
  1604. w57.Name = "Block_Weld"
  1605. w57.Part0 = p57
  1606. w57.C0 = CFrame.new(17.3298569, -25.0898247, -0.00688199606, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1607. w57.Part1 = p58
  1608. w57.C1 = CFrame.new(0.00477481494, 24.0429974, -16.9514599, 1, 1.75053344e-007, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -1.75160864e-007, 1.00000417, 5.59724995e-008)
  1609. w58 = Instance.new("Weld", p58)
  1610. w58.Name = "Block_Weld"
  1611. w58.Part0 = p58
  1612. w58.C0 = CFrame.new(0.00477481494, 24.0429974, -16.9514599, 1, 1.75053344e-007, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -1.75160864e-007, 1.00000417, 5.59724995e-008)
  1613. w58.Part1 = p59
  1614. w58.C1 = CFrame.new(-0.00478463899, 24.0429974, 17.7023983, -1, -8.76302053e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380728e-008, -1.00000417, 3.14551158e-008)
  1615. w59 = Instance.new("Weld", p59)
  1616. w59.Name = "Block_Weld"
  1617. w59.Part0 = p59
  1618. w59.C0 = CFrame.new(-0.00478463899, 24.0429974, 17.7023983, -1, -8.76302053e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380728e-008, -1.00000417, 3.14551158e-008)
  1619. w59.Part1 = p60
  1620. w59.C1 = CFrame.new(-0.00476987194, -24.1391392, -16.9514465, -1, -2.07070638e-010, -8.80099833e-008, -8.7551598e-008, 3.14538156e-008, 1.00000417, -3.1531e-010, 1.00000417, -3.14548245e-008)
  1621. w60 = Instance.new("Weld", p60)
  1622. w60.Name = "Block_Weld"
  1623. w60.Part0 = p60
  1624. w60.C0 = CFrame.new(-0.00476987194, -24.1391392, -16.9514465, -1, -2.07070638e-010, -8.80099833e-008, -8.7551598e-008, 3.14538156e-008, 1.00000417, -3.1531e-010, 1.00000417, -3.14548245e-008)
  1625. w60.Part1 = p61
  1626. w60.C1 = CFrame.new(0.00477564055, -24.1391373, 17.7023945, 1, -8.72160655e-008, -8.68385541e-008, 8.72896635e-008, -5.59740911e-008, 1.00000417, -8.71074661e-008, -1.00000417, -5.59733735e-008)
  1627. w61 = Instance.new("Weld", p61)
  1628. w61.Name = "Part_Weld"
  1629. w61.Part0 = p61
  1630. w61.C0 = CFrame.new(0.00477564055, -24.1391373, 17.7023945, 1, -8.72160655e-008, -8.68385541e-008, 8.72896635e-008, -5.59740911e-008, 1.00000417, -8.71074661e-008, -1.00000417, -5.59733735e-008)
  1631. w61.Part1 = p62
  1632. w61.C1 = CFrame.new(28.8705769, -2.13716507, 0.000626247609, 3.0559022e-010, -0.642730772, -0.766097605, 7.99049012e-005, -0.766097605, 0.642730772, -1, -6.12150252e-005, 5.13566411e-005)
  1633. w62 = Instance.new("Weld", p62)
  1634. w62.Name = "Part_Weld"
  1635. w62.Part0 = p62
  1636. w62.C0 = CFrame.new(28.8705769, -2.13716507, 0.000626247609, 3.0559022e-010, -0.642730772, -0.766097605, 7.99049012e-005, -0.766097605, 0.642730772, -1, -6.12150252e-005, 5.13566411e-005)
  1637. w62.Part1 = p63
  1638. w62.C1 = CFrame.new(24.1805763, -16.3523483, -0.000524612726, 3.40151018e-010, -0.939669967, -0.3420946, 7.99047266e-005, -0.3420946, 0.939669967, -1, -2.73351798e-005, 7.50834879e-005)
  1639. w63 = Instance.new("Weld", p63)
  1640. w63.Name = "Blade_Weld"
  1641. w63.Part0 = p63
  1642. w63.C0 = CFrame.new(24.1805763, -16.3523483, -0.000524612726, 3.40151018e-010, -0.939669967, -0.3420946, 7.99047266e-005, -0.3420946, 0.939669967, -1, -2.73351798e-005, 7.50834879e-005)
  1643. w63.Part1 = p64
  1644. w63.C1 = CFrame.new(17.3280849, -20.8895588, -0.00102815893, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  1645. w64 = Instance.new("Weld", p64)
  1646. w64.Name = "Part_Weld"
  1647. w64.Part0 = p64
  1648. w64.C0 = CFrame.new(17.3280849, -20.8895588, -0.00102815893, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  1649. w64.Part1 = p65
  1650. w64.C1 = CFrame.new(28.1923103, -7.19278717, 0.000232279766, 3.23780114e-010, -0.765997767, -0.642849863, 7.99048503e-005, -0.642849863, 0.765997767, -1, -5.13669547e-005, 6.12062577e-005)
  1651. w65 = Instance.new("Weld", p65)
  1652. w65.Name = "Part_Weld"
  1653. w65.Part0 = p65
  1654. w65.C0 = CFrame.new(28.1923103, -7.19278717, 0.000232279766, 3.23780114e-010, -0.765997767, -0.642849863, 7.99048503e-005, -0.642849863, 0.765997767, -1, -5.13669547e-005, 6.12062577e-005)
  1655. w65.Part1 = p66
  1656. w65.C1 = CFrame.new(17.3281631, -21.0192661, -0.00113252318, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  1657. w66 = Instance.new("Weld", p66)
  1658. w66.Name = "Circle_Weld"
  1659. w66.Part0 = p66
  1660. w66.C0 = CFrame.new(17.3281631, -21.0192661, -0.00113252318, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  1661. w66.Part1 = p67
  1662. w66.C1 = CFrame.new(0.00478675682, -24.3348389, 17.3269215, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  1663. w67 = Instance.new("Weld", p67)
  1664. w67.Name = "Circle_Weld"
  1665. w67.Part0 = p67
  1666. w67.C0 = CFrame.new(0.00478675682, -24.3348389, 17.3269215, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  1667. w67.Part1 = p68
  1668. w67.C1 = CFrame.new(0.00478975661, -24.2756767, 17.3269253, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  1669. w68 = Instance.new("Weld", p68)
  1670. w68.Name = "Block_Weld"
  1671. w68.Part0 = p68
  1672. w68.C0 = CFrame.new(0.00478975661, -24.2756767, 17.3269253, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  1673. w68.Part1 = p69
  1674. w68.C1 = CFrame.new(-0.00478469487, 24.0202389, 17.0140171, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1675. w69 = Instance.new("Weld", p69)
  1676. w69.Name = "Block_Weld"
  1677. w69.Part0 = p69
  1678. w69.C0 = CFrame.new(-0.00478469487, 24.0202389, 17.0140171, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1679. w69.Part1 = p70
  1680. w69.C1 = CFrame.new(0.00477778213, 24.0202408, -17.6398048, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  1681. m.Parent = char
  1682. m:MakeJoints()
  1683. ----------------------------------------------------
  1684. local cor = Instance.new("Part", char.Sword)
  1685. cor.Name = "Thingy"
  1686. cor.Locked = true
  1687. cor.BottomSurface = 0
  1688. cor.CanCollide = false
  1689. cor.Size = Vector3.new(1, 1, 1)
  1690. cor.Transparency = 1
  1691. cor.TopSurface = 0
  1692. corw = Instance.new("Weld", cor)
  1693. corw.Part0 = rarm
  1694. corw.Part1 = cor
  1695. corw.C0 = CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0))
  1696. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1697. weld1 = Instance.new("Weld", char.Sword)
  1698. weld1.Part0 = cor
  1699. weld1.Part1 = char.Sword.Handle
  1700. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1701. ----------------------------------------------------
  1702. local m2 = Instance.new("Model")
  1703. m2.Name = "Wings"
  1704. p1 = Instance.new("Part", m2)
  1705. p1.BrickColor = BrickColor.new("Toothpaste")
  1706. p1.Material = Enum.Material.Neon
  1707. p1.CFrame = CFrame.new(28.7928066, 27.8741341, 25.9347725, -0.579227924, -0.579227805, -0.573576331, 0.707106769, -0.707106769, 0, -0.405579776, -0.405579716, 0.819152117)
  1708. p1.FormFactor = Enum.FormFactor.Custom
  1709. p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  1710. p1.BottomSurface = Enum.SurfaceType.Smooth
  1711. p1.TopSurface = Enum.SurfaceType.Smooth
  1712. b1 = Instance.new("SpecialMesh", p1)
  1713. b1.MeshType = Enum.MeshType.Sphere
  1714. b1.Name = "Mesh"
  1715. p2 = Instance.new("Part", m2)
  1716. p2.BrickColor = BrickColor.new("Toothpaste")
  1717. p2.Material = Enum.Material.SmoothPlastic
  1718. p2.Reflectance = 0.30000001192093
  1719. p2.CFrame = CFrame.new(23.8806973, 23.7568359, 26.9065781, -0.573576033, 0.346188396, -0.742403686, 0, -0.906307817, -0.422617972, -0.819152117, -0.24240382, 0.519836783)
  1720. p2.CanCollide = false
  1721. p2.FormFactor = Enum.FormFactor.Custom
  1722. p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1723. p2.BottomSurface = Enum.SurfaceType.Smooth
  1724. p2.TopSurface = Enum.SurfaceType.Smooth
  1725. b2 = Instance.new("SpecialMesh", p2)
  1726. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1727. b2.TextureId = ""
  1728. b2.MeshType = Enum.MeshType.FileMesh
  1729. b2.Name = "Mesh"
  1730. b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1731. p3 = Instance.new("Part", m2)
  1732. p3.BrickColor = BrickColor.new("Toothpaste")
  1733. p3.Material = Enum.Material.SmoothPlastic
  1734. p3.Reflectance = 0.30000001192093
  1735. p3.CFrame = CFrame.new(23.7651176, 23.6910381, 26.9875221, -0.573576033, 0.346188247, -0.742403686, -2.40360578e-007, -0.906307697, -0.422617912, -0.819152117, -0.242403969, 0.519836664)
  1736. p3.CanCollide = false
  1737. p3.FormFactor = Enum.FormFactor.Custom
  1738. p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1739. p3.BottomSurface = Enum.SurfaceType.Smooth
  1740. p3.TopSurface = Enum.SurfaceType.Smooth
  1741. b3 = Instance.new("SpecialMesh", p3)
  1742. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1743. b3.TextureId = ""
  1744. b3.MeshType = Enum.MeshType.FileMesh
  1745. b3.Name = "Mesh"
  1746. b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1747. p4 = Instance.new("Part", m2)
  1748. p4.BrickColor = BrickColor.new("Toothpaste")
  1749. p4.Material = Enum.Material.SmoothPlastic
  1750. p4.Reflectance = 0.30000001192093
  1751. p4.CFrame = CFrame.new(29.5663891, 25.8075085, 26.4371891, -0.573576391, 0.280166149, 0.769750714, 2.08616257e-007, -0.939692259, 0.342020333, 0.819151878, 0.196174487, 0.538985968)
  1752. p4.CanCollide = false
  1753. p4.FormFactor = Enum.FormFactor.Custom
  1754. p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1755. p4.BottomSurface = Enum.SurfaceType.Smooth
  1756. p4.TopSurface = Enum.SurfaceType.Smooth
  1757. b4 = Instance.new("SpecialMesh", p4)
  1758. b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1759. b4.TextureId = ""
  1760. b4.MeshType = Enum.MeshType.FileMesh
  1761. b4.Name = "Mesh"
  1762. b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1763. p5 = Instance.new("Part", m2)
  1764. p5.BrickColor = BrickColor.new("Toothpaste")
  1765. p5.Material = Enum.Material.SmoothPlastic
  1766. p5.Reflectance = 0.30000001192093
  1767. p5.CFrame = CFrame.new(23.880703, 23.7568455, 26.9065876, -0.573576212, 0.346188098, -0.742403805, -4.76837158e-007, -0.906307578, -0.422617912, -0.819152236, -0.242404133, 0.519836485)
  1768. p5.CanCollide = false
  1769. p5.FormFactor = Enum.FormFactor.Custom
  1770. p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1771. p5.BottomSurface = Enum.SurfaceType.Smooth
  1772. p5.TopSurface = Enum.SurfaceType.Smooth
  1773. b5 = Instance.new("SpecialMesh", p5)
  1774. b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1775. b5.TextureId = ""
  1776. b5.MeshType = Enum.MeshType.FileMesh
  1777. b5.Name = "Mesh"
  1778. b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1779. p6 = Instance.new("Part", m2)
  1780. p6.BrickColor = BrickColor.new("Toothpaste")
  1781. p6.Material = Enum.Material.SmoothPlastic
  1782. p6.Reflectance = 0.30000001192093
  1783. p6.CFrame = CFrame.new(23.6530266, 23.6272411, 27.0660267, -0.573576212, 0.346187949, -0.742403805, -7.17197622e-007, -0.906307459, -0.422617853, -0.819152236, -0.242404282, 0.519836366)
  1784. p6.CanCollide = false
  1785. p6.FormFactor = Enum.FormFactor.Custom
  1786. p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1787. p6.BottomSurface = Enum.SurfaceType.Smooth
  1788. p6.TopSurface = Enum.SurfaceType.Smooth
  1789. b6 = Instance.new("SpecialMesh", p6)
  1790. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1791. b6.TextureId = ""
  1792. b6.MeshType = Enum.MeshType.FileMesh
  1793. b6.Name = "Mesh"
  1794. b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1795. p7 = Instance.new("Part", m2)
  1796. p7.BrickColor = BrickColor.new("Toothpaste")
  1797. p7.Material = Enum.Material.SmoothPlastic
  1798. p7.Reflectance = 0.30000001192093
  1799. p7.CFrame = CFrame.new(23.7651253, 23.6910515, 26.9875393, -0.573576212, 0.3461878, -0.742403805, -9.57558086e-007, -0.90630734, -0.422617793, -0.819152236, -0.242404431, 0.519836247)
  1800. p7.CanCollide = false
  1801. p7.FormFactor = Enum.FormFactor.Custom
  1802. p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1803. p7.BottomSurface = Enum.SurfaceType.Smooth
  1804. p7.TopSurface = Enum.SurfaceType.Smooth
  1805. b7 = Instance.new("SpecialMesh", p7)
  1806. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1807. b7.TextureId = ""
  1808. b7.MeshType = Enum.MeshType.FileMesh
  1809. b7.Name = "Mesh"
  1810. b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1811. p8 = Instance.new("Part", m2)
  1812. p8.BrickColor = BrickColor.new("Toothpaste")
  1813. p8.Material = Enum.Material.SmoothPlastic
  1814. p8.Reflectance = 0.30000001192093
  1815. p8.CFrame = CFrame.new(23.6530304, 23.6272488, 27.0660381, -0.573576212, 0.346187651, -0.742403805, -1.19791855e-006, -0.90630722, -0.422617733, -0.819152236, -0.24240458, 0.519836128)
  1816. p8.CanCollide = false
  1817. p8.FormFactor = Enum.FormFactor.Custom
  1818. p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1819. p8.BottomSurface = Enum.SurfaceType.Smooth
  1820. p8.TopSurface = Enum.SurfaceType.Smooth
  1821. b8 = Instance.new("SpecialMesh", p8)
  1822. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1823. b8.TextureId = ""
  1824. b8.MeshType = Enum.MeshType.FileMesh
  1825. b8.Name = "Mesh"
  1826. b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1827. p9 = Instance.new("Part", m2)
  1828. p9.BrickColor = BrickColor.new("Toothpaste")
  1829. p9.Material = Enum.Material.SmoothPlastic
  1830. p9.Reflectance = 0.30000001192093
  1831. p9.CFrame = CFrame.new(30.2536392, 23.691061, 26.9184284, -0.573576212, -0.346188962, 0.74240309, 4.47034836e-007, -0.906307578, -0.422616601, 0.81915164, -0.242404819, 0.519836843)
  1832. p9.CanCollide = false
  1833. p9.FormFactor = Enum.FormFactor.Custom
  1834. p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1835. p9.BottomSurface = Enum.SurfaceType.Smooth
  1836. p9.TopSurface = Enum.SurfaceType.Smooth
  1837. b9 = Instance.new("SpecialMesh", p9)
  1838. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1839. b9.TextureId = ""
  1840. b9.MeshType = Enum.MeshType.FileMesh
  1841. b9.Name = "Mesh"
  1842. b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1843. p10 = Instance.new("Part", m2)
  1844. p10.BrickColor = BrickColor.new("Toothpaste")
  1845. p10.Material = Enum.Material.SmoothPlastic
  1846. p10.Reflectance = 0.30000001192093
  1847. p10.CFrame = CFrame.new(27.9471893, 26.8180733, 25.3034286, -0.573576212, 0.469845235, 0.671010077, 2.86794574e-007, -0.819150567, 0.573576927, 0.81915164, 0.328989446, 0.469847172)
  1848. p10.CanCollide = false
  1849. p10.FormFactor = Enum.FormFactor.Custom
  1850. p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1851. p10.BottomSurface = Enum.SurfaceType.Smooth
  1852. p10.TopSurface = Enum.SurfaceType.Smooth
  1853. b10 = Instance.new("SpecialMesh", p10)
  1854. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1855. b10.TextureId = ""
  1856. b10.MeshType = Enum.MeshType.FileMesh
  1857. b10.Name = "Mesh"
  1858. b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1859. p11 = Instance.new("Part", m2)
  1860. p11.BrickColor = BrickColor.new("Toothpaste")
  1861. p11.Material = Enum.Material.SmoothPlastic
  1862. p11.Reflectance = 0.30000001192093
  1863. p11.CFrame = CFrame.new(27.8153667, 25.7751122, 25.211132, -0.573576212, 0.469845206, 0.671010017, 3.03888498e-007, -0.819150567, 0.573576987, 0.81915164, 0.328989416, 0.469847172)
  1864. p11.CanCollide = false
  1865. p11.FormFactor = Enum.FormFactor.Custom
  1866. p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1867. p11.BottomSurface = Enum.SurfaceType.Smooth
  1868. p11.TopSurface = Enum.SurfaceType.Smooth
  1869. b11 = Instance.new("SpecialMesh", p11)
  1870. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1871. b11.TextureId = ""
  1872. b11.MeshType = Enum.MeshType.FileMesh
  1873. b11.Name = "Mesh"
  1874. b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1875. p12 = Instance.new("Part", m2)
  1876. p12.BrickColor = BrickColor.new("Toothpaste")
  1877. p12.Material = Enum.Material.SmoothPlastic
  1878. p12.Reflectance = 0.30000001192093
  1879. p12.CFrame = CFrame.new(29.655653, 24.6090927, 26.4997177, -0.573576212, 0.212011248, 0.791239619, 2.79475898e-007, -0.965924561, 0.258820325, 0.81915164, 0.14845185, 0.554032922)
  1880. p12.CanCollide = false
  1881. p12.FormFactor = Enum.FormFactor.Custom
  1882. p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1883. p12.BottomSurface = Enum.SurfaceType.Smooth
  1884. p12.TopSurface = Enum.SurfaceType.Smooth
  1885. b12 = Instance.new("SpecialMesh", p12)
  1886. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1887. b12.TextureId = ""
  1888. b12.MeshType = Enum.MeshType.FileMesh
  1889. b12.Name = "Mesh"
  1890. b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1891. p13 = Instance.new("Part", m2)
  1892. p13.BrickColor = BrickColor.new("Toothpaste")
  1893. p13.Material = Enum.Material.SmoothPlastic
  1894. p13.Reflectance = 0.30000001192093
  1895. p13.CFrame = CFrame.new(27.9198303, 25.8644161, 25.2842865, -0.573576212, 0.469845116, 0.671010017, 2.51205847e-007, -0.819150507, 0.573577106, 0.81915164, 0.328989446, 0.469847202)
  1896. p13.CanCollide = false
  1897. p13.FormFactor = Enum.FormFactor.Custom
  1898. p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1899. p13.BottomSurface = Enum.SurfaceType.Smooth
  1900. p13.TopSurface = Enum.SurfaceType.Smooth
  1901. b13 = Instance.new("SpecialMesh", p13)
  1902. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1903. b13.TextureId = ""
  1904. b13.MeshType = Enum.MeshType.FileMesh
  1905. b13.Name = "Mesh"
  1906. b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1907. p14 = Instance.new("Part", m2)
  1908. p14.BrickColor = BrickColor.new("Toothpaste")
  1909. p14.Material = Enum.Material.SmoothPlastic
  1910. p14.Reflectance = 0.30000001192093
  1911. p14.CFrame = CFrame.new(29.778841, 24.6493893, 26.5859776, -0.573576212, 0.212011158, 0.791239619, 2.26793262e-007, -0.965924621, 0.258820474, 0.81915164, 0.148451865, 0.554032922)
  1912. p14.CanCollide = false
  1913. p14.FormFactor = Enum.FormFactor.Custom
  1914. p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1915. p14.BottomSurface = Enum.SurfaceType.Smooth
  1916. p14.TopSurface = Enum.SurfaceType.Smooth
  1917. b14 = Instance.new("SpecialMesh", p14)
  1918. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1919. b14.TextureId = ""
  1920. b14.MeshType = Enum.MeshType.FileMesh
  1921. b14.Name = "Mesh"
  1922. b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1923. p15 = Instance.new("Part", m2)
  1924. p15.BrickColor = BrickColor.new("Toothpaste")
  1925. p15.Material = Enum.Material.SmoothPlastic
  1926. p15.Reflectance = 0.30000001192093
  1927. p15.CFrame = CFrame.new(29.3303242, 25.7026424, 26.271925, -0.573576212, 0.280165315, 0.769750893, 1.98523225e-007, -0.939691305, 0.342021316, 0.81915164, 0.196174055, 0.538986266)
  1928. p15.CanCollide = false
  1929. p15.FormFactor = Enum.FormFactor.Custom
  1930. p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1931. p15.BottomSurface = Enum.SurfaceType.Smooth
  1932. p15.TopSurface = Enum.SurfaceType.Smooth
  1933. b15 = Instance.new("SpecialMesh", p15)
  1934. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1935. b15.TextureId = ""
  1936. b15.MeshType = Enum.MeshType.FileMesh
  1937. b15.Name = "Mesh"
  1938. b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1939. p16 = Instance.new("Part", m2)
  1940. p16.BrickColor = BrickColor.new("Toothpaste")
  1941. p16.Material = Enum.Material.SmoothPlastic
  1942. p16.Reflectance = 0.30000001192093
  1943. p16.CFrame = CFrame.new(29.8983212, 24.6884689, 26.6696377, -0.573576272, 0.212011099, 0.791239798, 1.39939146e-007, -0.965924501, 0.258820534, 0.81915158, 0.148451924, 0.554033041)
  1944. p16.CanCollide = false
  1945. p16.FormFactor = Enum.FormFactor.Custom
  1946. p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1947. p16.BottomSurface = Enum.SurfaceType.Smooth
  1948. p16.TopSurface = Enum.SurfaceType.Smooth
  1949. b16 = Instance.new("SpecialMesh", p16)
  1950. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1951. b16.TextureId = ""
  1952. b16.MeshType = Enum.MeshType.FileMesh
  1953. b16.Name = "Mesh"
  1954. b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1955. p17 = Instance.new("Part", m2)
  1956. p17.BrickColor = BrickColor.new("Toothpaste")
  1957. p17.Material = Enum.Material.SmoothPlastic
  1958. p17.Reflectance = 0.30000001192093
  1959. p17.CFrame = CFrame.new(29.5664043, 25.8075294, 26.4372196, -0.573576272, 0.280165255, 0.769751072, 1.1166911e-007, -0.939691126, 0.342021376, 0.81915158, 0.196174115, 0.538986385)
  1960. p17.CanCollide = false
  1961. p17.FormFactor = Enum.FormFactor.Custom
  1962. p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1963. p17.BottomSurface = Enum.SurfaceType.Smooth
  1964. p17.TopSurface = Enum.SurfaceType.Smooth
  1965. b17 = Instance.new("SpecialMesh", p17)
  1966. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1967. b17.TextureId = ""
  1968. b17.MeshType = Enum.MeshType.FileMesh
  1969. b17.Name = "Mesh"
  1970. b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1971. p18 = Instance.new("Part", m2)
  1972. p18.BrickColor = BrickColor.new("Toothpaste")
  1973. p18.Material = Enum.Material.SmoothPlastic
  1974. p18.Reflectance = 0.30000001192093
  1975. p18.CFrame = CFrame.new(28.021162, 25.9510212, 25.3552322, -0.573576331, 0.469845086, 0.671010435, 8.10900147e-008, -0.819150269, 0.573577285, 0.819151521, 0.328989595, 0.469847381)
  1976. p18.CanCollide = false
  1977. p18.FormFactor = Enum.FormFactor.Custom
  1978. p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1979. p18.BottomSurface = Enum.SurfaceType.Smooth
  1980. p18.TopSurface = Enum.SurfaceType.Smooth
  1981. b18 = Instance.new("SpecialMesh", p18)
  1982. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1983. b18.TextureId = ""
  1984. b18.MeshType = Enum.MeshType.FileMesh
  1985. b18.Name = "Mesh"
  1986. b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1987. p19 = Instance.new("Part", m2)
  1988. p19.BrickColor = BrickColor.new("Toothpaste")
  1989. p19.Material = Enum.Material.SmoothPlastic
  1990. p19.Reflectance = 0.30000001192093
  1991. p19.CFrame = CFrame.new(30.3657436, 23.6272507, 26.9969234, -0.573576272, -0.346189439, 0.74240303, -9.24166343e-009, -0.906307697, -0.422616035, 0.819151521, -0.242404714, 0.519837141)
  1992. p19.CanCollide = false
  1993. p19.FormFactor = Enum.FormFactor.Custom
  1994. p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1995. p19.BottomSurface = Enum.SurfaceType.Smooth
  1996. p19.TopSurface = Enum.SurfaceType.Smooth
  1997. b19 = Instance.new("SpecialMesh", p19)
  1998. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1999. b19.TextureId = ""
  2000. b19.MeshType = Enum.MeshType.FileMesh
  2001. b19.Name = "Mesh"
  2002. b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2003. p20 = Instance.new("Part", m2)
  2004. p20.BrickColor = BrickColor.new("Toothpaste")
  2005. p20.Material = Enum.Material.SmoothPlastic
  2006. p20.Reflectance = 0.30000001192093
  2007. p20.CFrame = CFrame.new(30.2536469, 23.6910553, 26.9184265, -0.573576272, -0.346189529, 0.742402911, -2.63107069e-007, -0.906307518, -0.422615975, 0.819151521, -0.242404476, 0.519837141)
  2008. p20.CanCollide = false
  2009. p20.FormFactor = Enum.FormFactor.Custom
  2010. p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2011. p20.BottomSurface = Enum.SurfaceType.Smooth
  2012. p20.TopSurface = Enum.SurfaceType.Smooth
  2013. b20 = Instance.new("SpecialMesh", p20)
  2014. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2015. b20.TextureId = ""
  2016. b20.MeshType = Enum.MeshType.FileMesh
  2017. b20.Name = "Mesh"
  2018. b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2019. p21 = Instance.new("Part", m2)
  2020. p21.BrickColor = BrickColor.new("Toothpaste")
  2021. p21.Material = Enum.Material.SmoothPlastic
  2022. p21.Reflectance = 0.30000001192093
  2023. p21.CFrame = CFrame.new(27.8458843, 26.7314644, 25.2324886, -0.573576272, 0.469844759, 0.671010494, -4.23347274e-007, -0.819149971, 0.573577166, 0.819151521, 0.328989863, 0.469847023)
  2024. p21.CanCollide = false
  2025. p21.FormFactor = Enum.FormFactor.Custom
  2026. p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2027. p21.BottomSurface = Enum.SurfaceType.Smooth
  2028. p21.TopSurface = Enum.SurfaceType.Smooth
  2029. b21 = Instance.new("SpecialMesh", p21)
  2030. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2031. b21.TextureId = ""
  2032. b21.MeshType = Enum.MeshType.FileMesh
  2033. b21.Name = "Mesh"
  2034. b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2035. p22 = Instance.new("Part", m2)
  2036. p22.BrickColor = BrickColor.new("Toothpaste")
  2037. p22.Material = Enum.Material.SmoothPlastic
  2038. p22.Reflectance = 0.30000001192093
  2039. p22.CFrame = CFrame.new(30.1380615, 23.756855, 26.8374882, -0.573576212, -0.346189648, 0.742402732, -5.1367897e-007, -0.906307459, -0.422615856, 0.819151521, -0.242404282, 0.519837141)
  2040. p22.CanCollide = false
  2041. p22.FormFactor = Enum.FormFactor.Custom
  2042. p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2043. p22.BottomSurface = Enum.SurfaceType.Smooth
  2044. p22.TopSurface = Enum.SurfaceType.Smooth
  2045. b22 = Instance.new("SpecialMesh", p22)
  2046. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2047. b22.TextureId = ""
  2048. b22.MeshType = Enum.MeshType.FileMesh
  2049. b22.Name = "Mesh"
  2050. b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2051. p23 = Instance.new("Part", m2)
  2052. p23.BrickColor = BrickColor.new("Toothpaste")
  2053. p23.Material = Enum.Material.SmoothPlastic
  2054. p23.Reflectance = 0.30000001192093
  2055. p23.CFrame = CFrame.new(29.4501858, 25.7558784, 26.3558216, -0.573576212, 0.280164778, 0.769751191, -6.73919146e-007, -0.939690709, 0.342021406, 0.819151521, 0.196174636, 0.538986027)
  2056. p23.CanCollide = false
  2057. p23.FormFactor = Enum.FormFactor.Custom
  2058. p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2059. p23.BottomSurface = Enum.SurfaceType.Smooth
  2060. p23.TopSurface = Enum.SurfaceType.Smooth
  2061. b23 = Instance.new("SpecialMesh", p23)
  2062. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2063. b23.TextureId = ""
  2064. b23.MeshType = Enum.MeshType.FileMesh
  2065. b23.Name = "Mesh"
  2066. b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2067. p24 = Instance.new("Part", m2)
  2068. p24.BrickColor = BrickColor.new("Toothpaste")
  2069. p24.Material = Enum.Material.SmoothPlastic
  2070. p24.Reflectance = 0.30000001192093
  2071. p24.CFrame = CFrame.new(29.3303471, 25.702631, 26.2719078, -0.573576272, 0.280164808, 0.76975143, -7.04498234e-007, -0.939690709, 0.342021465, 0.819151461, 0.196174651, 0.538986087)
  2072. p24.CanCollide = false
  2073. p24.FormFactor = Enum.FormFactor.Custom
  2074. p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2075. p24.BottomSurface = Enum.SurfaceType.Smooth
  2076. p24.TopSurface = Enum.SurfaceType.Smooth
  2077. b24 = Instance.new("SpecialMesh", p24)
  2078. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2079. b24.TextureId = ""
  2080. b24.MeshType = Enum.MeshType.FileMesh
  2081. b24.Name = "Mesh"
  2082. b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2083. p25 = Instance.new("Part", m2)
  2084. p25.BrickColor = BrickColor.new("Toothpaste")
  2085. p25.Material = Enum.Material.SmoothPlastic
  2086. p25.Reflectance = 0.30000001192093
  2087. p25.CFrame = CFrame.new(29.7788715, 24.6493816, 26.5859661, -0.573576331, 0.212010548, 0.791240335, -7.63082312e-007, -0.965923905, 0.258820742, 0.819151402, 0.14845252, 0.554032862)
  2088. p25.CanCollide = false
  2089. p25.FormFactor = Enum.FormFactor.Custom
  2090. p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2091. p25.BottomSurface = Enum.SurfaceType.Smooth
  2092. p25.TopSurface = Enum.SurfaceType.Smooth
  2093. b25 = Instance.new("SpecialMesh", p25)
  2094. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2095. b25.TextureId = ""
  2096. b25.MeshType = Enum.MeshType.FileMesh
  2097. b25.Name = "Mesh"
  2098. b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2099. p26 = Instance.new("Part", m2)
  2100. p26.BrickColor = BrickColor.new("Toothpaste")
  2101. p26.Material = Enum.Material.SmoothPlastic
  2102. p26.Reflectance = 0.30000001192093
  2103. p26.CFrame = CFrame.new(29.450201, 25.7558823, 26.3558235, -0.573576331, 0.280164748, 0.769751668, -7.91352306e-007, -0.93969059, 0.342021525, 0.819151402, 0.196174681, 0.538986146)
  2104. p26.CanCollide = false
  2105. p26.FormFactor = Enum.FormFactor.Custom
  2106. p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2107. p26.BottomSurface = Enum.SurfaceType.Smooth
  2108. p26.TopSurface = Enum.SurfaceType.Smooth
  2109. b26 = Instance.new("SpecialMesh", p26)
  2110. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2111. b26.TextureId = ""
  2112. b26.MeshType = Enum.MeshType.FileMesh
  2113. b26.Name = "Mesh"
  2114. b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2115. p27 = Instance.new("Part", m2)
  2116. p27.BrickColor = BrickColor.new("Toothpaste")
  2117. p27.Material = Enum.Material.SmoothPlastic
  2118. p27.Reflectance = 0.30000001192093
  2119. p27.CFrame = CFrame.new(30.3657703, 23.6272449, 26.9969063, -0.57357645, -0.346190155, 0.74240309, -9.161393e-007, -0.90630734, -0.422615707, 0.819151342, -0.242404088, 0.51983732)
  2120. p27.CanCollide = false
  2121. p27.FormFactor = Enum.FormFactor.Custom
  2122. p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2123. p27.BottomSurface = Enum.SurfaceType.Smooth
  2124. p27.TopSurface = Enum.SurfaceType.Smooth
  2125. b27 = Instance.new("SpecialMesh", p27)
  2126. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2127. b27.TextureId = ""
  2128. b27.MeshType = Enum.MeshType.FileMesh
  2129. b27.Name = "Mesh"
  2130. b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2131. p28 = Instance.new("Part", m2)
  2132. p28.BrickColor = BrickColor.new("Toothpaste")
  2133. p28.Material = Enum.Material.SmoothPlastic
  2134. p28.Reflectance = 0.30000001192093
  2135. p28.CFrame = CFrame.new(28.0211868, 25.9510098, 25.3552094, -0.57357645, 0.469844639, 0.67101109, -1.07637948e-006, -0.819149673, 0.573577106, 0.819151342, 0.328990191, 0.469846785)
  2136. p28.CanCollide = false
  2137. p28.FormFactor = Enum.FormFactor.Custom
  2138. p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2139. p28.BottomSurface = Enum.SurfaceType.Smooth
  2140. p28.TopSurface = Enum.SurfaceType.Smooth
  2141. b28 = Instance.new("SpecialMesh", p28)
  2142. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2143. b28.TextureId = ""
  2144. b28.MeshType = Enum.MeshType.FileMesh
  2145. b28.Name = "Mesh"
  2146. b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2147. p29 = Instance.new("Part", m2)
  2148. p29.BrickColor = BrickColor.new("Toothpaste")
  2149. p29.Material = Enum.Material.Neon
  2150. p29.CFrame = CFrame.new(31.2683067, 23.2277946, 27.6474876, 0.280168235, -0.769749522, -0.573576212, 0.939691305, 0.342017233, -1.0690095e-006, 0.19617486, -0.538985491, 0.819151521)
  2151. p29.FormFactor = Enum.FormFactor.Custom
  2152. p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2153. p29.BottomSurface = Enum.SurfaceType.Smooth
  2154. p29.TopSurface = Enum.SurfaceType.Smooth
  2155. b29 = Instance.new("SpecialMesh", p29)
  2156. b29.MeshType = Enum.MeshType.Sphere
  2157. b29.Name = "Mesh"
  2158. p30 = Instance.new("Part", m2)
  2159. p30.BrickColor = BrickColor.new("Toothpaste")
  2160. p30.Material = Enum.Material.SmoothPlastic
  2161. p30.Reflectance = 0.30000001192093
  2162. p30.CFrame = CFrame.new(29.655632, 24.6090698, 26.4996777, -0.573576212, 0.2120094, 0.791238904, -1.13902195e-006, -0.965922236, 0.258820891, 0.819151521, 0.148452237, 0.554032147)
  2163. p30.CanCollide = false
  2164. p30.FormFactor = Enum.FormFactor.Custom
  2165. p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2166. p30.BottomSurface = Enum.SurfaceType.Smooth
  2167. p30.TopSurface = Enum.SurfaceType.Smooth
  2168. b30 = Instance.new("SpecialMesh", p30)
  2169. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2170. b30.TextureId = ""
  2171. b30.MeshType = Enum.MeshType.FileMesh
  2172. b30.Name = "Mesh"
  2173. b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2174. p31 = Instance.new("Part", m2)
  2175. p31.BrickColor = BrickColor.new("Toothpaste")
  2176. p31.Material = Enum.Material.SmoothPlastic
  2177. p31.Reflectance = 0.30000001192093
  2178. p31.CFrame = CFrame.new(30.138031, 23.7568359, 26.8374538, -0.573576212, -0.346189976, 0.742401063, -1.26856219e-006, -0.906306148, -0.422614396, 0.819151521, -0.242403775, 0.519836485)
  2179. p31.CanCollide = false
  2180. p31.FormFactor = Enum.FormFactor.Custom
  2181. p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2182. p31.BottomSurface = Enum.SurfaceType.Smooth
  2183. p31.TopSurface = Enum.SurfaceType.Smooth
  2184. b31 = Instance.new("SpecialMesh", p31)
  2185. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2186. b31.TextureId = ""
  2187. b31.MeshType = Enum.MeshType.FileMesh
  2188. b31.Name = "Mesh"
  2189. b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2190. p32 = Instance.new("Part", m2)
  2191. p32.BrickColor = BrickColor.new("Toothpaste")
  2192. p32.Material = Enum.Material.SmoothPlastic
  2193. p32.Reflectance = 0.30000001192093
  2194. p32.CFrame = CFrame.new(27.741394, 26.6421375, 25.1592979, -0.573576212, 0.469842911, 0.671009958, -1.42880219e-006, -0.819147944, 0.573576748, 0.819151521, 0.328989625, 0.4698461)
  2195. p32.CanCollide = false
  2196. p32.FormFactor = Enum.FormFactor.Custom
  2197. p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2198. p32.BottomSurface = Enum.SurfaceType.Smooth
  2199. p32.TopSurface = Enum.SurfaceType.Smooth
  2200. b32 = Instance.new("SpecialMesh", p32)
  2201. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2202. b32.TextureId = ""
  2203. b32.MeshType = Enum.MeshType.FileMesh
  2204. b32.Name = "Mesh"
  2205. b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2206. p33 = Instance.new("Part", m2)
  2207. p33.BrickColor = BrickColor.new("Toothpaste")
  2208. p33.Material = Enum.Material.Neon
  2209. p33.CFrame = CFrame.new(32.7100258, 25.2490444, 28.6569691, -0.14224124, -0.806705832, -0.573576093, 0.984804153, -0.173650295, -1.38238238e-006, -0.0996002704, -0.564861953, 0.819151759)
  2210. p33.FormFactor = Enum.FormFactor.Custom
  2211. p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2212. p33.BottomSurface = Enum.SurfaceType.Smooth
  2213. p33.TopSurface = Enum.SurfaceType.Smooth
  2214. b33 = Instance.new("SpecialMesh", p33)
  2215. b33.MeshType = Enum.MeshType.Sphere
  2216. b33.Name = "Mesh"
  2217. p34 = Instance.new("Part", m2)
  2218. p34.BrickColor = BrickColor.new("Toothpaste")
  2219. p34.Material = Enum.Material.SmoothPlastic
  2220. p34.Reflectance = 0.30000001192093
  2221. p34.CFrame = CFrame.new(27.919817, 25.8643856, 25.2842369, -0.573576391, 0.469842792, 0.671009898, -1.37759764e-006, -0.819147885, 0.573576868, 0.8191517, 0.328989476, 0.46984604)
  2222. p34.CanCollide = false
  2223. p34.FormFactor = Enum.FormFactor.Custom
  2224. p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2225. p34.BottomSurface = Enum.SurfaceType.Smooth
  2226. p34.TopSurface = Enum.SurfaceType.Smooth
  2227. b34 = Instance.new("SpecialMesh", p34)
  2228. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2229. b34.TextureId = ""
  2230. b34.MeshType = Enum.MeshType.FileMesh
  2231. b34.Name = "Mesh"
  2232. b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2233. p35 = Instance.new("Part", m2)
  2234. p35.BrickColor = BrickColor.new("Toothpaste")
  2235. p35.Material = Enum.Material.SmoothPlastic
  2236. p35.Reflectance = 0.30000001192093
  2237. p35.CFrame = CFrame.new(29.8982925, 24.6884441, 26.6695824, -0.573576391, 0.212008998, 0.791238666, -1.40201018e-006, -0.965921998, 0.25882113, 0.8191517, 0.148452297, 0.554031909)
  2238. p35.CanCollide = false
  2239. p35.FormFactor = Enum.FormFactor.Custom
  2240. p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2241. p35.BottomSurface = Enum.SurfaceType.Smooth
  2242. p35.TopSurface = Enum.SurfaceType.Smooth
  2243. b35 = Instance.new("SpecialMesh", p35)
  2244. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2245. b35.TextureId = ""
  2246. b35.MeshType = Enum.MeshType.FileMesh
  2247. b35.Name = "Mesh"
  2248. b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2249. p36 = Instance.new("Part", m2)
  2250. p36.BrickColor = BrickColor.new("Toothpaste")
  2251. p36.Material = Enum.Material.SmoothPlastic
  2252. p36.Reflectance = 0.30000001192093
  2253. p36.CFrame = CFrame.new(27.8153496, 25.7750854, 25.2110863, -0.573576391, 0.469842672, 0.671009898, -1.43028012e-006, -0.819147885, 0.573576927, 0.8191517, 0.328989506, 0.4698461)
  2254. p36.CanCollide = false
  2255. p36.FormFactor = Enum.FormFactor.Custom
  2256. p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2257. p36.BottomSurface = Enum.SurfaceType.Smooth
  2258. p36.TopSurface = Enum.SurfaceType.Smooth
  2259. b36 = Instance.new("SpecialMesh", p36)
  2260. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2261. b36.TextureId = ""
  2262. b36.MeshType = Enum.MeshType.FileMesh
  2263. b36.Name = "Mesh"
  2264. b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2265. p37 = Instance.new("Part", m2)
  2266. p37.BrickColor = BrickColor.new("Toothpaste")
  2267. p37.Material = Enum.Material.Neon
  2268. p37.CFrame = CFrame.new(30.7430439, 27.8460693, 27.2796841, -0.409572512, -0.709406137, -0.573576272, 0.866021335, -0.500000834, -1.38386031e-006, -0.286787719, -0.49673146, 0.819151938)
  2269. p37.FormFactor = Enum.FormFactor.Custom
  2270. p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2271. p37.BottomSurface = Enum.SurfaceType.Smooth
  2272. p37.TopSurface = Enum.SurfaceType.Smooth
  2273. b37 = Instance.new("SpecialMesh", p37)
  2274. b37.MeshType = Enum.MeshType.Sphere
  2275. b37.Name = "Mesh"
  2276. p38 = Instance.new("Part", m2)
  2277. p38.BrickColor = BrickColor.new("Toothpaste")
  2278. p38.Material = Enum.Material.Neon
  2279. p38.CFrame = CFrame.new(32.7113533, 27.1965656, 28.6579113, -0.28016308, -0.769750178, -0.573576272, 0.939688683, -0.342021704, -1.3540581e-006, -0.196174175, -0.538985133, 0.819152057)
  2280. p38.FormFactor = Enum.FormFactor.Custom
  2281. p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  2282. p38.BottomSurface = Enum.SurfaceType.Smooth
  2283. p38.TopSurface = Enum.SurfaceType.Smooth
  2284. b38 = Instance.new("SpecialMesh", p38)
  2285. b38.MeshType = Enum.MeshType.Sphere
  2286. b38.Name = "Mesh"
  2287. p39 = Instance.new("Part", m2)
  2288. p39.BrickColor = BrickColor.new("Toothpaste")
  2289. p39.Material = Enum.Material.SmoothPlastic
  2290. p39.Reflectance = 0.30000001192093
  2291. p39.CFrame = CFrame.new(26.2033787, 25.7750854, 25.2801971, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2292. p39.CanCollide = false
  2293. p39.FormFactor = Enum.FormFactor.Custom
  2294. p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2295. p39.BottomSurface = Enum.SurfaceType.Smooth
  2296. p39.TopSurface = Enum.SurfaceType.Smooth
  2297. b39 = Instance.new("SpecialMesh", p39)
  2298. b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2299. b39.TextureId = ""
  2300. b39.MeshType = Enum.MeshType.FileMesh
  2301. b39.Name = "Mesh"
  2302. b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2303. p40 = Instance.new("Part", m2)
  2304. p40.BrickColor = BrickColor.new("Toothpaste")
  2305. p40.Material = Enum.Material.SmoothPlastic
  2306. p40.Reflectance = 0.30000001192093
  2307. p40.CFrame = CFrame.new(25.9975967, 25.9509888, 25.4242878, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2308. p40.CanCollide = false
  2309. p40.FormFactor = Enum.FormFactor.Custom
  2310. p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2311. p40.BottomSurface = Enum.SurfaceType.Smooth
  2312. p40.TopSurface = Enum.SurfaceType.Smooth
  2313. b40 = Instance.new("SpecialMesh", p40)
  2314. b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2315. b40.TextureId = ""
  2316. b40.MeshType = Enum.MeshType.FileMesh
  2317. b40.Name = "Mesh"
  2318. b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2319. p41 = Instance.new("Part", m2)
  2320. p41.BrickColor = BrickColor.new("Toothpaste")
  2321. p41.Material = Enum.Material.SmoothPlastic
  2322. p41.Reflectance = 0.30000001192093
  2323. p41.CFrame = CFrame.new(26.098917, 25.8643856, 25.3533516, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2324. p41.CanCollide = false
  2325. p41.FormFactor = Enum.FormFactor.Custom
  2326. p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2327. p41.BottomSurface = Enum.SurfaceType.Smooth
  2328. p41.TopSurface = Enum.SurfaceType.Smooth
  2329. b41 = Instance.new("SpecialMesh", p41)
  2330. b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2331. b41.TextureId = ""
  2332. b41.MeshType = Enum.MeshType.FileMesh
  2333. b41.Name = "Mesh"
  2334. b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2335. p42 = Instance.new("Part", m2)
  2336. p42.BrickColor = BrickColor.new("Toothpaste")
  2337. p42.Material = Enum.Material.SmoothPlastic
  2338. p42.Reflectance = 0.30000001192093
  2339. p42.CFrame = CFrame.new(24.12043, 24.6884346, 26.7387066, -0.573574483, -0.212014884, -0.791238487, -2.23079792e-006, -0.965923309, 0.258816421, -0.819151402, 0.148452327, 0.554032683)
  2340. p42.CanCollide = false
  2341. p42.FormFactor = Enum.FormFactor.Custom
  2342. p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2343. p42.BottomSurface = Enum.SurfaceType.Smooth
  2344. p42.TopSurface = Enum.SurfaceType.Smooth
  2345. b42 = Instance.new("SpecialMesh", p42)
  2346. b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2347. b42.TextureId = ""
  2348. b42.MeshType = Enum.MeshType.FileMesh
  2349. b42.Name = "Mesh"
  2350. b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2351. p43 = Instance.new("Part", m2)
  2352. p43.BrickColor = BrickColor.new("Toothpaste")
  2353. p43.Material = Enum.Material.SmoothPlastic
  2354. p43.Reflectance = 0.30000001192093
  2355. p43.CFrame = CFrame.new(24.12043, 24.6884365, 26.7387066, -0.573574483, -0.212014899, -0.791238487, -2.30996147e-006, -0.96592325, 0.258816421, -0.819151402, 0.148452222, 0.554032683)
  2356. p43.CanCollide = false
  2357. p43.FormFactor = Enum.FormFactor.Custom
  2358. p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2359. p43.BottomSurface = Enum.SurfaceType.Smooth
  2360. p43.TopSurface = Enum.SurfaceType.Smooth
  2361. b43 = Instance.new("SpecialMesh", p43)
  2362. b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2363. b43.TextureId = ""
  2364. b43.MeshType = Enum.MeshType.FileMesh
  2365. b43.Name = "Mesh"
  2366. b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2367. p44 = Instance.new("Part", m2)
  2368. p44.BrickColor = BrickColor.new("Toothpaste")
  2369. p44.Material = Enum.Material.SmoothPlastic
  2370. p44.Reflectance = 0.30000001192093
  2371. p44.CFrame = CFrame.new(24.3630924, 24.6090679, 26.5687962, -0.573574483, -0.212014914, -0.791238487, -2.38912503e-006, -0.96592319, 0.258816421, -0.819151402, 0.148452118, 0.554032683)
  2372. p44.CanCollide = false
  2373. p44.FormFactor = Enum.FormFactor.Custom
  2374. p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2375. p44.BottomSurface = Enum.SurfaceType.Smooth
  2376. p44.TopSurface = Enum.SurfaceType.Smooth
  2377. b44 = Instance.new("SpecialMesh", p44)
  2378. b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2379. b44.TextureId = ""
  2380. b44.MeshType = Enum.MeshType.FileMesh
  2381. b44.Name = "Mesh"
  2382. b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2383. p45 = Instance.new("Part", m2)
  2384. p45.BrickColor = BrickColor.new("Toothpaste")
  2385. p45.Material = Enum.Material.SmoothPlastic
  2386. p45.Reflectance = 0.30000001192093
  2387. p45.CFrame = CFrame.new(24.2399025, 24.6493645, 26.6550598, -0.573574483, -0.212014928, -0.791238487, -2.46828859e-006, -0.965923131, 0.258816421, -0.819151402, 0.148452014, 0.554032683)
  2388. p45.CanCollide = false
  2389. p45.FormFactor = Enum.FormFactor.Custom
  2390. p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2391. p45.BottomSurface = Enum.SurfaceType.Smooth
  2392. p45.TopSurface = Enum.SurfaceType.Smooth
  2393. b45 = Instance.new("SpecialMesh", p45)
  2394. b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2395. b45.TextureId = ""
  2396. b45.MeshType = Enum.MeshType.FileMesh
  2397. b45.Name = "Mesh"
  2398. b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2399. p46 = Instance.new("Part", m2)
  2400. p46.BrickColor = BrickColor.new("Toothpaste")
  2401. p46.Material = Enum.Material.SmoothPlastic
  2402. p46.Reflectance = 0.30000001192093
  2403. p46.CFrame = CFrame.new(24.3630962, 24.6090736, 26.5688019, -0.573574483, -0.212014943, -0.791238487, -2.54745214e-006, -0.965923071, 0.258816421, -0.819151402, 0.148451909, 0.554032683)
  2404. p46.CanCollide = false
  2405. p46.FormFactor = Enum.FormFactor.Custom
  2406. p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2407. p46.BottomSurface = Enum.SurfaceType.Smooth
  2408. p46.TopSurface = Enum.SurfaceType.Smooth
  2409. b46 = Instance.new("SpecialMesh", p46)
  2410. b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2411. b46.TextureId = ""
  2412. b46.MeshType = Enum.MeshType.FileMesh
  2413. b46.Name = "Mesh"
  2414. b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2415. p47 = Instance.new("Part", m2)
  2416. p47.BrickColor = BrickColor.new("Toothpaste")
  2417. p47.Material = Enum.Material.SmoothPlastic
  2418. p47.Reflectance = 0.30000001192093
  2419. p47.CFrame = CFrame.new(24.2399063, 24.6493702, 26.6550655, -0.573574483, -0.212014958, -0.791238487, -2.6266157e-006, -0.965923011, 0.258816421, -0.819151402, 0.148451805, 0.554032683)
  2420. p47.CanCollide = false
  2421. p47.FormFactor = Enum.FormFactor.Custom
  2422. p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2423. p47.BottomSurface = Enum.SurfaceType.Smooth
  2424. p47.TopSurface = Enum.SurfaceType.Smooth
  2425. b47 = Instance.new("SpecialMesh", p47)
  2426. b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2427. b47.TextureId = ""
  2428. b47.MeshType = Enum.MeshType.FileMesh
  2429. b47.Name = "Mesh"
  2430. b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2431. p48 = Instance.new("Part", m2)
  2432. p48.BrickColor = BrickColor.new("Toothpaste")
  2433. p48.Material = Enum.Material.Neon
  2434. p48.CFrame = CFrame.new(25.2453995, 27.8142643, 25.9324112, 0.579229355, 0.579225123, -0.573574543, 0.707105756, -0.707103014, -2.67389237e-006, -0.405579329, -0.40558058, -0.819151223)
  2435. p48.FormFactor = Enum.FormFactor.Custom
  2436. p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2437. p48.BottomSurface = Enum.SurfaceType.Smooth
  2438. p48.TopSurface = Enum.SurfaceType.Smooth
  2439. b48 = Instance.new("SpecialMesh", p48)
  2440. b48.MeshType = Enum.MeshType.Sphere
  2441. b48.Name = "Mesh"
  2442. p49 = Instance.new("Part", m2)
  2443. p49.BrickColor = BrickColor.new("Toothpaste")
  2444. p49.Material = Enum.Material.SmoothPlastic
  2445. p49.Reflectance = 0.30000001192093
  2446. p49.CFrame = CFrame.new(26.2033863, 25.7751026, 25.2802086, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2447. p49.CanCollide = false
  2448. p49.FormFactor = Enum.FormFactor.Custom
  2449. p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2450. p49.BottomSurface = Enum.SurfaceType.Smooth
  2451. p49.TopSurface = Enum.SurfaceType.Smooth
  2452. b49 = Instance.new("SpecialMesh", p49)
  2453. b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2454. b49.TextureId = ""
  2455. b49.MeshType = Enum.MeshType.FileMesh
  2456. b49.Name = "Mesh"
  2457. b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2458. p50 = Instance.new("Part", m2)
  2459. p50.BrickColor = BrickColor.new("Toothpaste")
  2460. p50.Material = Enum.Material.SmoothPlastic
  2461. p50.Reflectance = 0.30000001192093
  2462. p50.CFrame = CFrame.new(25.9976063, 25.9510059, 25.4242992, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2463. p50.CanCollide = false
  2464. p50.FormFactor = Enum.FormFactor.Custom
  2465. p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2466. p50.BottomSurface = Enum.SurfaceType.Smooth
  2467. p50.TopSurface = Enum.SurfaceType.Smooth
  2468. b50 = Instance.new("SpecialMesh", p50)
  2469. b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2470. b50.TextureId = ""
  2471. b50.MeshType = Enum.MeshType.FileMesh
  2472. b50.Name = "Mesh"
  2473. b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2474. p51 = Instance.new("Part", m2)
  2475. p51.BrickColor = BrickColor.new("Toothpaste")
  2476. p51.Material = Enum.Material.SmoothPlastic
  2477. p51.Reflectance = 0.30000001192093
  2478. p51.CFrame = CFrame.new(26.0989265, 25.8644028, 25.353363, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2479. p51.CanCollide = false
  2480. p51.FormFactor = Enum.FormFactor.Custom
  2481. p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2482. p51.BottomSurface = Enum.SurfaceType.Smooth
  2483. p51.TopSurface = Enum.SurfaceType.Smooth
  2484. b51 = Instance.new("SpecialMesh", p51)
  2485. b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2486. b51.TextureId = ""
  2487. b51.MeshType = Enum.MeshType.FileMesh
  2488. b51.Name = "Mesh"
  2489. b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2490. p52 = Instance.new("Part", m2)
  2491. p52.BrickColor = BrickColor.new("Toothpaste")
  2492. p52.Material = Enum.Material.Neon
  2493. p52.CFrame = CFrame.new(21.2912331, 25.2490387, 28.7011547, 0.142246991, 0.806705594, -0.573574483, 0.984804809, -0.173645705, -2.66166035e-006, -0.0995996594, -0.564862788, -0.819151103)
  2494. p52.FormFactor = Enum.FormFactor.Custom
  2495. p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2496. p52.BottomSurface = Enum.SurfaceType.Smooth
  2497. p52.TopSurface = Enum.SurfaceType.Smooth
  2498. b52 = Instance.new("SpecialMesh", p52)
  2499. b52.MeshType = Enum.MeshType.Sphere
  2500. b52.Name = "Mesh"
  2501. p53 = Instance.new("Part", m2)
  2502. p53.BrickColor = BrickColor.new("Toothpaste")
  2503. p53.Material = Enum.Material.Neon
  2504. p53.CFrame = CFrame.new(23.2582321, 27.8460655, 27.3238525, 0.409577936, 0.709403872, -0.573574483, 0.866023481, -0.499996662, -2.64914797e-006, -0.28678745, -0.496732205, -0.819151103)
  2505. p53.FormFactor = Enum.FormFactor.Custom
  2506. p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2507. p53.BottomSurface = Enum.SurfaceType.Smooth
  2508. p53.TopSurface = Enum.SurfaceType.Smooth
  2509. b53 = Instance.new("SpecialMesh", p53)
  2510. b53.MeshType = Enum.MeshType.Sphere
  2511. b53.Name = "Mesh"
  2512. p54 = Instance.new("Part", m2)
  2513. p54.BrickColor = BrickColor.new("Toothpaste")
  2514. p54.Material = Enum.Material.Neon
  2515. p54.CFrame = CFrame.new(21.2899132, 27.1965466, 28.7020855, 0.280168742, 0.769748747, -0.573574483, 0.939690113, -0.342017204, -2.64914797e-006, -0.196173787, -0.538985729, -0.819151103)
  2516. p54.FormFactor = Enum.FormFactor.Custom
  2517. p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  2518. p54.BottomSurface = Enum.SurfaceType.Smooth
  2519. p54.TopSurface = Enum.SurfaceType.Smooth
  2520. b54 = Instance.new("SpecialMesh", p54)
  2521. b54.MeshType = Enum.MeshType.Sphere
  2522. b54.Name = "Mesh"
  2523. p55 = Instance.new("Part", m2)
  2524. p55.BrickColor = BrickColor.new("Toothpaste")
  2525. p55.Material = Enum.Material.Neon
  2526. p55.CFrame = CFrame.new(22.732933, 23.2277641, 27.6916542, -0.280163169, 0.769749939, -0.573574483, 0.939688265, 0.342020243, -2.67457881e-006, 0.196175426, -0.538984358, -0.819150984)
  2527. p55.FormFactor = Enum.FormFactor.Custom
  2528. p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2529. p55.BottomSurface = Enum.SurfaceType.Smooth
  2530. p55.TopSurface = Enum.SurfaceType.Smooth
  2531. b55 = Instance.new("SpecialMesh", p55)
  2532. b55.MeshType = Enum.MeshType.Sphere
  2533. b55.Name = "Mesh"
  2534. p56 = Instance.new("Part", m2)
  2535. p56.BrickColor = BrickColor.new("Toothpaste")
  2536. p56.Material = Enum.Material.SmoothPlastic
  2537. p56.Reflectance = 0.30000001192093
  2538. p56.CFrame = CFrame.new(26.1728668, 26.7314224, 25.3015804, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2539. p56.CanCollide = false
  2540. p56.FormFactor = Enum.FormFactor.Custom
  2541. p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2542. p56.BottomSurface = Enum.SurfaceType.Smooth
  2543. p56.TopSurface = Enum.SurfaceType.Smooth
  2544. b56 = Instance.new("SpecialMesh", p56)
  2545. b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2546. b56.TextureId = ""
  2547. b56.MeshType = Enum.MeshType.FileMesh
  2548. b56.Name = "Mesh"
  2549. b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2550. p57 = Instance.new("Part", m2)
  2551. p57.BrickColor = BrickColor.new("Toothpaste")
  2552. p57.Material = Enum.Material.SmoothPlastic
  2553. p57.Reflectance = 0.30000001192093
  2554. p57.CFrame = CFrame.new(26.0715504, 26.8180256, 25.3725224, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2555. p57.CanCollide = false
  2556. p57.FormFactor = Enum.FormFactor.Custom
  2557. p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2558. p57.BottomSurface = Enum.SurfaceType.Smooth
  2559. p57.TopSurface = Enum.SurfaceType.Smooth
  2560. b57 = Instance.new("SpecialMesh", p57)
  2561. b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2562. b57.TextureId = ""
  2563. b57.MeshType = Enum.MeshType.FileMesh
  2564. b57.Name = "Mesh"
  2565. b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2566. p58 = Instance.new("Part", m2)
  2567. p58.BrickColor = BrickColor.new("Toothpaste")
  2568. p58.Material = Enum.Material.SmoothPlastic
  2569. p58.Reflectance = 0.30000001192093
  2570. p58.CFrame = CFrame.new(26.2773418, 26.6421242, 25.2284393, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2571. p58.CanCollide = false
  2572. p58.FormFactor = Enum.FormFactor.Custom
  2573. p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2574. p58.BottomSurface = Enum.SurfaceType.Smooth
  2575. p58.TopSurface = Enum.SurfaceType.Smooth
  2576. b58 = Instance.new("SpecialMesh", p58)
  2577. b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2578. b58.TextureId = ""
  2579. b58.MeshType = Enum.MeshType.FileMesh
  2580. b58.Name = "Mesh"
  2581. b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2582. p59 = Instance.new("Part", m2)
  2583. p59.BrickColor = BrickColor.new("Toothpaste")
  2584. p59.Material = Enum.Material.SmoothPlastic
  2585. p59.Reflectance = 0.30000001192093
  2586. p59.CFrame = CFrame.new(24.6884308, 25.7025909, 26.3410091, -0.573574424, -0.280167818, -0.769747615, -2.71658587e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172908, 0.538984478)
  2587. p59.CanCollide = false
  2588. p59.FormFactor = Enum.FormFactor.Custom
  2589. p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2590. p59.BottomSurface = Enum.SurfaceType.Smooth
  2591. p59.TopSurface = Enum.SurfaceType.Smooth
  2592. b59 = Instance.new("SpecialMesh", p59)
  2593. b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2594. b59.TextureId = ""
  2595. b59.MeshType = Enum.MeshType.FileMesh
  2596. b59.Name = "Mesh"
  2597. b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2598. p60 = Instance.new("Part", m2)
  2599. p60.BrickColor = BrickColor.new("Toothpaste")
  2600. p60.Material = Enum.Material.SmoothPlastic
  2601. p60.Reflectance = 0.30000001192093
  2602. p60.CFrame = CFrame.new(24.4523582, 25.807478, 26.5063095, -0.573574424, -0.280167848, -0.769747615, -2.7445908e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172863, 0.538984478)
  2603. p60.CanCollide = false
  2604. p60.FormFactor = Enum.FormFactor.Custom
  2605. p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2606. p60.BottomSurface = Enum.SurfaceType.Smooth
  2607. p60.TopSurface = Enum.SurfaceType.Smooth
  2608. b60 = Instance.new("SpecialMesh", p60)
  2609. b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2610. b60.TextureId = ""
  2611. b60.MeshType = Enum.MeshType.FileMesh
  2612. b60.Name = "Mesh"
  2613. b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2614. p61 = Instance.new("Part", m2)
  2615. p61.BrickColor = BrickColor.new("Toothpaste")
  2616. p61.Material = Enum.Material.SmoothPlastic
  2617. p61.Reflectance = 0.30000001192093
  2618. p61.CFrame = CFrame.new(24.5685883, 25.7558403, 26.4249287, -0.573574424, -0.280167878, -0.769747615, -2.77259574e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172819, 0.538984478)
  2619. p61.CanCollide = false
  2620. p61.FormFactor = Enum.FormFactor.Custom
  2621. p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2622. p61.BottomSurface = Enum.SurfaceType.Smooth
  2623. p61.TopSurface = Enum.SurfaceType.Smooth
  2624. b61 = Instance.new("SpecialMesh", p61)
  2625. b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2626. b61.TextureId = ""
  2627. b61.MeshType = Enum.MeshType.FileMesh
  2628. b61.Name = "Mesh"
  2629. b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2630. p62 = Instance.new("Part", m2)
  2631. p62.BrickColor = BrickColor.new("Toothpaste")
  2632. p62.Material = Enum.Material.SmoothPlastic
  2633. p62.Reflectance = 0.30000001192093
  2634. p62.CFrame = CFrame.new(24.6884365, 25.7025948, 26.3410149, -0.573574424, -0.280167907, -0.769747615, -2.80060067e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172774, 0.538984478)
  2635. p62.CanCollide = false
  2636. p62.FormFactor = Enum.FormFactor.Custom
  2637. p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2638. p62.BottomSurface = Enum.SurfaceType.Smooth
  2639. p62.TopSurface = Enum.SurfaceType.Smooth
  2640. b62 = Instance.new("SpecialMesh", p62)
  2641. b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2642. b62.TextureId = ""
  2643. b62.MeshType = Enum.MeshType.FileMesh
  2644. b62.Name = "Mesh"
  2645. b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2646. p63 = Instance.new("Part", m2)
  2647. p63.BrickColor = BrickColor.new("Toothpaste")
  2648. p63.Material = Enum.Material.SmoothPlastic
  2649. p63.Reflectance = 0.30000001192093
  2650. p63.CFrame = CFrame.new(24.452364, 25.8074818, 26.5063152, -0.573574424, -0.280167937, -0.769747615, -2.8286056e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172729, 0.538984478)
  2651. p63.CanCollide = false
  2652. p63.FormFactor = Enum.FormFactor.Custom
  2653. p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2654. p63.BottomSurface = Enum.SurfaceType.Smooth
  2655. p63.TopSurface = Enum.SurfaceType.Smooth
  2656. b63 = Instance.new("SpecialMesh", p63)
  2657. b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2658. b63.TextureId = ""
  2659. b63.MeshType = Enum.MeshType.FileMesh
  2660. b63.Name = "Mesh"
  2661. b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2662. p64 = Instance.new("Part", m2)
  2663. p64.BrickColor = BrickColor.new("Toothpaste")
  2664. p64.Material = Enum.Material.SmoothPlastic
  2665. p64.Reflectance = 0.30000001192093
  2666. p64.CFrame = CFrame.new(24.568594, 25.7558441, 26.4249344, -0.573574424, -0.280167967, -0.769747615, -2.85661054e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172684, 0.538984478)
  2667. p64.CanCollide = false
  2668. p64.FormFactor = Enum.FormFactor.Custom
  2669. p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2670. p64.BottomSurface = Enum.SurfaceType.Smooth
  2671. p64.TopSurface = Enum.SurfaceType.Smooth
  2672. b64 = Instance.new("SpecialMesh", p64)
  2673. b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2674. b64.TextureId = ""
  2675. b64.MeshType = Enum.MeshType.FileMesh
  2676. b64.Name = "Mesh"
  2677. b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2678. p65 = Instance.new("Part", m2)
  2679. p65.BrickColor = BrickColor.new("Medium stone grey")
  2680. p65.Transparency = 1
  2681. p65.Name = "TorsoPart"
  2682. p65.CFrame = CFrame.new(27.0399818, 25.1251049, 25.3600311, 0.999996543, 2.59280205e-006, 8.94069672e-008, 2.77161598e-006, 0.999995351, 1.56462193e-006, 6.2584877e-007, 1.51991844e-006, 0.999998093)
  2683. p65.FormFactor = Enum.FormFactor.Symmetric
  2684. p65.Size = Vector3.new(4, 4, 2)
  2685. w1 = Instance.new("Weld", p1)
  2686. w1.Name = "Part_Weld"
  2687. w1.Part0 = p1
  2688. w1.C0 = CFrame.new(7.48623466, 46.9062119, -4.72964478, -0.579227924, 0.707106769, -0.405579776, -0.579227805, -0.707106769, -0.405579716, -0.573576331, 0, 0.819152117)
  2689. w1.Part1 = p2
  2690. w1.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2691. w2 = Instance.new("Weld", p2)
  2692. w2.Name = "Part_Weld"
  2693. w2.Part0 = p2
  2694. w2.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2695. w2.Part1 = p3
  2696. w2.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2697. w3 = Instance.new("Weld", p3)
  2698. w3.Name = "Part_Weld"
  2699. w3.Part0 = p3
  2700. w3.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2701. w3.Part1 = p4
  2702. w3.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2703. w4 = Instance.new("Weld", p4)
  2704. w4.Name = "Part_Weld"
  2705. w4.Part0 = p4
  2706. w4.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2707. w4.Part1 = p5
  2708. w4.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2709. w5 = Instance.new("Weld", p5)
  2710. w5.Name = "Part_Weld"
  2711. w5.Part0 = p5
  2712. w5.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2713. w5.Part1 = p6
  2714. w5.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2715. w6 = Instance.new("Weld", p6)
  2716. w6.Name = "Part_Weld"
  2717. w6.Part0 = p6
  2718. w6.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2719. w6.Part1 = p7
  2720. w6.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2721. w7 = Instance.new("Weld", p7)
  2722. w7.Name = "Part_Weld"
  2723. w7.Part0 = p7
  2724. w7.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2725. w7.Part1 = p8
  2726. w7.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2727. w8 = Instance.new("Weld", p8)
  2728. w8.Name = "Part_Weld"
  2729. w8.Part0 = p8
  2730. w8.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2731. w8.Part1 = p9
  2732. w8.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2733. w9 = Instance.new("Weld", p9)
  2734. w9.Name = "Part_Weld"
  2735. w9.Part0 = p9
  2736. w9.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2737. w9.Part1 = p10
  2738. w9.C1 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2739. w10 = Instance.new("Weld", p10)
  2740. w10.Name = "Part_Weld"
  2741. w10.Part0 = p10
  2742. w10.C0 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2743. w10.Part1 = p11
  2744. w10.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2745. w11 = Instance.new("Weld", p11)
  2746. w11.Name = "Part_Weld"
  2747. w11.Part0 = p11
  2748. w11.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2749. w11.Part1 = p12
  2750. w11.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2751. w12 = Instance.new("Weld", p12)
  2752. w12.Name = "Part_Weld"
  2753. w12.Part0 = p12
  2754. w12.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2755. w12.Part1 = p13
  2756. w12.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2757. w13 = Instance.new("Weld", p13)
  2758. w13.Name = "Part_Weld"
  2759. w13.Part0 = p13
  2760. w13.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2761. w13.Part1 = p14
  2762. w13.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2763. w14 = Instance.new("Weld", p14)
  2764. w14.Name = "Part_Weld"
  2765. w14.Part0 = p14
  2766. w14.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2767. w14.Part1 = p15
  2768. w14.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2769. w15 = Instance.new("Weld", p15)
  2770. w15.Name = "Part_Weld"
  2771. w15.Part0 = p15
  2772. w15.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2773. w15.Part1 = p16
  2774. w15.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2775. w16 = Instance.new("Weld", p16)
  2776. w16.Name = "Part_Weld"
  2777. w16.Part0 = p16
  2778. w16.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2779. w16.Part1 = p17
  2780. w16.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2781. w17 = Instance.new("Weld", p17)
  2782. w17.Name = "Part_Weld"
  2783. w17.Part0 = p17
  2784. w17.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2785. w17.Part1 = p18
  2786. w17.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2787. w18 = Instance.new("Weld", p18)
  2788. w18.Name = "Part_Weld"
  2789. w18.Part0 = p18
  2790. w18.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2791. w18.Part1 = p19
  2792. w18.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2793. w19 = Instance.new("Weld", p19)
  2794. w19.Name = "Part_Weld"
  2795. w19.Part0 = p19
  2796. w19.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2797. w19.Part1 = p20
  2798. w19.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2799. w20 = Instance.new("Weld", p20)
  2800. w20.Name = "Part_Weld"
  2801. w20.Part0 = p20
  2802. w20.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2803. w20.Part1 = p21
  2804. w20.C1 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2805. w21 = Instance.new("Weld", p21)
  2806. w21.Name = "Part_Weld"
  2807. w21.Part0 = p21
  2808. w21.C0 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2809. w21.Part1 = p22
  2810. w21.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2811. w22 = Instance.new("Weld", p22)
  2812. w22.Name = "Part_Weld"
  2813. w22.Part0 = p22
  2814. w22.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2815. w22.Part1 = p23
  2816. w22.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2817. w23 = Instance.new("Weld", p23)
  2818. w23.Name = "Part_Weld"
  2819. w23.Part0 = p23
  2820. w23.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2821. w23.Part1 = p24
  2822. w23.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2823. w24 = Instance.new("Weld", p24)
  2824. w24.Name = "Part_Weld"
  2825. w24.Part0 = p24
  2826. w24.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2827. w24.Part1 = p25
  2828. w24.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2829. w25 = Instance.new("Weld", p25)
  2830. w25.Name = "Part_Weld"
  2831. w25.Part0 = p25
  2832. w25.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2833. w25.Part1 = p26
  2834. w25.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2835. w26 = Instance.new("Weld", p26)
  2836. w26.Name = "Part_Weld"
  2837. w26.Part0 = p26
  2838. w26.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2839. w26.Part1 = p27
  2840. w26.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2841. w27 = Instance.new("Weld", p27)
  2842. w27.Name = "Part_Weld"
  2843. w27.Part0 = p27
  2844. w27.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2845. w27.Part1 = p28
  2846. w27.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2847. w28 = Instance.new("Weld", p28)
  2848. w28.Name = "Part_Weld"
  2849. w28.Part0 = p28
  2850. w28.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2851. w28.Part1 = p29
  2852. w28.C1 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  2853. w29 = Instance.new("Weld", p29)
  2854. w29.Name = "Part_Weld"
  2855. w29.Part0 = p29
  2856. w29.C0 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  2857. w29.Part1 = p30
  2858. w29.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2859. w30 = Instance.new("Weld", p30)
  2860. w30.Name = "Part_Weld"
  2861. w30.Part0 = p30
  2862. w30.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2863. w30.Part1 = p31
  2864. w30.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2865. w31 = Instance.new("Weld", p31)
  2866. w31.Name = "Part_Weld"
  2867. w31.Part0 = p31
  2868. w31.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2869. w31.Part1 = p32
  2870. w31.C1 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2871. w32 = Instance.new("Weld", p32)
  2872. w32.Name = "Part_Weld"
  2873. w32.Part0 = p32
  2874. w32.C0 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2875. w32.Part1 = p33
  2876. w32.C1 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  2877. w33 = Instance.new("Weld", p33)
  2878. w33.Name = "Part_Weld"
  2879. w33.Part0 = p33
  2880. w33.C0 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  2881. w33.Part1 = p34
  2882. w33.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2883. w34 = Instance.new("Weld", p34)
  2884. w34.Name = "Part_Weld"
  2885. w34.Part0 = p34
  2886. w34.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2887. w34.Part1 = p35
  2888. w34.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2889. w35 = Instance.new("Weld", p35)
  2890. w35.Name = "Part_Weld"
  2891. w35.Part0 = p35
  2892. w35.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2893. w35.Part1 = p36
  2894. w35.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2895. w36 = Instance.new("Weld", p36)
  2896. w36.Name = "Part_Weld"
  2897. w36.Part0 = p36
  2898. w36.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2899. w36.Part1 = p37
  2900. w36.C1 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  2901. w37 = Instance.new("Weld", p37)
  2902. w37.Name = "Part_Weld"
  2903. w37.Part0 = p37
  2904. w37.C0 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  2905. w37.Part1 = p38
  2906. w37.C1 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  2907. w38 = Instance.new("Weld", p38)
  2908. w38.Name = "Part_Weld"
  2909. w38.Part0 = p38
  2910. w38.C0 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  2911. w38.Part1 = p39
  2912. w38.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2913. w39 = Instance.new("Weld", p39)
  2914. w39.Name = "Part_Weld"
  2915. w39.Part0 = p39
  2916. w39.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2917. w39.Part1 = p40
  2918. w39.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2919. w40 = Instance.new("Weld", p40)
  2920. w40.Name = "Part_Weld"
  2921. w40.Part0 = p40
  2922. w40.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2923. w40.Part1 = p41
  2924. w40.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2925. w41 = Instance.new("Weld", p41)
  2926. w41.Name = "Part_Weld"
  2927. w41.Part0 = p41
  2928. w41.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2929. w41.Part1 = p42
  2930. w41.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2931. w42 = Instance.new("Weld", p42)
  2932. w42.Name = "Part_Weld"
  2933. w42.Part0 = p42
  2934. w42.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2935. w42.Part1 = p43
  2936. w42.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2937. w43 = Instance.new("Weld", p43)
  2938. w43.Name = "Part_Weld"
  2939. w43.Part0 = p43
  2940. w43.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2941. w43.Part1 = p44
  2942. w43.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2943. w44 = Instance.new("Weld", p44)
  2944. w44.Name = "Part_Weld"
  2945. w44.Part0 = p44
  2946. w44.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2947. w44.Part1 = p45
  2948. w44.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2949. w45 = Instance.new("Weld", p45)
  2950. w45.Name = "Part_Weld"
  2951. w45.Part0 = p45
  2952. w45.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2953. w45.Part1 = p46
  2954. w45.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2955. w46 = Instance.new("Weld", p46)
  2956. w46.Name = "Part_Weld"
  2957. w46.Part0 = p46
  2958. w46.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2959. w46.Part1 = p47
  2960. w46.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2961. w47 = Instance.new("Weld", p47)
  2962. w47.Name = "Part_Weld"
  2963. w47.Part0 = p47
  2964. w47.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2965. w47.Part1 = p48
  2966. w47.C1 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  2967. w48 = Instance.new("Weld", p48)
  2968. w48.Name = "Part_Weld"
  2969. w48.Part0 = p48
  2970. w48.C0 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  2971. w48.Part1 = p49
  2972. w48.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2973. w49 = Instance.new("Weld", p49)
  2974. w49.Name = "Part_Weld"
  2975. w49.Part0 = p49
  2976. w49.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2977. w49.Part1 = p50
  2978. w49.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2979. w50 = Instance.new("Weld", p50)
  2980. w50.Name = "Part_Weld"
  2981. w50.Part0 = p50
  2982. w50.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2983. w50.Part1 = p51
  2984. w50.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2985. w51 = Instance.new("Weld", p51)
  2986. w51.Name = "Part_Weld"
  2987. w51.Part0 = p51
  2988. w51.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2989. w51.Part1 = p52
  2990. w51.C1 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  2991. w52 = Instance.new("Weld", p52)
  2992. w52.Name = "Part_Weld"
  2993. w52.Part0 = p52
  2994. w52.C0 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  2995. w52.Part1 = p53
  2996. w52.C1 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  2997. w53 = Instance.new("Weld", p53)
  2998. w53.Name = "Part_Weld"
  2999. w53.Part0 = p53
  3000. w53.C0 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  3001. w53.Part1 = p54
  3002. w53.C1 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  3003. w54 = Instance.new("Weld", p54)
  3004. w54.Name = "Part_Weld"
  3005. w54.Part0 = p54
  3006. w54.C0 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  3007. w54.Part1 = p55
  3008. w54.C1 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  3009. w55 = Instance.new("Weld", p55)
  3010. w55.Name = "Part_Weld"
  3011. w55.Part0 = p55
  3012. w55.C0 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  3013. w55.Part1 = p56
  3014. w55.C1 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3015. w56 = Instance.new("Weld", p56)
  3016. w56.Name = "Part_Weld"
  3017. w56.Part0 = p56
  3018. w56.C0 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3019. w56.Part1 = p57
  3020. w56.C1 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3021. w57 = Instance.new("Weld", p57)
  3022. w57.Name = "Part_Weld"
  3023. w57.Part0 = p57
  3024. w57.C0 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3025. w57.Part1 = p58
  3026. w57.C1 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3027. w58 = Instance.new("Weld", p58)
  3028. w58.Name = "Part_Weld"
  3029. w58.Part0 = p58
  3030. w58.C0 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3031. w58.Part1 = p59
  3032. w58.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3033. w59 = Instance.new("Weld", p59)
  3034. w59.Name = "Part_Weld"
  3035. w59.Part0 = p59
  3036. w59.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3037. w59.Part1 = p60
  3038. w59.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3039. w60 = Instance.new("Weld", p60)
  3040. w60.Name = "Part_Weld"
  3041. w60.Part0 = p60
  3042. w60.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3043. w60.Part1 = p61
  3044. w60.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3045. w61 = Instance.new("Weld", p61)
  3046. w61.Name = "Part_Weld"
  3047. w61.Part0 = p61
  3048. w61.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3049. w61.Part1 = p62
  3050. w61.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3051. w62 = Instance.new("Weld", p62)
  3052. w62.Name = "Part_Weld"
  3053. w62.Part0 = p62
  3054. w62.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3055. w62.Part1 = p63
  3056. w62.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3057. w63 = Instance.new("Weld", p63)
  3058. w63.Name = "Part_Weld"
  3059. w63.Part0 = p63
  3060. w63.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3061. w63.Part1 = p64
  3062. w63.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3063. w64 = Instance.new("Weld", p64)
  3064. w64.Name = "TorsoPart_Weld"
  3065. w64.Part0 = p64
  3066. w64.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3067. w64.Part1 = p65
  3068. w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3069. m2.Parent = char
  3070. m2:MakeJoints()
  3071. ----------------------------------------------------
  3072. local cor2 = Instance.new("Part", char.Wings)
  3073. cor2.Name = "Thingy"
  3074. cor2.Locked = true
  3075. cor2.BottomSurface = 0
  3076. cor2.CanCollide = false
  3077. cor2.Size = Vector3.new(0.2, 0.2, 0.2)
  3078. cor2.Transparency = 1
  3079. cor2.TopSurface = 0
  3080. corw2 = Instance.new("Weld", cor2)
  3081. corw2.Part0 = torso
  3082. corw2.Part1 = cor2
  3083. corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  3084. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3085. weld2 = Instance.new("Weld", char.Wings)
  3086. weld2.Part0 = cor2
  3087. weld2.Part1 = char.Wings.TorsoPart
  3088. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3089. ----------------------------------------------------
  3090. local animpose = "Idle"
  3091. local lastanimpose = "Idle"
  3092. local sine = 0
  3093. local change = 1
  3094. local val = 0
  3095. local ffing = false
  3096. local och = 0
  3097. ----------------------------------------------------
  3098. wPart = function(x,y,z,color,tr,cc,an,parent)
  3099. local wp = Instance.new('WedgePart',parent or Weapon)
  3100. wp.formFactor = 'Custom'
  3101. wp.Size = Vector3.new(x,y,z)
  3102. wp.BrickColor = BrickColor.new(color)
  3103. wp.CanCollide = cc
  3104. wp.Transparency = tr
  3105. wp.Anchored = an
  3106. wp.TopSurface,wp.BottomSurface = 0,0
  3107. return wp
  3108. end
  3109.  
  3110. Mesh = function(par,num,x,y,z)
  3111. local msh = _
  3112. if num == 1 then
  3113. msh = Instance.new("CylinderMesh",par)
  3114. elseif num == 2 then
  3115. msh = Instance.new("SpecialMesh",par)
  3116. msh.MeshType = 3
  3117. elseif num == 3 then
  3118. msh = Instance.new("BlockMesh",par)
  3119. elseif num == 4 then
  3120. msh = Instance.new("SpecialMesh",par)
  3121. msh.MeshType = "Torso"
  3122. elseif type(num) == 'string' then
  3123. msh = Instance.new("SpecialMesh",par)
  3124. msh.MeshId = num
  3125. end
  3126. msh.Scale = Vector3.new(x,y,z)
  3127. return msh
  3128. end
  3129.  
  3130. local function CFrameFromTopBack(at, top, back)
  3131. local right = top:Cross(back)
  3132. return CFrame.new(at.x, at.y, at.z,
  3133. right.x, top.x, back.x,
  3134. right.y, top.y, back.y,
  3135. right.z, top.z, back.z)
  3136. end
  3137.  
  3138. function Triangle(a, b, c)
  3139. local edg1 = (c-a):Dot((b-a).unit)
  3140. local edg2 = (a-b):Dot((c-b).unit)
  3141. local edg3 = (b-c):Dot((a-c).unit)
  3142. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  3143. a, b, c = a, b, c
  3144. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  3145. a, b, c = b, c, a
  3146. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  3147. a, b, c = c, a, b
  3148. else
  3149. print("unreachable")
  3150. end
  3151. local len1 = (c-a):Dot((b-a).unit)
  3152. local len2 = (b-a).magnitude - len1
  3153. local width = (a + (b-a).unit*len1 - c).magnitude
  3154. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  3155. local list = {}
  3156. if len1 > 0.01 then
  3157. local w1 = wPart(0,0,0,'Toothpaste',0.5,false,true,char)
  3158. local sz = Vector3.new(0.2, width, len1)
  3159. w1.Size = sz
  3160. local sp = Mesh(w1,2,0,0,0)
  3161. sp.MeshType='Wedge'
  3162. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  3163. w1:BreakJoints()
  3164. w1.Anchored = true
  3165. w1.Transparency = 0.7
  3166. Spawn(function()
  3167. for i=0,1,0.1 do
  3168. wait()
  3169. w1.Transparency=w1.Transparency+0.03
  3170. end
  3171. end)
  3172. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  3173. table.insert(list,w1)
  3174. end
  3175. if len2 > 0.01 then
  3176. local w2 = wPart(0,0,0,'Toothpaste',0.5,false,true,char)
  3177. local sz = Vector3.new(0.2, width, len2)
  3178. w2.Size = sz
  3179. local sp = Mesh(w2,2,0,0,0)
  3180. sp.MeshType='Wedge'
  3181. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  3182. w2:BreakJoints()
  3183. w2.Anchored = true
  3184. w2.Transparency = 0.7
  3185. Spawn(function()
  3186. for i=0,1,0.1 do
  3187. wait()
  3188. w2.Transparency=w2.Transparency+0.03
  3189. end
  3190. end)
  3191. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  3192. table.insert(list,w2)
  3193. end
  3194. return unpack(list)
  3195. end
  3196.  
  3197. function trail(p,t,h)
  3198. Spawn(function()
  3199. local blcf = p.CFrame
  3200. local scfr = blcf
  3201. for i=1,t do
  3202. local blcf = p.CFrame
  3203. if scfr and (p.Position-scfr.p).magnitude > .1 then
  3204. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  3205. if a then game.Debris:AddItem(a,1) end
  3206. if b then game.Debris:AddItem(b,1) end
  3207. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  3208. if a then game.Debris:AddItem(a,1) end
  3209. if b then game.Debris:AddItem(b,1) end
  3210. scfr = blcf
  3211. elseif not scfr then
  3212. scfr = blcf
  3213. end
  3214. game:service'RunService'.RenderStepped:wait()
  3215. end
  3216. scfr=nil
  3217. end)
  3218. end
  3219. trail(char.Sword.Blade,1e1000,5)
  3220. ----------------------------------------------------
  3221. char.Sword.Blade.Touched:connect(function(ht)
  3222. hit = ht.Parent
  3223. if ht and hit:IsA("Model") then
  3224. if hit:FindFirstChild("Humanoid") then
  3225. if hit.Name ~= p.Name then
  3226. if Debounces.Slashing == true and Debounces.Slashed == false then
  3227. Debounces.Slashed = true
  3228. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,10000))
  3229. wait(.3)
  3230. Debounces.Slashed = false
  3231. end
  3232. end
  3233. end
  3234. elseif ht and hit:IsA("Hat") then
  3235. if hit.Parent.Name ~= p.Name then
  3236. if hit.Parent:FindFirstChild("Humanoid") then
  3237. if Debounces.Slashing == true and Debounces.Slashed == false then
  3238. Debounces.Slashed = true
  3239. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,1000))
  3240. wait(.3)
  3241. Debounces.Slashed = false
  3242. end
  3243. end
  3244. end
  3245. end
  3246. end)
  3247.  
  3248. ----------------------------------------------------
  3249. function attackone()
  3250. for i = 1, 10 do
  3251. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.6, 0.9, -0.62)*CFrame.Angles(math.rad(170),math.rad(20),math.rad(-60)), 0.56)
  3252. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0.2)*CFrame.Angles(math.rad(-30),math.rad(-10),math.rad(-20)), 0.5)
  3253. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(10),math.rad(-46),0), 0.47)
  3254. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-8), math.rad(46), 0), 0.55)
  3255. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(20), math.rad(-10)), 0.43)
  3256. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(-20), math.rad(10)), 0.43)
  3257. if Debounces.on == false then break end
  3258. rs:wait()
  3259. end
  3260. --trail(char.Sword.Blade,5,6)
  3261. Debounces.Slashing = true
  3262. z = Instance.new("Sound", hed)
  3263. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3264. z.Pitch = ptz[math.random(1,#ptz)]
  3265. z.Volume = 1
  3266. wait(.01)
  3267. z:Play()
  3268. for i = 1, 10 do
  3269. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, .3)*CFrame.Angles(math.rad(-10),math.rad(-15),math.rad(50)), 0.67)
  3270. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4, 0.7, -0.3)*CFrame.Angles(math.rad(80),math.rad(-10),math.rad(-20)), 0.58)
  3271. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(40),0), 0.54)
  3272. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.66)
  3273. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(20), math.rad(-10)), 0.5)
  3274. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-20), math.rad(10)), 0.5)
  3275. if Debounces.on == false then break end
  3276. rs:wait()
  3277. end
  3278. Debounces.Slashing = false
  3279. end
  3280. ----------------------------------------------------
  3281. function attacktwo()
  3282. for i = 1, 5 do
  3283. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.25, 0.9, 0)*CFrame.Angles(math.rad(170),math.rad(20),math.rad(60)), 0.8)
  3284. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.17)*CFrame.Angles(math.rad(-30),math.rad(-10),math.rad(-20)), 0.8)
  3285. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(-10),math.rad(46),0), 0.8)
  3286. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(-46), 0), 0.8)
  3287. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(20), math.rad(-10)), 0.8)
  3288. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(-20), math.rad(10)), 0.8)
  3289. if Debounces.on == false then break end
  3290. rs:wait()
  3291. end
  3292. --trail(char.Sword.Blade,5,6)
  3293. Debounces.Slashing = true
  3294. z = Instance.new("Sound", hed)
  3295. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3296. z.Pitch = ptz[math.random(1,#ptz)]
  3297. z.Volume = 1
  3298. wait(.01)
  3299. z:Play()
  3300. for i = 1, 10 do
  3301. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8, 0.5, -0.35)*CFrame.Angles(math.rad(0),math.rad(-15),math.rad(-50)), 0.77)
  3302. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4, 0.6, -0.35)*CFrame.Angles(math.rad(-50),math.rad(10),math.rad(-20)), 0.58)
  3303. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.54)
  3304. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-9), math.rad(40), 0), 0.66)
  3305. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(20), math.rad(-10)), 0.5)
  3306. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-20), math.rad(10)), 0.5)
  3307. if Debounces.on == false then break end
  3308. rs:wait()
  3309. end
  3310. Debounces.Slashing = false
  3311. end
  3312. ----------------------------------------------------
  3313. function attackthree()
  3314. for i = 1, 10 do
  3315. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-50)), 0.63)
  3316. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(50)), 0.63)
  3317. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0.1)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.54)
  3318. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  3319. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.5)
  3320. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.5)
  3321. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3322. if Debounces.on == false then
  3323. break
  3324. end
  3325. rs:wait()
  3326. end
  3327. --trail(char.Sword.Blade,5,6)
  3328. Debounces.Slashing = true
  3329. z = Instance.new("Sound", hed)
  3330. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3331. z.Pitch = ptz[math.random(1,#ptz)]
  3332. z.Volume = 1
  3333. wait(.01)
  3334. z:Play()
  3335. for i = 1, 10 do
  3336. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(40)), 0.7)
  3337. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(-40)), 0.7)
  3338. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  3339. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  3340. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3341. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3342. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3343. if Debounces.on==false then
  3344. break
  3345. end
  3346. rs:wait()
  3347. end
  3348. Debounces.Slashing = false
  3349. end
  3350. ----------------------------------------------------
  3351. ComboNum = 0
  3352. mouse.Button1Down:connect(function()
  3353. if Debounces.CanAttack == true then
  3354. Debounces.CanAttack = false
  3355. Debounces.NoIdl = true
  3356. Debounces.on = true
  3357. if ComboNum == 0 then
  3358. attackone()
  3359. elseif ComboNum == 1 then
  3360. attacktwo()
  3361. elseif ComboNum == 2 then
  3362. attackthree()
  3363. end
  3364. ComboNum = ComboNum + 1
  3365. Debounces.CanAttack = true
  3366. Debounces.NoIdl = false
  3367. Debounces.on = false
  3368. wait(.5)
  3369. if Debounces.CanAttack == true then
  3370. ComboNum = 0
  3371. end
  3372. end
  3373. end)
  3374. ----------------------------------------------------
  3375. local player = game.Players.LocalPlayer
  3376. local pchar = player.Character
  3377. local mouse = player:GetMouse()
  3378. local cam = workspace.CurrentCamera
  3379.  
  3380. local rad = math.rad
  3381.  
  3382. local keysDown = {}
  3383. local flySpeed = 0
  3384. local MAX_FLY_SPEED = 150
  3385.  
  3386. local canFly = false
  3387. local flyToggled = false
  3388.  
  3389. local forward, side = 0, 0
  3390. local lastForward, lastSide = 0, 0
  3391.  
  3392. local floatBP = Instance.new("BodyPosition")
  3393. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  3394. local flyBV = Instance.new("BodyVelocity")
  3395. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  3396. local turnBG = Instance.new("BodyGyro")
  3397. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  3398.  
  3399. mouse.KeyDown:connect(function(key)
  3400. keysDown[key] = true
  3401.  
  3402. if key == "f" then
  3403. flyToggled = not flyToggled
  3404.  
  3405. if not flyToggled then
  3406. stanceToggle = "Normal"
  3407. floatBP.Parent = nil
  3408. flyBV.Parent = nil
  3409. turnBG.Parent = nil
  3410. root.Velocity = Vector3.new()
  3411. pchar.Humanoid.PlatformStand = false
  3412. end
  3413. end
  3414.  
  3415. end)
  3416. mouse.KeyUp:connect(function(key)
  3417. keysDown[key] = nil
  3418. end)
  3419.  
  3420. local function updateFly()
  3421.  
  3422. if not flyToggled then return end
  3423.  
  3424. lastForward = forward
  3425. lastSide = side
  3426.  
  3427. forward = 0
  3428. side = 0
  3429.  
  3430. if keysDown.w then
  3431. forward = forward + 1
  3432. end
  3433. if keysDown.s then
  3434. forward = forward - 1
  3435. end
  3436. if keysDown.a then
  3437. side = side - 1
  3438. end
  3439. if keysDown.d then
  3440. side = side + 1
  3441. end
  3442.  
  3443. canFly = (forward ~= 0 or side ~= 0)
  3444.  
  3445. if canFly then
  3446. stanceToggle = "Floating"
  3447. turnBG.Parent = root
  3448. floatBP.Parent = nil
  3449. flyBV.Parent = root
  3450.  
  3451. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  3452. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  3453. else
  3454. floatBP.position = root.Position
  3455. floatBP.Parent = root
  3456.  
  3457. flySpeed = flySpeed - 1
  3458. if flySpeed < 0 then flySpeed = 0 end
  3459. end
  3460.  
  3461. local camCF = cam.CoordinateFrame
  3462. local in_forward = canFly and forward or lastForward
  3463. local in_side = canFly and side or lastSide
  3464.  
  3465. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  3466. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  3467.  
  3468. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  3469. 0)
  3470. end
  3471.  
  3472. game:service'RunService'.RenderStepped:connect(function()
  3473. if flyToggled then
  3474. pchar.Humanoid.PlatformStand = true
  3475. end
  3476. updateFly()
  3477. end)
  3478. ----------------------------------------------------
  3479. function Charge()
  3480. pt=Instance.new('Part',torso)
  3481. pt.Anchored=true
  3482. pt.CanCollide=false
  3483. pt.Locked = true
  3484. pt.FormFactor='Custom'
  3485. pt.Size=Vector3.new(1,1,1)
  3486. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3487. pt.Transparency=0.2
  3488. pt.BrickColor=BrickColor.new("Toothpaste")
  3489. msh=Instance.new('SpecialMesh',pt)
  3490. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3491. msh.Scale=Vector3.new(6,3,6)
  3492. pt2=pt:clone()
  3493. pt2.Parent = torso
  3494. pt2.Transparency=0.4
  3495. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3496. pt2.BrickColor=BrickColor.new("Toothpaste")
  3497. msh2=msh:clone()
  3498. msh2.Parent=pt2
  3499. msh2.Scale=Vector3.new(8,4,8)
  3500. pt3=Instance.new('Part',torso)
  3501. pt3.Anchored=true
  3502. pt3.CanCollide=false
  3503. pt3.Locked = true
  3504. pt3.FormFactor='Custom'
  3505. pt3.Size=Vector3.new(1,1,1)
  3506. pt3.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3507. pt3.Transparency=0.6
  3508. pt3.BrickColor=BrickColor.new("Toothpaste")
  3509. msh3=Instance.new('SpecialMesh',pt3)
  3510. msh3.MeshId='http://www.roblox.com/asset/?id=20329976'
  3511. msh3.Scale=Vector3.new(12,6,12)
  3512. pt4=pt:clone()
  3513. pt4.Parent = torso
  3514. pt4.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3515. pt4.Transparency=0.8
  3516. pt4.BrickColor=BrickColor.new("Toothpaste")
  3517. msh4=msh:clone()
  3518. msh4.Parent=pt4
  3519. msh4.Scale=Vector3.new(16,8,16)
  3520. coroutine.resume(coroutine.create(function()
  3521. for i=1, math.huge, 4 do
  3522. if Charging == true then
  3523. wait()
  3524. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.11*math.cos(sine/10)),0)
  3525. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.12*math.cos(sine/12)),0)
  3526. pt3.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.13*math.cos(sine/14)),0)
  3527. pt4.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.14*math.cos(sine/16)),0)
  3528. pt.CFrame = pt.CFrame+Vector3.new(0,0.01,0)
  3529. pt2.CFrame = pt2.CFrame+Vector3.new(0,0.01,0)
  3530. pt3.CFrame = pt3.CFrame+Vector3.new(0,0.01,0)
  3531. pt4.CFrame = pt4.CFrame+Vector3.new(0,0.01,0)
  3532. msh.Scale = msh.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/9),0.05)
  3533. msh2.Scale = msh2.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/7),0.05)
  3534. msh3.Scale = msh3.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/5),0.05)
  3535. msh4.Scale = msh4.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/3),0.05)
  3536. elseif Charging == false then
  3537. pt:Remove()
  3538. pt2:Remove()
  3539. pt3:Remove()
  3540. pt4:Remove()
  3541. break
  3542. end
  3543. end
  3544. end))
  3545. end
  3546. ----------------------------------------------------
  3547. local chot={}
  3548. local cns=0
  3549. mod3 = Instance.new("Model",char)
  3550. mouse.KeyDown:connect(function(key)
  3551. if key == "e" then
  3552. Charging = true
  3553. if Debounces.CanAttack == true then
  3554. Debounces.CanAttack = false
  3555. Debounces.NoIdl = true
  3556. Debounces.on = true
  3557. chot={}
  3558. Charge()
  3559. for i = 1, 20 do
  3560. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(20)), 0.4)
  3561. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-26),math.rad(0),math.rad(-40)), 0.4)
  3562. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.2)
  3563. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-40),math.rad(0),0), 0.2)
  3564. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(0, math.rad(50), math.rad(0)), 0.05)
  3565. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-10)), 0.4)
  3566. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.4)
  3567. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.8, 0.44) * CFrame.Angles(math.rad(-150), math.rad(0), math.rad(0)), 0.4)
  3568. if Debounces.on == false then
  3569. break
  3570. end
  3571. rs:wait()
  3572. end
  3573. local nt=0
  3574. for i=0,5,0.02 do
  3575. nt=nt+1
  3576. cns=i
  3577. if nt>=2 then
  3578. nt=0
  3579. local cho=NewPart(mod3,Vector3.new(2,2,2),char.Sword.Blade.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Toothpaste","Neon")
  3580. debris:AddItem(cho,1)
  3581. cho.Mesh.MeshType=3
  3582. table.insert(chot,cho)
  3583. end
  3584. wait()
  3585. end
  3586. Charging = false
  3587. for i = 1, 10 do
  3588. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-50)), 0.63)
  3589. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(50)), 0.63)
  3590. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0.1)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.54)
  3591. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  3592. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.5)
  3593. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.5)
  3594. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3595. if Debounces.on == false then
  3596. break
  3597. end
  3598. rs:wait()
  3599. end
  3600. Spawn(function()
  3601. local Parts = {}
  3602. for Y = -5,5 do
  3603. local P = Instance.new("Part",char)
  3604. P.Anchored = true
  3605. P.FormFactor = "Custom"
  3606. P.CanCollide = false
  3607. P.Size = Vector3.new(1,2,1)
  3608. P.Material = "Neon"
  3609. P.TopSurface = "SmoothNoOutlines"
  3610. P.BottomSurface = "SmoothNoOutlines"
  3611. P.BrickColor = BrickColor.new("Toothpaste")
  3612. P.Name = tostring(Y)
  3613. local i = (Y+5)/(10)
  3614. i = 1-math.cos(math.pi*i-(math.pi/2))
  3615. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3616. --[[P.Touched:connect(function(ht)
  3617. local hit = ht.Parent
  3618. if hit:FindFirstChild("Humanoid") then
  3619. hit.Humanoid:TakeDamage(math.random(20,50))
  3620. end
  3621. end)]]--
  3622. P.Touched:connect(function(ht)
  3623. hit = ht.Parent
  3624. if ht and hit:IsA("Model") then
  3625. if hit:FindFirstChild("Humanoid") then
  3626. if hit.Name ~= p.Name then
  3627. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  3628. hit:FindFirstChild("Humanoid").PlatformStand = true
  3629. wait(1)
  3630. end
  3631. end
  3632. elseif ht and hit:IsA("Hat") then
  3633. if hit.Parent.Name ~= p.Name then
  3634. if hit.Parent:FindFirstChild("Humanoid") then
  3635. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  3636. hit:FindFirstChild("Humanoid").PlatformStand = true
  3637. wait(1)
  3638. end
  3639. end
  3640. end
  3641. end)
  3642. Parts[#Parts+1] = P
  3643. end
  3644. local BREAKIT = false
  3645. local CParts = {}
  3646. local Rocks = {}
  3647. local LastPos = nil
  3648. for i = 1,70 do
  3649. for i2,v in pairs(Parts) do
  3650. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3651. local cf = v.CFrame
  3652. v.Size = v.Size+Vector3.new(1.1,0.35,0.2)
  3653. v.CFrame = cf
  3654. v.Transparency = v.Transparency+0.02
  3655. if v.Transparency >= 0.975 then BREAKIT = true end
  3656. if v.Name == "0" then
  3657. local Ignore = {}
  3658. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3659. if v.Character ~= nil then
  3660. Ignore[#Ignore+1] = v.Character
  3661. end
  3662. end
  3663. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3664. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3665. if Hit ~= nil then
  3666. if #Rocks == 0 then
  3667. for i = 1,5 do
  3668. local P = Instance.new("Part",char)
  3669. Rocks[#Rocks+1] = P
  3670. P.Anchored = true
  3671. P.FormFactor = "Custom"
  3672. P.BrickColor = Hit.BrickColor
  3673. P.Material = Hit.Material
  3674. P.TopSurface = "Smooth"
  3675. P.BottomSurface = "Smooth"
  3676. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3677. end
  3678. end
  3679. for i,P in pairs(Rocks) do
  3680. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3681. end
  3682. local P = Instance.new("Part",char)
  3683. CParts[#CParts+1] = {P,tick()}
  3684. P.Anchored = true
  3685. P.FormFactor = "Custom"
  3686. P.BrickColor = Hit.BrickColor
  3687. P.Material = Hit.Material
  3688. P.TopSurface = "Smooth"
  3689. P.BottomSurface = "Smooth"
  3690. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3691. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3692. Pos = Pos.p
  3693. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3694. local P = P:Clone()
  3695. CParts[#CParts+1] = {P,tick()}
  3696. P.Parent = char
  3697. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3698. Pos = Pos.p
  3699. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  3700. if LastPos ~= nil then
  3701. local P = P:Clone()
  3702. CParts[#CParts+1] = {P,tick()}
  3703. P.Parent = char
  3704. P.BrickColor = BrickColor.new("Crimson")
  3705. P.Material = "Neon"
  3706. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3707. Pos = Pos.p
  3708. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3709. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3710. --P.Velocity = Vector3.new(0,-1000,0)
  3711. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3712. end
  3713. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3714. end
  3715. end
  3716. end
  3717. if BREAKIT then break end
  3718. wait(0.002)
  3719. end
  3720. for i,v in pairs(Rocks) do
  3721. CParts[#CParts+1] = {v,tick()}
  3722. end
  3723. for i,v in pairs(Parts) do
  3724. v:Destroy()
  3725. end
  3726. Parts = nil
  3727. while true do
  3728. local t = tick()
  3729. local p = nil
  3730. for i,v in pairs(CParts) do
  3731. if t-v[2] > 4 then
  3732. v[1].Transparency = v[1].Transparency+0.05
  3733. if v[1].Transparency >= 1 then
  3734. v[1]:Destroy()
  3735. CParts[i] = nil
  3736. end
  3737. end
  3738. p = v
  3739. end
  3740. if p == nil then break end
  3741. wait(0.002)
  3742. end
  3743. for i,v in pairs(CParts) do
  3744. v:Destroy()
  3745. end
  3746. CParts = {}
  3747. end)
  3748. for i = 1, 10 do
  3749. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(40)), 0.7)
  3750. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(-40)), 0.7)
  3751. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  3752. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  3753. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3754. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3755. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3756. if Debounces.on==false then
  3757. break
  3758. end
  3759. rs:wait()
  3760. end
  3761. if Debounces.CanAttack == false then
  3762. Debounces.CanAttack = true
  3763. Debounces.NoIdl = false
  3764. Debounces.on = false
  3765. end
  3766. end
  3767. end
  3768. end)
  3769. ----------------------------------------------------
  3770. mouse.KeyDown:connect(function(key)
  3771. if string.byte(key) == 52 then
  3772. char.Humanoid.WalkSpeed = 28
  3773. end
  3774. end)
  3775. mouse.KeyUp:connect(function(key)
  3776. if string.byte(key) == 52 then
  3777. char.Humanoid.WalkSpeed = 60
  3778. end
  3779. end)
  3780. ----------------------------------------------------
  3781. game:GetService("RunService").RenderStepped:connect(function()
  3782. if char.Humanoid.Jump == true then
  3783. jump = true
  3784. else
  3785. jump = false
  3786. end
  3787. char.Humanoid.FreeFalling:connect(function(f)
  3788. if f then
  3789. ffing = true
  3790. else
  3791. ffing = false
  3792. end
  3793. end)
  3794. sine = sine + change
  3795. if jumpn == true then
  3796. animpose = "Jumping"
  3797. elseif ffing == true then
  3798. animpose = "Freefalling"
  3799. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 5 then
  3800. animpose = "Idle"
  3801. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3802. animpose = "Walking"
  3803. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3804. animpose = "Running"
  3805. end
  3806. if animpose ~= lastanimpose then
  3807. sine = 0
  3808. if Debounces.NoIdl == false then
  3809. for i = 1, 2 do
  3810. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
  3811. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  3812. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  3813. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3814. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  3815. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  3816. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  3817. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3818. end
  3819. wait()
  3820. end
  3821. else
  3822. end
  3823. lastanimpose = animpose
  3824. if Debounces.NoIdl == false then
  3825. if animpose == "Idle" then
  3826. change = 0.5
  3827. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-10),math.rad(-10),math.rad(14+2*math.cos(sine/10))), 0.4)
  3828. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-20),math.rad(6),math.rad(-10-2*math.cos(sine/10))), 0.4)
  3829. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/10)),math.rad(20),0), 0.2)
  3830. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3831. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.16*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-20), math.rad(0)), 0.05)
  3832. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0-0.1*math.cos(sine/10), -0.55) * CFrame.Angles(math.rad(-10+1*math.cos(sine/10)), math.rad(10), math.rad(-0-2*math.cos(sine/10))), 0.4)
  3833. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1-0.1*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-10), math.rad(0+2*math.cos(sine/10))), 0.4)
  3834. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.05)
  3835. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3836. --[[rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/8),0)*CFrame.Angles(math.rad(-10+4*math.cos(sine/8)),math.rad(-20-2*math.cos(sine/8)),math.rad(10+2*math.cos(sine/8))), 0.2)
  3837. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/8),0)*CFrame.Angles(math.rad(0),math.rad(10+2*math.cos(sine/8)),math.rad(-18-2*math.cos(sine/8))), 0.2)
  3838. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-18),math.rad(20+4*math.cos(sine/8)),0), 0.2)
  3839. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-12-3*math.cos(sine/8)),math.rad(0),0), 0.2)
  3840. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0+2*math.cos(sine/8)), math.rad(-20-4*math.cos(sine/8)), 0), 0.2)
  3841. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0-2*math.cos(sine/8)), math.rad(20+4*math.cos(sine/8)), math.rad(-5+1*math.cos(sine/8))), 0.2)
  3842. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0-4*math.cos(sine/8)), math.rad(-10-4*math.cos(sine/8)), math.rad(5+1*math.cos(sine/8))), 0.2)]]--
  3843. elseif animpose == "Walking" then
  3844. change = 1
  3845. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3846. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3847. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3848. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3849. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.17*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3850. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3851. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3852. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.05)
  3853. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3854. elseif animpose == "Running" then
  3855. change = 1
  3856. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-22),math.rad(20+2*math.cos(sine/14))), 0.2)
  3857. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-10),math.rad(10),math.rad(-14-2*math.cos(sine/14))), 0.2)
  3858. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(20),0,0), 0.4)
  3859. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3860. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-40),0, math.rad(0)), 0.05)
  3861. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(-8)), 0.4)
  3862. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(8)), 0.4)
  3863. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.05)
  3864. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3865. end
  3866. end
  3867. och=och+1
  3868. for _,v in pairs(chot) do
  3869. pcall(function()
  3870. v.CFrame=v.CFrame:lerp(char.Sword.Blade.CFrame,0.1)
  3871. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  3872. end)
  3873. end
  3874. end)
  3875. --[[while true do wait(0.2) https://preview.c9users.io/jaspher/rbx_stoof/RMMech.lua
  3876. if charge == true then
  3877. MagicRing(BrickColor.new('Toothpaste'),torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,math.rad(90)),0,-0.2,0,0,0,0,0.4,0.4,0.4,.08)
  3878. end
  3879. end]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement