Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 123.52 KB | None | 0 0
  1. Player=game:GetService("Players").LocalPlayer
  2. -----------------------------------------------------------------
  3. local p = game.Players.LocalPlayer
  4. local char = p.Character
  5. local mouse = p:GetMouse()
  6. local larm = char["Left Arm"]
  7. local rarm = char["Right Arm"]
  8. local lleg = char["Left Leg"]
  9. local rleg = char["Right Leg"]
  10. local hed = char.Head
  11. local torso = char.Torso
  12. z = Instance.new("Sound", torso)
  13. z.SoundId = "rbxassetid://206153677" -- Put Music ID Here.
  14. z.Looped = true
  15. z.Pitch = 1
  16. z.Volume = 0
  17. wait(.1)
  18. z:Play()
  19. local hum = char.Humanoid
  20. local cam = game.Workspace.CurrentCamera
  21. local root = char.HumanoidRootPart
  22. local deb = false
  23. local shot = 0
  24. local stanceToggle = "Normal"
  25. local l = game:GetService("Lighting")
  26. local runs = game:GetService("RunService")
  27. local debris=game:service"Debris"
  28. local rs = runs.RenderStepped
  29. local hb = runs.Heartbeat
  30. local step = runs.Stepped
  31. local stanceToggle = "Normal"
  32. math.randomseed(os.time())
  33. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  34. ptz = {0.75, 0.8, 0.85, 0.9, 0.95, 1}
  35. idz = {"231917856", "231917863"}
  36. ----------------------------------------------------
  37. --[[for i,v in pairs(char:children()) do
  38. if v:IsA("Hat") then
  39. v:Destroy()
  40. end
  41. end]]--
  42. for i,v in pairs (hed:GetChildren()) do
  43. if v:IsA("Sound") then
  44. v:Destroy()
  45. end
  46. end
  47. ----------------------------------------------------
  48. Debounces = {
  49. CanAttack = true;
  50. CanJoke = true;
  51. NoIdl = false;
  52. Slashing = false;
  53. Slashed = false;
  54. ks = false;
  55. RKick = false;
  56. RKicked = false;
  57. }
  58. ----------------------------------------------------
  59. function weld5(part0, part1, c0, c1)
  60. weeld=Instance.new("Weld", part0)
  61. weeld.Part0=part0
  62. weeld.Part1=part1
  63. weeld.C0=c0
  64. weeld.C1=c1
  65. return weeld
  66. end
  67. ----------------------------------------------------
  68. function lerp(a, b, t) -- Linear interpolation
  69. return a + (b - a)*t
  70. end
  71.  
  72. function slerp(a, b, t) --Spherical interpolation
  73. dot = a:Dot(b)
  74. if dot > 0.99999 or dot < -0.99999 then
  75. return t <= 0.5 and a or b
  76. else
  77. r = math.acos(dot)
  78. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  79. end
  80. end
  81.  
  82. function matrixInterpolate(a, b, t)
  83. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  84. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  85. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  86. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  87. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  88. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  89. local t = v1:Dot(v2)
  90. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  91. return CFrame.new()
  92. end
  93. return CFrame.new(
  94. v0.x, v0.y, v0.z,
  95. v1.x, v1.y, v1.z,
  96. v2.x, v2.y, v2.z,
  97. v3.x, v3.y, v3.z)
  98. end
  99. ----------------------------------------------------
  100. function genWeld(a,b)
  101. local w = Instance.new("Weld",a)
  102. w.Part0 = a
  103. w.Part1 = b
  104. return w
  105. end
  106. function weld(a, b)
  107. local weld = Instance.new("Weld")
  108. weld.Name = "W"
  109. weld.Part0 = a
  110. weld.Part1 = b
  111. weld.C0 = a.CFrame:inverse() * b.CFrame
  112. weld.Parent = a
  113. return weld;
  114. end
  115. ----------------------------------------------------
  116. function Lerp(c1,c2,al)
  117. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  118. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  119. for i,v in pairs(com1) do
  120. com1[i] = v+(com2[i]-v)*al
  121. end
  122. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  123. end
  124. ----------------------------------------------------
  125. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  126. local wld = Instance.new("Weld", wp1)
  127. wld.Part0 = wp0
  128. wld.Part1 = wp1
  129. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  130. end
  131. ----------------------------------------------------
  132. function Tween(a,b,c)
  133. return a+(b-a)*c
  134. end
  135. ----------------------------------------------------
  136. function NewPart(prnt,siz,cf,col,mat)
  137. local prt=Instance.new("Part")
  138. prt.Parent=prnt
  139. prt.FormFactor=3
  140. prt.Name="Part"
  141. prt.Size=siz
  142. prt.CanCollide=false
  143. prt.Anchored=true
  144. prt.Locked=true
  145. prt.TopSurface=10
  146. prt.BottomSurface=10
  147. prt.FrontSurface=10
  148. prt.BackSurface=10
  149. prt.LeftSurface=10
  150. prt.RightSurface=10
  151. prt:BreakJoints()
  152. prt.CFrame=cf or CFrame.new(30,10,30)
  153. prt.Material=mat
  154. prt.BrickColor=BrickColor.new(col)
  155. m=Instance.new("SpecialMesh",prt)
  156. m.MeshType=6
  157. return prt
  158. end
  159. ----------------------------------------------------
  160. newWeld(torso, larm, -1.5, 0.5, 0)
  161. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  162. newWeld(torso, rarm, 1.5, 0.5, 0)
  163. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  164. newWeld(torso, hed, 0, 1.5, 0)
  165. newWeld(torso, lleg, -0.5, -1, 0)
  166. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  167. newWeld(torso, rleg, 0.5, -1, 0)
  168. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  169. newWeld(root, torso, 0, -1, 0)
  170. torso.Weld.C1 = CFrame.new(0, -1, 0)
  171. ----------------------------------------------------
  172. z = Instance.new("Sound",char)
  173. z.SoundId = "rbxassetid://343691920"
  174. z.Looped = true
  175. z.Volume = 1
  176. z.Pitch = 1
  177. wait(1)
  178. --z:Play()
  179. ----------------------------------------------------
  180. local m = Instance.new("Model")
  181. m.Name = "Sword"
  182. p1 = Instance.new("Part", m)
  183. p1.BrickColor = BrickColor.new("Really black")
  184. p1.Material = Enum.Material.SmoothPlastic
  185. p1.Reflectance = 0.30000001192093
  186. 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)
  187. p1.CanCollide = false
  188. p1.Locked = true
  189. p1.FormFactor = Enum.FormFactor.Custom
  190. p1.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  191. p1.BottomSurface = Enum.SurfaceType.Smooth
  192. p1.TopSurface = Enum.SurfaceType.Smooth
  193. b1 = Instance.new("SpecialMesh", p1)
  194. b1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  195. b1.TextureId = ""
  196. b1.MeshType = Enum.MeshType.FileMesh
  197. b1.Name = "Mesh"
  198. b1.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  199. p2 = Instance.new("Part", m)
  200. p2.BrickColor = BrickColor.new("Really black")
  201. p2.Material = Enum.Material.SmoothPlastic
  202. p2.Reflectance = 0.30000001192093
  203. 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)
  204. p2.CanCollide = false
  205. p2.Locked = true
  206. p2.FormFactor = Enum.FormFactor.Custom
  207. p2.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  208. p2.BottomSurface = Enum.SurfaceType.Smooth
  209. p2.TopSurface = Enum.SurfaceType.Smooth
  210. b2 = Instance.new("SpecialMesh", p2)
  211. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  212. b2.TextureId = ""
  213. b2.MeshType = Enum.MeshType.FileMesh
  214. b2.Name = "Mesh"
  215. b2.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  216. p3 = Instance.new("Part", m)
  217. p3.BrickColor = BrickColor.new("Really black")
  218. p3.Material = Enum.Material.SmoothPlastic
  219. p3.Reflectance = 0.30000001192093
  220. 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)
  221. p3.CanCollide = false
  222. p3.Locked = true
  223. p3.FormFactor = Enum.FormFactor.Custom
  224. p3.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  225. p3.BottomSurface = Enum.SurfaceType.Smooth
  226. p3.TopSurface = Enum.SurfaceType.Smooth
  227. b3 = Instance.new("SpecialMesh", p3)
  228. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  229. b3.TextureId = ""
  230. b3.MeshType = Enum.MeshType.FileMesh
  231. b3.Name = "Mesh"
  232. b3.Scale = Vector3.new(0.204801083, 0.204801321, 0.136534423)
  233. p4 = Instance.new("Part", m)
  234. p4.BrickColor = BrickColor.new("Institutional white")
  235. 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)
  236. p4.CanCollide = false
  237. p4.Locked = true
  238. p4.FormFactor = Enum.FormFactor.Custom
  239. p4.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  240. p4.TopSurface = Enum.SurfaceType.Weld
  241. b4 = Instance.new("SpecialMesh", p4)
  242. b4.MeshId = "http://www.roblox.com/asset/?id=1033714"
  243. b4.TextureId = ""
  244. b4.MeshType = Enum.MeshType.FileMesh
  245. b4.Name = "Mesh"
  246. b4.VertexColor = Vector3.new(0, 0.899999976, 0.699999988)
  247. b4.Scale = Vector3.new(0.0455113538, 0.455114096, 0.0455114767)
  248. p5 = Instance.new("Part", m)
  249. p5.BrickColor = BrickColor.new("Really black")
  250. p5.Material = Enum.Material.Neon
  251. p5.Reflectance = 0.5
  252. p5.Transparency = 0.0099999997764826
  253. 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)
  254. p5.CanCollide = false
  255. p5.Locked = true
  256. p5.FormFactor = Enum.FormFactor.Custom
  257. p5.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  258. b5 = Instance.new("SpecialMesh", p5)
  259. b5.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  260. b5.TextureId = ""
  261. b5.MeshType = Enum.MeshType.FileMesh
  262. b5.Name = "Mesh"
  263. b5.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  264. p6 = Instance.new("Part", m)
  265. p6.BrickColor = BrickColor.new("Really black")
  266. p6.Material = Enum.Material.SmoothPlastic
  267. p6.Reflectance = 0.30000001192093
  268. 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)
  269. p6.CanCollide = false
  270. p6.Locked = true
  271. p6.FormFactor = Enum.FormFactor.Custom
  272. p6.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  273. p6.BottomSurface = Enum.SurfaceType.Smooth
  274. p6.TopSurface = Enum.SurfaceType.Smooth
  275. b6 = Instance.new("SpecialMesh", p6)
  276. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  277. b6.TextureId = ""
  278. b6.MeshType = Enum.MeshType.FileMesh
  279. b6.Name = "Mesh"
  280. b6.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  281. p7 = Instance.new("Part", m)
  282. p7.BrickColor = BrickColor.new("Really black")
  283. p7.Material = Enum.Material.SmoothPlastic
  284. p7.Reflectance = 0.30000001192093
  285. 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)
  286. p7.CanCollide = false
  287. p7.Locked = true
  288. p7.FormFactor = Enum.FormFactor.Custom
  289. p7.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  290. p7.BottomSurface = Enum.SurfaceType.Smooth
  291. p7.TopSurface = Enum.SurfaceType.Smooth
  292. b7 = Instance.new("SpecialMesh", p7)
  293. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  294. b7.TextureId = ""
  295. b7.MeshType = Enum.MeshType.FileMesh
  296. b7.Name = "Mesh"
  297. b7.Scale = Vector3.new(0.141085163, 0.150187641, 0.0728183538)
  298. p8 = Instance.new("Part", m)
  299. p8.BrickColor = BrickColor.new("Really black")
  300. p8.Material = Enum.Material.SmoothPlastic
  301. p8.Reflectance = 0.30000001192093
  302. 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)
  303. p8.CanCollide = false
  304. p8.Locked = true
  305. p8.FormFactor = Enum.FormFactor.Custom
  306. p8.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  307. p8.BottomSurface = Enum.SurfaceType.Smooth
  308. p8.TopSurface = Enum.SurfaceType.Smooth
  309. b8 = Instance.new("SpecialMesh", p8)
  310. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  311. b8.TextureId = ""
  312. b8.MeshType = Enum.MeshType.FileMesh
  313. b8.Name = "Mesh"
  314. b8.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  315. p9 = Instance.new("Part", m)
  316. p9.BrickColor = BrickColor.new("Really black")
  317. p9.Material = Enum.Material.SmoothPlastic
  318. p9.Reflectance = 0.30000001192093
  319. 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)
  320. p9.CanCollide = false
  321. p9.Locked = true
  322. p9.FormFactor = Enum.FormFactor.Custom
  323. p9.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  324. p9.BottomSurface = Enum.SurfaceType.Smooth
  325. p9.TopSurface = Enum.SurfaceType.Smooth
  326. b9 = Instance.new("SpecialMesh", p9)
  327. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  328. b9.TextureId = ""
  329. b9.MeshType = Enum.MeshType.FileMesh
  330. b9.Name = "Mesh"
  331. b9.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  332. p10 = Instance.new("Part", m)
  333. p10.BrickColor = BrickColor.new("Really black")
  334. p10.Material = Enum.Material.SmoothPlastic
  335. p10.Reflectance = 0.30000001192093
  336. 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)
  337. p10.CanCollide = false
  338. p10.Locked = true
  339. p10.FormFactor = Enum.FormFactor.Custom
  340. p10.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  341. p10.BottomSurface = Enum.SurfaceType.Smooth
  342. p10.TopSurface = Enum.SurfaceType.Smooth
  343. b10 = Instance.new("SpecialMesh", p10)
  344. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  345. b10.TextureId = ""
  346. b10.MeshType = Enum.MeshType.FileMesh
  347. b10.Name = "Mesh"
  348. b10.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  349. p11 = Instance.new("Part", m)
  350. p11.BrickColor = BrickColor.new("Really black")
  351. p11.Material = Enum.Material.Neon
  352. p11.Reflectance = 0.5
  353. p11.Transparency = 0.30000001192093
  354. 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)
  355. p11.CanCollide = false
  356. p11.Locked = true
  357. p11.FormFactor = Enum.FormFactor.Custom
  358. p11.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  359. b11 = Instance.new("SpecialMesh", p11)
  360. b11.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  361. b11.TextureId = ""
  362. b11.MeshType = Enum.MeshType.FileMesh
  363. b11.Name = "Mesh"
  364. b11.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  365. p12 = Instance.new("Part", m)
  366. p12.BrickColor = BrickColor.new("Really black")
  367. p12.Material = Enum.Material.SmoothPlastic
  368. p12.Reflectance = 0.30000001192093
  369. 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)
  370. p12.CanCollide = false
  371. p12.Locked = true
  372. p12.FormFactor = Enum.FormFactor.Custom
  373. p12.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  374. p12.BottomSurface = Enum.SurfaceType.Smooth
  375. p12.TopSurface = Enum.SurfaceType.Smooth
  376. b12 = Instance.new("SpecialMesh", p12)
  377. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  378. b12.TextureId = ""
  379. b12.MeshType = Enum.MeshType.FileMesh
  380. b12.Name = "Mesh"
  381. b12.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  382. p13 = Instance.new("Part", m)
  383. p13.BrickColor = BrickColor.new("Really black")
  384. p13.Material = Enum.Material.SmoothPlastic
  385. p13.Reflectance = 0.30000001192093
  386. 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)
  387. p13.CanCollide = false
  388. p13.Locked = true
  389. p13.FormFactor = Enum.FormFactor.Custom
  390. p13.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  391. p13.BottomSurface = Enum.SurfaceType.Smooth
  392. p13.TopSurface = Enum.SurfaceType.Smooth
  393. b13 = Instance.new("SpecialMesh", p13)
  394. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  395. b13.TextureId = ""
  396. b13.MeshType = Enum.MeshType.FileMesh
  397. b13.Name = "Mesh"
  398. b13.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  399. p14 = Instance.new("Part", m)
  400. p14.BrickColor = BrickColor.new("Really black")
  401. p14.Material = Enum.Material.Neon
  402. p14.Reflectance = 0.5
  403. p14.Transparency = 0.0099999997764826
  404. 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)
  405. p14.CanCollide = false
  406. p14.Locked = true
  407. p14.FormFactor = Enum.FormFactor.Custom
  408. p14.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  409. b14 = Instance.new("SpecialMesh", p14)
  410. b14.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  411. b14.TextureId = ""
  412. b14.MeshType = Enum.MeshType.FileMesh
  413. b14.Name = "Mesh"
  414. b14.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  415. p15 = Instance.new("Part", m)
  416. p15.BrickColor = BrickColor.new("Really black")
  417. p15.Material = Enum.Material.SmoothPlastic
  418. p15.Reflectance = 0.30000001192093
  419. 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)
  420. p15.CanCollide = false
  421. p15.Locked = true
  422. p15.FormFactor = Enum.FormFactor.Custom
  423. p15.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  424. p15.BottomSurface = Enum.SurfaceType.Smooth
  425. p15.TopSurface = Enum.SurfaceType.Smooth
  426. b15 = Instance.new("SpecialMesh", p15)
  427. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  428. b15.TextureId = ""
  429. b15.MeshType = Enum.MeshType.FileMesh
  430. b15.Name = "Mesh"
  431. b15.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  432. p16 = Instance.new("Part", m)
  433. p16.BrickColor = BrickColor.new("Really black")
  434. p16.Material = Enum.Material.Neon
  435. p16.Reflectance = 0.5
  436. p16.Transparency = 0.0099999997764826
  437. 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)
  438. p16.CanCollide = false
  439. p16.Locked = true
  440. p16.FormFactor = Enum.FormFactor.Custom
  441. p16.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  442. b16 = Instance.new("SpecialMesh", p16)
  443. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  444. b16.TextureId = ""
  445. b16.MeshType = Enum.MeshType.FileMesh
  446. b16.Name = "Mesh"
  447. b16.Scale = Vector3.new(0.115295447, 0.288239002, 0.115295798)
  448. p17 = Instance.new("Part", m)
  449. p17.BrickColor = BrickColor.new("Really black")
  450. p17.Material = Enum.Material.Neon
  451. p17.Reflectance = 0.5
  452. p17.Transparency = 0.30000001192093
  453. 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)
  454. p17.CanCollide = false
  455. p17.Locked = true
  456. p17.FormFactor = Enum.FormFactor.Custom
  457. p17.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  458. b17 = Instance.new("SpecialMesh", p17)
  459. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  460. b17.TextureId = ""
  461. b17.MeshType = Enum.MeshType.FileMesh
  462. b17.Name = "Mesh"
  463. b17.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  464. p18 = Instance.new("Part", m)
  465. p18.BrickColor = BrickColor.new("Really black")
  466. p18.Material = Enum.Material.Neon
  467. p18.Reflectance = 0.5
  468. p18.Transparency = 0.0099999997764826
  469. 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)
  470. p18.CanCollide = false
  471. p18.Locked = true
  472. p18.FormFactor = Enum.FormFactor.Custom
  473. p18.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  474. b18 = Instance.new("SpecialMesh", p18)
  475. b18.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  476. b18.TextureId = ""
  477. b18.MeshType = Enum.MeshType.FileMesh
  478. b18.Name = "Mesh"
  479. b18.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  480. p19 = Instance.new("Part", m)
  481. p19.BrickColor = BrickColor.new("Really black")
  482. p19.Material = Enum.Material.SmoothPlastic
  483. p19.Reflectance = 0.30000001192093
  484. 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)
  485. p19.CanCollide = false
  486. p19.Locked = true
  487. p19.FormFactor = Enum.FormFactor.Custom
  488. p19.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  489. p19.BottomSurface = Enum.SurfaceType.Smooth
  490. p19.TopSurface = Enum.SurfaceType.Smooth
  491. b19 = Instance.new("SpecialMesh", p19)
  492. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  493. b19.TextureId = ""
  494. b19.MeshType = Enum.MeshType.FileMesh
  495. b19.Name = "Mesh"
  496. b19.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  497. p20 = Instance.new("Part", m)
  498. p20.BrickColor = BrickColor.new("Really black")
  499. p20.Material = Enum.Material.Neon
  500. p20.Reflectance = 0.5
  501. p20.Transparency = 0.30000001192093
  502. 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)
  503. p20.CanCollide = false
  504. p20.Locked = true
  505. p20.FormFactor = Enum.FormFactor.Custom
  506. p20.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  507. b20 = Instance.new("SpecialMesh", p20)
  508. b20.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  509. b20.TextureId = ""
  510. b20.MeshType = Enum.MeshType.FileMesh
  511. b20.Name = "Mesh"
  512. b20.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  513. p21 = Instance.new("Part", m)
  514. p21.BrickColor = BrickColor.new("Really black")
  515. p21.Material = Enum.Material.Neon
  516. p21.Reflectance = 0.5
  517. p21.Transparency = 0.0099999997764826
  518. 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)
  519. p21.CanCollide = false
  520. p21.Locked = true
  521. p21.FormFactor = Enum.FormFactor.Custom
  522. p21.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  523. b21 = Instance.new("SpecialMesh", p21)
  524. b21.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  525. b21.TextureId = ""
  526. b21.MeshType = Enum.MeshType.FileMesh
  527. b21.Name = "Mesh"
  528. b21.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  529. p22 = Instance.new("Part", m)
  530. p22.BrickColor = BrickColor.new("Really black")
  531. p22.Material = Enum.Material.Neon
  532. p22.Reflectance = 0.5
  533. p22.Transparency = 0.30000001192093
  534. 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)
  535. p22.CanCollide = false
  536. p22.Locked = true
  537. p22.FormFactor = Enum.FormFactor.Custom
  538. p22.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  539. b22 = Instance.new("SpecialMesh", p22)
  540. b22.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  541. b22.TextureId = ""
  542. b22.MeshType = Enum.MeshType.FileMesh
  543. b22.Name = "Mesh"
  544. b22.Scale = Vector3.new(0.182045415, 0.455114096, 0.182045907)
  545. p23 = Instance.new("Part", m)
  546. p23.BrickColor = BrickColor.new("Really black")
  547. p23.Material = Enum.Material.SmoothPlastic
  548. p23.Reflectance = 0.30000001192093
  549. 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)
  550. p23.CanCollide = false
  551. p23.Locked = true
  552. p23.FormFactor = Enum.FormFactor.Custom
  553. p23.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  554. p23.BottomSurface = Enum.SurfaceType.Smooth
  555. p23.TopSurface = Enum.SurfaceType.Smooth
  556. b23 = Instance.new("SpecialMesh", p23)
  557. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  558. b23.TextureId = ""
  559. b23.MeshType = Enum.MeshType.FileMesh
  560. b23.Name = "Mesh"
  561. b23.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  562. p24 = Instance.new("Part", m)
  563. p24.BrickColor = BrickColor.new("Really black")
  564. p24.Material = Enum.Material.SmoothPlastic
  565. p24.Reflectance = 0.30000001192093
  566. 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)
  567. p24.CanCollide = false
  568. p24.Locked = true
  569. p24.FormFactor = Enum.FormFactor.Custom
  570. p24.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  571. p24.BottomSurface = Enum.SurfaceType.Smooth
  572. p24.TopSurface = Enum.SurfaceType.Smooth
  573. b24 = Instance.new("SpecialMesh", p24)
  574. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  575. b24.TextureId = ""
  576. b24.MeshType = Enum.MeshType.FileMesh
  577. b24.Name = "Mesh"
  578. b24.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  579. p25 = Instance.new("Part", m)
  580. p25.BrickColor = BrickColor.new("Really black")
  581. p25.Material = Enum.Material.SmoothPlastic
  582. p25.Reflectance = 0.30000001192093
  583. 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)
  584. p25.CanCollide = false
  585. p25.Locked = true
  586. p25.FormFactor = Enum.FormFactor.Custom
  587. p25.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  588. p25.BottomSurface = Enum.SurfaceType.Smooth
  589. p25.TopSurface = Enum.SurfaceType.Smooth
  590. b25 = Instance.new("SpecialMesh", p25)
  591. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  592. b25.TextureId = ""
  593. b25.MeshType = Enum.MeshType.FileMesh
  594. b25.Name = "Mesh"
  595. b25.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  596. p26 = Instance.new("Part", m)
  597. p26.BrickColor = BrickColor.new("Really black")
  598. p26.Material = Enum.Material.SmoothPlastic
  599. p26.Reflectance = 0.30000001192093
  600. 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)
  601. p26.CanCollide = false
  602. p26.Locked = true
  603. p26.FormFactor = Enum.FormFactor.Custom
  604. p26.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  605. p26.BottomSurface = Enum.SurfaceType.Smooth
  606. p26.TopSurface = Enum.SurfaceType.Smooth
  607. b26 = Instance.new("SpecialMesh", p26)
  608. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  609. b26.TextureId = ""
  610. b26.MeshType = Enum.MeshType.FileMesh
  611. b26.Name = "Mesh"
  612. b26.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  613. p27 = Instance.new("Part", m)
  614. p27.BrickColor = BrickColor.new("Really black")
  615. p27.Material = Enum.Material.Neon
  616. p27.Reflectance = 0.5
  617. p27.Transparency = 0.30000001192093
  618. 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)
  619. p27.CanCollide = false
  620. p27.Locked = true
  621. p27.FormFactor = Enum.FormFactor.Custom
  622. p27.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  623. b27 = Instance.new("SpecialMesh", p27)
  624. b27.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  625. b27.TextureId = ""
  626. b27.MeshType = Enum.MeshType.FileMesh
  627. b27.Name = "Mesh"
  628. b27.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  629. p28 = Instance.new("Part", m)
  630. p28.BrickColor = BrickColor.new("Really black")
  631. p28.Material = Enum.Material.SmoothPlastic
  632. p28.Reflectance = 0.30000001192093
  633. 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)
  634. p28.CanCollide = false
  635. p28.Locked = true
  636. p28.FormFactor = Enum.FormFactor.Custom
  637. p28.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  638. p28.BottomSurface = Enum.SurfaceType.Smooth
  639. p28.TopSurface = Enum.SurfaceType.Smooth
  640. b28 = Instance.new("SpecialMesh", p28)
  641. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  642. b28.TextureId = ""
  643. b28.MeshType = Enum.MeshType.FileMesh
  644. b28.Name = "Mesh"
  645. b28.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  646. p29 = Instance.new("Part", m)
  647. p29.BrickColor = BrickColor.new("Really black")
  648. p29.Material = Enum.Material.SmoothPlastic
  649. p29.Reflectance = 0.30000001192093
  650. 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)
  651. p29.CanCollide = false
  652. p29.Locked = true
  653. p29.FormFactor = Enum.FormFactor.Custom
  654. p29.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  655. p29.BottomSurface = Enum.SurfaceType.Smooth
  656. p29.TopSurface = Enum.SurfaceType.Smooth
  657. b29 = Instance.new("SpecialMesh", p29)
  658. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  659. b29.TextureId = ""
  660. b29.MeshType = Enum.MeshType.FileMesh
  661. b29.Name = "Mesh"
  662. b29.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  663. p30 = Instance.new("Part", m)
  664. p30.BrickColor = BrickColor.new("Really black")
  665. p30.Material = Enum.Material.SmoothPlastic
  666. p30.Reflectance = 0.30000001192093
  667. 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)
  668. p30.CanCollide = false
  669. p30.Locked = true
  670. p30.FormFactor = Enum.FormFactor.Custom
  671. p30.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  672. p30.BottomSurface = Enum.SurfaceType.Smooth
  673. p30.TopSurface = Enum.SurfaceType.Smooth
  674. b30 = Instance.new("SpecialMesh", p30)
  675. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  676. b30.TextureId = ""
  677. b30.MeshType = Enum.MeshType.FileMesh
  678. b30.Name = "Mesh"
  679. b30.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  680. p31 = Instance.new("Part", m)
  681. p31.BrickColor = BrickColor.new("Really black")
  682. p31.Material = Enum.Material.SmoothPlastic
  683. p31.Reflectance = 0.30000001192093
  684. 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)
  685. p31.CanCollide = false
  686. p31.Locked = true
  687. p31.FormFactor = Enum.FormFactor.Custom
  688. p31.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  689. p31.BottomSurface = Enum.SurfaceType.Smooth
  690. p31.TopSurface = Enum.SurfaceType.Smooth
  691. b31 = Instance.new("SpecialMesh", p31)
  692. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  693. b31.TextureId = ""
  694. b31.MeshType = Enum.MeshType.FileMesh
  695. b31.Name = "Mesh"
  696. b31.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  697. p32 = Instance.new("Part", m)
  698. p32.BrickColor = BrickColor.new("Really black")
  699. p32.Material = Enum.Material.SmoothPlastic
  700. p32.Reflectance = 0.30000001192093
  701. 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)
  702. p32.CanCollide = false
  703. p32.Locked = true
  704. p32.FormFactor = Enum.FormFactor.Custom
  705. p32.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  706. p32.BottomSurface = Enum.SurfaceType.Smooth
  707. p32.TopSurface = Enum.SurfaceType.Smooth
  708. b32 = Instance.new("SpecialMesh", p32)
  709. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  710. b32.TextureId = ""
  711. b32.MeshType = Enum.MeshType.FileMesh
  712. b32.Name = "Mesh"
  713. b32.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  714. p33 = Instance.new("Part", m)
  715. p33.BrickColor = BrickColor.new("Really black")
  716. p33.Material = Enum.Material.SmoothPlastic
  717. p33.Reflectance = 0.30000001192093
  718. 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)
  719. p33.CanCollide = false
  720. p33.Locked = true
  721. p33.FormFactor = Enum.FormFactor.Custom
  722. p33.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  723. p33.BottomSurface = Enum.SurfaceType.Smooth
  724. p33.TopSurface = Enum.SurfaceType.Smooth
  725. b33 = Instance.new("SpecialMesh", p33)
  726. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  727. b33.TextureId = ""
  728. b33.MeshType = Enum.MeshType.FileMesh
  729. b33.Name = "Mesh"
  730. b33.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  731. p34 = Instance.new("Part", m)
  732. p34.BrickColor = BrickColor.new("Really black")
  733. p34.Material = Enum.Material.SmoothPlastic
  734. p34.Reflectance = 0.30000001192093
  735. 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)
  736. p34.CanCollide = false
  737. p34.Locked = true
  738. p34.FormFactor = Enum.FormFactor.Custom
  739. p34.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  740. p34.BottomSurface = Enum.SurfaceType.Smooth
  741. p34.TopSurface = Enum.SurfaceType.Smooth
  742. b34 = Instance.new("SpecialMesh", p34)
  743. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  744. b34.TextureId = ""
  745. b34.MeshType = Enum.MeshType.FileMesh
  746. b34.Name = "Mesh"
  747. b34.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  748. p35 = Instance.new("Part", m)
  749. p35.BrickColor = BrickColor.new("Really black")
  750. p35.Material = Enum.Material.Neon
  751. 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)
  752. p35.CanCollide = false
  753. p35.Locked = true
  754. p35.FormFactor = Enum.FormFactor.Custom
  755. p35.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  756. p35.BottomSurface = Enum.SurfaceType.Smooth
  757. p35.TopSurface = Enum.SurfaceType.Smooth
  758. b35 = Instance.new("SpecialMesh", p35)
  759. b35.MeshType = Enum.MeshType.Sphere
  760. b35.Name = "Mesh"
  761. b35.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  762. p36 = Instance.new("Part", m)
  763. p36.BrickColor = BrickColor.new("Really black")
  764. p36.Material = Enum.Material.Neon
  765. 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)
  766. p36.CanCollide = false
  767. p36.Locked = true
  768. p36.FormFactor = Enum.FormFactor.Custom
  769. p36.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  770. p36.BottomSurface = Enum.SurfaceType.Smooth
  771. p36.TopSurface = Enum.SurfaceType.Smooth
  772. b36 = Instance.new("SpecialMesh", p36)
  773. b36.MeshType = Enum.MeshType.Sphere
  774. b36.Name = "Mesh"
  775. b36.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  776. p37 = Instance.new("Part", m)
  777. p37.BrickColor = BrickColor.new("Really black")
  778. p37.Material = Enum.Material.Neon
  779. 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)
  780. p37.CanCollide = false
  781. p37.Locked = true
  782. p37.FormFactor = Enum.FormFactor.Custom
  783. p37.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  784. p37.BottomSurface = Enum.SurfaceType.Smooth
  785. p37.TopSurface = Enum.SurfaceType.Smooth
  786. b37 = Instance.new("SpecialMesh", p37)
  787. b37.MeshType = Enum.MeshType.Sphere
  788. b37.Name = "Mesh"
  789. b37.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  790. p38 = Instance.new("Part", m)
  791. p38.BrickColor = BrickColor.new("Really black")
  792. p38.Material = Enum.Material.Neon
  793. 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)
  794. p38.CanCollide = false
  795. p38.Locked = true
  796. p38.FormFactor = Enum.FormFactor.Custom
  797. p38.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  798. p38.BottomSurface = Enum.SurfaceType.Smooth
  799. p38.TopSurface = Enum.SurfaceType.Smooth
  800. b38 = Instance.new("SpecialMesh", p38)
  801. b38.MeshType = Enum.MeshType.Sphere
  802. b38.Name = "Mesh"
  803. b38.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  804. p39 = Instance.new("Part", m)
  805. p39.BrickColor = BrickColor.new("Really black")
  806. p39.Material = Enum.Material.SmoothPlastic
  807. p39.Reflectance = 0.20000000298023
  808. p39.Name = "Circle"
  809. 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)
  810. p39.CanCollide = false
  811. p39.Locked = true
  812. p39.FormFactor = Enum.FormFactor.Custom
  813. p39.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  814. p39.BottomSurface = Enum.SurfaceType.Smooth
  815. p39.TopSurface = Enum.SurfaceType.Smooth
  816. b39 = Instance.new("CylinderMesh", p39)
  817. b39.Name = "Mesh"
  818. b39.Scale = Vector3.new(0.400286943, 0.423637152, 0.467001528)
  819. p40 = Instance.new("Part", m)
  820. p40.BrickColor = BrickColor.new("Really black")
  821. p40.Material = Enum.Material.SmoothPlastic
  822. p40.Name = "Block"
  823. 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)
  824. p40.CanCollide = false
  825. p40.Locked = true
  826. p40.FormFactor = Enum.FormFactor.Custom
  827. p40.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  828. p40.BottomSurface = Enum.SurfaceType.Smooth
  829. p40.TopSurface = Enum.SurfaceType.Smooth
  830. b40 = Instance.new("SpecialMesh", p40)
  831. b40.MeshType = Enum.MeshType.Wedge
  832. b40.Name = "WedgeMesh"
  833. b40.Scale = Vector3.new(0.533715904, 0.200143531, 0.773888171)
  834. p41 = Instance.new("Part", m)
  835. p41.BrickColor = BrickColor.new("Really black")
  836. p41.Material = Enum.Material.SmoothPlastic
  837. p41.Name = "Block"
  838. 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)
  839. p41.CanCollide = false
  840. p41.Locked = true
  841. p41.FormFactor = Enum.FormFactor.Custom
  842. p41.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  843. p41.BottomSurface = Enum.SurfaceType.Smooth
  844. p41.TopSurface = Enum.SurfaceType.Smooth
  845. b41 = Instance.new("SpecialMesh", p41)
  846. b41.MeshType = Enum.MeshType.Wedge
  847. b41.Name = "WedgeMesh"
  848. b41.Scale = Vector3.new(0.533715904, 0.200143531, 0.760545254)
  849. p42 = Instance.new("Part", m)
  850. p42.BrickColor = BrickColor.new("Really black")
  851. p42.Material = Enum.Material.SmoothPlastic
  852. p42.Name = "Circle"
  853. 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)
  854. p42.CanCollide = false
  855. p42.Locked = true
  856. p42.FormFactor = Enum.FormFactor.Custom
  857. p42.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  858. p42.BottomSurface = Enum.SurfaceType.Smooth
  859. p42.TopSurface = Enum.SurfaceType.Smooth
  860. b42 = Instance.new("CylinderMesh", p42)
  861. b42.Name = "Mesh"
  862. b42.Scale = Vector3.new(0.667144895, 0.400287062, 0.667144954)
  863. p43 = Instance.new("Part", m)
  864. p43.BrickColor = BrickColor.new("Really black")
  865. p43.Material = Enum.Material.SmoothPlastic
  866. p43.Name = "Circle"
  867. 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)
  868. p43.CanCollide = false
  869. p43.Locked = true
  870. p43.FormFactor = Enum.FormFactor.Custom
  871. p43.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  872. p43.BottomSurface = Enum.SurfaceType.Smooth
  873. p43.TopSurface = Enum.SurfaceType.Smooth
  874. b43 = Instance.new("CylinderMesh", p43)
  875. b43.Name = "Mesh"
  876. b43.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  877. p44 = Instance.new("Part", m)
  878. p44.BrickColor = BrickColor.new("Really black")
  879. p44.Material = Enum.Material.Neon
  880. 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)
  881. p44.CanCollide = false
  882. p44.Locked = true
  883. p44.FormFactor = Enum.FormFactor.Custom
  884. p44.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  885. p44.BottomSurface = Enum.SurfaceType.Smooth
  886. p44.TopSurface = Enum.SurfaceType.Smooth
  887. b44 = Instance.new("SpecialMesh", p44)
  888. b44.MeshType = Enum.MeshType.Sphere
  889. b44.Name = "Mesh"
  890. b44.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  891. p45 = Instance.new("Part", m)
  892. p45.BrickColor = BrickColor.new("Really black")
  893. p45.Material = Enum.Material.Neon
  894. 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)
  895. p45.CanCollide = false
  896. p45.Locked = true
  897. p45.FormFactor = Enum.FormFactor.Custom
  898. p45.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  899. p45.BottomSurface = Enum.SurfaceType.Smooth
  900. p45.TopSurface = Enum.SurfaceType.Smooth
  901. b45 = Instance.new("SpecialMesh", p45)
  902. b45.MeshType = Enum.MeshType.Sphere
  903. b45.Name = "Mesh"
  904. b45.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  905. p46 = Instance.new("Part", m)
  906. p46.BrickColor = BrickColor.new("Really black")
  907. p46.Material = Enum.Material.Neon
  908. 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)
  909. p46.CanCollide = false
  910. p46.Locked = true
  911. p46.FormFactor = Enum.FormFactor.Custom
  912. p46.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  913. p46.BottomSurface = Enum.SurfaceType.Smooth
  914. p46.TopSurface = Enum.SurfaceType.Smooth
  915. b46 = Instance.new("SpecialMesh", p46)
  916. b46.MeshType = Enum.MeshType.Sphere
  917. b46.Name = "Mesh"
  918. b46.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  919. p47 = Instance.new("Part", m)
  920. p47.BrickColor = BrickColor.new("Really black")
  921. p47.Material = Enum.Material.SmoothPlastic
  922. p47.Name = "Handle"
  923. 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)
  924. p47.CanCollide = false
  925. p47.Locked = true
  926. p47.FormFactor = Enum.FormFactor.Custom
  927. p47.Size = Vector3.new(0.341090173, 1.06951797, 0.341090739)
  928. p47.BottomSurface = Enum.SurfaceType.Smooth
  929. p47.TopSurface = Enum.SurfaceType.Smooth
  930. b47 = Instance.new("CylinderMesh", p47)
  931. b47.Name = "Mesh"
  932. b47.Scale = Vector3.new(0.333572447, 1, 0.467001528)
  933. p48 = Instance.new("Part", m)
  934. p48.BrickColor = BrickColor.new("Really black")
  935. p48.Material = Enum.Material.SmoothPlastic
  936. p48.Name = "Block"
  937. 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)
  938. p48.CanCollide = false
  939. p48.Locked = true
  940. p48.FormFactor = Enum.FormFactor.Custom
  941. p48.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  942. p48.BottomSurface = Enum.SurfaceType.Smooth
  943. p48.TopSurface = Enum.SurfaceType.Smooth
  944. b48 = Instance.new("SpecialMesh", p48)
  945. b48.MeshType = Enum.MeshType.Wedge
  946. b48.Name = "WedgeMesh"
  947. b48.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  948. p49 = Instance.new("Part", m)
  949. p49.BrickColor = BrickColor.new("Really black")
  950. p49.Material = Enum.Material.SmoothPlastic
  951. p49.Name = "Block"
  952. 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)
  953. p49.CanCollide = false
  954. p49.Locked = true
  955. p49.FormFactor = Enum.FormFactor.Custom
  956. p49.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  957. p49.BottomSurface = Enum.SurfaceType.Smooth
  958. p49.TopSurface = Enum.SurfaceType.Smooth
  959. b49 = Instance.new("SpecialMesh", p49)
  960. b49.MeshType = Enum.MeshType.Wedge
  961. b49.Name = "WedgeMesh"
  962. b49.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  963. p50 = Instance.new("Part", m)
  964. p50.BrickColor = BrickColor.new("Really black")
  965. p50.Material = Enum.Material.SmoothPlastic
  966. p50.Name = "Block"
  967. 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)
  968. p50.CanCollide = false
  969. p50.Locked = true
  970. p50.FormFactor = Enum.FormFactor.Custom
  971. p50.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  972. p50.BottomSurface = Enum.SurfaceType.Smooth
  973. p50.TopSurface = Enum.SurfaceType.Smooth
  974. b50 = Instance.new("BlockMesh", p50)
  975. b50.Name = "Mesh"
  976. b50.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  977. p51 = Instance.new("Part", m)
  978. p51.BrickColor = BrickColor.new("Really black")
  979. p51.Material = Enum.Material.SmoothPlastic
  980. p51.Name = "Block"
  981. 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)
  982. p51.CanCollide = false
  983. p51.Locked = true
  984. p51.FormFactor = Enum.FormFactor.Custom
  985. p51.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  986. p51.BottomSurface = Enum.SurfaceType.Smooth
  987. p51.TopSurface = Enum.SurfaceType.Smooth
  988. b51 = Instance.new("BlockMesh", p51)
  989. b51.Name = "Mesh"
  990. b51.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  991. p52 = Instance.new("Part", m)
  992. p52.BrickColor = BrickColor.new("Really black")
  993. p52.Material = Enum.Material.SmoothPlastic
  994. p52.Name = "Block"
  995. 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)
  996. p52.CanCollide = false
  997. p52.Locked = true
  998. p52.FormFactor = Enum.FormFactor.Custom
  999. p52.Size = Vector3.new(0.341090173, 0.341090739, 0.523380995)
  1000. p52.BottomSurface = Enum.SurfaceType.Smooth
  1001. p52.TopSurface = Enum.SurfaceType.Smooth
  1002. b52 = Instance.new("BlockMesh", p52)
  1003. b52.Name = "Mesh"
  1004. b52.Scale = Vector3.new(0.533715785, 0.0667145103, 1)
  1005. p53 = Instance.new("Part", m)
  1006. p53.BrickColor = BrickColor.new("Institutional white")
  1007. p53.Material = Enum.Material.Neon
  1008. p53.Name = "Circle"
  1009. 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)
  1010. p53.CanCollide = false
  1011. p53.Locked = true
  1012. p53.FormFactor = Enum.FormFactor.Custom
  1013. p53.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1014. p53.BottomSurface = Enum.SurfaceType.Smooth
  1015. p53.TopSurface = Enum.SurfaceType.Smooth
  1016. b53 = Instance.new("CylinderMesh", p53)
  1017. b53.Name = "Mesh"
  1018. b53.Scale = Vector3.new(0.533715785, 0.467001498, 0.42771104)
  1019. p54 = Instance.new("Part", m)
  1020. p54.BrickColor = BrickColor.new("Really black")
  1021. p54.Material = Enum.Material.Neon
  1022. p54.Name = "Circle"
  1023. 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)
  1024. p54.CanCollide = false
  1025. p54.Locked = true
  1026. p54.FormFactor = Enum.FormFactor.Custom
  1027. p54.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1028. p54.BottomSurface = Enum.SurfaceType.Smooth
  1029. p54.TopSurface = Enum.SurfaceType.Smooth
  1030. b54 = Instance.new("CylinderMesh", p54)
  1031. b54.Name = "Mesh"
  1032. b54.Scale = Vector3.new(0.533715785, 0.490944952, 0.188277081)
  1033. p55 = Instance.new("Part", m)
  1034. p55.BrickColor = BrickColor.new("Really black")
  1035. p55.Material = Enum.Material.Metal
  1036. 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)
  1037. p55.CanCollide = false
  1038. p55.Locked = true
  1039. p55.FormFactor = Enum.FormFactor.Custom
  1040. p55.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1041. p55.BottomSurface = Enum.SurfaceType.Smooth
  1042. p55.TopSurface = Enum.SurfaceType.Smooth
  1043. b55 = Instance.new("SpecialMesh", p55)
  1044. b55.MeshType = Enum.MeshType.Sphere
  1045. b55.Name = "Mesh"
  1046. b55.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1047. p56 = Instance.new("Part", m)
  1048. p56.BrickColor = BrickColor.new("Really black")
  1049. p56.Material = Enum.Material.Metal
  1050. 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)
  1051. p56.CanCollide = false
  1052. p56.Locked = true
  1053. p56.FormFactor = Enum.FormFactor.Custom
  1054. p56.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1055. p56.BottomSurface = Enum.SurfaceType.Smooth
  1056. p56.TopSurface = Enum.SurfaceType.Smooth
  1057. b56 = Instance.new("SpecialMesh", p56)
  1058. b56.MeshType = Enum.MeshType.Sphere
  1059. b56.Name = "Mesh"
  1060. b56.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1061. p57 = Instance.new("Part", m)
  1062. p57.BrickColor = BrickColor.new("Really black")
  1063. p57.Material = Enum.Material.Metal
  1064. 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)
  1065. p57.CanCollide = false
  1066. p57.Locked = true
  1067. p57.FormFactor = Enum.FormFactor.Custom
  1068. p57.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1069. p57.BottomSurface = Enum.SurfaceType.Smooth
  1070. p57.TopSurface = Enum.SurfaceType.Smooth
  1071. b57 = Instance.new("SpecialMesh", p57)
  1072. b57.MeshType = Enum.MeshType.Sphere
  1073. b57.Name = "Mesh"
  1074. b57.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1075. p58 = Instance.new("Part", m)
  1076. p58.BrickColor = BrickColor.new("Really black")
  1077. p58.Material = Enum.Material.SmoothPlastic
  1078. p58.Name = "Block"
  1079. 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)
  1080. p58.CanCollide = false
  1081. p58.Locked = true
  1082. p58.FormFactor = Enum.FormFactor.Custom
  1083. p58.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1084. p58.BottomSurface = Enum.SurfaceType.Smooth
  1085. p58.TopSurface = Enum.SurfaceType.Smooth
  1086. b58 = Instance.new("SpecialMesh", p58)
  1087. b58.MeshType = Enum.MeshType.Wedge
  1088. b58.Name = "WedgeMesh"
  1089. b58.Scale = Vector3.new(0.533715785, 0.43030858, 0.0667144954)
  1090. p59 = Instance.new("Part", m)
  1091. p59.BrickColor = BrickColor.new("Really black")
  1092. p59.Material = Enum.Material.SmoothPlastic
  1093. p59.Name = "Block"
  1094. 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)
  1095. p59.CanCollide = false
  1096. p59.Locked = true
  1097. p59.FormFactor = Enum.FormFactor.Custom
  1098. p59.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1099. p59.BottomSurface = Enum.SurfaceType.Smooth
  1100. p59.TopSurface = Enum.SurfaceType.Smooth
  1101. b59 = Instance.new("SpecialMesh", p59)
  1102. b59.MeshType = Enum.MeshType.Wedge
  1103. b59.Name = "WedgeMesh"
  1104. b59.Scale = Vector3.new(0.533715785, 0.430308461, 0.066714488)
  1105. p60 = Instance.new("Part", m)
  1106. p60.BrickColor = BrickColor.new("Really black")
  1107. p60.Material = Enum.Material.SmoothPlastic
  1108. p60.Name = "Block"
  1109. 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)
  1110. p60.CanCollide = false
  1111. p60.Locked = true
  1112. p60.FormFactor = Enum.FormFactor.Custom
  1113. p60.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1114. p60.BottomSurface = Enum.SurfaceType.Smooth
  1115. p60.TopSurface = Enum.SurfaceType.Smooth
  1116. b60 = Instance.new("SpecialMesh", p60)
  1117. b60.MeshType = Enum.MeshType.Wedge
  1118. b60.Name = "WedgeMesh"
  1119. b60.Scale = Vector3.new(0.533715785, 0.133429006, 0.0667144954)
  1120. p61 = Instance.new("Part", m)
  1121. p61.BrickColor = BrickColor.new("Really black")
  1122. p61.Material = Enum.Material.SmoothPlastic
  1123. p61.Name = "Block"
  1124. 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)
  1125. p61.CanCollide = false
  1126. p61.Locked = true
  1127. p61.FormFactor = Enum.FormFactor.Custom
  1128. p61.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1129. p61.BottomSurface = Enum.SurfaceType.Smooth
  1130. p61.TopSurface = Enum.SurfaceType.Smooth
  1131. b61 = Instance.new("SpecialMesh", p61)
  1132. b61.MeshType = Enum.MeshType.Wedge
  1133. b61.Name = "WedgeMesh"
  1134. b61.Scale = Vector3.new(0.533715785, 0.133429006, 0.066714488)
  1135. p62 = Instance.new("Part", m)
  1136. p62.BrickColor = BrickColor.new("Really black")
  1137. p62.Material = Enum.Material.Neon
  1138. 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)
  1139. p62.CanCollide = false
  1140. p62.Locked = true
  1141. p62.FormFactor = Enum.FormFactor.Custom
  1142. p62.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1143. p62.BottomSurface = Enum.SurfaceType.Smooth
  1144. p62.TopSurface = Enum.SurfaceType.Smooth
  1145. b62 = Instance.new("SpecialMesh", p62)
  1146. b62.MeshType = Enum.MeshType.Sphere
  1147. b62.Name = "Mesh"
  1148. b62.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1149. p63 = Instance.new("Part", m)
  1150. p63.BrickColor = BrickColor.new("Really black")
  1151. p63.Material = Enum.Material.Neon
  1152. 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)
  1153. p63.CanCollide = false
  1154. p63.Locked = true
  1155. p63.FormFactor = Enum.FormFactor.Custom
  1156. p63.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1157. p63.BottomSurface = Enum.SurfaceType.Smooth
  1158. p63.TopSurface = Enum.SurfaceType.Smooth
  1159. b63 = Instance.new("SpecialMesh", p63)
  1160. b63.MeshType = Enum.MeshType.Sphere
  1161. b63.Name = "Mesh"
  1162. b63.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1163. p64 = Instance.new("Part", m)
  1164. p64.BrickColor = BrickColor.new("Really black")
  1165. p64.Material = Enum.Material.Neon
  1166. p64.Name = "Blade"
  1167. 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)
  1168. p64.CanCollide = false
  1169. p64.Locked = true
  1170. p64.FormFactor = Enum.FormFactor.Custom
  1171. p64.Size = Vector3.new(0.341090173, 5.01877022, 0.341090739)
  1172. p64.BottomSurface = Enum.SurfaceType.Smooth
  1173. p64.TopSurface = Enum.SurfaceType.Smooth
  1174. b64 = Instance.new("SpecialMesh", p64)
  1175. b64.MeshType = Enum.MeshType.Sphere
  1176. b64.Name = "Mesh"
  1177. b64.Scale = Vector3.new(0.787231028, 1, 0.333572537)
  1178. p65 = Instance.new("Part", m)
  1179. p65.BrickColor = BrickColor.new("Really black")
  1180. p65.Material = Enum.Material.Neon
  1181. 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)
  1182. p65.CanCollide = false
  1183. p65.Locked = true
  1184. p65.FormFactor = Enum.FormFactor.Custom
  1185. p65.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  1186. p65.BottomSurface = Enum.SurfaceType.Smooth
  1187. p65.TopSurface = Enum.SurfaceType.Smooth
  1188. b65 = Instance.new("SpecialMesh", p65)
  1189. b65.MeshType = Enum.MeshType.Sphere
  1190. b65.Name = "Mesh"
  1191. b65.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  1192. p66 = Instance.new("Part", m)
  1193. p66.BrickColor = BrickColor.new("Really black")
  1194. p66.Material = Enum.Material.Neon
  1195. 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)
  1196. p66.CanCollide = false
  1197. p66.Locked = true
  1198. p66.FormFactor = Enum.FormFactor.Custom
  1199. p66.Size = Vector3.new(0.341090173, 3.76720667, 0.341090739)
  1200. p66.BottomSurface = Enum.SurfaceType.Smooth
  1201. p66.TopSurface = Enum.SurfaceType.Smooth
  1202. b66 = Instance.new("SpecialMesh", p66)
  1203. b66.MeshType = Enum.MeshType.Sphere
  1204. b66.Name = "Mesh"
  1205. b66.Scale = Vector3.new(0.920660138, 1, 0.333572537)
  1206. p67 = Instance.new("Part", m)
  1207. p67.BrickColor = BrickColor.new("Really black")
  1208. p67.Material = Enum.Material.SmoothPlastic
  1209. p67.Reflectance = 0.30000001192093
  1210. p67.Name = "Circle"
  1211. 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)
  1212. p67.CanCollide = false
  1213. p67.Locked = true
  1214. p67.FormFactor = Enum.FormFactor.Custom
  1215. p67.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1216. p67.BottomSurface = Enum.SurfaceType.Smooth
  1217. p67.TopSurface = Enum.SurfaceType.Smooth
  1218. b67 = Instance.new("CylinderMesh", p67)
  1219. b67.Name = "Mesh"
  1220. b67.Scale = Vector3.new(0.400286883, 0.533716023, 0.467001468)
  1221. p68 = Instance.new("Part", m)
  1222. p68.BrickColor = BrickColor.new("Really black")
  1223. p68.Material = Enum.Material.SmoothPlastic
  1224. p68.Reflectance = 0.30000001192093
  1225. p68.Name = "Circle"
  1226. 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)
  1227. p68.CanCollide = false
  1228. p68.Locked = true
  1229. p68.FormFactor = Enum.FormFactor.Custom
  1230. p68.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1231. p68.BottomSurface = Enum.SurfaceType.Smooth
  1232. p68.TopSurface = Enum.SurfaceType.Smooth
  1233. b68 = Instance.new("CylinderMesh", p68)
  1234. b68.Name = "Mesh"
  1235. b68.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  1236. p69 = Instance.new("Part", m)
  1237. p69.BrickColor = BrickColor.new("Really black")
  1238. p69.Material = Enum.Material.SmoothPlastic
  1239. p69.Name = "Block"
  1240. 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)
  1241. p69.CanCollide = false
  1242. p69.Locked = true
  1243. p69.FormFactor = Enum.FormFactor.Custom
  1244. p69.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1245. p69.BottomSurface = Enum.SurfaceType.Smooth
  1246. p69.TopSurface = Enum.SurfaceType.Smooth
  1247. b69 = Instance.new("SpecialMesh", p69)
  1248. b69.MeshType = Enum.MeshType.Wedge
  1249. b69.Name = "WedgeMesh"
  1250. b69.Scale = Vector3.new(0.533715904, 0.29687953, 0.300215244)
  1251. p70 = Instance.new("Part", m)
  1252. p70.BrickColor = BrickColor.new("Really black")
  1253. p70.Material = Enum.Material.SmoothPlastic
  1254. p70.Name = "Block"
  1255. 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)
  1256. p70.CanCollide = false
  1257. p70.Locked = true
  1258. p70.FormFactor = Enum.FormFactor.Custom
  1259. p70.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1260. p70.BottomSurface = Enum.SurfaceType.Smooth
  1261. p70.TopSurface = Enum.SurfaceType.Smooth
  1262. b70 = Instance.new("SpecialMesh", p70)
  1263. b70.MeshType = Enum.MeshType.Wedge
  1264. b70.Name = "WedgeMesh"
  1265. b70.Scale = Vector3.new(0.533715785, 0.29687953, 0.300215244)
  1266. w1 = Instance.new("Weld", p1)
  1267. w1.Name = "Part_Weld"
  1268. w1.Part0 = p1
  1269. 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)
  1270. w1.Part1 = p2
  1271. 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)
  1272. w2 = Instance.new("Weld", p2)
  1273. w2.Name = "Part_Weld"
  1274. w2.Part0 = p2
  1275. 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)
  1276. w2.Part1 = p3
  1277. 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)
  1278. w3 = Instance.new("Weld", p3)
  1279. w3.Name = "Part_Weld"
  1280. w3.Part0 = p3
  1281. 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)
  1282. w3.Part1 = p4
  1283. 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)
  1284. w4 = Instance.new("Weld", p4)
  1285. w4.Name = "Part_Weld"
  1286. w4.Part0 = p4
  1287. 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)
  1288. w4.Part1 = p5
  1289. 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)
  1290. w5 = Instance.new("Weld", p5)
  1291. w5.Name = "Part_Weld"
  1292. w5.Part0 = p5
  1293. 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)
  1294. w5.Part1 = p6
  1295. 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)
  1296. w6 = Instance.new("Weld", p6)
  1297. w6.Name = "Part_Weld"
  1298. w6.Part0 = p6
  1299. 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)
  1300. w6.Part1 = p7
  1301. 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)
  1302. w7 = Instance.new("Weld", p7)
  1303. w7.Name = "Part_Weld"
  1304. w7.Part0 = p7
  1305. 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)
  1306. w7.Part1 = p8
  1307. 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)
  1308. w8 = Instance.new("Weld", p8)
  1309. w8.Name = "Part_Weld"
  1310. w8.Part0 = p8
  1311. 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)
  1312. w8.Part1 = p9
  1313. 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)
  1314. w9 = Instance.new("Weld", p9)
  1315. w9.Name = "Part_Weld"
  1316. w9.Part0 = p9
  1317. 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)
  1318. w9.Part1 = p10
  1319. 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)
  1320. w10 = Instance.new("Weld", p10)
  1321. w10.Name = "Part_Weld"
  1322. w10.Part0 = p10
  1323. 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)
  1324. w10.Part1 = p11
  1325. 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)
  1326. w11 = Instance.new("Weld", p11)
  1327. w11.Name = "Part_Weld"
  1328. w11.Part0 = p11
  1329. 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)
  1330. w11.Part1 = p12
  1331. 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)
  1332. w12 = Instance.new("Weld", p12)
  1333. w12.Name = "Part_Weld"
  1334. w12.Part0 = p12
  1335. 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)
  1336. w12.Part1 = p13
  1337. 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)
  1338. w13 = Instance.new("Weld", p13)
  1339. w13.Name = "Part_Weld"
  1340. w13.Part0 = p13
  1341. 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)
  1342. w13.Part1 = p14
  1343. 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)
  1344. w14 = Instance.new("Weld", p14)
  1345. w14.Name = "Part_Weld"
  1346. w14.Part0 = p14
  1347. 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)
  1348. w14.Part1 = p15
  1349. 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)
  1350. w15 = Instance.new("Weld", p15)
  1351. w15.Name = "Part_Weld"
  1352. w15.Part0 = p15
  1353. 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)
  1354. w15.Part1 = p16
  1355. 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)
  1356. w16 = Instance.new("Weld", p16)
  1357. w16.Name = "Part_Weld"
  1358. w16.Part0 = p16
  1359. 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)
  1360. w16.Part1 = p17
  1361. 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)
  1362. w17 = Instance.new("Weld", p17)
  1363. w17.Name = "Part_Weld"
  1364. w17.Part0 = p17
  1365. 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)
  1366. w17.Part1 = p18
  1367. 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)
  1368. w18 = Instance.new("Weld", p18)
  1369. w18.Name = "Part_Weld"
  1370. w18.Part0 = p18
  1371. 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)
  1372. w18.Part1 = p19
  1373. 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)
  1374. w19 = Instance.new("Weld", p19)
  1375. w19.Name = "Part_Weld"
  1376. w19.Part0 = p19
  1377. 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)
  1378. w19.Part1 = p20
  1379. 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)
  1380. w20 = Instance.new("Weld", p20)
  1381. w20.Name = "Part_Weld"
  1382. w20.Part0 = p20
  1383. 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)
  1384. w20.Part1 = p21
  1385. 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)
  1386. w21 = Instance.new("Weld", p21)
  1387. w21.Name = "Part_Weld"
  1388. w21.Part0 = p21
  1389. 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)
  1390. w21.Part1 = p22
  1391. 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)
  1392. w22 = Instance.new("Weld", p22)
  1393. w22.Name = "Part_Weld"
  1394. w22.Part0 = p22
  1395. 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)
  1396. w22.Part1 = p23
  1397. 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)
  1398. w23 = Instance.new("Weld", p23)
  1399. w23.Name = "Part_Weld"
  1400. w23.Part0 = p23
  1401. 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)
  1402. w23.Part1 = p24
  1403. 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)
  1404. w24 = Instance.new("Weld", p24)
  1405. w24.Name = "Part_Weld"
  1406. w24.Part0 = p24
  1407. 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)
  1408. w24.Part1 = p25
  1409. 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)
  1410. w25 = Instance.new("Weld", p25)
  1411. w25.Name = "Part_Weld"
  1412. w25.Part0 = p25
  1413. 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)
  1414. w25.Part1 = p26
  1415. 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)
  1416. w26 = Instance.new("Weld", p26)
  1417. w26.Name = "Part_Weld"
  1418. w26.Part0 = p26
  1419. 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)
  1420. w26.Part1 = p27
  1421. 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)
  1422. w27 = Instance.new("Weld", p27)
  1423. w27.Name = "Part_Weld"
  1424. w27.Part0 = p27
  1425. 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)
  1426. w27.Part1 = p28
  1427. 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)
  1428. w28 = Instance.new("Weld", p28)
  1429. w28.Name = "Part_Weld"
  1430. w28.Part0 = p28
  1431. 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)
  1432. w28.Part1 = p29
  1433. 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)
  1434. w29 = Instance.new("Weld", p29)
  1435. w29.Name = "Part_Weld"
  1436. w29.Part0 = p29
  1437. 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)
  1438. w29.Part1 = p30
  1439. 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)
  1440. w30 = Instance.new("Weld", p30)
  1441. w30.Name = "Part_Weld"
  1442. w30.Part0 = p30
  1443. 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)
  1444. w30.Part1 = p31
  1445. 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)
  1446. w31 = Instance.new("Weld", p31)
  1447. w31.Name = "Part_Weld"
  1448. w31.Part0 = p31
  1449. 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)
  1450. w31.Part1 = p32
  1451. 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)
  1452. w32 = Instance.new("Weld", p32)
  1453. w32.Name = "Part_Weld"
  1454. w32.Part0 = p32
  1455. 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)
  1456. w32.Part1 = p33
  1457. 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)
  1458. w33 = Instance.new("Weld", p33)
  1459. w33.Name = "Part_Weld"
  1460. w33.Part0 = p33
  1461. 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)
  1462. w33.Part1 = p34
  1463. 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)
  1464. w34 = Instance.new("Weld", p34)
  1465. w34.Name = "Part_Weld"
  1466. w34.Part0 = p34
  1467. 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)
  1468. w34.Part1 = p35
  1469. 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)
  1470. w35 = Instance.new("Weld", p35)
  1471. w35.Name = "Part_Weld"
  1472. w35.Part0 = p35
  1473. 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)
  1474. w35.Part1 = p36
  1475. 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)
  1476. w36 = Instance.new("Weld", p36)
  1477. w36.Name = "Part_Weld"
  1478. w36.Part0 = p36
  1479. 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)
  1480. w36.Part1 = p37
  1481. 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)
  1482. w37 = Instance.new("Weld", p37)
  1483. w37.Name = "Part_Weld"
  1484. w37.Part0 = p37
  1485. 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)
  1486. w37.Part1 = p38
  1487. 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)
  1488. w38 = Instance.new("Weld", p38)
  1489. w38.Name = "Circle_Weld"
  1490. w38.Part0 = p38
  1491. 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)
  1492. w38.Part1 = p39
  1493. 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)
  1494. w39 = Instance.new("Weld", p39)
  1495. w39.Name = "Block_Weld"
  1496. w39.Part0 = p39
  1497. 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)
  1498. w39.Part1 = p40
  1499. 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)
  1500. w40 = Instance.new("Weld", p40)
  1501. w40.Name = "Block_Weld"
  1502. w40.Part0 = p40
  1503. 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)
  1504. w40.Part1 = p41
  1505. 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)
  1506. w41 = Instance.new("Weld", p41)
  1507. w41.Name = "Circle_Weld"
  1508. w41.Part0 = p41
  1509. 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)
  1510. w41.Part1 = p42
  1511. 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)
  1512. w42 = Instance.new("Weld", p42)
  1513. w42.Name = "Circle_Weld"
  1514. w42.Part0 = p42
  1515. 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)
  1516. w42.Part1 = p43
  1517. 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)
  1518. w43 = Instance.new("Weld", p43)
  1519. w43.Name = "Part_Weld"
  1520. w43.Part0 = p43
  1521. 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)
  1522. w43.Part1 = p44
  1523. 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)
  1524. w44 = Instance.new("Weld", p44)
  1525. w44.Name = "Part_Weld"
  1526. w44.Part0 = p44
  1527. 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)
  1528. w44.Part1 = p45
  1529. 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)
  1530. w45 = Instance.new("Weld", p45)
  1531. w45.Name = "Part_Weld"
  1532. w45.Part0 = p45
  1533. 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)
  1534. w45.Part1 = p46
  1535. 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)
  1536. w46 = Instance.new("Weld", p46)
  1537. w46.Name = "Handle_Weld"
  1538. w46.Part0 = p46
  1539. 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)
  1540. w46.Part1 = p47
  1541. 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)
  1542. w47 = Instance.new("Weld", p47)
  1543. w47.Name = "Block_Weld"
  1544. w47.Part0 = p47
  1545. 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)
  1546. w47.Part1 = p48
  1547. 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)
  1548. w48 = Instance.new("Weld", p48)
  1549. w48.Name = "Block_Weld"
  1550. w48.Part0 = p48
  1551. 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)
  1552. w48.Part1 = p49
  1553. 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)
  1554. w49 = Instance.new("Weld", p49)
  1555. w49.Name = "Block_Weld"
  1556. w49.Part0 = p49
  1557. 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)
  1558. w49.Part1 = p50
  1559. 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)
  1560. w50 = Instance.new("Weld", p50)
  1561. w50.Name = "Block_Weld"
  1562. w50.Part0 = p50
  1563. 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)
  1564. w50.Part1 = p51
  1565. 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)
  1566. w51 = Instance.new("Weld", p51)
  1567. w51.Name = "Block_Weld"
  1568. w51.Part0 = p51
  1569. 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)
  1570. w51.Part1 = p52
  1571. 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)
  1572. w52 = Instance.new("Weld", p52)
  1573. w52.Name = "Circle_Weld"
  1574. w52.Part0 = p52
  1575. 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)
  1576. w52.Part1 = p53
  1577. 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)
  1578. w53 = Instance.new("Weld", p53)
  1579. w53.Name = "Circle_Weld"
  1580. w53.Part0 = p53
  1581. 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)
  1582. w53.Part1 = p54
  1583. 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)
  1584. w54 = Instance.new("Weld", p54)
  1585. w54.Name = "Part_Weld"
  1586. w54.Part0 = p54
  1587. 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)
  1588. w54.Part1 = p55
  1589. 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)
  1590. w55 = Instance.new("Weld", p55)
  1591. w55.Name = "Part_Weld"
  1592. w55.Part0 = p55
  1593. 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)
  1594. w55.Part1 = p56
  1595. 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)
  1596. w56 = Instance.new("Weld", p56)
  1597. w56.Name = "Part_Weld"
  1598. w56.Part0 = p56
  1599. 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)
  1600. w56.Part1 = p57
  1601. 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)
  1602. w57 = Instance.new("Weld", p57)
  1603. w57.Name = "Block_Weld"
  1604. w57.Part0 = p57
  1605. 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)
  1606. w57.Part1 = p58
  1607. 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)
  1608. w58 = Instance.new("Weld", p58)
  1609. w58.Name = "Block_Weld"
  1610. w58.Part0 = p58
  1611. 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)
  1612. w58.Part1 = p59
  1613. 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)
  1614. w59 = Instance.new("Weld", p59)
  1615. w59.Name = "Block_Weld"
  1616. w59.Part0 = p59
  1617. 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)
  1618. w59.Part1 = p60
  1619. 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)
  1620. w60 = Instance.new("Weld", p60)
  1621. w60.Name = "Block_Weld"
  1622. w60.Part0 = p60
  1623. 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)
  1624. w60.Part1 = p61
  1625. 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)
  1626. w61 = Instance.new("Weld", p61)
  1627. w61.Name = "Part_Weld"
  1628. w61.Part0 = p61
  1629. 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)
  1630. w61.Part1 = p62
  1631. 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)
  1632. w62 = Instance.new("Weld", p62)
  1633. w62.Name = "Part_Weld"
  1634. w62.Part0 = p62
  1635. 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)
  1636. w62.Part1 = p63
  1637. 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)
  1638. w63 = Instance.new("Weld", p63)
  1639. w63.Name = "Blade_Weld"
  1640. w63.Part0 = p63
  1641. 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)
  1642. w63.Part1 = p64
  1643. 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)
  1644. w64 = Instance.new("Weld", p64)
  1645. w64.Name = "Part_Weld"
  1646. w64.Part0 = p64
  1647. 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)
  1648. w64.Part1 = p65
  1649. 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)
  1650. w65 = Instance.new("Weld", p65)
  1651. w65.Name = "Part_Weld"
  1652. w65.Part0 = p65
  1653. 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)
  1654. w65.Part1 = p66
  1655. 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)
  1656. w66 = Instance.new("Weld", p66)
  1657. w66.Name = "Circle_Weld"
  1658. w66.Part0 = p66
  1659. 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)
  1660. w66.Part1 = p67
  1661. 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)
  1662. w67 = Instance.new("Weld", p67)
  1663. w67.Name = "Circle_Weld"
  1664. w67.Part0 = p67
  1665. 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)
  1666. w67.Part1 = p68
  1667. 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)
  1668. w68 = Instance.new("Weld", p68)
  1669. w68.Name = "Block_Weld"
  1670. w68.Part0 = p68
  1671. 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)
  1672. w68.Part1 = p69
  1673. 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)
  1674. w69 = Instance.new("Weld", p69)
  1675. w69.Name = "Block_Weld"
  1676. w69.Part0 = p69
  1677. 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)
  1678. w69.Part1 = p70
  1679. 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)
  1680. m.Parent = char
  1681. m:MakeJoints()
  1682. ----------------------------------------------------
  1683. local cor = Instance.new("Part", char.Sword)
  1684. cor.Name = "Thingy"
  1685. cor.Locked = true
  1686. cor.BottomSurface = 0
  1687. cor.CanCollide = false
  1688. cor.Size = Vector3.new(1, 1, 1)
  1689. cor.Transparency = 1
  1690. cor.TopSurface = 0
  1691. corw = Instance.new("Weld", cor)
  1692. corw.Part0 = rarm
  1693. corw.Part1 = cor
  1694. corw.C0 = CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0))
  1695. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1696. weld1 = Instance.new("Weld", char.Sword)
  1697. weld1.Part0 = cor
  1698. weld1.Part1 = char.Sword.Handle
  1699. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1700.  
  1701. ----------------------------------------------------
  1702. local animpose = "Idle"
  1703. local lastanimpose = "Idle"
  1704. local sine = 0
  1705. local change = 1
  1706. local val = 0
  1707. local ffing = false
  1708. local och = 0
  1709. ----------------------------------------------------
  1710. wPart = function(x,y,z,color,tr,cc,an,parent)
  1711. local wp = Instance.new('WedgePart',parent or Weapon)
  1712. wp.formFactor = 'Custom'
  1713. wp.Size = Vector3.new(x,y,z)
  1714. wp.BrickColor = BrickColor.new(color)
  1715. wp.CanCollide = cc
  1716. wp.Transparency = tr
  1717. wp.Anchored = an
  1718. wp.TopSurface,wp.BottomSurface = 0,0
  1719. return wp
  1720. end
  1721.  
  1722. Mesh = function(par,num,x,y,z)
  1723. local msh = _
  1724. if num == 1 then
  1725. msh = Instance.new("CylinderMesh",par)
  1726. elseif num == 2 then
  1727. msh = Instance.new("SpecialMesh",par)
  1728. msh.MeshType = 3
  1729. elseif num == 3 then
  1730. msh = Instance.new("BlockMesh",par)
  1731. elseif num == 4 then
  1732. msh = Instance.new("SpecialMesh",par)
  1733. msh.MeshType = "Torso"
  1734. elseif type(num) == 'string' then
  1735. msh = Instance.new("SpecialMesh",par)
  1736. msh.MeshId = num
  1737. end
  1738. msh.Scale = Vector3.new(x,y,z)
  1739. return msh
  1740. end
  1741.  
  1742. local function CFrameFromTopBack(at, top, back)
  1743. local right = top:Cross(back)
  1744. return CFrame.new(at.x, at.y, at.z,
  1745. right.x, top.x, back.x,
  1746. right.y, top.y, back.y,
  1747. right.z, top.z, back.z)
  1748. end
  1749.  
  1750. function Triangle(a, b, c)
  1751. local edg1 = (c-a):Dot((b-a).unit)
  1752. local edg2 = (a-b):Dot((c-b).unit)
  1753. local edg3 = (b-c):Dot((a-c).unit)
  1754. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  1755. a, b, c = a, b, c
  1756. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  1757. a, b, c = b, c, a
  1758. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  1759. a, b, c = c, a, b
  1760. else
  1761. print("unreachable")
  1762. end
  1763. local len1 = (c-a):Dot((b-a).unit)
  1764. local len2 = (b-a).magnitude - len1
  1765. local width = (a + (b-a).unit*len1 - c).magnitude
  1766. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  1767. local list = {}
  1768. if len1 > 0.01 then
  1769. local w1 = wPart(0,0,0,'Really black',0.5,false,true,char)
  1770. local sz = Vector3.new(0.2, width, len1)
  1771. w1.Size = sz
  1772. local sp = Mesh(w1,2,0,0,0)
  1773. sp.MeshType='Wedge'
  1774. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  1775. w1:BreakJoints()
  1776. w1.Anchored = true
  1777. w1.Transparency = 0.7
  1778. Spawn(function()
  1779. for i=0,1,0.1 do
  1780. wait()
  1781. w1.Transparency=w1.Transparency+0.03
  1782. end
  1783. end)
  1784. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  1785. table.insert(list,w1)
  1786. end
  1787. if len2 > 0.01 then
  1788. local w2 = wPart(0,0,0,'Really black',0.5,false,true,char)
  1789. local sz = Vector3.new(0.2, width, len2)
  1790. w2.Size = sz
  1791. local sp = Mesh(w2,2,0,0,0)
  1792. sp.MeshType='Wedge'
  1793. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  1794. w2:BreakJoints()
  1795. w2.Anchored = true
  1796. w2.Transparency = 0.7
  1797. Spawn(function()
  1798. for i=0,1,0.1 do
  1799. wait()
  1800. w2.Transparency=w2.Transparency+0.03
  1801. end
  1802. end)
  1803. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  1804. table.insert(list,w2)
  1805. end
  1806. return unpack(list)
  1807. end
  1808.  
  1809. function trail(p,t,h)
  1810. Spawn(function()
  1811. local blcf = p.CFrame
  1812. local scfr = blcf
  1813. for i=1,t do
  1814. local blcf = p.CFrame
  1815. if scfr and (p.Position-scfr.p).magnitude > .1 then
  1816. 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)
  1817. if a then game.Debris:AddItem(a,1) end
  1818. if b then game.Debris:AddItem(b,1) end
  1819. 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)
  1820. if a then game.Debris:AddItem(a,1) end
  1821. if b then game.Debris:AddItem(b,1) end
  1822. scfr = blcf
  1823. elseif not scfr then
  1824. scfr = blcf
  1825. end
  1826. game:service'RunService'.RenderStepped:wait()
  1827. end
  1828. scfr=nil
  1829. end)
  1830. end
  1831. trail(char.Sword.Blade,1e1000,5)
  1832. ----------------------------------------------------
  1833. char.Sword.Blade.Touched:connect(function(ht)
  1834. hit = ht.Parent
  1835. if ht and hit:IsA("Model") then
  1836. if hit:FindFirstChild("Humanoid") then
  1837. if hit.Name ~= p.Name then
  1838. if Debounces.Slashing == true and Debounces.Slashed == false then
  1839. Debounces.Slashed = true
  1840. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,10000))
  1841. wait(.3)
  1842. Debounces.Slashed = false
  1843. end
  1844. end
  1845. end
  1846. elseif ht and hit:IsA("Hat") then
  1847. if hit.Parent.Name ~= p.Name then
  1848. if hit.Parent:FindFirstChild("Humanoid") then
  1849. if Debounces.Slashing == true and Debounces.Slashed == false then
  1850. Debounces.Slashed = true
  1851. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,1000))
  1852. wait(.3)
  1853. Debounces.Slashed = false
  1854. end
  1855. end
  1856. end
  1857. end
  1858. end)
  1859.  
  1860. ----------------------------------------------------
  1861. function attackone()
  1862. for i = 1, 10 do
  1863. 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)
  1864. 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)
  1865. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(10),math.rad(-46),0), 0.47)
  1866. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-8), math.rad(46), 0), 0.55)
  1867. 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)
  1868. 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)
  1869. if Debounces.on == false then break end
  1870. rs:wait()
  1871. end
  1872. --trail(char.Sword.Blade,5,6)
  1873. Debounces.Slashing = true
  1874. z = Instance.new("Sound", hed)
  1875. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  1876. z.Pitch = ptz[math.random(1,#ptz)]
  1877. z.Volume = 1
  1878. wait(.01)
  1879. z:Play()
  1880. for i = 1, 10 do
  1881. 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)
  1882. 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)
  1883. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(40),0), 0.54)
  1884. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.66)
  1885. 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)
  1886. 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)
  1887. if Debounces.on == false then break end
  1888. rs:wait()
  1889. end
  1890. Debounces.Slashing = false
  1891. end
  1892. ----------------------------------------------------
  1893. function attacktwo()
  1894. for i = 1, 5 do
  1895. 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)
  1896. 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)
  1897. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(-10),math.rad(46),0), 0.8)
  1898. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(-46), 0), 0.8)
  1899. 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)
  1900. 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)
  1901. if Debounces.on == false then break end
  1902. rs:wait()
  1903. end
  1904. --trail(char.Sword.Blade,5,6)
  1905. Debounces.Slashing = true
  1906. z = Instance.new("Sound", hed)
  1907. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  1908. z.Pitch = ptz[math.random(1,#ptz)]
  1909. z.Volume = 1
  1910. wait(.01)
  1911. z:Play()
  1912. for i = 1, 10 do
  1913. 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)
  1914. 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)
  1915. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.54)
  1916. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-9), math.rad(40), 0), 0.66)
  1917. 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)
  1918. 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)
  1919. if Debounces.on == false then break end
  1920. rs:wait()
  1921. end
  1922. Debounces.Slashing = false
  1923. end
  1924. ----------------------------------------------------
  1925. function attackthree()
  1926. for i = 1, 10 do
  1927. 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)
  1928. 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)
  1929. 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)
  1930. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  1931. 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)
  1932. 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)
  1933. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  1934. if Debounces.on == false then
  1935. break
  1936. end
  1937. rs:wait()
  1938. end
  1939. --trail(char.Sword.Blade,5,6)
  1940. Debounces.Slashing = true
  1941. z = Instance.new("Sound", hed)
  1942. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  1943. z.Pitch = ptz[math.random(1,#ptz)]
  1944. z.Volume = 1
  1945. wait(.01)
  1946. z:Play()
  1947. for i = 1, 10 do
  1948. 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)
  1949. 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)
  1950. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  1951. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  1952. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  1953. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  1954. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  1955. if Debounces.on==false then
  1956. break
  1957. end
  1958. rs:wait()
  1959. end
  1960. Debounces.Slashing = false
  1961. end
  1962. ----------------------------------------------------
  1963. ComboNum = 0
  1964. mouse.Button1Down:connect(function()
  1965. if Debounces.CanAttack == true then
  1966. Debounces.CanAttack = false
  1967. Debounces.NoIdl = true
  1968. Debounces.on = true
  1969. if ComboNum == 0 then
  1970. attackone()
  1971. elseif ComboNum == 1 then
  1972. attacktwo()
  1973. elseif ComboNum == 2 then
  1974. attackthree()
  1975. end
  1976. ComboNum = ComboNum + 1
  1977. Debounces.CanAttack = true
  1978. Debounces.NoIdl = false
  1979. Debounces.on = false
  1980. wait(.5)
  1981. if Debounces.CanAttack == true then
  1982. ComboNum = 0
  1983. end
  1984. end
  1985. end)
  1986. ----------------------------------------------------
  1987. local player = game.Players.LocalPlayer
  1988. local pchar = player.Character
  1989. local mouse = player:GetMouse()
  1990. local cam = workspace.CurrentCamera
  1991.  
  1992. local rad = math.rad
  1993.  
  1994. local keysDown = {}
  1995. local flySpeed = 0
  1996. local MAX_FLY_SPEED = 150
  1997.  
  1998. local canFly = false
  1999. local flyToggled = false
  2000.  
  2001. local forward, side = 0, 0
  2002. local lastForward, lastSide = 0, 0
  2003.  
  2004. local floatBP = Instance.new("BodyPosition")
  2005. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  2006. local flyBV = Instance.new("BodyVelocity")
  2007. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2008. local turnBG = Instance.new("BodyGyro")
  2009. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  2010.  
  2011. mouse.KeyDown:connect(function(key)
  2012. keysDown[key] = true
  2013.  
  2014. if key == "f" then
  2015. flyToggled = not flyToggled
  2016.  
  2017. if not flyToggled then
  2018. stanceToggle = "Normal"
  2019. floatBP.Parent = nil
  2020. flyBV.Parent = nil
  2021. turnBG.Parent = nil
  2022. root.Velocity = Vector3.new()
  2023. pchar.Humanoid.PlatformStand = false
  2024. end
  2025. end
  2026.  
  2027. end)
  2028. mouse.KeyUp:connect(function(key)
  2029. keysDown[key] = nil
  2030. end)
  2031.  
  2032. local function updateFly()
  2033.  
  2034. if not flyToggled then return end
  2035.  
  2036. lastForward = forward
  2037. lastSide = side
  2038.  
  2039. forward = 0
  2040. side = 0
  2041.  
  2042. if keysDown.w then
  2043. forward = forward + 1
  2044. end
  2045. if keysDown.s then
  2046. forward = forward - 1
  2047. end
  2048. if keysDown.a then
  2049. side = side - 1
  2050. end
  2051. if keysDown.d then
  2052. side = side + 1
  2053. end
  2054.  
  2055. canFly = (forward ~= 0 or side ~= 0)
  2056.  
  2057. if canFly then
  2058. stanceToggle = "Floating"
  2059. turnBG.Parent = root
  2060. floatBP.Parent = nil
  2061. flyBV.Parent = root
  2062.  
  2063. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  2064. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  2065. else
  2066. floatBP.position = root.Position
  2067. floatBP.Parent = root
  2068.  
  2069. flySpeed = flySpeed - 1
  2070. if flySpeed < 0 then flySpeed = 0 end
  2071. end
  2072.  
  2073. local camCF = cam.CoordinateFrame
  2074. local in_forward = canFly and forward or lastForward
  2075. local in_side = canFly and side or lastSide
  2076.  
  2077. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  2078. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  2079.  
  2080. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  2081. 0)
  2082. end
  2083.  
  2084. game:service'RunService'.RenderStepped:connect(function()
  2085. if flyToggled then
  2086. pchar.Humanoid.PlatformStand = true
  2087. end
  2088. updateFly()
  2089. end)
  2090. ----------------------------------------------------
  2091. function Charge()
  2092. pt=Instance.new('Part',torso)
  2093. pt.Anchored=true
  2094. pt.CanCollide=false
  2095. pt.Locked = true
  2096. pt.FormFactor='Custom'
  2097. pt.Size=Vector3.new(1,1,1)
  2098. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  2099. pt.Transparency=0.2
  2100. pt.BrickColor=BrickColor.new("Really black")
  2101. msh=Instance.new('SpecialMesh',pt)
  2102. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  2103. msh.Scale=Vector3.new(6,3,6)
  2104. pt2=pt:clone()
  2105. pt2.Parent = torso
  2106. pt2.Transparency=0.4
  2107. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  2108. pt2.BrickColor=BrickColor.new("Really black")
  2109. msh2=msh:clone()
  2110. msh2.Parent=pt2
  2111. msh2.Scale=Vector3.new(8,4,8)
  2112. pt3=Instance.new('Part',torso)
  2113. pt3.Anchored=true
  2114. pt3.CanCollide=false
  2115. pt3.Locked = true
  2116. pt3.FormFactor='Custom'
  2117. pt3.Size=Vector3.new(1,1,1)
  2118. pt3.CFrame=root.CFrame*CFrame.new(0,-1,0)
  2119. pt3.Transparency=0.6
  2120. pt3.BrickColor=BrickColor.new("Really black")
  2121. msh3=Instance.new('SpecialMesh',pt3)
  2122. msh3.MeshId='http://www.roblox.com/asset/?id=20329976'
  2123. msh3.Scale=Vector3.new(12,6,12)
  2124. pt4=pt:clone()
  2125. pt4.Parent = torso
  2126. pt4.CFrame=root.CFrame*CFrame.new(0,-1,0)
  2127. pt4.Transparency=0.8
  2128. pt4.BrickColor=BrickColor.new("Really black")
  2129. msh4=msh:clone()
  2130. msh4.Parent=pt4
  2131. msh4.Scale=Vector3.new(16,8,16)
  2132. coroutine.resume(coroutine.create(function()
  2133. for i=1, math.huge, 4 do
  2134. if Charging == true then
  2135. wait()
  2136. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.11*math.cos(sine/10)),0)
  2137. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.12*math.cos(sine/12)),0)
  2138. pt3.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.13*math.cos(sine/14)),0)
  2139. pt4.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.14*math.cos(sine/16)),0)
  2140. pt.CFrame = pt.CFrame+Vector3.new(0,0.01,0)
  2141. pt2.CFrame = pt2.CFrame+Vector3.new(0,0.01,0)
  2142. pt3.CFrame = pt3.CFrame+Vector3.new(0,0.01,0)
  2143. pt4.CFrame = pt4.CFrame+Vector3.new(0,0.01,0)
  2144. msh.Scale = msh.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/9),0.05)
  2145. msh2.Scale = msh2.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/7),0.05)
  2146. msh3.Scale = msh3.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/5),0.05)
  2147. msh4.Scale = msh4.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/3),0.05)
  2148. elseif Charging == false then
  2149. pt:Remove()
  2150. pt2:Remove()
  2151. pt3:Remove()
  2152. pt4:Remove()
  2153. break
  2154. end
  2155. end
  2156. end))
  2157. end
  2158. ----------------------------------------------------
  2159. local chot={}
  2160. local cns=0
  2161. mod3 = Instance.new("Model",char)
  2162. mouse.KeyDown:connect(function(key)
  2163. if key == "e" then
  2164. Charging = true
  2165. if Debounces.CanAttack == true then
  2166. Debounces.CanAttack = false
  2167. Debounces.NoIdl = true
  2168. Debounces.on = true
  2169. chot={}
  2170. Charge()
  2171. for i = 1, 20 do
  2172. 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)
  2173. 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)
  2174. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.2)
  2175. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-40),math.rad(0),0), 0.2)
  2176. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(0, math.rad(50), math.rad(0)), 0.05)
  2177. 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)
  2178. 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)
  2179. 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)
  2180. if Debounces.on == false then
  2181. break
  2182. end
  2183. rs:wait()
  2184. end
  2185. local nt=0
  2186. for i=0,5,0.02 do
  2187. nt=nt+1
  2188. cns=i
  2189. if nt>=2 then
  2190. nt=0
  2191. 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),"Really black","Neon")
  2192. debris:AddItem(cho,1)
  2193. cho.Mesh.MeshType=3
  2194. table.insert(chot,cho)
  2195. end
  2196. wait()
  2197. end
  2198. Charging = false
  2199. for i = 1, 10 do
  2200. 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)
  2201. 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)
  2202. 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)
  2203. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  2204. 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)
  2205. 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)
  2206. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  2207. if Debounces.on == false then
  2208. break
  2209. end
  2210. rs:wait()
  2211. end
  2212. Spawn(function()
  2213. local Parts = {}
  2214. for Y = -5,5 do
  2215. local P = Instance.new("Part",char)
  2216. P.Anchored = true
  2217. P.FormFactor = "Custom"
  2218. P.CanCollide = false
  2219. P.Size = Vector3.new(1,2,1)
  2220. P.Material = "Neon"
  2221. P.TopSurface = "SmoothNoOutlines"
  2222. P.BottomSurface = "SmoothNoOutlines"
  2223. P.BrickColor = BrickColor.new("Really black")
  2224. P.Name = tostring(Y)
  2225. local i = (Y+5)/(10)
  2226. i = 1-math.cos(math.pi*i-(math.pi/2))
  2227. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  2228. --[[P.Touched:connect(function(ht)
  2229. local hit = ht.Parent
  2230. if hit:FindFirstChild("Humanoid") then
  2231. hit.Humanoid:TakeDamage(math.random(20,50))
  2232. end
  2233. end)]]--
  2234. P.Touched:connect(function(ht)
  2235. hit = ht.Parent
  2236. if ht and hit:IsA("Model") then
  2237. if hit:FindFirstChild("Humanoid") then
  2238. if hit.Name ~= p.Name then
  2239. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  2240. hit:FindFirstChild("Humanoid").PlatformStand = true
  2241. wait(1)
  2242. end
  2243. end
  2244. elseif ht and hit:IsA("Hat") then
  2245. if hit.Parent.Name ~= p.Name then
  2246. if hit.Parent:FindFirstChild("Humanoid") then
  2247. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  2248. hit:FindFirstChild("Humanoid").PlatformStand = true
  2249. wait(1)
  2250. end
  2251. end
  2252. end
  2253. end)
  2254. Parts[#Parts+1] = P
  2255. end
  2256. local BREAKIT = false
  2257. local CParts = {}
  2258. local Rocks = {}
  2259. local LastPos = nil
  2260. for i = 1,70 do
  2261. for i2,v in pairs(Parts) do
  2262. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  2263. local cf = v.CFrame
  2264. v.Size = v.Size+Vector3.new(1.1,0.35,0.2)
  2265. v.CFrame = cf
  2266. v.Transparency = v.Transparency+0.02
  2267. if v.Transparency >= 0.975 then BREAKIT = true end
  2268. if v.Name == "0" then
  2269. local Ignore = {}
  2270. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2271. if v.Character ~= nil then
  2272. Ignore[#Ignore+1] = v.Character
  2273. end
  2274. end
  2275. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  2276. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  2277. if Hit ~= nil then
  2278. if #Rocks == 0 then
  2279. for i = 1,5 do
  2280. local P = Instance.new("Part",char)
  2281. Rocks[#Rocks+1] = P
  2282. P.Anchored = true
  2283. P.FormFactor = "Custom"
  2284. P.BrickColor = Hit.BrickColor
  2285. P.Material = Hit.Material
  2286. P.TopSurface = "Smooth"
  2287. P.BottomSurface = "Smooth"
  2288. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  2289. end
  2290. end
  2291. for i,P in pairs(Rocks) do
  2292. 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)))
  2293. end
  2294. local P = Instance.new("Part",char)
  2295. CParts[#CParts+1] = {P,tick()}
  2296. P.Anchored = true
  2297. P.FormFactor = "Custom"
  2298. P.BrickColor = Hit.BrickColor
  2299. P.Material = Hit.Material
  2300. P.TopSurface = "Smooth"
  2301. P.BottomSurface = "Smooth"
  2302. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  2303. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  2304. Pos = Pos.p
  2305. 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)))
  2306. local P = P:Clone()
  2307. CParts[#CParts+1] = {P,tick()}
  2308. P.Parent = char
  2309. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  2310. Pos = Pos.p
  2311. 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)))
  2312. if LastPos ~= nil then
  2313. local P = P:Clone()
  2314. CParts[#CParts+1] = {P,tick()}
  2315. P.Parent = char
  2316. P.BrickColor = BrickColor.new("Crimson")
  2317. P.Material = "Granite"
  2318. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  2319. Pos = Pos.p
  2320. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  2321. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  2322. --P.Velocity = Vector3.new(0,-1000,0)
  2323. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  2324. end
  2325. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  2326. end
  2327. end
  2328. end
  2329. if BREAKIT then break end
  2330. wait(0.002)
  2331. end
  2332. for i,v in pairs(Rocks) do
  2333. CParts[#CParts+1] = {v,tick()}
  2334. end
  2335. for i,v in pairs(Parts) do
  2336. v:Destroy()
  2337. end
  2338. Parts = nil
  2339. while true do
  2340. local t = tick()
  2341. local p = nil
  2342. for i,v in pairs(CParts) do
  2343. if t-v[2] > 4 then
  2344. v[1].Transparency = v[1].Transparency+0.05
  2345. if v[1].Transparency >= 1 then
  2346. v[1]:Destroy()
  2347. CParts[i] = nil
  2348. end
  2349. end
  2350. p = v
  2351. end
  2352. if p == nil then break end
  2353. wait(0.002)
  2354. end
  2355. for i,v in pairs(CParts) do
  2356. v:Destroy()
  2357. end
  2358. CParts = {}
  2359. end)
  2360. for i = 1, 10 do
  2361. 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)
  2362. 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)
  2363. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  2364. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  2365. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  2366. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  2367. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  2368. if Debounces.on==false then
  2369. break
  2370. end
  2371. rs:wait()
  2372. end
  2373. if Debounces.CanAttack == false then
  2374. Debounces.CanAttack = true
  2375. Debounces.NoIdl = false
  2376. Debounces.on = false
  2377. end
  2378. end
  2379. end
  2380. end)
  2381. ----------------------------------------------------
  2382. mouse.KeyDown:connect(function(key)
  2383. if string.byte(key) == 52 then
  2384. char.Humanoid.WalkSpeed = 28
  2385. end
  2386. end)
  2387. mouse.KeyUp:connect(function(key)
  2388. if string.byte(key) == 52 then
  2389. char.Humanoid.WalkSpeed = 16
  2390. end
  2391. end)
  2392. ----------------------------------------------------
  2393. game:GetService("RunService").RenderStepped:connect(function()
  2394. if char.Humanoid.Jump == true then
  2395. jump = true
  2396. else
  2397. jump = false
  2398. end
  2399. char.Humanoid.FreeFalling:connect(function(f)
  2400. if f then
  2401. ffing = true
  2402. else
  2403. ffing = false
  2404. end
  2405. end)
  2406. sine = sine + change
  2407. if jumpn == true then
  2408. animpose = "Jumping"
  2409. elseif ffing == true then
  2410. animpose = "Freefalling"
  2411. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 5 then
  2412. animpose = "Idle"
  2413. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  2414. animpose = "Walking"
  2415. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  2416. animpose = "Running"
  2417. end
  2418. if animpose ~= lastanimpose then
  2419. sine = 0
  2420. if Debounces.NoIdl == false then
  2421. for i = 1, 2 do
  2422. 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)
  2423. 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)
  2424. 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)
  2425. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  2426. 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)
  2427. 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)
  2428. 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)
  2429. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  2430. end
  2431. wait()
  2432. end
  2433. else
  2434. end
  2435. lastanimpose = animpose
  2436. if Debounces.NoIdl == false then
  2437. if animpose == "Idle" then
  2438. change = 0.5
  2439. 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)
  2440. 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)
  2441. 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)
  2442. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  2443. 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)
  2444. 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)
  2445. 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)
  2446. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  2447. --[[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)
  2448. 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)
  2449. 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)
  2450. 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)
  2451. 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)
  2452. 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)
  2453. 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)]]--
  2454. elseif animpose == "Walking" then
  2455. change = 1
  2456. 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)
  2457. 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)
  2458. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  2459. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  2460. 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)
  2461. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  2462. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  2463. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  2464. elseif animpose == "Running" then
  2465. change = 1
  2466. 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)
  2467. 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)
  2468. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(20),0,0), 0.4)
  2469. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  2470. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-40),0, math.rad(0)), 0.05)
  2471. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(-8)), 0.4)
  2472. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(8)), 0.4)
  2473. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  2474. end
  2475. end
  2476. och=och+1
  2477. for _,v in pairs(chot) do
  2478. pcall(function()
  2479. v.CFrame=v.CFrame:lerp(char.Sword.Blade.CFrame,0.1)
  2480. 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))
  2481. end)
  2482. end
  2483. end)
  2484.  
  2485. local p = game.Players.LocalPlayer
  2486. local char = p.Character
  2487. local mouse = p:GetMouse()
  2488. local larm = char["Left Arm"]
  2489. local rarm = char["Right Arm"]
  2490. local lleg = char["Left Leg"]
  2491. local rleg = char["Right Leg"]
  2492. local hed = char.Head
  2493. local torso = char.Torso
  2494. local hum = char.Humanoid
  2495. local cam = game.Workspace.CurrentCamera
  2496. local root = char.HumanoidRootPart
  2497.  
  2498.  
  2499. GroundWave = function()
  2500. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2501. local Colors = {"Really white", "Really black"}
  2502. local wave = Instance.new("Part", torso)
  2503. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2504. wave.Anchored = true
  2505. wave.CanCollide = false
  2506. wave.Locked = true
  2507. wave.Size = Vector3.new(1, 1, 1)
  2508. wave.TopSurface = "Smooth"
  2509. wave.BottomSurface = "Smooth"
  2510. wave.Transparency = 0.15
  2511. wave.CFrame = HandCF
  2512. wm = Instance.new("SpecialMesh", wave)
  2513. wm.MeshId = "rbxassetid://3270017"
  2514. coroutine.wrap(function()
  2515. for i = 1, 14, 1 do
  2516. wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1)
  2517. wave.Size = wm.Scale
  2518. wave.CFrame = HandCF
  2519. wave.Transparency = i/14
  2520. wait()
  2521. end
  2522. wait()
  2523. wave:Destroy()
  2524. end)()
  2525. end
  2526. spawn(function()
  2527. while wait(2) do
  2528. GroundWave()
  2529. end
  2530. end)
  2531. wait(1)
  2532.  
  2533. --[[while true do wait(0.2) https://preview.c9users.io/jaspher/rbx_stoof/RMMech.lua
  2534. if charge == true then
  2535. MagicRing(BrickColor.new('Really black'),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)
  2536. end
  2537. end]]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement